@media (min-width: 960px) {
  .content:has(#basket-root) {
    overflow: visible;
  }
}

#basket-root {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-column-gap: 30px;
}
@media (min-width: 960px) {
  #basket-root .list {
    grid-column: 1/7;
  }
}
@media (max-width: 960px) {
  #basket-root .list {
    grid-column: 1/10;
  }
}
#basket-root * {
  color: #292929;
}
#basket-root .thead {
  padding: 0 0 1rem 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 30px;
}
@media (max-width: 960px) {
  #basket-root .thead {
    display: none;
  }
}
#basket-root .thead .td:first-child {
  text-align: center;
  grid-column-start: 1;
  grid-column-end: 4;
}
#basket-root .thead .td {
  text-align: right;
  color: #5C5D5E;
  font-family: Inter400;
  font-size: 1rem;
  line-height: 150%;
}
#basket-root tr:first-child {
  border-top: 1px solid #D9D9D9;
}
#basket-root tr {
  border-bottom: 1px solid #D9D9D9;
  position: relative;
}
@media (max-width: 960px) {
  #basket-root tr {
    border-right: 1px solid #D9D9D9;
    border-top: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
  }
}
#basket-root table {
  width: 100%;
}
#basket-root table tbody {
  width: 100%;
}
@media (max-width: 960px) {
  #basket-root table tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 580px) {
  #basket-root table tbody {
    display: table;
  }
}
#basket-root tr.basket-items-list-item-container-expend {
  display: grid;
  grid-template-columns: 1fr;
}
#basket-root tr.basket-items-list-item-container-expend * {
  font-family: Inter400;
  font-size: 18px;
}
#basket-root tr.basket-items-list-item-container-expend a {
  color: #8D1DE5;
  text-decoration: underline;
}
#basket-root .basket-items-list-item-container {
  display: grid;
  grid-column-gap: 30px;
}
@media (min-width: 960px) {
  #basket-root .basket-items-list-item-container {
    grid-template-columns: repeat(6, 1fr);
    padding: 18px 0;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-items-list-item-container {
    grid-template-columns: 1fr 1fr;
    padding: 18px 16px;
  }
}
@media (max-width: 580px) {
  #basket-root .basket-items-list-item-container {
    display: grid;
  }
}
#basket-root .basket-item-block-image {
  width: 100%;
}
#basket-root .basket-item-block-image a {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#basket-root .basket-item-block-image a img {
  max-width: 100%;
  max-height: 100%;
}
#basket-root .basket-items-list-item-descriptions {
  display: grid;
}
@media (min-width: 960px) {
  #basket-root .basket-items-list-item-descriptions {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-items-list-item-descriptions {
    grid-column-start: 1;
    grid-column-end: 3;
    border-bottom: 1px solid #EDEDF2;
    padding-bottom: 16px;
  }
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-properties {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-properties .basket-item-property-custom.basket-item-property-custom-text {
  order: 1;
  display: flex;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-properties .basket-item-property-custom.basket-item-property-custom-text .basket-item-property-custom-name, #basket-root .basket-items-list-item-descriptions .basket-item-block-properties .basket-item-property-custom.basket-item-property-custom-text .basket-item-property-custom-value {
  font-family: Inter400;
  font-size: 14px;
  color: #aaa;
  line-height: 140%;
  gap: 5px;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-properties * {
  order: 2;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info h2 {
  margin: 0;
  margin-bottom: 7px;
  line-height: 40%;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info h2.basket-item-info-name a {
  font-family: Inter500;
  color: #8D1DE5;
  line-height: 140%;
  margin-bottom: 7px;
  margin-top: 0;
  font-size: 20px;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info h2.basket-item-info-name a span {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
@media (min-width: 960px) {
  #basket-root .basket-items-list-item-descriptions .basket-item-block-info h2.basket-item-info-name a {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-items-list-item-descriptions .basket-item-block-info h2.basket-item-info-name a {
    font-size: 14px;
  }
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property .basket-item-property-name {
  font-family: Inter400;
  color: #aaa;
  line-height: 150%;
}
@media (min-width: 960px) {
  #basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property .basket-item-property-name {
    font-size: 12px;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property .basket-item-property-name {
    font-size: 10px;
  }
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property ul.basket-item-scu-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property ul.basket-item-scu-list li {
  padding: 2px 5px;
  border: 1px solid #5C5D5E;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.5s;
  min-width: 28px;
  min-height: 28px;
  text-align: center;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property ul.basket-item-scu-list li span {
  font-family: Inter400;
  color: #5C5D5E;
  font-size: 12px;
  line-height: 150%;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property ul.basket-item-scu-list li:hover {
  background-color: #292929;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property ul.basket-item-scu-list li:hover span {
  color: #fff;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property ul.basket-item-scu-list li.selected {
  background-color: #292929;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property ul.basket-item-scu-list li.selected span {
  color: #fff;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property.basket-item-property-scu-image ul.basket-item-scu-list li {
  padding: 1px;
  border: none;
  background-color: transparent;
  width: 28px;
  height: 28px;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property.basket-item-property-scu-image ul.basket-item-scu-list li span {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
}
#basket-root .basket-items-list-item-descriptions .basket-item-block-info .basket-item-property.basket-item-property-scu-image ul.basket-item-scu-list li.selected {
  border: 1px solid #5C5D5E;
}
#basket-root .basket-items-list-item-price.basket-items-list-item-price-for-one,
#basket-root .basket-items-list-item-amount,
#basket-root .basket-items-list-item-price {
  display: flex;
  align-items: flex-start;
}
@media (min-width: 960px) {
  #basket-root .basket-items-list-item-price.basket-items-list-item-price-for-one,
  #basket-root .basket-items-list-item-amount,
  #basket-root .basket-items-list-item-price {
    justify-content: flex-end;
  }
  #basket-root .basket-items-list-item-price.basket-items-list-item-price-for-one .title_price,
  #basket-root .basket-items-list-item-amount .title_price,
  #basket-root .basket-items-list-item-price .title_price {
    display: none;
  }
}
@media (min-width: 580px) and (max-width: 960px) {
  #basket-root .basket-items-list-item-amount {
    justify-self: flex-start;
    padding: 12px 0;
    grid-column: 1;
    justify-content: flex-start;
    border-bottom: 1px solid #EDEDF2;
    width: 100%;
    gap: 20px;
  }
  #basket-root .basket-items-list-item-price-for-one {
    grid-row: 3;
    justify-content: flex-start;
    flex-direction: column;
  }
  #basket-root .basket-items-list-item-price-for-one .title_price {
    font-size: 11px;
    font-family: Inter400;
    color: #aaa;
  }
  #basket-root .basket-items-list-item-price {
    justify-content: flex-end;
    grid-row: 4;
  }
}
@media (max-width: 580px) {
  #basket-root .basket-items-list-item-amount {
    padding: 12px 25px 12px 0;
    grid-column: 1/3;
    border-bottom: 1px solid #EDEDF2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
  }
  #basket-root .basket-items-list-item-amount .trn-amount {
    align-self: center;
    font-size: 12px;
  }
  #basket-root .basket-items-list-item-price-for-one {
    grid-row: 3;
    justify-content: flex-start;
    flex-direction: column;
  }
  #basket-root .basket-items-list-item-price-for-one .title_price {
    font-size: 11px;
    font-family: Inter400;
    color: #aaa;
  }
  #basket-root .basket-items-list-item-price {
    justify-content: flex-end;
  }
}
#basket-root .basket-items-list-item-price.basket-items-list-item-price-for-one .basket-item-price-current-text {
  font-family: Inter400;
  line-height: 140%;
}
@media (min-width: 960px) {
  #basket-root .basket-items-list-item-price.basket-items-list-item-price-for-one .basket-item-price-current-text {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-items-list-item-price.basket-items-list-item-price-for-one .basket-item-price-current-text {
    font-size: 14px;
  }
}
#basket-root .basket-item-price-current-text {
  font-family: Inter700;
  line-height: 140%;
}
@media (min-width: 960px) {
  #basket-root .basket-item-price-current-text {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-item-price-current-text {
    font-size: 14px;
  }
}
@media (min-width: 960px) {
  #basket-root .price_title {
    display: none;
  }
}
@media (max-width: 960px) {
  #basket-root .price_title {
    font-size: 11px;
    font-family: Inter400;
    color: #aaa;
  }
}
#basket-root .basket-item-block-amount {
  display: flex;
  align-items: center;
}
#basket-root .basket-item-block-amount .basket-item-amount-btn-minus,
#basket-root .basket-item-block-amount .basket-item-amount-btn-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #292929;
  cursor: pointer;
}
#basket-root .basket-item-block-amount .basket-item-amount-btn-minus img,
#basket-root .basket-item-block-amount .basket-item-amount-btn-plus img {
  width: 14px;
  height: 14px;
}
#basket-root .basket-item-block-amount input {
  padding: 10px;
  outline: none;
  border: none;
  font-family: Inter400;
  line-height: 150%;
  font-size: 16px;
  width: 40px;
  height: 30px;
  text-align: center;
}
#basket-root .basket-items-list-item-descriptions-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 1rem;
}
#basket-root .basket-item-image-link {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
#basket-root .basket-item-label-ring {
  position: absolute;
  background: #EC112B;
  color: #fff;
  font-size: 16px;
  padding: 5px 20px 5px 5px;
  top: 0;
  left: 0;
  border-radius: 0 0 130px/150px 0;
}
@media (max-height: 960px) {
  #basket-root .basket-items-list-item-remove {
    grid-column: 2;
    grid-row: 2;
    justify-self: flex-end;
    align-self: center;
  }
}
@media (min-width: 960px) {
  #basket-root .basket-items-list-item-remove {
    position: absolute;
    bottom: 18px;
    right: 0;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-items-list-item-remove {
    display: block;
    bottom: 78px;
    right: 16px;
    position: absolute;
  }
}
#basket-root .basket-total-price {
  height: max-content;
  top: 0;
  grid-column: 7/10;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 960px) {
  #basket-root .basket-total-price {
    grid-column: 7/10;
    position: sticky;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-total-price {
    grid-column: 1/10;
    margin-top: 30px;
  }
}
#basket-root .basket-total-price > .col-xs-12 {
  background-color: #EDEDF2;
  padding: 34px calc(1rem + 15px);
}
#basket-root .basket-total-price .basket-checkout-container {
  display: flex;
  flex-direction: column;
}
#basket-root .basket-total-price .basket-checkout-container .basket-coupon-block-field {
  position: relative;
  margin-bottom: 22px;
}
#basket-root .basket-total-price .basket-checkout-container .basket-coupon-block-field .form-group {
  display: flex;
  gap: 10px;
}
#basket-root .basket-total-price .basket-checkout-container .basket-coupon-block-field .form-group input[type=text] {
  border: 1px solid #EDEDF2;
  background: #FFF;
  border-radius: 0;
  padding: 10px 24px;
  font-family: Inter400;
  font-size: 16px;
  line-height: 150%;
  box-shadow: none;
}
#basket-root .basket-total-price .basket-checkout-container .basket-totalCount-section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
#basket-root .basket-total-price .basket-checkout-container .basket-totalCount-section-inner .basket-totalCount-block-total-title {
  font-family: Inter400;
  color: #5C5D5E;
}
@media (min-width: 960px) {
  #basket-root .basket-total-price .basket-checkout-container .basket-totalCount-section-inner .basket-totalCount-block-total-title {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-total-price .basket-checkout-container .basket-totalCount-section-inner .basket-totalCount-block-total-title {
    font-size: 12px;
  }
}
#basket-root .basket-total-price .basket-checkout-container .basket-totalCount-section-inner .basket-totalCount-block-total-price-inner {
  font-family: Inter500;
}
@media (min-width: 960px) {
  #basket-root .basket-total-price .basket-checkout-container .basket-totalCount-section-inner .basket-totalCount-block-total-price-inner {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-total-price .basket-checkout-container .basket-totalCount-section-inner .basket-totalCount-block-total-price-inner {
    font-size: 12px;
  }
}
#basket-root .basket-total-price .basket-checkout-container .basket-checkout-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-section-inner .basket-checkout-block-total-title {
  font-family: Inter500;
  color: #5C5D5E;
}
@media (min-width: 960px) {
  #basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-section-inner .basket-checkout-block-total-title {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-section-inner .basket-checkout-block-total-title {
    font-size: 14px;
  }
}
#basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-section-inner .basket-coupon-block-total-price-old {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
}
#basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-section-inner .basket-coupon-block-total-price-difference {
  display: flex;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #EF2DF1;
}
#basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-section-inner .basket-coupon-block-total-price-difference span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
#basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-section-inner .basket-coupon-block-total-price-current {
  font-family: Inter600;
}
@media (min-width: 960px) {
  #basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-section-inner .basket-coupon-block-total-price-current {
    font-size: 22px;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-section-inner .basket-coupon-block-total-price-current {
    font-size: 14px;
  }
}
#basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-block.basket-checkout-block-btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Inter700;
  color: #fff;
  background-color: #292929;
  border-radius: 0;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 960px) {
  #basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-block.basket-checkout-block-btn button {
    font-size: 16px;
    padding: 16px 26px;
  }
}
@media (max-width: 960px) {
  #basket-root .basket-total-price .basket-checkout-container .basket-checkout-section .basket-checkout-block.basket-checkout-block-btn button {
    font-size: 13px;
    padding: 13px 26px;
  }
}
#basket-root .basket-total-price .basket-coupon-alert {
  margin: 10px 0;
}
#basket-root .basket-total-price .basket-coupon-alert span.close-link {
  color: #c81c5d;
  text-decoration: underline;
  cursor: pointer;
}
#basket-root .basket-total-price .basket-info-block {
  padding: 1rem;
  border: 1px solid #F2F2F2;
}
#basket-root .basket-total-price .basket-info-block ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}
#basket-root .basket-total-price .basket-info-block ul li {
  display: flex;
  gap: 5px;
  align-items: center;
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  font-family: Inter400;
}
#basket-root .basket-total-price .basket-info-block ul li img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
}
#basket-root .basket-total-price .basket-info-block ul li a {
  color: #EF2DF1;
}
#basket-root .basket-total-price .bonus-balance {
  padding: 1rem;
  border: 1px solid #F2F2F2;
  background: rgba(239, 45, 241, 0.062745098);
}
#basket-root .basket-total-price .bonus-balance p {
  margin-bottom: 5px;
  font-size: 14px;
}
#basket-root .basket-total-price .bonus-balance p span {
  font-weight: bold;
  font-size: 16px;
}

#basket-root .basket-item-block-price:has(.basket-item-price-old) .basket-item-price-old {
  font-size: 12px;
  text-decoration: line-through;
  color: #aaa;
}
#basket-root .basket-item-block-price:has(.basket-item-price-old) .basket-item-price-old-text {
  color: red;
}
#basket-root .basket-item-block-price .basket-item-price-difference {
  display: flex;
  gap: 5px;
  font-size: 12px;
  color: #EF2DF1;
  font-weight: 600;
}
#basket-root .basket-item-block-price .basket-item-price-difference span {
  color: #EF2DF1;
}
#basket-root tr .basket-items-list-item-price:first-child {
  grid-column: 1;
}
#basket-root tr .basket-items-list-item-price:last-child {
  grid-column: 2;
}

#basket-items-list-wrapper.counting {
  opacity: 0.5;
  pointer-events: none;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
}

#basket-root .trn-amount {
  color: #EF2DF1;
  font-family: Inter500;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

table.trn-store-amount {
  border: 1px solid #eee;
  border-collapse: collapse;
}
table.trn-store-amount td {
  border: 1px solid #eee;
  border-collapse: collapse;
  text-align: left;
  line-height: normal;
}
@media (min-width: 580px) {
  table.trn-store-amount td {
    padding: 5px 10px;
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  table.trn-store-amount td {
    font-size: 12px;
    padding: 5px;
    overflow-wrap: break-word;
  }
}
table.trn-store-amount tr.title_table {
  background-color: #eee;
}
table.trn-store-amount tr.title_table td {
  font-weight: 600;
}

#trdn-popup-amount #popup-window-content-trdn-popup-amount {
  background-color: transparent;
}
#trdn-popup-amount #popup-window-content-trdn-popup-amount small {
  font-size: 18px !important;
}
@media (min-width: 580px) {
  #trdn-popup-amount .popup-window-close-icon.popup-window-titlebar-close-icon {
    right: 10px !important;
    top: 11px !important;
  }
}
@media (max-width: 580px) {
  #trdn-popup-amount .popup-window-close-icon.popup-window-titlebar-close-icon {
    right: 5px !important;
    top: 4px !important;
  }
}

@media (max-width: 580px) {
  .popup-window.popup-window-with-titlebar {
    margin-right: 0.5rem;
    width: 100%;
    padding: 20px;
    max-width: 90%;
  }
}
@media (min-width: 580px) {
  .popup-window.popup-window-with-titlebar {
    padding: 49px 40px 40px;
    max-width: 600px;
  }
}
.popup-window.popup-window-with-titlebar .popup-window-titlebar {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #eeeeee;
  align-items: center;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 580px) {
  .popup-window.popup-window-with-titlebar .popup-window-titlebar {
    height: 35px;
  }
}
.popup-window.popup-window-with-titlebar .popup-window-titlebar .popup-window-titlebar-text {
  color: #292929;
  font-family: Inter400;
  line-height: normal;
  text-align: center;
  padding: 0;
}
@media (max-width: 580px) {
  .popup-window.popup-window-with-titlebar .popup-window-titlebar .popup-window-titlebar-text {
    font-size: 14px;
  }
}
@media (min-width: 580px) {
  .popup-window.popup-window-with-titlebar .popup-window-titlebar .popup-window-titlebar-text {
    font-size: 16px;
  }
}
.popup-window.popup-window-with-titlebar .popup-window-close-icon.popup-window-titlebar-close-icon {
  right: 20px;
}
.popup-window.popup-window-with-titlebar .popup-window-close-icon.popup-window-titlebar-close-icon::after {
  width: 15px;
  height: 15px;
}
.popup-window.popup-window-with-titlebar .popup-window-content {
  color: #292929;
  font-family: Inter500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  padding: 20px 0 0;
}
.popup-window.popup-window-with-titlebar .popup-window-content .popup-product-card {
  display: grid;
  width: 100%;
  margin: 0;
  text-align: center;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 960px) {
  .popup-window.popup-window-with-titlebar .popup-window-content .popup-product-card {
    grid-template-columns: 1fr;
  }
}
.popup-window.popup-window-with-titlebar .popup-window-content .popup-product-card img {
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  width: 100%;
}
@media (max-width: 580px) {
  .popup-window.popup-window-with-titlebar .popup-window-content .popup-product-card img {
    max-height: 320px;
  }
}
.popup-window.popup-window-with-titlebar .popup-window-content .popup-product-card .popup-product-card-description {
  text-align: start;
  position: relative;
}
.popup-window.popup-window-with-titlebar .popup-window-content .popup-product-card .popup-product-card-description h2 {
  font-size: 20px;
  font-family: Inter400;
  margin-bottom: 10px;
  font-weight: 700;
}
.popup-window.popup-window-with-titlebar .popup-window-content .popup-product-card .popup-product-card-description p {
  font-size: 18px;
  margin-bottom: 15px;
}
@media (max-width: 960px) {
  .popup-window.popup-window-with-titlebar .popup-window-content .popup-product-card .popup-product-card-description p {
    margin-bottom: 15px;
  }
}
.popup-window.popup-window-with-titlebar .popup-window-content .popup-product-card .popup-product-card-description p span {
  font-size: 16px;
  color: #AAA;
  text-decoration: line-through;
}
.popup-window.popup-window-with-titlebar .popup-window-content .popup-product-card .popup-product-card-description p span.popup-product-card-size {
  display: block;
  padding: 5px 0px 5px 0px;
  color: #292929;
  text-decoration: none;
}
.popup-window.popup-window-with-titlebar .popup-window-content .popup-product-card .popup-product-card-description p span.popup-product-card-size span {
  text-decoration: none;
  color: #292929;
}
.popup-window.popup-window-with-titlebar .popup-window-buttons {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding: 0;
}
@media (min-width: 600px) {
  .popup-window.popup-window-with-titlebar .popup-window-buttons {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .popup-window.popup-window-with-titlebar .popup-window-buttons {
    grid-template-rows: 1fr 1fr;
  }
}
.popup-window.popup-window-with-titlebar .popup-window-buttons span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  background-color: #292929;
  color: #FFF;
  font-family: Inter600;
  font-size: 16px;
  line-height: 140%;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 580px) {
  .popup-window.popup-window-with-titlebar .popup-window-buttons span {
    width: auto;
  }
}
.popup-window.popup-window-with-titlebar .popup-window-buttons .btnBackCatalog {
  background-color: transparent;
  color: #292929;
  width: 100%;
  cursor: pointer;
  border: 1px solid #292929;
}

/*# sourceMappingURL=style.css.map */
