.cookie-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 30px 40px;
    position: fixed;
    z-index: 100000000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
    box-sizing: border-box;
    background: #fff;
    width: 540px;
}

.cookie-bar>p {
    margin: 0 auto 0 0;
    padding: 0;
    font-size: 14px;
}

.cookie-bar h5 {
    font-size: 16px;
    color: #33363E;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    line-height: 20px;
    font-weight: 400;
}

.cookie-bar h3 {
    font-size: 22px;
    font-weight: 900;
    color: #33363E;
    padding: 0;
    margin: 0;
    line-height: 24px;
}

.cookie-bar p {
    font-size: 14px;
    color: #33363E;
    line-height: 24px;
    text-align: center;
}

.cookie-bar p a {
    color: #33363E;
    text-decoration: underline;
}

.cookie-bar .cookie-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 10px;
}

.cookie-bar .cookie-buttons a {
    font-size: 14px;
    padding: 13px 15px;
    box-sizing: border-box;
    text-align: center;
    width: 280px;
    border: 1px solid #D85D38;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cookie-bar .cookie-buttons a.cookies-accept-all {
    color: #fff;
    background: #D85D38;
}

.cookie-bar .cookie-buttons a.cookies-close {
    color: #fff;
    background: #D85D38;
}

.cookie-bar .cookie-buttons a.cookies-settings {
    color: #D85D38;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-bar .cookie-buttons a.cookies-settings::before {
    content: "";
    height: 18px;
    width: 18px;
    background: url(../images/cookies/cog.svg) no-repeat center;
}

.cookie-mini {
    position: fixed;
    z-index: 100000;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 0 50px 0 0;
    background: #D85D38 url(../images/cookies/cog-white.svg) no-repeat left 7px bottom 7px;
    box-shadow: 0px 0px 8px #00000029;
    background-size: 50%;
}

.cookie-window-overlay-no-settings {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100%;
    background: #33363Ee6;
    z-index: 10000000;
    display: none;
}

.cookie-window-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100%;
    background: #33363E80;
    z-index: 1000000001;
    display: none;
}

.cookie-window-overlay.active {
    display: flex;
}

.cookie-window {
    width: 0px;
    background: #fff;
    height: 100%;
    box-shadow: 3px -3px 8px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease-in-out;
}

.cookie-window a {
    color: #6188CE;
}

.cookie-window-overlay.active .cookie-window {
    width: 380px;
}

.cookie-back {
    font-size: 14px;
    font-weight: bold;
}

.cookie-header {
    background: #fff;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #D85D38;
    height: 80px;
}

.cookie-header img {
    height: auto;
    width: 80%;
}

.cookie-header a {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/cookies/times-solid.svg) no-repeat center;
    background-size: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
}

.cookie-body {
    padding: 10px;
}

.cookie-h1 {
    font-weight: bold;
    color: #33363E;
    font-size: 20px;
    line-height: 40px;
}

.cookie-body p {
    font-size: 13px;
    margin: 0;
    padding: 10px 10px 10px 0;
    line-height: 20px;
}

.cookie-consent {
    margin: 5px 0 20px;
}

.cookie-consent>div:nth-child(1) {
    display: flex;
    font-size: 16px;
    color: #0C234C;
    align-items: center;
}

.cookie-consent>div:nth-child(1)>div:nth-child(2) {
    display: flex;
    align-items: center;
    color: #36AC88;
    margin-left: auto;
}

.cookie-toggle {
    height: 24px;
    width: 44px;
    background: #e4e4e4;
    border-radius: 12px;
    padding: 2px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: 1px solid #c3c3c3;
}

.cookie-toggle>div {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #c3c3c3;
    transition: all 0.3s ease-in-out;
}

.cookie-toggle.active {
    justify-content: flex-start;
    background: #cbdaf5;
    border-color: #6188CE;
}

.cookie-toggle.active>div {
    background: #6188CE;
}

.cookie-actions {
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.cookie-actions a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #D85D38;
    width: 0;
    flex: auto;
    margin: 0 5px;
    font-size: 16px;
    border-radius: 4px;
}

.cookie-details {
    background: #F4F4F4;
    padding: 5px;
    margin: 5px 0;
}

.cookie-details>div {
    display: flex;
    align-items: flex-start;
    color: #494A4C;
    font-size: 13px;
    line-height: 21px;
}

.cookie-details>div>div:first-child {
    width: 90px;
    flex: 0 0 auto;
}

.cookie-details>div>div:nth-child(2) {
    width: 0px;
    flex: auto;
}

.cookie-loader {
    display: block;
    width: 64px;
    height: 64px;
    margin: 20px auto;
}

.cookie-loader:after {
    content: " ";
    display: block;
    width: 26px;
    height: 26px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #23385d;
    border-color: #23385d transparent #23385d transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width:768px) and (max-width:959px) {
    .cookie-bar {
        width: 500px;
    }

    .cookie-window-overlay.active .cookie-window {
        width: 450px;
    }
}

@media (max-width:767px) {
    .cookie-bar {
        width: 300px;
        padding: 10px;
    }

    .cookie-bar h5 {
        font-size: 14px;
    }

    .cookie-bar h3 {
        font-size: 20px;
    }

    .cookie-window-overlay.active .cookie-window {
        width: 100%;
    }
}