.hidden {
    display: none;
}

.ctp-loading-wrapper-progress {
    position: relative;
    cursor: progress;
}


.ctp-loading-wrapper-progress::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid black;
    border-radius: 50%;
    border-top-color: transparent;
    animation: 4s linear 0s infinite loading;
    z-index: 50;
}

.ctp-loading-wrapper-progress::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .5) !important;
    z-index: 49;
}

.ctp-loading {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    width: max-content !important;
    margin: auto;
}

.ctp-loading::after {
    content: "";
    width: 25px;
    height: 25px;
    border: 4px solid;
    border-radius: 50%;
    border-top-color: transparent;
    animation: 4s linear 0s infinite loading;
}

.gp-unsubscribe * {
    z-index: 0;
}

.gp-unsubscribe span:last-child {
    z-index: 0;
}

.gp-register span {
    z-index: 0;
}

@keyframes loading {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}