#popupModalFutebol .modal-dialog {
    position: absolute;
    margin: 0 auto;
    min-width: 100%;
    width: 100%;
}

#popupModalFutebol .modal-content {
    justify-content: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    overflow: hidden;
    overflow-y: auto;
    display: block;
    border-radius: 16px 16px 0 0;
    border: 0;
    padding: 16px 16px 40px;
}

#popupModalFutebol .close {
    margin: 0 0 0 auto;
    opacity: 1;
    height: 24px;
    width: 24px;
    max-width: fit-content;
    display: flex;
}

#popupModalFutebol .modal-body {
    padding: 0;
}

#popupModalFutebol .modal-body .cabecera {
    padding: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#popupModalFutebol .modal-body .cabecera .titulo-modal {
    color: #2c2c2c;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    font-family: IberPangea;
    margin: 0;
}

#popupModalFutebol .modal-body .cabecera .desc-modal {
    color: #2c2c2c;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    font-family: IberPangea Text;
    margin: 0;
}

#popupModalFutebol .modal-body video {
    height: 290px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    margin: 16px 0;
}

#popupModalFutebol .modal-body video:not(:root):fullscreen {
    object-fit: contain;
}

#popupModalFutebol .modal-body .bloque-buttons {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    padding-top: 16px;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

#popupModalFutebol .modal-body .bloque-buttons .button-green {
    background-color: #2F6852;
    border-color: #2F6852;
    text-transform: initial;
    font-size: 16px;
    margin: 0;
    width: 100%;
    height: 56px;
}

#popupModalFutebol .modal-body .bloque-buttons .button-green:hover,
#popupModalFutebol .modal-body .bloque-buttons .button-green:focus {
    background-color: #2F6852 !important;
    border-color: #2F6852 !important;
}

#popupModalFutebol .modal-body .bloque-buttons .button-green .button-text {
    background-color: #2F6852;
    border-color: #2F6852;
    text-transform: initial;
    font-size: 16px;
    margin: 0;
    width: 100%;
    height: 56px;
}

#popupModalFutebol .modal-body .bloque-buttons .button-white {
    background-color: #FFFFFF;
    border-color: #2F6852;
    text-transform: initial;
    font-size: 16px;
    margin: 0;
    width: 100%;
    height: 56px;
}

#popupModalFutebol .modal-body .bloque-buttons .button-white .fechar-text {
    color: #2F6852;
    font-family: "IberPangea Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

@media (min-width: 576px) {
    #popupModalFutebol.show {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    #popupModalFutebol .modal-content {
        padding: 16px 40px 32px;
        border-radius: 16px;
        position: unset;
        width: 496px;
    }

    #popupModalFutebol .close {
        margin: 0 -24px 0 auto;
    }
    
    #popupModalFutebol .modal-body video {
        height: 234px;
    }

    #popupModalFutebol .modal-body .bloque-buttons {
        flex-direction: row;
    }

    #popupModalFutebol .modal-body .bloque-buttons .button-green,
    #popupModalFutebol .modal-body .bloque-buttons .button-white {
        width: 200px;
    }
}

@media (min-width: 992px) {

    #popupModalFutebol .modal-content {
        width: 826px;
    }

    #popupModalFutebol .modal-body video {
        height: 400px;
    }

}

@media (min-width: 1480px) {

    #popupModalFutebol .modal-content {
        width: 960px;
    }

    #popupModalFutebol .modal-body video {
        height: 450px;
    }
}