*,
*::after,
*::before {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: "Myriad Pro Regular", sans-serif;
}
body.-lock-popup {
   overflow: hidden;
}

:root {
   --color-primary: #1e456e;
   --secondary-color: #f0f4f9;
   --deactive-color: rgba(30, 69, 110, 0.5);
}

li {
   list-style: none;
}

a {
   text-decoration: none;
   color: var(--color-primary);
}

input,
button,
textarea {
   background: transparent;
   border: none;
   outline: none;
}

[data-popup] {
   position: fixed;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   background-color: rgba(0, 0, 0, 0.4);
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   z-index: 45;
   transition: all 0.4s ease 0.2s;
}
[data-popup].-open {
   transition: all 0.4s ease 0s;
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
}
[data-popup].-open [data-popup-content] {
   transition: all 0.4s ease 0.2s;
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
   transform: translate(0px, 0px);
}

[data-popup-close] {
   position: absolute;
   right: 43px;
   top: 49px;
   z-index: 2;
}
[data-popup-content] {
   position: relative;
   background-color: #ffffff;
   transition: all 0.4s ease 0s;
   padding: 40px;
   transform: translate(0px, 15px);
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
}
.container {
   max-width: 1520px;
   margin: 0 auto;
   width: 100%;
   padding-left: 50px;
   padding-right: 50px;
}

.-popup-title {
   position: relative;
   font-size: 32px;
   line-height: 100%;
   font-family: "Myriad Pro Bold", sans-serif;
   padding: 0 0 10px;
}
.-popup-title::before {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0px;
   width: 100%;
   height: 1px;
   background-color: #f6f7f9;
}

.popup-price__content {
   flex: 0 1 415px;
}

.form-popup-price {
   padding: 30px 0 0;
}
.form-popup-price__btn {
   color: #fff;
   height: 40px;
   cursor: pointer;
   background-color: #355983;
   width: 100%;
   font-size: 18px;
   transition: background-color 0.4s ease 0s;
}
.prices-form-popup input {
   display: none;
}
.prices-form-popup input.-error + label {
   box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
.prices-form-popup input:checked + label {
   box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.05);
}
.prices-form-popup input:checked + label::before {
   opacity: 1;
   visibility: visible;
}
.prices-form-popup__row {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 17px;
}
.prices-form-popup__row:not(:last-child) {
   margin: 0 0 23px;
}
.prices-form-popup__item {
   background-color: #f6f7f9;
   transition: all 0.4s ease 0s;
   position: relative;
   padding: 10px 5px 12px;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   text-align: center;
   cursor: pointer;
   transition: box-shadow 0.4s ease 0s;
}
.prices-form-popup__item::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   border: 1px solid #1e456e;
   opacity: 0;
   visibility: hidden;
   transition: all 0.4s ease 0s;
}
.prices-form-popup__date {
   flex: 0 0 100%;
   margin: 0 0 5px;
   font-weight: 600;
   font-size: 16px;
   line-height: 20px;
   color: #000000;
}
.prices-form-popup__price {
   flex: 0 0 100%;
   font-weight: 500;
   font-size: 16px;
   line-height: 20px;
   color: #b0b0b0;
}
.prices-form-popup__label {
   font-family: "Myriad Pro Regular";
   font-weight: 400;
   font-size: 14px;
   line-height: 17px;
   color: #202020;
   margin: 0 0 20px 0;
}


.popup-payment {
   z-index: 46;
}
.popup-payment__content {
   flex-basis: 500px;
   background-color: transparent;
   padding: 0;
   box-shadow: none;
}
.popup-payment__wrap {
   position: relative;
}
.popup-payment__wrap::before {
   content: "";
   position: absolute;
   width: 100%;
   bottom: 10px;
   left: 0;
   height: calc(100% - 60px);
   background-color: #fff;
   transition: height 0.6s ease 0s;
}
.popup-payment__wrap.-show::before {
   height: 100%;
}
.popup-payment__btn {
   margin: 10px 0 0;
}
.popup-payment__btn.-hide {
   display: none;
}

/* Start Header Component */

.header {
   width: 100%;
   padding-top: 64px;
   padding-bottom: 120px;
   background: var(--secondary-color);
}

.header-language {
   display: flex;
   justify-content: flex-end;
}

.header-language__mobile {
   display: none;
}

.header-language__mobile li {
   display: flex;
   align-items: center;
   font-size: 18px;
   text-transform: uppercase;
}

.header-language__mobile li:not(:first-child) {
   margin-top: 27px;
}

.header-language__mobile li img {
   width: 40px;
   margin-left: 10px;
}

.header-mobile__author {
   font-size: 24px;
   color: var(--color-primary) !important;
   font-family: "Myriad Pro Bold", sans-serif;
}

.header-language li {
   display: flex;
   align-items: center;
   color: var(--color-primary);
   cursor: pointer;
}
.header-language__label {
   opacity: 0.5;
}
.header-language__label.-active {
   opacity: 1;
}

.header-language li:not(:first-child) {
   margin-left: 19.2px;
}

.header-language li:last-child {
   font-size: 19.2px;
   font-weight: 700;
   margin-left: 48px;
}

.header-language li p {
   font-size: 19.2px;
   text-transform: uppercase;
   font-weight: 400;
}

.header-language li img {
   width: 36px;
   margin-left: 16px;
}

/* Start Main Offer Component */

.offer {
   padding-top: 81px;
   display: flex;
   justify-content: space-between;
}

.offer-buy {
   max-width: 468px;
   width: 100%;
}

.offer-buy__img img {
   width: 100%;
}

.offer-buy__buttons {
   margin-top: 42px;
}
.buttons-offer-buy {
   display: flex;
   flex-wrap: wrap;
}
.buttons-offer-buy__btn {
   flex: 0 0 100%;
   font-size: 24px;
   padding: 16px 10px;
   text-align: center;
   font-weight: 700;
   border: 2px solid #2a5285;
   display: inline-flex;
   align-items: center;
   justify-content: center;
}
.buttons-offer-buy__btn:not(:last-child) {
   margin-bottom: 22px;
}
.buttons-offer-buy__btn img {
   margin: 0 0 0 6px;
}
.buttons-offer-buy__btn_card {
   color: #fff;
   background: #569ddd;
}
.buttons-offer-buy__btn_rakuten {
   color: #1e456e;
}

.offer-details {
   margin-left: 48px;
   max-width: 810px;
   color: var(--color-primary);
}

.offer-details h2 {
   font-family: "Myriad Pro Bold", sans-serif;
}

.offer-details__title h2 {
   font-size: 32px;
   margin-bottom: 20px;
   text-transform: uppercase;
}


.offer-details__title p {
   font-size: 20px;
   line-height: 24px;
   padding-bottom: 30px;
   margin-bottom: 30px;
   border-bottom: 2px solid #2a5285;
   font-weight: 400;
}

.offer-details__info h2,
.offer-details__shipping h2 {
   font-size: 24px;
   margin-bottom: 16px;
}

.offer-info__list li {
   font-size: 20px;
}

.offer-info__list li:not(:first-child) {
   margin-top: 4px;
}

.offer-details__shipping {
   margin-top: 30px;
   font-size: 20px;
}

.offer-shipping__mobile {
   display: flex;
   margin-top: 40px;
   justify-content: space-between;
}

.offer-shipping__mobile--item {
   padding: 0 45px;
   height: 210px;
   background: rgba(86, 157, 221, 0.23);
   text-align: center;
   display: none;
   align-items: center;
   justify-content: center;
   flex-direction: column;
}

.offer-shipping__mobile--item:not(:first-child) {
   margin-left: 30px;
}

.offer-shipping__mobile--item b {
   font-size: 20px;
   font-family: "Myriad Pro Semibold", sans-serif;
   text-transform: uppercase;
   margin-bottom: 22px;
}

.offer-shipping__mobile--item p {
   max-width: 115px;
   width: 100%;
   font-size: 20px;
}
.offer-details__item {
   margin-bottom: 20px;
   font-family: "Myriad Pro Bold", sans-serif;
   margin-bottom: 5px;
}
.offer-details__item,
.offer-details__label {
   font-size: 20px;
}
.offer-details__label {
   font-family: "Myriad Pro Semibold", sans-serif;
}
/* Start Main Component*/

.main {
   padding: 120px 0;
   background: var(--color-primary);
}

.main-title {
   color: #fff;
   font-size: 32px;
   font-family: "Myriad Pro Bold", sans-serif;
   text-transform: uppercase;
}

.main-images {
   margin-top: 60px;
   padding: 0 50px 120px 0;
}

.main-images__wrapper {
   display: flex;
}

.main-images img {
   width: 33%;
   max-width: 486px;
}

.main-images img:not(:first-child) {
   margin-left: 30px;
}

.main-button {
   display: inline-block;
   float: right;
   transform: translateX(50px);
   width: 468px;
   padding: 16px 10px;
   background: #569ddd;
   font-size: 24px;
   text-align: center;
   color: #fff;
   font-family: "Myriad Pro Bold", sans-serif;
   margin-top: 56px;
}

.main-button:hover {
   background: var(--color-primary);
   border: 2px solid #569ddd;
}

/* Start Footer Component*/

.footer {
   width: 100%;
   background: #15191e;
   height: 163px;
   text-align: right;
   display: flex;
   align-items: center;
}

.footer a {
   font-size: 24px;
}

.btn {
   cursor: pointer;
   font-weight: 500;
   left: 3px;
   line-height: inherit;
   position: relative;
   text-decoration: none;
   text-align: center;
   border-style: solid;
   border-width: 1px;
   border-radius: 3px;
   -webkit-appearance: none;
   -moz-appearance: none;
   display: inline-block;
}

.btn_small {
   padding: 10px 20px;
   font-size: 0.875rem;
}

.btn_green {
   outline: none;
   background-color: #64d18a;
   border-color: #64d18a;
   color: white;
   transition: all 200ms ease;
}

.btn_green:hover {
   background-color: #8bdda8;
   color: white;
}

.EN {
   display: none;
}

.d-none {
   display: none !important;
}

.d-block {
   display: block !important;
}

.btn-mail {
   color: #569ddd;
}

@media (min-width: 767.98px) {
   [data-popup-body] {
      min-height: 100%;
      padding: 70px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   [data-popup-content] {
      box-shadow: 0px 2px 10px rgba(21, 42, 77, 0.08);
      border-radius: 8px;
   }
}
@media (max-width: 767.98px) {
   .popup-price__body {
      height: 100%;
   }
   .popup-price__content {
      height: 100%;
      overflow: auto;
   }
   .popup-payment__body {
      padding: 40px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
}
@media (any-hover: hover) {
   .form-popup-price__btn:hover {
      background-color: #2d4b6e;
   }
   .buttons-offer-buy__btn_card:hover {
      background: var(--color-primary);
   }
   .buttons-offer-buy__btn_rakuten:hover,
   .buttons-offer-buy__btn_etsy:hover {
      background: #569ddd;
      color: #fff;
   }
}