#cookiesModule {
    display: none;
    position: fixed;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    min-width: fit-content;
    height: fit-content;
    max-width: 40%;
    margin: auto;

    z-index: 100000;
}

#cookiesModule.active {
    display: block;
}

#cookiesModule > .module-body {
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0,0,0,24%);
    padding: 25px;
    text-align: center;
}
#cookiesModule .header,
#cookieModal .header {
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 1px;
    text-align: center;
}
#cookiesModule .content,
#cookieModal .content {
    font-size: 16px;
    line-height: 20px;
    font-weight: 100;
}

#cookiesModule .content button {
    line-height: 40px;
    padding: 0 15px;
    width: 170px;
    border-radius: 0;
    border: none;
    background-color: #fff;
    font-size: 14px;
}
#cookiesModule .content button#manageCookies {
    background: transparent;
    padding: 0 5px;
    width: fit-content;
}
#cookiesModule .content button.dark {
    background-color: #000;
    color: #fff;
}
#cookieModal {
    position: fixed;
    display: block;
    transform: translateY(120vh);
    width: 100vw;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200000;
    margin: auto auto;
    height: 0;
    transition: transform 0.4s;
}
#cookieModal.active {
    height: 100vh;
    transform: translateX(0);
    box-shadow: 0 0 25px rgba(0,0,0,50%);
}
#cookieModal:before {
    content: "";
    position: fixed;
    display: block;
    width: 0;
    height: 0;
    z-index: -1;
    background-color: rgba(0,0,0,50%);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transition: 0.5s;
    opacity: 0;
}
#cookieModal.active:before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

#cookieModal .module-body {
    width: 668px;
    height: fit-content;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto auto;
    background-color: #fff;
    overflow: auto;
}

#cookieModal input[type="checkbox"] + label  {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    top: 3px;
    cursor: pointer;
}
#cookieModal input[type="checkbox"]:disabled + label {
    color: #aaa;
    border-color: #aaa;
}
#cookieModal .check {
    max-width: 30px !important;
}
#cookieModal .check > input:checked + label:before {
    content: '\2713';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    font-size: 14px;
    line-height: 15px;
    text-align: center;
}
#cookieModal .header .close {
    position: absolute;
    right: 10px;
    font-size: 14px;
    z-index: 10;
}
#cookieModal .module-body {
    padding: 15px;
    background-color: #fff;
}

#cookieModal .cookie-select {
    padding: 15px;

}
#cookieModal .cookie-select > p {
    text-align: center;
    font-weight: 100;
}
#cookieModal .cookie-select > div > label {
    padding: 10px 0;
}

#cookieModal .cookie-box .header {
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    cursor: pointer;
    text-align: left!important;
}
#cookieModal .cookie-box {
    padding-bottom: 15px;
}
#cookieModal .cookie-box .desc {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 100;
    line-height: 20px;
}
#cookieModal .cookie-footer {
    text-align: center;
    padding: 10px 0 0 0;
}
#cookieModal .cookie-footer small {
    font-size: 12px;

}
#cookieModal .cookie-footer button {
    position: relative;
    display: inline-block;
    margin: 10px auto 0 auto;
    padding: 0 10px;
    text-align: center;
    background-color: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 100;
    height: 40px;
    line-height: 40px;
    border-radius: 0;
}
.cap {
    text-transform: capitalize !important;

}
@media only screen and (max-width: 1076px)
{
    #cookiesModule {
        width: 100%;
        max-width: unset;
        padding: 10px;
    }

    #cookieModal .module-body {
        width: 100%;
    }
}