/*******************************
* WEATHER
*******************************/
#weatherModuleDiv {
  background: none repeat scroll 0 0;
  padding-top: 38px;
}

.weather-contenedor {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 1180px;
}
.weather-contenedor:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: -webkit-radial-gradient(
    top center,
    ellipse cover,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}
.wheather-day-content {
  background: rgba(2, 119, 189, 0.8);
  padding: 20px;
  border-bottom: 1px solid #0091ea;
}

.wheather-day-text {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
}
.weather-sky-temp {
  position: relative;
  left: 170px;
  top: -100px;
  font-size: 300%;
}

.weather-day-temperatures {
  display: inline-block;
  font-size: 16px;
  float: right;
  margin-top: 0px;
}

.wheather-sky {
  background: rgba(1, 87, 155, 0.65);
  padding: 20px;
  height: 150px;
}

.todayDiv {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.otherDayDiv {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

table {
  text-align: center;
  /* width: 1023px; */
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  padding-top: 48px;
}

table thead {
  background: none repeat scroll 0 0 rgba(238, 238, 238, 0.8);
  color: #222222;
  height: 72px;
  width: 100%;
}
table thead th {
  width: 150px;
  background-color: #eee;
}

table tbody tr.a td {
  height: 60px;
  width: 150px;
  padding: 5px;
}

table tbody tr.b td {
  height: 60px;
  width: 150px;
  padding: 5px;
}

table tbody td:nth-child(even) {
  background-color: rgba(2, 119, 189, 0.8);
}
table tbody td:nth-child(odd) {
  background-color: rgba(2, 136, 209, 0.8);
}
table tbody td:nth-child(1) {
  background-color: rgba(0, 0, 0, 0.65) !important;
  color: white;
}
