.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

h3 {
    font-size: 18px;
    font-family: "ubuntu-bold";
    line-height: 24px;
    margin: 0;
    padding: 0;
}

.cookie-icon {
    display: block;
    position: fixed;
    bottom: 20px;
    cursor: pointer;
    left: 20px;
    z-index: 9999999;
}

.cookie-banner {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999998;
    color: #000;
    background-color: #ffffff !important;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
    display: none;
}

    .cookie-banner .cookie-banner-content {
        width: 100%;
        display: flex;
        flex-flow: row;
        align-items: center;
    }

@media(max-width: 1424px) {
    .cookie-banner .cookie-banner-content {
        width: 100%;
        display: flex;
        flex-flow: row;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

.cookie-banner .text-content {
    padding-right: 24px;
}

    .cookie-banner .text-content a {
        color: #004990;
        text-decoration: underline;
        font-weight: 500;
        cursor: pointer;
    }

.cookie-banner .cookie-btns {
    display: flex;
    flex-flow: row;
    align-items: center;
}

    .cookie-banner .cookie-btns .cookie-btn {
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        color: #fff;
        padding: 10px 20px;
        background: #004990;
        border: 1px solid #004990;
        border-radius: 10px;
        text-align: center;
        margin-right: 10px;
        margin-bottom: 10px;
        cursor: pointer;
        width: max-content;
    }

    .cookie-banner .cookie-btns .cookie-btn-bordered {
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        color: #212121;
        padding: 10px 20px;
        background: #ffffff;
        border: 1px solid #212121;
        border-radius: 10px;
        text-align: center;
        margin-right: 10px;
        margin-bottom: 10px;
        cursor: pointer;
        width: max-content;
    }

@media(max-width:1424px) {
    .cookie-banner .cookie-btns .cookie-btn-bordered {
        width: 100%;
    }

    .cookie-banner .cookie-btns .cookie-btn {
        width: 100%;
    }
    .cookie-banner .cookie-btns {
        flex-direction: column;
        width: 100%;
    }
}

.cookie-modal-content {
    font-size: 16px;
    line-height: 22px;
    background-color: white;
    color: #212121;
    width: 100%;
    max-height: 80dvh;
    margin-left: clamp(16px, 13.33vw, 267px);
    margin-right: clamp(16px, 13.18vw, 267px);
    padding: 24px;
    gap: 4px;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    font-family: "ubuntu-regular" !important;
    overflow-y: auto;
    height: fit-content;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

    .cookie-option.last-child {
        border-bottom: 0px solid #e0e0e0 !important;
    }

.option-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.onoffswitch {
    position: relative;
    width: 48px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #ffffff;
    border-radius: 24px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.1s ease-in 0s;
}

    .onoffswitch-inner:before,
    .onoffswitch-inner:after {
        display: block;
        float: left;
        width: 44px;
        height: 24px;
        padding: 0;
        line-height: 24px;
        font-size: 11px;
        color: white;
        font-family: Trebuchet, Arial, sans-serif;
        font-family: "ubuntu-bold" !important;
        box-sizing: border-box;
    }

    .onoffswitch-inner:before {
        content: "";
        padding-left: 6px;
        background-color: #004990;
        color: #ffffff;
    }

    .onoffswitch-inner:after {
        content: "";
        padding-right: 6px;
        background-color: #eeeeee;
        color: #999999;
        text-align: right;
    }

.onoffswitch-switch {
    display: block;
    width: 20px;
    margin: 4px;
    background: #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    border: 2px solid #ffffff;
    border-radius: 24px;
    transition: all 0.1s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
}

    .cookie-buttons button.filled {
        font-family: "ubuntu-medium" !important;
        font-size: 16px;
        width: fit-content;
        text-align: start;
        word-wrap: break-word;
        text-decoration: none;
        line-height: 22px;
        padding: 10px 16px;
        border-radius: 8px;
        border-width: 0px;
        color: white;
        gap: 8px;
        background-color: #004990;
    }

    .cookie-buttons button.bordered {
        display: flex;
        font-family: "ubuntu-medium" !important;
        font-size: 16px;
        text-align: start;
        justify-content: center;
        word-wrap: break-word;
        white-space: nowrap;
        text-decoration: none;
        line-height: 22px;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 8px;
        border-width: 1px;
        border-color: #212121;
        color: #212121;
        background-color: transparent;
    }
