/*Cookie*/
.cookie-container {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    height: auto;
    padding-top: 14px;
    background-color: #6749ba;
}

.cookie-text {
    font-size: 15px;
    line-height: 20px;
    color: #fff;
}

.cookie-wrapper {
    position: relative;
    display: block;
    width: 994px;
    margin-right: auto;
    margin-left: auto;
    padding: 7px 250px 10px 40px;
}

.cookie-wrapper p {
    font-size: 15px;
    line-height: 20px;
    color: #fff;
}

.cookie-wrapper a {
    font-size: 15px;
    line-height: 20px;
    color: #fff;
    text-decoration: underline;
}

.cookie-button {
    position: absolute;
    top: 13px;
    right: 0;
    font-size: 18px;
    font-weight: 700;
    height: 42px;
    padding-top: 11px;
    padding-right: 40px;
    padding-left: 40px;
    background-color: #FFF;
    margin-right: 40px;
    border-radius: 6px;
    color: #6749ba!important;
    text-decoration: none!important;
}

.cookie-button:hover {
    background-color: #ccc;
    text-decoration: none;
}

.white-link {
    color: #fff;
    text-decoration: underline;
}

.white-link:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .cookie-wrapper {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cookie-wrapper {
        width: 480px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .cookie-button {
        position: relative;
        margin-bottom: 20px;
    }
}

@media (max-width: 479px) {
    
    .cookie-wrapper {
        width: 100%;
    }

    .cookie-button {
        width: 100%;
        text-align: center;
    }

    .cookie-text {
        text-align: center;
    }
}