#ctct-lightbox-backdrop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(0);
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.2s;
    z-index: 99999999;
}

.ctct-lightbox-wrapper {
	position: fixed;
    z-index: 1000;
	width: min(700px, 80%);
    height: max(60%, 200px);
    border-radius: 10px;
    filter: drop-shadow(6px 10px 20px rgba(0, 0, 0, 0.5));
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}

.ctct-lightbox-scroller {
/*    position: fixed;
    z-index: 1000;
    width: min(700px, 80%);
    height: max(60%, 200px);
    border-radius: 10px;
    filter: drop-shadow(6px 10px 20px rgba(0, 0, 0, 0.5));
    background-color: rgb(255, 255, 255);
    overflow-x: hidden;*/
    
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;

    --sb-track-color: #bfbfbf;
    --sb-thumb-color: #3c3c3c;
    --sb-size: 8px;
}


.ctct-lightbox-scroller > p {
    margin: 0;
}

#ctct-lightbox-open-button {
    cursor: pointer;
}

#ctct-lightbox-sticky-header {
    top: 0;
    left: 0;
	width: 100%;
    height: auto;
    padding-top: 3px;
    padding-bottom: 3px;
    position: sticky;
    
}

#ctct-lightbox-close-button-wrapper {
    width: 24px;
    height: 24px;
    max-width:fit-content!important;
    max-height: fit-content!important;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.0);
    transition: all ease 0.3s;
}

#ctct-lightbox-close-button {
    transition: all ease 0.3s;
}

#ctct-lightbox-close-button:hover {
    transform: scale(0.80);
}

#ctct-lightbox-close-button-wrapper:hover {
    transform: scale(1.20);
    border-radius: 7px;
    background-color: rgba(0, 0, 0, 0.15);
    transition: all ease 0.3s;
}

.ctct-form-start {
    padding: 6px 20px 6px 20px;
    overflow: hidden
}