.geo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.geo-banner #trustpilot-widget-trustbox-0-wrapper {
    display: none;
}

.geo-banner__content {
    max-width: 900px;
    margin: 0 auto;
}

.geo-banner p {
    max-width: 308px;
    font-size: 14px;
    line-height: 20px;
    color: white;
}

.geo-banner .btn-default {
    border-color: white;
    color: white;
}

.geo-banner__select-container {
    width: 200px;
}

.country-container {
    cursor: pointer;
}

.country-container:hover .country__list {
    display: block;
}

.country__item--hidden {
    display: none;
}

.country__current-ip {
    border: 1px solid white;
    color: white;
    display: block;
    margin-bottom: 0;
    font-size: 16px;
    z-index: 1;
}

.country__list {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    margin-bottom: -2px;
    border-left:1px solid white;
    border-right:1px solid white;
    display: none;
    z-index: 0;
}

.country__item {
    font-size: 16px;
    color: white;
    cursor: pointer;
    border-top: 1px solid white;
    transition: 0.2s color ease-out, 0.2s background ease-out;
}

.country__item:not(.country__item--hidden) {
    display: flex;
    align-items: center;
}

.country__item .sm-icon {
    margin-right: 10px;
    width: 20px;
    height:20px;
}

.country__item:hover {
    background: white;
    color: #111111;
}

#current_country::before {
    content:'';
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
}

#current_country[data-country="FR"]::before {
    background: url('/modules/smgeobanner/views/svg/flag-FR.svg') no-repeat top left;
}

#current_country[data-country="BE"]::before {
    background: url('/modules/smgeobanner/views/svg/flag-BE.svg') no-repeat top left;
}

#current_country[data-country="LU"]::before {
    background: url('/modules/smgeobanner/views/svg/flag-LU.svg') no-repeat top left;
}

#current_country[data-country="CH"]::before {
    background: url('/modules/smgeobanner/views/svg/flag-CH.svg') no-repeat top left;
}

#current_country::after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 10px;
    background: url('/modules/smgeobanner/views/svg/arrow-down.svg') no-repeat top left;
}