﻿/* IMPORT  */
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,600,700&display=swap');
@import "table.css";
@import "modal.css";


:root {
    --default-btn: rgba(206,206,206,0.5);
    --default-btn-dark: rgba(206,206,206,1);
    --primary-color: #337ab7;
    --primary-color-dark: #173977;
    --btn-primary: #337ab7;
    --btn-primary-dark: #173977;
    --secondary-color: #ef5fb6;
    --third-color: #fecf2b;
    --fourth-color: #7ACC87;
    --fourth-color-dark: rgb(86, 158, 98);
    --text-color: #707070;
    --text-color2: #626262;
}

*, html, body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

body {
    overflow: hidden;
}

/*.no-margin {
    margin: 0 !important;
}

.bg-success {
    background: var(--fourth-color);
    color: white;
    padding: 1px 4px;
}*/

.bold {
    font-weight: bold !important;
}

h1 {
    margin: 0;
    color: var(--btn-primary);
}

.card {
    margin-top: 30px;
}

input {
    border-radius: 0 !important;
    border: 1px solid #808080;
    color: var(--text-color) !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    font-size: 12px !important;
    transition: all .4s !important;
    height: 28px;
}

textarea {
    border-radius: 0 !important;
    border: 1px solid #ccc !important;
    color: var(--text-color) !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    font-size: 12px !important;
    width: 100%;
    min-height: 56px;
}

    textarea:focus {
        outline: none;
        border: 1px solid var(--primary-color) !important;
    }

label {
    color: var(--text-color);
}

input:focus {
    border: 1px solid var(--primary-color) !important;
    background: white !important;
}

label {
    color: var(--text-color);
}


button {
    background: none;
    border: none;
    position: relative;
}

    button:focus {
        outline: none;
    }

    button:not(.btn):hover:before, button:not(.btn):focus:before {
        content: '';
        position: absolute;
        background: rgba(0,0,0,0.1);
        border-radius: 50%;
        width: 25px;
        height: 25px;
        top: -5px;
        left: -6px;
    }

.btn {
    font-weight: 600;
    /*text-transform: capitalize;*/
    border-radius: 0;
    transition: all .4s;
    border-radius: 10px;
    background-color: var(--default-btn);
    color: var(--text-color2);
}

    .btn:hover {
        background-color: var(--default-btn-dark);
        color: var(--text-color2);
    }

.btn-primary:hover, .btn-primary:active, .btn-primary:visited, .btn-primary:focus {
    background-color: var(--btn-primary-dark) !important;
    border-color: var(--btn-primary-dark) !important;
    color: white;
}

.btn.inline, button.inline {
    margin-right: 15px;
}

.row.flex {
    display: flex;
}

    .row.flex.flex-end {
        align-items: flex-end;
    }

.validation-message {
    font-size: 12px;
    color: var(--text-color);
    text-transform: uppercase;
    margin-top: 10px;
}

.btn-primary {
    background-color: var(--btn-primary);
    border-color: var(--btn-primary);
    color: white;
}

.btn-success {
    background-color: var(--fourth-color);
    border-color: var(--fourth-color);
    color: white;
}

    .btn-success:hover {
        background-color: var(--fourth-color-dark);
        border-color: var(--fourth-color-dark);
        color: white;
    }

/* TEMPLATE */
/*header.template {
    width: 100%;
    max-width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0 25px 0 0;
    -webkit-box-shadow: 0 1px 3px 0px rgba(0,0,0,.175);
    box-shadow: 0 1px 3px 0px rgba(0,0,0,.175);
    position: relative;
    z-index: 2;
}

    header.template figure {
        width: 230px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--primary-color);
        max-height: 60px;
        overflow: hidden;
    }

        header.template figure img {
            max-height: 45px;
        }

    header.template .fa-bars {
        font-size: 20px;
        color: white;
        padding: 0 20px;
    }

    header.template .user-info {
        display: flex;
        align-items: center;
        color: var(--secondary-color);
        cursor: pointer;
    }

        header.template .user-info i {
            font-size: 24px;
        }

        header.template .user-info p {
            margin: 0 0 0 10px;
            user-select: none;
        }

        header.template .user-info span {
            font-size: 8px;
            margin-left: 10px;
        }

    header.template .dropdown {
        display: flex;
        height: 100%;
        padding: 0 20px;
        transition: all .4s;
    }

        header.template .dropdown .arrow {
            font-size: 12px;
            margin-left: 10px;
        }

        header.template .dropdown.open .arrow:before {
            content: "\f0d7";
        }

        header.template .dropdown:hover {
            background-color: rgba(138,119,210, 0.1);
        }

        header.template .dropdown.open {
            background-color: rgba(138,119,210, 0.1);
            -webkit-box-shadow: 0 -2px 3px 0px rgba(0,0,0,.175);
            box-shadow: 0 -2px 3px 0px rgba(0,0,0,.175);
        }

    header.template .dropdown-menu {
        left: initial;
        right: 0;
        top: 58px;
        border-radius: 0;
        min-width: 155px;
        background-color: rgba(138,119,210, 0.1);
        border: none;
        -webkit-box-shadow: 0 2px 3px 0px rgba(0,0,0,.175);
        box-shadow: 0 2px 3px 0px rgba(0,0,0,.175);
        animation: drop .4s;
    }

        header.template .dropdown-menu a {
            color: var(--secondary-color);
            transition: all .4s;
        }

        header.template .dropdown-menu li:hover a {
            background-color: rgba(255,255,255,0.6);
        }*/

/*main {
    display: flex;
    min-height: 100%;
}

    main nav.menu {
        height: calc(100vh - 60px);
        width: 230px;
        background: var(--primary-color);
        overflow: auto;
        scroll-behavior: smooth;
    }

        /* width */
main nav.menu::-webkit-scrollbar {
    width: 4px;
}

/* Track */
main nav.menu::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
main nav.menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .6);
}

    /* Handle on hover */
    main nav.menu::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 1);
    }

main nav.menu ul {
    margin: 0;
    padding: 0;
}

    main nav.menu ul li {
        height: 50px;
        color: white;
        list-style: none;
        font-size: 16px;
        transition: all .4s ease-in-out;
        position: relative;
    }

        main nav.menu ul li a {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            color: unset;
            text-decoration: none;
            width: 100%;
            height: 100%;
            padding: 0 20px;
        }

        main nav.menu ul li .icon {
            max-width: 14px;
            font-size: 14px;
            color: rgba(255,255,255,0.4);
            margin-right: 10px;
        }

        main nav.menu ul li:hover, main nav.menu ul li.actived {
            background: rgba(255,255,255,0.2);
        }

            main nav.menu ul li:hover .icon, main nav.menu ul li.actived .icon {
                color: rgba(255,255,255,0.8);
            }

            main nav.menu ul li:hover:before, main nav.menu ul li.actived:before {
                content: '';
                position: absolute;
                width: 4px;
                height: 100%;
                background-color: var(--primary-color-dark);
            }

            main nav.menu ul li:hover a, main nav.menu ul li.actived a {
                font-weight: 600;
            }

main .main-content {
    padding: 30px;
    flex: 1;
    overflow: auto;
    max-height: calc(100vh - 60px);
}

    main .main-content::-webkit-scrollbar {
        width: 4px;
    }

    /* Track */
    main .main-content::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
    main .main-content::-webkit-scrollbar-thumb {
        background: var(--primary-color);
    }

        /* Handle on hover */
        main .main-content::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color-dark);
        }

.title-color {
    color: var(--btn-primary);
}

@keyframes drop {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.title-page {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 50px;
    margin-top: 25px !important;
}

.subtitle-page {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 50px;
}

.title-page a {
    position: relative;
}

    .title-page a:before {
        content: '';
        position: absolute;
        background: rgba(0,0,0,0.1);
        border-radius: 50%;
        width: 30px;
        height: 30px;
        top: -5px;
        left: -5px;
        opacity: 0;
    }

    .title-page a:hover:before {
        opacity: 1;
        transition: all .4s;
    }

    .title-page a img {
        max-width: 20px;
    }

.text-danger {
    padding-left: 1rem !important;
}

/*.box {
    display: flex;
    padding: 0 10px;
    margin-bottom: 15px;
}

    .box figure {
        min-width: 120px;
        min-height: 120px;
        max-width: 120px;
        max-height: 120px;
        border-radius: 30px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 10px 0 rgba(206,206,206,0.6);
        margin-right: 30px;
    }

        .box figure > * {
            max-width: 100%;
            width: 60px;
            font-size: 60px;
            color: black;
        }

    .box .content .title {
        margin: 0 0 15px 0;
        color: var(--primary-color);
        font-size: 20px;
        position: relative;
    }

        .box .content .title:after {
            content: '';
            height: 3px;
            width: 72px;
            background-color: var(--primary-color);
            position: absolute;
            bottom: -5px;
            left: 0;
        }

    .box .content .text {
        color: var(--text-color2);
        font-size: 16px;
    }*/

footer {
    width: 100%;
    height: 50px;
    position: absolute;
    padding: 10px;
    bottom: 0px;
    text-align: center;
    background-color: #fff;
}

.remove-border-shadow {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

.siga {
    color: var(--primary-color);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

button:focus {
    box-shadow: none !important;
}

.cardLogin {
    margin-top: 60px !important;
    padding-top: 30px !important;
    margin-bottom: 30px !important;
}

.inputLogin {
    background: white !important;
    height: 60px !important;
    max-height: 100% !important;
    border: solid 1px #808080 !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    font-size: 15px !important;
    border-radius: 13px !important;
    font-weight: 400 !important;
}

    .inputLogin:focus {
        border: solid 2px var(--primary-color) !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        transition: 0.3s;
        outline: none;
    }

.pLogin {
    margin-bottom: 0 !important;
}

.aLogin {
    cursor: pointer !important;
}

.a:hover {
    color: #30196b !important;
}

.inputConfirm {
    width: 100% !important;
    max-width: 70px !important;
    height: 70px !important;
    max-height: 100% !important;
    border: solid 2px #808080 !important;
    margin: 0 0 15px !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    font-size: 30px !important;
    border-radius: 23px !important;
    color: var(--text-color) !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    transition: all .4s !important;
}

    .inputConfirm:focus {
        border: solid 2px #512ab1 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        transition: 0.3s !important;
    }

.inputCreate {
    background: white !important;
    height: 60px !important;
    max-height: 100% !important;
    border: solid 1px #808080 !important;
    margin: 0 0 15px !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    font-size: 15px !important;
    border-radius: 13px !important;
    width: 100% !important;
    font-weight: 400 !important;
}

    .inputCreate:focus {
        border: solid 2px var(--btn-primary) !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        transition: 0.3s;
        outline: none;
    }

.hintCreate {
    font-size: 14px !important;
    color: rgba(0, 0, 0, 0.43) !important;
}

.termsCreate {
    font-size: 13px !important;
}

#submit {
    padding-right: 17px !important;
}

#submit_btn {
    background-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 500 !important;
    text-decoration: none;
}

    #submit_btn:hover {
        background-color: #f2f2f2 !important;
        color: var(--primary-color) !important;
        font-weight: 500 !important;
        border: solid 2px var(--primary-color) !important;
    }


/* MOBILE */
@media screen and (max-width: 992px) {
    body.login {
        background-position-x: 0;
    }

    article {
        height: auto;
        width: 100vw;
        flex-direction: column;
        justify-content: flex-start;
        top: 210px;
    }

        article:before {
            width: 100vw;
            height: 70vh;
            transform: rotate(0);
            border-radius: 0;
            bottom: 0;
        }

        article figure {
            border-right: 0;
            padding: 0 0 15px 0;
        }

            article figure:before {
                content: none;
            }

            article figure:after {
                content: none;
            }

    header.template figure {
        width: auto;
        flex: 1;
        justify-content: flex-start;
    }

    main nav.menu {
        position: fixed;
        top: 60px;
        transition: width .4s;
    }

        main nav.menu:not(.open) {
            width: 0;
        }

    .cardLogin {
        margin-top: 16px !important;
    }

    .inputConfirm {
        max-width: 50px !important;
        height: 50px !important;
        border-radius: 14px !important;
    }
}

#logo-title {
    font-family: 'Quicksand', sans-serif !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 30px !important;
    text-decoration: none !important;
    padding-left: 10px !important;
    padding-top: 6px;
    transition: 0.2s;
}

.center-infoUser {
    width: 100vw;
    height: 80vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.card-infoUser {
    font-family: 'Quicksand', sans-serif !important;
    color: #808080;
    -webkit-box-shadow: 0px 9px 24px 1px rgba(212,212,212,1);
    -moz-box-shadow: 0px 9px 24px 1px rgba(212,212,212,1);
    box-shadow: 0px 9px 24px 1px rgba(212,212,212,1);
    border-radius: 10px;
    max-width: 435px;
    padding: 3rem 3rem 0px 3rem;
}

.img-infoUser {
    width: 100%;
    padding-top: 65px;
}

@media only screen and (max-height: 700px) {
    .card-infoUser {
        max-height: 501px;
        overflow-y: auto;
    }
}

@media only screen and (max-height: 650px) {
    .card-infoUser {
        max-height: 450px;
        overflow-y: auto;
    }
}

@media only screen and (max-height: 600px) {
    .card-infoUser {
        max-height: 435px;
        overflow-y: auto;
    }
}
