/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.gu-tut-main-content .modal {
    z-index: 99999999 !important;
}
.gutut.gu-tut-main-content .top-subject{
    display: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

.tutor-info {
    min-height: 300px;
}

.star-color {
    color: orange;
    font-size: 16px;
}

.left-tutor-info {
    text-align: center;
}

.step-2 .tutor-info table {
    font-size: 12px;
}

.available-hour {
    background-color: #5D9BF2;
}

.selected-hour {
    background-color: #0061E0;
}

.unavailable-hour {
    background-color: #CFD6DC;
}

.step-2 .tutor-info table th,
.step-2 .tutor-info table td {
    padding: 0;
    text-align: center;
    border-radius: 5px;
    border:2px solid white;
    color:  #8A8E91 ;
}
.day_in_month{
    font-size: 18px;
    color: #5A6169;
    font-weight: 700;
}
.day_of_week{
    font-size: 10px;
}
td.today .day_in_month, td.today .day_of_week{
    color: #D92A55;
}
.step-2 .tutor-info table td.width-10{
    font-size: 10px;
    white-space: nowrap;
}
.width-10 {
    width: 10%;
}

.reduce-height td {
    line-height: 1.3;
}

.review-tutor {
    border: 2px solid #becad6;
    padding: 10px;
    border-radius: 25px;
}

.student-name-bold {
    font-weight: bold;
}

.course-name-grey {
    font-size: 14px;
    color: grey;
}


/* Important part */

.modal-dialog {
    overflow-y: initial !important
}

.modal-body {
    height: 500px;
    overflow-y: auto;
}


/*Multisteps form*/

.header__btn {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    padding: 10px 20px;
    display: inline-block;
    margin-right: 10px;
    background-color: #fff;
    border: 1px solid #2c2c2c;
    border-radius: 3px;
    cursor: pointer;
    outline: none;
}

.header__btn:last-child {
    margin-right: 0;
}

.header__btn:hover,
.header__btn.js-active {
    color: #fff;
    background-color: #2c2c2c;
}

.header {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.header__title {
    margin-bottom: 30px;
    font-size: 2.1rem;
}

.content {
    width: 95%;
    margin: 0 auto 50px;
}

.content__title {
    margin-bottom: 40px;
    font-size: 20px;
    text-align: center;
}

.content__title--m-sm {
    margin-bottom: 10px;
}

.multisteps-form__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.multisteps-form__progress-btn {
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    position: relative;
    padding-top: 20px;
    color: rgba(108, 117, 125, 0.7);
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: pointer;
}

@media (min-width: 500px) {
    .multisteps-form__progress-btn {
        text-indent: 0;
    }
}

.multisteps-form__progress-btn:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 13px;
    height: 13px;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 0.15s linear 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    border: 2px solid currentColor;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3;
}

.multisteps-form__progress-btn:after {
    position: absolute;
    top: 5px;
    left: calc(-50% - 13px / 2);
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    background-color: currentColor;
    z-index: 1;
}

.multisteps-form__progress-btn:first-child:after {
    display: none;
}

.multisteps-form__progress-btn.js-active {
    color: #007bff;
    background-color: unset;
}

.multisteps-form__progress-btn.js-active:before {
    -webkit-transform: translateX(-50%) scale(1.2);
    transform: translateX(-50%) scale(1.2);
    background-color: white;
}

.multisteps-form__form {
    position: relative;
}

.multisteps-form__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.multisteps-form__panel.js-active {
    height: auto;
    opacity: 1;
    visibility: visible;
}

.multisteps-form__panel[data-animation="scaleOut"] {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.multisteps-form__panel[data-animation="scaleOut"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.multisteps-form__panel[data-animation="slideHorz"] {
    left: 50px;
}

.multisteps-form__panel[data-animation="slideHorz"].js-active {
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
    transition-delay: 0s;
    left: 0;
}

.multisteps-form__panel[data-animation="slideVert"] {
    top: 30px;
}

.multisteps-form__panel[data-animation="slideVert"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    top: 0;
}

.multisteps-form__panel[data-animation="fadeIn"].js-active {
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.multisteps-form__panel[data-animation="scaleIn"] {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.multisteps-form__panel[data-animation="scaleIn"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.titleBox{
    bottom: 10px;
    right: 12px;
    background-color: white;
    box-shadow: 2px 2px 3px #888888;
    border-radius: 10px;
    text-align: center;
    line-height: 20px
}
.top-subject-image{
    border-radius: 10px;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.top-subject .number-teacher{
    font-size: 12px;
}
#carouselSubjects .carousel-indicators{
    bottom: -50px;
}
#carouselSubjects li.active{
    background-color: black;
}
#carouselSubjects .carousel-control-prev, #carouselSubjects .carousel-control-next {
    width: 30px;
}
.gutut .carousel-control-prev-icon{
    margin-right: 25%;
    filter: invert(1);
}
.gutut .carousel-control-next-icon{
    margin-left: 32%;
    filter: invert(1);
}
@media only screen and (max-width: 1199px) {
    .gutut .carousel-control-prev-icon{
        margin-right: 20%;
        margin-top: 20px;
    }
    .gutut .carousel-control-next-icon{
        margin-left: 25%;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 991px) {
    .gutut .carousel-control-prev-icon{
        margin-right: -8%;
    }
    .gutut .carousel-control-next-icon{
        margin-left: -5%;
    }
}
@media only screen and (max-width: 768px) {
    .gutut .carousel-control-prev-icon{
        margin-right: 23%;
    }
    .gutut .carousel-control-next-icon{
        margin-left: 20%;
    }
}
@media only screen and (max-width: 767px) {
    .gutut .carousel-control-prev-icon{
        margin-right: 0%;
    }
    .gutut .carousel-control-next-icon{
        margin-left: 0%;
    }
}
@media only screen and (max-width: 599px) {
    .gutut .carousel-control-prev-icon{
        margin-right: 0%;
    }
    .gutut .carousel-control-next-icon{
        margin-left: 0%;
    }
}
@media only screen and (max-width: 500px) {
    .gutut .carousel-control-prev-icon{
        margin-right: -15%;
    }
    .gutut .carousel-control-next-icon{
        margin-left: -25%;
    }
}
@media only screen and (max-width: 414px) {
    .gutut .carousel-control-prev-icon{
        margin-top: 35px;
    }
    .gutut .carousel-control-next-icon{
        margin-top: 35px;
    }
}
@media only screen and (max-width: 385px) {
    .gutut .carousel-control-next-icon, .gutut .carousel-control-prev-icon{
        width: 10px;
        height: 10px;
    }
    .gutut .carousel-control-prev-icon{
        margin-right: -15%;
        margin-top: 50px;
    }
    .gutut .carousel-control-next-icon{
        margin-left: -25%;
        margin-top: 50px;
    }
}
#carouselSubjects .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
#carouselSubjects .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
#carouselSubjects .carousel-indicators li, #carouselSubjects .carousel-indicators li{
    width: 5px;
    height: 5px;
    border-radius: 100%;
    border: 1px solid black;
}
#carouselSubjects{
    background-color: #FEFEFE;
}
.top-subject{
    padding-left: 50px;
    padding-right: 50px;
}
.subject-container{
    min-height: 205px;
}
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .top-subject{
    padding-left: 20px;
    padding-right: 20px;
}
.subject-container{
    min-height: 187px;
}
}
.tutored_hours{
    font-size: 12px;
    color: #686f7a;
}
.range_price{
    top: 0px;
    right: 0px;
    font-weight: bold;
    color: #006fe6;
}
.mobile-text{
    display: none;
}
@media only screen and (max-width: 766px) {
    .desktop-text{
        display: none;
    }
    .mobile-text{
        display: unset;
    }
}
.gutut .course-info:hover{
    background-color: #F7F8FA;
}
.tooltip_templates{
    display: none;
}

.tooltipster-base h6, .tooltipster-base li, .tooltipster-content{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.625;
}
/*End mulltisteps form*/


/*Booking shortcode*/

.multisteps-form__panel {
    min-height: 400px;
}

.multi-step button:hover {
    background-color: unset;
    color: unset;
}

.gu-tut-main-content .modal-title {
    font-weight: bold;
}

.modal {
    text-align: center;
    padding: 0!important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.selected-course {
    border-color: #00b8d8;
}

.gu-tut-main-content table th,
.gu-tut-main-content table td {
    text-align: center;
}

.square {
    height: 12px;
    width: 12px;
    display: inline-block;
}

.timetable-note {
    font-size: 14px;
}

.course-detail {
    color: grey;
    font-size: 14px;
}

.price-number {
    font-size: 16px;
}

.gu-tut-main-content {
    font-family: 'Roboto', sans-serif;
}

.booking-confirm i.fa {
    display: inline-block;
    border-radius: 60px;
    box-shadow: 0px 0px 2px #888;
    padding: 0.5em 0.6em;
    font-size: 60px;
    color: #17C671;
    background-color: #f3eeee;
}

.gutut.gu-tut-main-content .btn {
    font-weight: bold;
}

.gutut.gu-tut-main-content .step-3 .card-text {
    font-size: 16px;
}

.gutut.gu-tut-main-content .step-3 .badge {
    font-size: 16px;
}

.gutut.gu-tut-main-content * {
    font-family: 'Roboto', sans-serif;
}

.gutut.gu-tut-main-content i,
.gutut.gu-tut-main-content .booking-confirm i {
    font-family: 'FontAwesome';
}

.step-2 .card-text {
    font-size: 16px;
}

.gutut.gu-tut-main-content label {
    font-size: 16px;
    color: #5a6169;
}

.gutut.gu-tut-main-content .step-5 label {
    cursor: default;
}

.gutut.gu-tut-main-content .booking-confirm * {
    font-family: 'Roboto', sans-serif;
}


/*End Booking shortcode*/


/*Extra Custom css*/

.gutut .modal.fade.show {
    background-color: rgba(0, 0, 0, 0.3);
}


/*End Extra Custom css*/

/* start fullcalendar custom*/
button.fc-button.fc-button-primary{
    background: white;
    color: #007BFF;
    border: white
}
/*#availability{
    border: 1px #DDDDDD solid
}*/
div.fc-business.fc-bgevent{
    background: white
}
.fc-row.fc-week.fc-widget-content{
    display: none;
}
.fc-unthemed .fc-today {
  background: white !important;
}
.fc-row.fc-widget-header table{
    padding-bottom: 0px
}
#notification{
    display: none;
}
.fc table{
    margin-bottom: 0px;
}
td.fc-axis.fc-time.fc-widget-content{
    line-height: 0
}
tbody#availability.TimeSheet {
    font-size: unset;
    border: none;
}
tbody#availability.TimeSheet td{
    line-height: normal;
    width: 121px;
    border: 2px solid white;
}
#availability .today.day_in_month, #availability .today.day_of_week{
    color: #D92A55;
}
#availability .day_in_month{
    font-size: 25px;
}
#availability .day_of_week{
    font-size: 15px;
}
#availability .TimeSheet-colHead, #availability .TimeSheet-rowHead   {
    background-color: white;
}
#availability td.TimeSheet-cell{
    background-color: #CFD6DC;
    border-radius: 10px;
}
#availability td.TimeSheet-cell.TimeSheet-cell-selected, #availability td.TimeSheet-cell.TimeSheet-cell-available-select.TimeSheet-cell-selected{
    background-color: #0061E0;
}
.twbs .table td{
    border-bottom: none;
}
.calendar-title{
    font-size: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #4A5456
}
#availability tr.TimeSheet-row td{
    line-height: 10px;
}
#availability .TimeSheet-rowHead {
    text-align: right;
}
@media (max-width: 990px) {
    .width-10{
        font-size: 18px;
    }
}
@media (max-width: 558px) {
    #table-availability td {
        padding-left: 0px;
        padding-right: 0px;
    }
    .width-10{
        font-size: 16px;
        word-break: keep-all;
    }
}
@media (max-width: 775px) {
    .width-10{
        font-size: 16px;
        word-break: keep-all;
    }
}
@media (max-width: 766px) {
    #availability .day_in_month{
        font-size: 14px !important;
    }
    #availability .day_of_week{
        font-size: 14px !important;
    }
    .width-10{
        font-size: 14px;
        word-break: keep-all;
    }
}
#availability td.TimeSheet-cell.TimeSheet-cell-available-select{
    background-color: #5D9BF2;
}
#availability td.TimeSheet-cell.TimeSheet-cell-unavailable-select{
    background-color: #CFD6DC;
    pointer-events:none;
}
/* end fullcalendar custom */

/*Start loading icon*/
.fa-3x{
    text-align: center;
    display: none;
}
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

  background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*End loading icon*/
#star-wrapper{
    cursor: pointer;
}
.card-body a{
    color: #0d6efd!important;
    text-decoration: underline;
    cursor: pointer;
}
.parsley-type{
        margin: 5px 0px 0px -30px;
    font-size: 15px;
}
.modal-dialog.modal-lg {
    min-width: 300px;
}
@media (min-width: 992px){
    .modal-dialog.modal-lg {
        min-width: 800px;
    }
}
@media (min-width: 576px){
    .modal-dialog.modal-lg {
        min-width: 500px;
    }
}

.tutor-brief-intro{
    color: #686f7a;
    font-size: 16px;
}

.badge-subject{
    color: #fff;
    background-color: #D92A55;
}

.badge-range-price{
    color: #fff;
    background-color: #007bff;
}

.course-description{
    color: #686f7a;
    font-size: 16px;
}

.gu-tut-main-content .total-minutes{
    color: #686f7a;
}

.total-rating{
    color: #686f7a;
    font-size: 14px;
}

.featured-subject{
    padding:10px;
}
.star-color{
    white-space: nowrap;
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
    /* For mobile phones: */
    .star-color{
    font-size: 14px;
    }
  }

.course-check-mark{
    color: #007bff;
}

.site-container button:disabled{
    background: unset;
}
.gutut .carousel-control-next.slick-arrow,.gutut .carousel-control-prev.slick-arrow {
    height: 62.5%;
}
