body {
    margin: 0;
    padding: 0;
}

.cookie-accept {
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #222222;
    padding: 0 0 30px 0;
    font-family: Arial,Helvetica,sans-serif;
    display: none;
	z-index: 100;
}

.cookie-accept2 {
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #222222;
    padding: 0 0 30px 0;
    font-family: Arial,Helvetica,sans-serif;
}

.cookie-accept--open {
    display: block;
}

.cookie-accept__sale {
    box-sizing: border-box;
    font-family: Arial,Helvetica,sans-serif;
    background-color: #f07c29;
    padding: 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.cookie-accept__sale-inner {
    box-sizing: border-box;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cookie-accept__sale-title {
    font-size: 18px;
    color: #fff;
    margin: 0;
    text-align: center;
    margin-bottom: 10px;
}

.cookie-accept__sale-more {
    display: block;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #fff;
    padding: 5px;
    background: transparent;
    text-decoration: none;
    text-align: center;
    width: 150px;
}

.cookie-accept__inner {
    box-sizing: border-box;
    max-width: 1140px;
    margin: 0 auto;
    padding: 30px 15px 0 15px;
}

@media (min-width: 768px) {
    .cookie-accept__inner {
        display: flex;
    }
}

.cookie-accept__text {
    font-size: 12px;
    letter-spacing: .3px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .cookie-accept__text {
        padding-right: 45px;
        margin-bottom: 0;
    }  
}

.cookie-accept__text a {
    color: #f07c29;
    text-decoration: none;
}

.cookie-accept__text a:hover,
.cookie-accept__text a:focus {
    text-decoration: underline;
}

.cookie-accept__controls {

}

@media (min-width: 992px) {
    .cookie-accept__controls  {
        display: flex;
        align-items: center;
    }
}

.cookie-accept__accept {
    min-width: 110px;
    background: #f07c29;
    font-size: 12px;
    border-radius: 3px;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: opacity .3s ease-in-out;
}

@media (min-width: 768px) {
    .cookie-accept__accept {
        margin-bottom: 15px;
    }
}


@media (min-width: 992px) {
    .cookie-accept__accept {
        margin-bottom: 0;
        margin-right: 15px;
    }
}

.cookie-accept__canel {
    min-width: 110px;
    background: #55565f;
    font-size: 12px;
    border-radius: 3px;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: opacity .3s ease-in-out;
}

.cookie-accept__accept:hover,
.cookie-accept__accept:focus,
.cookie-accept__canel:hover,
.cookie-accept__canel:focus {
    opacity: 0.74;
}