
.imap-wrap {
    display: grid;
    grid-template-columns: 4fr 3fr;
    gap: 30px 30px;
}

.imap-country-select {
    display: none;
    position: relative;
    max-width: 460px;
}

.imap-country-select .imap-country-val {
    position: relative;
    z-index: 2;
    cursor: pointer;
    background-color: #FFDD00;
    color: #003A78;
    font-size: 16px;
    font-weight: 800;
    padding: 10px 40px 10px 25px;
    margin-bottom: 40px;
    border-radius: 100px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: "Nunito Sans", sans-serif !important; font-weight:300; font-weight:700
}

.imap-country-select .imap-country-val::after {
    content: '\f107';
    font-family: ticons;
    position: absolute;
    right: 12px;
    top: 15px;
    font-size: 29px;
    line-height: 16px;
}

.imap-country-select.imap-active .imap-country-val::after {
    content: '\f106';
}

.imap-country-select ul {
    border-radius: 0 0 10px 10px;
    display: none;
    height: 270px;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    z-index: 5;
    list-style: none !important;
    margin: 0 !important;
    padding: 0;
    background: #003A78;
    left: 20px;
    right: 20px;

}
#content .imap-country-select ul {
    margin-left: 0!important;
}

.imap-country-select.imap-active ul {
    display: block;
}

.imap-country-select ul li {
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.imap-country-select ul li a {
    color: #fff;
    display: block;
    padding: 9px 10px;
    border-bottom: 1px solid #5C79BB;
    text-decoration: none;
    font-weight:400 !important;
    font-size:16px !important
}

.imap-country-select a:hover{color:#FFDD00 !important}

#content .imap-country-select ul li::before {
    display: none;
}

.imap-svg svg {
    width: 100%;
    height: auto;
}

.imap-svg-country {
    cursor: pointer;
}
.imap-svg-country .imap-svg-normal {
    transition: opacity .25s;
    opacity: 1;
}
.imap-svg-country .imap-svg-active,
.imap-svg-country .imap-svg-hover {
    opacity: 0;
    transition: opacity .25s;
}
.imap-svg-country .imap-svg-hover {
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .4));
}
.imap-svg-country.imap-active .imap-svg-normal,
.imap-svg-country:hover .imap-svg-normal {
    opacity: 0;
}
.imap-svg-country.imap-active .imap-svg-active,
.imap-svg-country:hover .imap-svg-hover {
    opacity: 1;
}

.imap-content-wrap {

}

.imap-country-content {
    display: none;
}

.imap-country-content.imap-active {
    display: block;
}

.imap-country-content ul {
    list-style: none;
    padding: 0;
}
#content .imap-country-content ul P{
    margin-left: 0!important;
}

.imap-country-content ul.im-two-col {
    columns: 2;
    gap: 20px;
}

.imap-country-content ul li {
    position: relative;
    padding-left: 15px;
    margin: 0 0 5px;
}

#content .imap-country-content li::before {
    content:none
}


#content .imap-country-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 1em;
    height: 1em;
    background-image: url('../images/check_circle_icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

.imap-country-cta-wrap {
    padding-top:20px
}

.imap-country-cta-wrap a {
    display: inline-block;
    padding: 10px 50px 10px 25px;
    background-color: #F5B408;
    border-radius: 50px;
    text-decoration: none;
    color: #3f3f3f;
    position: relative;
    transition: background-color .25s, color .25s;
    font-weight:700
}

.imap-country-cta-wrap a .imap-cta-icon {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    width: 24px;
    height: 24px;
    transition: transform .2s;
}

.svg-arrow-g {

}

.imap-country-cta-wrap a:hover {
    color: #F5B408;
    background-color: #3f3f3f;
    text-decoration:none;
}

.imap-country-cta-wrap a:hover .imap-cta-icon {
    transform: translate(-4px, -50%);
}

.imap-country-cta-wrap a:hover .imap-cta-icon .svg-arrow-g {
    stroke: #fff;
}

@media only screen and (max-width: 768px) {
    .imap-wrap {
        display: block;
    }

    .imap-svg-wrap {
        margin-bottom: 25px;
    }

    .imap-country-select {
        display: block;
    }

    .imap-svg {
        display: none;
    }
}