﻿@font-face {
    font-family: 'NaturaSans';
    src: url('../fonts/NaturaSans.otf') format('opentype');
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat.ttf') format('truetype');
}

* {
    font-family: 'Montserrat';
    box-sizing: border-box;
}

body {
    margin: 0;
}


.cosultor-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding-left: 50%;*/
    background-image: url('Img/tapa.jpg');
    background-size: cover;
}

.consultor-body {
    height: 280px;
    width: 390px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 30px;
    border-radius: 6px;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
    -moz-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
    box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47)
}

    .consultor-body * {
        margin: 9px 0;
    }

    .consultor-body label {
        margin-bottom: 3px;
        text-align:center;
        line-height:1;
        font-size:.9em;
    }

    .consultor-body .bienvenida {
        font-weight: bold;
        margin-bottom: 12px;
        font-size: 1.5em;
    }

.consultor-body button {
    background-color: #ce0542;
    color: #fff;
    border-radius: 12px;
    border: none;
    padding: 7px 15px;
    transition: all .3s linear;
}

        .consultor-body button:hover {
            transition: all .3s linear;
            border-radius: 6px;
            cursor: pointer;
            -webkit-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
            -moz-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
            box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47)
        }

    .consultor-body input {
        border: 1px solid #ccc;
        border-radius: 3px;
        padding: 6px;
        width: 100%;
        font-size: .75em;
        margin:3px;
    }

.modal-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,.2);
    transition: all .3s linear;
}

.modal-cuerpo {
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 28px 42px;
    min-height: 200px;
    max-width: 500px;
    justify-content: space-evenly;
    border-radius: 6px;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
    -moz-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
    box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47)
}

    .modal-cuerpo:hover {
        cursor: move;
    }

    .modal-cuerpo * {
        margin: 9px 0;
    }

    .modal-cuerpo label {
        font-size: .9em;
    }

    .modal-cuerpo button {
        background-color: #ce0542;
        color: #fff;
        border-radius: 12px;
        border: none;
        padding: 7px 15px;
        transition: all .3s linear;
    }

        .modal-cuerpo button:hover {
            transition: all .3s linear;
            border-radius: 6px;
            cursor: pointer;
            -webkit-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
            -moz-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
            box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47)
        }


#loading {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,.5);
    z-index: 50;
}

.logo {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 240px;
    height: 100px;
    margin-left: 12px;
    background-image: url(Img/ConsultoriaNaturaBlanco.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.titulo-evento {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    /*width: 100%;*/
    right: 0;
    font-size: 1.4em;
    font-weight: bold;
    color: #470217;
    left: 12px;
}

.tipo-ingreso {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,.5);
    transition: all .3s linear;
    z-index:9;
}

    .tipo-ingreso .tipo-ingreso-container {
        border: 1px solid rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        padding: 12px 9px 9px 9px;
        max-width: 99%;
        max-height: 99%;
        overflow-y: auto;
        border-radius: 18px;
        background-color: #fff;
        -webkit-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
        -moz-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
        box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
        position:relative;
    }

.cerrar-tipo-ingreso{
    width:25px;
    position:absolute;
    right:12px;
    top:12px;
    opacity:.5;
}

    .cerrar-tipo-ingreso:hover{
        cursor:pointer;
        opacity:.8;
    }

    .tipo-ingreso .tipo-ingreso-container label {
        text-align: center;
        font-weight: bold;
        font-size: 1.5em;
        margin-bottom: 12px;
    }

        .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas {
            display: flex;
            flex-direction: column;
        }

        .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div {
            display: flex;
            flex-direction: column;
            -webkit-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
            -moz-box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
            box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.47);
            border-radius: 6px;
            margin: 6px;
            padding: 6px;
            font-size: .8em;
            justify-content: space-between;
        }

            .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div span {
                text-align: center;
            }

            .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div img {
                height: 150px;
                margin: 0 auto;
            }

            .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div button {
                background-color: #ce0542;
                color: #fff;
                border: none;
                border-radius: 15px;
                padding: 6px 10px;
                margin-top: 9px;
                font-size: .9em;
                transition: all .3s linear;
            }

                .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div button:hover {
                    border-radius: 4px;
                    cursor: pointer;
                    transition: all .3s linear;
                }

@media(min-width:768px) {
    .cosultor-container {
        padding-left: 45%;
    }

    .logo {
        width: 280px;
    }

    .titulo-evento {
        font-size: 1.8em;
    }
}

@media(min-width:440px) {
    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div {
        width: 220px;
        font-size: .9em;
    }
}

@media(min-width:768px) {
    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div {
        width: 220px;
        font-size: .9em;
    }
}

@media(min-width:1000px) {
    .cosultor-container {
        padding-left: 50%;
    }

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas {
        flex-direction: row;
        /*padding: 25px 25px;*/
    }

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div {
        width: 290px;
    }

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div img {
        height: 260px;
    }

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div button {
        padding: 7px 12px;
        font-size: .9em;
    }

    .logo {
        width: 280px;
    }

    .titulo-evento {
        font-size: 1.5em;
    }

    .consultor-body input {
        font-size: .85em;
    }
}

@media(min-width:1200px) {

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas {
        flex-direction: row;
        /*padding: 25px 25px;*/
    }

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div {
        width: 250px;
    }

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div img {
        height: 200px;
    }

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div button {
        padding: 9px 12px;
        font-size: 1em;
    }

    .logo {
        width: 300px;
    }

    .titulo-evento {
        font-size: 2em;
    }

    .consultor-body input {
        font-size: 1em;
    }
}

@media(min-width:1400px) {

    .consultor-body {
        height: 280px;
        width: 410px;        
    }

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas  {
        flex-direction: row;
        /*padding: 25px 25px;*/
    }

    .tipo-ingreso .tipo-ingreso-container .regalos-tarjetas div button {
        padding: 9px 15px;
        font-size: 1em;
    }

    .logo {
        width: 300px;
    }

    .titulo-evento {
        font-size: 2em;
    }

    .consultor-body input {
        font-size: .9em;
    }
}
