/*
Theme Name: Retal Dashboard
*/

:root {
  --font-family-Lufga: 'Lufga', sans-serif;
  --white: #fff;
  --black: #000;
  --primary-color: #C4AE75;
  --secondary-color: #181C1F;
  --theme-dark: #212528;
  --light-gray: #F5F5F5 ;
  --light-gray-v1: #F3F4F6;
  --theme-green: 60, 173, 107;
  --theme-blue: 74, 126, 199;
  --theme-pink: 219, 84, 127;
  --pink1: #ac3c77;
  --pink2: #b5789a;
  --pink3: #baa0ad;
  --border-radius1: 10px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
}

*, 
*:active,
*:focus,
option:focus {
	outline: none !important;
	box-sizing:border-box;
}

button::-moz-focus-inner {
	border: 0;
}

img { 
	border:none; 
	max-width:100%; 
	display:block; 
	height:auto;
}

html,
body {
	margin: 0; 
	padding: 0; 
	list-style-type: none;
  line-height: normal;
}
a:focus, a:active, a:hover, a { 
	text-decoration: none;
	outline: none;
	color: var(--primary-color);
}
a {
  display: inline-block;
  color: var(--secondary-color);
}

body {
  font-family: var(--font-family-Lufga);
	font-weight: 400;
	font-size: 14px; 
	margin: 0 auto;
	color: var(--secondary-color);
	position: relative;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0 0 10px; 
	line-height: normal;
	font-weight: 700;
  color: var(--secondary-color);
}

h1, h2{ 
  font-weight:700;
}


p { margin:0 0 10px; }

.theme-btn {
  text-decoration: none;
  display: inline-block;
  background: var(--primary-color);
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  padding: 20px;
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 220px;
  box-shadow: 25px 25px 90px rgba(196, 174, 117, 0.5);
}
.theme-btn:hover,
.theme-btn:active,
.theme-btn:focus {
  opacity: 0.9;
}

.toggle-dropdown-btn {
  cursor: pointer;
}
.th-toggle-btn {
  cursor: pointer;
}
.th-toggle-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  z-index: 999;
}
/*====== Home ======*/
.home-full-screen-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-full-screen-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.home-full-screen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo {
  width: 86px;
}
.logo-center {
  margin: 0 auto;
}

.welcome-text {
  margin: 20px auto;
  max-width: 300px;
  width: 100%;
  padding: 15px;
}

.welcome-text h2 {
  color: var(--white);
  font-weight: 600;
  font-size: 40px;
}

.welcome-text p {
  font-size: 18px;
  font-weight: 300;
  color: var(--primary-color);
  margin: 25px 15px;
}

.copyright-text p {
  margin: 0;
  color: rgba(0, 0, 0, 0.35);
  font-size: 11px;
  font-weight: 300;
}

.text-white p {
  color: rgba(255, 255, 255, 0.35);
}

.login-form-wrapper {
  max-width: 400px;
  width: 100%;
  padding: 0 15px;
  margin: 40px auto 40px;
}
.login-form-top {
  padding: 0 30px 40px;
}
.login-form-wrapper h3 {
  font-size: 30px;
  font-weight: 500;
}
.login-form-wrapper h4 {
  font-size: 24px;
  font-weight: 300;
}

.th-textbox::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.th-textbox {
  display: block;
  width: 100%;
  background: var(--light-gray);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  border: 1px solid rgba(24, 28, 31, 0.15);
  padding: 18px 25px 18px 50px;
  border-radius: 30px;
  margin-bottom: 15px;
}
.th-textbox:focus {
  border-color: var(--primary-color);
}
.form-group {
  position: relative;
}
.form-group::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  z-index: 2;
}
.username-icon::before {
  background: url(images/user-icon.svg) no-repeat center center;
}
.password-icon::before {
  background: url(images/lock-icon.svg) no-repeat center center;
}
.forget-password a {
  font-size: var(--fs-12);
  color: rgba(0, 0, 0, 0.21);
}

#app-wrapper {
  display: flex;
  align-items: stretch;
}

#app-sidebar {
  position: relative;
  z-index: 99;
  max-width: 220px;
  min-width: 220px;
  background: var(--theme-dark);
  color: var(--white);
  transition: all 0.3s;
  padding: 20px;
}

#app-sidebar.active {
  max-width: 85px;
  min-width: 85px;
  transition: all 0.3s;
  text-align: center;
  padding: 20px 8px;
}

#app-main-content {
  width: 100%;
  min-height: 100vh;
  transition: width 0.3s;
}

.app-logo {
  width: 70px;
  margin: 0 auto 20px;
}
.sidebar-cta-sec {
  padding: 0 0 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.pro-btn {
  background: var(--primary-color);
  padding: 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: var(--fs-13);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}
.pro-btn::before,
.pro-btn::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pro-btn::after {
  background: url(images/arrow-icon.svg) no-repeat center center;
  filter: invert(110%) sepia(96%) saturate(14%) hue-rotate(255deg) brightness(94%) contrast(106%);
  transform: rotate(90deg);
  transition: 0.3s all;
}
.pro-btn.opened::after {
  transform: rotate(-90deg);
  transition: 0.3s all;
}
.pro-btn::before {
  background: var(--white);
  border-radius: 4px;
}
.menu-dropdown {
  top: 100%;
  width: 100%;
  background: #15191C;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.menu-dropdown ul li {
  padding: 15px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.menu-dropdown ul li:last-child {
  border-bottom: none;
}
.menu-dropdown ul li a {
  font-size: var(--fs-13);
  font-weight: 400;
  color: var(--white);
}
.menu-dropdown ul li a:hover {
  color: var(--primary-color);
}
.menu-items-wrapper li {
  margin: 0 0 8px;
}
.menu-items-wrapper li a {
  display: block;
  color: var(--white);
  position: relative;
  padding: 14px 10px 14px 45px;
  font-size: var(--fs-13);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}
.menu-items-wrapper li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(images/arrow-icon.svg) no-repeat center center;
  width: 12px;
  height: 12px;
}
.menu-items-wrapper li.active-menu-item a,
.menu-items-wrapper li a:hover {
  font-weight: 600;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.menu-items-wrapper li.menu-icon a::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  background-size: contain !important;
}
.menu-items-wrapper li.menu-icon1 a::before {
  background: url(images/nav-icon1.svg) no-repeat center center;
}
.menu-items-wrapper li.menu-icon2 a::before {
  background: url(images/nav-icon2.svg) no-repeat center center;
}
.menu-items-wrapper li.menu-icon3 a::before {
  background: url(images/nav-icon3.svg) no-repeat center center;
}
.menu-items-wrapper li.menu-icon4 a::before {
  background: url(images/nav-icon4.svg) no-repeat center center;
}
.menu-items-wrapper li.menu-icon5 a::before {
  background: url(images/nav-icon5.svg) no-repeat center center;
}
.menu-items-wrapper li.menu-icon6 a::before {
  background: url(images/nav-icon6.svg) no-repeat center center;
}
.menu-items-wrapper li.active-menu-item a::before,
.menu-items-wrapper li a:hover::before {
  filter: invert(19%) sepia(8%) saturate(1467%) hue-rotate(6deg) brightness(88%) contrast(90%);
}

.searchbar::placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.searchbar-wrapper {
  position: relative;
  margin-right: 20px;
}
.searchbar-wrapper::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(images/search-icon.svg) no-repeat center center;
  width: 20px;
  height: 20px;
}
.searchbar-wrapper::after {
  content: "";
  position: absolute;
  right: -20px;
  height: 25px;
  width: 1px;
  background: rgba(0, 0, 0, 0.07);
  top: 0;
  bottom: 0;
  margin: auto;
}
.searchbar {
  width: 210px;
  border-radius: 10px;
  padding: 15px 15px 15px 40px;
  background: rgba(0, 0, 0, 0.07);
  border: none;
  font-size: var(--fs-15);
  font-weight: 400;
  color: var(--black);
}

.notify-icon {
  background: url(images/bell-icon.svg) no-repeat center center;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 10px 20px;
  cursor: pointer;
}
.notify-icon-bubble {
  width: 9px;
  height: 9px;
  box-shadow: 0 0 6px var(--primary-color);
  background: var(--primary-color);
  border-radius: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
}
.user-img {
  margin-right: 12px;
}
.user-img img {
  min-width: 45px;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 1px solid var(--black);
}
.loggedin-user {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}
.loggedin-user::after {
  content: "";
  background: url(images/arrow-icon.svg) no-repeat center center;
  background-size: contain !important;
  filter: invert(110%) sepia(96%) saturate(14%) hue-rotate(255deg) brightness(94%) contrast(106%);
  transform: rotate(90deg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 11px;
}
.loggedin-user span {
  font-size: 15px;
}
.page-title span {
  font-size: var(--fs-13);
  font-weight: 300;
}
.header-content-right {
  margin-bottom: 15px;
  width: 100%;
}
.header-content-left {
  width: 100%;
}
.page-title h3 {
  font-size: 24px;
  font-weight: 600;
}
.project-image {
  position: relative;
  margin-bottom: 10px;
}
.project-image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 15px;
}
.project-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.project-progress {
  position: relative;
}
.project-image-stats-wrapper {
  color: var(--white);
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 10px;
  bottom: 10px;
  left: 20px;
  right: 20px;
  margin: auto;
  z-index: 2;
}
.project-img-stats h5 {
  color: inherit;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 600;
}
.project-img-stats p {
  font-size: var(--fs-13);
  font-weight: 300;
}

.gray-radius-box {
  padding: 15px;
  border-radius: 10px;
  background: var(--light-gray);
}

.steps-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.steps-list li:last-child {
  border-bottom: none;
}
.steps-list li.stats-green .step-text small {
  color: rgb(var(--theme-green));
}
.steps-list li.stats-blue .step-text small {
  color: rgb(var(--theme-blue));
}
.steps-list li.stats-pink .step-text small {
  color: rgb(var(--theme-pink));
}
.steps-list li.stats-green .step-icon {
  background: rgba(var(--theme-green), 0.1);
}
.steps-list li.stats-blue .step-icon {
  background: rgba(var(--theme-blue), 0.1);
}
.steps-list li.stats-pink .step-icon {
  background: rgba(var(--theme-pink), 0.1);
}
.step-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.07);
}
.step-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.step-icon1::before {
  background: url(images/stats-icon1.svg) no-repeat center center;
}
.step-icon2::before {
  background: url(images/stats-icon2.svg) no-repeat center center;
}
.step-icon3::before {
  background: url(images/stats-icon3.svg) no-repeat center center;
}
.step-icon4::before {
  background: url(images/stats-icon4.svg) no-repeat center center;
}
.step-icon5::before {
  background: url(images/stats-icon5.svg) no-repeat center center;
}

.step-text {
  padding-left: 40px;
  position: relative;
  display: block;
  margin: 5px 0;
  font-size: var(--fs-13);
  font-weight: 500;
}
.step-text small {
  display: block;
  font-size: 10px;
}
.step-progress {
  font-size: 10px;
  min-width: 70px;
  text-align: right;
}

.align-boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px;
  margin-bottom: 10px;
  position: relative;
}
.stats-boxes .align-boxes .down-arrow::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url(images/progress-arrow-icon.svg) no-repeat center center;
}
.stats-boxes .align-boxes h4 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  position: relative;
}
.stats-boxes .align-boxes p {
  font-size: 15px;
  font-weight: 300;
}
.green-radius-box {
  background: rgba(var(--theme-green), 0.1);
  color: rgb(var(--theme-green));
}
.blue-radius-box {
  background: rgba(var(--theme-blue), 0.1);
  color: rgb(var(--theme-blue));
}
.pink-radius-box {
  background: rgba(var(--theme-pink), 0.1);
  color: rgb(var(--theme-pink));
}
.progress-boxes h4 {
  font-size: 36px;
  color: inherit;
}
.progress-boxes .align-boxes .progress-arrow {
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  background: url(images/progress-arrow-icon.svg) no-repeat center center;
}
.progress-boxes .align-boxes .more-arrow-big {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
.more-arrow-big {
  display: inline-block;
  width: 40px;
  height: 15px;
  margin-top: auto;
  background: url(images/big-arrow-icon.svg) no-repeat center center;
}

.info-message::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(images/info-icon.svg) no-repeat center center;
  width: 24px;
  height: 24px;
}
.info-message {
  position: relative;
  font-size: var(--fs-13);
  font-weight: 300;
  background: rgba(var(--theme-pink), 0.15);
  padding: 15px 25px 15px 50px;
  color: rgb(var(--theme-pink));
  border-radius: 10px;
}
.info-message p {
  margin: 0;
}
.info-message strong {
  font-weight: 600;
}
.close-info-message {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(images/cross-sm-icon.svg) no-repeat center center;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  cursor: pointer;
}

body.fixed {
  overflow: hidden;
}
.popup-modal-btn {
  cursor: pointer;
}
.popup-modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}
.popup-modal-inner {
  background: var(--white);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 40px 30px;
  left: 0;
  transition: all 0.3s;
  margin: auto;
  overflow: auto;
}
.close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.close-popup::before {
  transform: rotate(45deg);
}
.close-popup::after {
  transform: rotate(135deg);
}
.close-popup::before, .close-popup::after {
  position: absolute;
  content: "";
  border-radius: 4px;
  width: 2px;
  height: 22px;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 0px;
  margin: auto;
  background: var(--theme-dark);
}
.popup-modal h2 {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 20px;
}
.mw-750px {
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.green-text-box {
  color: rgb(var(--theme-green));
}
.pink-text-box {
  color: rgb(var(--theme-pink));
}
.brown-text-box {
  color: var(--primary-color)
}
.popup-modal .gray-radius-box h2 {
  color: inherit;
  margin-bottom: 10px;
  margin-top: 30px;
}
.box-icon-bottom {
  margin: 10px auto;
  display: inline-block;
}


.step-progress-circle {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-left: 5px;

}
.step-progress-circle svg {
  width: 100%;
  height: 100%;
}
.step-progress-circle svg .circle-progress-value,
.step-progress-circle svg .circle-progress-circle {
  stroke-width: 14px;
}
.stats-green .step-progress-circle {
  box-shadow: 0 3px 20px rgba(var(--theme-green), 0.4);
  border-radius: 100%;
  background: var(--light-gray);
}
.stats-blue .step-progress-circle {
  box-shadow: 0 3px 20px rgba(var(--theme-blue), 0.4);
  border-radius: 100%;
  background: var(--light-gray);
}
.stats-pink .step-progress-circle {
  /* box-shadow: 0 3px 20px rgba(var(--theme-pink), 0.4); */
  border-radius: 100%;
}
.stats-green .step-progress-circle svg .circle-progress-value {
  stroke: rgb(var(--theme-green));
}
.stats-blue .step-progress-circle svg .circle-progress-value {
  stroke: rgb(var(--theme-blue));
}
.stats-pink .step-progress-circle svg .circle-progress-value {
  stroke: rgb(var(--theme-pink));
}

.project-stats-top {
  max-width: 170px;
  width: 60%;
  margin: auto;
  text-align: center;
  position: relative;
}
.circle-progress {
  max-width: 170px;
  max-height: 170px;
  width: 100%;
}
.circle-progress svg {
  width: 100%;
  height: 100%;
}
.circle-progress svg .circle-progress-circle {
  stroke: rgba(255, 255, 255, 0.17);
}
.circle-text {
  position: absolute;
  width: 90%;
  top: 50%;
  margin: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circle-text strong {
  font-size: 30px;
  font-weight: 600;
}
.circle-text span {
  font-size: 11px;
  font-weight: 300;
  display: block;
}

.circle-progress svg .circle-progress-value {
  stroke: var(--primary-color);
}

.mh-220 {
  min-height: 220px;
}
#myChart {
  /* max-width: 750px; */
  width: 100% !important;
}

.hamburger-menu-btn {
  z-index: 999;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger-menu-btn span {
  background: var(--primary-color);
  display: block;
  position: relative;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  transition: all 0.3s;
}
.hamburger-menu-btn span::before {
  top: -4px;
}
.hamburger-menu-btn span::after {
  bottom: -4px;
}
.hamburger-menu-btn span::before, .hamburger-menu-btn span::after {
  background: var(--primary-color);
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.sidebar-toggle-btn-mobile {
  position: absolute;
  top: 30px;
  right: 15px;
  z-index: 99999 !important;
}

.projects-list-toggle-btn {
  width: 36px;
  height: 60px;
  left: -36px;
  top: 36px;
  position: absolute;
  z-index: 9;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.15);
  background: var(--secondary-color);
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  display: flex;
}
.sidebar-projects-list .projects-list-toggle-btn.opened .arrow-icon {
  transform: rotate(0deg);
}
.sidebar-projects-list .arrow-icon {
  width: 18px;
  height: 18px;
  background: url(images/arrow-icon.svg) no-repeat center center;
  display: inline-block;
  margin: auto;
  transform: rotate(180deg);
}
.sidebar-projects-list.active {
  transition: all 0.4s;
  transform: translateX(0px);
}
.sidebar-projects-list {
  transform: translateX(405px);
  width: 400px;
  background: var(--secondary-color);
  color: var(--white);
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 999;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
}
.sidebar-project-content {
  padding: 20px;
  height: 100%;
  overflow-y: auto;
}
.sidebar-projects-list h4,
.sidebar-projects-list h5,
.sidebar-projects-list a {
  color: inherit;
}
.sidebar-projects-list h4 {
  font-size: 20px;
}
.sidebar-projects-list h5 {
  font-size: var(--fs-15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  padding-bottom: 12px;
  position: relative;
}
.project-location-tag {
  padding: 10px 0 30px;
}
.remove-tag {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 15px;
  height: 15px;
  margin: auto;
  background: url(images/cross-sm-icon.svg) no-repeat center center;
  z-index: 2;
  cursor: pointer;
  filter: invert(14%) sepia(45%) saturate(410%) hue-rotate(340deg) brightness(81%) contrast(86%);
}
.project-location-tag span {
  position: relative;
  display: inline-block;
  margin: 5px 10px 5px 0;
  padding: 14px 40px 14px 30px;
  font-size: var(--fs-15);
  font-weight: 500;
  border-radius: 30px;
  background: rgba(196, 174, 114, 0.16);
  color: var(--primary-color);
}
.location-title {
  position: relative;
}
.location-title.opened::after {
  transform: rotate(-90deg);
}
.location-title::after {
  content: "";
  width: 17px;
  height: 17px;
  background: url(images/arrow-icon.svg) no-repeat center center;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 1;
  position: absolute;
  transform: rotate(90deg);
}
.location-title::before {
  content: "";
  width: 45px;
  height: 1px;
  background: var(--white);
  left: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
}

.location-project-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}
.location-project-list ul li {
  width: 49%;
  margin: 10px 0;
}
.location-project-img,
.location-project-img img {
  border-radius: 10px;
  position: relative;
}
.location-proj-progress {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
}
.location-proj-progress svg {
  width: 100%;
  height: 100%;
}
.location-proj-progress svg .circle-progress-circle {
  stroke: rgba(0, 0, 0, 0.7);
  stroke-width: 12px;
}
.location-proj-progress svg .circle-progress-value {
  stroke: var(--primary-color);
  stroke-width: 12px;
}
.location-proj-progress .circle-progress-text {
  fill: var(--white);
  font-size: 24px;
  font-family: var(--font-family-Lufga) !important;
}
.location-project-list ul li .loc-project-name {
  font-weight: 400;
  font-size: var(--fs-13);
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 8px;
}

.section-title h2 {
  font-size: 36px;
  line-height: 38px;
}
.section-title h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.tags-wrapper .sm-tag {
  display: inline-block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 18px 25px;
  min-width: 110px;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  margin: 5px 10px 5px 0;
  position: relative;
  transition: all 0.3s;
}
.tags-wrapper .sm-tag::after {
  content: "";
  background: url(images/sm-arrow-icon.svg) no-repeat center center;
  width: 20px;
  height: 10px;
  margin: auto;
  display: inline-block;
  margin-left: 4px;
  transition: all 0.3s;
}
.tags-wrapper .sm-tag:hover::after{
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(192deg) brightness(102%) contrast(105%);
  transition: all 0.3s;
}
.tags-wrapper .sm-tag:hover {
  background: var(--primary-color);
  color: var(--white);
  transition: all 0.3s;
}
.map-tooltip.active {
  display: block;
}
.map-tooltip {
  pointer-events: none;
  position: absolute;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  background: var(--white);
  padding: 15px 30px;
  z-index: 5;
  height: 60px;
  line-height: 35px;
  margin: 0 auto;
  transform: translateX(-50%);
  display: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  color: var(--primary-color);
}

.map-tooltip:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}
.map-wrapper {
  /* overflow: hidden; */
  margin: 0 auto;
  margin-top: -5%;
  /* max-width: 1600px; */
  width: 80%;
  margin-left: 10%;
  position: relative;
}
.map-wrapper svg {
  max-width: 900px;
  width: 90%;
  transform: rotate(-25deg);
}
.map-wrapper svg path {
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.map-wrapper path:hover {
  fill: rgb(221,205,164); /* Old browsers */
  fill: -moz-radial-gradient(center, ellipse cover, rgba(221,205,164,1) 0%, rgba(177,155,101,1) 100%); /* FF3.6-15 */
  fill: -webkit-radial-gradient(center, ellipse cover, rgba(221,205,164,1) 0%,rgba(177,155,101,1) 100%); /* Chrome10-25,Safari5.1-6 */
  fill: radial-gradient(ellipse at center, rgba(221,205,164,1) 0%,rgba(177,155,101,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.primary-color {
  color: var(--primary-color);
}
.secondary-color {
  color: var(--secondary-color);
}
.pink-color {
  color: rgb(var(--theme-pink));
}
.box-list-wrapper li {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 8px 20px;
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 36px;
  min-height: 65px;
  line-height: 50px;
}
.box-list-wrapper li:last-child {
  margin-bottom: 0;
}
.box-list-wrapper li.list-title {
  font-size: 18px;
  font-weight: bold;
}

/*====== Retal Rise ======*/
:root {
  --lightGray: #F9F9F9;
  --green: #0BDB13;
  --red: #F80505;
}

.bg-lightGray {
  background: var(--lightGray);
}
.red-color {
  color: var(--red);
}
.green-color {
  color: var(--green);
}
.white-radius-box {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
  background: var(--white);
  border-radius: 15px;
  padding: 15px;
}
.dashboard-boxes .white-radius-box {
  min-height: 185px;
}
.dashboard-boxes .white-radius-box h4 {
  margin-bottom: 5px;
}
.dashboard-boxes .white-radius-box p {
  font-size: var(--fs-13);
}
.white-radius-box h6 {
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: var(--fs-15);
}
.avail-labels li {
  margin: 5px 0 2px 20px;
  font-size: var(--fs-13)
}
.avail-labels li i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-right: 7px;
}
.avail-icon {
  background: #D4C39A;
}
.booked-icon {
  background: var(--primary-color);
}
.sold-icon {
  background: #AF975A;
}
.sm-text {
  color: #888888;
  font-size: var(--fs-12);
}
.col-content {
  margin: 10px -15px 0;
  padding: 0 15px;
  /* height: 280px; */
  height: 480px;
  overflow: auto;
}
.col-content li {
  align-items: center;
  display: flex;
  font-size: var(--fs-13);
  padding: 11px 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.col-content li:last-child {
  border-bottom: none;
}
.col-content .list-v2 li {
  padding: 17px 4px;
}
.col-content li strong {
  margin-left: auto;
  font-size: var(--fs-15);
  font-weight: 700;
}
.sm-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-right: 10px;
  background: #F0F0F1;
  border-radius: 100%;
}
.sm-logo img {
  max-width: 100%;
  margin: auto;
}
.dashboard-radius-box {
  background: rgba(196, 174, 117, 0.09);
  padding: 15px;
  border-radius: 15px;
}
.dashboard-stats-top {
  position: relative;
  width: 130px;
  height: 130px;
}
.dashboard-stats-top .circle-text {
  text-align: center;
  color: var(--secondary-color);
}
.dashboard-stats-top .circle-text strong {
  font-size: var(--fs-18);
}
.dashboard-stats-top .circle-text small {
  display: block;
  font-size: 10px;
}
.dashboard-stats-top .circle-progress circle,
.dashboard-stats-top .circle-progress path {
  stroke-width: 4px;
}
.dashboard-stats-top svg .circle-progress-circle {
  stroke: rgba(196, 174, 117, 0.29)
}
.dashboard-radius-box small {
  font-size: 11px;
}
.time-slot {
  margin: 5px 8px;
}
.time-slot span {
  display: block;
  text-align: center;
  font-size: 36px;
}
.sold-out-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4px 0;
}
.sold-out-list li:last-child {
  border-bottom: none;
}
.d-bar {
  height: 45px;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
}
.d-bar span {
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--fs-14);
  font-weight: 700;
  color: var(--white);
  width: 100%;
  min-width: 25px;
  transition: all 0.8s;
}
.available-bar {
  background: #D4C39A;
}
.booked-bar {
  background: var(--primary-color);
}
.sold-bar {
  background: #AF975A;
}
.b-bar-cont {
  max-width: calc(33.3% - 10px);
  width: 100%;
  margin: 14px 5px 0;
}
.b-bar-cont p {
  font-size: var(--fs-14);
  margin-bottom: 2px;
}
.time-box-area .dashboard-radius-box {
  min-height: 100%;
}
.date-filter-wrapper {
  padding: 10px 0;
}
.date-filter-wrapper h5 {
  margin: 10px 0;
  text-transform: uppercase;
  font-size: var(--fs-16);
  margin-right: 15px;
}
.date-filter {
  position: relative;
  min-width: 220px;
  display: inline-flex;
  padding: 10px 30px 10px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: var(--fs-13);
  cursor: pointer;
}
.date-filter::after {
  content: "";
  background: url(images/down-arrow-icon.svg) no-repeat center center;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.sidebar-toggle-btn {
    cursor: pointer;
    position: fixed;
    z-index: 999999;
    left: 194px;
    top: 200px;
    background: var(--primary-color);
    height: 40px;
    width: 40px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    opacity: 0;
}
.sidebar-toggle-btn img {
  transform: rotate(90deg);
}
#app-sidebar:hover .sidebar-toggle-btn {
  opacity: 1;
  top: 170px;
  transition: all 0.3s;
}
.sidebar-toggle-btn.open {
  left: 59px;
}
.sidebar-toggle-btn.open img {
  transform: rotate(-90deg);
}
#app-sidebar.active ul.menu-items-wrapper li a span.menu-text, 
#app-sidebar.active .sm-navbar-hide {
  width: 0;
  margin: 0;
  visibility:hidden;
  opacity: 0;
}
#app-sidebar.active .menu-text {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#app-sidebar.active .menu-items-wrapper li a::after {
  visibility: hidden;
}
#app-sidebar.active .menu-items-wrapper li a::before {
  right: 13px;
}
#app-sidebar.active .pro-btn::before, 
#app-sidebar.active .pro-btn::after {
  left: 10px;
}
#app-sidebar.active .menu-dropdown ul li {
  padding: 15px 5px;
}
.dropdown-content.right-align {
  right: 10px;
}
.dropdown-content {
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  padding: 10px 15px;
  min-width: 230px;
  font-size: var(--fs-14);
}
.dropdown-content ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.dropdown-content ul li:last-child {
  border-bottom: none;
}
.notify-dropdown {
  width: 300px;
}

.info-list li:last-child {
  border-bottom: none;
}
.info-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: var(--fs-13);
  font-weight: 300;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 14px 8px;
}
.info-list li strong {
  margin-left: auto;
  font-weight: 500;
}
#departmentChart {
  display: block;
  width: 100%;
  height: 200px;
}
.doughnut-chart::after {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  width: 1px;
  height: 70%;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.project-progress-status {
  margin: 20px 0 0;
  text-align: center;
}
.doughnut-chart {
  margin: 20px 0 0;
  position: relative;
}
.doughnut-chart,
.project-progress-status {
  width: 100%;
}
.doughnut-chart canvas {
  height: 250px;
  width: 250px;
  margin: 0px auto;
}
.charts-section p {
  text-transform: uppercase;
  text-align: center;
  font-size: var(--fs-16);
  margin: 0;
}
.project-status-info {
  display: block;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.09);
  width: 110px;
  min-height: 50px;
  font-size: 11px;
  margin: 0 auto 10px;
}
.project-status-info strong {
  font-size: 13px;
  margin-top: 2px;
  display: block;
}
.app-dark-header {
  background: var(--theme-dark);
  background: #23203f;
  color: var(--white);
}
.app-dark-header .loggedin-user::after {
  filter: none;
}
.pink-theme .white-radius-box h6 {
  color: var(--pink3);
}
.pink-theme .sold-bar,
.pink-theme .sold-icon {
  background: var(--pink1);
}
.pink-theme .booked-bar,
.pink-theme .booked-icon {
  background: var(--pink2);
}
.pink-theme .available-bar,
.pink-theme .avail-icon {
  background: var(--pink3);
}
.pink-theme .circle-progress svg .circle-progress-value {
  stroke: var(--pink2);
}
.pink-theme .dashboard-stats-top svg .circle-progress-circle {
  stroke: rgba(239, 233, 235, 0.39);
}
.pink-theme a:active,
.pink-theme a:focus,
.pink-theme a:hover {
  color: var(--pink2);
}
.fs-18 {
  font-size: var(--fs-18);
}
/*====== RESPONSIVE ======*/
@media (max-width: 379px) {
  .b-bar-cont {
    max-width: calc(100% - 10px) !important;
  }
}
/* Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) {
  .doughnut-chart {
    width: 50%;
  }
  .project-progress-status {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .doughnut-chart::after {
    display: none;
  }
  .sidebar-toggle-btn {
    display: none;
  }
  .sidebar-projects-list {
    transform: translateX(280px);
    width: 280px;
  }
  .map-tooltip {
    font-size: var(--fs-11);
    padding: 10px 20px;
    height: 40px;
    line-height: 28px;
  }
  .b-bar-cont {
    max-width: calc(100% - 10px);
  }
  .searchbar-wrapper,
  .searchbar-wrapper input[type="text"] {
    width: 100%;
  }
  .dropdown-content.right-align {
    right: inherit;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  
}
@media (max-width: 767px) {
  html.sidebar-opend, html.sidebar-opend body {
    overflow: hidden;
  }
  .searchbar-wrapper::after {
    display: none;
  }
  .searchbar-wrapper{
    margin-bottom: 10px;
  }
  .header-content-right {
    margin-right: 50px;
  }
  #app-sidebar.active {
    min-width: 0;
    max-width: 0;
    padding: 0;
    transform: translate(-220px);
  }
  #app-sidebar {
    width: 100%;
    min-width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    overflow: auto;
    padding: 20px;
    transform: translate(0);
  }
  .hamburger-menu-btn.open {
    background: var(--theme-dark);
  }
  .hamburger-menu-btn.open span::after {
    opacity: 0;
  }
  .hamburger-menu-btn.open span::before {
    transform: rotate(90deg);
    top: 0px;
  }
  .hamburger-menu-btn.open span {
    transform: rotate(136deg);
  }

}
@media (min-width: 992px) and (max-width: 1400px) { 
  
}
@media (min-width: 576px) and (max-width: 1400px) {
  
}
@media (max-width: 991px) {
.app-dark-header .header-content-right,
.app-dark-header .header-content-left  {
  width: auto;
}
.app-dark-header .dropdown-content.right-align {
  right: 10px;
}
.app-dark-header .header-content-right {
  margin-right: inherit;
}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  body { font-size: 17px; }
  .header-content-right,
  .header-content-left {
    width: auto;
  }

  .section-title h2 {
    font-size: 50px;
    line-height: 54px;
  }
  .doughnut-chart {
    width: 27%;
  }
  .project-progress-status {
    width: 19%;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  
}

@media (min-width: 1600px) {
  body { font-size: 17px; }
  .map-wrapper {
    margin-top: -50px;
  }
}
