@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;700&display=swap");
:root {
    --primary: #111 !important;
}

.select-box {
    position: relative !important;
    width: 100% !important;
}

.select-box input {
    width: 100% !important;
    padding: 1rem 0.6rem !important;
    font-size: 1.1rem !important;
    border: 0.1rem solid transparent !important;
    outline: none !important;
}

input[type="tel"] {
    border-radius: 0.625em !important;
    border: 1px solid #e2e2e2 !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    color: black !important;
}

.select-box input:focus {
    border: 0.1rem solid var(--primary) !important;
}

.selected-option {
    border-radius: 0.5rem !important;
    overflow: hidden !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 1em !important;
}

.selected-option div {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    gap: 2px !important;
    align-items: center !important;
    border: 1px solid #e2e2e2 !important;
    border-radius: 0.625em !important;
    width: 6rem !important;
    padding: 0.625em 2.2em 0.625em 0.5em !important;
    text-align: center !important;
    cursor: pointer !important;
}

.selected-option div::after {
    position: absolute !important;
    content: "" !important;
    right: 0.8rem !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(45deg) !important;
    width: 0.8rem !important;
    height: 0.8rem !important;
    border-right: 0.12rem solid var(--primary) !important;
    border-bottom: 0.12rem solid var(--primary) !important;
    transition: 0.2s !important;
}

.selected-option div.active::after {
    transform: translateY(-50%) rotate(225deg) !important;
}

.select-box .options {
    position: absolute !important;
    z-index: 2 !important;
    top: 4rem !important;
    width: 100% !important;
    background-color: #fff !important;
    border-radius: 0.5rem !important;
    display: none !important;
}

.select-box .options.active {
    display: block !important;
    width: 100% !important;
}

.select-box .options::before {
    position: absolute !important;
    content: "" !important;
    left: 1rem !important;
    top: -1.2rem !important;
    width: 0 !important;
    height: 0 !important;
    border: 0.6rem solid transparent !important;
    border-bottom-color: var(--primary) !important;
}

input.search-box {
    background-color: var(--primary) !important;
    color: #fff !important;
    border-radius: 0.5rem 0.5rem 0 0 !important;
    padding: 1.4rem 1rem !important;
}

.select-box ol {
    list-style: none !important;
    max-height: 23rem !important;
    overflow: overlay !important;
}

.select-box ol::-webkit-scrollbar {
    width: 0.6rem !important;
}

.select-box ol::-webkit-scrollbar-thumb {
    width: 0.4rem !important;
    height: 3rem !important;
    background-color: #ccc !important;
    border-radius: 0.4rem !important;
}

.select-box ol li {
    padding: 1rem !important;
    display: flex !important;
    justify-content: space-between !important;
    cursor: pointer !important;
}

.select-box ol li.hide {
    display: none !important;
}

.select-box ol li:not(:last-child) {
    border-bottom: 0.1rem solid #eee !important;
}

.select-box ol li:hover {
    background-color: lightcyan !important;
}

.select-box ol li span.country-name {
    margin-left: 0.4rem !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
}

.strong {
    font-family: "Inter", sans-serif !important;
    font-weight: 700 !important;
}