.country-menu .selected-country{
    display: flex;
    align-items: center;
    gap: 10px;
}
.country-menu .choose-country{
    cursor: pointer;
}
.country-menu .sidebar-country-menu{
    position: fixed;
    top: 0;
    bottom: 0;
    right: -415px;
    width: 100%;
    max-width: 415px;
    background: #ffffff;
    z-index: 9999;
    transition: all .4s ease-in-out;

}
.country-menu.active .sidebar-country-menu{
    right: 0;
}
.country-menu .sidebar-country-menu .item{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}
.country-menu.active .overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    opacity: .5;
    transition: .3s ease-in-out;
    z-index: 9998;
}
.country-menu .sidebar-country-menu .heading-wrapper{
    padding: 15px;
    font-size: 26px;
    line-height: 40px;
    font-weight: 600;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 0;
    text-align: left;
}
.country-menu .sidebar-country-menu .sidebar-body{
    padding: 15px;
}
.country-menu .sidebar-country-menu .description{
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 22px;
}
.country-menu .sidebar-country-menu .description span{
    font-weight: 500;
}
.country-menu .close{
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    color: #000;
    opacity: 1;
    font-weight: 400;
}
.country-menu .close:before{
    content: '\00d7';
}