/* RESET RULES 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
    --lightgray: #efefef;
    --blue: steelblue;
    --white: #fff;
    --black: rgba(0, 0, 0, 0.8);
    --bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

* {
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    font-size: inherit;
}

body {
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    height: 100vh;
    font: 16px/1.5 sans-serif;
}

.btn-group {
    text-align: center;
}

.open-modal {
    font-weight: bold;
    background: var(--blue);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    position: absolute;
}


/* MODAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--black);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s ease-in;
    z-index: 9999;
}

    .modal.is-visible {
        visibility: visible;
        opacity: 1;
    }

.modal-dialog {
    position: relative;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 5px;
    background: var(--white);
    overflow: auto;
    cursor: default;
}

    .modal-dialog > * {
        padding: 1rem;
    }

.modal-header,
.modal-footer {
    background: var(--lightgray);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .modal-header .close-modal {
        font-size: 1.5rem;
    }

.modal p + p {
    margin-top: 1rem;
}
.modal-content > * {
    align-items:center;
}
/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

    .page-footer span {
        color: #e31b23;
    }

    /*-------------Boton----*/
.myButton {
    box-shadow: inset 0px 1px 3px 0px #276873;
    background-color: #599bb3;
    border-radius: 5px;
    border: 1px solid #29668f;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 5px 23px;
    text-decoration: none;
    text-shadow: 0px -1px 0px #3d768a;
    
}

    .myButton:hover {
        background-color: #5ea2ad;
    }

    .myButton:active {
        position: relative;
    }


    /*----Estilo label/input-----*/
    .estilolabel {
        width: 130px;
        font-weight: bold;
        display: inline-block;

    }

    .estiloinput {
        width: 250px;
        padding: 5px 15px;
        border: 1px solid #f6f6f6;
        border-radius: 3px;
        background-color: #f6f6f6;
        margin: 8px 0;
        display: inline-block;
    }

    /*-----Centrar placeholder-----*/
    ::-webkit-input-placeholder {
        text-align: center;
    }

    :-moz-placeholder { /* Firefox 18- */
        text-align: center;
    }

    ::-moz-placeholder { /* Firefox 19+ */
        text-align: center;
    }

    :-ms-input-placeholder {
        text-align: center;
    }