    .modalbol {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.6);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .modalbol.show {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        background: #ffffff;
        padding: 16px 16px 30px 16px;
        max-width: 500px;
        width: 90%;
        border-radius: 12px;
        position: relative;
        animation: fadeIn .3s ease;
        border: 1px solid #e94213;
    }

   .modal-content .contt {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 25px 0 0 0;
        background-color: transparent;
        overflow: hidden;

    }


    .modal-content .close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 40px;
    cursor: pointer;
    color: #e94213;
    padding: 0;
    background-color: transparent !important;
    }

    .modal-content .close:hover {
        color: #b82a03;
    }

    @keyframes fadeIn {
    from { opacity: 0; transform: scale(.9); }
    to { opacity: 1; transform: scale(1); }
    }


@media(max-width: 799px) {

    .modal-content {
        background: #ffffff;
        padding: 16px 16px 30px 16px;
        max-width: 500px;
        width: 95%;
        border-radius: 12px;
        position: relative;
        animation: fadeIn .3s ease;
        border: 1px solid #e94213;
    }
}