#cookie-notice {
    display: none !important;
}

.has-mpcc-open {
    overflow: hidden;
}

.mpcc[hidden],
.mpcc [hidden],
.mpcc-launcher[hidden] {
    display: none !important;
}

.mpcc,
.mpcc *,
.mpcc-launcher,
.mpcc-launcher * {
    box-sizing: border-box;
}

.mpcc {
    position: fixed;
    z-index: 100000;
    inset: 0;
    display: flex;
    align-items: flex-end;
    color: #363636;
    font-family: Arial, Helvetica, sans-serif;
    pointer-events: none;
}

.mpcc.is-showing-details {
    pointer-events: auto;
}

.mpcc.is-showing-details .mpcc__backdrop {
    display: block;
}

.mpcc__backdrop {
    position: absolute;
    inset: 0;
    display: none;
    background: rgba(0, 28, 70, 0.22);
}

.mpcc__panel {
    position: relative;
    width: min(640px, calc(100% - 24px));
    max-height: calc(100vh - 24px);
    margin: 0 0 12px 12px;
    padding: 18px;
    overflow-y: auto;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 35px rgba(0, 28, 70, 0.2);
    outline: 0;
    pointer-events: auto;
}

.mpcc__panel p {
    margin: 0 0 14px;
    color: #363636;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: normal;
}

.mpcc__panel a {
    color: #fe7759;
    text-decoration: underline;
}

.mpcc__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.mpcc__header h2 {
    margin: 0;
    color: #363636;
    font: 600 16px/1.25 Arial, Helvetica, sans-serif;
    letter-spacing: normal;
}

.mpcc__overview,
.mpcc__close {
    flex: 0 0 auto;
    border: 0;
    background: #f5f5f5;
    color: #111;
    cursor: pointer;
}

.mpcc__overview {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 6px;
    font: 14px Arial, Helvetica, sans-serif;
}

.mpcc__cookie-icon {
    width: 20px;
    height: 20px;
}

.mpcc__choices {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 18px 4px 16px;
}

.mpcc__choice {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #363636;
    font: 14px Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.mpcc__choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.mpcc__choice input:focus-visible + .mpcc__toggle {
    outline: 3px solid #5374e7;
    outline-offset: 3px;
}

.mpcc__choice input:checked + .mpcc__toggle {
    border-color: #fe7759;
    background: #fe7759;
}

.mpcc__choice input:checked + .mpcc__toggle::after {
    transform: translateX(16px);
    background: #fff;
}

.mpcc__choice--required {
    cursor: default;
}

.mpcc__choice--required input:checked + .mpcc__toggle {
    border-color: #d9d9d9;
    background: #d9d9d9;
}

.mpcc__toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
    border: 2px solid #d9d9d9;
    border-radius: 20px;
    background: #fff;
}

.mpcc__toggle::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d9d9d9;
    content: '';
    transition: transform 180ms ease;
}

.mpcc__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mpcc__button {
    min-height: 52px;
    padding: 12px 16px;
    border: 2px solid #fe7759;
    border-radius: 5px;
    font: 14px Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.mpcc__button--secondary {
    background: #fff;
    color: #fe7759;
}

.mpcc__button--primary {
    background: #fe7759;
    color: #fff;
}

.mpcc__button:hover,
.mpcc__button:focus-visible {
    filter: brightness(0.94);
}

.mpcc__details {
    align-self: center;
    width: calc(100% - 48px);
    max-width: 1120px;
    max-height: calc(100vh - 48px);
    margin: auto;
    padding: 30px;
}

.mpcc__details p {
    font-size: 20px;
}

.mpcc__details h2 {
    font-size: 25px;
}

.mpcc__close {
    position: relative;
    width: 62px;
    height: 54px;
    border-radius: 6px;
}

.mpcc__close::before,
.mpcc__close::after {
    position: absolute;
    top: 26px;
    left: 18px;
    width: 26px;
    height: 2px;
    background: #111;
    content: '';
}

.mpcc__close::before {
    transform: rotate(45deg);
}

.mpcc__close::after {
    transform: rotate(-45deg);
}

.mpcc__details-content h3 {
    margin: 30px 0 12px;
    color: #363636;
    font: 600 20px Arial, Helvetica, sans-serif;
}

.mpcc__vendors {
    margin: 20px 0 0;
    padding: 0;
    border: 2px solid #dedede;
    list-style: none;
}

.mpcc__vendors li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 14px 20px;
    font-size: 18px;
}

.mpcc__vendors a {
    color: #222;
    font-size: 22px;
    text-decoration: none;
}

.mpcc-launcher {
    position: fixed;
    z-index: 99990;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border: 0;
    border-radius: 7px;
    background: #2b4238;
    box-shadow: 0 4px 18px rgba(0, 28, 70, 0.2);
    color: #fff;
    font: 14px Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.mpcc-launcher svg {
    width: 23px;
    height: 23px;
}

@media (max-width: 767px) {
    .mpcc__panel {
        width: calc(100% - 20px);
        max-height: calc(100vh - 12px);
        margin: 0 0 10px 10px;
        padding: 16px;
    }

    .mpcc__panel p {
        font-size: 14px;
    }

    .mpcc__header {
        margin-bottom: 18px;
    }

    .mpcc__header h2 {
        font-size: 18px;
    }

    .mpcc__overview {
        min-height: 44px;
        padding: 0 13px;
    }

    .mpcc__overview span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .mpcc__cookie-icon {
        width: 22px;
        height: 22px;
    }

    .mpcc__choices {
        display: grid;
        gap: 15px;
        margin: 18px 0;
    }

    .mpcc__choice {
        font-size: 15px;
    }

    .mpcc__actions {
        grid-template-columns: 1fr;
    }

    .mpcc__button {
        min-height: 52px;
        font-size: 15px;
    }

    .mpcc__details {
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        margin: auto;
    }

    .mpcc__details p {
        font-size: 16px;
    }

    .mpcc__details h2 {
        font-size: 21px;
    }
}
