﻿
html, body {
    height: 100%;
    color: #6C696C;
}

/* Colores */

.title {
    color: #4D4D4D !important;
}

.subtitle {
    color: #4D4D4D !important;
}

/* Menú superior */

#nav-header-atm {
    padding: 0;
    background-color: white !important;
}

    #nav-header-atm img {
        height: 100%;
    }

@media only screen and (max-width: 600px) {
    #nav-header-atm .col {
        height: 50px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #nav-header-atm .col {
        height: 64px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #nav-header-atm .col {
        height: 74px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    #nav-header-atm .col {
        height: 84px;
    }
}

@media only screen and (min-width: 1200px) {
    #nav-header-atm .col {
        height: 94px;
    }
}


#nav-header {
    padding: 0;
    background-color: #6C696C !important;
}

    #nav-header .nav-title {
        color: white !important;
        margin-bottom: 0;
    }

    #nav-header .navbar-brand {
        color: white !important;
    }

    #nav-header .nav-link {
        padding: 0;
        color: white !important;
    }


    #nav-header .dropdown-menu {
        left: -45px;
    }

        #nav-header .dropdown-menu a {
            color: black !important;
            padding: .5rem 1rem;
            width: 100%;
        }

/* Menú lateral */

.navbar-burger {
    width: 30px;
    height: 30px;
}

#cosmo-overlay {
    background-color: rgba(30, 30, 30, 0.4);
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.side-menu-header {
    text-align: center;
    padding: 1em;
    border-bottom: 1px solid #ccc;
}

    .side-menu-header img {
        max-height: 130px;
    }

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: white; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 52px;
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    box-shadow: 4px 0px 4px -2px rgba(0,0,0,0.4);
}
    /* Abierto */
    .sidenav.active {
        width: 360px;
    }

    /* Links del menú */
    .sidenav a {
        padding: 8px 8px 8px 2px;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        color: #333;
        display: block;
        transition: 0.5s;
    }

        .sidenav a:hover {
            background-color: rgba(200, 200, 200, 0.4);
        }

/* Contenido */

.right {
    text-align: right;
}

body {
    /*//background-image: linear-gradient(to bottom, rgba(255,255,255, .2) 0%,rgba(255,255,255,0.4) 100%), url("../images/shared/background.png");*/
    background-repeat: repeat;
}

.body-content {
    padding-top: 2.5em;
    padding-bottom: 4.5em;
    min-height: 100vh;
}

.body-content-atm {
    padding-top: 6.5em;
    padding-bottom: 5em;
    min-height: 80vh;
}

.cosmo-menu {
    text-align: center;
    padding: 1em;
    height: 250px;
    color: black;
    text-decoration: none;
}

    .cosmo-menu:hover {
        color: black;
        text-decoration: none;
    }

        .cosmo-menu:hover img {
            opacity: 1;
        }

    .cosmo-menu i {
        font-size: 5rem;
        /*color: #17a2b8 !important;*/
        color: black !important;
        margin-bottom: 1rem;
    }

    .cosmo-menu > img {
        max-height: 120px;
        opacity: 0.7;
    }

    .cosmo-menu > h5 {
        font-weight: bold;
        /*color: #005724;*/
    }

.btn-label-space {
    margin-top: 24px;
}

.btn-round {
    border-radius: 22px !important;
    min-width: 160px;
    height: 45px;
    font-size: 18px;
}

.btn-flat {
    background: none;
    border: none;
    font-weight: bold;
    color: #0BAC5F;
    min-width: 160px;
    text-decoration-line: underline;
    font-size: 18px;
}


.btn-success {
    background: #0BAC5F;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

/* Alertas */
.alert {
    padding-top: 5px;
    padding-bottom: 5px;
}

.dialog {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(14, 95, 175, 0.1);
}

.dialog-title {
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 10px;
    margin-top: 10px;
}

    .dialog-title p {
        font-weight: bold;
        color: #005724;
        margin: 0;
    }

.dialog-body {
    margin-top: 12em;
    background: white;
}

.dialog-text {
    text-align: justify;
}

/* Loader */
.loader {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 15px solid white;
    border-top: 15px solid #005625;
    background: rgba(1, 85, 50, 0.1);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Defaults */

a {
    cursor: pointer !important;
}

.error {
    color: indianred;
}

.form-group {
    margin-bottom: .5rem !important;
}

.card {
    box-shadow: 5px 5px 7px -1px rgba(0,0,0,0.4);
}

.form-control {
    border: solid 1px #aaaaaa;
}

/* Spinner */

#circularG {
    position: relative;
    width: 80px;
    height: 80px
}

.circularG {
    position: absolute;
    background-color: #FFFFFF;
    width: 18px;
    height: 18px;
    -moz-border-radius: 12px;
    -moz-animation-name: bounce_circularG;
    -moz-animation-duration: 1.04s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-direction: normal;
    -webkit-border-radius: 12px;
    -webkit-animation-name: bounce_circularG;
    -webkit-animation-duration: 1.04s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -ms-border-radius: 12px;
    -ms-animation-name: bounce_circularG;
    -ms-animation-duration: 1.04s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-direction: normal;
    -o-border-radius: 12px;
    -o-animation-name: bounce_circularG;
    -o-animation-duration: 1.04s;
    -o-animation-iteration-count: infinite;
    -o-animation-direction: normal;
    border-radius: 12px;
    animation-name: bounce_circularG;
    animation-duration: 1.04s;
    animation-iteration-count: infinite;
    animation-direction: normal;
}

#circularG_1 {
    left: 0;
    top: 32px;
    -moz-animation-delay: 0.39s;
    -webkit-animation-delay: 0.39s;
    -ms-animation-delay: 0.39s;
    -o-animation-delay: 0.39s;
    animation-delay: 0.39s;
}

#circularG_2 {
    left: 8px;
    top: 8px;
    -moz-animation-delay: 0.52s;
    -webkit-animation-delay: 0.52s;
    -ms-animation-delay: 0.52s;
    -o-animation-delay: 0.52s;
    animation-delay: 0.52s;
}

#circularG_3 {
    top: 0;
    left: 32px;
    -moz-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -ms-animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
    animation-delay: 0.65s;
}

#circularG_4 {
    right: 8px;
    top: 8px;
    -moz-animation-delay: 0.78s;
    -webkit-animation-delay: 0.78s;
    -ms-animation-delay: 0.78s;
    -o-animation-delay: 0.78s;
    animation-delay: 0.78s;
}

#circularG_5 {
    right: 0;
    top: 32px;
    -moz-animation-delay: 0.91s;
    -webkit-animation-delay: 0.91s;
    -ms-animation-delay: 0.91s;
    -o-animation-delay: 0.91s;
    animation-delay: 0.91s;
}

#circularG_6 {
    right: 8px;
    bottom: 8px;
    -moz-animation-delay: 1.04s;
    -webkit-animation-delay: 1.04s;
    -ms-animation-delay: 1.04s;
    -o-animation-delay: 1.04s;
    animation-delay: 1.04s;
}

#circularG_7 {
    left: 32px;
    bottom: 0;
    -moz-animation-delay: 1.17s;
    -webkit-animation-delay: 1.17s;
    -ms-animation-delay: 1.17s;
    -o-animation-delay: 1.17s;
    animation-delay: 1.17s;
}

#circularG_8 {
    left: 8px;
    bottom: 8px;
    -moz-animation-delay: 1.3s;
    -webkit-animation-delay: 1.3s;
    -ms-animation-delay: 1.3s;
    -o-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

@-moz-keyframes bounce_circularG {
    0% {
        -moz-transform: scale(1)
    }

    100% {
        -moz-transform: scale(.3)
    }
}

@-webkit-keyframes bounce_circularG {
    0% {
        -webkit-transform: scale(1)
    }

    100% {
        -webkit-transform: scale(.3)
    }
}

@-ms-keyframes bounce_circularG {
    0% {
        -ms-transform: scale(1)
    }

    100% {
        -ms-transform: scale(.3)
    }
}

@-o-keyframes bounce_circularG {
    0% {
        -o-transform: scale(1)
    }

    100% {
        -o-transform: scale(.3)
    }
}

@keyframes bounce_circularG {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(.3)
    }
}

.box-loader {
    display: flex;
    align-items: end;
    justify-content: center;
}

.text-loader {
    color: #FFFFFF;
    text-align: center;
    /*font-size: 12px;*/
    font-weight: bolder;
}