.cookieSection {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 20px 0;
    z-index: 9999999999999;
}

.cookieSection .cookieSectionInner {
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 1170px;
    padding: 0 20px;
}

.cookieSection .cross {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 10px;
    right: 40px;
    cursor: pointer;
}

.cookieSection .cross::before,
.cookieSection .cross::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
}

.cookieSection .cross::after {
    transform: translateY(-50%) rotate(-45deg);
}

.cookie-text {
    color: #fff;
    margin: 0 0 1em 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding-right: 10px;
}

.cookie-text a {
    color: #337ab7 !important;
    text-decoration: none;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.choose-cookies {
    display: flex;
    flex-direction: column;
}

.choose-cookies a {
    color: #13a0cb !important;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #13a0cb;
    border-radius: 25px;
    padding: 10px 20px;
    margin-bottom: 10px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.choose-cookies a:last-child {
    margin-bottom: 0;
}

.popupwrapper-cookies {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
    z-index: 999999;
}

.popupwrapper-cookies.showpop {
    opacity: 1;
    visibility: visible;
}


.choose-cookies-popup {
    background: #fff;
    padding: 20px;
    max-height: 501px;
    max-width: 800px;
    overflow: auto;
    position: relative;
    border-radius: 5px;
}

.close-cookie-popup {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.close-cookie-popup::before,
.close-cookie-popup::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #000;
    transform: translateY(-50%) rotate(45deg);
}

.close-cookie-popup::after {
    transform: translateY(-50%) rotate(-45deg);
}

.choose-cookies-popup h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.cookieblock {
    border-bottom: 1px solid #ccc;
    padding: 10px 20px;
    position: relative;
    cursor: pointer;
}

.cookieblock:last-child {
    border: none;
}

.cookieblock h6 {
    color: #000;
    position: relative;
    padding-left: 25px;
    font-weight: 700;
    font-size: 18px;
}

.cookieblock h6::before,
.cookieblock h6::after {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 2px;
    background: #000;
}

.cookieblock h6::after {
    transform: rotate(90deg);
}

.cookieblock.active h6::after {
    opacity: 0;
}

.cookieblock p {
    margin-bottom: 0;
    display: none;
}

.cookieblock.active p {
    margin-bottom: 0;
    display: block;
}

.alwayson {
    position: absolute;
    right: 20px;
    top: 9px;
    font-weight: 700;
    color: #007bff !important;
    font-size: 16px;
}

.select-switch {
    position: absolute;
    right: 20px;
    top: 9px;
    cursor: pointer;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border-radius: 30px;
    border: 2px solid gray;
    cursor: pointer;
}

.toggle:after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: gray;
    top: 1px;
    left: 1px;
    transition: all 0.5s;
}

.checkbox-cookie {
    display: none;
}

.checkbox-cookie:checked + .toggle::after {
    left: 26px;
}

.checkbox-cookie:checked + .toggle {
    background-color: green;
}

.btnwrap {
    text-align: right;
}

.btnwrap .btn {
    border: 1px solid #13a0cb;
    padding: 10px 20px;
    border-radius: 25px;
    color: #13a0cb !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer;
    text-decoration: none;
}
.blog-head-section {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.blog-logo-top {
    max-width: 180px;
    height: auto;
    display: inline-block;
}

.popupwrapper-cookies.blog-p {
    margin: 0;
    color: #383838;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 24px;

}

.blog-select-cookies {
    margin-top: 30px;
}

.blog-extend-cookie {
    border: 1px solid #ccc;
    margin-bottom:30px
}

@media(max-width: 900px) {
    .cookieSection .cookieSectionInner {
        flex-direction: column;
    }
    
    .choose-cookies {
        flex-direction: row;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    .choose-cookies a {
        margin-right: 10px;
    }
    
    .popupwrapper-cookies {
        padding: 0 20px;
    }

}

@media(max-width: 767px) {
    .choose-cookies a {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .cookieblock h6 {
        max-width: 70%;
        font-size: 15px;
        line-height: 1.3;
    }
    
    .choose-cookies-popup h2 {
        font-size: 18px;
    }
    
    .alwayson {
        font-size: 10px;
        right: 10px;
    }
    
    .btnwrap .btn {
        font-size: 14px;
    }


}