/* you-get */
.you-get {
}
.you-get__content {
}
.you-get__title {
}
.you-get__row {
   display: flex;
   flex-direction: row;
   gap: 16px;
   justify-content: space-between;
}
.you-get__left {
   display: flex;
   flex-direction: row;
   gap: 16px;
   justify-content: space-between;
   flex: 0 0 calc((7 / 12) * 100% - ((7 - 1) * 16px / 12));
}
.you-get__cart {
   flex: 1;
}
.you-get__right {
   display: flex;
   flex-direction: row;
   gap: 16px;
   justify-content: space-between;
   flex: 0 0 calc((5 / 12) * 100% - ((5 - 1) * 16px / 12));
}
.cart-default__list {
   margin-top: 12px;
   display: flex;
   flex-direction: column;
   gap: 2px;
   padding-left: 20px;
}
.cart-default__list-item {
   list-style: disc;
}
@media (max-width: 1440px) {
   .you-get__row {
      flex-direction: column;
   }
   .you-get__left {
      flex: 100%;
   }
   .you-get__right {
      flex: 100%;
   }
}
@media (max-width: 1024px) {
   .you-get__left {
      flex-direction: column;
   }
}
/* you-get */
