#pusha-field-calendar {
    position: relative;
    margin-top: 20px;    
    border: 1px solid var(--pusha-booking-border);
    border-radius: 16px;
    background: #fff;
    display: table;
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);    
}

#pusha-field-calendar:after {
    content: "";
    display: table;
    width: 100%;
}

#pusha-calendar {

}

#pusha-calendar-wrap {
    width: 50%;
    box-sizing: border-box;
    float: left;
    border-spacing: 0px;
    padding: 15px 25px;
    border-collapse: separate;
}

#pusha-date-slots-separator:before {
    content: "";
    display: block;
    margin: auto;
    bottom: 2px;
    width: 2px;
    background: #f8f8f9;
    height: 100%;
}


#pusha-field-calendar.disabled {
    pointer-events: none;
    cursor: not-allowed;
}

#pusha-slots-data {
    display: none;
}

#pusha-timezone {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--pusha-black);
    background: var(--pusha-bg);
    border-radius: 50px;
    height: 42px;
    padding: 0px 17px;
    display: flex;
    align-items: center;
}

#pusha-timezone span {
    margin-right: 10px;
    font-size: 18px;
}

.pusha-calendar-header { 
    padding: 0px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pusha-calendar-header h3 {
    font-size: 15px !important;
    color: var(--pusha-black) !important;
    font-weight: 600 !important;
    padding: 0px 3px !important;
    margin: 0 !important;
    display: inline !important;
}

.pusha-calendar-header a {
    font-size: 20px;
    cursor: pointer; 
}

.pusha-calendar-header .pusha-prev-month, 
.pusha-calendar-header .pusha-next-month {
    font-size: 12px;
    color: var(--pusha-booking-text);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;    
    transition: all 0.3s;
    cursor: pointer;
}

.pusha-calendar-header .pusha-prev-month:hover,
.pusha-calendar-header .pusha-next-month:hover {  
    background: var(--pusha-booking-bg);
}

#pusha-calendar .pusha-calendar-table {
    width: 100%;
    border-spacing: 0px;
    border-collapse: separate;
    border: none;
}

#pusha-calendar .pusha-calendar-table tr:first-child td:first-child {
    border-top-left-radius: 12px;
}

#pusha-calendar .pusha-calendar-table tr:first-child td:last-child {
    border-top-right-radius: 12px;
}

#pusha-calendar .pusha-calendar-table tr:nth-last-child(-n+2) td:first-child {
    border-bottom-left-radius: 12px;
}

#pusha-calendar .pusha-calendar-table tr:nth-last-child(-n+2) td:last-child {
    border-bottom-right-radius: 12px;
}

#pusha-calendar .pusha-week-cell, 
#pusha-calendar .pusha-day-cell  {
    text-align: center;
}

#pusha-calendar .pusha-week-cell {
    border: none !important;
    padding: 15px 6px 15px 6px !important;
    font-weight: 500 !important;
    position: relative !important;
    background: transparent !important;
    font-size: 11px !important;
    color: var(--pusha-booking-text) !important;
    border-bottom: 1px solid var(--pusha-booking-border) !important;
    text-transform: uppercase !important;
}

#pusha-calendar .pusha-week-cell,
#pusha-calendar .pusha-day-cell {
    position: relative;
    padding: 2px 2px;
    background: transparent; 
    border: none;
}

#pusha-calendar .pusha-day-cell span {
    position: relative;
    width: 34px;
    height: 34px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 50%;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    color: var(--pusha-black);

    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

#pusha-calendar .pusha-day-available span:hover {
    background: var(--pusha-booking-primary);
    color: #fff;
} 

#pusha-calendar .pusha-day-unavailable span {
    color: var(--pusha-booking-text);
}     

/*************************** COLORS ************************/
#pusha-calendar .pusha-day-available span:after,
#pusha-calendar .pusha-day-unavailable span:after {
    content: "";
    position: absolute;
    bottom: -4px; /* -8px; */
    left: 0px;
    right: 0px;
    margin: auto;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    z-index: 9;
    opacity: 0.4;
}

#pusha-calendar .pusha-day-available span:after {
    background: #3ec300;
}


#pusha-calendar .pusha-day-unavailable span:after {
    background: #f14344;
}
/*************************** COLORS ************************/

#pusha-calendar .pusha-day-available span {
    cursor: pointer;      
}

#pusha-calendar .pusha-day-cell.selected span {
    background: var(--pusha-booking-primary);
    color: #fff;
}

#pusha-calendar .pusha-selected {
    padding-bottom: 15px; 
}

#pusha-calendar .pusha-today span {

}

/*** Calendar Time Slots ***/
#pusha-slots {
    box-sizing: border-box;
    width: 50%;
    float: right;
    position: relative;
    height: 376px;
    overflow: auto;
    border-left: 1px solid var(--pusha-booking-border);
    padding: 15px 25px;
}

#pusha-slots:empty:before {
    content: "";
    position: relative;
    background-image: url(img/slots_placeholder.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    display: block;
    height: 200px;
}

#pusha-slots .pusha-date-title {
    margin-bottom: 10px;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--pusha-booking-text);
    font-weight: 500;
}

#pusha-slots .pusha-time-slot {
    display: block;
    color: var(--pusha-booking-black);
    position: relative;
    background: #fff;
    border: 1px solid var(--pusha-border);
    border-radius: 5px;
    padding: 13px 20px;
    margin-bottom: 10px;  
    box-sizing: border-box;
    cursor: pointer;
    font-size: 14px;
    text-transform: lowercase;
    text-align: center;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

#pusha-slots .pusha-time-slot.selected {
    border: 1px solid var(--pusha-booking-primary);
    box-shadow: 0 0 0 1px var(--pusha-booking-primary);    
    color: var(--pusha-booking-primary);
}

#pusha-slots .pusha-time-slot:not(.selected):hover {
    color: var(--pusha-booking-primary);
    box-shadow: 0 0 0 1px var(--pusha-booking-primary);
    border: 1px solid var(--pusha-booking-primary);
}

#pusha-slots .pusha-time-slot.selected:after {
    content: "\f058";
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    font-size: 14px;
    color: var(--pusha-booking-primary);
    position: absolute;
    top: 3px;
    right: 12px;
}

#pusha-slots .pusha-time-slot:after {
    content: "";
    position: absolute;
    top: 30px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
}

/*** CLOCK LOADER ***/
.pusha-clock-loading {
    width: 42px;
    height: 42px;
    border: 4px solid #43b5b6;
    border-radius: 50%;
    background: #c9e5ed;
    margin: auto;
    position: relative;
}

.pusha-clock-loading .rotate-1:before, 
.pusha-clock-loading .rotate-2:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 6px;
    top: 0;
    left: -15px;
    right: 0;
    margin: auto;
    bottom: 0;
    background: #43b5b6;
    border-radius: 30px;
}       

.pusha-clock-loading .rotate-1,
.pusha-clock-loading .rotate-2 {
    width: 42px;
    height: 42px;       
    position: absolute;
}

.pusha-clock-loading .rotate-1 {
    animation: pusha-rotate 1s linear infinite; 
    -webkit-animation: pusha-rotate 1s linear infinite; 
}

.pusha-clock-loading .rotate-2 {       
    animation: pusha-rotate 10s linear infinite;
    -webkit-animation: pusha-rotate 10s linear infinite;
}

@keyframes pusha-rotate {
  to { transform: rotate(360deg) }
}

@-webkit-keyframes pusha-rotate {
  to { transform: rotate(360deg) }
}

@media screen and (max-width: 900px) {
    .pusha-steps-container {
        border-left: 1px solid #e9e9e9;
    }

    #pusha-calendar-wrap,
    #pusha-slots {
        height: auto;
        width: 100%;
        float: none;
        border-radius: 12px;
        border: 1px solid var(--pusha-booking-border);
    }
}

/****** Scrollbar ********/
/* width */
.pusha-slots-data::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.pusha-slots-data::-webkit-scrollbar-track {
  background: #00999a; 
}
 
/* Handle */
.pusha-slots-data::-webkit-scrollbar-thumb {
  background: #8dddde; 
}

/* Handle on hover */
.pusha-slots-data::-webkit-scrollbar-thumb:hover {
  background: #a1feff; 
}
/****** Scrollbar ********/

.pusha-capacity {
    background: #F53198;
    color: #fff;
    text-align: center;
    padding: 9px 5px;
    border-radius: 3px;
    line-height: 0px;
    font-size: 13px;
    position: absolute;
    right: -7px;
    top: -7px;
}

.pusha-time-start,
.pusha-time-end {
    display: block;
}

.pusha-time-text {
    display: none !important;
}

/**** AM/PM SWITCH *****/
.pusha-calendar-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pusha-calendar-tab-arrow {
    font-size: 12px;
    color: var(--pusha-booking-text);
    width: 30px;
    height: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    cursor: pointer;  
}

.pusha-calendar-tab-arrow:hover {
    background: var(--pusha-booking-primary);
    color: #fff;    
}

.pusha-calendar-tab-label {
    font-size: 15px !important;
    color: var(--pusha-black) !important;
    font-weight: 600 !important;
    padding: 0px 3px !important;
    margin: 0 !important;
    display: none !important;
}

.pusha-calendar-tab-label[selected] {
    display: inline !important;
}

/**** AM/PM SWITCH *****/


@media only screen and (max-width: 1000px) {
    #pusha-calendar-wrap .pusha-weekly-date {
        width: 100%;
        float: none;
    }

    #pusha-prev-week i {
        left: 5%;
        width: 50px;
        height: 50px;
    }

    #pusha-next-week i {
        right: 5%;
        width: 50px;
        height: 50px;
    }

    #pusha-prev-week i:hover,
    #pusha-next-week i:hover {
        background: rgba( 0,0,0,0.2 );
    }

    #pusha-prev-week span,
    #pusha-next-week span {
        display: none;
    }

    .pusha-prev-week .pusha-icon, 
    .pusha-next-week .pusha-icon {
        display: inline-block;
    }
}  



/*************** LOADING OVERLAY *******************/
.pusha-spinner:before {
	content: "";
    background: rgba(250, 250, 250, 0.3);
	overflow: hidden;
	position: absolute;
	z-index: 99;
	top:0;
	width: 100%;
	height:100%;
	left:0;
    animation: pusha_animate_background .3s;
    animation-fill-mode: both	
}

.pusha-spinner:after {
	content: "";
	position: absolute;
	z-index: 20;
	top: 50%;
	left: 50%;
	margin: -26px;		
	width: 30px;
	height: 30px;
	border-width: 3px;
	border-style: solid;
	border-color: #24334A #24334A transparent;
	display: inline-block;
	border-radius: 50%;
	animation: pusha_spin 1s linear infinite;
	box-sizing: border-box;
	z-index: 999;
}

@keyframes pusha_spin {
	0% {
		transform: rotate(0deg)
	}
	100% {
		transform: rotate(359deg)
	}
}

@keyframes pusha_animate_background {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/*************** LOADING OVERLAY *******************/



/*************** LOADER ***************/
#pusha-calendar-loader {
    min-height: 200px;
    position: absolute;
    z-index: 99999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;  
}

#pusha-calendar-loader:before {
    content: "";
    border-radius: 50%;
    width: 50px;
    height: 50px;    
    margin: 60px auto 20px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 2px solid var(--pusha-bg);
    border-right: 2px solid var(--pusha-bg);
    border-bottom: 2px solid var(--pusha-bg);
    border-left: 2px solid var(--pusha-booking-primary);
    -webkit-animation: pusha-load 1.1s infinite linear;
    animation: pusha-load 1.1s infinite linear;
}

@-webkit-keyframes pusha-load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes pusha-load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*************** LOADER ***************/