/*
Theme Name: TapRetap
Theme URI: https://tapretap.ru
Author: URSA
Author URI: https://ursa.agency
Description: WordPress тема для сервисного центра TapRetap.
Version: 1.19.3
*/

/* Fonts ------------------------------ */

@font-face {
    font-family: "Gilroy";
    src: url(fonts/Gilroy-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url(fonts/Gilroy-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url(fonts/Gilroy-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Nunito";
    src: url(fonts/Nunito-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Global ------------------------------ */

body {
    font-family: Gilroy, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
.button,
.bold {
    font-family: Nunito, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.35;
}

h1 {
    font-size: 27px;
}

h2 {
    margin-bottom: 25px;
    font-size: 27px;
}

h3 {
    font-size: 20px;
}

b {
    font-weight: 600;
}

a {
    transition: color 0.25s;
}

button {
    display: inline-block;
    margin: 0;
    padding: 0;
    font: inherit;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

button:disabled {
    cursor: auto;
}

.button {
    display: inline-block;
    width: 100%;
    padding: 20.5px 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 22px 31px -18px rgba(21, 120, 235, 0.3),
    0 23px 60px -20px rgba(21, 120, 235, 0.93);
    cursor: pointer;
}

.button:hover {
    box-shadow: 0 16px 58px -20px #1578EB;
}

.button.button-small {
    padding: 18.5px 20px;
    font-size: 15px;
}

.button.button-light {
    padding: 13px 20px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: inherit;
    border-width: 2px;
    border-style: solid;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
}

.button.button-light svg {
    width: 11px;
    height: 6px;
    margin-left: 12px;
}

.button.button-gray {
    box-shadow: none;
}

.fw-700 {
    font-weight: 700;
}

.side-icon-box {
    display: flex;
    align-items: center;
}

.side-icon-box svg {
    flex-shrink: 0;
}

.side-icon-box .content {
    margin-left: 20px;
}

.contacts .address .content {
    max-width: 245px;
}

.contacts .working-time .content {
    max-width: 140px;
}

.contacts a {
    text-decoration: none;
}

.contacts .phone a {
    font-size: 20px;
}

.section-frame {
    position: absolute;
    z-index: 10;
    left: 0;
}

.section-frame.frame-top {
    top: -1px;
}

.section-frame.frame-bottom {
    bottom: -1px;
    transform: rotate(180deg);
}

.section-frame.section-frame-lg {
    display: none;
}

article > *:first-child {
    margin-top: 0;
}

article > * {
    margin-bottom: 20px;
}

article > *:last-child {
    margin-bottom: 0;
}

article h2 {
    font-size: 20px;
}

article h3 {
    font-size: 18px;
}

article p {
    font-size: 16px;
}


/* -------------------------------------------------------------------------------- */
/*	Site Header
/* -------------------------------------------------------------------------------- */


header {
    position: absolute;
    z-index: 50;
    left: 0;
    width: 100%;
}

header .wrap-global-contacts {
    padding-top: 18px;
}

header .logo {
    width: 150px;
}

header .wrap-global-contacts .contacts {
    display: none;
}


/* -------------------------------------------------------------------------------- */
/*	Site Footer
/* -------------------------------------------------------------------------------- */


footer .wrap {
    position: relative;
}

footer .wrap-global-contacts {
    padding: 70px 0 40px;
}

footer .wrap-global-contacts .logo {
    width: 210px;
}

footer .wrap-global-contacts .contacts {
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(51, 51, 51, 0.15);
    border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

footer .wrap-global-contacts .contacts .contact:not(:last-child),
.wrap-contacts .contacts .contact:not(:last-child) {
    margin-bottom: 30px;
}

footer .legal-notice {
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
    padding: 0 0 40px;
    font-size: 12px;
    text-align: center;
    opacity: .5;
}

footer .copyright {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding: 40px 0;
    font-size: 14px;
}

footer .copyright a {
    display: block;
    margin-bottom: 15px;
}

footer .copyright a:last-child {
    margin-bottom: 0;
}

footer .copyright a:hover {
    text-decoration: none;
}

/* Modal windows ------------------------------ */

.overlay {
    position: fixed;
    z-index: 300;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(36, 36, 36, 0.8);
    cursor: pointer;
    transition: visibility 0.25s, opacity 0.25s;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal {
    position: fixed;
    z-index: 310;
    top: 50%;
    left: 50%;
    width: calc(100% - 40px);
    margin-bottom: 0;
    padding: 50px 28px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 62px 109px rgba(0, 0, 0, 0.07);
    transition: visibility 0.25s, opacity 0.25s;
}

@media only screen and (min-width: 360px) {
    .modal {
        width: calc(100% - 80px);
    }
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal .modal-title {
    margin-bottom: 10px;
}

.modal .modal-text {
    margin-bottom: 30px;
    font-size: 14px;
}

.modal .privacy-text {
    margin-top: 20px;
    font-size: 12px;
}

.modal .privacy-text a:hover {
    text-decoration: none;
}

.modal.wrap-form {
    border-radius: 20px;
}

#modal-success .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 0;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    box-shadow: 0 22px 31px -18px rgba(21, 120, 235, 0.3),
    0 23px 60px -20px rgba(21, 120, 235, 0.93);
}

#modal-success .icon svg {
    width: 50px;
}

#modal-review {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

@media only screen and (min-width: 360px) and (max-width: 767px) {
    #modal-review {
        margin: 0 !important;
    }
}

#modal-review .swiper-container,
#modal-review .swiper-slide {
    height: 100%;
}

#modal-review .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #202020 28.93%, rgba(32, 32, 32, 0) 100%);
    opacity: 0.43;
}

#modal-review .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#modal-review .swiper-slide .side-icon-box {
    position: absolute;
    z-index: 5;
    top: 20px;
    left: 15px;
}

#modal-review .swiper-slide .side-icon-box .wrap-thumbnail {
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
}

#modal-review .swiper-slide .side-icon-box .wrap-thumbnail img {
    width: 100%;
    height: 100%;
}

#modal-review .swiper-slide .side-icon-box .content {
    margin-left: 10px;
    font-size: 12px;
    font-weight: 600;
}

#modal-review .modal-close {
    position: absolute;
    z-index: 5;
    top: 25px;
    right: 15px;
}

#modal-review .modal-close svg {
    width: 19px;
}

#modal-review .progress-bar {
    position: absolute;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(5px, 1fr));
    grid-gap: 0 4px;
    top: 8px;
    left: 15px;
    width: calc(100% - 30px);
}

#modal-review .progress-bar .bar {
    position: relative;
    height: 2px;
    border-radius: 7px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.35);
}

#modal-review .progress-bar .bar::after {
    content: "";
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 0;
}

#modal-review .progress-bar .bar.visited {
    opacity: 1;
}

#modal-review .progress-bar .bar.active::after {
    -webkit-animation-name: progress_bar;
    animation-name: progress_bar;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes progress_bar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes progress_bar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

#modal-review .nav-button {
    position: absolute;
    z-index: 320;
    bottom: 0;
    width: 50%;
    height: calc(100% - 58px);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

#modal-review .nav-button svg {
    display: none;
}

#modal-review .nav-button.prev {
    left: 0;
}

#modal-review .nav-button.next {
    right: 0;
}


#modal-privacy-policy {
    height: 80vh;
}

#modal-privacy-policy .modal-title {
    margin-bottom: 20px;
}

#modal-privacy-policy .modal-content {
    height: calc(100% - 74px);
    overflow-x: hidden;
    overflow-y: scroll;
    text-align: left;
}


/* -------------------------------------------------------------------------------- */
/*	Main
/* -------------------------------------------------------------------------------- */


main .wrap {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

main .wrap-overflow-x {
    overflow: hidden;
}

.section-heading {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.section-heading h2 {
    position: relative;
    margin-bottom: 0;
}

.section-heading h2::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -30px;
    display: block;
    width: 155px;
    height: 155px;
    background-position: center;
    background-size: contain;
}

/* Forms ------------------------------ */

form .input-wrap input {
    width: 100%;
    margin: 0;
    padding: 12px 40px;
    font: inherit;
    font-weight: 700;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 14px;
}

form .button {
    margin-top: 12px;
}

form .input-wrap .error-message {
    display: none;
    margin-top: 9px;
    font-size: 12px;
}

form .input-wrap.invalid .error-message {
    display: block;
}

.wrap-form::after {
    content: "";
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    cursor: wait;
}

.wrap-form.sending::after {
    opacity: 0.5;
    visibility: visible;
}

/* Swiper ------------------------------ */

.swiper-pagination {
    line-height: 0;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

.button.nav-button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.nav-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    box-shadow: 0 5px 14px rgba(21, 120, 235, 0.3);
}

.nav-button:hover {
    box-shadow: none;
}

.nav-button svg {
    width: 9px;
}

.nav-button.prev svg {
    transform: rotate(180deg);
}

/* Banner ------------------------------ */

main .wrap-banner {
    padding-top: 90px;
}

.wrap-banner {
    background: url("media/bg-banner-small.png") no-repeat top right / 234px 610px,
    linear-gradient(180deg, #FAFAFA 12.48%, #FFFFFF 100%);
}

.wrap-banner h1 {
    max-width: 300px;
    margin-bottom: 25px;
}

.wrap-banner .advantages {
    margin: 30px 0 40px;
}

.wrap-banner .advantages .advantage:not(:last-child) {
    margin-bottom: 25px;
}

.wrap-banner .advantages .advantage svg.guarantee {
    width: 22px;
}

.wrap-banner .advantages .advantage svg.spare-parts {
    width: 24px;
}

.wrap-banner .advantages .advantage svg.prices {
    width: 26px;
}

.wrap-banner .button {
    max-width: 374px;
}

/* Team ------------------------------ */

.wrap-team .section-heading {
    margin-bottom: 25px;
    padding-bottom: 0;
    border: none;
}

.wrap-team .section-heading h2::before {
    width: 120px;
    height: 120px;
    background-image: url("media/icon-cup.png");
}

.wrap-team .section-heading + p {
    margin-bottom: 40px;
}

.wrap-team .swiper-container {
    overflow: visible;
    margin-bottom: 90px;
}

.wrap-team .card-team {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.06);
}

.wrap-team .card-team .thumbnail-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 10px;
}

.wrap-team .card-team .thumbnail-wrap::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("media/team-frame.svg") no-repeat bottom left / 100% auto;
}

.wrap-team .card-team .thumbnail-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.wrap-team .card-team .card-content {
    padding: 0 30px 30px;
    font-size: 14px;
}

.wrap-team .card-team .card-content h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.wrap-team .card-team .card-content ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 17px;
}

.wrap-team .card-team .card-content ul li::after {
    content: "";
    position: absolute;
    top: calc(50% - 3.5px);
    left: 0;
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(21, 120, 235, 0.46);
}

.wrap-team .card-team .card-content ul li:last-child {
    margin-bottom: 0;
}

.wrap-team .swiper-pagination {
    bottom: -40px;
}

/* Service Center ------------------------------ */

main .wrap-service-center {
    padding: 0;
}

.wrap-service-center .heading-container {
    position: absolute;
    z-index: 10;
    top: 50px;
    padding: 0;
}

.wrap-service-center .heading-container h2 {
    margin: 0;
}

.wrap-service-center .swiper-container {
    height: 616px;
}

.wrap-service-center .card-service-center {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 94px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.wrap-service-center .card-service-center::before,
.wrap-service-center .card-service-center::after {
    content: "";
    position: absolute;
    z-index: 5;
    left: 0;
    display: block;
    width: 100%;
}

.wrap-service-center .card-service-center::before {
    top: 0;
    height: 150px;
    opacity: 0.5;
    background: linear-gradient(0, rgba(0, 0, 0, 0), #000000);
}

.wrap-service-center .card-service-center::after {
    bottom: 0;
    height: 225px;
    opacity: 0.75;
    background: linear-gradient(rgba(0, 0, 0, 0), #000000);
}

.wrap-service-center .card-service-center .card-content {
    position: relative;
    z-index: 10;
}

.wrap-service-center .card-service-center h3 {
    margin-bottom: 15px;
}

.wrap-service-center .card-service-center p {
    font-size: 14px;
}

.wrap-service-center .swiper-pagination {
    bottom: 55px;
    text-align: left;
}

.wrap-service-center .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:first-child {
    margin-left: 0;
}

.wrap-service-center .nav-buttons {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 40px;
    display: flex;
    justify-content: flex-end;
    max-width: 125px;
    padding-left: 0;
}

.wrap-service-center .nav-button.prev {
    margin-right: 9px;
}

/* Reviews ------------------------------ */

.wrap-reviews .section-heading h2::before {
    top: -40px;
    background-image: url("media/icon-envelope.png");
}

.wrap-reviews .section-heading h2 span,
#wrap-calculator-1 .section-heading h2 span {
    display: block;
}

.wrap-reviews .reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px 20px;
}

.wrap-reviews .reviews .review {
    position: relative;
    z-index: 1;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 50%;
    cursor: pointer;
}

.wrap-reviews .reviews .review img,
#modal-review .swiper-slide .side-icon-box .wrap-thumbnail img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center 30%;
    object-position: center 30%;
}

.wrap-reviews .reviews .review img {
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-width: 3px;
    border-style: solid;
    border-radius: 50%;
}

/* Contacts ------------------------------ */

.wrap-contacts {
    position: relative;
}

.wrap-contacts .wrap {
    padding-bottom: 0;
}

.wrap-contacts .section-heading h2::before {
    width: 120px;
    height: 120px;
    background-image: url("media/icon-notebook.png");
}

.wrap-contacts .contacts {
    margin-bottom: 50px;
    padding: 0 40px;
}

@media only screen and (min-width: 320px) and (max-width: 359px) {
    .wrap-contacts .contacts {
        padding: 0 20px;
    }
}

.wrap-contacts .wrap-map {
    position: relative;
}

.wrap-contacts .wrap-map .map-frame {
    display: none;
}

.wrap-contacts #map {
    height: 435px;
}

/* FAQ ------------------------------ */

.wrap-faq .section-heading h2::before {
    width: 120px;
    height: 120px;
    background-image: url("media/icon-lamp.png");
}

.wrap-faq .list-faq .item {
    margin-bottom: 10px;
    border-radius: 27px;
}

.wrap-faq .list-faq .item:last-child {
    margin-bottom: 0;
}

.wrap-faq .list-faq .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 15px 15px 20px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.wrap-faq .list-faq .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s;
}

.wrap-faq .list-faq .answer .content {
    padding: 0 20px 15px;
    font-size: 14px;
}

.wrap-faq .list-faq .answer p:first-child {
    padding-top: 15px;
    border-top: 1px solid rgba(51, 51, 51, 0.15);
}

.wrap-faq .list-faq .question .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    margin-left: 27px;
    border-radius: 50%;
    box-shadow: 0 5px 14px rgba(21, 120, 235, 0.3);
}

.wrap-faq .list-faq .question .icon svg {
    width: 15px;
}

.wrap-faq .list-faq .question .icon .minus,
.wrap-faq .list-faq .question.active .icon .plus {
    display: none;
}

.wrap-faq .list-faq .question.active .icon .minus {
    display: block;
}

/* Calculator ------------------------------ */

.wrap-calculator {
    overflow-x: hidden;
}

#wrap-calculator-1 .section-heading h2::before {
    background-image: url("media/icon-calculator.png");
}

#wrap-calculator-2 .section-heading h2::before {
    top: -30px;
    width: 130px;
    height: 130px;
    background-image: url("media/icon-gear.png");
}

#wrap-calculator-1 .game-heading h3 {
    position: relative;
}

#wrap-calculator-1 .game-heading h3::after {
    content: "";
    position: absolute;
    top: -65px;
    left: 100%;
    display: block;
    width: 125px;
    height: 125px;
    background: url("media/icon-gift.png") no-repeat center / contain;
}

.calculator {
    position: relative;
    left: 0;
    display: flex;
    align-items: flex-start;
    transition: left 0.2s ease, max-height 0.2s ease;
}

.calculator .step {
    flex-shrink: 0;
    flex-basis: 100%;
    overflow: hidden;
}

.calculator .step .step-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calculator .step .step-heading h3 {
    margin-right: 10px;
}

.calculator .step .step-heading .calculator-pagination {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.calculator .step[data-step-name="game"] .step-heading .calculator-pagination {
    justify-content: space-between;
    width: 100%;
}

.calculator .step .step-heading .calculator-pagination .prev-step {
    margin-right: 10px;
    padding: 5.5px 18px;
    border-radius: 14px;
}

.calculator .step .step-heading .game-title-lg {
    display: none;
}

.calculator .step[data-step-name="game"] .step-heading .calculator-pagination .prev-step {
    margin-right: 20px;
}

.calculator .step .step-heading .calculator-pagination .prev-step svg {
    width: 14px;
}

.calculator .step .step-heading .step-number {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 32px;
    background: linear-gradient(90deg, rgba(25, 104, 195, 0.1) 0%, rgba(57, 149, 255, 0.1) 100%);
}

.calculator .step .options.with-spoiler {
    max-height: none;
    overflow-y: hidden;
}

.calculator .step .button-spoiler {
    display: none;
    margin-top: 40px;
}

.calculator .step .button-spoiler.active {
    display: inline-block;
}

.calculator .step:nth-child(1) .options {
    display: grid;
}

.calculator .step[data-step-name="model"]:nth-child(1) .options {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px 12px;
}

.calculator .step[data-step-name="repair"]:nth-child(1) .options {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px 0;
}

.calculator .options .option {
    border: 1px solid rgba(51, 51, 51, 0.05);
}

.calculator .options .option:hover {
    border: none;
}

.calculator .step:nth-child(1) .options .option {
    padding: 7.5px 5px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 26px;
}

.calculator .step[data-step-name="model"]:nth-child(1) .options .option {
    padding: 7.5px 5px;
    border-radius: 26px;
}

.calculator .step[data-step-name="repair"]:nth-child(1) .options .option {
    padding: 14.5px 5px;
    border-radius: 28px;
}

.calculator .step:nth-child(2) .options {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px 0;
}

.calculator .step:nth-child(2) .options .option {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
}

.calculator .step:nth-child(2) .options .option > * {
    flex-shrink: 0;
}

.calculator .step:nth-child(2) .options .option .name {
    flex-basis: 50%;
    font-weight: 600;
    text-align: center;
}

.calculator .step:nth-child(2) .options .option .name span {
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    opacity: 0.75;
}

.calculator .step:nth-child(2) .options .option .params {
    flex-basis: 50%;
    padding-left: 15px;
    font-size: 12px;
    border-left: 1px solid rgba(51, 51, 51, 0.15);
}

.calculator .step:nth-child(2) .options .option:hover .params {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.calculator .step:nth-child(2) .options .option .param {
    display: block;
    white-space: nowrap;
}

.calculator .step:nth-child(2) .options .option:last-child {
    margin-bottom: 0;
}

.calculator .result-list .result-element {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
    font-size: 14px;
}

.calculator .result-list .result-element:last-child {
    margin-bottom: 0;
}

.calculator .result-list .result-element .separator {
    flex-grow: 1;
    margin: 0 6px 5px 6px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
}

.calculator .result-list .result-element .value,
.calculator .result-list .result-element.total-element {
    font-weight: 600;
}

.calculator .result-list .result-element .value.before-discount {
    position: relative;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 400;
}

.calculator .result-list .result-element .value.before-discount::after {
    content: "";
    z-index: 1;
    position: absolute;
    top: 45%;
    left: -5%;
    width: 100%;
    height: 1px;
    border-radius: 2px;
    transform: rotate(-15deg);
}

.calculator .step-content > .result-list:not(.list-total) .result-element.total-element {
    display: none;
}

.calculator .about-prize-box {
    margin-top: 30px;
}

.calculator .about-prize-box .about-prize-title {
    margin-bottom: 15px;
    font-size: 18px;
}

.calculator .about-prize-box .button,
.calculator form .button {
    box-shadow: 0 22px 31px -18px rgba(21, 120, 235, .30),
    0 23px 25px -24px rgba(21, 120, 235, .93);
}

.calculator .side-icon {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.calculator .side-icon .img-gift-small {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 13px;
    background: url("media/gift-small.png") no-repeat center / contain;
}

.calculator .result-list.list-total {
    margin-top: 10px;
}

.calculator .result-list.list-total .result-element .separator {
    margin-bottom: 10px;
}

.calculator .result-list.list-total span {
    font-size: 20px;
}

.calculator .result-list.list-total .result-element .value.before-discount {
    font-size: 14px;
    line-height: 30px;
}

.calculator .step .prizes-total h3 {
    margin: 20px 0;
}

.calculator .step .prizes-total .prizes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 20px;
}

.calculator .step .prizes-total .prizes-list .prize-item {
    padding: 17px;
    border-width: 2px;
    border-style: solid;
    border-radius: 14px;
}

.calculator .step .prizes-total .prizes-list .prize-item.item-accessories {
    background: url("media/discount-accessories.png") no-repeat top 3px center / 84.5px 55px;
}

.calculator .step .prizes-total .prizes-list .prize-item .img {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
}

.calculator .step .prizes-total .prizes-list .prize-item h4 {
    font-size: 14px;
    text-align: center;
}

.calculator .step .book-prizes-box {
    margin-bottom: 10px;
}

.calculator .step .book-prizes-box .side-icon {
    margin-bottom: 20px;
}

.calculator .step .book-prizes-box h4 {
    margin-bottom: 5px;
    font-size: 18px;
    text-align: center;
}

.calculator .step .book-prizes-box h4 + p {
    font-size: 14px;
    text-align: center;
}

.calculator .step .book-prizes-box .wrap-cashback {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-family: Gilroy, Arial, sans-serif;
    font-weight: 600;
}

.calculator .step .book-prizes-box .wrap-cashback .value-cashback {
    margin-right: 20px;
    padding-right: 20px;
    font-size: 32px;
    border-right: 1px dotted rgba(0, 0, 0, 0.15);
}

.calculator .step .book-prizes-box .wrap-cashback .total-cashback {
    padding: 10px 0;
    line-height: 1;
}

.calculator .step .book-prizes-box .wrap-cashback .total-before {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.5;
}

.calculator .step .book-prizes-box .wrap-cashback .total-after {
    font-size: 22px;
}

.calculator .step .book-prizes-box .wrap-cashback .discount-text {
    font-size: 16px;
}

.calculator .book-prizes-box .img-gift-small {
    width: 43px;
    height: 43px;
    margin-right: 20px;
}

.calculator .wrap-form {
    position: relative;
    margin-top: 20px;
    padding: 20px 30px;
    border: 1px solid rgba(51, 51, 51, 0.05);
    border-radius: 14px;
}

.calculator form .input-wrap.invalid .error-message {
    display: none;
}

.calculator form .privacy-text {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
}

.calculator .game-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calculator .game-heading .wrap-your-discount {
    flex-shrink: 0;
    margin-left: 10px;
    padding: 8px 8px 14px;
    border-radius: 13px;
    border-width: 2px;
    border-style: solid;
}

.calculator .game-heading .wrap-your-discount .your-discount-title {
    display: block;
    min-width: 76px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    border-bottom-width: 1px;
    border-style: solid;
}

.calculator .game-heading .wrap-your-discount .current-discount {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calculator .game-heading .wrap-your-discount img {
    width: 22px;
    height: auto;
    margin-right: 10px;
}

/* Game Slot Machine ------------------------------ */

.calculator .slot-machine-heading {
    display: block;
}

.calculator .slot-machine-content {
    padding: 0 10px 30px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-style: solid;
    border-radius: 0 0 15px 15px;
}

.calculator .slot-machine .slot-machine-window {
    position: relative;
    display: flex;
    height: 170px;
    overflow: hidden;
    border-radius: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.calculator .slot-machine .slot-machine-window::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url("media/slot-machine-window.svg") no-repeat center;
    box-shadow: inset 0 -3px 40px rgba(29, 29, 29, 0.47),
    inset 0 4px 11px rgba(30, 30, 30, 0.12);
}

.calculator .slot-machine .wheel {
    position: absolute;
    top: -41px;
    width: calc(100% / 3);
}

.calculator .slot-machine .wheel.playing {
    -webkit-animation: spin_wheel 0.2s linear 0.5s 25;
    animation: spin_wheel 0.2s linear 0.5s 25;
}

.calculator .slot-machine .wheel:nth-child(1) {
    left: 0;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.calculator .slot-machine .wheel:nth-child(2) {
    left: calc(100% / 3);
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.calculator .slot-machine .wheel:nth-child(3) {
    right: 0;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

@-webkit-keyframes spin_wheel {
    0% {
        top: -41px;
    }
    100% {
        top: -568px;
    }
}

@keyframes spin_wheel {
    0% {
        top: -41px;
    }
    100% {
        top: -568px;
    }
}

.calculator .slot-machine .wheel:not(:last-child) {
    border-right: 1px solid rgba(51, 51, 51, 0.07);
}

.calculator .slot-machine .wheel .wheel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 73px;
    height: 73px;
    margin: 0 auto 18px;
    border-width: 1px;
    border-radius: 5px;
    border-style: solid;
}

.calculator .slot-machine .slot-machine-buttons {
    display: flex;
    margin-top: 30px;
}

.calculator .slot-machine .button-get-prize {
    padding: 18.5px 20px;
    font-size: 15px;
}

.calculator .slot-machine .button-get-prize:not(.inactive):not(.playing) {
    padding: 12.5px 20px;
}

.calculator .slot-machine .button-get-prize > span {
    display: none;
}

.calculator .slot-machine .button-get-prize:not(.inactive):not(.playing) .active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calculator .button-get-prize .img-gift {
    width: 32px;
    height: 32px;
    margin-left: 10px;
    background: url("media/gift-small.png") no-repeat center / contain;
}

.calculator .slot-machine .button-get-prize.inactive {
    box-shadow: none;
}

.calculator .slot-machine .button-get-prize.inactive .inactive {
    display: block;
}

.calculator .slot-machine .button-get-prize.playing {
    opacity: 0.5;
    box-shadow: 0 22px 31px -18px rgba(21, 120, 235, 0.3),
    0 14px 49px -20px rgba(21, 120, 235, 0.93);
}

.calculator .slot-machine .button-get-prize.playing .playing {
    display: block;
}

.calculator .slot-machine .lever-wrap {
    position: relative;
    flex-shrink: 0;
    flex-basis: 59px;
    margin-left: 13px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 22px 31px -18px rgba(21, 120, 235, 0.3),
    0 14px 49px -20px rgba(21, 120, 235, 0.93);
}

.calculator .slot-machine .lever-wrap > span {
    position: absolute;
    display: block;
}

.calculator .slot-machine .lever-wrap .lever-box {
    top: 10px;
    left: 15px;
    width: 29px;
    height: 37px;
    background-color: #76ABEA;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 4px;
}

.calculator .slot-machine .lever-wrap .lever-base {
    top: 16px;
    left: 25px;
    width: 9px;
    height: 25px;
    background: #D2D2D2;
    box-shadow: inset 0 11px 4px rgba(0, 0, 0, 0.25),
    inset 0 -8px 7px rgba(0, 0, 0, 0.76);
    border-radius: 2px;
}

.calculator .slot-machine .lever-wrap .lever-body {
    top: -10px;
    left: 27px;
    width: 5px;
    height: 39px;
    border-radius: 1px;
}

.calculator .slot-machine .lever-wrap .lever-handle {
    top: -14px;
    left: 19px;
    width: 21px;
    height: 21px;
    background: linear-gradient(180deg, #FF6C58 0%, #E94F4F 100%);
    border-radius: 50%;
}

.calculator .slot-machine .lever-wrap:disabled .lever-body {
    top: 28px;
}

.calculator .slot-machine .lever-wrap:disabled .lever-handle {
    top: 50px;
}

.calculator .help-prizes.help-prizes-lg {
    display: none;
}

.calculator .slot-machine .help-prizes {
    position: relative;
    height: 23px;
    margin-top: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.calculator .slot-machine .help-prizes .help-prizes-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.calculator .slot-machine .help-prizes .help-prizes-text svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.calculator .slot-machine .help-prizes .prize-list-wrap {
    position: absolute;
    bottom: calc(100% + 12px);
    left: calc(50% - 110px);
    visibility: hidden;
    opacity: 0;
    max-width: 220px;
    padding: 25px 20px;
    font-size: 14px;
    border-radius: 15px;
    transition: opacity 0.25s, visibility 0.25s;
}

.calculator .slot-machine .help-prizes .prize-list-wrap::after {
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - 7.5px);
    display: block;
    width: 15px;
    height: 8px;
    background: url("media/arrow-popup.svg") no-repeat center / contain;
}

.calculator .slot-machine .help-prizes .prize-list-wrap.active {
    visibility: visible;
    opacity: 1;
}

.calculator .slot-machine .help-prizes .prize-list-wrap ul {
    margin: 20px 0;
}

.calculator .slot-machine .help-prizes .prize-list-wrap ul li {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.calculator .slot-machine .help-prizes .prize-list-wrap ul li:not(:last-child) {
    margin-bottom: 10px;
}

.calculator .slot-machine .help-prizes .prize-list-wrap ul li img {
    display: block;
    width: 27px;
    height: 27px;
    margin-right: 10px;
}

/* Game Coins ------------------------------ */

.calculator .coins .game-field {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px 20px;
    margin-bottom: 30px;
}

.calculator .coins .game-field .field-section {
    position: relative;
    padding-bottom: calc(100% + 10px);
    overflow: hidden;
    border-radius: 0 0 50% 50%;
}

.calculator .coins .game-field .field-section.active:not(.received) {
    cursor: pointer;
}

.calculator .coins .game-field .field-section .target-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 10px);
    border-radius: 50%;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.04),
    inset 0 -4px 8px rgba(0, 0, 0, 0.03);
}

.calculator .coins .game-field .field-section .target {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: calc(100% + 10px);
    background: url("media/fox-with-coin.svg") no-repeat center bottom / contain;
    border-radius: 0 0 50% 50%;
    -webkit-animation-name: target_slide;
    animation-name: target_slide;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes target_slide {
    0% {
        bottom: -100%;
    }
    33% {
        bottom: 0;
    }
    66% {
        bottom: 0;
    }
    100% {
        bottom: -100%;
    }
}

@keyframes target_slide {
    0% {
        bottom: -100%;
    }
    33% {
        bottom: 0;
    }
    66% {
        bottom: 0;
    }
    100% {
        bottom: -100%;
    }
}

.calculator .coins .game-field .field-section.received .target {
    background: url("media/fox-without-coin.svg") no-repeat center bottom / contain;
}

.calculator .game-coin-rules {
    display: none;
}

.calculator .step[data-step-name="game"] .wrap-buttons .button.button-get-prize {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12.5px 20px;
    visibility: hidden;
    opacity: 0;
    font-size: 15px;
}

.calculator .step[data-step-name="game"] .wrap-buttons .button.button-get-prize.active {
    visibility: visible;
    opacity: 1;
}

.calculator .step[data-step-name="game"] .button-play {
    margin-bottom: 10px;
}

.calculator .step[data-step-name="game"] .button-play > span {
    display: none;
}

.calculator .step[data-step-name="game"] .button.button-light {
    padding: 17.5px 20px;
}

.calculator .step[data-step-name="game"] .button-play.inactive .inactive {
    display: block;
}

.calculator .step[data-step-name="game"] .button-play.playing .playing {
    display: block;
}

.calculator .step[data-step-name="game"] .button-play.restart .restart {
    display: block;
}

.calculator .coins .wrap-buttons .button {
    box-shadow: none;
}

/* Fireworks ------------------------------ */

#fireworks-canvas {
    position: fixed;
    z-index: 400;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s, visibility 1.5s;
}

#fireworks-canvas.active {
    visibility: visible;
    opacity: 1;
}

/* Medium ------------------------------ */

@media only screen and (min-width: 768px) {

    /* Modal windows ------------------------------ */
    .modal {
        width: 295px;
    }

    .modal .button.button-small {
        padding: 26.5px 20px;
        font-size: 15px;
    }

    #modal-review {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        width: 476px;
        height: calc(100vh - 120px);
        overflow: visible;
    }

    #modal-review .modal-close {
        display: none;
    }

    #modal-review .swiper-container {
        border-radius: 23px;
    }

    #modal-review .swiper-slide::before {
        height: 160px;
    }

    #modal-review .swiper-slide .side-icon-box {
        top: 32px;
        left: 24px;
    }

    #modal-review .swiper-slide .side-icon-box .wrap-thumbnail {
        width: 48px;
        height: 48px;
    }

    #modal-review .swiper-slide .side-icon-box .content {
        margin-left: 16px;
        font-size: 20px;
    }

    #modal-review .nav-button {
        z-index: 5;
        top: calc(50% - 20px);
        display: flex;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 5px 14px rgba(21, 120, 235, .3);
    }

    #modal-review .nav-button.prev {
        left: -60px;
    }

    #modal-review .nav-button.next {
        right: -60px;
    }

    #modal-review .nav-button svg {
        display: block;
        width: 8px;
    }

    #modal-review .progress-bar {
        top: 13px;
        left: 24px;
        width: calc(100% - 48px);
    }

    #modal-privacy-policy {
        width: 688px;
    }

    #modal-privacy-policy .modal-content {
        height: calc(100% - 47px);
    }

    /* Reviews ------------------------------ */
    .wrap-reviews .reviews {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 56px 126px;
    }

    .wrap-reviews .reviews .review img {
        top: 5px;
        left: 5px;
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        border-width: 7px;
    }

    /* Contacts ------------------------------ */
    .wrap-contacts .contacts {
        width: 768px;
        margin: 0 auto 20px;
    }
}

/* Large ------------------------------ */

@media only screen and (min-width: 1280px) {

    main {
        font-size: 20px;
    }

    h1,
    h2 {
        font-size: 45px;
    }

    .button {
        width: auto;
        padding: 32.5px 77px;
        font-size: 22px;
        border-radius: 20px;
    }

    .button.button-small {
        width: 100%;
        padding: 26.5px 20px;
        font-size: 20px;
    }

    .button.button-light {
        border-radius: 23px;
    }

    .button.button-light svg {
        margin-left: 14px;
    }

    .wrap-global-contacts {
        display: flex;
        align-items: center;
        padding: 25px 0;
        border-bottom: 1px solid rgba(51, 51, 51, 0.15);
    }

    .wrap-global-contacts .logo {
        width: 190px;
        margin-right: 100px;
    }

    .wrap-global-contacts .contacts {
        display: flex;
        flex-grow: 1;
        justify-content: space-between;
        align-items: center;
    }

    .wrap-global-contacts .contacts .email {
        display: none;
    }

    .wrap-global-contacts .contacts .phone {
        order: 1;
    }

    .section-frame.section-frame-sm {
        display: none;
    }

    .section-frame.section-frame-lg {
        display: block;
    }

    /* -------------------------------------------------------------------------------- */
    /*	Site Header
    /* -------------------------------------------------------------------------------- */
    header .wrap-global-contacts {
        display: flex;
        padding-top: 25px;
    }

    header .wrap-global-contacts .contacts {
        display: flex;
    }


    /* -------------------------------------------------------------------------------- */
    /*	Site Footer
    /* -------------------------------------------------------------------------------- */
    footer .wrap-global-contacts {
        padding: 104px 0 25px;
    }

    footer .wrap-global-contacts .logo {
        width: 190px;
    }

    footer .wrap-global-contacts .contacts {
        margin: 0;
        padding: 0;
        border: none;
    }

    footer .wrap-global-contacts .contacts .contact:not(:last-child) {
        margin-bottom: 0;
    }

    footer .legal-notice {
        padding: 20px 0;
    }

    footer .copyright {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 40px 0;
    }

    footer .copyright a {
        margin-bottom: 0;
        text-decoration: none;
    }

    footer .copyright a:hover {
        text-decoration: underline;
    }


    /* -------------------------------------------------------------------------------- */
    /*	Main
    /* -------------------------------------------------------------------------------- */
    main .wrap {
        padding: 110px 0;
    }

    .section-heading h2 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-heading h2::before {
        position: static;
        width: 204px !important;
        height: 204px !important;
    }

    /* Forms ------------------------------ */
    form .button {
        width: 100%;
    }

    /* Swiper ------------------------------ */
    .swiper-container .nav-button {
        width: 80px;
        height: 80px;
    }

    .swiper-container .nav-button svg {
        width: 16px;
    }

    /* Banner ------------------------------ */
    main .wrap-banner {
        padding: 170px 0 166px;
    }

    .wrap-banner {
        font-size: 24px;
        background: url("media/iphone-family.webp") no-repeat bottom center / cover;
    }

    .wrap-banner .banner-content {
        max-width: 50%;
    }

    .wrap-banner h1 {
        max-width: 496px;
        margin-bottom: 40px;
    }

    .wrap-banner .advantages {
        margin-bottom: 50px;
    }

    .wrap-banner .advantages .advantage svg.guarantee {
        width: 34px;
    }

    .wrap-banner .advantages .advantage svg.spare-parts {
        width: 35px;
    }

    .wrap-banner .advantages .advantage svg.prices {
        width: 38px;
    }

    .wrap-banner .button {
        max-width: none;
    }

    /* Team ------------------------------ */
    .wrap-team::before,
    .wrap-team::after {
        content: "";
        position: absolute;
        display: block;
        box-shadow: 0 -19px 112px -18px rgba(21, 120, 235, 0.19),
        -2px 12px 90px -20px rgba(21, 120, 235, 0.94);
        border-radius: 50%;
    }

    .wrap-team::before {
        top: -521px;
        left: -882px;
        width: 1095px;
        height: 1041px;
    }

    .wrap-team::after {
        right: -350px;
        bottom: 80px;
        width: 530px;
        height: 500px;
    }

    .wrap-team .section-heading {
        margin-bottom: 0;
    }

    .wrap-team .section-heading + p {
        margin-bottom: 60px;
        font-size: 24px;
        text-align: center;
    }

    .wrap-team .swiper-container {
        margin-bottom: 60px;
    }

    .wrap-team .wrap-button {
        text-align: center;
    }

    .wrap-team .wrap-button .button {
        padding-right: 108px;
        padding-left: 108px;
    }

    /* Service Center ------------------------------ */
    main .wrap-service-center {
        padding: 0;
    }

    .wrap-service-center .heading-container {
        top: 130px;
        padding: 0;
    }

    .wrap-service-center .swiper-container {
        height: 1000px;
    }

    .wrap-service-center .card-service-center {
        padding-bottom: 170px;
    }

    .wrap-service-center .card-service-center::before {
        height: 356px;
    }

    .wrap-service-center .card-service-center::after {
        height: 335px;
    }

    .wrap-service-center .card-service-center h3 {
        margin-bottom: 20px;
        font-size: 36px;
    }

    .wrap-service-center .card-service-center p {
        max-width: 430px;
        font-size: 20px;
    }

    .wrap-service-center .swiper-pagination {
        position: relative;
        bottom: 130px;
        width: 1170px;
    }

    .wrap-service-center .nav-buttons {
        right: calc((100% - 1170px) / 2);
        bottom: 165px;
        max-width: 185px;
    }

    .wrap-service-center .nav-button.prev {
        margin-right: 25px;
    }

    .wrap-service-center .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
    }

    .wrap-service-center .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 7.5px;
    }

    /* Reviews ------------------------------ */
    main .wrap-reviews {
        padding: 60px 0 84px;
    }

    .wrap-reviews .section-heading {
        margin-bottom: 90px;
        padding-bottom: 0;
    }

    .wrap-reviews .section-heading h2 span,
    #wrap-calculator-1 .section-heading h2 span {
        display: inline;
        margin-left: 10px;
    }

    .wrap-reviews .reviews {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Contacts ------------------------------ */
    .wrap-contacts {
        padding: 170px 0 183px;
        overflow: hidden;
    }

    .wrap-contacts::before {
        content: "";
        position: absolute;
        z-index: -1;
        display: block;
        top: -45px;
        left: calc(50% - 24px);
        width: 1220px;
        height: 1358px;
        box-shadow: 0 -19px 112px -18px rgba(21, 120, 235, 0.19),
        -2px 12px 90px -20px rgba(21, 120, 235, 0.94);
        border-radius: 50%;
    }

    .wrap-contacts .wrap {
        padding: 0;
    }

    .wrap-contacts .section-heading {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }

    .wrap-contacts .section-heading h2 {
        justify-content: flex-start;
    }

    .wrap-contacts .wrap-contacts-box {
        display: flex;
        align-items: center;
        width: 1170px;
        margin: 0 auto;
        overflow: hidden;
        box-shadow: 0 10px 109px rgba(0, 0, 0, 0.07);
        border-radius: 20px;
    }

    .wrap-contacts .contacts {
        flex-grow: 1;
        width: auto;
        margin: 0;
        padding: 80px 0 80px 87px;
    }

    .wrap-contacts .contacts .contact:not(:last-child) {
        margin-bottom: 50px;
    }

    .wrap-contacts .side-icon-box svg {
        width: 35px;
        height: auto;
    }

    .wrap-contacts .side-icon-box .content {
        margin-left: 25px;
    }

    .wrap-contacts .contacts .phone a {
        font-size: 27px;
    }

    .wrap-contacts .contacts .address .content {
        max-width: 348px;
    }

    .wrap-contacts .contacts .working-time .content {
        max-width: 171px;
    }

    .wrap-contacts .wrap-map .map-frame {
        position: absolute;
        z-index: 5;
        top: 0;
        left: -1px;
        display: block;
        width: 50px;
        height: 100%;
    }

    .wrap-contacts #map {
        width: 611px;
        height: 519px;
    }

    /* FAQ ------------------------------ */
    .wrap-faq .section-heading {
        margin-bottom: 60px;
        padding-bottom: 0;
    }

    .wrap-faq .list-faq .item {
        margin-bottom: 20px;
        border-radius: 45px;
    }

    .wrap-faq .list-faq .question {
        padding: 16px 16px 16px 50px;
        font-size: 24px;
    }

    .wrap-faq .list-faq .question .icon {
        width: 58px;
        height: 58px;
    }

    .wrap-faq .list-faq .question .icon svg {
        width: 22px;
    }

    .wrap-faq .list-faq .answer .content {
        padding: 0 16px 30px 50px;
        font-size: 20px;
    }

    .wrap-faq .list-faq .answer p {
        padding-right: 34px;
    }

    .wrap-faq .list-faq .answer p:first-child {
        padding-top: 30px;
    }

    /* Calculator ------------------------------ */
    main .wrap-overflow-x {
        padding: 60px 80px 50px;
        border-radius: 20px;
        box-shadow: 0 62px 65px rgba(0, 0, 0, 0.07);
    }

    #wrap-calculator-1 .section-frame-lg {
        display: none;
    }

    #wrap-calculator-2 {
        padding-bottom: 200px;
    }

    .wrap-calculator .section-heading {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .calculator .step {
        overflow: visible;
    }

    .calculator .step:not(:last-child) {
        margin-right: 160px;
    }

    .calculator .step .step-heading {
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(51, 51, 51, 0.15);
    }

    .calculator .step .step-heading h3 {
        font-size: 30px;
    }

    .calculator .step .step-heading .calculator-pagination .prev-step {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 20px;
        padding: 21.5px 29px;
        border-radius: 20px;
    }

    .calculator .step .step-heading .calculator-pagination .prev-step svg {
        width: 22px;
    }

    .calculator .step .step-heading .step-number {
        padding: 16.5px 35px;
        font-size: 20px;
    }

    .calculator .step .step-heading .game-title-lg {
        display: block;
    }

    .calculator .step[data-step-name="model"]:nth-child(1) .options,
    .calculator .step[data-step-name="repair"]:nth-child(1) .options,
    .calculator .step:nth-child(2) .options {
        grid-gap: 15px 18px;
    }

    .calculator .step[data-step-name="repair"]:nth-child(1) .options,
    .calculator .step:nth-child(2) .options {
        grid-template-columns: repeat(3, 1fr);
    }

    .calculator .step[data-step-name="model"]:nth-child(1) .options .option,
    .calculator .step[data-step-name="repair"]:nth-child(1) .options .option {
        padding: 10px 5px;
        font-size: 24px;
        border-radius: 39px;
    }

    .calculator .step:nth-child(2) .options .option {
        padding: 15px 0;
    }

    .calculator .step:nth-child(2) .options .option .name {
        font-size: 18px;
    }

    .calculator .step:nth-child(2) .options .option .name span {
        font-size: 14px;
    }

    .calculator .step:nth-child(2) .options .option .params {
        font-size: 14px;
    }

    .calculator .step .button-spoiler {
        width: 100%;
        margin-top: 30px;
        font-size: 20px;
    }

    .calculator .step:nth-child(3) .step-content,
    .calculator .step:nth-child(5) {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .calculator .step:nth-child(3) .result-list,
    .calculator .step:nth-child(5) .step-content {
        flex-basis: 362px;
    }

    .calculator .result-list .result-element {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .calculator .step-content > .result-list:not(.list-total) .result-element.total-element {
        display: flex;
        margin-top: 40px;
        font-size: 27px;
    }

    .calculator .result-list .result-element .separator {
        margin: 0 10px 10px;
    }

    .calculator .step:nth-child(3) .step-content > .result-list.list-total {
        display: none;
    }

    #wrap-calculator-1 .step[data-step-name="game"] .step-heading .game-title-lg {
        position: relative;
    }

    #wrap-calculator-1 .step[data-step-name="game"] .step-heading .game-title-lg::after {
        content: "";
        position: absolute;
        top: -70px;
        left: 100%;
        display: block;
        width: 176px;
        height: 176px;
        background: url("media/icon-gift.png") no-repeat center / contain;
    }

    .calculator .step[data-step-name="game"] .step-heading .calculator-pagination {
        justify-content: flex-start;
        width: auto;
    }

    .calculator .about-prize-box {
        max-width: 496px;
        margin-top: 0;
    }

    .calculator .about-prize-box .about-prize-title {
        margin-bottom: 30px;
        font-size: 30px;
    }

    .calculator .step:nth-child(3) .side-icon span {
        max-width: 335px;
    }

    .calculator .side-icon {
        margin-bottom: 40px;
        font-size: 20px;
    }

    .calculator .side-icon .img-gift-small {
        width: 70px;
        height: 70px;
        margin-right: 20px;
    }

    .calculator .about-prize-box .button,
    .calculator form .button {
        box-shadow: 0 14px 65px -18px rgba(21, 120, 235, 0.19),
        0 23px 69px -20px rgba(21, 120, 235, 0.94);
    }

    .calculator .step:nth-child(5) {
        flex-wrap: wrap;
    }

    .calculator .step:nth-child(5) .step-heading {
        width: 100%;
    }

    .calculator .step:nth-child(5) .result-list .result-element:not(:last-child) {
        margin-bottom: 5px;
    }

    .calculator .step .prizes-total h3 {
        margin: 30px 0 20px;
        font-size: 24px;
    }

    .calculator .step .prizes-total .prizes-list {
        grid-gap: 0 25px;
    }

    .calculator .step .prizes-total .prizes-list .prize-item .img {
        width: 48px;
        height: 48px;
    }

    .calculator .step .prizes-total .prizes-list .prize-item.item-accessories {
        background-size: 103px 67px;
    }

    .calculator .step .prizes-total .prizes-list .prize-item h4 {
        font-size: 16px;
    }

    .calculator .step-content .result-list .result-element.total-element span {
        font-size: 27px;
    }

    .calculator .step .book-prizes-box {
        margin: 0 0 30px;
    }

    .calculator .step:nth-child(5) .book-prizes-box .side-icon {
        margin-bottom: 30px;
    }

    .calculator .step:nth-child(5) .side-icon .img-gift-small {
        width: 71px;
        height: 71px;
        margin-right: 30px;
    }

    .calculator .step:nth-child(5) .book-prizes-box h4 {
        font-size: 30px;
    }

    .calculator .step .book-prizes-box h4 + p {
        font-size: 20px;
    }

    .calculator .step:nth-child(5) .book-prizes-box h4 .title-cashback {
        font-size: 34px;
    }

    .calculator .wrap-form {
        flex-basis: 496px;
        margin-top: 0;
    }

    form .input-wrap input {
        padding: 17px 40px;
    }

    .calculator form .privacy-text {
        margin-top: 30px;
        font-size: 14px;
    }

    .calculator form .privacy-text a:hover {
        text-decoration: none;
    }

    .calculator .game-heading {
        display: none;
    }

    /* Game Slot Machine ------------------------------ */
    .calculator .step:nth-child(4) .step-heading {
        margin-bottom: 70px;
    }

    .calculator .slot-machine {
        width: 497px;
        padding: 15px 15px 20px;
    }

    .calculator .slot-machine .slot-machine-window {
        height: 268px;
        border-radius: 12px;
    }

    .calculator .slot-machine .wheel {
        top: -67px;
    }

    .calculator .slot-machine .wheel .wheel-item {
        width: 115px;
        height: 115px;
        margin-bottom: 28px;
    }

    .calculator .slot-machine .wheel .wheel-item img {
        width: 66px;
        height: 66px;
    }

    .calculator .slot-machine .slot-machine-buttons {
        margin-top: 50px;
    }

    .calculator .slot-machine .button-get-prize {
        flex-grow: 1;
        padding: 29px 20px;
        font-size: 24px;
    }

    .calculator .slot-machine .button-get-prize:not(.inactive):not(.playing) {
        padding: 29px 20px;
    }

    .calculator .slot-machine .lever-wrap {
        flex-basis: 93px;
        margin-left: 20px;
        box-shadow: 0 35px 49px -28.4px rgba(21, 120, 235, 0.3),
        0 22px 77px -31.5556px rgba(21, 120, 235, 0.93);
    }

    .calculator .slot-machine .lever-wrap .lever-box {
        top: 16px;
        left: 24px;
        width: 46px;
        height: 59px;
        border-width: 2px;
    }

    .calculator .slot-machine .lever-wrap .lever-base {
        top: 24px;
        left: 40px;
        width: 14px;
        height: 40px;
        border-radius: 3px;
        box-shadow: inset 0 17px 6px rgba(0, 0, 0, 0.25),
        inset 0 -12px 11px rgba(0, 0, 0, 0.76);
    }

    .calculator .slot-machine .lever-wrap .lever-body {
        top: -16px;
        left: 43px;
        width: 8px;
        height: 62px;
        border-radius: 2px;
    }

    .calculator .slot-machine .lever-wrap:disabled .lever-body {
        top: 44px;
    }

    .calculator .slot-machine .lever-wrap .lever-handle {
        top: -22px;
        left: 30px;
        width: 33px;
        height: 33px;
    }

    .calculator .slot-machine .lever-wrap:disabled .lever-handle {
        top: 79px;
    }

    .calculator .slot-machine .help-prizes.help-prizes-sm {
        display: none;
    }

    .calculator .help-prizes.help-prizes-lg {
        display: block;
    }

    #calculator-1 .step:nth-child(4) .step-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .calculator .step:nth-child(4) .help-prizes {
        width: 410px;
    }

    .calculator .step:nth-child(4) .help-prizes h3 {
        margin-bottom: 40px;
        font-size: 30px;
    }

    .calculator .step:nth-child(4) .help-prizes ul {
        margin: 30px 0;
    }

    .calculator .step:nth-child(4) .help-prizes ul li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .calculator .step:nth-child(4) .help-prizes ul li:last-child {
        margin-bottom: 0;
    }

    .calculator .step:nth-child(4) .help-prizes ul li img {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    /* Game Coins ------------------------------ */
    .calculator .coins {
        display: flex;
        justify-content: space-between;
    }

    .calculator .coins .game-field {
        width: 494px;
        grid-gap: 30px 40px;
        margin-bottom: 0;
    }

    .calculator .game-coin-rules {
        display: block;
    }

    .calculator .game-coin-rules .rules-wrap {
        width: 396px;
    }

    .calculator .game-coin-rules .current-discount {
        display: flex;
        align-items: center;
        width: 342px;
        margin-bottom: 30px;
        padding: 14px;
        border: 2px solid rgba(51, 51, 51, 0.15);
        border-radius: 20px;
    }

    .calculator .game-coin-rules .current-discount > span {
        flex-basis: 50%;
    }

    .calculator .game-coin-rules .current-discount .your-discount-title {
        font-size: 15px;
        font-weight: 600;
        text-align: center;
    }

    .calculator .game-coin-rules .current-discount .bold {
        display: flex;
        align-items: center;
        padding-left: 35px;
        border-left: 1px solid rgba(51, 51, 51, 0.15);
    }

    .calculator .game-coin-rules .current-discount img {
        width: 37px;
    }

    .calculator .game-coin-rules .current-discount .value {
        margin-left: 15px;
        font-size: 24px;
    }

    .calculator .game-coin-rules h3 {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .calculator .game-coin-rules ol {
        margin-bottom: 30px;
        list-style-position: inside;
    }

    .calculator .coins .wrap-buttons .button {
        width: 100%;
    }

    .calculator .step[data-step-name="game"] .button.button-light {
        padding: 24.5px 20px;
    }

    .calculator .step[data-step-name="game"] .wrap-buttons .button.button-get-prize {
        margin-top: 20px;
        padding: 24px 20px;
        font-size: 20px;
    }

    .calculator .step[data-step-name="game"] .wrap-buttons .button.button-get-prize,
    .calculator .step[data-step-name="game"] .button-play:not(.playing):not(.restart) {
        box-shadow: 0 14px 65px -18px rgba(21, 120, 235, 0.19),
        0 23px 69px -20px rgba(21, 120, 235, 0.94);
    }
}
