.destination-overlay {
    max-width: 768px;
    width: 100%;
}

.overlay.destination-overlay header {
    box-sizing: border-box;
    height: 80px;
    padding: 20px;
    color: #B2D7D9;
    font-family: Arial;
    font-size: 16px;
    line-height: 18px;
    background-color: #008286;
}

.overlay.destination-overlay header .close {
    right: 20px;
    top: calc(50% - 12.5px);
}

.overlay.destination-overlay header strong {
    display: block;
    margin-bottom: 5px;
    color: #FFFFFF;
    font-family: Arial;
    font-size: 20px;
    line-height: 18px;
    font-weight: normal;
}

.overlay.destination-overlay header .select-controls {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    height: 60px;
    padding: 0px 20px;
    border-bottom: 1px solid #D4D4D4;
    background-color: #FFFFFF;
}

.overlay.destination-overlay header a {
    vertical-align: middle;
}

.overlay.destination-overlay header .select-button {
    display: inline-block;
    height: 60px;
    padding: 0px 20px;
    border-color: #D4D4D4;
    border-width: 0px 1px 0px 0px;
    border-style: solid;
    color: #AC121C;
    font-family: Arial;
    font-size: 14px;
    line-height: 60px;
    text-transform: uppercase;
    cursor: pointer;
}

.overlay.destination-overlay header .select-button:first-child {
    border-left-width: 1px;
}

.overlay.destination-overlay header .button {
    margin-left: auto;
    align-self: center;
    height: 40px;
    padding: 0px 18px;
    border: 1px solid #961B20;
    border-radius: 3px;
    background: linear-gradient(180deg, #BC2525 0%, #A41515 100%);
    box-shadow: inset 2px 2px 0 0 rgba(255, 255, 255, 0.16);
    color: #FFFFFF;
    font-family: Arial;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
}

.overlay.destination-overlay .overlay-content {
    padding: 160px 20px 20px;
    background: #F5F5F5;
}

.destination-overlay fieldset {
    margin-bottom: 10px;
}

.destination-overlay fieldset legend {
    box-sizing: border-box;
    width: 100%;
    padding: 11px;
    margin-bottom: 10px;    
    border: 1px solid #D4D4D4;
    border-radius: 2px;
    background-color: #FEF3DC;
    color: #E96C11;
    font-family: Arial;
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
}

.destination-overlay fieldset ul {
    box-sizing: border-box;
    color: #535353;
    font-family: Arial;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid #d4d4d4;
    background-color: #FFFFFF;
}

@media(max-width: 499px) {
    .destination-overlay fieldset ul+ul {
        border-top: none;
    }
}

@media(min-width: 500px) {
    .destination-overlay fieldset ul {
        display: inline-block;
        width: calc((100% / 2) - (20px / 2));
        vertical-align: top;
    }
    .destination-overlay fieldset ul+ul {
        margin-left: 10px;
    }
}

@media(min-width: 768px) {
    .destination-overlay fieldset ul {
        width: calc((100% / 3) - (21px / 3));
    }
}

.destination-overlay fieldset .city+.country {
    margin-top: 10px;
}

.destination-overlay fieldset .country+.country,
.destination-overlay fieldset .city+.country {
    border-top: 1px solid #d4d4d4;    
}

.destination-overlay fieldset .country {
    padding: 15px;
}

.destination-overlay fieldset .country label {
    font-weight: bold;
}

.destination-overlay fieldset .city {
    padding: 5px 15px 5px 25px;
}

.destination-overlay fieldset .city:first-child {
    padding-top: 15px;
}

.destination-overlay fieldset .city:last-child {
    padding-bottom: 15px;
}

.destination-overlay fieldset .country + .city {
    margin-top: -10px;
}

.destination-overlay fieldset input[type="checkbox"]+label {
    display: inline-block;
    padding-left: 20px !important;
}

.destination-overlay fieldset input[type="checkbox"]+label:after {
    font-weight: normal;
    top: 2px;
    transform: none;
}

.destination-overlay fieldset .only {
    float: right;
    cursor: pointer;
}

.destination-overlay .fade {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    max-height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font: bold 16px/51px arial;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.57);
    text-align: center;
    pointer-events: none;
    transition: opacity 250ms, max-height 0ms 250ms;
}

.destination-overlay .overlay-content.scrolled .fade {
    max-height: 0px;
    opacity: 0;
}