.vsf-modal-shown{
    height: auto;
    overflow-y: hidden;
}

.vsf-modal-container{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.4);

    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    overflow-x: hidden;
}

.vsf-modal{
    width: 32rem;
    max-width: 100%;
    padding: 1.25rem;
    background: #fff;
    border-radius: 0.25rem;
    margin: auto 15px;
}

.vsf-modal-header h2{
    text-align: center;
    font-size: 32px;
    color: #000;
    margin: 0 0 2px;
    font-weight: 400;
    text-transform: none;
    line-height: 1.2em;
}

.vsf-modal-content{
    text-align: left;
    word-wrap: break-word;
}

.vsf-modal-footer{
    margin-top: 1.25rem;
    text-align: center;
}

.vsf-modal-footer .vsf-modal-cancel{
    font-size: 13px;
    text-align: center;
    border-radius: 4px;
    font-weight: 800;
    padding: 0 25px;
    height: 41px;
    display: inline-block;
    line-height: 37px;

    color: var( --e-global-color-secondary );
    background-color: #fff;
    border: 2px solid var( --e-global-color-secondary );
}
.vsf-modal-footer .vsf-modal-cancel:hover{
    color: #fff;
    background-color: var( --e-global-color-secondary );
    border-color: var( --e-global-color-secondary );
}

@keyframes vsf-modal-show {
    0% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    80% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes vsf-modal-hide {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }
}

.vsf-modal-show {
    animation: vsf-modal-show 0.3s;
}

.vsf-modal-hide {
    animation: vsf-modal-hide 0.15s forwards;
}

/* Estilos especificos */

.vsf-modal-content ul{
    padding: 10px 0 10px 30px;
    list-style: disc;
}
.vsf-modal-content ul li{
    padding: 0 0 3px 0;
}

.vsf-modal-content .infoNutricional table{
    width: 100%;
}
.vsf-modal-content .infoNutricional table td{
    width: 50%;
    border: 1px solid #999;
    padding: 3px;
}
.vsf-modal-content .infoNutricional table td.tab{
    padding-left: 18px;
}