@font-face {
    font-family: 'Circe';
    src: url(../fonts/circe-regular.woff2) format("woff2"),url(../fonts/circe-regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'Circe';
    src: url(../fonts/circe-bold.woff2) format("woff2"),url(../fonts/circe-bold.woff) format("woff");
    font-weight: 700;
    font-style: normal
}
@font-face {
    font-family: ProductSans;
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/ProductSansRegular.ttf);
}
@font-face {
    font-family: ProductSans;
    font-display: swap;
    font-style: bold;
    font-weight: 600;
    src: url(../fonts/ProductSansBold.ttf);
}
html, body {
    margin: 0px;
    padding: 0px;
    /* font-family: "GFS Didot"; */
}
* {
    box-sizing: border-box;
}

.wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    padding: 0px 100px;
    width: 100%;
}
.top {
    position: fixed;
    top: 0px;
    padding: 0px 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgb(59 59 59 / 44%);
    background-color: rgb(0 0 0 / 44%);
    height: 100%;
    max-height: 90px;
}
.top .logo img {
    height: 50px;
    width: 100%;
}
.menu {
    display: flex;
    gap: 20px;
    align-items: center;
    font-family: 'Circe';
}
.menu a {
    clear: both;
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
    margin: 0;
    color: #FFFFFF;
    white-space: nowrap;
    text-decoration: none;
}
.menu a.button {
    font-size: 15px;
}
.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 6px;
}
.language-selector a {
    font-size: 15px;
}
.noscam_block {
    text-align: center;
    padding: 40px 0px;
    color: #fff;
    font-family: 'Circe';
    background: linear-gradient(to bottom, rgb(27 0 0), #000000 30%, #000000 70%, rgb(27 0 0));
}
.noscam_block .description a {
    color: #fff;
    text-decoration: underline;
}
.noscam_block .description ul {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: auto;
    text-align: left;
}
.noscam_block .description li {
    list-style: none;
}
.block1 {
    /* padding-top: 90px; */
    /* padding-bottom: 90px; */
    min-height: 100vh;
    background: #000000;
    width: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: center;
}
.block1 .block_title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
    position: relative;
    font-family: "GFS Didot";
}
.block1 .block_title .title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 100;
    z-index: 10;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.block1 .block_title .title h1 {
    z-index: 10;
    display: block;
    position: relative;
    font-weight: 100;
    margin-top: 0px;
    margin-bottom: -10px;
}
.block1 .block_title .title h2 {
    /* position: absolute; */
    z-index: 12;
    bottom: -6px;
    font-size: 30px;
    font-family: 'Circe';
    font-weight: 100;
    margin: 0px;
    padding: 0px;
}
.block1 .block_title .title .text_shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-filter: blur(35px);
    filter: blur(35px);
    background: #000000;
    z-index: 0;
}
.block1 .buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
    position: absolute;
    bottom: 80px;
    width: 100%;
    max-width: 1020px;
    padding: 0px 40px;
    justify-content: center;
    transition: bottom ease-in-out 0.5s;
}
.block1 .buttons .button {
    width: 300px;
    text-align: center;
}
.stars {
    pointer-events: none;
    position: absolute;
    width: 100%;
    max-width: 1280px;
    margin-bottom: 600px;
}

.stars {}
.stars div {
    position: absolute;
}
.stars .star_size_l {
    width: 100px;
    height: 100px;
    background: url('../img/star.svg') 50% 50% / 100% no-repeat;
}
.stars .star_size_m {
    width: 50px;
    height: 50px;
    background: url('../img/star.svg') 50% 50% / 100% no-repeat;
}
.stars .star_size_s {
    width: 25px;
    height: 25px;
    background: url('../img/star.svg') 50% 50% / 100% no-repeat;
}
.star {
    top: calc(50% - 50px + (100vw - 100px) * calc(random())); /* случайная позиция от -50px до +50px от центра по вертикали */
    left: calc(50% - 50px + (100vw - 100px) * calc(random())); /* случайная позиция от -50px до +50px от центра по горизонтали */
}

.button {
    font-size: 18px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    border-width: 1px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-position: center center;
    border-color: #fff8db;
    border-style: solid;
    color: #fff;
    text-decoration: none;
    padding: 13px;
    display: flex;
    width: fit-content;
    justify-content: center;
}
.button:hover {
    background-color: rgba(94, 94, 94, 0.38);
}
.button.active {
    background-color: rgb(116 116 116 / 38%);
    border-color: #fff;
}
.block2 {
    height: 0px;
    background: linear-gradient(0deg, #04000d, #190e39);
    overflow: hidden;
    transition: all ease-in-out 0.5s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.block2.open {
    height: auto;
    padding: 80px 40px;
    padding-top: 100px;
}
.block2 .wrapper {
    flex-direction: row;
    overflow: hidden;
    padding: 10px 0px;
    max-width: 940px;
    width: 100%;
}
.block2 .matrix_form {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex: none;
    width: 100%;
    transition: all ease-in-out 0.5s;
    align-items: center;
}
.block2 .matrix_form .button, .block2 .matrix_form input {
    width: 100%;
    text-align: center;
}
input {
    font-family: "Inter";
    font-size: 1.25em;
    background-color: #20272c;
    color: #d2d2d2;
    border: none;
    border-radius: 0.5em;
    text-align: left;
    outline: none;
    height: 50px;
    padding: 12px 42px 12px 48px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}
input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}
.gender_block {
    font-size: 18px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    border-width: 1px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-position: center center;
    border-color: #fff8db;
    border-style: solid;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    overflow: hidden;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: none;
    height: 55px;
}
.gender_block .gender {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gender_block .gender:hover {
    background-color: rgba(94, 94, 94, 0.38);
}
.gender_block .gender.active {
    background-color: rgb(116 116 116 / 38%);
    border-color: #fff;
}
.gender_block .line {
    height: 100%;
    width: 0.5px;
    background: #fff;
    flex: none;
}

.back_icon {
    pointer-events: none;
    position: absolute;
    max-width: 962px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 100%;
    top: 0px;
}
.back_icon img {
    position: absolute;
    right: -100px;
    top: -45px;
    transition: opacity ease-in-out 0.5s;
}
.block2 .back_icon img {
    opacity: 0;
}
.block2 .text_block {
    color: #fff;
    z-index: 10;
    font-family: 'Circe';
    padding-top: 20px;
}
.block2_2 {
    min-height: 50vh;
    background: #000000;
    padding: 30px 0px;
    padding-bottom: 60px;
    color: #fff;
    font-family: 'Circe';
    position: relative;
    overflow: hidden;
}
.block2_2 h2:first-child {
    font-size: 36px;
}
.block2_2 .descritpion {
    display: flex;
    position: relative;
}
.block2_2 .descritpion .calc_preview {
    width: 35%;
    flex: none;
    transition: all linear 0.5s;
    position: absolute;
    right: 0px;
    align-self: center;
    opacity: 0.7;
}
.block2_2 .descritpion .info {
    padding-right: 50%;
    font-size: 25px;
}
.block2_2 .descritpion .info a {
    color: #fff;
}
.block3 {
    min-height: 500px;
    background: #35094b;
    color: #fff;
    font-family: 'Circe';
    padding: 30px 0px;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    align-items: center;
}
.block3 .button {
    width: 100%;
}
.block3 h2:first-child {
    font-size: 36px;
}


.block .cards {
    font-family: 'Circe', Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    justify-content: center;
}
.block .cards .card {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #140a27;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 345px;
    display: flex;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
}
.block .cards .card h2 {
    z-index: 1;
    font-size: 24px;
    color: #e0edff;
    margin-bottom: 10px;
}
.block .cards .card p {
    font-size: 16px;
    margin-bottom: auto;
    z-index: 1;
}
.block .cards .buttons {
    margin-top: 40px;
}
.block .cards .back_img {
    pointer-events: none;
    opacity: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    filter: hue-rotate(0deg);
    transition: filter 0.3s;
    object-fit: contain;
    z-index: 0;
}
.block .cards .buttons .button {
    margin: auto;
}
.block .cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.block .cards .card:hover .back_img {
    filter: hue-rotate(25deg);
}
.block3 .back_icon {
    display: flex;
    align-items: center;
    max-width: unset;
    max-width: 1200px;
}
.block3 .back_icon img {
    top: auto;
    right: -20%;
    height: 1000px;
    filter: grayscale(1);
    opacity: 0.1;
}
.block3_2 {
    padding: 80px 0px;
    background: #0b0024;
    color: #fff;
    font-family: 'Circe';
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.block3_2 .wrapper {
    z-index: 1;
}
.block3_2 .back_icon {
    display: flex;
    align-items: center;
    max-width: 1200px;
}
.block3_2 .back_icon img {
    right: unset;
    left: -200px;
    top: unset;
}
.block3_2 .counters {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    text-align: center;
}
.block3_2 .counters .count {
    font-size: 60px;
    text-wrap: nowrap;
}
.block3_2 .counters .description {
    font-size: 20px;
}
.block3_2 .last_calculate {
    font-size: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 44px;
    position: relative;
}
.block3_2 .last_calculate div {
    transition: all ease-in-out 0.3s;
}
.block4 {
    padding: 30px 0px;
    padding-top: 80px;
    background: #090025;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.block4.block .cards .card {
    background-color: #62009f;
    min-height: 250px;
    cursor: pointer;
}
.block4.block .cards .card:hover .back_img {
    filter: hue-rotate(3deg);
}
.block4.block .cards .card h2 {
    text-align: center;
    font-size: 30px;
}
.block4 .back_icon {
    display: flex;
    align-items: center;
    max-width: 1200px;
}
.block4 .back_icon img {
    left: unset;
    right: -300px;
    top: unset;
}
.block4 .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}
.block4 .button {
    font-size: 25px;
    margin: 0px;
    margin-top: 20px;
    width: 100%;
    max-width: 345px;
}
.block5 {
    font-family: 'Circe';
    padding: 40px 0px;
    background: #000000;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.block5 .buttons {
    margin: 30px 0px 0px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.block5 h2 {
    margin: 0px;
    margin-bottom: 20px;
    font-size: 36px;
}
.reviews {
    display: flex;
    gap: 10px;
    overflow: hidden;
    width: 100%;
    height: 300px;
}
a.swiper-slide.compilation__el {
    width: 350px;
    height: 300px;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #2b2b2b;
    outline: none;
    background: #000;
}
a.swiper-slide.compilation__el img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.calc_preview svg {
    width: 120%;
    height: 120%;
}
.block5 .back_icon {
    display: flex;
    align-items: center;
    max-width: 1200px;
}
.block5 .back_icon img {
    right: unset;
    right: -300px;
    top: unset;
}
.block5 .wrapper {
    z-index: 1;
    width: 100%;
}
.block6 {
    font-family: 'Circe';
    padding: 40px 0px;
    background: #0d1012;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.block6 h2 {
    margin: 0px;
    margin-bottom: 20px;
    font-size: 36px;
}
.block6 .back_icon {
    display: flex;
    align-items: center;
    max-width: 1200px;
}
.block6 .back_icon img {
    left: unset;
    right: -300px;
    top: unset;
}
.block6 .wrapper {
    align-items: center;
}

.block7 {
    font-family: 'Circe';
    padding: 40px 0px;
    background: #070017;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.block7 .buttons {
    margin: 30px 0px 0px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.block7 h2 {
    margin: 0px;
    margin-bottom: 20px;
    font-size: 36px;
}
.block7 .back_icon {
    display: flex;
    align-items: center;
    max-width: 1200px;
}
.block7 .back_icon img {
    right: unset;
    left: -30px;
    top: unset;
}
.block7 .wrapper {
    z-index: 1;
    width: 100%;
}


.tariffs .tariff .back_img {
    pointer-events: none;
    opacity: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
}
.tariffs .tariff {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #7346c9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 345px;
    display: flex;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    justify-content: flex-start;
    border: 1px solid #a16cee;
}
.tariffs .tariff div {
    z-index: 1;
}
.tariffs .tariff:hover {
    border: 1px solid #eee1ff;
    background: #763fc5;
}
.tariffs .tariff .title {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid #a467ee;
    padding-bottom: 10px;
}
.tariffs .tariff .description {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
    margin: 15px 0px;
    margin-bottom: 30px;
}
.tariffs .tariff .item {
    display: flex;
}
.tariffs .tariff .item:first-child {
    margin-bottom: 10px;
}
.tariffs .tariff .item.info {
    border: 1px solid #b0c6ea;
    padding: 10px;
    border-radius: 9px;
    background: #6a2fc1;
    margin-top: auto;
}
.tariffs .tariff .price {
    font-size: 30px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
.tariffs .tariff .button {
    width: 100%;
    cursor: pointer;
}
.tariffs .tariff .item.circle:before {
    display: block;
    flex: none;
    content: "";
    position: relative;
    width: 8px;
    height: 8px;
    left: 0;
    top: 5.5px;
    border-radius: 50%;
    margin-right: 10px;
    background: #9f00ff;
}
.tm-field {
    position: relative;
    margin: auto;
    width: 100%;
}
.icon-search:before {
    width: 19px;
    height: 23px;
    background-image: url('../img/search.svg');
    margin: 13px 15px 13px 19px;
    position: absolute;
    pointer-events: none;
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #d2d2d2;
}
.email-info {
    margin-top:5px;
    display: flex;
    justify-content: space-between;
}
.icon-email:before {
    width: 19px;
    height: 23px;
    background-image: url('../img/email.svg');
    margin: 13px 15px 13px 19px;
    position: absolute;
    pointer-events: none;
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #d2d2d2;
}
.email-field {
    margin-top: 20px;
}
.custom-checkbox {
    font-family: "Inter";
    font-size: 16px;
    color: #d2d2d2;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

.checkbox-input {
    display: none; /* скрываем стандартный чекбокс */
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background-color: #20272c;
    border: 2px solid #d2d2d2;
    position: relative;
    transition: background-color 0.2s, border-color 0.2s;
}

.checkbox-input:checked + .checkbox-custom {
    background-color: #3e88da; /* цвет фона при включенном чекбоксе */
    border-color: #39c7e7;
}

.checkbox-custom::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 5px;
    width: 4px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
}

.checkbox-input:checked + .checkbox-custom::after {
    opacity: 1;
}

.circle-progress-wrap {
    transform-origin: 50%;
    vertical-align: top;
}
.circle-progress {
    stroke: #8494a3;
    stroke-width: 2px;
    stroke-linecap: round;
    fill: transparent;
    transform: rotateZ(-90deg);
    transform-origin: 50%;
    stroke-dasharray: 62px;
    r: 10px;
}
.tm-search-loading {
    visibility: hidden;
    opacity: 0;
}
.tm-search-loading, .tm-search-clear {
    position: absolute;
    top: 0;
    right: 0;
    padding: 14px;
    cursor: pointer;
    transition: visibility 0.2s ease, opacity 0.2s ease;
}
.play .circle-progress {
    animation: rotate-circle linear 1.5s infinite,
            resize-circle linear 360s infinite;
}
.tm-search-clear {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px;
    transition: visibility 0.2s ease, opacity 0.2s ease;
}
.tm-input:placeholder-shown ~ .tm-search-clear, .tm-search-input:placeholder-shown ~ .tm-search-clear {
    visibility: hidden;
    opacity: 0;
}
.icon-search-clear:before {
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 25px;
    background-image: url('data:image/svg+xml,%3Csvg%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20width%3D%2222%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m5%2017%2012-12m-12%200%2012%2012%22%20stroke%3D%22%238494a3%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%20x1%3D%225%22%20x2%3D%2217%22%20y1%3D%225%22%20y2%3D%2217%22%2F%3E%3C%2Fsvg%3E');
}
.error .tm-search-error-icon {
    display: inline-block;
}
.tm-search-error-icon {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 11px 12px 11px 13px;
    width: 27px;
    height: 26px;
}
.tm-search-field.found .tm-search-input {
    opacity: 1;
    font-weight: bold;
    cursor: auto;
    pointer-events: none;
}
.icon-search-error:before {
    content: '';
    width: 27px;
    height: 27px;
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('data:image/svg+xml,%3Csvg%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20fill%3D%22%23fff%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22m10%200c5.52%200%2010%204.48%2010%2010s-4.48%2010-10%2010-10-4.48-10-10%204.48-10%2010-10zm0%2012.75c-.69%200-1.25.56-1.25%201.25s.56%201.25%201.25%201.25%201.25-.56%201.25-1.25-.56-1.25-1.25-1.25zm0-7.75c-.55%200-1%20.45-1%201v5c0%20.55.45%201%201%201s1-.45%201-1v-5c0-.55-.45-1-1-1z%22%20fill%3D%22%23ff5863%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
}
.found .tm-search-field-photo {
    display: inline-block;
}
.tm-search-field-photo {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 7px 7px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
}
.tm-search-field-photo img {
    width: 100%;
    vertical-align: middle;
    border: 0;
}

.payment_form {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    z-index: 10;
}
.icon-stars:before {
    position: absolute;
    margin: 11px 12px 12px;
    pointer-events: none;
    width: 24px;
    height: 26px;
    background-image: url('../img/star.svg');
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
}

.tm-form-radio-items {
    max-width: 400px;
    width: 100%;
    margin: auto;
}
  .tm-form-radio-item,
  .tm-form-radio-item-more {
    display: block;
    position: relative;
    padding: 4px 0;
    margin-bottom: 0;
    cursor: pointer;
  }
  .icon-options-more:after {
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml,%3Csvg%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m4.5%208.2%205.1%205.1c.2.2.5.2.7%200l5.2-5.1%22%20fill%3D%22none%22%20stroke%3D%22%2300c9e7%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.8%22%2F%3E%3C%2Fsvg%3E');
  }
  .tm-form-radio-item-wrap {
    padding: 0 3px;
    margin: 0 -3px;
    height: 62px;
    transition: all 0.2s ease;
    overflow: hidden;
  }
  .options-expanded .tm-form-radio-item-wrap.tm-more-options,
  .options-collapsed .tm-form-radio-item-wrap.tm-second-option {
    visibility: hidden;
    height: 0;
  }
  .tm-form-radio-item input.radio {
    position: absolute;
    left: -5000px;
  }
  .tm-form-radio-label {
    font-size: 15px;
    padding: 14px 19px;
    border-radius: 8px;
    background: #242e38;
    box-shadow: 0 0 0 0px #00c9e7;
    transition: box-shadow 0.2s ease;
    color: #fff;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .tm-form-radio-label svg {
    color: #242e38;
  }
  .tm-form-radio-item input.radio ~ .tm-form-radio-label:before {
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #8494a3;
    background-color: #00c9e7;
    box-shadow: inset 0 0 0 20px #242e38;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-right: 14px;
  }
  .tm-form-radio-item input.radio:checked ~ .tm-form-radio-label {
    box-shadow: 0 0 0 2px #00c9e7;
  }
  .tm-form-radio-item input.radio:checked ~ .tm-form-radio-label:before {
    box-shadow: inset 0 0 0 2px #242e38;
    border-color: #00c9e7;
  }
  .tm-form-radio-item-more .tm-form-radio-label {
    display: block;
    text-align: center;
    color: #00c9e7;
  }
  .tm-form-radio-label .tm-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .tm-form-radio-label .tm-radio-label-badge {
    display: inline-block;
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
    padding: 2px 4px;
    margin: 1px 4px 1px 8px;
    vertical-align: top;
    border-radius: 4px;
    background-color: #248bda;
    white-space: nowrap;
  }
  .tm-form-radio-label .tm-value {
    width: 70px;
  }
  .tm-stars-price .tm-value.icon-ton:before,
  .tm-form-radio-label .tm-value.icon-ton:before {
    width: 15px;
    height: 19px;
    margin-left: -1px;
    margin-right: 4px;
  }
  .tm-stars-options .tm-form-radio-label .tm-value {
    width: 100px;
    text-align: right;
  }
  .tm-form-radio-label .tm-radio-desc {
    font-weight: normal;
    text-align: right;
    color: #8c9aa9;
    width: 70px;
    margin-left: auto;
  }
  .tm-form-radio-label .tm-quantity {
    width: 60px;
    font-weight: normal;
    color: #8c9aa9;
  }
  .tm-form-radio-label .tm-quantity ~ .tm-value {
    width: 80px;
  }
  .tm-search-field-error {
    font-size: 12px;
    line-height: 15px;
    height: 15px;
    margin-top: -13px;
    margin-left: 20px;
    color: #ff5863;
}
.tm-stars-price {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    font-size: 15px;
    line-height: 20px;
    padding: 15px 7px;
    margin-right: 42px;
    font-weight: bold;
    transition: visibility 0.2s ease, opacity 0.2s ease;
    color: #fff;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity = 65);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-primary[disabled] {
    color: #a6d8ff;
    background-color: #248bda;
    opacity: 1;
    cursor: auto;
}
.btn-primary {
    color: #fff;
    background-color: #248bda;
    box-shadow: none;
    outline: none;
    display: inline-flex;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
    padding: 12px 15px;
    justify-content: center;
    border-radius: 8px;
    border: none;
    width: 100%;
    margin-top: 15px;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    color: #fff;
    background-color: #207cc2;
}
@-webkit-keyframes rotate-circle {
    from { transform: rotateZ(-90deg); }
    to   { transform: rotateZ(270deg); }
}
@keyframes rotate-circle {
    from { transform: rotateZ(-90deg); }
    to   { transform: rotateZ(270deg); }
}
@-webkit-keyframes resize-circle {
    from { stroke-dashoffset: 62px; }
    to   { stroke-dashoffset: 6262px; }
}
@keyframes resize-circle {
    from { stroke-dashoffset: 62px; }
    to   { stroke-dashoffset: 6262px; }
}
  
.loading .tm-search-loading {
    visibility: visible;
    opacity: 1;
}
.loading .tm-search-clear,
.loading .tm-search-rlabel {
visibility: hidden;
opacity: 0;
}
  
footer {
    background-color: #000;
    padding-top: 50px;
    padding-bottom: 50px;
    font-family: 'Circe', Arial, sans-serif;
}
footer .footer_block {
    display: flex;
    gap: 200px;
}
footer .logo_block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
}
footer .logo_block .copyright {
    margin-top: auto;
}
footer .logo_block img {
    width: 200px;
}
footer .menu_block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
}
footer .menu_block a {
    display: block;
    text-decoration: none;
    color: #fff;
}
.mobile_menu {
    flex-direction: column;
    position: fixed;
    background: rgb(0 0 0 / 40%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
    top: 0px;
    right: 0px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    transform: translateX(500px) scale(0.8);
    z-index: 1000;
    transition: transform ease-in-out 0.3s;
}
.mobile_menu .mob_logo {
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile_menu .mob_logo a {
    display: flex;
}
.mobile_menu .mob_logo img {
    width: 100%;
    height: 100%;
}

.mobile_menu .close {
    width: 40px;
    height: 40px;
    margin-left: 50px;
    cursor: pointer;
    flex: none;
}
.mobile_menu .close img {
    width: 100%;
    height: 100%;
}
.top .hamburger {
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    flex: none;
    margin-left: 20px;
}
.top .hamburger img {
    width: 100%;
    height: 100%;
}

.modal {
    top: 0px;
    left: 0px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    transition: all cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
    font-family: 'Circe';
}
.modal .block {
    position: relative;
    max-height: calc(100% - 90px);
    overflow-y: auto;
    background: #fff;
    padding: 9px 30px;
    border-radius: 15px;
    max-width: 480px;
    width: 100%;
    margin: 30px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 34%);
    transition: all cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
}
.modal .block h2 {
    padding-right: 25px;
    margin-bottom: 0px;
}
.modal .description lottie-player {
    width: 250px;
    margin: auto;
}
.modal .description .user_photo {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-top: 0px;
    overflow: hidden;
    border-radius: 50%;
    vertical-align: bottom;
}
.modal .description .user_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal .description div {
    text-align: center;
    font-size: 17px;
    font-weight: bolder;
}
.modal .description .info {
    color: #888;
    font-weight: 100;
    font-size: 13px;
    margin-top: 20px;
    display: block;
}
.modal .description a {
    color: #888;
    font-weight: 100;
    font-size: 13px;
}
.modal .description a.tx {
    color: #888;
    font-weight: 100;
    font-size: 13px;
    display: block;
}
.modal .description .button_confirm {
    background-color: #0081be;
    margin: 15px auto;
    cursor: pointer;
}
.modal .description .button_confirm:hover {
    background-color: #006f9c;
}
.modal .description .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.modal .description .buttons .button {
    background-color: #efefef;
    border-color: #8e8e8e;
    color: #000;
}
.modal .description .buttons .button:hover {
    background-color: #d7d7d7;
}
.modal .order_number {
    margin-top: 0px;
    color: #888;
    font-weight: 100;
    font-size: 13px;
    display: block;
}
.close-button {
    position: absolute;
    right: 0px;
    top: 0px;
    margin-top: 21px;
    margin-right: 30px;
    font-size: 40px;
    color: #7a7a7a;
    cursor: pointer;
}

.gifts {
    display: flex;
    overflow: hidden;
}
.gifts .gift-modal-main {
    display: flex;
    justify-content: center;
    width: 180px;
}
.gifts .anticon {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.gifts .gift-modal-description {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #353535;
    margin: 5px;
    padding-top: 4px;
}

.gifts .gift-modal-button {
    margin: auto;
}
.gifts .description {
    border-left: 1px solid #3e5154;
    border-right: 1px solid #3e5154;
    border-bottom: 1px solid #3e5154;
    border-radius: 0px 0px 5px 5px;
    padding: 5px;
    width: 100%;
    background: #0d1012;
}
.gifts .stats {
    display: flex;
    justify-content: space-between;
    color: #eaeaea;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #353535;
}
.gifts .legendary {
    color: #ff8800;
}
.gifts .epic {
    color: #8c00ff;
}
.gifts .rare {
    color: #2871ff;
}
.gifts .uncommon {
    color: #14a900;
}
.gifts .common {
    color: #bcbcbc;
}

.gifts .box.legendary {
    border: 1px solid #ff8800;
}
.gifts .box.epic {
    border: 1px solid #8c00ff;
}
.gifts .box.rare {
    border: 1px solid #2871ff;
}
.gifts .box.uncommon {
    border: 1px solid #14a900;
}
.gifts .box.common {
    border: 1px solid #bcbcbc;
}
.gifts .gift {
    position: relative;
    height:auto;
    width:180px;
    min-height: 180px;
}
.gifts .title {
    font-size: 15px;
    text-align: center;
    font-weight: 500;
}
.gifts .number {
    position: absolute;
    bottom: 0px;
    right: 5px;
    font-weight: 500;
    backdrop-filter: blur(1px);
    font-size: 13px;
}
.gifts .named {
    position: absolute;
    bottom: 0px;
    left: 5px;
    font-weight: 500;
    backdrop-filter: blur(1px);
    font-size: 13px;
}
.gifts .buy_button {
    color: #fff;
    background-color: #248bda;
    box-shadow: none;
    outline: none;
    display: inline-flex;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
    padding: 8px 15px;
    justify-content: center;
    border-radius: 8px;
    border: none;
    width: 100%;
    margin-top: 5px;
    text-decoration: none;
}

.gifts .buy_button:hover {
    background-color: #207cc2;
}
@media only screen and (max-width:500px){
    .gift {
        position: relative;
        height:auto;
        width:100%;
    }
}

@media screen and (max-width:1430px) {
    .menu a {
        font-size: 20px;
    }
    .language-selector {
        margin-top: 0px;
    }
}
@media screen and (max-width:1310px) {
    .top {
        /* position: absolute; */
        /* background-color: #1a0b37; */
        /* flex-direction: column; */
        /* padding: 20px 20px; */
        /* height: unset; */
        /* max-height: unset; */
    }
    .block1 .buttons .button {
        font-size: 17px;
    }
}
@media screen and (max-width:970px) {
    .block2 .matrix_form {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .block2 .matrix_form input.name {
        width: calc(100% - 100px);
        align-self: baseline;
    }
    .gender_block {
        align-self: baseline;
    }
    .block1 .buttons {
        width: 100%;
        flex-direction: column;
    }
    .block1 .buttons .button {
        width: 100%;
    }
    .block2.open {
        padding-top: 250px;
    }
    .block2_2 .descritpion .info {
        padding-right: 0px;
    }
    .block2_2 .descritpion .calc_preview {
        width: 100%;
        max-width: 600px;
        position: relative;
    }
    .calc_preview svg {
        width: 100%;
        height: 100%;
    }
    .block2_2 .descritpion {
        flex-direction: column;
    }
    
    .stars {
        margin-bottom: 800px;
    }
    .block1 .block_title {
        padding-bottom: 200px
    }
    .block7 .buttons {
        width: 100%;
        flex-direction: column;
    }
    .block7 .buttons .button {
        width: 100%;
    }
}
@media screen and (max-width:900px) {
    .top .menu {
        display: none;
    }
    .top .hamburger {
        display: block;
    }
    .top {
        flex-direction: row;
        position: fixed;
        background-color: rgb(0 0 0 / 44%);
    }
    .mobile_menu {
        display: flex;
    }
    .mobile_menu.open {
        transform: translateX(0px) scale(1);
    }
    .block3_2 .counters {
        flex-direction: column;
    }
    .block3_2 .last_calculate {
        font-size: 25px;
        height: 84px;
    }
    .block3_2 .last_calculate div {
        height: 84px;
        flex:none;
    }
    .block4 .button {
        font-size: 20px;
        width: 100%;
        margin: 0px;
        margin-top: 20px;
        max-width: 345px;
    }
    
}

@media screen and (max-width:700px) {
    .block1 .block_title .title h1 {
        font-size: 40px;
        margin-bottom: -5px;
    }
    .block1 .block_title .title h2 {
        font-size: 16px;
    }
    .wrapper {
        padding: 0px 20px;
    }
    footer .footer_block {
        flex-direction: column;
        gap: 40px;
    }
    .block2_2 .descritpion .info {
        font-size: 20px;
    }
    .block2_2 h2:first-child {
        font-size: 28px;
    }
    .block3_2 .last_calculate {
        font-size: 19px;
    }
}
@media screen and (max-width:385px) {
    .block1 .buttons .button {
        font-size: 15px;
    }
}

#captchaModal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  #captchaContent {
    background: white;
    padding: 20px;
    border-radius: 10px;
    min-width: 300px;
    text-align: center;
  }

  #captchaClose {
    margin-top: 10px;
    cursor: pointer;
    background: #ccc;
    padding: 5px 10px;
    border-radius: 5px;
  }