<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
    Styles for country switcher modal
*/

.country-switcher .content-wrapper {
    margin: 30px auto;
    text-align: center;
}

.country-switcher .content-wrapper .header {
    margin: 0;
    font-size: 22px;
}

.country-switcher .stores {
    margin-top: 30px;
}

.country-switcher .store {
    width: 100%;
    padding: 25px 12px;
    margin: 0 0 20px 0;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    color: #333;
    cursor: pointer;
}

.country-switcher .store:hover {
    text-decoration: none;
}

.country-switcher .store figure {
    margin: 0;
}

.country-switcher .caption {
    margin: 20px 0 0;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.2;
    white-space: normal;
}

.country-switcher .suggeted-store-arrow {
    position: relative;
    top: 0;
    left: 140px;
    width: 30px;
    height: 30px;
    background: url('../img/arrow.svg');
    background-size: cover;
}

.country-switcher .smile-wink {
    display: inline-block;
    margin: 0 0 0 5px;
    background: url('../img/wink.svg');
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.country-switcher svg,
.country-switcher object {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 5px;
}

.country &gt; span {
    font-size: 3.5rem;
    vertical-align: middle;
}

@media (max-width: 576px) {
    .country-switcher .suggeted-store-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .country-switcher.bs3 .modal-dialog {
        top: 50px;
    }

    .country-switcher.bs3 .suggeted-store-arrow {
        display: none;
    }

    .country-switcher .suggeted-store-arrow {
        left: 110px;
    }
}

@media (min-width: 768px) {
    .country-switcher .modal-dialog {
        max-width: 600px;
    }
}</pre></body></html>