@media (min-width: 1400px) {
    .container {
        max-width: calc(1400px - 145px);
    }
}

/** phone number **/
.iti__country.iti__highlight {
    background-color: rgba(226, 241, 250, 0.6);
    color: var(--grey20);
}

.iti {
    width: 100%;
}

.iti__country-list {
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2), -2px -2px 5px 0 rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 5px;
    max-height: 255px;
    overflow-x: hidden;
}

.iti__country-name {
    color: var(--grey20);
    word-break: break-word;
}

.iti__dial-code {
    color: var(--grey55);
}

.iti__selected-flag {
    outline: none;
    border-right: 1px solid var(--grey70);
}

.iti__arrow {
    width: 23px;
    height: 10px;
    background: url("/static/images/chevron-arrow-night.svg") no-repeat -3px -18px;
    background-size: 100%;
    border: none;
    margin-left: 25px;
}

.iti__arrow.disabled {
    background: url("/static/images/chevron-arrow-disabled.svg") no-repeat -3px -18px;
    background-size: 100%;
}

.iti__arrow--up {
    background: url("/static/images/chevron-arrow-night.svg") no-repeat -3px -7px;
    background-size: 100%;
}

.iti--allow-dropdown input {
    padding-left: 97px;
}

.iti--allow-dropdown input[type=tel] {
    padding-left: 97px;
}

.iti--allow-dropdown .iti__flag-container {
    z-index: 99;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
}

.iti__country-list {
    overflow-y: auto;
    scrollbar-color: var(--primary) transparent;
    scrollbar-width: thin;
}

.iti__country-list::-webkit-scrollbar {
    width: 2px;
}

.iti__country-list::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--dayLight);
    border-radius: 2px;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

@media (max-width: 767px) {
    .iti__country-list {
        max-width: 310px;
        min-width: 310px;
        height: 75%;
    }
}
