/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.country-selector-popup-on {
    width: 100%;
	height: 100%;
	position: relative;
}

.ocg-country-selector--container {
    position: absolute;
    z-index: 999;
    top: -85px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
}

@media screen and (min-width: 768px) {
    .ocg-country-selector--container{
        top: -105px;
    }
}

.ocg-country-selector--body {
    max-width: 90%;
    margin: 2em auto;
    width: 400px;
    background: white;
    padding: 2em;
    position: relative;
}

@media screen and (min-width: 768px) {
    .ocg-country-selector--body{
        margin-top: 10%;
    }
}

.ocg-country-selector--title {
    display: none;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 230px;
	max-width: 100%;
    height: 40px;
    margin: 0 auto 1em;
    background: url('../img/logo.svg') no-repeat;
	background-size: contain;
}


/* @media screen and (min-width: 768px) { */
    .ocg-country-selector--title{
        display: block;
    }
/* } */

.ocg-country-selector--link {
    width: 100%;
    position: relative;
}

.ocg-country-selector--link:hover {
    color: white;
}

.ocg-country-selector--link:after {
    content: '';
    display: block;
    position: absolute;
    right: 13px;
    top: 11px;
    z-index: 999;
    background: url('../img/right208.svg');
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: right 0.4s ease-out;
}

.ocg-country-selector--link:hover:after {
    right: -5px;
    transition: right 0.2s ease-out;
}

.ocg-country-selector--link-description {
    margin-top: 0;
	font-size: 16px;
}

.ocg-country-selector--link-description:last-child {
    margin-bottom: 0;
}

.ocg-country-selector--close a {
    position: absolute;
    top: -8px;
    right: -8px;
    display: block;
    width: 30px;
    height: 30px;
    background: #009ade;
    border-radius: 50%;
    text-indent: -99999px;
    overflow: hidden;
}

.ocg-country-selector--close a:after {
    color: white;
    content: "X";
    font-weight: bold;
    display: block;
    font-size: 20px;
    line-height: 30px;
    height: 30px;
    left: 1px;
    margin: auto;
    position: absolute;
    text-align: center;
    text-indent: initial;
    top: 2px;
    width: 30px;
    z-index: 99;
}
