.schedulercalendar-container {
    display: flex;
    width: 1042px;
    height: 555px;
    background-color: #28C2FE;
}

.schedulercalendar-container
.calendar-container {
    display: flex;
    flex-direction: column;
    width: 65%;
    padding: 10px 5px 10px 10px;
}

.schedulercalendar-container
.calendar-header {
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
    font-weight: 500;
    padding: 0px 15px;
}

.schedulercalendar-container
.previousnext-button-container {
    font-size: 24px;
    cursor: pointer;
}

.schedulercalendar-container
.previousnext-button-container::selection {
    background-color: transparent;
}

.schedulercalendar-container
.monthyear-label-container {
    font-size: 28px;
}

.schedulercalendar-container
.weekdays-header {
    display: flex;
    align-items: center;
    height: 65px;
    background-color: #6C6C6C;
}

.schedulercalendar-container
.weekdays-header-cell {
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 500;
}

.schedulercalendar-container
.days-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #FFFFFF;
}

.schedulercalendar-container
.calendar-week {
    display: flex;
    border-bottom: 1px solid #C5C5C5;
    height: 100%;
}

.schedulercalendar-container
.days-container >
.calendar-week:last-child {
    border-bottom: none;
}

.schedulercalendar-container
.calendar-day {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #C5C5C5;
    width: 100%;
}

.schedulercalendar-container
.calendar-day.selectable {
    cursor: pointer;
}

.schedulercalendar-container
.calendar-day.selected {
	background-color: #DDF5FF;
	cursor: default;
}

.schedulercalendar-container
.calendar-week >
.calendar-day:last-child {
    border-right: none;
}

.schedulercalendar-container
.dayofmonth-label {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #939292;
}

.schedulercalendar-container
.dayofmonth-label.selectable {
    color: #28C2FE;
}

/* ************************************** */

.schedulercalendar-container
.time-container {
    width: 35%;
    padding: 10px 10px 10px 5px;
}

.schedulercalendar-container
.time-panel {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #F2F2F2;
}

.schedulercalendar-container
.time-panel-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 70px;
}

.schedulercalendar-container
.time-panel-inner
.selecteddate-label {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}

.schedulercalendar-container
.time-panel-inner
.available-time-container {
    display: flex;
    align-items: center;
    margin: 10px 0px;
}

.available-time-container
.radio-selection-outer {
    border: 1px solid #ACABAB;
    border-radius: 15px;
    padding: 4px;
    margin-right: 12px;
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #D1D1D1 100%);
}

.available-time-container
.radio-selection-outer:not(.selected) {
    cursor: pointer;
}

.available-time-container
.radio-selection-outer
.radio-selection-inner {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: transparent;
}

.available-time-container
.radio-selection-outer.selected
.radio-selection-inner {
    background-color: #28C2FE;
}

.available-time-container
.time-label {
    font-size: 28px;
    color: #444444;
}

.schedulercalendar-container
.time-panel-inner
.submit-button {
    width: 212px;
    height: 44px;
    background-color: #28C2FE;
    color: #FFFFFF;
    border: 1px solid #28C2FE;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500 !important;
}

.submit-button-container {
    margin-top: 40px;
}

.schedulercalendar-container
.time-panel-inner
.submit-button:disabled {
    cursor: default;
    opacity: .5;
}
.return-to-dashboard-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
.return-to-dashboard-wrapper 
.return-to-dashboard-link{
    text-transform: uppercase;
    text-align: center;
    text-decoration: underline;
    font-family: "Barlow Semi Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #00C0F3;
}
.return-to-dashboard-wrapper 
.return-to-dashboard-link
&:hover {
    color: #00C0F3;
    text-decoration: none;
}
/* WEBI-4380 changes */
@media (max-width: 768px) {
	.schedulercalendar-container {
		display: block !important;
		width: 100%;
		height: auto;
		background-color: #28C2FE;
	}
	
	.schedulercalendar-container .calendar-container {
		display: flex;
		width: 100% !important;
		padding: 13px 13px 5px !important;
	}
	
	.schedulercalendar-container .time-panel-inner {
		display: block !important;
		margin: 0 auto;
		padding: 25px 0;
	}
	
	.schedulercalendar-container .time-container {
		width: 100%;
		padding: 8px;
	}
	
	.schedulercalendar-container .weekdays-header {
		height: 40px;
		border-radius: 5px 5px 0 0;
	}
	
	.schedulercalendar-container .monthyear-label-container {
		font-size: 22px;
		font-weight: bold;
	}
	
	.schedulercalendar-container .weekdays-header-cell {
		font-size: 16px;
	}
	
	.schedulercalendar-container .dayofmonth-label {
		font-size: 15px;
		padding: 15px 11px;
		font-weight: bold;
		color: #6E6E6E;
	}
	
	.schedulercalendar-container .previousnext-button-container {
		font-size: 18px;
	}
	
	.schedulercalendar-container .time-panel-inner .selecteddate-label {
		font-weight: bold;
	}
	
	.schedulercalendar-container .days-container {
		border-radius: 0 0 5px 5px;
	}
}