/*
    DEMO STYLE
*/
@import 'https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700';
/*////////////////////////CheckBox/////////////////////////*/

/* The container */
.containerCheckBox {
    display: block;
    position: relative;
    padding-left: 45px;
    padding-top: 8px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.containerCheckBox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 35px;
    width: 35px;
    border-radius: 7px;
    background-color: #d5d5d5;
    transform: scale(0.7);
}

/* On mouse-over, add a grey background color */
.containerCheckBox:hover input ~ .checkmark {
    background-color: #ccc;
    transform: scale(0.7);
}

/* When the checkbox is checked, add a blue background */
.containerCheckBox input:checked ~ .checkmark {
    background-color: #1f8fe9;
    border-radius: 7px;
    transform: scale(0.7);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.containerCheckBox input:checked ~ .checkmark:after {
    display: block;
    padding-top: 9px;
    height: 22px;
    width: 9px;
    margin-left: 3px;
}

/* Style the checkmark/indicator */
.containerCheckBox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.text-on-pannel {
    background: #fff none repeat scroll 0 0;
    height: auto;
    margin-left: 20px;
    padding: 5px 5px;
    position: absolute;
    margin-top: -47px;
}

.panel {
    /* for text on pannel */
    margin-top: 27px !important;
}

.panel-body {
    padding-top: 30px !important;
}

.panel {
    border-radius: 0px;
}

.entidad_div {
    cursor: pointer;
    border-bottom: 1px solid #e3e3e3;
    padding-top: 6px;
    padding-left: 12px;
}

.entidad_div:hover {
    background-color: #f0f0f0;
}

.select_enti {
    margin-bottom: 6px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 21px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: -3px;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    left: 1px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #2196f3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: white;
}

.btn {
    border-radius: 30px;
}

.form-control {
    border-radius: 30px;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track:vertical {
    background: #dedddd;
}

/* Handle */
::-webkit-scrollbar-thumb:vertical {
    background: #bdbdbd;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #0f0e0e;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 45%;
    bottom: 30px;
    font-size: 17px;
}

footer {
    background: #f0eeee;
    position: fixed;
    height: 100px;
    bottom: 0;
    width: 100%;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.elli > li {
    font-size: 17px;
    padding-top: 11px;
    font-family: Arial, Helvetica, sans-serif;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    color: #999;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 999;
    background: white;
    color: red;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
.fix-sidebar {
    width: 228px;
    height: 100vh;
    /*z-index: 999;*/
    background: white;
    color: red;
    transition: all 0.3s;
    overflow-y: scroll;
    margin-left: -10px;
    border-right: 1px solid #eceaea;
    /*box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);*/
}

.fix-sidebar ul.components {
    padding: 7px 0;
}

.fix-sidebar ul p {
    color: #fff;
    padding: 10px;
}

.fix-sidebar ul li a {
    padding: 10px;
    margin-top: 3px;
    font-size: 1.1em;
    display: block;
    color: #37474f;
}

.fix-sidebar ul li a:hover {
    color: #616161;
    background: #eeeeee;
}

.navBarra {
    background: linear-gradient(to right, #3161a9, #09182f);
    height: 60px;
    margin: -20px;
    position: fixed;
    z-index: 998;
    width: 100%;
}

#sidebar.active {
    left: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #0d6a9a;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #cfdedf;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 16px;
}

#dismiss:hover {
    background: #2488bb;
    color: white;
}

.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    display: none;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: linear-gradient(to right, #09182f, #3161a9);
}
#sidebar ul.components {
    padding: 7px 0;
    border-bottom: 1px solid #eeeeee;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    margin-top: 3px;
    font-size: 1.1em;
    display: block;
    color: #757575;
}

#sidebar ul li a:hover {
    color: #616161;
    background: #eeeeee;
}

#sidebar ul li.active > a,
a[aria-expanded='true'] {
    color: #424242;
    font-weight: 600;
    background: #ededed;
}

a[data-toggle='collapse'] {
    position: relative;
}

a[aria-expanded='false']::before,
a[aria-expanded='true']::before {
    content: '\e259';
    display: none;
    position: absolute;
    right: 20px;
    font-size: 0.6em;
}
a[aria-expanded='true']::before {
    content: '\e260';
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}
a.download {
    background: #fff;
    color: #7386d5;
}
a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

.formato01 {
    color: #434343;
}
.formato01Val {
    color: #434343;
    text-align: right;
    font-size: 30px;
}

.formato02 {
    color: #58892e;
}
.formato02Val {
    color: #58892e;
    text-align: right;
    font-size: 30px;
}

.formato03 {
    color: #2176af;
}
.formato03Val {
    color: #2176af;
    text-align: right;
    font-size: 30px;
}

.formato04 {
    color: #ec4137;
}
.formato04Val {
    color: #ec4137;
    text-align: right;
    font-size: 30px;
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}
.rotating {
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
    transform-origin: 50% 50%;
}

.sh {
    border-right: solid 1px;
    border-right-color: #ddd;
    border-left: solid 1px;
    border-left-color: #ddd;
    background-color: #f5f5f5;
}

#spinnerLoading {
    margin: 20px;
    width: 200px;
    height: 200px;
    margin-left: 40%;
    margin-top: 7%;
}

#spinnerLoadingMobile {
    margin: 20px;
    width: 200px;
    height: 200px;
    margin-left: 25%;
    margin-top: 50%;
}

.search-select {
    background: #e0e0e0;
}

.barra_herramientas {
    height: 7vh;
    margin-top: 10px;
    overflow-y: hidden;
}

.barra_herramientas_movil {
    height: 50px;
    margin-top: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.ventana_contenido {
    height: 77vh;
}

.menu_activo {
    border-top-color: white;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    color: #5c7784;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    font-weight: 600;
}

.btn {
    font-weight: 600;
}

/* @media only screen and (max-width: 768px) {
	
	body{
		font-size: 18px
	}
  } */
