:root {
	--dark-gray: #1d1d1b;
	--medium-gray: #53606f;
	--light-gray: #959daa;
	--status-good: #9ed6bd;
	--status-ok: #0cb3e9;
	--status-fail: #dda0b3;

	--icon-good: #055043;

	--circleSize: 14px;
}

@font-face {
	font-family: "UbuntuRegular";
	src: url("../fonts/Ubuntu/Ubuntu-Regular.ttf");
}

.chartBox {
	width: 300px;
	height: 300px;
}

.flexBox {
	display: flex;
	justify-content: center;
}


body {
	background-color: #f4f2f1;
	font-family: "UbuntuRegular";
}

button:focus, input[type="submit"], input[type="reset"] {
	border: none;
	outline: inherit;
}

.section {
	margin-bottom: 30px;
	height: 40px;
    line-height: 40px;
}

.panel {
	background-color: #fff;
	border-radius: 20px;
	padding: 20px; 
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.16);
	margin-bottom: 30px;
}

.panelHeader {
	color: var(--light-gray);
	margin-bottom: 10px;
	font-size: 18px;
}

.logo {
	margin-top: 35px;
	margin-bottom: 50px;
}

.logo#loginLogo {
	margin-top: 20px;
	position: absolute;
	top: 0px;
	padding-left: 170px;
}

#backToListImg {
	margin-right: 10px;
}

.menuWrapper {
	display: inline-block;
	float: right;
	margin-top: 23px;
}

.dropdownMenu {
	width: 153px;
  	height: 44px;
  	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  	border-radius: 10px;
  	border: none;
  	display: inline-block;
  	background-color: white;
}

	.dropdownMenu:focus {
		border: none;
	}

#patientListTable {
	border-collapse: separate;
    border-spacing: 0 15px;
    border-bottom: 0;
}

	#patientListTable th {
		border-bottom: 0;
		font-size: 13px;
		color: #53606f;
	}

	#patientListTable tbody tr {
		box-shadow: 0 0 15px 0 rgb(0 0 0 / 8%);
    	border-radius: 10px;
	}

#patientListTable td {
	background: white;
	color: #53606f;
}

#patientListTable tr td:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	padding-left: 30px !important;
}

#patientListTable tr td:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	padding-right: 30px !important;
}

.tableName {
	color: black;
}

.tdImageText {
	display: flex;
}

	.tdImageText img {
		margin-right: 5px;
	}

#patientListTable_filter {
	float: none;
    display: inline-block;
}

	#patientListTable_filter input {
		width: 240px;
	    height: 44px;
	    padding-left: 12px;
	    border-radius: 10px;
	    border: solid 1px #e9e6e4;
	    background-color: #fff;
	}

.toolbar {
	display: flex;
	justify-content: space-between;
}

.hcpName {
	width: 45%;
}

.hcpNameHeader {
	font-size: 20px;
	color: var(--medium-gray);
}

.hcpNameInfo {
	font-size: 20px;
	color: var(--light-gray);
}

.switch, .switch button {
	height: 44px;
	background: #e9e6e4;
	border-radius: 10px;
	border: none;
	display: inline-block;
}

.switch button {
	padding: 10px 15px;
	color: var(--medium-gray);
	cursor: pointer;
}

	.switch button.active {
		background: white;
		color: black;
		box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
	}

#switchButtonAll, #switchButton30days, #switchButton90days {
	margin-right: 5px;
}

.patientNumber {
	font-size: 16px;
    height: 44px;
    width: 114px;
    border-radius: 10px;
    border: solid 1px #e9e6e4;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--medium-gray)
}

.overviewInfoWrapper {
	margin-bottom: 7px;
}

.overviewPanelHeader {
	color: var(--light-gray);
	font-size: 10px;
	margin: 0;
	display: inline-block;
    margin-right: 5px;
    font-weight: bold;
}

.overviewPanelText {
	color: var(--medium-gray);
	font-size: 14px;
	margin: 0;
	line-height: 14px;
	font-weight: bold;
}

.hcpChartWrapper {
	height: 90px;
	width: 120px;
}

.chartWrapperFullWidth {
	width: 100%;
	height: 400px;
}

.circleChartWrapper {
	padding-top: 10px;
}

.hcpCircleWrapper {
	margin-right: 8px;
}

.circle {
  	height: var(--circleSize);
  	width: var(--circleSize);
  	border-radius: 50%;
  	display: inline-block;
  	position: relative;
  	text-align: center;
}

	.circle i {
		font-size: 8px;
	    text-align: center;
	    width: 12px;
	    height: 12px;
	    position: absolute;
	    color: #4e2634;
    	top: 2px;
	}

.circleRow {
	height: var(--circleSize);
	margin-bottom: 5px;
	font-size: 0;
	display: flex;
}

.status-good {
	background-color: var(--status-good);
}

.status-ok {
	background-color: var(--status-ok);
}

.status-fail {
	background-color: var(--status-fail);
}

.status-null {
	background-color: #e9e6e4;
}

.chartPeriodLegend {
	display: inline-block;
	font-size: 11px;
	color: var(--light-gray);
	font-weight: bold;
    float: left;
    margin-top: 10px;
}

.legendWrapper {
	display: inline-block;
}

	.legendWrapper .legendObjectWrapper {
	    margin-left: 10px;
	}

.legend {
	margin-top: 12px;
	font-size: 0;
	text-align: right;
	padding-right: 9px;
}

.legendObjectWrapper{
	display: inline-block;
	margin-left: 20px;
}

.legendText {
	font-size: 11px;
	vertical-align: text-bottom;
	line-height: 13px;
}

.legendCircle {
  	height: 14px;
  	width: 14px;
  	border-radius: 50%;
  	display: inline-block;
  	margin-right: 3px;
  	text-align: center;
}

.dashed {
	height: 6px;
    width: 9px;
    display: inline-block;
    border: 0;
    border-top: 2px solid #758b91;
    border-style: dashed;
    margin-right: 4px;
}

.button {
	width: 140px;
    border-radius: 10px;
    padding: 0 15px;
  	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  	background-color: #f4f2f1;
  	display: block;
  	text-decoration: none;
  	color: var(--medium-gray);
  	font-size: 14px;
}

	.button:hover {
		color: var(--medium-gray);
		text-decoration: none;
	}

	.button i {
		margin-right: 10px;
	}

.right {
	text-align: right;
}

.infoTextTopPanel {
	font-size: 12px;
    color: var(--medium-gray);
}

	.infoTextTopPanel i {
		margin-right: 5px;
	}

.hide {
	display: none !important;
}

.averageDetailedButton {
	border: none;
	background: white;
	padding: 0;
	margin-right: 20px;
	cursor: pointer;
	color: var(--light-gray);
	font-size: 18px;
}

	.averageDetailedButton.active {
		border-bottom: 2px solid var(--light-gray);
		color: black;
	}

.periodButton {
	width: 100px;
	height: 58px;
	border-radius: 10px;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  	background: #f4f2f1;
	border: none;
	cursor: pointer;
	font-size: 14px;
	padding: 10px 15px;
	color: var(--medium-gray);
}

	.periodButton.active {
	  	background: white;
	  	color: black;
	}

		.periodButton.active .periodButtonInfo {
		  	color: var(--medium-gray);
		}

.periodButtonsWrapper {
	margin-top: 40px;
    padding: 0 10px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.periodButtonOuterContent {
	display: flex;
    align-items: flex-start;
}

.periodButtonContent {
	display: flex;
	align-items: center;
}

.periodButtonInfo {
	font-size: 12px;
    text-align: start;
    color: var(--light-gray);
}

.patientInfoHeader, .patientInfoName, .patientInfoStatus {
	font-size: 18px;
}

.patientInfoStatusHeader {
	font-size: 11px;
}

	.patientInfoStatusHeader img {
		margin-left: 5px;
	}

.patientInfoHeader, .patientInfoStatusHeader {
	color: var(--light-gray);
}

.patientInfoName, .patientInfoStatus {
	color: var(--medium-gray);
}

.patientInfoStatusWrapper div {
	display: inline-block;
}

.patientInfoStatus {
	font-weight: bold;
}

.patientInfoWrapper {
	align-items: flex-end;
}

.periodChart {
	min-height: 315px;
	margin: 20px 0px;
	padding-top: 5px;
	padding-left: 0;
	padding-right: 0;
}

#patientViewDonutChart {
	margin: auto;
	height: 315px;
}

.graphInfoButton {
	width: 94px;
	height: 26px;
	border-radius: 10px;
	background-color: #e9e6e4;
	font-size: 12px;
	border: none;
	color: var(--medium-gray);
	justify-content: center;
}

	.graphInfoButton img {
		margin-right: 5px;
	}

.verticalCenter {
	display: flex;
    align-items: center;
}

.loginWrapper {
	display: flex;
	background: white;
}

.loginLeftSide {
	width: 530px;
	padding-left: 170px;
	margin-top: 100px;
}

.loginRightSide {
	width: calc(100% - 530px);
	height: 100vh;
}

	.loginRightSide img {
		max-width: 100%;
  		height: 100%;
  		object-fit: cover;
	}

.loginForm h1 {
	font-size: 30px;
	color: var(--medium-gray);
	margin-bottom: 30px;
}

.loginForm h2 {
	font-size: 20px;
	color: var(--light-gray);
	margin-bottom: 20px;
}

.loginFormRow {
	margin-bottom: 20px;
}

	.loginFormRow label {
		display: block;
		font-size: 14px;
		margin-bottom: 0;
	}

.loginFormTextField input {
	width: 332px;
	height: 44px;
	margin-top: 5px;
	border-radius: 10px;
	border: solid 1px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	padding-left: 15px;
}

	.loginFormTextField input:focus {
		outline: none;
	}

.loginButton {
	display: inline-block;
	width: 332px;
	height: 50px;
	margin-top: 92px;
	border-radius: 10px;
	border: none;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
	background-color: #034f76;
	color: white;
	text-align: center;
    padding: 12px 0;
    text-decoration: none;
}

	.loginButton:hover {
		color: white;
		text-decoration: none;
	}

	.loginButton img {
		margin-left: 15px;
	}

#forgotPassword a {
	color: #034f76;
}

.userPanelsWrapper {
	display: flex;
}

.userArrowWrapper {
	position: absolute;
	bottom: 15px;
}

.selectUserPanel {
	width: 152px;
	height: 235px;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.08);
	background-color: #fff;
	border-radius: 15px;
	display: inline-block;
	position: relative;
}

	.selectUserPanel:hover {
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	}

.selectUserPanel.leftPanel {
	margin-right: 20px;
}

.selectUserHeader {
	border-radius: 15px 15px 0 0;
	background-color: #f4f2f1;;
	height: 40px;
	color: #53606f;
	font-size: 13px;
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.selectUserContent {
	padding-top: 20px;
	display: flex;
    align-items: center;
    flex-direction: column;
}

.user {
	width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

.userType {
	text-align: center;
	padding-top: 20px;
}

#userPatient {
	color: #034f76;
}

#userHealthCare {
	color: #055043;
}

#userPatient span {
    background-color: #afd6e5;
}

#userHealthCare span {
	background-color: #9ed6bd;
}


.monthCircleRow {
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
}

.monthCircle {
	height: 35px;
	width: 35px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 5px;
    margin-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.completed {
	background-color: #034f76;
	color: white;
}

.notStarted {
	background-color: #e9e6e4;
	color: var(--light-gray);
}

.gradient {
	background: conic-gradient(#aee0f1, #0cb1e7, #034f76);
}

.monthCircleDate {
	font-size: 12px;
	margin: 0;
}

.miniDonut {
	width: 35px;
	height: 35px;
	margin-right: 5px;
    margin-left: 5px;
}

.monthDayIndicator {
	width: 35px;
	height: 35px;
	display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
    text-align: center;
    color: #949ca9;
}

.monthDayIndicatorRow {
	display: flex;
    justify-content: center;
}

.circleWrapper {
	padding-top: 5px;
	padding-bottom: 5px;
}

.missingDay {
	background: #ecd6db;
}

.firstMissingDay {
	border-radius: 50% 0 0 50%;
}

.lastMissingDay {
	border-radius: 0 50% 50% 0;
}


.circle2 {
	height: 17px;
	width: 17px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	margin-right: 5px;
}

	.circle2 i {
	    font-size: 9px;
	    position: absolute;
	    top: 4px;
	    left: 4px;
	}

.status-good i {
	color: var(--icon-good);
}

.treatmentPanelHeaderRow {
	align-items: end;
	margin-bottom: 15px;
}

.periodLabel {
	font-size: 12px;
	color: black;
	font-weight: bold;
	margin-right: 300px;
}


#changePeriodButton {
	width: 100%;
	height: 44px;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	margin-top: 20px;
	color: #53606f;
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

#prevButton, #nextButton {
	cursor: pointer;
}

#chartInfoWrapper {
	display: flex; 
	align-items: start;
}

	#chartInfoWrapper img {
		display: inline-block; 
		display: inline-block;
		margin-top: 4px; 
		margin-right: 7px;
	}

#chartInfoText {
	display: inline-block; 
	width: calc(100% - 20px); 
	font-size: 12px; 
	color: #53606f;
}

#patientListTable tr {
	cursor: pointer;
}

.statusSymbol {
	margin-right: 5px;
}



/*dropdown menu*/
.ui-selectmenu-menu .ui-menu.customicons .ui-menu-item-wrapper {
  	padding: 0.5em 0 0.5em 3em;
  	font-family: "UbuntuRegular";
}

.ui-selectmenu-button {
	font-family: "UbuntuRegular";
  	width: 163px !important;
  	height: 44px;
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 16%);
    border: none;
    padding-top: 12px;
    background: white;
}

.ui-selectmenu-button:focus, .ui-selectmenu-button:hover {
	background: white;
	border: none;
}

.ui-selectmenu-button-open {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.ui-selectmenu-menu .ui-menu.customicons .ui-menu-item .ui-icon {
  	height: 24px;
  	width: 24px;
  	top: 10px;
  	left: 15px;
}

.ui-menu, .ui-widget.ui-widget-content {
	border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: none;
    box-shadow: 0px 14px 15px 0 rgb(0 0 0 / 16%);
}

.ui-state-active, .ui-widget-content .ui-state-active {
	border: none;
	background-color: transparent;
	color: black;
}

.ui-icon.overview {
  	background: url("../img/overview.svg") 0 0 no-repeat;
}
.ui-icon.patients {
	background: url("../img/patients.svg") 0 0 no-repeat;
}
.ui-icon.account {
  	background: url("../img/account.svg") 0 0 no-repeat;
}
.ui-icon.signOut {
  	background: url("../img/sign-out.svg") 0 0 no-repeat;
}
.ui-icon.swe {
  	background: url("../img/swe.svg") 0 0 no-repeat;
}
.ui-icon.uk {
  	background: url("../img/uk.svg") 0 0 no-repeat;
}

.selectedMenuItem {
	background-color: #f4f2f1;
}

@media only screen and (max-width: 1199.5px) {
	#switchButtonsOuterWrapper {
		margin-top: 20px;
	}

	.switchButtonsWrapper {
		display: flex;
    	justify-content: space-between;
	}

	.switchButtonsWrapper button {
		float: left;
		font-size: 14px;
	}

	.switch, .periodLabel {
		float: left;
	}

	.periodButton {
		width: 90px;
		padding: 0 5px;
	}

	.graphInfoButton {
		padding: 0 3px;
	}

	.graphInfoButton img {
		margin-right: 2px;
	}
}

@media only screen and (max-width: 991.5px) {
	.loginLeftSide {
		width: 360px;
		padding-left: 0;
	}

	.loginRightSide {
		width: calc(100% - 360px);
	}

	.loginForm {
		margin: auto;
		width: 332px;
	}

	.logo#loginLogo {
		margin: 20px;
		position: absolute;
		top: 0px;
		padding: 0;
	}

	.datePicker {
		width: 45%;
	}

	.datePickerInput {
		width: 100%;
	}

	.datePickerWrapper {
		display: flex;
    	width: 100%;
    	justify-content: space-around;
	}

	.patientInfoStatusHeader {
		margin-top: 15px;
	}

	.periodButton {
		width: 85px;
		padding: 0 5px;
	}

	.statusSymbol {
		margin-right: 3px;
	}

	.periodButtonInfo {
		font-size: 11px;
	}

	.periodButtonContent {
		font-size: 13px;
	}

	.switch {
		width: 100%;
	}

	.switch button {
		width: 32%;
		padding: 0 5px;
	}

	.graphInfoButton {
		margin-top: 10px;
	}

	.graphInfoButton img {
		margin-right: 5px;
	}
}

@media only screen and (max-width: 767.5px) {
	.patientRightPanel {
		margin-top: 35px;
		padding: 0;
	}

	.patientInfoStatusHeader {
		margin-top: 0px;
	}

	.periodButton {
		width: 100px;
		padding: 10px 15px;
	}

	.statusSymbol {
		margin-right: 5px;
	}

	.periodButtonInfo {
		font-size: 12px;
	}

	.periodButtonContent {
		font-size: 14px;
	}

	.periodButton {
		width: 90px;
		padding: 0 5px;
	}

	.graphInfoButton {
		margin-top: 0px;
	}

	#prevButton, #nextButton, #nextButtonDisabled {
		width: 10px;
	}
}

@media only screen and (max-width: 640px) {
	html, body, #content, .loginWrapper {
		height: 100%;
	}

	.loginWrapper {
		position: relative;
	}

	.loginLeftSide {
		width: 100%;
		height: 70%;
		position: absolute;
    	top: 30%;
    	border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		background-color: white;
		margin-top: 0;
	}

	.loginRightSide {
		width: 100%;
		height: 35%;
	}

		.loginRightSide img {
			width: 100%;
		}

	.loginForm {
		padding-top: 10px;
	}

	.loginButton {
		position: absolute;
    	bottom: 35px
	}

	.userPanelsWrapper {
		justify-content: space-around;
	}

	.selectUserPanel.leftPanel {
		margin-right: 0;
	}

	.selectUserPanel {
		width: 135px;
		height: 200px;
	}

	.selectUserHeader {
		padding: 0 5px;
	}

	.selectUserContent {
		padding-top: 10px;
	}

	.userType {
		padding-top: 5px;
	}
}

@media only screen and (max-width: 400px) {
	.loginForm {
		width: 90%;
	}

	.loginFormTextField input{
		width: 100%;
	}

	.loginButton {
		width: 90%;
	}

	.ui-selectmenu-button {
		width: 130px !important;
	}

	.switchButtonsWrapper button {
		font-size: 12px;
	}

	.graphInfoButton {
		font-size: 10px;
	}
}

@media screen and (max-height: 585px) {
	.loginForm h1 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.loginForm h2 {
		font-size: 15px;
		margin-bottom: 5px;
	}

	.loginFormTextField input {
		height: 35px;
		margin-top: 0;
	}

	.loginFormRow {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.loginButton {
		margin-top: 0;
	}

	.logo#loginLogo {
		margin: 15px;
	}
}

@media screen and (max-height: 450px) {
	.loginLeftSide {
		margin-top: 60px;
	}

	.selectUserContent {
		padding-top: 10px;
	}

	.userType {
		padding-top: 5px;
	}

	.selectUserPanel {
		height: 200px;
	}
}
