#appointment-progress-wrapper {
    margin: 2em 0;
    height: 100px;
}
.progress-step {
    float: left;
    width: 25%;
    /*background: red;*/
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: visible;
    height: 90px;
}
.progress-step .ui.header {
    margin-top: 1em;
}
.progress-step.draw .ui.header {
    color: #288a5b;
}
.progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    overflow: visible;
    display: inline-block;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    z-index: 3;
    text-align: center;
    font-size: 24px;
    line-height: 50px;
    font-weight: 700;
    transition-duration: 0.4s;
    transition-timing-function: ease-out;
    transition-property: background;

}
.progress-step.draw .progress-circle {
    background: #288a5b !important;
    color: #fff !important;
}

.progress-circle-step-number {
    transition: all 200ms ease-in;
}
.progress-step.draw .progress-circle .progress-circle-step-number {
    display: none;
}

.progress-step .progress-circle .progress-circle-check {
    display: none !important;
    color: #fff !important;
}

.progress-step.draw .progress-circle .progress-circle-check {
    display: inline-block !important;
}

@keyframes drawCircle {
    from {
        background: #fff;
    }
    to {
        background: #288a5b !important;
    }
}
.progress-line {
    position: absolute;
    width: 100%;
    height: 5px;
    top: 23px; left: 50%;
    z-index: 1;
    background: linear-gradient(to left, #fff 50%, #288a5b 50%) right;
    background-size: 200%;
    transition: 1s ease-in;
    transition-delay: 0s;
    z-index: 2;
}
.progress-step.draw .progress-line, #initial-progress-line.draw, #last-progress-line.draw {
    background-position: left;
}
#initial-progress-line {
    /*width: 50%;*/
    /*left: 0;*/
    width: 50vw;
    left: calc(-50vw + 50%);
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    transition-delay: 0s;
    transition-duration: 1s;
    z-index: 0;
}

#last-progress-line {
    width: 50vw;
    left: 50%;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    transition-duration: 1s;
    z-index: 1;
}

#make-appointment-grid > .row:first-child {
    max-height: 150px;
    /*position: -webkit-sticky; !* Safari *!*/
    /*position: sticky;*/
    top: 0;
    /*box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;*/
}
#make-appointment-grid > .row:last-child {
    height: calc(100vh - (210px - 1em));
    overflow-y: scroll;
    overflow-x: hidden;
    /*box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;*/
    /*box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.25) -3px -3px 6px 1px inset;*/
    /*box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;*/
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}

#make-appointment-navigation-wrapper {
    height: 60px;
    padding: 1em;
    /*box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.25) -3px -3px 6px 1px inset;*/
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}

.step-wrapper[data-step-index='1'] {
    /*padding-top: 93px;*/

}
/*.step-wrapper[data-step-index='2'] {*/
/*    background: #f9f6f5;*/
/*    border-top: 1px solid #d4d4d5;*/
/*}*/
/*.step-wrapper[data-step-index='3'] {*/
/*    background: #f9f6f5;*/
/*    border-top: 1px solid #d4d4d5;*/
/*}*/

.step-wrapper {
    display: none;
    opacity: 0;
    transition: opacity 1000ms ease-in-out;
    height: 100%;
    position: relative;
    background: #f9f6f5;
    border-top: 1px solid #d4d4d5;
}
.step-wrapper.active {
    display: block;
    opacity: 1;
}

#services-grid {
    background: #fff;
    border-bottom: none;
    box-shadow: none;
    border-top: 1px solid #d4d4d5;
}
#services-grid .column {
    padding: 2em 2em;
    text-align: center;
    border-bottom: 1px solid #d4d4d5;
}
#services-grid .row .column p {
    padding-left: 2em;
    padding-right: 2em;
}

#services-grid .column:last-child {
    border-right: 1px solid #d4d4d5;
}

#select-treatments-placeholder {
    margin: 0 auto !important;
    /*position: absolute;*/
    /*top: 0; right: 0; bottom: 0; left: 0;*/
    /*margin: auto;*/
    width: 250px;
    line-height: 40px;
}

#search-treatments-grid {
    /*top: 137px;*/
    /*position: fixed;*/
    position: sticky;
    z-index: 1;
    background: #288a5b;
}

#select-treatments-placeholder-wrapper {
    height: 66px;
}

#selected-treatments-list {
    margin-top: 5px;
}

.calendar-date-picker, .calendar-time-picker, .calendar-selected-treatment-wrapper {
    /*position: absolute;*/
    /*top: 0; right: 0; bottom: 0; left: 0;*/
    /*margin: auto;*/
    margin: 2em auto;
    width: 400px;
    min-height: 272px;
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.calendar-selected-treatment-wrapper {
    min-height: 200px;
    height: auto;
    padding-top: 1em;
}
.calendar-time-picker {
    padding: 0.5em 0;
}
.calendar-time-picker .ui.grid .row .column {
    height: 40px;
}
.calendar-weekdays-row {
    font-weight: 600;
    color: rgba(0,0,0,0.5);
}
.calendar-dates-row .column {
    /*margin-bottom: 1em !important;*/
    height: 40px;
    padding: 0 !important;
}
.calendar-date {
    font-weight: 700;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: auto;
    line-height: 40px;
}
.calendar-date:hover {
    cursor: pointer;
    background: rgba(40, 138, 91, 0.25);
}
.calendar-date.selected {
    background: #288a5b;
    color: #fff;
}
.calendar-date.selected .current-day-span {
    color: #fff;
}
.other-month-date {
    color: rgba(0,0,0,0.25);
}
.current-day-span {
    display: block;
    font-size: 6px;
    margin-top: -5em;
    color: #288a5b;
}

.make-appointment-contact-data-wrapper {
    margin: 0 auto;
    width: 600px;
    max-width: 80%;
    background: #fff;
    border-radius: 10px;
    padding: 1em;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.treatment-column {
    -webkit-box-shadow: 0 0 0 1px #d4d4d5;
    box-shadow: 0 0 0 1px #d4d4d5;
    transition: background-color 400ms ease-in-out;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    align-content: stretch;
    min-height: 310px;
    padding: 2rem !important;
}

.treatment-column.hidden {
    display: none;
}

.treatment-column.selected {
    background-color: #288a5b;
}
.treatment-column.selected * {
    color: #fff;
}

.treatment-column img {
    flex: 2;
    height: 80px;
    max-height: 80px;
    min-height: 80px;
}

.treatment-column h3 {
    flex: 1;
    text-align: center;
}
.treatment-column .treatment-description-wrapper {
    flex: 5
}

.select-treatment-btn {
    height: 35px;
    margin-top: 1rem !important;
}

@media only screen and (max-width: 767px) {
    .mobile.invisible {
        display: none !important;
    }
    .step-wrapper[data-step-index='1'] {
        padding-top: 0px !important;
    }
}

.hairdresser-segment[data-hairdresser="no-preference"].inverted .glyph-icon {
    color: #fff !important;
}
