/* CozarStudio Simple Modal */
.coz-sm-modal{
    align-items: center;
    bottom: 0;
    display: none;
    justify-content: center;
    left: 0;
    padding: 18px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999;
}

.coz-sm-modal.is-open{
    display: flex;
}

.coz-sm-backdrop{
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.55);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.coz-sm-panel{
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    max-height: calc(100vh - 36px);
    max-width: 560px;
    overflow: auto;
    padding: 18px;
    position: relative;
    transform: translateY(10px) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease;
    width: 100%;
}

.coz-sm-modal.is-open .coz-sm-panel{
    opacity: 1;
    transform: translateY(0) scale(1);
}

.coz-sm-close {
    align-items: center;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #000000;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    height: 36px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 36px;
    z-index: 20;
}

.coz-sm-close:hover {
    background: #f2f2f2;
}

.coz-sm-media img{
    border-radius: 12px;
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

.coz-sm-body{
    color: #072837;
    font-size: 16px;
    line-height: 1.55;
    margin-top: 14px;
}

.coz-sm-body p{
    margin: 0 0 10px;
}

.coz-sm-actions{
    margin-top: 16px;
}

.coz-sm-cta{
    background: #5C5CA7;
    border-radius: 12px;
    color: #ffffff;
    display: inline-block;
    font-weight: 700;
    padding: 12px 16px;
    text-decoration: none;
    transition: transform 120ms ease;
}

.coz-sm-cta:hover{
    transform: translateY(-1px);
}

@media (max-width: 480px){
    padding: 14px;
    .coz-sm-panel{
}


}
