/* Cookie popup css  */

.cookie-popup {
    position: fixed;
    top: 100px;
    left: 50%;
    z-index: 999;
    text-align: center;
    transform: translate(-50%, 0);
    max-width: 550px;
    width: 95%;
    padding: 32px 24px 24px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1), 0 0px 26px rgba(0, 0, 0, 0.13);
}
.cross {
    height: 20px;
    width: 20px;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
.cross .cross1 {
    background-color: #282350;
    width: 100%;
    height: 2px;
    transform: rotate(45deg) translate(6px, 5px);
}
.cross .cross2 {
    background-color: #282350;
    width: 100%;
    height: 2px;
    transform: rotate(-45deg) translate(-4px, 4px);
}
.cookie-img {
    margin-bottom: 24px;
}
.cookie-img img {
    width: 80px;
}
.cookie-content p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #403b64;
    font-weight: 400;
}
.cookie-content p a {
    color: #fd7e14;
    transition: all 0.3s ease-in-out;
}
.cookie-content p a:hover {
    color: #6610f2;
}
.cookie-content h2 {
    font-size: 30px;
    margin-bottom: 24px;
    color: #282350;
    font-weight: 700;
}

.cookie-btn {
    height: 70px;
    width: 230px;
    margin: auto;
    font-weight: 700;
    line-height: 70px;
    border-radius: 40px;
    position: relative;
    background-color: #ff6700;
    overflow: hidden;
}
.cookie-btn button {
    width: 100%;
    display: block;
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    position: relative;
    z-index: 1;
}
.cookie-btn:before {
    left: 0;
    width: 100%;
    content: "";
    z-index: 0;
    height: 100%;
    bottom: -100%;
    position: absolute;
    transition: 0.5s all ease-in-out;
}
.cookie-btn:hover::before {
    background-color: #5409d6;
    bottom: 0;
}

@media all and (max-width: 575px) {
    .cookie-content h2 {
        font-size: 24px;
    }
}
