.stc-modal {
    background: var(--color-modal-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(5px);
    /* background-color: lavender; */
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease-in;
    overflow-y: scroll;
    overflow-x: hidden;

}

.stc-modal.stc-show-modal {
    background: var(--color-modal-bg);
    display: flex;
    z-index: 10;
}

.stc-modal__box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.stc-modal__container {
    background-color: var(--color-white);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.185);
    min-width: 0;
    max-width: 100% !important;
    min-height: 350px;
    transition: opacity 0.5s ease-in;
    scale: 0.1;
    transition-delay: 0.2s;
    
    
  
}

.stc-show-modal .stc-modal__container {
    scale: 1;
    opacity: 1;
}

.stc-modal__container--small {
    width: 500px;

}

.stc-modal__container--med {
    width: 800px;
}

.stc-modal__container--lg {
    width: 1100px;
}

.stc-modal__header {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    padding: 10px ;
    min-width: 0;
}

.stc-modal__header  h3 {
    margin-bottom: 0;
}




.stc-modal__content {
    padding: 20px 10px;
    margin-top: 20px;
    min-width: 0;
    text-align: center;
}

.stc-modal__btns {
    text-align: right;
    margin-left: 10px;
}

.stc-modal__close {

}

@media screen and (max-width: 700px) {
    .stc-modal.stc-show-modal{
        padding-left: 10px;
        padding-right: 10px;
    }
    .stc-modal__container--small {
        min-width: unset !important;
        width: 100%;
    }
}