.schedule-wrapper{
    max-width: 1140px;
    margin: 0 auto;
}
.schedule-block{
    display: flex;
    flex-direction: column;
}
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background: #007AFF;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }

  .daterangepicker .ranges ul {
    width: 140px;
  }

  .daterangepicker.single .ranges ul {
    width: 100%;
  }

  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }

  .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
    float: left;
  }

  .daterangepicker {
    direction: ltr;
    text-align: left;
  }

  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }

  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }

  .daterangepicker .ranges, .daterangepicker .drp-calendar {
    float: left;
  }
}

@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }

  .daterangepicker .ranges {
    float: left;
  }

  .daterangepicker.rtl .ranges {
    float: right;
  }

  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}

/* Filter */
.schedule-title{
    padding: 45px 24px 30px;
    border-bottom: 1px solid #D1D1D6;
    background-color: #eee;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    font-size: 38px;
    color: #212121;
}
.filter-schedule{
    padding: 30px 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	max-width: 1146px;
    width: 100%;
    background-color: #eee;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #D1D1D6;
}
 .filter-schedule__field-wrap{
    display: flex;
    flex-wrap:wrap;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}
.filter-schedule__collapse{
    display: none;
}
.block-250{
	width: 100%;
	/*max-width: 250px;*/
}
.block-520{
	width: 100%;
	/*max-width: 520px;*/
}
.drop-down{
	/*margin-right: 20px;*/
	margin-bottom: 20px;
	position: relative;
}
.teacher-filter{
	margin-right: 0;
}
.drop-down-text{
	border-radius: 3px;
	padding: 10px 20px 10px 10px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
    cursor: pointer;
}

.drop-down-text__upper-text{
	text-transform: uppercase;
	color: #C7C7CC;
	font-size: 10px;
}
.drop-down-text__mid-text{
	margin-top: 4px;
	font-size: 14px;
	color: #212121;
	display: none;
        white-space: nowrap;
}
.drop-down-text__mid-text--default{
	margin-top: 4px;
	font-size: 14px;
	color: #212121;
        white-space: nowrap;
}
.drop-down-list{
width: 100%;
max-width: 88%;
    overflow-y: scroll;
    max-height: 250px;
    display: none;
    position: absolute;
    border-radius: 3px;
    padding: 0;
    margin-top:5px;
    width: 100%;
    list-style-type: none;
    background-color: #fff;
    z-index: 2;
}
.drop-down-list__item{
	padding: 10px 20px 10px 10px;
    cursor: pointer;
}
.drop-down-list__item:hover{
	background-color: #ccc;
}
.drop-down-list__checkbox{
    cursor: pointer;
}
.date-range{
	min-height:55px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #fff;
	padding: 10px 20px 10px 10px;
	border-radius: 3px;
	cursor: pointer;
	margin-bottom: 20px;

}
.date-range__text{
	margin-left: 10px;
	color: #8E8E93;
	font-size: 14px;
}
.date-range__time{
	margin-left: 10px;
	font-size: 14px;
}
.filter-schedule__close{
    min-height: 55px;
    /*margin-left: 20px;*/
margin-bottom: 20px;
    text-align: center;
    cursor: pointer;
    background: transparent;
    border: 1px solid #007AFF;
    border-radius: 3px;
    padding: 10px 22px;
    color: #212121;
    font-size: 1em;
    font-weight: normal;
    outline: 0;
}
.filter-schedule__apply{
    min-height: 55px;
    /*margin-left: 20px;*/
    text-align: center;
    cursor: pointer;
    background-color: #007AFF;
    border-radius: 3px;
    border:none;
    padding: 10px 22px;
    color: #fff;
    font-size: 1em;
    font-weight: normal;
    outline: 0;
}
.filter-schedule__apply:hover,
.filter-schedule__close:hover{
    opacity: 0.8;
}
.chekbox_hidden {    
	position: absolute;
        opacity: 0;
        visibility: hidden;
        height: 0;
	z-index: -1;
	left: 0;
}
.chekbox_visual {
    display: block;
    height: 18px;
    width:33px;
    background: #dbe0e6;
    border-radius:9px;
    position:relative;
    cursor:pointer;
    transition: background .1s ease-in;
    margin-right:10px;
    flex-shrink: 0;
}
.chekbox_visual:before {
    content: " ";
    width: 14px;
    height: 14px;
    margin: 2px;
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right:15px;
    background: #fff;
    border-radius: 20px;
    transition: right .1s ease-in;
}
.chekbox_hidden:checked + .chekbox_visual {
	background: #007AFF;
}
.chekbox_hidden:checked + .chekbox_visual:before {
	right:0;
}
.collapse.show{
    display: flex !important;
}
@media (max-width:1199px){
    .section-filter{
        margin-right: 0;
    }
    .teacher-filter{
        /*margin-right: 20px;*/
    }
    .date-range{
        margin-bottom: 20px;
    }
}
@media (max-width:991px){
    .name-filter{
        margin-right: 0;
    }
    .section-filter{
       /* margin-right: 20px;*/
    }
    .teacher-filter{
        margin-right: 0px;
    }
    .filter-schedule__close{
        margin-left: 0;
    }
}
@media (max-width:767px){
    .filter-schedule{
        padding: 30px 20px;
    }
    .filter-schedule__collapse{
        display: block;
    }
    .drop-down{
        margin-right: 0;
    }
    .date-range{
        /*max-width: 250px;
        padding: var(--prv_btn_padding);*/
    }
    .filter-schedule__close{
        margin-bottom: 20px;
    }
    .filter-schedule__apply{
        margin-left: 0;
    }
}
@media (max-width:575px){
    .filter-schedule{
        padding: 30px 40px;
    }

}