/*
Общие стили для всех сайтов и всех версий (десктопной, мобильной).
*/

/* Баннер с информацией о том, что сайт не обновляется ------------ */
.no-site-update-banner.ws-banner {
    z-index: 999999;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgb(51, 51, 51);
    width: 100%;
    border-bottom: 1px solid #EEEEEE;
    padding: 10px;
    box-sizing: border-box;
    /*-webkit-transform: translateY(-150%);
    transform: translateY(-150%);*/

    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-animation: ws-banner-slide-in 0.8s ease forwards;
    animation: ws-banner-slide-in 0.8s ease forwards;
}
.no-site-update-banner .ws-banner__content {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding: 10px 40px;
    box-sizing: border-box;
}
.no-site-update-banner .ws-banner__title {
    font-size: 18px;

}
.no-site-update-banner .ws-banner__text {
    margin: 0 40px 0 0;
    line-height: 1.45em;
    color: #d5d5d5;

}

.no-site-update-banner .ws-banner__subtext {
    margin: 0 40px 0 0;
    line-height: 1.35em;
    color: #d5d5d5 !important;
}

.no-site-update-banner .ws-banner__button {
    display: inline-block;
    background: #ff3334;
    height: 40px;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 40px;
    text-decoration: none;
    white-space: nowrap;
}


.no-site-update-banner .ws-banner__button:hover {
    display: inline-block;
    background: #f15354;
    height: 40px;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 40px;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width: 600px) {
    .no-site-update-banner .ws-banner__content {
        align-items: flex-start;
        flex-direction: column;
    }

    .no-site-update-banner .ws-banner__button {
        margin: 10px 0 0 0;
    }
}


/*@-webkit-keyframes ws-banner-slide-in {
    0% {
        -webkit-transform: translateY(-150%);
        transform: translateY(-150%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes ws-banner-slide-in {
    0% {
        -webkit-transform: translateY(-150%);
        transform: translateY(-150%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}*/
/* ----------------------------------------------------------------------------- */

/* Баннер по сбору cookies ------------ */
.cookie-banner {
    z-index: 999999;
	background: #333;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;    
    width: 100%;
    border-bottom: 1px solid #EEEEEE;
    padding: 10px;
    box-sizing: border-box;
	/*display: none;*/
    
}
.cookie-banner .cookie-container {
    
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding: 10px 40px;
    box-sizing: border-box;
	color: #f0f0f0;
}
.cookie-banner .cookie-title {
    font-size: 18px;

}
.cookie-banner .cookie-text {
    margin: 0 40px 0 0;
    line-height: 1.45em;
    color: #d5d5d5;
	font-size: 12px;

}

.cookie-banner .cookie-subtext {
    margin: 0 40px 0 0;
    line-height: 1.35em;
    color: #d5d5d5 !important;
}

.cookie-banner .cookie-button {
    display: inline-block;
    background: #ccc;/*#ff3334;*/
    height: 35px;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 30px;
    color: #333 !important; /*#fff;*/
    font-size: 12px;
    font-weight: 700;
    line-height: 35px;
    text-decoration: none;
    white-space: nowrap;
}


.cookie-banner .cookie-button:hover {
    display: inline-block;
    background: #f15354;
    height: 35px;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 30px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 35px;
    text-decoration: none;
    white-space: nowrap;
}
.cookie-banner .cookie-reject {
	color: slategrey;
	font-size: 12px;
}

a {
	color: slategrey;
	font-size: 12px;
}
/* ----------------------------------------------------------------------------- */