﻿.overlay {
    background: rgba(0,0,0,.3);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    visibility: hidden;
    z-index: 9999;
}

    .overlay.active {
        z-index: 9999;
        visibility: visible;
    }

.popup {
    background: #F8F8F8;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 20px;
    text-align: center;
    width: 600px;
    transition: .3s ease all;
    transform: scale(0.7);
    opacity: 0;
    border-radius: 15px
}

    .popup .btn-cerrar-popup {
        font-size: 16px;
        line-height: 16px;
        display: block;
        text-align: right;
        transition: .3s ease all;
        color: #BBBBBB;
    }

        .popup .btn-cerrar-popup:hover {
            color: #000;
        }

    .popup .head-modal {
        border-radius: 10px 10px 0px 0px;
        align-content: center;
        height: 60px;
        background-color: #0D1F2E;
    }

    .popup .body-modal {
        padding: 20px;
        text-align: center;
        opacity: 0;
        max-height: 600px;
    }

    .popup.active {
        transform: scale(1);
        opacity: 1;
    }

        .popup.active .body-modal {
            animation: entradaTitulo .5s ease .3s forwards;
        }

.btnNoStyle {
    border: none;
    background-color: #F60C1A;
    color: white;
    width: 40px;
    height: 40px;
    font-weight: bold
}

    .btnNoStyle:hover {
        border: 1px solid #F60C1A;
        background-color: white;
        color: #F60C1A;
    }

.btnSiStyle {
    border: none;
    background-color: #32D583;
    color: white;
    width: 40px;
    height: 40px;
    font-weight: bold
}

    .btnSiStyle:hover {
        border: 1px solid #32D583;
        background-color: white;
        color: #32D583;
    }

.btnWarningStyle {
    border: none;
    background-color: #FFD62C;
    color: white;
    width: 40px;
    height: 40px;
    font-weight: bold
}

    .btnWarningStyle:hover {
        border: 1px solid #FFD62C;
        background-color: white;
        color: #FFD62C;
    }

@keyframes entradaTitulo {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
