

.btn-day {
    font-family: 'Open Sans';
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 99;
    outline: 0;
    border-radius: 10px;
    transition: 0.4s all;
}

.btn-day.active {
    color: #FFF;
    font-weight: 600;
    z-index: 99;
}

.btn-day.active::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    background: #455AF7;
    border-radius: 10px;
    z-index: -1;
}

.xtext-field {
    padding: 10px;
    height: 50px;
    width: 200px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    margin: 0px 10px 0 0;
}

.xtitle {
    font-size: 1.3em;
}

.xsubtitle {
    font-size: 1.1em;
}

/* Calendar */

.calframe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 324px;
    /* background: #ecf1f8; */
    background-color: lightskyblue;
    border:2px;
    border-color: black;
    border-width: 2px;
    border-radius: 18px;
    padding: 10px;
    user-select: none;
}

#currentDate {
  text-align:center;
  font-size:1.2em;
}

.xcurrentdate {
    font-size: 0.5em;
}

.icon {
    padding: 4px;
    font-size: 0.8em;
    margin: 0 0 0 5px;
    background:lightskyblue;
    color:black;
    border: none;
    cursor: pointer;
    outline: 0;
}

.icon:hover {
    cursor: pointer;
}

#calendar {
    width: 100%;
}

.weekends th {
    font-size: 1em;
    color: gray;
    font-weight: 700;
    width: 40px;
    margin: 10px 0;
}

#calendar tr {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 3px;
}

#calendar td {
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 99;
}

.caltcenter {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cmonth {
  font-size: 1.5em;
}

.calbtn {
  /* border-color: black; */
  /* color:black; */
  background-color:lightskyblue;
  /* border-width: 2px; */
  padding: 3px 4px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 0.6em;
  font-weight: 700;
  cursor: pointer;
}  

.calbtnc {
  margin-left: 0;
  margin-right: 80px;
}

.calbtne {
  margin-left: 80px;
  margin-right: 0px;
}

.caltime{
  background-color: lightskyblue;
}

.containbtns {
  display: flex;
  justify-content: space-between;
}

.calleft, .calright {
  display: flex;
  flex-direction: column;
}

.cpadd {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.calhilite {
  background-color: chartreuse !important;
}