﻿@charset "UTF-8";

/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
}

/*--------------------*/

:root {
    --textColor: #000;
    --titleColor: #000;
    --accentColor: #3183FF;
}

html {
    scroll-behavior: smooth !important;
}

body {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

h2 {
    color: var(--titleColor);
    font-size: 32px;
    font-weight: 600;
}

p {
    color: var(--textColor);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

@media (hover: hover) {
    .hover-fade {
        transition-duration: 500ms;
        display: block;
    }

    .hover-fade:hover {
        transform: scale(1.1);
    }
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.page {
    flex: 1 1 auto;
}

section {
    padding: 0 10px;
}

[class*="__container"] {
    max-width: 1230px;
    margin: 0 auto;
    display: flex;
    padding: 0 15px;
    border-left: 1px solid rgba(159, 159, 159, 0.50);
    border-right: 1px solid rgba(159, 159, 159, 0.50);
}


@media (max-width: 990.98px) {
    [class*="__container"] {
        max-width: 750px;
        flex-direction: column;
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header__line {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    border-top: 1px solid rgba(159, 159, 159, 0.50);
}

.header__container {
    border: none;
    gap: 24px;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.header__nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
    padding-bottom: 6px;
}

.header__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    list-style: none;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.header__nav-link {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.header__nav-link:hover,
.header__nav-link:focus {
    color: var(--accentColor);
}

.header__nav-link--cta {
    color: var(--accentColor);
    font-weight: 600;
}

.header__nav-link--cta:hover,
.header__nav-link--cta:focus {
    color: #000;
}

#hero,
#exchanges,
#voices,
#technology,
#how-it-works,
#reviews,
#register,
#form-block {
    scroll-margin-top: 100px;
}

.header__logo {
    margin-left: 2px;
    /*margin-bottom: 20px;*/
}

.header__places {
    background: var(--accentColor);
    padding: 52px 10px 8px;

    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.header__places-number {
    font-size: 40px;
    font-weight: 600;
}




.main-block__container {
    padding: 156px 15px 117px;
    align-items: center;
    gap: 100px;
}

.main-block__content {
    max-width: 610px;
    flex-grow: 1;
}

.main-block__title {
    color: #000;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    margin-left: 2px;
    position: relative;
    margin-top: 70px;
}

.main-block__title:before {
    content: '';
    width: 2px;
    height: 68px;
    background: #000;
    display: block;
    position: absolute;
    left: -19px;
    top: 0;
}

.main-block__title>p {
    font-size: 48px;
    color: #000;
    font-weight: 600;
}

.main-block__form-wrap {
    background: var(--site-img-form-bg, url("Rectangle_1.svg")) bottom right no-repeat;
    background-size: cover;
    padding: 35px;
    position: relative;
    max-width: 364px;
}

.main-block__form-title {
    color: #0E0E0E;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.main-block__form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    width: 100%;
    gap: 7px;
}

.main-block__phone-wrap {}

.main-block__input {
    border: 1px solid #CBCBCB;
    padding: 12px 15px;
    font-size: 12px;
    color: #000;
    width: 100%;
    position: relative;
}

.iti {
    width: 100%;
    position: relative;
}

.main-block__phone-wrap {
    position: relative;
}

.main-block__input::placeholder {
    color: #000;
}

#message {
    font-size: 12px;
    text-align: center;
    color: red;
    font-weight: 600;
}

.main-block__btn {
    background: var(--accentColor);
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.main-block__accpet {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin-top: 10px;
}

.main-block__check {}

.main-block__accept-text {
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    color: #000;
}

.about-block {
    background: #F9F9F9;
}

.about-block__container-1 {
    gap: 178px;
    padding: 147px 0 97px;
}

.about-block__title {
    flex: 0 1 48%;
    margin-left: 35px;
    position: relative;
}

.about-block__title:before {
    content: '';
    width: 2px;
    height: 42px;
    background: var(--accentColor);
    display: block;
    position: absolute;
    left: -37px;
    top: 0;
}

.about-block__text {
    flex: 0 1 52%;
}

.about-block__container-2 {
    gap: 120px;
    padding-bottom: 112px;
}

.about-block__item {
    flex: 0 1 33%;
}

.about-block__item-icon {}

.about-block__item-title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin: 12px 0 8px;
}

.about-block__item-text {}

.selebrity-block {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.selebrity-block__container {
    align-items: center;
}

.selebrity-block__container:nth-child(2) {
    flex-direction: row-reverse;
}

.selebrity-block__content {
    flex: 0 1 50%;
    padding-left: 20px;
    padding-right: 38px;
}

.selebrity-block__container:nth-child(2) .selebrity-block__content {
    padding-left: 55px;
    padding-right: 0;
}

.selebrity-block__name {
    color: #000;
    font-size: 32px;
    font-weight: 600;
    position: relative;
}

.selebrity-block__name:before {
    content: '';
    width: 2px;
    height: 42px;
    background: var(--accentColor);
    display: block;
    position: absolute;
    left: -37px;
    top: 0;
}

.selebrity-block__job {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 111.9%;
    margin-bottom: 12px;
}

.selebrity-block__text {}

.selebrity-block__photo {
    flex: 0 1 50%;
    position: relative;
height: 550px;
}

.selebrity-block__photo img {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 50vw; */
    height: 100%;
    object-fit: cover;
    max-width: unset;
}

.selebrity-block__container:nth-child(2) .selebrity-block__photo img {
    top: 0;
    left: unset;
    right: 0;
}

.app-block {
    background: #F9F9F9;

}

.app-block__container {
    padding-top: 73px;
    gap: 200px;
    align-items: center;

}

.app-block__content {
    max-width: 510px;
    margin-left: 20px;
}

.app-block__title {
    margin-bottom: 33px;
}

.app-block__btn {
    padding: 14px 28px;
    border: 1px solid #000;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    display: inline-block;
}

.app-block__img {}

.step-block {}

.step-block__container {
    padding: 127px 15px 96px;
    flex-direction: column;
    gap: 59px;
}

.step-block__title {
    text-align: center;
}

.step-block__wrap {
    display: flex;
    gap: 56px;
}

.step-block__text {
    width: 262px;
    flex-shrink: 0;
    position: relative;
}

.step-block__text:before {
    content: '';
    width: 2px;
    height: 22px;
    background: var(--accentColor);
    display: block;
    position: absolute;
    left: -17px;
    top: 0;
}

.step-block__step-wrap {
    flex-grow: 1;
    display: flex;
    gap: 20px;
}

.step-block__step {
    flex: 0 1 33%;
}

.step-block__step-number {
    color: #103bff;
    font-size: 24px;
    font-weight: 600; 
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-block__step-devider {
    flex-grow: 1;
    border-top: 1px solid #9E9292;
}

.step-block__step-title {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 111.9%;
    margin: 31px 0 7px;
}

.step-block__step-text {
    color: #000;
    max-width: 205px;
}

.step-block__btn {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin-top: 18px;
    display: block;
}

.review-block {
    background: #F9F9F9;
}

.review-block__container {
    flex-direction: column;
    padding: 120px 35px 120px;
    gap: 40px;
}

.review-block__title {
    position: relative;
}

.review-block__title:before {
    content: '';
    width: 2px;
    height: 22px;
    background: var(--accentColor);
    display: block;
    position: absolute;
    left: -37px;
    top: 8px;
}

.review-block__swiper {
    position: relative;
}

.swiper {
    max-width: 969px;
}

.swiper-wrapper {}

.swiper-slide {}

.review-block__slide {
    border: 1px solid #DFDFDF;
    background: #FFF;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px 24px;
    padding: 15px 20px;
    align-items: start;
}

.review-block__slide-photo {
    grid-column: 1;
    grid-row: 1;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: none;
}

.review-block__slide-content {
    grid-column: 2;
    grid-row: 1;
    flex: unset;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    min-width: 0;
}

.review-block__slide-name {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 111.9%;
    margin-bottom: 9px;
}

.review-block__slide-yearsold {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 111.9%;
}

.review-block__slide-invest {
    margin-top: auto;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 101.4%;
    margin-bottom: 12px;
}

.review-block__slide-income {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 101.4%;
}

.review-block__slidetext {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
}

.swiper-button-prev {
    top: unset !important;
    bottom: -60px !important;
    right: unset !important;
    left: 50% !important;
    transform: translate(-50px, 0) !important;
}

.swiper-button-prev:after {
    content: var(--site-img-prev, url("prev.svg")) !important;
}

.swiper-button-next {
    top: unset !important;
    bottom: -69px !important;
    right: 50% !important;
    left: unset !important;
    transform: translate(50px, 0) !important;
}

.swiper-button-next:after {
    content: var(--site-img-next, url("next.svg")) !important;
}

.toform-block {
    background: var(--site-img-cta-bg, url("image_8.png")) center center no-repeat;
    background-size: cover;
}

.toform__container {
    min-height: 699px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
}

.toform__title {
    color: #000;
    max-width: 658px;
}

.toform__text {
    color: #000;
    margin: 16px 0 27px;
    font-size: 20px;
    font-weight: 500;
}

.toform__btn {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    padding: 14px 32px;
    background: var(--accentColor);
}

.footer {
    margin-top: -120px;
    border-top: 1px solid rgba(159, 159, 159, 0.46);
}

.footer__container {
    padding: 34px 15px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: none;
}

.footer__container--legal {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 40px 15px 34px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__links a {
    text-decoration: none;
}

.footer__links a:hover {
    text-decoration: underline;
}

.footer__disclaimer {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(159, 159, 159, 0.3);
}

.footer__disclaimer p {
    color: #444;
    font-size: 12px;
    line-height: 1.65;
    font-weight: 400;
    text-transform: none;
    margin: 0;
}

.footer__disclaimer a {
    color: #3183FF;
    text-decoration: underline;
}

.footer__copyright {
    width: 100%;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-transform: none;
    margin: 0;
}

.footer__logo {}

.footer__pv {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

@media (max-width: 990.98px) {
    .header__container {
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
    }

    .header__nav {
        order: 3;
        flex: 1 1 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 4px 0 8px;
        justify-content: flex-start;
    }

    .header__nav-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 6px 14px;
    }

    .header__nav-link {
        font-size: 12px;
    }

    .header__line {
        top: 110px;
    }

    .header__places {
        display: flex;
        padding: 12px;
        gap: 8px;
        text-align: left;
        font-size: 12px;
    }

    .header__places-number {
        font-size: 24px;
    }

    .header__logo {
        margin: 0px;
    }

    .main-block__container {
        padding: 130px 15px 60px;
        gap: 40px;
    }

    .main-block__title {
        font-size: 5vw;
        margin-top: 70px;
    }

    .main-block__title p {
        
        font-size: 7vw;
    }

    .about-block__container-1 {
        padding: 60px 15px;
        gap: 20px;
    }

    .about-block__title {
        margin-left: 0;
    }

    .about-block__title:before {
        left: -17px;
    }

    h2 {
        font-size: 24px;
    }

    .about-block__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .selebrity-block__container {
        padding: 40px 15px;
        gap: 20px;
        flex-direction: column-reverse!important;
    }
    .selebrity-block__container:nth-child(2) .selebrity-block__content{
        padding-left: 20px;
    }

    .selebrity-block__photo img {
        position: static;
        width: 100%;
    }

    .app-block__container {
        gap: 40px;
    }

    .step-block__container {
        padding: 60px 15px;
        gap: 30px;
    }

    .step-block__title {
        text-align: left;
    }

    .step-block__step-wrap, .step-block__step-number {
        gap: 10px;
    }

    .step-block__step-text {
        font-size: 10px;
        font-weight: 500;
    }

    .review-block__container {
        padding: 60px 15px 120px;
        gap: 20px;
    }

    .review-block__title:before {
        left: -17px;
    }

    .review-block__slide {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 12px 16px;
        padding: 10px;
    }

    .review-block__slide-photo {
        width: 100px;
        height: 100px;
    }

    .review-block__slide-content {
        gap: 12px;
    }

    .step-block__wrap {
        flex-direction: column;
    }

    .toform__container {
        min-height: unset;
        padding: 60px 15px 220px;
    }

    .footer {
        margin-top: -157px;
    }

    .footer__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__disclaimer p {
        font-size: 11px;
    }
}

/* Custom country-list */
                .custom__country-label {
                  width: 100%;
                  pointer-events: none;
                }
                .custom__country-input {
                  width: 100%;
                  box-sizing: border-box;
                  position: relative;
                  padding-left: 75px !important;
                  pointer-events: all;
                  outline: none;
                }
                .custom__country-dropdown {
                  width: 100%;
                  position: relative;
                  right: auto;
                  left: 0;
                  display: inline-block;
                }
                .custom__country-container {
                  height: 100%;
                  width: 100%;
                  position: absolute;
                  right: auto;
                  left: 0;
                }
                .custom__country-select {
                  z-index: 1;
                  position: relative;
                  display: flex;
                  align-items: center;
                  height: 100%;
                  padding: 0 0 0 8px;
                }
                .custom__country-list {
                  z-index: 1;
                  background-color: white;
                  width: 100%;
                  position: absolute;
                  padding: 0;
                  margin: 0;
                  box-sizing: border-box;
                  display: none;
                  white-space: nowrap;
                  border: 1px solid black;
                  max-height: 200px;
                  overflow-y: scroll;
                  -webkit-overflow-scrolling: touch;
                  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
                  border: 1px solid #ccc;
                  border-bottom-left-radius: 5px;
                  border-bottom-right-radius: 5px;
                }
                .custom__country-list::-webkit-scrollbar {
                  width: 5px;
                  background-color: rgba(26, 24, 47, 0.15);
                  border-radius: 5px;
                  height: 200px;
                }
                .custom__country-list::-webkit-scrollbar-thumb {
                  background: #1a182f;
                  border-radius: 5px;
                }
                .custom__country-list.active {
                  display: block;
                }
                .custom__country-list-item {
                  color: black;
                  font-size: 13px;
                  height: auto;
                  font-family: monospace;
                  display: flex;
                  flex-direction: row;
                  gap: 10px;
                  align-items: center;
                  padding: 5px 10px;
                  transition: all 250ms ease;
                }
                .custom__country-list-item:not(:last-child) {
                  border-bottom: 1px solid gray;
                }
                .custom__country-list-item:hover,
                .custom__country-list-item:focus {
                  background-color: #d1d1d191;
                }
                .custom__country-arrow {
                  margin-left: 6px;
                  width: auto;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  text-align: center;
                  font-size: 10px;
                  color: #000;
                }
                .custom__country-list-item__name {
                }
                .custom__country-list-item__dial-code {
                }
                /* country flags list */
                .custom__country-list-item__flag.ac {
                  height: 10px;
                  background-position: 0px 0px;
                }
                .custom__country-list-item__flag.ad {
                  height: 14px;
                  background-position: -22px 0px;
                }
                .custom__country-list-item__flag.ae {
                  height: 10px;
                  background-position: -44px 0px;
                }
                .custom__country-list-item__flag.af {
                  height: 14px;
                  background-position: -66px 0px;
                }
                .custom__country-list-item__flag.ag {
                  height: 14px;
                  background-position: -88px 0px;
                }
                .custom__country-list-item__flag.ai {
                  height: 10px;
                  background-position: -110px 0px;
                }
                .custom__country-list-item__flag.al {
                  height: 15px;
                  background-position: -132px 0px;
                }
                .custom__country-list-item__flag.am {
                  height: 10px;
                  background-position: -154px 0px;
                }
                .custom__country-list-item__flag.ao {
                  height: 14px;
                  background-position: -176px 0px;
                }
                .custom__country-list-item__flag.aq {
                  height: 14px;
                  background-position: -198px 0px;
                }
                .custom__country-list-item__flag.ar {
                  height: 13px;
                  background-position: -220px 0px;
                }
                .custom__country-list-item__flag.as {
                  height: 10px;
                  background-position: -242px 0px;
                }
                .custom__country-list-item__flag.at {
                  height: 14px;
                  background-position: -264px 0px;
                }
                .custom__country-list-item__flag.au {
                  height: 10px;
                  background-position: -286px 0px;
                }
                .custom__country-list-item__flag.aw {
                  height: 14px;
                  background-position: -308px 0px;
                }
                .custom__country-list-item__flag.ax {
                  height: 13px;
                  background-position: -330px 0px;
                }
                .custom__country-list-item__flag.az {
                  height: 10px;
                  background-position: -352px 0px;
                }
                .custom__country-list-item__flag.ba {
                  height: 10px;
                  background-position: -374px 0px;
                }
                .custom__country-list-item__flag.bb {
                  height: 14px;
                  background-position: -396px 0px;
                }
                .custom__country-list-item__flag.bd {
                  height: 12px;
                  background-position: -418px 0px;
                }
                .custom__country-list-item__flag.be {
                  height: 15px;
                  background-position: -440px 0px;
                  width: 18px;
                }
                .custom__country-list-item__flag.bf {
                  height: 14px;
                  background-position: -460px 0px;
                }
                .custom__country-list-item__flag.bg {
                  height: 12px;
                  background-position: -482px 0px;
                }
                .custom__country-list-item__flag.bh {
                  height: 12px;
                  background-position: -504px 0px;
                }
                .custom__country-list-item__flag.bi {
                  height: 12px;
                  background-position: -526px 0px;
                }
                .custom__country-list-item__flag.bj {
                  height: 14px;
                  background-position: -548px 0px;
                }
                .custom__country-list-item__flag.bl {
                  height: 14px;
                  background-position: -570px 0px;
                }
                .custom__country-list-item__flag.bm {
                  height: 10px;
                  background-position: -592px 0px;
                }
                .custom__country-list-item__flag.bn {
                  height: 10px;
                  background-position: -614px 0px;
                }
                .custom__country-list-item__flag.bo {
                  height: 14px;
                  background-position: -636px 0px;
                }
                .custom__country-list-item__flag.bq {
                  height: 14px;
                  background-position: -658px 0px;
                }
                .custom__country-list-item__flag.br {
                  height: 14px;
                  background-position: -680px 0px;
                }
                .custom__country-list-item__flag.bs {
                  height: 10px;
                  background-position: -702px 0px;
                }
                .custom__country-list-item__flag.bt {
                  height: 14px;
                  background-position: -724px 0px;
                }
                .custom__country-list-item__flag.bv {
                  height: 15px;
                  background-position: -746px 0px;
                }
                .custom__country-list-item__flag.bw {
                  height: 14px;
                  background-position: -768px 0px;
                }
                .custom__country-list-item__flag.by {
                  height: 10px;
                  background-position: -790px 0px;
                }
                .custom__country-list-item__flag.bz {
                  height: 14px;
                  background-position: -812px 0px;
                }
                .custom__country-list-item__flag.ca {
                  height: 10px;
                  background-position: -834px 0px;
                }
                .custom__country-list-item__flag.cc {
                  height: 10px;
                  background-position: -856px 0px;
                }
                .custom__country-list-item__flag.cd {
                  height: 15px;
                  background-position: -878px 0px;
                }
                .custom__country-list-item__flag.cf {
                  height: 14px;
                  background-position: -900px 0px;
                }
                .custom__country-list-item__flag.cg {
                  height: 14px;
                  background-position: -922px 0px;
                }
                .custom__country-list-item__flag.ch {
                  height: 15px;
                  width: 15px;
                  background-position: -944px 0px;
                }
                .custom__country-list-item__flag.ci {
                  height: 14px;
                  background-position: -961px 0px;
                }
                .custom__country-list-item__flag.ck {
                  height: 10px;
                  background-position: -983px 0px;
                }
                .custom__country-list-item__flag.cl {
                  height: 14px;
                  background-position: -1005px 0px;
                }
                .custom__country-list-item__flag.cm {
                  height: 14px;
                  background-position: -1027px 0px;
                }
                .custom__country-list-item__flag.cn {
                  height: 14px;
                  background-position: -1049px 0px;
                }
                .custom__country-list-item__flag.co {
                  height: 14px;
                  background-position: -1071px 0px;
                }
                .custom__country-list-item__flag.cp {
                  height: 14px;
                  background-position: -1093px 0px;
                }
                .custom__country-list-item__flag.cr {
                  height: 12px;
                  background-position: -1115px 0px;
                }
                .custom__country-list-item__flag.cu {
                  height: 10px;
                  background-position: -1137px 0px;
                }
                .custom__country-list-item__flag.cv {
                  height: 12px;
                  background-position: -1159px 0px;
                }
                .custom__country-list-item__flag.cw {
                  height: 14px;
                  background-position: -1181px 0px;
                }
                .custom__country-list-item__flag.cx {
                  height: 10px;
                  background-position: -1203px 0px;
                }
                .custom__country-list-item__flag.cy {
                  height: 14px;
                  background-position: -1225px 0px;
                }
                .custom__country-list-item__flag.cz {
                  height: 14px;
                  background-position: -1247px 0px;
                }
                .custom__country-list-item__flag.de {
                  height: 12px;
                  background-position: -1269px 0px;
                }
                .custom__country-list-item__flag.dg {
                  height: 10px;
                  background-position: -1291px 0px;
                }
                .custom__country-list-item__flag.dj {
                  height: 14px;
                  background-position: -1313px 0px;
                }
                .custom__country-list-item__flag.dk {
                  height: 15px;
                  background-position: -1335px 0px;
                }
                .custom__country-list-item__flag.dm {
                  height: 10px;
                  background-position: -1357px 0px;
                }
                .custom__country-list-item__flag.do {
                  height: 14px;
                  background-position: -1379px 0px;
                }
                .custom__country-list-item__flag.dz {
                  height: 14px;
                  background-position: -1401px 0px;
                }
                .custom__country-list-item__flag.ea {
                  height: 14px;
                  background-position: -1423px 0px;
                }
                .custom__country-list-item__flag.ec {
                  height: 14px;
                  background-position: -1445px 0px;
                }
                .custom__country-list-item__flag.ee {
                  height: 13px;
                  background-position: -1467px 0px;
                }
                .custom__country-list-item__flag.eg {
                  height: 14px;
                  background-position: -1489px 0px;
                }
                .custom__country-list-item__flag.eh {
                  height: 10px;
                  background-position: -1511px 0px;
                }
                .custom__country-list-item__flag.er {
                  height: 10px;
                  background-position: -1533px 0px;
                }
                .custom__country-list-item__flag.es {
                  height: 14px;
                  background-position: -1555px 0px;
                }
                .custom__country-list-item__flag.et {
                  height: 10px;
                  background-position: -1577px 0px;
                }
                .custom__country-list-item__flag.eu {
                  height: 14px;
                  background-position: -1599px 0px;
                }
                .custom__country-list-item__flag.fi {
                  height: 12px;
                  background-position: -1621px 0px;
                }
                .custom__country-list-item__flag.fj {
                  height: 10px;
                  background-position: -1643px 0px;
                }
                .custom__country-list-item__flag.fk {
                  height: 10px;
                  background-position: -1665px 0px;
                }
                .custom__country-list-item__flag.fm {
                  height: 11px;
                  background-position: -1687px 0px;
                }
                .custom__country-list-item__flag.fo {
                  height: 15px;
                  background-position: -1709px 0px;
                }
                .custom__country-list-item__flag.fr {
                  height: 14px;
                  background-position: -1731px 0px;
                }
                .custom__country-list-item__flag.ga {
                  height: 15px;
                  background-position: -1753px 0px;
                }
                .custom__country-list-item__flag.gb {
                  height: 10px;
                  background-position: -1775px 0px;
                }
                .custom__country-list-item__flag.gd {
                  height: 12px;
                  background-position: -1797px 0px;
                }
                .custom__country-list-item__flag.ge {
                  height: 14px;
                  background-position: -1819px 0px;
                }
                .custom__country-list-item__flag.gf {
                  height: 14px;
                  background-position: -1841px 0px;
                }
                .custom__country-list-item__flag.gg {
                  height: 14px;
                  background-position: -1863px 0px;
                }
                .custom__country-list-item__flag.gh {
                  height: 14px;
                  background-position: -1885px 0px;
                }
                .custom__country-list-item__flag.gi {
                  height: 10px;
                  background-position: -1907px 0px;
                }
                .custom__country-list-item__flag.gl {
                  height: 14px;
                  background-position: -1929px 0px;
                }
                .custom__country-list-item__flag.gm {
                  height: 14px;
                  background-position: -1951px 0px;
                }
                .custom__country-list-item__flag.gn {
                  height: 14px;
                  background-position: -1973px 0px;
                }
                .custom__country-list-item__flag.gp {
                  height: 14px;
                  background-position: -1995px 0px;
                }
                .custom__country-list-item__flag.gq {
                  height: 14px;
                  background-position: -2017px 0px;
                }
                .custom__country-list-item__flag.gr {
                  height: 14px;
                  background-position: -2039px 0px;
                }
                .custom__country-list-item__flag.gs {
                  height: 10px;
                  background-position: -2061px 0px;
                }
                .custom__country-list-item__flag.gt {
                  height: 13px;
                  background-position: -2083px 0px;
                }
                .custom__country-list-item__flag.gu {
                  height: 11px;
                  background-position: -2105px 0px;
                }
                .custom__country-list-item__flag.gw {
                  height: 10px;
                  background-position: -2127px 0px;
                }
                .custom__country-list-item__flag.gy {
                  height: 12px;
                  background-position: -2149px 0px;
                }
                .custom__country-list-item__flag.hk {
                  height: 14px;
                  background-position: -2171px 0px;
                }
                .custom__country-list-item__flag.hm {
                  height: 10px;
                  background-position: -2193px 0px;
                }
                .custom__country-list-item__flag.hn {
                  height: 10px;
                  background-position: -2215px 0px;
                }
                .custom__country-list-item__flag.hr {
                  height: 10px;
                  background-position: -2237px 0px;
                }
                .custom__country-list-item__flag.ht {
                  height: 12px;
                  background-position: -2259px 0px;
                }
                .custom__country-list-item__flag.hu {
                  height: 10px;
                  background-position: -2281px 0px;
                }
                .custom__country-list-item__flag.ic {
                  height: 14px;
                  background-position: -2303px 0px;
                }
                .custom__country-list-item__flag.id {
                  height: 14px;
                  background-position: -2325px 0px;
                }
                .custom__country-list-item__flag.ie {
                  height: 10px;
                  background-position: -2347px 0px;
                }
                .custom__country-list-item__flag.il {
                  height: 15px;
                  background-position: -2369px 0px;
                }
                .custom__country-list-item__flag.im {
                  height: 10px;
                  background-position: -2391px 0px;
                }
                .custom__country-list-item__flag.in {
                  height: 14px;
                  background-position: -2413px 0px;
                }
                .custom__country-list-item__flag.io {
                  height: 10px;
                  background-position: -2435px 0px;
                }
                .custom__country-list-item__flag.iq {
                  height: 14px;
                  background-position: -2457px 0px;
                }
                .custom__country-list-item__flag.ir {
                  height: 12px;
                  background-position: -2479px 0px;
                }
                .custom__country-list-item__flag.is {
                  height: 15px;
                  background-position: -2501px 0px;
                }
                .custom__country-list-item__flag.it {
                  height: 14px;
                  background-position: -2523px 0px;
                }
                .custom__country-list-item__flag.je {
                  height: 12px;
                  background-position: -2545px 0px;
                }
                .custom__country-list-item__flag.jm {
                  height: 10px;
                  background-position: -2567px 0px;
                }
                .custom__country-list-item__flag.jo {
                  height: 10px;
                  background-position: -2589px 0px;
                }
                .custom__country-list-item__flag.jp {
                  height: 14px;
                  background-position: -2611px 0px;
                }
                .custom__country-list-item__flag.ke {
                  height: 14px;
                  background-position: -2633px 0px;
                }
                .custom__country-list-item__flag.kg {
                  height: 12px;
                  background-position: -2655px 0px;
                }
                .custom__country-list-item__flag.kh {
                  height: 13px;
                  background-position: -2677px 0px;
                }
                .custom__country-list-item__flag.ki {
                  height: 10px;
                  background-position: -2699px 0px;
                }
                .custom__country-list-item__flag.km {
                  height: 12px;
                  background-position: -2721px 0px;
                }
                .custom__country-list-item__flag.kn {
                  height: 14px;
                  background-position: -2743px 0px;
                }
                .custom__country-list-item__flag.kp {
                  height: 10px;
                  background-position: -2765px 0px;
                }
                .custom__country-list-item__flag.kr {
                  height: 14px;
                  background-position: -2787px 0px;
                }
                .custom__country-list-item__flag.kw {
                  height: 10px;
                  background-position: -2809px 0px;
                }
                .custom__country-list-item__flag.ky {
                  height: 10px;
                  background-position: -2831px 0px;
                }
                .custom__country-list-item__flag.kz {
                  height: 10px;
                  background-position: -2853px 0px;
                }
                .custom__country-list-item__flag.la {
                  height: 14px;
                  background-position: -2875px 0px;
                }
                .custom__country-list-item__flag.lb {
                  height: 14px;
                  background-position: -2897px 0px;
                }
                .custom__country-list-item__flag.lc {
                  height: 10px;
                  background-position: -2919px 0px;
                }
                .custom__country-list-item__flag.li {
                  height: 12px;
                  background-position: -2941px 0px;
                }
                .custom__country-list-item__flag.lk {
                  height: 10px;
                  background-position: -2963px 0px;
                }
                .custom__country-list-item__flag.lr {
                  height: 11px;
                  background-position: -2985px 0px;
                }
                .custom__country-list-item__flag.ls {
                  height: 14px;
                  background-position: -3007px 0px;
                }
                .custom__country-list-item__flag.lt {
                  height: 12px;
                  background-position: -3029px 0px;
                }
                .custom__country-list-item__flag.lu {
                  height: 12px;
                  background-position: -3051px 0px;
                }
                .custom__country-list-item__flag.lv {
                  height: 10px;
                  background-position: -3073px 0px;
                }
                .custom__country-list-item__flag.ly {
                  height: 10px;
                  background-position: -3095px 0px;
                }
                .custom__country-list-item__flag.ma {
                  height: 14px;
                  background-position: -3117px 0px;
                }
                .custom__country-list-item__flag.mc {
                  height: 15px;
                  background-position: -3139px 0px;
                }
                .custom__country-list-item__flag.md {
                  height: 10px;
                  background-position: -3160px 0px;
                }
                .custom__country-list-item__flag.me {
                  height: 10px;
                  background-position: -3182px 0px;
                }
                .custom__country-list-item__flag.mf {
                  height: 14px;
                  background-position: -3204px 0px;
                }
                .custom__country-list-item__flag.mg {
                  height: 14px;
                  background-position: -3226px 0px;
                }
                .custom__country-list-item__flag.mh {
                  height: 11px;
                  background-position: -3248px 0px;
                }
                .custom__country-list-item__flag.mk {
                  height: 10px;
                  background-position: -3270px 0px;
                }
                .custom__country-list-item__flag.ml {
                  height: 14px;
                  background-position: -3292px 0px;
                }
                .custom__country-list-item__flag.mm {
                  height: 14px;
                  background-position: -3314px 0px;
                }
                .custom__country-list-item__flag.mn {
                  height: 10px;
                  background-position: -3336px 0px;
                }
                .custom__country-list-item__flag.mo {
                  height: 14px;
                  background-position: -3358px 0px;
                }
                .custom__country-list-item__flag.mp {
                  height: 10px;
                  background-position: -3380px 0px;
                }
                .custom__country-list-item__flag.mq {
                  height: 14px;
                  background-position: -3402px 0px;
                }
                .custom__country-list-item__flag.mr {
                  height: 14px;
                  background-position: -3424px 0px;
                }
                .custom__country-list-item__flag.ms {
                  height: 10px;
                  background-position: -3446px 0px;
                }
                .custom__country-list-item__flag.mt {
                  height: 14px;
                  background-position: -3468px 0px;
                }
                .custom__country-list-item__flag.mu {
                  height: 14px;
                  background-position: -3490px 0px;
                }
                .custom__country-list-item__flag.mv {
                  height: 14px;
                  background-position: -3512px 0px;
                }
                .custom__country-list-item__flag.mw {
                  height: 14px;
                  background-position: -3534px 0px;
                }
                .custom__country-list-item__flag.mx {
                  height: 12px;
                  background-position: -3556px 0px;
                }
                .custom__country-list-item__flag.my {
                  height: 10px;
                  background-position: -3578px 0px;
                }
                .custom__country-list-item__flag.mz {
                  height: 14px;
                  background-position: -3600px 0px;
                }
                .custom__country-list-item__flag.na {
                  height: 14px;
                  background-position: -3622px 0px;
                }
                .custom__country-list-item__flag.nc {
                  height: 10px;
                  background-position: -3644px 0px;
                }
                .custom__country-list-item__flag.ne {
                  height: 15px;
                  background-position: -3666px 0px;
                }
                .custom__country-list-item__flag.nf {
                  height: 10px;
                  background-position: -3686px 0px;
                }
                .custom__country-list-item__flag.ng {
                  height: 10px;
                  background-position: -3708px 0px;
                }
                .custom__country-list-item__flag.ni {
                  height: 12px;
                  background-position: -3730px 0px;
                }
                .custom__country-list-item__flag.nl {
                  height: 14px;
                  background-position: -3752px 0px;
                }
                .custom__country-list-item__flag.no {
                  height: 15px;
                  background-position: -3774px 0px;
                }
                .custom__country-list-item__flag.np {
                  height: 15px;
                  background-position: -3796px 0px;
                }
                .custom__country-list-item__flag.nr {
                  height: 10px;
                  background-position: -3811px 0px;
                }
                .custom__country-list-item__flag.nu {
                  height: 10px;
                  background-position: -3833px 0px;
                }
                .custom__country-list-item__flag.nz {
                  height: 10px;
                  background-position: -3855px 0px;
                }
                .custom__country-list-item__flag.om {
                  height: 10px;
                  background-position: -3877px 0px;
                }
                .custom__country-list-item__flag.pa {
                  height: 14px;
                  background-position: -3899px 0px;
                }
                .custom__country-list-item__flag.pe {
                  height: 14px;
                  background-position: -3921px 0px;
                }
                .custom__country-list-item__flag.pf {
                  height: 14px;
                  background-position: -3943px 0px;
                }
                .custom__country-list-item__flag.pg {
                  height: 15px;
                  background-position: -3965px 0px;
                }
                .custom__country-list-item__flag.ph {
                  height: 10px;
                  background-position: -3987px 0px;
                }
                .custom__country-list-item__flag.pk {
                  height: 14px;
                  background-position: -4009px 0px;
                }
                .custom__country-list-item__flag.pl {
                  height: 13px;
                  background-position: -4031px 0px;
                }
                .custom__country-list-item__flag.pm {
                  height: 14px;
                  background-position: -4053px 0px;
                }
                .custom__country-list-item__flag.pn {
                  height: 10px;
                  background-position: -4075px 0px;
                }
                .custom__country-list-item__flag.pr {
                  height: 14px;
                  background-position: -4097px 0px;
                }
                .custom__country-list-item__flag.ps {
                  height: 10px;
                  background-position: -4119px 0px;
                }
                .custom__country-list-item__flag.pt {
                  height: 14px;
                  background-position: -4141px 0px;
                }
                .custom__country-list-item__flag.pw {
                  height: 13px;
                  background-position: -4163px 0px;
                }
                .custom__country-list-item__flag.py {
                  height: 11px;
                  background-position: -4185px 0px;
                }
                .custom__country-list-item__flag.qa {
                  height: 8px;
                  background-position: -4207px 0px;
                }
                .custom__country-list-item__flag.re {
                  height: 14px;
                  background-position: -4229px 0px;
                }
                .custom__country-list-item__flag.ro {
                  height: 14px;
                  background-position: -4251px 0px;
                }
                .custom__country-list-item__flag.rs {
                  height: 14px;
                  background-position: -4273px 0px;
                }
                .custom__country-list-item__flag.ru {
                  height: 14px;
                  background-position: -4295px 0px;
                }
                .custom__country-list-item__flag.rw {
                  height: 14px;
                  background-position: -4317px 0px;
                }
                .custom__country-list-item__flag.sa {
                  height: 14px;
                  background-position: -4339px 0px;
                }
                .custom__country-list-item__flag.sb {
                  height: 10px;
                  background-position: -4361px 0px;
                }
                .custom__country-list-item__flag.sc {
                  height: 10px;
                  background-position: -4383px 0px;
                }
                .custom__country-list-item__flag.sd {
                  height: 10px;
                  background-position: -4405px 0px;
                }
                .custom__country-list-item__flag.se {
                  height: 13px;
                  background-position: -4427px 0px;
                }
                .custom__country-list-item__flag.sg {
                  height: 14px;
                  background-position: -4449px 0px;
                }
                .custom__country-list-item__flag.sh {
                  height: 10px;
                  background-position: -4471px 0px;
                }
                .custom__country-list-item__flag.si {
                  height: 10px;
                  background-position: -4493px 0px;
                }
                .custom__country-list-item__flag.sj {
                  height: 15px;
                  background-position: -4515px 0px;
                }
                .custom__country-list-item__flag.sk {
                  height: 14px;
                  background-position: -4537px 0px;
                }
                .custom__country-list-item__flag.sl {
                  height: 14px;
                  background-position: -4559px 0px;
                }
                .custom__country-list-item__flag.sm {
                  height: 15px;
                  background-position: -4581px 0px;
                }
                .custom__country-list-item__flag.sn {
                  height: 14px;
                  background-position: -4603px 0px;
                }
                .custom__country-list-item__flag.so {
                  height: 14px;
                  background-position: -4625px 0px;
                }
                .custom__country-list-item__flag.sr {
                  height: 14px;
                  background-position: -4647px 0px;
                }
                .custom__country-list-item__flag.ss {
                  height: 10px;
                  background-position: -4669px 0px;
                }
                .custom__country-list-item__flag.st {
                  height: 10px;
                  background-position: -4691px 0px;
                }
                .custom__country-list-item__flag.sv {
                  height: 12px;
                  background-position: -4713px 0px;
                }
                .custom__country-list-item__flag.sx {
                  height: 14px;
                  background-position: -4735px 0px;
                }
                .custom__country-list-item__flag.sy {
                  height: 14px;
                  background-position: -4757px 0px;
                }
                .custom__country-list-item__flag.sz {
                  height: 14px;
                  background-position: -4779px 0px;
                }
                .custom__country-list-item__flag.ta {
                  height: 10px;
                  background-position: -4801px 0px;
                }
                .custom__country-list-item__flag.tc {
                  height: 10px;
                  background-position: -4823px 0px;
                }
                .custom__country-list-item__flag.td {
                  height: 14px;
                  background-position: -4845px 0px;
                }
                .custom__country-list-item__flag.tf {
                  height: 14px;
                  background-position: -4867px 0px;
                }
                .custom__country-list-item__flag.tg {
                  height: 13px;
                  background-position: -4889px 0px;
                }
                .custom__country-list-item__flag.th {
                  height: 14px;
                  background-position: -4911px 0px;
                }
                .custom__country-list-item__flag.tj {
                  height: 10px;
                  background-position: -4933px 0px;
                }
                .custom__country-list-item__flag.tk {
                  height: 10px;
                  background-position: -4955px 0px;
                }
                .custom__country-list-item__flag.tl {
                  height: 10px;
                  background-position: -4977px 0px;
                }
                .custom__country-list-item__flag.tm {
                  height: 14px;
                  background-position: -4999px 0px;
                }
                .custom__country-list-item__flag.tn {
                  height: 14px;
                  background-position: -5021px 0px;
                }
                .custom__country-list-item__flag.to {
                  height: 10px;
                  background-position: -5043px 0px;
                }
                .custom__country-list-item__flag.tr {
                  height: 14px;
                  background-position: -5065px 0px;
                }
                .custom__country-list-item__flag.tt {
                  height: 12px;
                  background-position: -5087px 0px;
                }
                .custom__country-list-item__flag.tv {
                  height: 10px;
                  background-position: -5109px 0px;
                }
                .custom__country-list-item__flag.tw {
                  height: 14px;
                  background-position: -5131px 0px;
                }
                .custom__country-list-item__flag.tz {
                  height: 14px;
                  background-position: -5153px 0px;
                }
                .custom__country-list-item__flag.ua {
                  height: 14px;
                  background-position: -5175px 0px;
                }
                .custom__country-list-item__flag.ug {
                  height: 14px;
                  background-position: -5197px 0px;
                }
                .custom__country-list-item__flag.um {
                  height: 11px;
                  background-position: -5219px 0px;
                }
                .custom__country-list-item__flag.un {
                  height: 14px;
                  background-position: -5241px 0px;
                }
                .custom__country-list-item__flag.us {
                  height: 11px;
                  background-position: -5263px 0px;
                }
                .custom__country-list-item__flag.uy {
                  height: 14px;
                  background-position: -5285px 0px;
                }
                .custom__country-list-item__flag.uz {
                  height: 10px;
                  background-position: -5307px 0px;
                }
                .custom__country-list-item__flag.va {
                  height: 15px;
                  background-position: -5329px 0px;
                }
                .custom__country-list-item__flag.vc {
                  height: 14px;
                  background-position: -5346px 0px;
                }
                .custom__country-list-item__flag.ve {
                  height: 14px;
                  background-position: -5368px 0px;
                }
                .custom__country-list-item__flag.vg {
                  height: 10px;
                  background-position: -5390px 0px;
                }
                .custom__country-list-item__flag.vi {
                  height: 14px;
                  background-position: -5412px 0px;
                }
                .custom__country-list-item__flag.vn {
                  height: 14px;
                  background-position: -5434px 0px;
                }
                .custom__country-list-item__flag.vu {
                  height: 12px;
                  background-position: -5456px 0px;
                }
                .custom__country-list-item__flag.wf {
                  height: 14px;
                  background-position: -5478px 0px;
                }
                .custom__country-list-item__flag.ws {
                  height: 10px;
                  background-position: -5500px 0px;
                }
                .custom__country-list-item__flag.xk {
                  height: 15px;
                  background-position: -5522px 0px;
                }
                .custom__country-list-item__flag.ye {
                  height: 14px;
                  background-position: -5544px 0px;
                }
                .custom__country-list-item__flag.yt {
                  height: 14px;
                  background-position: -5566px 0px;
                }
                .custom__country-list-item__flag.za {
                  height: 14px;
                  background-position: -5588px 0px;
                }
                .custom__country-list-item__flag.zm {
                  height: 14px;
                  background-position: -5610px 0px;
                }
                .custom__country-list-item__flag.zw {
                  height: 10px;
                  background-position: -5632px 0px;
                }

                .custom__country-list-item__flag {
                  height: 15px;
                  box-shadow: 0px 0px 1px 0px #888;
                  background-repeat: no-repeat;
                  background-color: #dbdbdb;
                  background-position: 20px 0;
                  width: 20px;
                }