@charset "utf-8";
@import url("reset.css");
@import url("xxl-grid.css");

/*------------------------------------------------------------------
VARIABLES
-------------------------------------------------------------------*/

:root {
    --verdeSMIG: #356c7c;
    --verdeSMIGcom: #89AFBA;
    --verdeSecondary: #578c9a;
    --verdeActive: #1ABC9C;
    --rojoSMIG: #b03f3e;
    --rojo: #933333;
    --rojoSecondary: #c89290;
    --rojo03: #af7c7c;
    --rojo04: #d34747;
    --gris00: #EEEEEE;
    --gris01: #DDDDDD;
    --gris02: #BFBFBF;
    --negro01: #111111;
    --negro02: #222222;
    --negro03: #333333;
    --negro04: #444444;
    --negro05: #555;
    --negro06: #666;
    --negro07: #777;
}


/* ----------------------------------------------------------------
	Bootstrap Adjustments
-----------------------------------------------------------------*/

@media (min-width: 1440px) {
    .container {
        width: auto;
        max-width: 1350px;
    }
}


/* ----------------------------------------------------------------
	Basic
-----------------------------------------------------------------*/

iframe {
    width: 100%;
    border: 0 !important;
    overflow: hidden !important;
}

::selection {
    background: #1ABC9C;
    color: #FFF;
    text-shadow: none;
}

::-moz-selection {
    background: var(--verdeActive);
    /* Firefox */
    color: #FFF;
    text-shadow: none;
}

::-webkit-selection {
    background: var(--verdeActive);
    /* Safari */
    color: #FFF;
    text-shadow: none;
}

:active,
:focus {
    outline: none !important;
}


/* ----------------------------------------------------------------
	Screen Height
-----------------------------------------------------------------*/

html,
body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}

body {
    color: var(--negro05);
    font-family: 'Lato', sans-serif;
    /*
    font-size: 1rem;
    font-weight: 400;
    font-weight: 500;
    line-height: 1.5;
    line-height: 1.8;
    */
}


/*Debe ser un div NO SECTION(float)*/

.contenido {
    background-color: var(--gris00);
    background-color: #f5f6fa;
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -206px;
    overflow: visible;
    padding-bottom: 50px;
    width: 100%;
}

footer,
.push {
    min-height: 186px;
    min-height: 206px;
}


/* ----------------------------------------------------------------
	Typography
-----------------------------------------------------------------*/

a {
    text-decoration: none;
    color: var(--verdeActive);
}

a:hover {
    color: var(--negro02);
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #444;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 30px 0;
    font-family: 'Poppins', sans-serif;
}

h5,
h6 {
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 0.875rem;
}

h6 {
    font-size: 12px;
}

h4 {
    font-weight: 600;
}

h5,
h6 {
    font-weight: bold;
}

.font-sans {
    font-family: 'Montserrat', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.text-red {
    color: var(--rojoSMIG);
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 1.75rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    h4 {
        font-size: 1rem;
    }
}

@media (max-width: 1200px) {
    .display-1 {
        font-size: calc( 1.725rem + 5.7vw);
    }
    .display-2 {
        font-size: calc( 1.675rem + 5.1vw);
    }
    .display-3 {
        font-size: calc( 1.575rem + 3.9vw);
    }
    .display-4 {
        font-size: calc( 1.475rem + 2.7vw);
    }
}


/* ----------------------------------------------------------------
	Text Color Utility Classes
-----------------------------------------------------------------*/

.text-ts {
    -webkit-transition: color .5s ease;
    transition: color .5s ease;
}

.text-verdeSMIG {
    color: var(--verdeSMIG);
}

.text-verdeSMIG2 {
    color: var(--verdeSMIGcom);
}

.text-verdeSecondary {
    color: var(--verdeSecondary);
}

.text-rojoSMIG {
    color: var(--rojoSMIG);
}

.text-rojo {
    color: var(--rojo);
}

.text-rojoSecondary {
    color: var(--rojoSecondary);
}


/* ----------------------------------------------------------------
	BG Color Utility Classes
-----------------------------------------------------------------*/

.bg-ts {
    -webkit-transition: background-color .5s ease;
    transition: background-color .5s ease;
}

.bg-verdeSMIG {
    background-color: var(--verdeSMIG);
}

.bg-verdeSecondary {
    background-color: var(--verdeSecondary);
}

.bg-rojoSMIG {
    background-color: var(--rojoSMIG);
}


/* ----------------------------------------------------------------
	Plantilla
-----------------------------------------------------------------*/

.btnSMIG01 {
    background-color: var(--verdeSMIG);
    color: #FFF;
}

.btnSMIG01:hover {
    background-color: var(--verdeActive);
    color: #FFF;
}

.btnSMIG02 {
    background-color: var(--rojoSMIG);
    color: #FFF;
}

.btnSMIG02:hover {
    background-color: var(--rojo);
    color: #FFF;
}

.btn-outline-SMIG01 {
    color: var(--verdeSMIG);
    border-color: var(--verdeSMIG);
}

.btn-outline-SMIG01:hover {
    background-color: var(--verdeActive);
    border-color: var(--verdeActive);
    color: #FFF;
}

.btn-outline-SMIG02 {
    border-color: var(--rojoSMIG);
    color: var(--rojoSMIG);
}

.btn-outline-SMIG02:hover {
    border-color: var(--rojo);
    background-color: var(--rojo);
    color: #FFF;
}


/* ----------------------------------------------------------------
	Login
-----------------------------------------------------------------*/

#box-login-title {
    margin-top: 20%;
    margin-left: 10%;
}

#box-login-title .display-3 {
    font-size: 58px;
}

#box-index-form {
    background-color: #FFF;
    border-radius: 8px;
    padding: 60px 5%;
    padding: 20px 5%;
    margin: 20px 0;
}

#box-index-form h1 {
    color: var(--verdeSecondary);
    font-size: 2.2em;
    font-size: 1.4em;
    line-height: 1.3em;
    text-align: center;
    margin: 5px 0;
}

#box-index-form h2 {
    color: var(--rojoSMIG);
    font-weight: 600;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}

#box-index-form h5 {
    font-size: 22px;
    margin: 0;
    margin-bottom: 6px;
}

#box-index-form p {
    color: var(--negro07);
    font-size: 14px;
    margin: 0;
    margin-bottom: 2.1rem;
}

#box-index-form label {
    background: none;
    width: 100%;
}

.btnIdioma{
    background-color: none;
    color: #8b1c15 !important;
    font-size: 18px;
}
.btnIdioma:hover{
    color: #933333;
    text-decoration: underline;
}

@media (min-width: 768px) {
    #box-index-form {
        margin: 10% 0;
    }
}

@media (min-width: 1200px) {
    #box-login-title {
        margin: 15% 6% 0;
    }
    #box-login-title .display-3 {
        font-size: 68px;
    }
    #box-login-title p {
        font-size: 1.1rem;
    }
    #box-index-form {
        margin: 5% 0 0;
        padding-bottom: 40px;
    }
}

@media (min-width: 1920px) {
    #box-login-title .display-3 {
        font-size: 78px;
    }
    #box-index-form {
        margin: 12% 0 0;
    }
}


/* ----------------------------------------------------------------
	FORMS
-----------------------------------------------------------------*/

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    margin-bottom: .3rem;
}

.form-group label span {
    color: red;
}


/* ----------------------------------------------------------------
	NAVBAR MOBILE
-----------------------------------------------------------------*/

#nav-mobile {
    background-color: var(--verdeSMIG);
    border-bottom: 1px solid var(--verdeSecondary);
    padding: 5px 0;
    overflow: hidden;
    position: fixed;
    /* Set the navbar to fixed position */
    top: 0;
    /* Position the navbar at the top of the page */
    width: 100%;
    /* Full width */
    z-index: 99;
}

#nav-mobile .container {
    cursor: pointer;
    display: inline-block;
}

#nav-mobile .bar1,
#nav-mobile .bar2,
#nav-mobile .bar3 {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

#nav-mobile .bar1 {
    margin-top: 15px;
}

#nav-mobile .active .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

#nav-mobile .active .bar2 {
    opacity: 0;
}

#nav-mobile .active .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

.sidenav {
    height: calc(100% - 64px);
    width: 0;
    position: fixed;
    z-index: 1;
    top: 59px;
    right: 0;
    background-color: #111;
    background-color: rgba(238, 237, 246, 0.95);
    overflow-x: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-top: 60px;
    text-align: center;
    z-index: 99;
}

.sidenav a {
    padding: 24px 8px 8px 8px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    color: #404050;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
    color: #000;
}


/* ----------------------------------------------------------------
	NAVBAR DESKTOP
-----------------------------------------------------------------*/

.wrapper-nbt {
    display: flex;
    align-items: stretch;
}

#content {
    padding: 25px;
    margin-top: 60px;
    min-height: 80vh;
    transition: all 0.3s;
    width: 100%;
}

@media (min-width: 992px) and (max-width: 1600px) {
    #content {
        width: calc(100vw - 300px);
    }
}

#sidebar {
    background: #FFF;
    border-radius: 4px;
    min-width: 280px;
    max-width: 280px;
    color: #fff;
    color: #565f63;
    color: #808089;
    margin: 0;
    padding: 25px 0;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 0 28px 0 rgba(82, 63, 105, .13);
    box-shadow: 0 0 28px 0 rgba(82, 63, 105, .13);
}

#sidebar img {
    transition: all 0.1s ease;
}

.sidebar-toogle {
    cursor: pointer;
    margin: 4px 0;
}

.sidebar-toogle i {
    display: none;
}

#sidebar .row {
    background: none;
    margin: 0 12px 25px;
}

#sidebar .row .col {
    padding: 0;
}

.sidebar-separator {
    height: 0;
    border-top: 1px solid #ebedf2;
    margin: 25px 0;
}

#sidebar ul {
    margin: 0 15px;
}

#sidebar ul li {
    border-radius: 4px;
}

#sidebar ul li a {
    background: none;
    border-radius: 4px;
    cursor: pointer;
    padding: .8rem 0;
    margin: .2rem 0;
    font-size: 1.1em;
    font-size: 1.25rem;
    display: block;
    text-align: left;
    transition: all 0.5s ease;
}

#sidebar ul li a i {
    background: none;
    color: var(--negro07);
    font-size: 1.1rem;
    margin: 0 10px 0 25px;
    min-width: 22px;
}

#sidebar ul li a span {
    background: none;
    font-size: 1rem;
    color: var(--negro07);
}

#sidebar ul li:hover {
    background-color: rgba(53, 108, 124, .08);
}

#sidebar ul li:hover a {
    text-decoration: none;
}

#sidebar ul li:hover i,
#sidebar ul li:hover span {
    color: var(--verdeSecondary);
}

#sidebar ul li.active {
    background-color: var(--verdeSMIG);
    color: #FFF;
}

#sidebar ul li.active a i,
#sidebar ul li.active a span {
    color: #FFF;
}

#sidebar.active {
    min-width: 80px;
    max-width: 80px;
    text-align: center;
}

#sidebar.active .row {
    margin: 25px 20px;
}

#sidebar.active span,
#sidebar.active h5,
#sidebar.active img {
    display: none;
    transition: all 0.1s ease;
}

#sidebar.active i {
    display: block;
    transition: all 0.1s ease;
    width: 100%;
}

#sidebar.active [class^='col-']:first-child {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
}

#sidebar.active ul li a {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}

#sidebar.active ul li a i {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    text-align: center;
}


/* ----------------------------------------------------------------
	breadcumbs
-----------------------------------------------------------------*/

.breadcrumbs-admin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style-type: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.breadcrumbs-admin a {
    padding: 0 .35rem 0 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--negro05);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.breadcrumbs-admin span {
    padding: 0 .45rem 0 0;
}

.breadcrumbs-admin span::after {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    content: " ";
    background: rgba(149, 156, 182, .5);
}

#navbar-user a {
    color: var(--negro05);
}

.box-contenido {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 1rem 2rem;
    margin: 20px 0 0;
    -webkit-box-shadow: 0 0 13px 0 rgba(82, 63, 105, .1);
    box-shadow: 0 0 13px 0 rgba(82, 63, 105, .1);
}

@media (min-width: 992px) {
    #content {
        margin-top: 0;
    }
}


/* ----------------------------------------------------------------
	Membresías
-----------------------------------------------------------------*/

.iconoMembresia {
    font-size: 50px;
    color: var(--verdeSMIG);
}


/* ----------------------------------------------------------------
	Evento
-----------------------------------------------------------------*/

.nav-tabs {
    border: 1px solid var(--verdeSMIG);
    border-radius: 40px;
    filter: drop-shadow(0px 4px 4px rgba(51, 51, 51, 0.04)) drop-shadow(0px 4px 16px rgba(51, 51, 51, 0.08));
}

.nav-tabs .nav-item {
    flex: 1 1 auto !important;
    text-align: center;
}

.nav-tabs .nav-link {
    color: var(--verdeActive);
    text-align: center;
}

.nav-tabs .nav-link.active {
    background-color: var(--verdeSMIG);
    border-radius: 40px;
    color: #FFF;
    border-color: var(--verdeSMIG);
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: transparent;
}


/* ----------------------------------------------------------------
	Footer
-----------------------------------------------------------------*/

footer {
    background: var(--gris01);
    border-top: 5px solid var(--gris02);
    color: #4d4d4d;
    color: var(--negro05);
    overflow: visible;
    padding: 40px 0 10px;
    width: 100%;
}

footer [class^='col-'] {
    background: none;
}

footer p,
footer a {
    font-size: 15px;
    font-weight: normal;
}

footer a {
    color: var(--verdeSecondary);
}

footer a:hover {
    color: var(--verdeActive);
}

footer a.social-icon {
    background-color: transparent;
    color: var(--rojoSMIG);
    display: inline-block;
    height: 32px;
    font-size: 0.875rem;
    line-height: 30px !important;
    text-align: center !important;
    margin: 0 5px 5px 0;
    width: 32px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

footer a.facebook-icon:hover {
    background-color: #3B5998 !important;
    color: #FFF;
}

footer a.twitter-icon:hover {
    background-color: #00ACEE !important;
    color: #FFF;
}

footer a.youtube-icon:hover {
    background-color: #C4302B !important;
    color: #FFF;
}

footer a.linkedin-icon:hover {
    background-color: #0E76A8 !important;
    color: #FFF;
}

@media (min-width: 1200px) {
    footer p,
    footer a {
        font-size: 16px;
    }
    #logo-footer {
        width: 80%;
    }
    footer a.social-icon {
        font-size: 1rem;
    }
}

@media (min-width: 1400px) {
    #logo-footer {
        width: 72%;
    }
}

@media (min-width: 1920px) {
    #logo-footer {
        width: 52%;
    }
}


/* ----------------------------------------------------------------
	Responsive
-----------------------------------------------------------------*/


/*
@media (min-width: 768px) {
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

* {
  background-color: rgba(255, 0, 0, .2);
  }

  * * {
  background-color: rgba(0, 255, 0, .2);
  }

  * * * {
  background-color: rgba(0, 0, 255, .2);
  }

  * * * * {
  background-color: rgba(255, 0, 255, .2);
  }

  * * * * * {
  background-color: rgba(0, 255, 255, .2);
  }

  * * * * * * {
  background-color: rgba(255, 255, 0, .2);
  }

  * * * * * * * {
  background-color: rgba(255, 0, 0, .2);
  }

  * * * * * * * * {
  background-color: rgba(0, 255, 0, .2);
  }

  * * * * * * * * * {
  background-color: rgba(0, 0, 255, .2);
  }
*/
