.hasError
 {
    border: 1px solid red !important;
}


.accept-cookie {
    position:fixed;
    bottom:0;
    left:50%;
    transform:translateX(-50%) translateY(20px);
    background-color:#fff;
    box-shadow:0 14px 24px rgba(15,18,20,.1);
    padding:30px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    max-width:1430px;
    opacity:0;
    pointer-events:none;
    z-index:200;
    transition:transform .3s ease,opacity .3s ease
}
.accept-cookie.is-active {
    opacity:1;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0)
}
.accept-cookie__content {
    max-width:1000px
}
.accept-cookie__btn {
    width:160px;
    flex-shrink:0
}

.accept-cookie a {
    color: #187cd3;
}

.accept-cookie a:hover {
    color: #ff7025;
}

.accept-cookie .btn {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-color: #e9862a;
    color: #fff;
    font-weight: 700;
    border: 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: background-color .3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.accept-cookie .btn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #dc6d08;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transition: transform .3s ease;
    transform-origin: left top;
}

.accept-cookie .btn:hover:before {
    transform: scaleX(1);
}

.accept-cookie .btn span {
    position: relative;
    z-index: 2;
}

@media screen and (max-width:1199px) {
    .accept-cookie {
        padding:20px 40px
    }
    .accept-cookie {
        font-size:14px
    }
}
@media screen and (max-width:767px) {
    .accept-cookie {
        flex-wrap:wrap;
        align-items:center;
        justify-content:center;
        text-align:center;
        font-size:12px;
        padding:20px
    }
    .accept-cookie__content {
        margin-bottom:12px
    }
}