.teacher-dashboard{
    max-width: 1014px;
    margin: 0 auto;
    padding: 110px 20px 100px;
}

.teacher-dashboard h1{
    font-family: "Ubuntu", sans-serif;
    margin-bottom: 30px;
    color: #404142;
    font-size: 52px;
}

.teacher-dashboard .filters-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    padding-bottom: 60px;
    margin-bottom: 45px;
    border-bottom: 1px solid #C4C4C4;
}

.teacher-dashboard .filters-wrap .select-wrap{
    width: 100%;
    margin: 15px;
    position: relative;
}

.teacher-dashboard .filters-wrap .filter{
    border: 1px solid #818284;
    border-radius: 5px;
    width: 100%;
    height: 55px;
    padding: 10px 40px 10px 50px;
    background-position: 15px 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.teacher-dashboard .filters-wrap .filter.date-filter{
    background-image: url(../images/calendar-blue.svg);
    background-size: 21px 24px;
}

.teacher-dashboard .filters-wrap .filter.teacher-filter{
    background-image: url(../images/blue-bulb.svg);
    background-size: 16px 23px;
}

.teacher-dashboard .filters-wrap .filter.location-filter{
    background-image: url(../images/location-blue.svg);
    background-size: 24px 24px;
}

.teacher-dashboard .filters-wrap .select-wrap:after{
    position: absolute;
    content: '';
    width: 12px;
    height: 8px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../images/dropdown.svg);
    pointer-events: none;
}

.teacher-dashboard .booked-event ul{
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    align-items: flex-start;
}

.teacher-dashboard .booked-event{
    border-bottom: 1px solid #C4C4C4;
    margin-bottom: 38px;
    padding-bottom: 10px;
}

.teacher-dashboard.detail .booked-event{
    border-bottom: 0;
    padding-bottom: 0;
}

.teacher-dashboard .booked-event ul li.title{
    margin-right: auto;
    width: 100%;
}

.teacher-dashboard .booked-event ul li.title a{
    font-size: 24px;
    text-decoration: none;
}

.teacher-dashboard .booked-event ul li{
    margin-bottom: 25px;
    margin-right: 35px;
}

.teacher-dashboard .booked-event ul li:last-child{
    margin-right: 0;
}

.teacher-dashboard .booked-event ul li.info{
    font-size: 16px;
    height: 28px;
    display: flex;
    align-items: center;
    padding-right: 10px;
    border: 1px solid #404142;
    border-radius: 5px;
    text-wrap: nowrap;
}

.teacher-dashboard .booked-event ul li.info span{
    background: #404142;
    width: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    margin-right: 10px;
    margin-right: 10px;
}

.teacher-dashboard .booked-event ul li.robot a{
    font-weight: normal;
    text-decoration: underline;
    color: #404142;
    border: 0;
}

.teacher-dashboard .booked-event ul li.view-details a{
    display: flex;
    align-items: center;
}

.teacher-dashboard .booked-event ul li.view-details a img{
    margin-left: 8px;
}

nav.teacher-dashboard-pagination {
    display: flex;
    align-content: center;
    justify-content: center;
}

nav.teacher-dashboard-pagination a {
    display: block;
    margin: 0 15px;
}

.details-notes-wrap{
    display: flex;
    flex-wrap: wrap;
    margin: -20px -30px 50px;
}

.details-notes-wrap .content{
    width: 100%;
    margin: 20px 30px;
    border: 2px solid #404142;
    overflow: hidden;
    border-radius: 10px;
    box-sizing: border-box;
}

.details-notes-wrap .content header{
    background: #404142;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.details-notes-wrap .body {
    padding: 0 20px 30px 20px;
}

.details-notes-wrap .content header img{
    cursor: pointer;
}

.details-notes-wrap .content h2{
    font-size: 24px;
    color: #fff;
    margin: 0;
}

.details-notes-wrap .content ul{
    list-style: none;
    margin: 0;
    padding: 0 20px 30px;
}

.details-notes-wrap .content ul li{
    font-size: 24px;
    margin-bottom: 20px;
}

.details-notes-wrap .content ul li:last-child{
    margin-bottom: 0;
}

.details-notes-wrap .content ul li a{
    text-decoration: underline;
    color: #404142;
    font-weight: normal;
    border: 0;
}

.links-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-items: center;
    align-items: center;
    margin-bottom: 15px;
}

.links-wrap a{
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.links-wrap a.previous {
    grid-column: 1;
    justify-self: start;
}

.links-wrap a.home {
    grid-column: 2;
}

.links-wrap a.home svg {
    width: 24px;
    height: 24px;
}

.links-wrap a.next {
    grid-column: 3;
    justify-self: end;
}

.choose-class{
    max-width: 996px;
    margin: 0 auto;
    padding: 20px 0 100px 0;
}

.choose-class h2{
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    color: #3B256A;
    font-size: 32px;
}

.choose-class h2 span{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    background: #FEEDD4;
}

.booking-wrap{
    display: flex;
    align-items: flex-start;
    margin: -25px;
    flex-wrap: wrap;
}

.booking-wrap .date-wrap{
    width: 500px;
    max-width: 100%;
    margin: 25px;
}

.booking-wrap .time-wrap{
    width: 100%;
    margin: 25px;
}

.booking-wrap h3{
    font-family: "Aleo", serif;
    font-size: 24px;
    color: #404142;
    margin-bottom: 30px;
}

.time-wrap .radio-wrap > div{
    margin-bottom: 20px;
    position: relative;
}

.time-wrap .radio-wrap > div:last-child{
    margin-bottom: 0;
}

.time-wrap .radio-wrap input{
    position: absolute;
    border: 2px solid #9A9B9D;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.time-wrap .radio-wrap input:disabled + label::before{
    position: absolute;
    content:'';
    background: #EBEAEB;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.7;
}

.time-wrap .radio-wrap input:disabled + label{
    border: 2px solid #d3d2d4;
}

.time-wrap .radio-wrap input:disabled + label span:last-child{
    font-style: italic;
}

.time-wrap .radio-wrap input:checked{
    border: 2px solid #fff;
    background: transparent;
    z-index: 2;
}

.time-wrap .radio-wrap input:checked:before{
    width: 23px;
    height: 23px;
}

.time-wrap .radio-wrap input:checked + label{
    background: #FE6D4E;
    border: 2px solid #FE6D4E;
}

.time-wrap .radio-wrap input:checked + label span{
    color: #fff;
}

.time-wrap .radio-wrap label{
    border: 2px solid #9A9B9D;
    border-radius: 10px;
    display: block;
    padding: 15px 20px 15px 72px;
    cursor: pointer;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.time-wrap .radio-wrap span{
    display: block;
    font-size: 18px;
    font-weight: 400;
}

.calendar-wrap #datepicker .ui-datepicker{
    width: 100%;
    padding: 0;
    border: 1px solid #9A9B9D;
    overflow: hidden;
    border-radius: 10px;
}

.calendar-wrap #datepicker *{
    font-family: "Ubuntu", sans-serif;
}

.calendar-wrap #datepicker .ui-datepicker-calendar{
    table-layout: fixed;
    margin: 0;
    border-collapse: separate;
}

.calendar-wrap #datepicker .ui-datepicker .ui-datepicker-header{
    border: 0;
    border-radius: 0;
    background: #3B256A;
    padding: 18px 0;
}

.calendar-wrap #datepicker .ui-datepicker .ui-datepicker-title{
    color: #fff;
    font-size: 18px;
}

.calendar-wrap #datepicker .ui-datepicker .ui-datepicker-header .ui-corner-all .ui-icon{
    background-size: 22px;
    background-position: center;
    width: 22px;
    height: 22px;
}

.calendar-wrap #datepicker .ui-datepicker .ui-datepicker-header .ui-corner-all{
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    top: 15px !important;
}

.calendar-wrap #datepicker .ui-datepicker .ui-datepicker-header .ui-corner-all:before {
    border-color: #fff;
}

.calendar-wrap #datepicker .ui-datepicker .ui-datepicker-header .ui-corner-all.ui-datepicker-prev{
    left: 10px !important;
}

.calendar-wrap #datepicker .ui-datepicker .ui-datepicker-header .ui-corner-all.ui-datepicker-next{
    right: 10px !important;
}

.calendar-wrap #datepicker .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span{
    background-image: url(../images/calendar-left-arrow.svg);
}

.calendar-wrap #datepicker .ui-datepicker .ui-datepicker-header .ui-datepicker-next span{
    background-image: url(../images/calendar-right-arrow.svg);
}

.calendar-wrap #datepicker .ui-datepicker th{
    color: #9A9B9D;
    font-size: 14px;
    line-height: 2.25em;
    padding: 10px !important;
}

.calendar-wrap #datepicker .ui-datepicker td{
    position: relative;
    overflow: hidden;
    line-height: 2.25em;
    font-weight: 700;
    color: #9A9B9D !important;
    background: #fff !important;
    font-size: 16px;
    border: 1px solid #D9D9DA;
    font-weight: 700;
    opacity: 1;
    text-align: center;
    padding: 0;
}

.calendar-wrap #datepicker .ui-datepicker td.classes-booked:before {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    left: -27%;
    height: 200%;
    width: 100%;
    background: #ECEBEB;
    transform: rotate(-51deg);
}

.calendar-wrap #datepicker .ui-datepicker td.classes-booked a {
    position: relative;
}

.calendar-wrap #datepicker .ui-datepicker td a, .calendar-wrap #datepicker .ui-datepicker td span{
    color: #9A9B9D !important;
}

.calendar-wrap #datepicker .ui-datepicker td.ui-state-disabled, .calendar-wrap #datepicker .ui-datepicker td.ui-state-disabled.ui-datepicker-current-day{
    background: #ECEBEB !important;
}

.calendar-wrap #datepicker .ui-datepicker td.ui-datepicker-current-day{
    background: #FE6D4E !important;
    color: #fff;
}

.calendar-wrap #datepicker .ui-datepicker td.ui-datepicker-current-day a{
    color: #fff !important;
    background: #FE6D4E !important;
}

.calendar-wrap #datepicker .ui-datepicker td span, .calendar-wrap #datepicker .ui-datepicker td a{
    border: 0;
    background-image: none !important;
    background: transparent !important;
    font-weight: 700;
    text-align: center;
}

.detail-list h2{
    color: #3B256A;
    font-size: 36px;
    margin-bottom: 24px;
    font-family: "Aleo", serif;
}

.detail-list dl dt:not(:first-child) {
    margin-top: 20px;
}

.detail-list dl dt {
    font-weight: bold;
}

.detail-list .info-type{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.detail-list .info-type span{
    color: #404142;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    margin-right: 15px;
}

.detail-list .info-type .select-wrap{
    width: 100%;
    position: relative;
    max-width: 320px;

}

.detail-list .info-type select{
    border: 1px solid #818284;
    border-radius: 5px;
    height: 55px;
    padding: 10px 40px 10px 20px;
    background-position: 15px 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.detail-list .select-wrap:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 8px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../images/dropdown.svg);
    pointer-events: none;
}

.detail-list > table{
    width: 100%;
}

.detail-list > table th, .detail-list > table td{
    color: #404142;
    padding: 30px 20px;
    font-weight: bold;
}

.detail-list > table th{
    text-transform: uppercase;
    white-space: nowrap;
}

.detail-list > table th, .detail-list > table td{
    border-bottom: 1px solid #C4C4C4;
    font-size: 18px;
}

.detail-list > table tr th:first-child, .detail-list > table tr td:first-child{
    border-right: 1px solid #C4C4C4;
}

.detail-list > table tr th:first-child{
    text-align: center;
    width: 203px;
    max-width: 203px;
    min-width: 203px;
    box-sizing: border-box;
}

.detail-list > table tr td{
    position: relative;
    color: #3B256A;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.5;
    height: 80px;
}

.detail-list > table td .notices {
    position: absolute;
    top: 10px;
    right: 10px;
}

.detail-list > table td .notices svg {
    display: inline-block;
    width: 20px;
    margin-left: 4px;
}

.detail-list > table tr td.order, .detail-list > table tr td.attended{
    text-align: center;
}

.detail-list > table tr td:first-child{
    color: #66CCCC;
    font-size: 16px;
    position: relative;
}

.detail-list > table tr td:first-child img{
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.detail-list > table textarea{
    height: 100px;
    width: 190px;
    max-width: 100%;
}

.detail-list > table tr th:nth-child(9),
.detail-list > table tr th:nth-child(10),
.detail-list > table tr th:nth-child(11),
.detail-list > table tr th:nth-child(12),
.detail-list > table tr th:nth-child(13),
.detail-list > table tr th:nth-child(14),
.detail-list > table tr th:nth-child(15),
.detail-list > table tr th:nth-child(16),
.detail-list > table tr th:nth-child(17),
.detail-list > table tr th:nth-child(18),
.detail-list > table tr th:nth-child(19),
.detail-list > table tr th:nth-child(20),
.detail-list > table tr th:nth-child(21),
.detail-list > table tr th:nth-child(22),
.detail-list > table tr td:nth-child(9),
.detail-list > table tr td:nth-child(10),
.detail-list > table tr td:nth-child(11),
.detail-list > table tr td:nth-child(12),
.detail-list > table tr td:nth-child(13),
.detail-list > table tr td:nth-child(14),
.detail-list > table tr td:nth-child(15),
.detail-list > table tr td:nth-child(16),
.detail-list > table tr td:nth-child(17),
.detail-list > table tr td:nth-child(18),
.detail-list > table tr td:nth-child(19),
.detail-list > table tr td:nth-child(20),
.detail-list > table tr td:nth-child(21),
.detail-list > table tr td:nth-child(22){
    display: none;
}

.detail-list > table.contact-and-pickup tr th:nth-child(2),
.detail-list > table.contact-and-pickup tr th:nth-child(3),
.detail-list > table.contact-and-pickup tr th:nth-child(4),
.detail-list > table.contact-and-pickup tr th:nth-child(5),
.detail-list > table.contact-and-pickup tr th:nth-child(6),
.detail-list > table.contact-and-pickup tr th:nth-child(7),
.detail-list > table.contact-and-pickup tr th:nth-child(8),
.detail-list > table.contact-and-pickup tr td:nth-child(2),
.detail-list > table.contact-and-pickup tr td:nth-child(3),
.detail-list > table.contact-and-pickup tr td:nth-child(4),
.detail-list > table.contact-and-pickup tr td:nth-child(5),
.detail-list > table.contact-and-pickup tr td:nth-child(6),
.detail-list > table.contact-and-pickup tr td:nth-child(7),
.detail-list > table.contact-and-pickup tr td:nth-child(8),
.detail-list > table.health tr th:nth-child(2),
.detail-list > table.health tr th:nth-child(3),
.detail-list > table.health tr th:nth-child(4),
.detail-list > table.health tr th:nth-child(5),
.detail-list > table.health tr th:nth-child(6),
.detail-list > table.health tr th:nth-child(7),
.detail-list > table.health tr th:nth-child(8),
.detail-list > table.health tr td:nth-child(2),
.detail-list > table.health tr td:nth-child(3),
.detail-list > table.health tr td:nth-child(4),
.detail-list > table.health tr td:nth-child(5),
.detail-list > table.health tr td:nth-child(6),
.detail-list > table.health tr td:nth-child(7),
.detail-list > table.health tr td:nth-child(8),
.detail-list > table.accomodations tr th:nth-child(2),
.detail-list > table.accomodations tr th:nth-child(3),
.detail-list > table.accomodations tr th:nth-child(4),
.detail-list > table.accomodations tr th:nth-child(5),
.detail-list > table.accomodations tr th:nth-child(6),
.detail-list > table.accomodations tr th:nth-child(7),
.detail-list > table.accomodations tr th:nth-child(8),
.detail-list > table.accomodations tr td:nth-child(2),
.detail-list > table.accomodations tr td:nth-child(3),
.detail-list > table.accomodations tr td:nth-child(4),
.detail-list > table.accomodations tr td:nth-child(5),
.detail-list > table.accomodations tr td:nth-child(6),
.detail-list > table.accomodations tr td:nth-child(7),
.detail-list > table.accomodations tr td:nth-child(8){
    display: none;
}


.detail-list > table.contact-and-pickup tr th:nth-child(9),
.detail-list > table.contact-and-pickup tr th:nth-child(10),
.detail-list > table.contact-and-pickup tr th:nth-child(11),
.detail-list > table.contact-and-pickup tr th:nth-child(12),
.detail-list > table.contact-and-pickup tr td:nth-child(9),
.detail-list > table.contact-and-pickup tr td:nth-child(10),
.detail-list > table.contact-and-pickup tr td:nth-child(11),
.detail-list > table.contact-and-pickup tr td:nth-child(12){
    display: table-cell;
}

.detail-list > table.health tr th:nth-child(13),
.detail-list > table.health tr th:nth-child(14),
.detail-list > table.health tr th:nth-child(15),
.detail-list > table.health tr th:nth-child(16),
.detail-list > table.health tr th:nth-child(17),
.detail-list > table.health tr th:nth-child(18),
.detail-list > table.health tr td:nth-child(13),
.detail-list > table.health tr td:nth-child(14),
.detail-list > table.health tr td:nth-child(15),
.detail-list > table.health tr td:nth-child(16),
.detail-list > table.health tr td:nth-child(17),
.detail-list > table.health tr td:nth-child(18){
    display: table-cell;
}

.detail-list > table.accomodations tr th:nth-child(19),
.detail-list > table.accomodations tr th:nth-child(20),
.detail-list > table.accomodations tr th:nth-child(21),
.detail-list > table.accomodations tr th:nth-child(22),
.detail-list > table.accomodations tr td:nth-child(19),
.detail-list > table.accomodations tr td:nth-child(20),
.detail-list > table.accomodations tr td:nth-child(21),
.detail-list > table.accomodations tr td:nth-child(22){
    display: table-cell;
}


/* Modal */

.custom-modal{
    display:none;
    position:fixed;
    z-index:1000;
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow:auto;
    background-color:rgba(0,0,0,0.5);
    padding: 50px 0;
    box-sizing: border-box;
}

.custom-modal .modal-content{
    position:relative;
    background-color:#fff;
    margin:auto;
    padding:0;
    border:1px solid #C4C4C4;
    width:90%;
    max-width: 1074px;
    box-shadow:0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name:animatetop;
    -webkit-animation-duration:0.4s;
    animation-name:animatetop;
    animation-duration:0.4s;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.4);
    border-radius: 20px;
    overflow: hidden;
}

@-webkit-keyframes animatetop{
    from{opacity:0}
    to{opacity:1}
}

@keyframes animatetop{
    from{opacity:0}
    to{opacity:1}
}

.custom-modal .close{
    color: white;
    font-size: 30px;
    width: 126px;
    height: 126px;
    position: absolute;
    background: #3B256A;
    display: flex;
    border-radius: 50%;
    align-items: flex-end;
    justify-content: flex-start;
    right: -60px;
    padding: 0 0 25px 30px;
    box-sizing: border-box;
    top: -60px;
    cursor: pointer;
}

.custom-modal .close:hover,.close:focus{
    opacity: 0.9;
}

.detail-list .custom-modal h2{
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
}

#edit-student .modal-body h2 {
    font-size: 30px;
}

.custom-modal .modal-body{
    padding: 60px 35px;
    box-sizing: border-box;
}

.custom-modal .modal-body .wrap{
    margin-bottom: 60px;
}

.custom-modal .modal-body .wrap:last-child{
    margin-bottom: 0;
}

.custom-modal .modal-body .form-row{
    display: flex;
}

.custom-modal .modal-body .form-group{
    margin: 10px;
    flex: 1 0 0;
}

.custom-modal .modal-body label{
    color: #404142;
    font-family: "Ubuntu", sans-serif;
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
}

.custom-modal .modal-body form input {
    padding: 14px 22px;
    width: 100%;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #818285;
    -moz-box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 2px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 0px rgba(0,0,0,0.1);
}

.custom-modal .modal-body form input::placeholder {
    color: #818285;
}

.custom-modal .modal-body form .select-wrap{
    position: relative;
}

.custom-modal .modal-body form .select-wrap:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    content: '\e60d';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

.custom-modal .modal-body form select{
    padding: 14px 22px;
}

.custom-modal .modal-body form .detail-list .form-row .form-group input{
    padding: 6px 12px;
}

.custom-modal .modal-body form button.modify-reservation {
    margin: 30px 0;
}

.custom-modal .modal-body form .form-row.modify-reservation {
    display: none;
    margin: -15px 0 30px 0;
}

.custom-modal .modal-body form .detail-list .appended-row .form-row:last-child .form-group{
    margin-bottom: 0;
}

.custom-modal .modal-body form .detail-list .form-row .delete-row,
.custom-modal .modal-body form .detail-list .form-row .add-row{
    margin: 10px;
}

.custom-modal .modal-body form .detail-list .form-handle{
    position: relative;
}

.custom-modal .modal-body form .detail-list .delete-row,
.custom-modal .modal-body form .detail-list .add-row{
    cursor: pointer;
}

.custom-modal .modal-body form .detail-list .add-row {
    display: block;
}

.custom-modal .modal-body form .detail-list .add-row img {
    margin-bottom: -3px;
}

.custom-modal .modal-body form textarea{
    height: 173px;
}

.custom-modal .modal-body form input[type="checkbox"]{
    padding: 0;
    width: 32px;
    height: 32px;
    box-shadow: none;
    background: transparent;
}

.custom-modal .modal-body form .checkbox-group{
    display: flex;
    margin: -12px;
}

.custom-modal .modal-body form input[type="checkbox"]:checked{
    background: #FFA626;
    border-color: #FFA626;
}

.custom-modal .modal-body form .checkbox-group .checkbox-wrap{
    margin: 12px 12px 36px;
    width: calc(50% - 24px);
    padding: 0 12px;
}

.custom-modal .modal-body table{
    width: 100%;
}

.custom-modal .modal-body table tr td{
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px 20px;
}

.custom-modal .modal-body table tr.current td {
    background: #f5f5f5;
}

.custom-modal .modal-body table tr:last-child td{
    border-bottom: 0;
}

.custom-modal .modal-body table tr td:first-child{
    border-left: 0;
}

.custom-modal .modal-body table tr td:nth-child(2){
    text-align: center;
}

.custom-modal .modal-body form table input[type="checkbox"]{
    width: 26px;
    height: 26px;
}

.custom-modal .modal-body form .detail-list table td{
    position: relative;
}

.custom-modal .modal-body form input[type="submit"]{
    box-sizing: border-box;
    display: inline-block;
    height: 48px;
    line-height: 48px;
    padding: 0 24px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #FE6D4E;
    border: 0;
    transition: .5s;
    cursor: pointer;
    width: 110px;
    display: block;
    margin-left: auto;
    box-shadow: none;
}

.custom-modal .modal-body form input[type="submit"]:hover{
    background: #FF804F;
}

.blog.theme-brooklynrobotfoundry #ui-datepicker-div{
    top: 460px !important;
}

#edit-details.loading .modal-content{
    filter: blur(1px);
}

#edit-details .modal-content:before{
    position: absolute;
    content:'';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    opacity: 0.8;
    z-index: 2;
    display: none;
}

#edit-details.loading .modal-content:before{
    display: block;
}

#edit-details .modal-content:after{
    position: absolute;
    content: '';
    background-image: url(../images/loader.gif);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: 50px;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

#edit-details.loading .modal-content:after{
    display: block;
}

@media screen and (min-width: 517px){
    .blog.theme-brooklynrobotfoundry #ui-datepicker-div{
        top: 400px !important;
    }
}

@media screen and (min-width: 900px){
    .booking-wrap .date-wrap{
        width: calc(442px - 50px);
    }
    
    .booking-wrap .time-wrap{
        width: calc(100% - 492px);
    }
}

@media screen and (min-width: 1024px){
    .teacher-dashboard h1{
        font-size: 64px;
    }

    .teacher-dashboard .filters-wrap .select-wrap{
        width: calc(33.33% - 30px);
    }

    .teacher-dashboard .booked-event ul{
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .teacher-dashboard .booked-event ul.info li:not(.view-details) {
        flex: 1 0 0;
    }

    .teacher-dashboard .booked-event ul li.view-details{
        margin-left: auto;
    }

    .teacher-dashboard .booked-event ul:first-child {
        justify-content: flex-end;
    }

    .teacher-dashboard .booked-event ul li.title{
        width: auto;
    }

    .teacher-dashboard.detail .booked-event ul{
        justify-content: flex-start;
    }

    .details-notes-wrap .content{
        width: calc(50% - 60px);
    }

    .links-wrap a{
        font-size: 24px;
    }
}