.menu-list {
    position: absolute;
    top: 67px;
}

.menu-list.currency {
    right: 1px;
}

.menu-list.language {
    right: 45px;
}

.no-currency-selector .menu-list.language {
    right: 0;
}

.menu-list-selected {
    background: transparent;
    padding: 5px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    line-height: 16px;
    color: #4F849D;
    border: 1px solid #ccc;
    font-weight: bold;
    -webkit-transition: all .3s ease-in-out;
    transition: all .2s ease-in-out;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    height: 28px;
    display: inline-block;
    white-space: nowrap;
}

.menu-list-selected.currency {
    width: 38px;
    text-align: center;
}

.www .menu-list-selected .country-flag {
    width: auto;
    height: 16px;
    vertical-align: top;
}

.www .menu-list.language h2 {
    font-size: 1em;
    margin: 0;
}

.menu-list-selected:hover {
    background: #4F849D;
    color: white;
    border-color: #4F849D;
}

.menu-list-options {
    display: none;
    position: absolute;
    right: 0;
    top: 27px;
    z-index: 98;
    width: 400px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    color: #333;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.menu-list-options li {
    padding: 10px;
    border-bottom: solid 1px #ccc;
    cursor: pointer;
    white-space: nowrap;
    text-align: left;
    float: left;
    width: 50%;
    height: 40px;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.menu-list-options li:nth-child(odd) {
    border-right: solid 1px #ccc;
}

.menu-list-options li a {
    color: #333;
    text-decoration: none;
}

.menu-list-options li:hover,
.menu-list-options li:hover a {
    background: #4F849D;
    color: white;
    text-decoration: none;
}

.menu-option-selected a {
    opacity: 0.5;
}

.menu-option-selected {
    color: #bababa;
}

.menu-list-options li.menu-option-selected {
    cursor: default;
    pointer-events: none;
}

.menu-list-options li.menu-option-selected:hover,
.menu-list-options li.menu-option-selected:hover a {
    background: white;
    color: #333;
    text-decoration: none;
}

.menu-list-options .country-flag {
    margin-right: 3px;
}

.country-flag {
    /* width and height declared here for IE9-10 correct sizing of svg in image tag */
    width: 28px;
    max-width: 28px;
    height: auto;
    max-height: 28px;
}

@media (max-width: 430px) {
    .menu-list-options:not(.favourites) {
        width: auto;
    }
}

@media (max-width: 800px) {
    .menu-list-options:not(.favourites) li {
        width: 100%;
        float: none;
    }

    .menu-list-options:not(.favourites) li:nth-child(odd) {
        border-right: none;
    }
}