.wrapper {
    display: flex;
    /* align-items: stretch; */
}     
a[data-toggle="collapse"] {
    position: relative;
}

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
}

a[aria-expanded="true"]::before {
    content: '\e260';
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

#sidebar {
	min-width: 350px;
    max-width: 350px;
    background-color: var(--bar-color);
	color: #fff;
    transition: all 0.3s;
	z-index:1;
	position: absolute;
	top: 44px;
	left: 2px;
	font-size: 15px;
	overflow:auto;
	max-height: -moz-calc(100% - 60px);
    max-height: -webkit-calc(100% - 60px);
    max-height: calc(100% - 60px);
	border-radius: 8px;
}
#sidebar li ul ul{
	/*max-height:400px;*/
    overflow-y:auto;
    overflow-x:hidden;
}

#sidebar .sidebar-header {
    /* padding: 20px; */
    /* background-color: rgba(123, 163, 180, 0.50); */
} 

#sidebar ul.components {
    /* padding: 40px 0; */
	color: black;
    /* border-bottom: 1px solid #47748b; */
}
#sidebar output{
	margin-left: 5px;
    margin-right: 5px;
}
#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 5px;
    /* font-size: 0.8em; */
    display: block;
	color: var(--main-font-color);
}
/* #sidebar ul li a:hover {
    color: #7386D5;
    background-color: #fff;
}
 */
#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #000;
    /* background-color: rgba(123, 163, 180, 0.50); */
}
ul ul a {
    /* font-size: 0.9em !important; */
    padding-left: 30px !important;
    /* background-color: rgba(123, 163, 180, 0.50); */
	color: #000 !important;
}
ul ul ul a {
    /* font-size: 0.9em !important; */
    padding-left: 50px !important;
    /* background-color: rgba(123, 163, 180, 0.50); */
}
ul ul ul ul a {
    /* font-size: 0.9em !important; */
    padding-left: 70px !important;
    /* background-color: rgba(123, 163, 180, 0.50); */
}
ul ul ul ul ul a {
    /* font-size: 0.9em !important; */
    padding-left: 90px !important;
    /* background-color: rgba(123, 163, 180, 0.50); */
}
/* Shrinking the sidebar from 250px to 80px and center aligining its content*/
#sidebar.active {
    /* min-width: 80px;
    max-width: 80px; 
    text-align: center;*/
	margin-left: -353px;
}

/* Toggling the sidebar header content, hide the big heading [h3] and showing the small heading [strong] and vice versa*/
#sidebar .sidebar-header strong {
    display: none;
}
input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent; 
  border-color: transparent;
  color: transparent;
}

/* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #000000;
  height: 18px;
  width: 8px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  margin-top: -7px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 18px;
  width: 8px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 18px;
  width: 8px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  /* background: #7ba3b4; */
  background: rgb(127,127,127);
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #367ebd;
  background: rgb(217,217,217);
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: rgb(127,127,127);
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]:focus::-ms-fill-lower {
  background: #7ba3b4;
}
input[type=range]::-ms-fill-upper {
  background: #7ba3b4;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]:focus::-ms-fill-upper {
  background: #367ebd;
}

::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #d9d9d9;
	border-radius: 8px;
}

::-webkit-scrollbar{
	width: 10px;	
}

::-webkit-scrollbar-thumb{
	background-color: rgb(227,71,34);
	border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover{
	background-color: rgb(255,99,62);
	cursor: pointer;
}
form {
    /** FLEX **/
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
	text-align: left;
}
form a div{
    width:95%;
	display: flex;
	cursor: default;
}
form a{
    width:50%;
	display: flex;
}
form span{
    width:5%;
	display: block;
	cursor: pointer;
	height: 100%;
}
form .sliderRange {
    width: 40%;
    /* flex: 0 0 100%; */
	display: inline !important;
	margin-right: 10px;
}
.listaColores {
	display: block !important;
}
.listaColores > div > div {	
	width: 25px !important;
	height: 25px !important;
	border-radius: 8px;
}
.listaColores > div > span{
	margin-left: 10px;
	width: 90%;
}

#gmTop {
	position: absolute;
    top: 2px;
    left: 2px;
    height: 40px;
    width: 350px;
    z-index: 2;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 8px;
    background-color: var(--bar-color);
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -ms-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}
#gmTop:hover,
#gmTop:focus {
    /*background-color: rgba(173, 213, 230, 0.90);*/
	background-color: rgba(155, 177, 65, 1.0);
}
#gmTop .gmPanel {
	margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
	background-color: rgba(116, 116, 8);
	border-radius: 5px;
}
#gmTop .gmPanel .gmPanel-item {
    margin: 0px;
    padding: 0px;
    float: left;
    font-size: 20px;
    line-height: 20px;
    color: rgba(52, 48, 58, 1.00);
    margin-left: 40px;
    cursor: pointer;
}
.fa-layers {
    transform: rotate(50deg) skewX(24deg) skewY(12deg);
    -webkit-transform: rotate(50deg) skewX(24deg) skewY(12deg);
    -ms-transform: rotate(50deg) skewX(24deg) skewY(12deg);
}
#gmFooter:hover {
    /*transition: all ease 2s;*/
}
#gmFooter {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 50px;
    /*padding: 5px 20px;*/
    background-color: #F5F6F4;
	z-index:2;
}
#gmFooter .list-logos {
    display: inline-block;
    position: relative;
    text-align: center;
    margin: 0px;
    padding: 0px;
	width: 100%;
}
#gmFooter .list-logos .list-logo {
    display: inline-block;
}
#gmFooter .list-logos .list-logo .img-logo-thumb {
    height: 50px;
	border-radius: 5px;
	margin-left: 10px;
}
#gmFooter .list-logos .list-logo .img-logo-normal {
    position: absolute;
    bottom: 55px;
    left: 50%;
    max-width: 50px;
    max-height: 30px;
    margin: 0px;
    padding: 0px;
    visibility: hidden;
    opacity: 0;
    border: none;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: #FFFFFF;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: -20;
}
#gmFooter .list-logos .list-logo .img-logo-thumb:hover+.img-logo-normal {
    max-width: 500px;
    max-height: 300px;
    visibility: visible;
    opacity: 1;
    /*transform: perspective( 1000px) rotateY(20deg);*/
}
.gmControlSH{
	position: absolute;
    z-index: 10;
    right: 50px;
    width: 50px;
    cursor: pointer;
    height: 50px;
    padding-top: 8px;
	text-align: center;
}
.selectPais {
    position: fixed;
    top: 0px !important;
    left: 0px;
    height: 100% !important;
    background: rgba(255, 255, 255, 0.6) !important;
    color: rgba(39, 122, 75, 0.9) !important;
    overflow-y: visible !important;
    cursor: pointer;
    text-align: left;
	padding: 60px calc(100%/4) !important;
	z-index:101;
}
.Msecundario {
    overflow:hidden;
    height:0px;
    padding-left: 0px;
    width:100%;
    float: left;
    background:  rgba(255, 255, 255, 0.99);
    color:  rgba(64, 147, 86, 0.882);
    transition:all ease 1s;
}

.Msecundario > li:hover {
    background:  rgba(37, 55, 75, 0.99);
    color:  rgba(255, 255, 255, 0.99);
}
.Msecundario>li>img {
    height: 80px !important;
    float: left !important;
    width: 160px !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
    margin-bottom: 20px !important;
}
.Msecundario > li {
    float: left;
    width: 200px;
    height: 120px;
    margin: 20px;
    text-align:center;
	list-style: none;
}
.Msecundario .active {
    background: rgba(37, 55, 75, 0.99) !important;
    color: rgba(255, 255, 255, 0.99) !important;
}
html,body {
    height: 100%;
	/*font-family: "freight-sans-pro" !important;*/
	font-family: 'Rubik', sans-serif !important;
}
.tooltip{
	font-family: 'Rubik', sans-serif !important;
}
.hovertext text*{
	color: rgb(0,0,0) !important;
	/*font-family: "freight-sans-pro" !important;*/
}
body,td,th {
    /* font-weight: 600; */
    /* font-size: 14px; */
    line-height: 1.4em;
    color: #34303A;
    text-transform: none;
}
body {
    position: relative;
    height: 100%;
    margin: 0px;
    padding: 0px;
    background-color: #E5E3DF;
    min-height: 100%;
    overflow: hidden !important;
}
/* -------------------------------------------------- */

h1,h2,h3,h4,h5,h6 {
    margin: 24px 0px 24px 0px;
    /*font-family: "acumin-pro-extra-condensed"; !important; */
    color: #34303A;
    line-height: 1.3em;
    /*letter-spacing: -0.02em !important;*/
    text-transform: none !important;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    cursor: default;
}
h1 {
    font-size: 35px;
}
h2 {
    font-size: 28px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 21px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 18px;
    font-style: italic;
}
#infoPais img{display:none;}
/*
#infoPais{
  position: relative;
  width: 500px;
  height: 300px;
  color: #ffffff;
  overflow: hidden;
  margin: auto;
}
#infoPais img{
  position: absolute;
  top: 0;
  left: 0;
  transition: all 1s ease;
}
#infoPais:hover img{
  transform: scale(1.2);
}
#infoPais .content{
  position: relative;
  z-index: 1;
}
#infoPais .content h2{
  color: white;
  text-shadow: 3px 2px 10px #545454;
  text-align: center;
}*/

.spinner1 {
	position: absolute;
    top: 0px;
    left: 0px;    
    width: 100%;
    height: 99%;
    margin: 0px;
    background-color: rgba(255, 255, 255, 1.00);
    overflow: hidden;
    z-index: +1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
}
.spinner2 {
	position: absolute;
    top: 210px;
    left: 0px;
    width: 100%;
    height: 61%;
    margin: 0px;
    background-color: rgba(255, 255, 255, 1.00);
    overflow: hidden;
    z-index: +1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
}
.spinner3 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 37%;
    margin: 0px;
    background-color: rgba(255, 255, 255, 1.00);
    overflow: hidden;
    z-index: +1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
}