#claritas-slideout {
    display: none;
    position: fixed;
    top: 50%;
    right: -400px;
    transform: translateY(-50%);
    width: 300px;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    box-shadow: -4px 0 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.5s ease;
   
    overflow: hidden;
}
#claritas-slideout.show {
    right: 0;
}
#cta-wrap {
    display: flex;
    justify-content: flex-end;
}
.claritas-content {
    padding: 15px;
    color: #333;
    position: relative;
}

.claritas-content p {
    font-size: 15px;
    margin-bottom: 32px;
    color: #fff;
    line-height: 1.2;
}
.claritas-content span {
        display: inline-flex;
    background: #a2dadc;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    width: 100px;
    height: 22px;
    font-size: 12px;
    color: #252e39;
    line-height: 1;
    font-family: 'ProximaNova-Bold';
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.claritas-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 40px;
    cursor: pointer;
    color: #fff;
    line-height: 20px;
    background: rgba(0,0,0,0.25);
    border-radius: 50%;
    padding: 7px 5px 3px;
}
.claritas-logo {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 112px;
}
#claritas-headline {
    color: #fff;
    font-size: 28px;
    font-family: 'ProximaNova-Semibold';
    line-height: 1.1;
    margin-bottom: 10px;
}
.claritas-logo, .claritas-close {
    pointer-events: auto;
    position: absolute;
    z-index: 10;
}

#claritas-button {
    pointer-events: none; /* No double click issues */
}