.country-selection_modal {
    display: none;
    position: fixed;
    z-index: 11;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;

    background-color: rgba(0, 0, 0, 0.4);
    /* padding-top: 60px; */
}

.country-selection_modal-content {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* margin: 15% auto; */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
}

.country-selection_modal-header {
    margin-bottom: 15px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    max-width: 70%;
    text-transform: capitalize;
    width: 100%;
    margin: auto;
    color: #3d4043;
    display: flex;
    position: relative;
}

.country-selection_modal-body {
    text-align: center;
}

.country-selection_modal-body p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 16px 0;
    text-transform: capitalize;
    width: 100%;
    color: #3d4043;
}

.country-selection_modal-body .select-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.country-selection_modal-body .select-display {
    width: 96%;
    padding: 10px;
    margin: 10px auto;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    position: relative;
    text-align: left;
    margin-bottom: -1px;
    display: flex;
}

.country-selection_modal-body .select-display::after {
    content: '▼';
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #3d4043;
}

.country-selection_modal-body .select-display input {
    border: none;
    outline: none;
    width: calc(100% - 20px);
    padding: 0;
    font-size: 16px;
}

.country-selection_modal-body .country-countryInput-sc-select {
    display: none;
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    width: 96%;
    background-color: white;
    margin-left: 9px;
    z-index: 1;
}

.country-selection_modal-body .country-countryInput-sc-select li {
    padding: 10px;
    font-size: 16px;
    /* border-bottom: 1px solid #ddd; */
    cursor: pointer;
    text-align: left;
    color: #3d4043;
}

.country-selection_modal-body .country-countryInput-sc-select li:hover {
    /* background-color: #f1f1f1; */
        background-color: #dff3fe;
            color: #1793e5;
}
.country-selection_modal-body .country-countryInput-sc-select li:hover a{
        color: #1793e5;
}

.country-selection_modal-body .country-countryInput-sc-select .no-matches {
    text-align: center;
    color: #999;
    cursor: default;
}

.country-selection_modal-footer {
    text-align: center;
}

.country-selection_modal-footer button {
    font-size: 16px;
    color: #fff;
    width: 136px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border: none;
    border-radius: 100px;
    box-shadow: rgba(31, 163, 239, 0.4) 0px 2px 0px, rgba(12, 146, 223, 0.3) 0px 5px 10px 2px;
    background-color: rgb(23, 147, 229);
    height: 40px;
    padding: 0px 16px;
    margin: 25px auto;
    margin-bottom: 10px;
    white-space: nowrap;
    outline: none;
    transition: all 200ms ease-out 0s;
    user-select: none;
    touch-action: manipulation;
    cursor: pointer;
    position: relative;
}

.country-selection_modal-footer button:hover {
    background-color: #0056b3;
}

.select-text {
    min-height: 16px;
    line-height: 16px;
    position: relative;
    transition: all 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
    transform-origin: left top;
    color: rgb(22, 26, 29);
    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: left;
    margin: 0;
    margin-left: 10px;
    margin-top: 10px;
}

.country-selection_modal-body .select-all .select-a {
    color: #000000;
}

.country-close {
    color: #999;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: -50px;
    z-index: 998;
}

.country-close:hover,
.country-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width:480px) {
    .country-selection_modal-content {
        background-color: #fff;
        padding: 20px;
        border: 1px solid #888;
        width: 95%;
        max-width: 500px;
        border-radius: 10px;
    }
}