.software__row-container{
  --gap: var(--band-xxs);
  --col: 4;
  --gapminus: calc( (var(--gap) * (var(--col) - 1)) / var(--col) );
  --basis: calc( (100% / var(--col)) - var(--gapminus) );
  display:flex;
  gap: var(--gap);
  flex-direction: row;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: 60px;
}

.software__content-container{
  padding: 8px 20px;
  flex: 1 1 var(--basis);
  max-width: var(--basis);
  padding: 0 20px;
  border-radius: var(--border-radius-md);
  background-color: #fff;
  background-image: url("https://www.movella.com/hubfs/%5BDONT%20DELETE%5D%20Xsens_AUG2024%20Theme%20Assets/Backgrounds/Card_bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  border: 1px solid var(--border-color-tint);

}
.software__inner-container {
  flex-direction: column;
}
.software_heading{
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-top: 35px;
  margin-bottom: 10px;
}

.software_name{
  margin-bottom: 10px;
  padding-top: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  font-feature-settings: 'salt' on;
  display: flex;
}

.danger_icon img{
  margin-left: 20px;
}


.dl-button {
display: flex;
align-items: center;
width: 100%;
text-align: left;
gap: 10px;
& img{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: auto;
  object-fit: contain;
}
&:hover{
  & img{
    filter: brightness(0) invert(1);
  }
}
}

.button:hover{
  background: #FF6852;
  border: 1px solid #884dff;
  color: #fff;
}

.button img{
  margin-left: auto; 
}

.release_notes{
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  text-decoration-line: underline;
  color: var(--text-muted); 
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}

.release_notes a {
  padding-bottom: 10px; 
}

{# space for the outside of the button #}
.grey_button {
  padding-top: 10px;
  margin-bottom: 30px;
}

{# Button design #}
.dropbtn {
  padding: 8px 20px;
  width: 100%;
  text-align: left;
  background: #E5E7EB;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;

}

.dropbtn-toggle{
  display: flex;
  align-items: center;
  flex-direction: row;
}

{# Hover buton color #}
.dropbtn:hover , :focus{
  background-color: #ddd;
}

{# hide list  #}
.dropdown_content {
  display: none; 
  padding: 20px 0;
  transition: height 0s ease-in-out;
  & p {
    margin: 0;
  }

}

{# display list from 3 items (a) in a block #}
.dropdown_content a {
  display: block;
  font-size: 14px;
}

{#List hover color #}
.grey_button a:hover {
  background-color: #ddd;
}

.grey_button p {
  margin-top: 5px;
}

.svg_move{
  margin-left: auto; 
}

@media (max-width: 992px) {
  .software__row-container {
    --col: 3;
  }
}

@media (max-width: 768px) {
  .software__row-container {
    --col: 2;
  }
}

@media (max-width: 567px) {
  .software__row-container {
    --col: 1;
  }
}
