#country_redirector.top_floating {
    position: absolute;
    top: 0px;
    z-index: 1000000;
}

#country_redirector {
    position: relative;
    width: 100%;
    height: 60px;
    background-color: #313131;
    color: white;
    padding: 0px 100px;
    font-size: 15px;
    display: flex;
    flex-flow: row wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    top: -60px;
    transition: top 0.5s ease;
    opacity: 1;
}

#country_redirector.hide {
    opacity: 0;
    pointer-events: none;
    top: -60px;
    transition: top 0.5s ease;
}

#country_redirector span {
    margin-right: 15px;
    text-align: center;
}

#country_redirector .country_select {
    width: 200px;
    height: 25px;
    background-color: #575757;
    color: white;
    font-size: 12px;
}

#country_redirector button {
    margin: 5px 15px;
    cursor: pointer;
    padding: 0 16px;
    font-weight: 600;
    display: block;
    line-height: 25px;
    font-size: 13px;
    color: #eee;
    border: none !important;
    text-decoration: none;
    background: #0085ba;
    border-color: #0073aa #006799 #006799;
    box-shadow: 0 1px 0 #006799;
    text-decoration: none;
    text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
    border-radius: 3px;
    box-sizing: border-box;
}

#country_redirector a {
    color: #6F6F6F;
}

#country_redirector .country_select {
    border-color: #0073aa #006799 #006799;
    text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
    border-radius: 3px;
    box-sizing: border-box;
    border: solid 1px #6F6F6F;
    margin-top: 8px;
}

#country_redirector .country_select span {
    position: absolute;
    padding-left: 40px;
    background-repeat: no-repeat;
    background-position: 15px 5px;
    height: 100%;
    line-height: 24px;
    background-size: 14px;
}

#country_redirector .country_select a {
    float: right;
}

#country_redirector>a {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -12px;    
}
#country_redirector>a img{
    width: 20px; 
}

 

#country_redirector .country_select a:after {
    background-repeat: no-repeat;
    background-size: 15px 15px;
    display: inline-block;
    width: 20px;
    height: 19px;
    content: "";
    background-color: #6F6F6F;
    -webkit-mask: url('../images/down.svg') no-repeat -0px 4px;
    mask: url('../images/down.svg') no-repeat -0px 4px;
}

#country_redirector .drop-down {
    position: relative;
    display: inline-block;
    width: auto;
    margin-top: 0;
}

#country_redirector .drop-down select {
    display: none;
}

#country_redirector .drop-down .select-list {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000000;
    margin-top: 40px;
    padding: 0;
    background-color: #595959;
    list-style-type: none;
}

#country_redirector .drop-down .select-list li {
    display: none;
    cursor: pointer;
    padding: 5px 0;
}

#country_redirector .drop-down .select-list li span {
    display: inline-block;
    min-width: 280px;
    width: 100%;
    padding: 5px 15px 5px 35px;
    background-color: #595959;
    background-position: left 8px center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    font-size: 16px;
    text-align: left;
    color: #FFF;
    opacity: 0.7;
    box-sizing: border-box;
}

#country_redirector .drop-down .select-list li span:hover,
#country_redirector .drop-down .select-list li span:focus {
    opacity: 1;
    background-color: #313131;
}

@media (max-width: 980px) {
    #country_redirector {
        height: auto !important;
        padding: 1em 30px;
        top: -90px;
    }
    #country_redirector.hide {
        top: -90px;
    }
    #country_redirector>span {
        font-size: 13px!important;
        padding: 10px;
        line-height: 1.2em;
        margin-right: 0 !important;
        width: 100%;
    }
    #country_redirector>a{
        top: 2em;
        right: 1em;
    }
}