@main-bg:rgb(40,40,59);
@calendar-border:rgb(220,220,255);
@calendar-bg:#fff;
@calendar-standout:rgb(40,40,59);
@calendar-color:#444;
@calendar-fade-color:#c0c0c0;
@body-color:#444;

.group {
  &:after {
    content: "";
    display: table;
    clear: both;
  }
}

img {
  max-width:100%;
  height:auto;
  vertical-align:baseline;
}

a {
  text-decoration:none;
}

.max(@maxWidth;
  @rules) {
    @media only screen and (max-width: @maxWidth) {
      @rules();
    }
  }

.min(@minWidth;
  @rules) {
    @media only screen and (min-width: @minWidth) {
      @rules();
    }
  }


.calendar-wrapper {
  width:50%;
  margin:0 0 2rem 0;
  padding:0;
  border:1px solid @calendar-border;
  background:transparent;
  font-family: "Poppins", sans-serif;
}
table {
  clear:both;
  width:100%;
  
  border-collapse:collapse;
  color:white;
}
td {
  height:60px;
  text-align:center;
  vertical-align:middle;
  border-right:1px solid white;
  border-top:1px solid white;
  width:420px;
  background:#B9B6B1;
  font-family: "Poppins", sans-serif;
  font-size:1.5rem;
}

tbody {border:1px solid white;}

td.not-current {
  color:transparent;
  
}
td.normal {}
td.today {
  font-weight:500;
  color:@calendar-standout;
  font-size:1.8rem;
  background:#999 !important;
}
td.apartado {background:#D8A467;}
td.reservado {background:#DD696B;}
thead { height:60px; }
th {color:white; font-family: "Poppins", sans-serif; font-size:1.5rem; font-weight:400;}
thead td {
  border:none;
  color:black;
  text-transform:uppercase;
  font-size:2rem;
  background:transparent;
 
}
#btnPrev {
  float:left;
  margin-bottom:0px;
  &:before {
    content:'\f104';
    font-family:FontAwesome;
    padding-right:4px;
  }
}
#btnNext {
  float:right;
  margin-bottom:0px;
  &:after {
    content:'\f105';
    font-family:FontAwesome;
    padding-left:4px;
  }
}
#btnPrev, #btnNext {
  position:relative;
  top:70px;
  background:transparent;
  margin:0;
  padding:0;
  border:none;
  outline:none;
  font-size:3rem;
  color:white;
  cursor:pointer;
  font-family: "Poppins", sans-serif;
  text-transform:uppercase;
  transition:all 0.3s ease;
  &:hover {
    color:@calendar-standout;
    font-weight:bold;
  }
}

@media (max-width:35em) {

.calendar-wrapper {
  width:100%;
  margin:0 0 2rem 0;
  padding:0;
  border:1px solid @calendar-border;
  background:transparent;
  font-family: "Poppins", sans-serif;
}
table {
  clear:both;
  width:100%;
  
  border-collapse:collapse;
  color:white;
}
td {
  height:40px;
  text-align:center;
  vertical-align:middle;
  border-right:1px solid white;
  border-top:1px solid white;
  width:100%S;
  background:#B9B6B1;
  font-family: "Poppins", sans-serif;
  font-size:1.5rem;
}

tbody {border:1px solid white;}
	
td.today {
  font-weight:500;
  color:@calendar-standout;
  font-size:1.5rem;
  background:#999;
}
	
thead { height:40px; }
th {color:white; font-family: "Poppins", sans-serif; font-size:1.2rem; font-weight:400;}
thead td {
  border:none;
  color:black;
  text-transform:uppercase;
  font-size:2rem;
  background:transparent;
 
}


}