/* Mapa Servicio Meteorológico Nacional
// ---------------------------------------------------------------------------------------
// Autor				: Berón Miguel Angel - SMN
// Creado				: 02/01/2019
// Ultima Modificación 	: 
// ---------------------------------------------------------------------------------------
/* css to customize Leaflet default styles  */
.popupCustom .leaflet-popup-tip,
.popupCustom .leaflet-popup-content-wrapper {
	background: #111111;
	color: #FFFFFF;
	opacity: 0.85;
	filter: alpha(opacity=85);
	font-family:Arial, Helvetica, sans-serif;
}

.my-temp-icon {
 			border-radius:2px;
			padding:1px; 
			-webkit-box-shadow: -7px 4px 8px -4px rgba(0,0,0,0.45);
			-moz-box-shadow: -7px 4px 8px -4px rgba(0,0,0,0.45);
			box-shadow: -7px 4px 8px -4px rgba(0,0,0,0.45); 
			min-width:30px !important; min-height:20px  !important; 
			/*background-color:white;
			opacity: 0.8;
			filter: alpha(opacity=80); */
			text-align:center;
			/*-webkit-text-stroke: 1px black;*/
			color:#000000;
}

/* Hiding the checkbox, but allowing it to be focused */
.badgebox
{
	opacity: 0;
	color:#000000;
	font-family:Arial, Helvetica, sans-serif;
	-webkit-box-shadow: -7px 4px 8px -4px rgba(0,0,0,0.75);
	-moz-box-shadow: -7px 4px 8px -4px rgba(0,0,0,0.75);
	box-shadow: -7px 4px 8px -4px rgba(0,0,0,0.75); 
}

.badgebox + .badge
{
	/* Move the check mark away when unchecked */
	text-indent: -999999px;
	/* Makes the badge's width stay the same checked and unchecked */
	width: 27px;
}

.badgebox:focus + .badge
{
	/* Set something to make the badge looks focused */
	/* This really depends on the application, in my case it was: */
	
	/* Adding a light border */
	/* Taking the difference out of the padding */
}

.badgebox:checked + .badge
{
	/* Move the check mark back when checked */
	text-indent: 0;
	font-weight:bold;
}

#card {
	background: none !important;
	position: relative;

/*	-webkit-box-shadow: 0px 1px 10px 0px rgba(207,207,207,1);
	-moz-box-shadow: 0px 1px 10px 0px rgba(207,207,207,1);
	box-shadow: 0px 1px 10px 0px rgba(207,207,207,1);

	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;	*/
}

.visitado{
  background-color: #428bca !important;
  color: #ffffff !important;
}

.no-visitado{
  background-color: none  !important;
  color:  #428bca !important;
}

.city-selected {
	position: relative;
	overflow: hidden;
	min-height: 200px;
	background: none !important;
}

article {
	position: relative;
	z-index: 2;
	color: #fff;
	padding: 0px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.info .city,
.night {
	font-size: 19px;
	font-weight: 200;
	position: relative;
	-webkit-order: 0;
	-ms-flex-order: 0;
	order: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-align-self: auto;
	-ms-flex-item-align: auto;
	align-self: auto;
	max-width:300px;
	min-width:300px;
	color: #fff;
}

.info .city:after {
	content: '';
	width: 15px;
	height: 2px;
	background:none;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	color: #fff;
}

.city span {
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	text-transform: lowercase;
	text-align: left;
	min-width::300px;
}

.night {
	font-size: 14px;
	/*text-transform:;*/
}

.icon {
	width: 84px;
	height: 84px;
	-webkit-order: 0;
	-ms-flex-order: 0;
	order: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	overflow: visible;

}


.temp {
	font-size: 36px;
	display: block;
	position: relative;
	font-weight: bold;
	text-align:center;
	align:center;
	min-width::290px;
}

svg {
	color: #fff;
	fill: currentColor;
}


.wind svg {
	width: 18px;
	height: 18px;
	margin-top: 20px;
	margin-right: 10px;
	vertical-align: bottom;
}

.wind span {
	font-size: 13px;
	line-height:25px;
	color: #fff;
}

.city-selected:hover figure {
	opacity: 0.4;
}


figure {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.days .row [class*="col-"]:nth-child(2) .day  {
    border-width: 0 1px 0 1px;
    border-style: solid;
    border-color: #eaeaea;
}

.days .row [class*="col-"] {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;	
}

.days .row [class*="col-"]:hover{
	background: #eaeaea;
}

.day {
	padding: 10px 0px;
	text-align: center;

}

.day h1 {
	font-size: 14px;
	text-transform: uppercase;
	margin-top: 10px;
}

.day svg {
	color: #000;
	width: 32px;
	height: 32px;
}


.legend {
    padding: 8px;
    top:250px;
    line-height: 18px;
    color: #555;
	z-index: 1;
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	border: 1px solid #666666;
	background-color:#000000;
	color:#FFFFFF;
	opacity: 0.84;
	filter: alpha(opacity=84);
	font-size: 10px;
}

.legend i {
    width: 17px;
    height: 17px;
    float: left;
	color: #000;
    margin-right: 8px;
    padding-top: 8px;
	z-index: 100;
	opacity: 100;
	filter: alpha(opacity=100);
}

.class-tooltip{
    border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	border: 1px solid #666666;
	background-color:#000000;
	color:#FFFFFF;
	opacity: 0.84;
	filter: alpha(opacity=84);
	font-size: 12px;
}

.leaflet-tooltip-left.class-tooltip::before {
  border-left-color: cyan;
}
.leaflet-tooltip-right.class-tooltip::before {
  border-right-color: cyan;
}

.leaflet-tooltip-top.class-tooltip::before {
    border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	border: 1px solid #666666;
	background-color:#000000;
	color:#FFFFFF;
	opacity: 0.84;
	filter: alpha(opacity=84);
	font-size: 12px;
}

#tabPronostico {
   padding: 0 0 0 0;
   color: #fff;
   background-color: none;
}

 #tabPronostico > li > a {
   font-size: 15px;
   color: #37404e;
   border-radius: 0 0 0 0;
   padding: 10px;
   padding-left: 4px;
   line-height:40px;
   border-right: 1px solid #DDD;
    line-height: 20px;
}

#tabPronostico > li.active > a, 
#tabPronostico > li.active > a:hover, 
#tabPronostico > li.active > a:focus {
    background-color: #000000;
    color:#ffffff !important;
}

#tabPronostico .active .forecast_low, #tabPronostico .active .tab_li_forecast_day {
    color:#ffffff  !important; 
}

#tabPronostico > li > a:hover {
    background-color: #000000;
    color: #fff;
}
                        
@media only screen and (max-width: 768px){
    .tab_li_forecast_day {
        float: none !important;
        padding: 0 0 0 0 !important;
    }
}

/*--padding para el maker provisorio--*/
span.fa.fa-map-marker {
    padding-top: 8px;
}

/*Agregado FLEX y nmobile*/
.tabla-flex{
  background: none !important;
}

.flex-container {

  padding: 0;

  margin: 0;

  list-style: none;

  display: flex;

  /* This line make an undesired Y scrollbar */

  overflow-x: auto;

  min-height: 110px;

}

.flex-item {

  background: none;

  min-width: 190px;

  min-height: 110px;

  color: white;

  display: flex;

  align-self: flex-end;

  align-items: flex-end;

  justify-content: center;

  padding-left: 2px;

  padding-right: 2px;

}

.flex-item:nth-child(10n) {

  align-self: flex-end;

  align-items: flex-start;

  transform: translateX(100%);

}

.table-responsive::-webkit-scrollbar {
   width: 2px; /*=> ancho del scroll*/
   background-color: #000000; /*=> Color del fondo principal */
   height: 8px;
}
.table-responsive::-webkit-scrollbar-track {
   background-color: rgba(38, 50, 56, 0.19); /*=> color de fondo del trayecto del scroll */
}
.table-responsive::-webkit-scrollbar-thumb {
   background-color: #BBBBBB; /*=> color del indicador del scroll */
   border-radius: 10px; /*=> bordes redondeados */
}

.mapa-pron {
	width: 100%;
	/*text-align: center !important;*/
};


/* Smartphones (landscape) ———– */
@media only screen
and (min-width : 321px) {
  .mapa-pron {
	max-width: 320px !important;
	width: 100%;
   };
}

@media only screen
and (min-width : 360px) {
  .mapa-pron {
	/*max-width: 360px !important;*/
	width: 100%;
   };
}


@media only screen
and (min-device-width : 361px)
and (max-device-width : 420px) {
  .mapa-pron {
	max-width: 410px !important;
	width: 100%;
   };	
}

@media only screen
and (min-device-width : 480px)
and (max-device-width : 640px) {
  .mapa-pron {
	max-width: 640px !important;
	width: 100%;
   };	
}

/* Smartphones (portrait) ———– */
@media only screen
and (max-width : 320px) {
   .mapa-pron {
	max-width: 320px !important;
	width: 100%;
   };
}


/* iPads (portrait and landscape) ———– */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
/* Styles */
	.mapa-pron {
		max-width: 1024px !important;
		width: 100%;
    };
}

/* iPads (landscape) ———– */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
/* Styles */
   .mapa-pron {
		max-width: 1024px !important;
		width: 100%;
    };
}

/* iPads (portrait) ———– */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
/* Styles */
   .mapa-pron {
		max-width: 1024px !important;
		width: 100%;
    };
}

/* Desktops and laptops ———– */
@media only screen
and (min-width : 480px)
and (max-width : 550px) {
/* Styles */
	.mapa-pron {
		max-width: 480px !important;
		width: 100%;
    };
}

@media only screen
and (min-width : 550px)
and (max-width : 605px) {
/* Styles */
	.mapa-pron {
		max-width: 550px !important;
		width: 100%;
    };
}

@media only screen
and (min-width : 605px)
and (max-width : 639px) {
/* Styles */
	.mapa-pron {
		max-width: 600px !important;
		width: 100%;
    };
}

@media only screen
and (min-width : 640px)
and (max-width : 767px) {
/* Styles */
	.mapa-pron {
		max-width: 640px !important;
		width: 100%;
    };
}

@media only screen
and (min-width : 768px)
and (max-width : 1024px) {
/* Styles */
	.mapa-pron {
		max-width: 1024px !important;
		width: 100%;
    };
}

@media only screen
and (min-width : 1000px) {
/* Styles */
    .mapa-pron {
		max-width: 1024px !important;
		width: 100%;
    };
}

@media only screen
and (min-width : 1224px) {
/* Styles */
    .mapa-pron {
		max-width: 1224px !important;
		width: 100%;
    };
}

/* Large screens ———– */
@media only screen
and (min-width : 1824px) {
/* Styles */
    .mapa-pron {
		max-width: 1824px !important;
		width: 100%;
    };
}

#tabPronostico {
   padding: 0 0 0 0;
   color: #fff;
   background-color:  #848484 !important;;
}

 #tabPronostico > li > a {
   font-size: 15px;
   color: #fff;
   border-radius: 0 0 0 0;
   padding: 10px;
   padding-left: 4px;
   border-right: 1px solid #DDD;
}

ul#tabPronostico{
	border-bottom: 4px solid #ccc;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #848484 !important;
}

p#pronos_dia0 {
	color: #000000;
    font-size: 20px;
}

p#pronos_dia1 {
    color: #000;
}
p#pronos_dia2 {
    color: #000;
}
p#pronos_dia3 {
    color: #000;
}
p#pronos_dia4 {
    color: #000;
}
p#pronos_dia5 {
    color: #000;
}

div#forecast_temp0 {
    color: #000;
}
span.forecast_low{
    color: #000;
}

div#forecast_temp0 {
    color: #212121;
}
li.active div#forecast_temp0 {
    color: #fff;
}
.active .forecast_low, .active .tab_li_forecast_day
#tabPronostico > li.active > a, 
#tabPronostico > li.active > a:hover, 
#tabPronostico > li.active > a:focus {
    background-color: #848484;
    color:#ffffff !important;
}


#tabPronostico .active .forecast_low, #tabPronostico .active .tab_li_forecast_day {
    color:#ffffff  !important; 
}

#tabPronostico > li > a:hover {
    background-color: #e2e2e2;
    color: #fff;
}
    
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #848484;
}

li.active {
    background: #848484 !important;
}


.forecast_low, .tab_li_forecast_day {
    color: #000 !important;
    font-size: 16px;
}

.tab_li_forecast_day, .active .tab_li_forecast_day {
    cursor: pointer;
}


#fecha_pron0{
	font-size: 11px;

}

#fecha_pron1{
	font-size: 11px;
}

#fecha_pron2{
	font-size: 11px;
}

#fecha_pron3{
	font-size: 11px;
}

#fecha_pron4{
	font-size: 11px;
}

#fecha_pron5{
	font-size: 11px;
}

#fecha_pron6{
	font-size: 11px;
}


/*referencias*/

.table-hover > tbody > tr:hover {
    background-color: #ffffff !important;
}

td.sel{
	height:8px;
	width:60px;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
}

/*td.sel:hover {
	background-color: #848484 !important;
}*/
td.sel_on {
	background-color: #428bca !important;
}

td.accion {
	color: #428bca !important;
	min-width:50px;
}

td.fecha {
	color: #428bca !important;
	font-size: 17px;
	font-weight: bold;
	min-width:200px;
}

th.pie_dia{
	 border: 1px solid #000;
	 border-bottom: none;
	 font-size:12px;
}

td.pie_dia{
	 border: 1px solid #000;
	 border-top: none;
	 font-size:12px;
	 width:100px;
	 font-weight: bold;
}

td.pie_dia_on{
	 background-color: #428bca !important;
	 color: #FFF !important;
}