@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.calendar-body {
  box-sizing: border-box;
  height: auto;
  min-height: 275px;
  /*width: 335px;*/
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 1px 0 rgba(0,0,0,0.05);
  padding-bottom: 10px;
  margin: auto;
  row-gap: 6px;
  font-family: "Open Sans",sans-serif;
}
.time-picker-body {
  box-sizing: border-box;
  height: auto;
  min-height: 175px;
  width: 335px;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 1px 0 rgba(0,0,0,0.05);
  padding-bottom: 10px;
  margin: auto;
}
.calendar-dismiss {
  box-sizing: border-box;
  max-height: auto;
  width: 100%;
  /* border: 1px solid #E8E8E8; */
  border-radius: 10px;
  /* background-color: #FFFFFF; */
  /* box-shadow: 0 1px 1px 0 rgba(0,0,0,0.05); */
  padding-bottom: 10px;
  margin-top: 25px;
  cursor: pointer;
  padding-top: 10px;
}
.calendar-header-mm-yy{
  width: 300px;
  color: #f6b432;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 20px;
  text-align: center;
  text-transform:capitalize;
}


.calendar-ok{
  color: #f6b432;

  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  cursor: pointer;
}
.calendar-ok-pointer{
  cursor: pointer;
}

.calendar-badge{
  line-height: 4px;
  text-align: center;

  border-radius: 5px;
  margin-left: 10%;
  margin-right: 10%;
}

.calendar-arrow-right {
    height: 10.59px;
    width: 7.09px;
    transform: scaleX(-1);
    background-color: #C9C9C9;
}
.calendar-arrow-left {
  height: 10.59px;
  width: 7.09px;
  background-color: #C9C9C9;
}

.calendar-line-1 {
  height: 1px;
  background-color: rgba(0,0,0,0.1);
}

.calendar-day-names {
  height: 16px;
  color: #000000;
  /*font-family: 'Montserrat', sans-serif;*/
  font-weight: 600;
  /*font-size: 11px;*/
  letter-spacing: 0;
  line-height: 16px;
  padding-top: 20px;
}
.calendar-days {
  height: 80%;
  color: rgba(0,0,0,0.5);
  /*font-family: Montserrat;*/
  letter-spacing: 0;
  /*line-height: 16px;*/
  text-align: center;
  cursor: pointer;
}

.calendar-cell{
  width: 14%;
  text-align: center;
}

.time-box-model-1{
  height: 100px;
  /* box-shadow: 3px 3px 7px #666; */
  border: 2px solid #E8E8E8;
  border-radius: 10px;
  color: #150341b3;
  font-size: 40px;
  width: 40px;
}
/* Mouse-over effects */
.time-box-model-1:hover {
  opacity: 0.9; /* Fully shown on mouse-over */
}

.cal-day-night-vertical-line{
  border: 0.5px solid #979797;
  height: 24px;
  margin-left: 10px;
  margin-right: 10px;
}

.cal-custom-range{
  width: 100%;
}

.cal-btn{

  border-radius: 80px;
  justify-content: space-around;
  background-color: #f6b432;
  color:#000000;
  font-weight: 700;
  font-size: 20px;
}

.cal-btn:hover{
  background-color: #f6b432;
  color: white !important;
  text-decoration: none;
  font-weight: bold; 
}



.cal-container{
  width: 40%;
  font-size: 30px;
}

@media(max-width: 800px) {
  .cal-container{
    width: 100%;
    font-size: 30px;
  }
}


.cal-custom-range-slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.cal-custom-range-slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */ 
.cal-custom-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #f6b432; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.cal-custom-range-slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #f6b432; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}