@font-face {
    font-family: "Nunito Sans";
    src: url("../fonts/nunito-sans/nunito-sans.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}
.checkbox {
    display: block;
    position: relative;
}
.checkbox__label {
    display: block;
    position: relative;
    padding: 0 0 0 32px;
    font-family:
            Nunito Sans,
            -apple-system,
            BlinkMacSystemFont,
            Segoe UI,
            Roboto,
            Oxygen-Sans,
            Ubuntu,
            Cantarell,
            Helvetica Neue,
            sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.03em;
    color: #999999;
    cursor: pointer;
}
.checkbox__label:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 2px;
    width: 18px;
    height: 18px;
    background: white;
    border: 1px solid #999999;
    border-radius: 1px;
    transition: background-color 0.15s ease;
}
.checkbox__label:after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 6px;
    width: 13px;
    height: 10px;
    background: url(../images/checkbox.svg) 50% 50% no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.15s ease;
}
.checkbox__label a {
    color: #1967cf;
    text-decoration: none;
}
.checkbox__input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 0;
    height: 0;
    opacity: 0;
}
.checkbox__input:checked + .checkbox__label:before {
    background-color: #999999;
}
.checkbox__input:checked + .checkbox__label:after {
    opacity: 1;
}
.button {
    display: block;
    height: 50px;
    box-sizing: border-box;
    text-align: center;
    background: #333333;
    color: white;
    font-family:
            Nunito Sans,
            -apple-system,
            BlinkMacSystemFont,
            Segoe UI,
            Roboto,
            Oxygen-Sans,
            Ubuntu,
            Cantarell,
            Helvetica Neue,
            sans-serif;
    font-weight: 550;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.03em;
    cursor: pointer;
    padding: 0 16px;
    border: 0;
    border-radius: 2px;
    width: 100%;
    transition: background-color 0.15s ease;
}
.button--show-mobile {
    display: block;
}
.button--show-desktop {
    display: none;
}
.button--back {
    margin-top: 10px;
}
.button--link {
    text-decoration: none;
    padding-top: 15px;
    padding-bottom: 15px;
}
.button:disabled {
    background-color: #5f5f5f;
    cursor: auto;
}
.button:not([disabled]):hover {
    background-color: #27ae60;
}
.button:not([disabled]):active {
    background-color: #6fcf97;
}
.input {
    display: block;
    border: 0;
    border-bottom: 1px solid #bdbdbd;
    box-sizing: border-box;
    height: 46px;
    font-family:
            Nunito Sans,
            -apple-system,
            BlinkMacSystemFont,
            Segoe UI,
            Roboto,
            Oxygen-Sans,
            Ubuntu,
            Cantarell,
            Helvetica Neue,
            sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #222222;
    padding: 0;
    width: 100%;
    outline: none;
}
.label {
    display: block;
    font-family:
            Nunito Sans,
            -apple-system,
            BlinkMacSystemFont,
            Segoe UI,
            Roboto,
            Oxygen-Sans,
            Ubuntu,
            Cantarell,
            Helvetica Neue,
            sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #5f5f5f;
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
}
.input:placeholder-shown:not(:focus) + .label {
    top: 31px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.03em;
}


.footer-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 27px;
}
.footer-form__title {
    display: none;
    margin: 0;
    font-weight: 800;
    font-size: 13px;
    font-family:"Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;
    line-height: 120%;
    letter-spacing: 0;
}
.footer-form__sub-title {
    text-align: center;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    margin-bottom: 16px;

    font-size: 14px;
    font-family: "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;

}

.footer-form__action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 12px;
}
.footer-form__input-field {
    display: flex;
    flex-direction: column;
}
.footer-form__input {
    font-weight: 400;
    font-size: 14px;
    font-family: "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 11px 8px;
    line-height: 20px;
    letter-spacing: 0;
}
.footer-form__button {
    font-family: "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    min-height: 44px;
    height: 44px;
    border-radius: 4px;
    margin-top: 8px;
}
.footer-form__text {
    font-weight: 500;
    font-size: 12px;
    font-family: "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;
    text-align: center;
    color: #999999;
    line-height: 16px;
}
.footer-form__url {
    color: #222222;
    cursor: pointer;
}
.footer-form--icon-mail {
    display: inline-block;
    background-image: url("../images/mail-form.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 16px;
    height: 13px;
    margin-left: 8px;
}
.footer-form__error-message {
    color: #eb5757;
    font-weight: 500;
    font-size: 12px;
    font-family: "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;
    line-height: 16px;
}
.footer {
    background: #f5f5f5;
}
.footer__content {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
}
.footer__show--desktop {
    display: none;
}
.footer__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    padding: 40px 16px;
    color: #222222;
    letter-spacing: 0;
}
.hide-footer .footer {
    display: none;
}
.footer.additional-padding {
    padding-bottom: 200px;
}
.footer__copy-text {
    color: #949494;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 10px;
    font-family: "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;
    line-height: 100%;
    letter-spacing: 0.06em;
}
.footer__information {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.footer-logo__picture {
    width: 172px;
    height: 38px;
    background: url("../images/header_logo.svg") left center no-repeat;
    background-size: contain;
    margin-bottom: 10px;
}
.footer-logo__text {
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: default;
    text-align: center;
    font-family: "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;
    font-size: 14px;
    font-weight: 500;
}
.footer-menu__items {
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    column-gap: 40px;
    row-gap: 36px;
}
.footer-menu-column__title {
    font-weight: 800;
    font-size: 13px;
    font-family: "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0;
}
.footer-menu-column__link {
    font-weight: 500;
    font-size: 12px;
    font-family: "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;
    line-height: 18px;
    color: #333333 !important;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.footer-menu-column__link img {
    margin-right: 4px;
}
@media (hover: hover) {
    .footer-menu-column__link:hover {
        color: #5f5f5f;
    }
}
.footer-documents {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.footer-documents__item {
    font-weight: 500;
    font-size: 10px;
    font-family: "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;
    text-transform: uppercase;
    color: #949494 !important;
    margin-bottom: 12px;
}
.footer-documents__item:last-child {
    margin-bottom: 0;
}
.footer-documents__item-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
}
.footer-store {
    width: 205px;
    margin: 0 auto;
}
.footer-store__links-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    list-style: none;
    padding: 0 !important;
    margin: 0;
    flex-wrap: wrap;
    width: 100%;
}
.footer-store__link {
    display: block;
    font-size: 0;
    line-height: 0;
    width: 100px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
}
.footer-store__link--app-store {
    background-image: url("../images/app-store-badge.svg");
}
.footer-store__link--google-play {
    background-image: url("../images/google-play-badge.svg");
}

.footer-store__sup-text {
    margin-bottom: 14px;
    font-weight: 500;
    font-size: 10px;
    font-family: Nunito Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
    line-height: 100%;
    letter-spacing: 0.06em;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: default;
    text-align: center
}

._hide {
    display: none;
}
@media screen and (min-width: 768px) {
    .checkbox__label {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.03em;
    }
    .footer__wrapper {
        padding: 40px 20px;
    }
    .footer__copy-text {
        margin-top: 24px;
        grid-row: 4;
        text-align: left;
    }
    .footer__information {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        width: 100%;
    }
    .footer-logo {
        margin-bottom: 42px;
    }
    .footer-logo__text {
        margin-bottom: 0;
    }
    .footer-menu {
        flex-grow: 1;
    }
    .footer-menu__items {
        justify-content: space-between;
    }
    .footer-menu-column {
        width: fit-content;
    }
    .footer-menu-column__title {
        margin-bottom: 24px;
    }
    .footer-menu-column__link {
        font-size: 13px;
        font-weight: 500;
        line-height: 18px;
    }
    .footer-menu-column__link img {
        margin-right: 10px;
    }
    .footer-documents {
        align-content: end;
    }
    .footer-documents__item {
        text-align: left;
    }
    .footer-documents__item-wrapper {
        margin-bottom: 0;
    }
    .footer-store {
        margin: 0;
        width: auto;
    }
    .footer-store__links-list {
        margin-bottom: 0;
        justify-content: end;
        gap: 8px;
    }
    .footer-store__link {
        height: 28px;
    }

    .button {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0.02em;
        font-weight: 400;
    }
}
@media screen and (min-width: 1024px) {
    .footer-form {
        max-width: 315px;
    }
    .footer-form__title {
        display: block;
        text-transform: uppercase;
        margin-bottom: 20px;
        letter-spacing: 0;
        line-height: 18px;
    }
    .footer-form__sub-title {
        text-align: left;
        margin-bottom: 16px;
        line-height: 20px;
    }
    .footer-form__text {
        text-align: left;
    }
    .footer-form__input {
        margin-bottom: 4px;
    }
    .main-top-btn {
        display: block;
    }
    .footer__wrapper {
        padding: 40px 20px 20px;
        justify-content: flex-start;
        flex-direction: column;
    }
    .footer__content {
        flex-direction: row;
        align-items: flex-start;
    }
    .footer__copy-text {
        margin-top: 0;
    }
    .footer.additional-padding {
        padding-bottom: 15px;
    }
    .footer-store__links-list {
        justify-content: start;
    }
    .footer-logo {
        align-items: flex-start;
        margin-bottom: 45px;
    }
    .footer-logo__picture {
        width: 209px;
        height: 46px;
        margin-bottom: 6px;
    }
    .footer-menu {
        margin-right: 100px;
    }
    .footer-menu__items {
        gap: 26px;
        width: auto;
    }
    .footer-menu-column__title {
        font-weight: 800;
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 18px;
    }
    .footer-menu-column__link {
        line-height: 18px;
    }
    .footer-documents__item-wrapper {
        gap: 42px;
        flex-direction: row;
    }
}
@media screen and (min-width: 1360px) {
    .footer-form {
        margin-bottom: 0;
    }
    .footer-form__title {
        margin-bottom: 27px;
    }
    .footer-form__text {
        margin-bottom: 0;
    }
    .footer__show--desktop {
        display: block;
    }
    .footer__show--mobile {
        display: none;
    }
    .footer__container {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: start;
        gap: 125px;
    }
    .footer-logo {
        width: fit-content;
        margin-bottom: 0;
        margin-left: 15px;
        justify-content: space-between;
    }
    .footer-logo__text {
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        min-width: 190px;
    }
    .footer-logo__picture {
        width: 178px;
        height: 40px;
    }
    .footer-store {
        padding-left: 57px;
    }
    .footer-menu {
        margin-right: 48px;
    }
    .footer-menu__items {
        flex-wrap: nowrap;
        gap: 69px;
        max-width: 600px;
    }
    .footer-menu__information {
        display: flex;
        gap: 35px;
    }
    .footer-store {
        padding-left: 0;
        margin-top: 28px;
    }
    .footer-store__links-list {
        gap: 8px;
    }
    .footer-store__link {
        width: 85px;
        height: 24px;
    }
    .footer-menu-column__link {
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 20px;
    }
    .footer-store__sup-text {
        font-weight: 500;
        font-size: 12px;
        line-height: 120%;
        letter-spacing: 0.03em
    }
}
@media screen and (min-width: 1920px) {
    .footer__wrapper {
        max-width: 1880px;
        margin: 0 auto;
        column-gap: 183px;
    }
    .footer__container {
        gap: 300px;
    }
    .footer-menu {
        margin-right: 73px;
    }
    .footer-menu__items {
        max-width: 720px;
        gap: 110px;
    }
    .footer-menu__column:last-child {
        margin-left: 38px;
    }
    .footer-menu__information {
        gap: 55px;
    }
    .footer-menu-column__title {
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 27px;
    }
    .footer-menu-column__link {
        font-size: 14px;
        font-weight: 500;
    }
    .footer-logo {
        padding-left: 100px;
    }
    .footer-logo__picture {
        width: 209px;
        height: 47px;
        margin-bottom: 10px;
    }
    .footer-logo__text {
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 0;
        line-height: 24px;
    }
    .footer-documents__item-wrapper {
        gap: 130px;
    }
    .footer-form {
        max-width: 435px;
    }
}

@media screen and (max-width: 980px) {
    .rr-mobile-menu {
        overflow: hidden !important;
    }
    .rr-mobile-menu__container {
        height: 100vh !important;
        background: #fff;

    }
    .rr-mobile-menu__link-item {
        color: #000 !important;
    }

    .rr-mobile-menu__list-item {
        padding-left: 25px !important;
        text-align: left !important;
    }
}
.accept-checkbox {
    margin-top: 20px;
    width: 100%;
}

.accept-checkbox__text {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 14px;
    color: #222 !important;
    padding-left: 33px;
    text-align: left;
}

.accept-checkbox__text a {
    text-decoration: none;
    color: #5f5f5f !important;
}

.checkbox__label {
    user-select: none;
    text-align: left;
}

.checkbox__label span {
    color: #eb5757;
}
.footer-form__button {
    font-family: "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont, serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    min-height: 44px;
    height: 44px;
    border-radius: 4px;
    margin-top: 8px;
}
