*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-decoration: none;
  color: inherit;
}

body {
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.core-title {
  font-size: 46px;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 20px;
  max-width: 800px;
  text-align: center;
}

.div-video {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}

.video-container {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 30px;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background-color: #000;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  transition: opacity 0.3s ease, background 0.3s ease;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.45);
}

.play-overlay svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
}

.play-overlay:hover svg {
  transform: scale(1.1);
}

.video {
  max-width: 900px;
  width: 100%;
  cursor: pointer;
}

.full-video {
  z-index: 1;
  position: fixed;
  top: 0;
  bottom: -4%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(1, 1, 1, 0.7);
}

.close {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 40px;
}

.close div {
  font-size: 52px;
  color: white;
  cursor: pointer;
}

.close div:hover {
  font-size: 52px;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.relative {
  position: relative;
}

.notification {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
}

.notification div {
  background-color: rgba(49, 202, 79, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  padding: 10px;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  border: 1px solid white;
}

.notification img {
  width: 70px;
}

@media (max-width: 390px) {
  .notification div {
    width: 100%;
  }
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border: 4px solid lightblue;
}

.form-title {
  margin-top: 10px;
  margin-bottom: 5px;
}

.form img {
height: auto;
  margin: 20px 0;
  width: 80%;
}

.form-price {
  font-size: 24px;
  margin-bottom: 20px;
}

.form-text {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  color: rgb(113, 113, 113);
}

input {
  font-size: 18px;
  padding: 4px 10px;
  border: 1px solid rgba(53, 130, 237, 0.5);
  margin-bottom: 20px;
  width: 60%;
  outline: none;
}

.btn-submit {
  background-color: #3580ed;
  color: white;
  border: none;
  width: 50%;
  padding: 15px 20px;
  margin-bottom: 30px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.4s ease;
}

@media (hover: hover) {
  .btn-submit:hover {
    transform: scale(0.9);
    transition: 0.4s ease;
  }
}

.banner-chanels {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #8f0661;
  padding: 10px;
  margin-bottom: 10px;
}

.banner-chanels p {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-chanels div {
  display: flex;
  gap: 20px;
}

.banner-chanels img {
  width: 100%;
  max-width: 110px;
/*  height: fit-content;*/
  height: 100%;
}

.all-coments {
  border: 1px solid rgb(187, 187, 187);
}

.text-all-coments {
  padding: 10px;
  font-weight: 700;
  font-size: 16px;
}

.place-coment {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coment {
  margin-top: 10px;
  display: flex;
  width: 95%;
  margin-bottom: 20px;
  opacity: 1;
  transition: 0.4s ease;
  transform: translateY(0);
}

.ava-coment {
  border-radius: 100px;
  width: 70px;
  height: 70px;
  padding: 10px 10px;
}

.name-coment {
  color: #365899;
  font-size: 16px;
  font-weight: 700;
  padding: 5px;
}

.info-coment {
  width: 90%;
}

.text-coment {
  font-size: 16px;
  padding: 10px;
  border-radius: 100px;
  background-color: #eaebef;
  width: 100%;
}

.all-buttons-coment {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-react-coment {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 10px;
  color: #365899;
}

.btn-react-coment p:last-child {
  color: rgb(105, 105, 105);
}

.react-coment {
  cursor: pointer;
}

.react-coment:hover {
  text-decoration: underline;
}

.btn-like-coment {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 3px 1px rgba(1, 1, 1, 0.3);
  border-radius: 100px;
  padding: 2px 5px;
}

@media (max-width: 900px) {
  .core-title {
    font-size: 38px;
  }

  .banner-chanels img {
    width: 90px;
  }

  .banner-chanels p {
    font-size: 20px;
    text-align: center;
  }

  .text-coment {
    font-size: 16px;
    padding: 30px 10px;
    border-radius: 30px;
    background-color: #eaebef;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .core-title {
    font-size: 28px;
  }

  .form img {
    width: 65%;
  }

  .core-title {
    font-size: 28px;
  }

  .banner-chanels img {
    width: 50px;
  }
}

@media (max-width: 390px) {
  .all-buttons-coment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.animate-show {
  opacity: 0;
  transition: 0.4s ease;
  transform: translateY(20px);
}

.input-container {
  position: relative;
  width: 60%;
}

.input-container input {
  width: 100%;
}

.input-container input[name="phone"] {
  padding-left: 35px;
  /* Добавляем отступ слева для изображения */
}

.input-container img {
  width: 25px;
  position: absolute;
  left: 5px;
  top: -5px;
  transform: translateY(-50%);
}

.div__popup-form {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(1, 1, 1, 0.8);

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  cursor: pointer;
}

@keyframes animPopupForm {
  0% {
    transform: translateY(-500%);
  }

  100% {
    transform: translateY(0%);
  }
}

.popup-form {
  background-color: white;
  overflow: auto;
  width: 90%;
  max-width: 500px;
  max-height: 90%;
  cursor: default;
  animation: animPopupForm 0.5s ease forwards;
}

.popup-form .form-title,
.popup-form .img-form_cert,
.popup-form .footer-title_form,
.popup-form .termina-form,
.popup-form .timer,
.popup-form .form-text {
  display: none;
}

.popup-form .btn-submit {
  margin: 0;
}

.popup-form .prod-form-img {
  margin-top: 0px;
}

.popup-form .div-img-form_cert {
  margin: 0;
  display: none;
}

.popup-form__btn-close {
  position: absolute;
  right: 2%;
  top: 3%;
  z-index: 1;
  font-size: 64px;
  cursor: pointer;
  color: rgb(172, 172, 172);
  transition: 0.3s ease;
  line-height: 1px;
}
.formFb {
    box-sizing: border-box;
    margin: 1.5rem 0;
}
.formFb {
    max-width: 600px;
    font-size: 17px;
    padding: 0.6em 1em;
    display: flex;
    flex-direction: column;
    align-items: center   ;
    margin: 0 auto;
    border-radius: 0.5em;
    background-image: linear-gradient(90deg, #3580ed 50%, transparent 50%), linear-gradient(90deg, #3580ed 50%, transparent 50%), linear-gradient(0, #3580ed 50%, transparent 50%), linear-gradient(0, #3580ed 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 10px 2px, 10px 2px, 2px 10px, 2px 10px;
    animation: marching-ants 400ms infinite linear;
}
@keyframes marching-ants {
    0% {
        background-position: 0 0, 10px 100%, 0 10px, 100% 0;
    }
    100% {
        background-position: 10px 0, 0 100%, 0 0, 100% 10px;
    }
}
.formFb__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.formFb__text {
    display: block;
    margin: 0;
    color:#000;
}
.formFb__action {
    margin-bottom: .5em;
    text-align: center;
}
.formFb__counter {
    font-size: .925em;
    text-align: center;
}
.formFb__counter span {
    font-weight: bold !important;
}
.formFb__counter .red {
    color: #000 !important;
}
.formFb__img {
    max-width: 250px;
    margin: 1em 0;
}
.formFb__img img {
    width: 100%;
    max-width: 100%;
}
.formFb__price {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.formFb__price--p {
    display: flex;
    align-items: center;
}
.formFb__price--old {
    font-size: 1.15em;
    margin-right: .5em;
}
.formFb__price--txt {
    margin-bottom: .55em;
    font-weight: bold;
    font-size: 1.25em;
}
.formFb__price--new {
    font-size: 2em;
    font-weight: bold;
    color: #000;
}
.formFb__timer {
    margin: 1.5em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.formFb__timer p {
    /*margin-right: .5em;*/
    margin-bottom: .25em;
}
.formFb__timer .timer {
    display: flex;
    font-size: 2em;
    color: red;
}
.formFb__inputs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
    max-width: 300px;
    width: 100%;
}
.formFb__inputs label {
    font-size: .941175em;
    margin-bottom: .25em;
}
.formFb__inputs input {
    color: #000;
    display: block;
    border: 1px solid #3578e563;
    padding-left: 10px;
    padding: .5em .65em;
    width: 100%;
    margin: 0 auto;
}
.formFb__btn {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: .65em 0;
    margin-bottom: 1em;
    background: #3580ed;
    border: 1px solid #3580ed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none !important;
    color: #fff;
    font-size: 1em;
    transition: transform .4s;
}
.formFb__btn:hover, .formFb__btn:active {
    transform: scale(.95);
}
.popup-form__btn-close:hover {
  transform: scale(0.9);
  transition: 0.3s ease;
}

.div-section-form {
  margin: 20px auto;
  width: 100%;
}

.popup-form .div-section-form {
  margin: 0px auto;
  width: 100%;
}

/* .prod-form-img {
max-height: 500px;
height: 100%
} */

.none {
  display: none;
}


.wrap-prod-mobile {
display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: auto;
}
@media (max-width: 375px) {
  .wrap-prod-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }

/*  .prod-form-img-2 {
    width: 75% !important;
  } */
}
.iti--separate-dial-code .iti__selected-dial-code {
        color: #000;
    }

    .iti--separate-dial-code {
        margin-bottom: 10px;
    }

    .iti--allow-dropdown input,
    .iti--allow-dropdown input[type=text],
    .iti--allow-dropdown input[type=tel],
    .iti--separate-dial-code input,
    .iti--separate-dial-code input[type=text],
    .iti--separate-dial-code input[type=tel] {
        padding-right: 6px !important;
        padding-left: 80px !important;
    }

    .iti--separate-dial-code {
        width: 100%;
    }
   
    .order-btn {
        background-color: orange;
        color: #fff;
        font-size: 24px;
        у padding: 15px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 20px;
        text-align: center
    }

    .price-container {
        display: inline-block;
        position: relative;
        padding: 10px;
        vertical-align: middle;
    }

    .price {
        color: red;
        font-size: 32px;
        font-weight: 700;
        z-index: 1;
        position: relative;
        margin-bottom: 0px;
    }

    .price-new {
        color: red;
    }

    .circle-svg {
        position: absolute;
        top: -26px;
        left: -27px;
        width: 123px;
        height: 99px;
        transform: rotate(-90deg);
        display: none;
    }

    .circle {
        fill: none;
        stroke: green;
        stroke-width: 2;
        stroke-dasharray: 282.743;
        stroke-dashoffset: 282.743;
        animation: draw-circle 2s linear infinite
    }

    @keyframes draw-circle {
        to {
            stroke-dashoffset: 0
        }
    }

    .price-old {
        color: gray;
        font-size: 24px;
        text-decoration: line-through;
    }

    @keyframes strikethrough {
        0% {
            transform: scaleX(0)
        }

        50% {
            transform: scaleX(1)
        }

        100% {
            transform: scaleX(1)
        }
    }

    .react-coment {
        cursor: unset !important;
        color: #696969
    }

    .react-coment:hover {
        text-decoration: none !important
    }

    .order-button {
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .order-button a {
        text-align: center
    }

    .order-button img {
        max-width: 400px;
        margin: 0 auto
    }

    @media (max-width:500px) {
        .order-button img {
            max-width: 250px
        }
    }

    @media (max-width:500px) {
        .notification div {
            font-size: 16px !important;
            text-align: center
        }
    }

    .hide {
        display: none
    }

    .div__popup-form {
        z-index: 100007 !important;
        background-color: rgb(26 26 26 / 98%) !important
    }

    .smartplayer-mobile-container {
        max-width: 900px !important
    }
  
    .text-coment {
        border-radius: 20px;
    }
	  .elementor-element:has(#smartplayer) {
                        width: 100%;
                    }
   