﻿@charset "UTF-8";
.form-control-feedback {
    position: absolute;
    padding: 10px;
    pointer-events: none;
}

body {
    margin: 0;
    height: 100%;
    overflow: hidden;
    width: 100% !important;
    box-sizing: border-box;
    font-family: "Muli", sans-serif;
}

.backRight {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    background: #2E1A46;
}

.backLeft {
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    background: #A0D8D1;
}

#back {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -999;
}

.canvas-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

#slideBox {
    width: 50%;
    max-height: 100%;
    height: 100%;
    overflow: hidden;
    margin-left: 50%;
    position: absolute;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.topLayer {
    width: 200%;
    height: 100%;
    position: relative;
    left: 0;
    left: -100%;
}

label {
    font-size: 0.8em;
    text-transform: uppercase;
}

input {
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 1em;
    padding: 8px 1px;
    font-family: "Muli", sans-serif;
}

select {
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 1em;
    padding: 8px 1px;
    font-family: "Muli", sans-serif;
}

.left {
    width: 50%;
    height: 100%;
    overflow: scroll;
    background: #2C3034;
    left: 0;
    position: absolute;
}

    .left label {
        color: #e3e3e3;
    }

    .left input {
        border-bottom: 1px solid #e3e3e3;
        color: #e3e3e3;
    }

        .left input:focus, .left input:active {
            border-color: #A0D8D1;
            color: #A0D8D1;
        }

        .left input:-webkit-autofill {
            -webkit-box-shadow: 0 0 0 30px #2C3034 inset;
            -webkit-text-fill-color: #e3e3e3;
        }

    .left a {
        color: #A0D8D1;
    }

.right {
    width: 50%;
    height: 100%;
    overflow: scroll;
    background: #f9f9f9;
    right: 0;
    position: absolute;
}

    .right label {
        color: #212121;
    }

    .right input {
        border-bottom: 1px solid #212121;
    }

    .right select {
        border-bottom: 1px solid #212121;
    }

    .right input:focus, .right input:active {
        border-color: #2E1A46;
    }

    .right input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px #f9f9f9 inset;
        -webkit-text-fill-color: #212121;
    }

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    width: 80%;
    margin: 0 auto;
    position: relative;
}

    .content h2 {
        font-weight: 300;
        font-size: 2.6em;
        margin: 0.2em 0 0.1em;
    }

.left .content h2 {
    color: #A0D8D1;
}

.right .content h2 {
    color: #2E1A46;
    font-weight: bold;
}

.form-element {
    margin: 1.6em 0;
}

    .form-element.form-submit {
        margin: 1.6em 0 0;
    }

.form-stack {
    display: flex;
    flex-direction: column;
}

.checkbox {
    -webkit-appearance: none;
    outline: none;
    background-color: #e3e3e3;
    border: 1px solid #e3e3e3;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 12px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

    .checkbox:focus, .checkbox:checked:focus,
    .checkbox:active, .checkbox:checked:active {
        border-color: #A0D8D1;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    }

    .checkbox:checked {
        outline: none;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
    }

        .checkbox:checked:after {
            outline: none;
            content: "✓";
            color: #A0D8D1;
            font-size: 1.4em;
            font-weight: 900;
            position: absolute;
            top: -4px;
            left: 4px;
        }

.form-checkbox {
    display: flex;
    align-items: center;
}

    .form-checkbox label {
        margin: 0 6px 0;
        font-size: 0.72em;
    }

button {
    padding: 0.8em 1.2em;
    margin: 0 10px 0 0;
    width: auto;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1em;
    color: #fff;
    line-height: 1em;
    letter-spacing: 0.6px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
    border: 0;
    outline: 0;
    transition: all 0.25s;
}

    button.signup {
        background: #A0D8D1;
    }

    button.login {
        background: #2E1A46;
    }

    button.off {
        background: none;
        box-shadow: none;
        margin: 0;
    }

        button.off.signup {
            color: #A0D8D1;
        }

        button.off.login {
            color: #2E1A46;
        }

    button:focus, button:active, button:hover {
        box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
    }

        button:focus.signup, button:active.signup, button:hover.signup {
            background: #40ECC1;
        }

        button:focus.login, button:active.login, button:hover.login {
            background: #482A6C;
        }

        button:focus.off, button:active.off, button:hover.off {
            box-shadow: none;
        }

            button:focus.off.signup, button:active.off.signup, button:hover.off.signup {
                color: #A0D8D1;
                background: #212121;
            }

            button:focus.off.login, button:active.off.login, button:hover.off.login {
                color: #482A6C;
                background: #e3e3e3;
            }

@media only screen and (max-width: 768px) {
    #slideBox {
        width: 80%;
        margin-left: 20%;
    }

    .signup-info, .login-info {
        display: none;
    }
}

::-webkit-scrollbar {
    display: none;
}
/*===================ESTILOS MODALES===================*/
@font-face {
    font-family: Muli;
    src: url(/fonts/muli_semibold.ttf);
}
.modal {
    font-family: Muli;
    z-index: 9999 !important;
}

.modal-header {
    padding: 22px;
    margin-bottom: 28px;
    border-bottom: solid 1px #cbe3e0;
    margin-top: -5px;
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    margin-top: -37px;
}

.modal-content {
    max-height: 1000px;
    border-radius: 15px 50px 15px 50px;
    color: #2e1a46;
}

.modal-body::-webkit-scrollbar {
    width: 10px;
}

.modal-body::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: #ebebeb;
}

.modal-body::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: #cbe3e0;
}

.modal-body::-webkit-scrollbar-track-piece {
    background-color: #ffffff80;
    border-radius: 20px;
}

.fondo-morado-titulo-modal {
    height: 70px;
    width: 555px;
    margin: 5px;
    background: #2e1a46;
    top: -6px;
    margin-left: -22px;
    position: absolute;
    border-top-left-radius: 13px;
    -webkit-transform: skew(360deg);
}

.fondo-verde-titulo-modal {
    height: 70px;
    width: 73px;
    margin: 5px;
    background: #cbe3e0;
    top: -6px;
    margin-left: 496px;
    position: absolute;
    -webkit-transform: skew(45deg);
}

.titulo-header {
    color: #a0d8d1;
}

.modal input, .modal select {
    border-radius: 6px 20px 6px 20px !important;
}
.fondo-morado-sm {
    width: 400px !important;
}

.fondo-verde-sm {
    margin-left: 339px !important;
}
.swal2-container.swal2-center {
    z-index: 99999;
}
.transformacion2 {
    text-transform: uppercase;
}
/*----------------*/
/* Botones */
.buttons {
    display: flex;
}

    .buttons button {
        padding: 0 25px;
        border-radius: 12px;
        width: 100px;
        height: 45px;
        font-family: "Arial", sans-serif;
        font-weight: 600;
        font-size: 12px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border-radius: 4px 20px 4px 20px;
    }

.btn-gda-save {
    border: solid 1px #482A6C;
}

.btn-gda-close {
    border: solid 1px #8C9BA3;
}

.btn-gda-add {
    width: 100px;
    height: 45px;
    border: solid 1px #1de9b6;
}

.btn-gda-delete {
    border: solid 1px #dc3545;
}

.btn-gda-back {
    border: solid 1px #E4C93A;
}

.buttons button:after, .buttons button:before {
    width: 0%;
    height: 0%;
    content: "";
    position: absolute;
    border-radius: 100%;
}

.buttons button:after {
    transition: all 0.5s ease;
    background-color: white;
}

.btn-gda-save:before {
    transition: all 0.5s ease-out;
    background: #54337B;
}

.btn-gda-delete:before {
    transition: all 0.5s ease-out;
    background: #dc3545;
}

.btn-gda-b.btn-gda-back {
    transition: all 0.5s ease-out;
    background: #E4C93A;
}

.btn-gda-close:before {
    transition: all 0.5s ease-out;
    background: #98A7AE;
}

.btn-gda-add:before {
    transition: all 0.5s ease-out;
    background: #70F1D0;
}

.buttons button span {
    z-index: 1;
    transition: all 0.3s ease-out;
}

.buttons button.btn-gda-save {
    background: linear-gradient(90deg, #482A6C 0%, #2E1A46 100%);
    color: white;
}

.buttons button.btn-gda-delete {
    background: linear-gradient(90deg, #EF435C 0%, #dc3545 100%);
    color: white;
}

.buttons button.btn-gda-back {
    background: linear-gradient(90deg, #FFE342 0%, #E4C93A 100%);
    color: white;
}

.buttons button.btn-gda-close {
    background: linear-gradient(90deg, #899AA3 0%, #748892 100%);
    color: white;
}

.buttons button.btn-gda-add {
    background: linear-gradient(90deg, #40ECC1 0%, #1de9b6 100%);
    color: white;
}

.buttons button:hover.btn-gda-save {
    color: #482A6C;
}

.buttons button:hover.btn-gda-close {
    color: #748892;
}

.buttons button:hover.btn-gda-add {
    color: #1de9b6;
}

.buttons button:hover.btn-gda-delete {
    color: #dc3545;
}

.buttons button:hover.btn-gda-back {
    color: #E4C93A;
}

.buttons button:hover:after, .buttons button:hover:before {
    width: 200px;
    height: 200px;
    border-radius: 4px;
}

.buttons button:hover:after {
    transition: all 0.7s ease-in;
}

.buttons button:hover:before {
    transition: all 0.5s ease-in;
}

.buttons:active {
    border: none;
}

.btn-gda-close-modal {
    height: 30px;
    width: 30px;
    border: 3px solid #289fb0;
    border-radius: 25px;
    display: block;
    line-height: 20px;
    background-color: #fff;
    color: #2e1a46;
    font-weight: bolder;
    transition: background-color 0.5s;
}

    .btn-gda-close-modal:hover {
        background-color: #2e1a46;
        color: #fff;
        opacity: 1;
        line-height: 19px;
    }
/* Finalizacion de estilos botones */