:root{
--primary-color:#992B10;	
--secondary-color:#DDE1E2;
--deep-black:#1F2130;

}
.header {
	position: fixed;
	top: 0;
	z-index: 2;
	width: 100%;
	padding: 28px 0;
	background: #ffffff;
	box-shadow: 0 0 3px 0 rgba(108, 114, 127, 0.23);
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-right-side {
	display: flex;
}

.nav-bar ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.active .nav-link {
	color: #ffffff;
	background: var(--primary-color);
}

.nav-link {
	font-size: 18px;
	color: #6c727f;
	padding: 11px 26px;
	letter-spacing: 1px;
	text-transform: uppercase;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	display: inline-block;
	font-weight: 600;
    font-size: 18px;
}

.user-options {
	margin-left: 85px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relativ;
}

.user-options li+li {
	margin-left: 43px;
}

.user-options .active a {
	color: var(--primary-color);
}
.user-options .notification_num{
	position: absolute;
}
.user-options li:first-child a{
	position: relative;
}
.notification_num {
    position: absolute;
    left: 11px;
    top: -11px;
    background-color: black;
    border-radius: 50%;
    text-align: center;
    width: 18px;
    height: 18px;
    color: white;
    font-size: 13px;
    padding: 2px;
}
/* ---------------------------------------------------------------- */

.main {
	padding: 100px 0 35px 0;
}

/* ---------------------------------------------------------------- */

.overview {
	background: var(--secondary-color);
	padding: 35px 0 25px 0;
}

.overview-head {
	margin-bottom: 20px;
}
.overview-head h1{
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
}

.overview-detail {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1.5%;
}

.overview-item {
	padding: 25px;
	width: 22%;
	margin: 0 1.5%;
	min-height: 150px;
	background: #ffffff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	display: flex;
	align-items: center;
}

.overview-icon {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 3px 1px rgba(224, 222, 247, 0.849);
}

.overview-content {
	padding-left: 35px;
	width: calc(100% - 66px);
}

.overview-content h4 {
	font-size: 19px;
	color: #6c727f;
	font-weight: 500;
	min-height: 48px;
	text-transform: uppercase;
}

.overview-content span {
	font-weight: bold;
	font-size: 45px;
	color: #1f2130;
	display: block;
	line-height: 1;
}

/* ---------------------------------------------------------------- */

.table-head-left {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.day-choosing {
	display: flex;
	background: #f3f3f3;
	border-radius: 34px;
	margin-left: 75px;
}

.day-choosing a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-transform: uppercase;
	height: 45px;
	line-height: 45px;
	min-width: 150px;
	font-size: 16px;
	color: #1f2130;
	border-radius: 34px;
}

.day-choosing .active a {
	color: #ffffff;
	background: var(--deep-black);
}

/* ---------------------------------------------------------------- */

.upcoming-appointments {
	padding: 45px 0 0 0;
}

.table-head {
	display: flex;
	padding-bottom: 35px;
	justify-content: space-between;
	align-items: center;
}

.table-head h2 {
	font-size: 30px;
	color: var(--primary-color);
	font-weight: bold;
	text-transform: uppercase;
}

.table-head .btn span {
	margin-left: 25px;
}

/* ---------------------------------------------------------------- */

.payment-page {
	padding: 35px 0;
}

/* ---------------------------------------------------------------- */

.project-page {
	padding: 35px 0;
}

.project-page .tab-list {
	max-width: 100%;
	margin-bottom: 35px;
	justify-content: space-between;
}

/* ---------------------------------------------------------------- */

.table-head-tab {
	display: flex;
	margin-bottom: 45px;
	align-items: center;
	justify-content: space-between;
}

/* ---------------------------------------------------------------- */

.working-hours {
	border: 1px solid #cecece;
	-webkit-border-radius: var(--radius-15);
	-moz-border-radius: var(--radius-15);
	border-radius: var(--radius-15);
}

.working-hours-head {
	display: flex;
	flex-wrap: wrap;
	padding: 30px;
	background: var(--secondary-color);
	align-items: center;
	justify-content: space-between;
	-webkit-border-radius: var(--radius-15) var(--radius-15) 0 0;
	-moz-border-radius: var(--radius-15) var(--radius-15) 0 0;
	border-radius: var(--radius-15) var(--radius-15) 0 0;
}

.working-hours-head h4{
	text-transform: uppercase;
	display: flex;
	align-items: center;
	margin-right: 30px;
}

.working-hours-head h4 span{
	margin-right: 10px;
}

.working-hours-head-left h4 {
	display: flex;
	align-items: center;
	margin: 0;
	color: #1f2130;
	font-size: 20px;
	text-transform: uppercase;
}

.working-hours-head-left span {
	margin-right: 15px;
	display: inline-block;
}

/* ---------------------------------------------------------------- */

.working-hours-body {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px 30px 54px 30px;
}

.new-intervals {
	width: 39%;
}

/* ---------------------------------------------------------------- */

.new-intervals-form {
	display: flex;
	flex-wrap: wrap;
	row-gap: 30px;
	margin-top: 25px;
	padding: 25px 25px 35px 25px;
	border: 1px solid #cecece;
	-webkit-border-radius: var(--radius-15);
	-moz-border-radius: var(--radius-15);
	border-radius: var(--radius-15);
}

.new-intervals-form .form-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.new-intervals-form .form-row-select > * {
    width: 49%;
}

.input-group {
	max-width: 235px;
	display: flex;
	align-items: center;
}

.input-group label {
	margin: 0;
	height: 40px;
	width: 90px;
	display: flex;
	font-size: 16px;
	font-weight: 500;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	background: #6c727f;
	border: 1px solid #6c727f;
	-webkit-border-radius: var(--radius-20) 0 0 var(--radius-20);
	-moz-border-radius: var(--radius-20) 0 0 var(--radius-20);
	border-radius: var(--radius-20) 0 0 var(--radius-20);
}

.input-group input {
	height: 40px;
	width: calc(100% - 90px);
	border: 1px solid #cecece;
	border-left: none;
	text-align: center;
	color: #6c727f;
	font-weight: 600;
	font-size: 18px;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	-webkit-border-radius: 0 var(--radius-20) var(--radius-20) 0;
	-moz-border-radius: 0 var(--radius-20) var(--radius-20) 0;
	border-radius: 0 var(--radius-20) var(--radius-20) 0;
}

.interval-btn {
	height: 50px;
	min-width: 225px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	background: #1f2130;
	border: 1px solid #1f2130;
	-webkit-border-radius: 26px;
	-moz-border-radius: 26px;
	border-radius: 26px;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.interval-btn:hover {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
}

/* ---------------------------------------------------------------- */

.custom-intervals {
	width: 39%;
}

/* ---------------------------------------------------------------- */

.new-intervals h4 {
	color: #1F2130;
}

.new-intervals h4,
.custom-intervals h4 {
	margin: 0;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
}

.custom-intervals h4 {
	color: var(--primary-color);
}

/* ---------------------------------------------------------------- */
.appoinment_wrapper .intervals-table:first-child { 
	margin: 0;
}

.intervals-table {
	margin: 15px 0 0 0;
	border-spacing: 0 0px;
	border-collapse: separate;
}

.intervals-table td {
	font-size: 18px;
	color: #1f2130;
	font-weight: 600;
	text-align: center;
	padding: 14px 20px;
	border-top: 1px solid #cecece;
	border-bottom: 1px solid #cecece;
}

.intervals-table tr td:first-child {
	text-align: left;
	border-left: 1px solid #cecece;
	-webkit-border-radius: var(--radius-5) 0 0 var(--radius-5);
	-moz-border-radius: var(--radius-5) 0 0 var(--radius-5);
	border-radius: var(--radius-5) 0 0 var(--radius-5);
}

.intervals-table tr td:nth-last-child(2) {
	text-align: right;
	border-right: 1px solid #cecece;
	-webkit-border-radius: 0 var(--radius-5) var(--radius-5) 0;
	-moz-border-radius: 0 var(--radius-5) var(--radius-5) 0;
	border-radius: 0 var(--radius-5) var(--radius-5) 0;
}

.intervals-table tr td:last-child {
	padding-right: 0;
	padding-left: 0;
}

.intervals-table tr {
	position: relative;
}

.intervals-table tr span::after {
	content: "\e907";
	font-family: "icomoon" !important;
	position: absolute;
	right: -30px;
	color: #ababab;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.intervals-table span:hover::after {
	color: var(--primary-color);
	cursor: pointer;
}

/* ---------------------------------------------------------------- */

.working-hours-head-left {
	display: flex;
	align-items: center;
}

.working-hours-head-left .project-search {
	margin-left: 35px;
}

.form-minute-select,
.working-hours-select {
	display: flex;
	align-items: center;
}

.form-minute-select label {
	font-size: 16px;
	color: #1f2130;
	font-weight: 500;
	margin: 0 15px 0 0;
	white-space: nowrap;
	text-transform: uppercase;
}

.working-hours-select .time_picker{
	 margin-right: 15px;
}

.working-hours-select .nice-select:not(:first-child) {
	margin-left: 15px;
}

/* ---------------------------------------------------------------- */

.tab-list-switch {
	display: flex;
	align-items: center;
	border: 1px solid #6c727f;
	max-width: max-content;
	padding: 9px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	height: 40px;
}

.tab-list-switch a {
	color: #6c727f;
}

.tab-list-switch .active a {
	color: var(--deeep-black);
}

.tab-list-switch li:first-child {
	padding-right: 12px;
	border-right: 1px solid #6c727f;
}

.tab-list-switch li:last-child {
	padding-left: 12px;
}

/* ---------------------------------------------------------------- */

.project-search {
	display: flex;
	align-items: center;
	margin-left: 10px;
}
.project-search .btn {
	padding: 7px 10px;
	margin-right: 0 !important;
}

.project-search>*+* {
	margin-left: 10px;
}

.project-search select{
	-ms-progress-appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.project-search select,
.project-search .search-fld {
	height: 40px;
	font-size: 16px;
	border-radius: 34px;
	font-weight: 500;
	text-transform: none;
	padding: 5px 5px 5px 20px;
	border: 1px solid #6c727f;
}

.project-search .search-fld {
	min-width: 275px;
	background: url(../images/search.png) no-repeat;
	background-position: right 15px center;
	padding-right: 42px;
}

.project-search .nice-select {
	min-width: 200px;
}

.form-minute-select .nice-select,
.working-hours-select .nice-select {
	min-width: 145px;
}

/* ---------------------------------------------------------------- */

.page-title {
	margin: 35px 0;
}

.page-title h1 {
	margin: 0;
	color: var(--primary-color);
}

/* ---------------------------------------------------------------- */

.appointments-page {
	margin: 35px 0;
}

/* ---------------------------------------------------------------- */

.notification-list {
	padding: 30px 30px 30px 15px;
	border: 1px solid #cecece;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.notification-list-item {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.notification-list-item:not(:last-child) .notification-list-content {
	margin-bottom: 15px;
	border-bottom: 1px solid #cecece;
}

.notification-list-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	background: var(--maroon-color);
	border: 1px solid #e0def7;
}

.notification-list-content {
	padding-bottom: 25px;
	width: calc(100% - 60px);
}

.notification-list-content h4 {
	display: flex;
	color: #1f2130;
	text-transform: uppercase;
}

.notification-list-content p {
	max-width: 85%;
	color: #6C727F;
}

.notification-list-content span {
	display: inline-block;
	margin-left: auto;
	font-size: 16px;
	color: #6c727f;
	font-weight: 600;
}

/* ---------------------------------------------------------------- */

.user-detail-head {
	background: var(--secondary-color);
	padding: 60px 0 90px 0;
}

.user-detail-head h1 {
	font-size: 45px;
	color: #1f2130;
	text-transform: capitalize;
}

.user-detail-head p {
	color: #6c727f;
	font-size: 18px;
}

/* ---------------------------------------------------------------- */

.user-detail-personal {
	padding: 40px 0;
}

.user-detail-form-outer {
	display: flex;
	flex-wrap: wrap;
}

.change-password {
	margin-left: 175px;
}

.change-password,
.personal-information {
	width: 390px;
}

.change-password h2,
.personal-information h2 {
	margin-bottom: 30px;
	text-transform: uppercase;
	color: var(--primary-color);
}

.change-password label,
.personal-information label {
	color: #6c727f;
	font-size: 16px;
	text-transform: uppercase;
}

.change-password .btn,
.personal-information .btn {
	color: #ffffff;
	margin-top: 20px;
	border-color: #1f2130;
	background: #1f2130;
	height: 50px;
	min-width: 250px;
}

.change-password .btn:hover,
.personal-information .btn:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.change-password .row-block+.row-block,
.personal-information .row-block+.row-block {
	margin-top: 24px;
}

/* ---------------------------------------------------------------- */

.project-info {
	margin-top: 55px;
}

.project-info-inner {
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #cecece;
}

.project-info-inner>* {
	width: 50%;
}

.project-info-left li {
	display: flex;
}

.project-info-left li+li {
	margin-top: 15px;
}

.project-info-left h6 {
	width: 140px;
}

.project-info-left h6,
.project-info-right h6 {
	margin: 0;
	font-size: 18px;
	color: #6c727f;
	text-transform: uppercase;
}

.project-info-right p {
	margin: 15px 0 0 0;
}

.project-info-right p,
.project-info-left span {
	color: #1f2130;
	font-size: 20px;
	font-weight: 600;
}

.project-info-left span {
	display: inline-block;
}

/* --------------------------------------------------------------------- */

.project-upload-files {
	margin-top: 55px;
}

.upload-list {
	padding: 30px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #cecece;
}

.upload-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.upload-list li:not(:first-child) {
	padding: 32px 0 0 0;
	border-top: 1px solid #cecece;
}

.upload-list li:not(:last-child) {
	margin: 0 0 32px 0;
}

.upload-list-left {
	display: flex;
	flex-wrap: wrap;
}

.upload-list-left .icon {
	width: 40px;
	margin-right: 15px;
}

.upload-list-left .content h4 {
	line-height: 1;
	font-size: 18px;
	font-weight: 600;
	color: #1f2130;
}

.upload-list-left .content p {
	line-height: 1;
	font-size: 14px;
	font-weight: 500;
	color: #6c727f;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------- */

.project-head {
	display: flex;
	margin-bottom: 35px;
	align-items: center;
	justify-content: space-between;
}

.project-head-buttons .btn+.btn {
	margin-left: 25px;
}

/* --------------------------------------------------------------------- */

.project-first-head {
	display: flex;
	margin-top: 35px;
	justify-content: space-between;
}

.project-first-head-left h4 {
	font-size: 20px;
	font-weight: 600;
	color: #6c727f;
	text-transform: uppercase;
}

.project-first-head-left span {
	color: var(--primary-color);
}

.project-first-head-right select {
	min-width: 200px;
	height: 40px;
	font-size: 16px;
	border-radius: 34px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 5px 5px 5px 20px;
	border: 1px solid #6c727f;
}

.project-first-head-right .form-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.project-first-head-right label {
	color: #6c727f;
	font-size: 16px;
	font-weight: 600;
	margin-right: 15px;
	text-transform: uppercase;
}
.page_details {
    width: 50%;
    height: 100vh;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    background-color: #dde1e2;
    padding: 0 30px;
}

/* --------------------------------------------------------------------- */

.appointment-client {
	margin-top: 35px;
}

.appointment-client-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.appointment-client-inner>* {
	--radius-15: 15px;
	width: 48%;
	border: 1px solid #cecece;
	border-radius: var(--radius-15);
}

.appointment-client-title {
	height: 75px;
	display: flex;
	justify-content: space-between;
	padding: 5px 30px;
	align-items: center;
	background: var(--gray-bg);
	border-radius: var(--radius-15) var(--radius-15) 0 0;
}

.appointment-client-title h4 {
	color: var(--deep-black);
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	text-transform: uppercase;
}

.appointment-client-content {
	padding: 33px 30px;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #cecece;
}

.appointment-client-content:first-child{
	border-top: none;

}

.appointment-client-title .activation {
	display: flex;
	align-items: center;
}

.appointment-client-title .activation label {
	margin-bottom: 0;
}

.appointment-btn-block {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.change-appointment{
	border-color:var(--primary-color) ;
	color: var(--primary-color);
}

.cancel-appointment:hover{
	background-color: var(--deep-black);
	color: #ffffff;
	border: 1px solid var(--deep-black);
}

.date-year-time li {
	display: flex;
	align-items: center;
}

.date-year-time span {
	font-size: 75px;
	line-height: 1;
	color: #1f2130;
	font-weight: bold;
	display: inline-block;
}

.date-year-time p {
	font-size: 22px;
	color: #ababab;
	font-weight: bold;
	margin: 0 0 0 10px;
	text-transform: uppercase;
}

.date-year-time li:last-child {
	color: #1f2130;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 10px;
}

/* --------------------------------------------------------------------- */

.payment-page .day-choosing {
	margin: 0 15px 0 0;
}

.table-head-pricing {
	text-align: right;
}

.table-head-pricing p {
	font-size: 18px;
	color: #6c727f;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------- */

.list-inline li {
	display: flex;
}

.list-inline li+li {
	margin-top: 15px;
}

.list-inline h6 {
	margin: 0;
	min-width: 140px;
	font-size: 18px;
	color: #6c727f;
	text-transform: uppercase;
}

.list-inline span {
	color: #1f2130;
	font-size: 20px;
	font-weight: 600;
	display: inline-block;
	word-break: break-all;
}

/* --------------------------------------------------------------------- */

.page_wrapper {
	background-image: url("../images/page_img.png");
	background-repeat: no-repeat;
	width: 100%;
	min-height: 100vh;
	background-color: var(--secondary-color);
}

.login_container {
	max-width: 1440px;
	margin: 0 auto;
	height: 100%;
}

.page_flex {

	/* margin-left: auto; */
	background-color: var(--secondary-color);
	/* padding-left: 30px;
	padding-right: 30px; */
	max-width: 390px;
	width: 100%;
}


.purple_title {
	font-size: 45px;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.page_para {
    font-family: 'Dosis', sans-serif;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 65px;
    max-width: 414px;
}
.login_form {
	max-width: 390px;
}

.page_flex img {
	padding-bottom: 72px;
}

.input_box+.input_box :not(:last-child, input#password) {
	margin-top: 24px;
}
.field-icon {
    margin-left: -25px;
    margin-top: -25px;
    position: relative;
    z-index: 2;
  }

.form-group label,
.input_box label {
	font-size: 16px;
	font-weight: 500;
	color: var(--gray-font-color);
	line-height: 21px;
	text-transform: uppercase;
}

.input_box + .form-group{
	margin-top: 20px;
}

.input_box .submit_btn {
	font-size: 16px;
	font-weight: 500;
	border-radius: 26px;
	height: 50px;
	background-color: var(--deeep-black);
	color: var(--white-color);
	margin-top: 30px;
	padding: 0;
	border: none;
	transition: 0.4s ease-in-out;
	margin-bottom: 20px;
}

.input_box a{
	color: var(--primary-color);
	font-weight: 500;
}

.input_box .submit_btn:hover {
	background-color: var(--primary-color);
	color: white;
	text-shadow: none;
	border-color: var(--primary-color);
}

a.submit_btn.btn-block {
    padding-top: 13px;
    text-align: center;
}


div#calendar_modal table th {
    padding: 30px;
}

div#calendar_modal table td {
    padding: 30px;
	text-align: center;
}

#calendar_title {
    text-align: center;
    font-weight: bolder;
    font-size: xx-large;
}
.field-icon {
    position: absolute;
    bottom: 18px;
    right: 15px;
    z-index: 10;
	cursor: pointer;
}
/* .SumoSelect > .optWrapper{
	border-radius: 34px;
    height: 40px;
	display: flex;
    align-items: center;
} */
.appointment-parent{
	height: 450px;
	overflow-y: auto;
}

.appointment-parent::-webkit-scrollbar {
	width: 5px;
  }
  
  .appointment-parent::-webkit-scrollbar-track {
	background-color: rgb(255, 255, 255);
  }
  
  .appointment-parent::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
  .visible {
	height: 3em;
	width: 10em;
	background: yellow;
  }