a.rinxs-alert-trigger {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 16px 4px 10px;
    gap: 8px;
    height: 30px;
    width: fit-content;
    background: #CF1515;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    margin-bottom: 25px;
}

.rinxs-alert-trigger__icon {
    width: 19px;
    height: 19px;
    display: block;
    position: relative;
    z-index: 2;
    transition: filter .2s ease;
    left: 4px;
}

.rinxs-alert-trigger {
    position: relative;
}

.rinxs-alert-trigger::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    transition: background .2s ease;
    z-index: 1;
}

.rinxs-alert-trigger:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
}

.rinxs-alert-trigger:hover .rinxs-alert-trigger__text {
    color: #0A1F31;
}

.rinxs-alert-trigger:hover::before {
    background: #CF1515;
}

/* 
.rinxs-alert-trigger:hover .rinxs-alert-trigger__icon {
filter: brightness(0) invert(1);
} */
.rinxs-alert-trigger:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .16);
}

.rinxs-alert-trigger__icon {
    width: 19px;
    height: 19px;
    display: block;
    flex: none;
}

.rinxs-alert-trigger__text {
    width: auto;
    font-family: "Figtree", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 32px;
    color: #FFFFFF;
    display: block;
    flex: none;
    margin-left: 8px;
}

.rinxs-alert-trigger__text span {
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 420px) {
    .rinxs-alert-trigger {
        width: 100%;
        max-width: 322px;
    }

    .rinxs-alert-trigger__text {
        width: auto;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.rinxs-popover-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 31, 49, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    z-index: 9998;
}

.rinxs-popover {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1200px, calc(100% - 80px));
    max-height: calc(100vh - 80px);
    background: #FFFFFF;
    border-radius: 10px;
    display: none;
    z-index: 9999;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
    flex-direction: column;
}

.rinxs-lock .rinxs-popover{
	display: flex;
}

.rinxs-popover-inner {
    padding: 64px 40px 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
	overflow-y: auto;
}

.rinxs-popover-close {
    position: absolute;
    top: 4px;
    right: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.rinxs-popover-close img {
    width: 24px;
    height: 24px;
    display: block;
}

.rinxs-popover-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 44px;
    text-align: center;
}

.rinxs-popover-header__icon {
    width: 34px;
    height: 34px;
    display: block;
}

.rinxs-popover-header h2 {
    margin: 0;
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 1.1;
    color: #CF1515;
}

.rinxs-popover-content {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    padding-right: 10px;
}

.rinxs-col {
    flex: 1;
    min-width: 0;
    font-family: "Figtree", sans-serif;
    font-size: 17px;
    line-height: 32px;
    color: #0A1F31;
}

.rinxs-col p {
    margin: 0 0 16px;
}

.rinxs-col strong {
    font-weight: 700;
}

.rinxs-col ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 22px;
}

.rinxs-col ul li {
    position: relative;
    padding-left: 28px;
    margin: 0px 0;
}

.rinxs-col--left ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    background: url(https://rinxs.nl/wp-content/uploads/2026/02/left-content-list-icon.svg) no-repeat center / contain;
}

.rinxs-col--right ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 16px;
    height: 16px;
    background: url("https://rinxs.nl/wp-content/uploads/2026/02/right-content-list-icon.svg") no-repeat center / contain;
}

.rinxs-popover-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

html.rinxs-lock,
body.rinxs-lock{
  overflow: hidden !important;
  height: 100%;
}

.rinxs-popover-content::-webkit-scrollbar {
    width: 6px;
}

.rinxs-popover-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .rinxs-popover-inner {
        padding: 52px 40px 42px;
    }

    .rinxs-popover-header h2 {
        font-size: 36px;
    }

    .rinxs-popover-content {
        gap: 44px;
    }
}

@media (max-width: 860px) {
    .rinxs-popover {
        width: calc(100% - 24px);
        max-height: calc(100vh - 100px);
    }

    .rinxs-popover-inner {
        padding: 50px 20px 24px;
    }

    .rinxs-popover-content {
        flex-direction: column;
        gap: 26px;
    }

    .rinxs-popover-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 500px) {
    .rinxs-popover-header h2 {
        font-size: 20px;
    }

    .rinxs-popover-header {
        justify-content: flex-start;
        margin-bottom: 25px;
        text-align: left;
    }

    .rinxs-popover-header__icon {
        width: 28px;
        height: 28px;
    }
}