/* =========== Google Fonts ============ */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");

/* =============== Globals ============== */
* {
  font-family: "Ubuntu", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #2a2185;
  --white: #fff;
  --gray: #f5f5f5;
  --black1: #222;
  --black2: #999;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 100%;
}

/* =============== Navigation ================ */
a.white-future-logo {
  width: 225px !important;
  padding-top: 10px;
  margin: 0 auto;
}
a.white-future-logo img {
  width: 100%;
}
.navigation {
  position: fixed;
  width: 300px;
  height: 100vh;
  background: #eeeeee;
  transition: 0.5s;
  /* overflow: hidden; */
  overflow: auto;
}
.navigation::-webkit-scrollbar {
  display: none;
}

.navigation.active {
  width: 100px;
}

.navigation ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 10px;
  /* margin-bottom: 100px; */
  /* height: 500px;
  overflow: auto; */
}
.navigation ul::-webkit-scrollbar {
  display: none;
}

.navigation ul li {
  position: relative;
  width: 100%;
  list-style: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.navigation ul li:hover,
.navigation ul li.hovered {
  background-color: var(--white);
}

.navigation ul li:nth-child(1) {
  margin-bottom: 40px;
  pointer-events: none;
}

.navigation ul li a {
  position: relative;
  display: block;
  width: 100%;
  display: flex;
  text-decoration: none;
  color: #444444;
  font-weight: 500;
}
.navigation ul li:hover a,
.navigation ul li.hovered a {
  color: #009eff;
}

.navigation ul li a .icon {
  position: relative;
  display: block;
  min-width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 19px;
}
.navigation ul li a .icon ion-icon {
  font-size: 1.75rem;
}

.navigation ul li a .title {
  position: relative;
  display: block;
  padding: 0 10px 0 28px;
  height: 60px;
  line-height: 60px;
  text-align: start;
  white-space: nowrap;
}
.logout {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 160px;
  text-align: center;
  transform: translateX(-50%);
}
.logout a {
  font-size: 16px;
  text-decoration: none;
  color: #444444;
  font-weight: 500;
}
.logout svg {
  font-size: 18px;
  transform: rotate(180deg);
}

/* --------- curve outside ---------- */
/* .navigation ul li:hover a::before,
.navigation ul li.hovered a::before {
  content: "";
  position: absolute;
  right: 0;
  top: -50px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 35px 35px 0 10px var(--white);
  pointer-events: none;
} */
.navigation ul li:hover a::before, 
.navigation ul li.hovered a::before {
  content: "";
  position: absolute;
  right: 40px;
  top: unset;
  width: unset;
  height: unset;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: unset;
  pointer-events: none;
}
/* .navigation ul li:hover a::after,
.navigation ul li.hovered a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 35px -35px 0 10px var(--white);
  pointer-events: none;
} */

.navigation ul li:hover a::after, .navigation ul li.hovered a::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  width: unset;
  height: unset;
  background-color: transparent;
  border-radius: unset;
  box-shadow: unset;
  pointer-events: none;
}

li.sidebar_logout {
  margin-top: 90px;
}
li.sidebar_logout a {
  justify-content: center;
  align-items: center;
  gap: 6px;
}
li.sidebar_logout.hovered {
  background-color: transparent !important;
}
/* ===================== Main ===================== */
.main {
  position: absolute;
  width: calc(100% - 300px);
  left: 300px;
  min-height: 100vh;
  background: var(--white);
  transition: 0.5s;
  margin-top: 60px;
}
.main.active {
  width: calc(100% - 80px);
  left: 80px;
}

.topbar {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  box-shadow: 3px 4px 6px #ededed;
}
.topbar {
  position: absolute;
  width: calc(100% - 300px);
  left: 300px;
  /* min-height: 100vh; */
  background: var(--white);
  transition: 0.5s;
  z-index: 1;
}
.topbar.active {
  width: calc(100% - 80px);
  left: 80px;
}

.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  cursor: pointer;
}
.toggle_sidebar {
  position: absolute;
  right: 10px;
  font-size: 40px;
  top: 6px;
  z-index: 1;
  cursor: pointer;
  display: none;
}

/* .search {
  position: relative;
  width: 330px;
  margin: 0 15px 0 0;
} */
.search {
  position: absolute;
  width: 300px;
  margin: 0 15px 0 0;
  right: 198px;
}

.search label {
  position: relative;
  width: 100%;
}

.search label input {
  width: 100%;
  height: 40px;
  border-radius: 40px;
  padding: 5px 60px 5px 20px;
  font-size: 16px;
  outline: none;
  border: none;
  box-shadow: rgb(99 99 99 / 24%) 0px 2px 8px 0px;
}

.search label ion-icon {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 1.2rem;
}

.user {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.user img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ======================= Cards ====================== */

/* ================== Order Details List ============== */


/* ====================== Responsive Design ========================== */
@media (max-width: 991px) {
  .navigation {
    left: -300px;
  }
  .navigation.active {
    width: 300px;
    left: 0;
  }
  .main {
    width: 100%;
    left: 0;
  }
  .topbar {
    width: 100%;
    left: 0;
  }
  /* .main.active {
    left: 300px;
  } */
  .cardBox {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .details {
    grid-template-columns: 1fr;
  }
  .recentOrders {
    overflow-x: auto;
  }
  .status.inProgress {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .cardBox {
    grid-template-columns: repeat(1, 1fr);
  }
  .cardHeader h2 {
    font-size: 20px;
  }
  .user {
    min-width: 40px;
  }
  .navigation {
    width: 100%;
    left: -100%;
    z-index: 1000;
  }
  .navigation.active {
    width: 100%;
    left: 0;
  }
  .toggle {
    z-index: 10001;
  }
  .main.active .toggle {
    color: #fff;
    position: fixed;
    right: 0;
    left: initial;
  }
  .toggle_sidebar {
    display: block;
  }
  a.white-future-logo {
    width: 150px !important;
  }
}

/* Supriyo css start */
.main_wrapper {
  padding-left: 0;
  padding-right: 0;
}
.search_user {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* .User-area > .User-avtar {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 2px solid #fff;
  box-shadow: 0px 0px 12px -5px #000;
} */
.User-area > .User-avtar > img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
/* .User-area {
  position: relative;
  width: 200px;
  background: #ffffff;
  box-shadow: 0px 2px 6px #b1b1b1;
  padding: 3px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
} */
.User-area {
  position: absolute;
  width: 200px;
  background: #ffffff;
  box-shadow: 0px 2px 6px #b1b1b1;
  padding: 3px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  right: 0;
}
.user_name {
  position: absolute;
  left: 48px;
}
.user_name p {
  margin-bottom: 0;
  font-size: 13px;
}
.user_edit {
  position: absolute;
  right: 20px;
  font-size: 13px;
  color: #009eff;
}
.User-Dropdown {
  display: block;
  position: absolute;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0px 0px 8px rgba(214, 214, 214, 0.78);
  list-style: none;
  padding: 0 5px 0 5px;
  width: 160px;
  margin: 0;
  right: 0px;
  z-index: 1;
  top: 54px;
}
.User-Dropdown:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin-left: -0.5em;
  right: 0px;
  box-sizing: border-box;
  border: 7px solid black;
  border-color: transparent transparent #ffffff #ffffff;
  transform-origin: 0 0;
  transform: rotate(135deg);
  box-shadow: -3px 3px 3px -3px rgba(214, 214, 214, 0.78);
}
.User-Dropdown.U-open {
  display: none;
}
.User-Dropdown > li {
  padding: 0px;
  line-height: 47px;
  border-bottom: 1px solid rgba(215, 215, 215, 0.17);
}
.User-Dropdown > li:last-child {
  border-bottom: 0px;
}
.User-Dropdown > li > a {
  font-size: 13px;
  padding: 15px 25px 16px 10px;
  text-decoration: none;
  color: #1787e0;
  transition: all 0.2s ease-out;
}
.User-Dropdown span {
  background: #16d67a;
  padding: 3px 10px;
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
}
.User-Dropdown > li:before {
  content: "";
  width: 0px;
  height: 40px;
  position: absolute;
  background: #2196f3;
  margin-top: 4px;
  border-radius: 0 1px 1px 0;
  left: 0px;
  transition: all 0.2s ease;
}
.User-Dropdown > li:hover:before {
  width: 5px;
  border-radius: 30px;
}
.User-Dropdown > li a:hover {
  margin-left: 5px;
}
.page-name h2 {
  margin: 0;
  font-size: 26px;
  color: #1e1e1e;
}
.page-name p {
  margin: 0;
  color: #1e1e1e;
  font-size: 13px;
}
.page-name {
  position: absolute;
  left: 75px;
}
.search_icon {
  position: absolute;
  top: 0;
  right: 20px;
  line-height: 40px;
  color: #858585;
  font-size: 18px;
}
@media (max-width: 767px) {
  .search {
    width: 100%;
    margin-right: 10px;
    position: relative;
    right: 0;
  }

  a.white-future-logo {
    margin: 0;
  }
  /* .user {
    position: relative;
    left: 0;
    width: 30px;
    height: 30px;
  } */
  .user_name {
    display: none;
  }
  .page-name {
    position: relative;
    left: 0;
    display: none;
  }
  .search_user {
    width: auto;
  }
  .User-area {
    width: auto;
    padding: 0;
    right: 0;
    position: relative;
}
  .user_edit {
    display: none;
  }
  .search label input {
    font-size: 14px;
  }
}
/* Supriyo css end */

/* Overview css start*/
.overview_card_area {
  margin-top: 18px;
}
.slider {
  width: 100%;
  height: 60px;
  position: relative;
}
.slider input {
  width: 100%;
}
#rangeValue {
  font-size: 14px;
  font-weight: 600;
  font-family: Open Sans;
  /* padding-left: 30px; */
  color: #7e6d57;
  left: 50%;
  transform: translateX(-50%);
  /* width: 100%; */
  position: absolute;
  margin: 0;
}
.slider input[type="”range”"] {
  -webkit-appearance: none !important;
  width: 420px;
  height: 2px;
  background: #7e6d57;
  border: none;
  outline: none;
}
.slider input[type="”range”"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 30px;
  height: 30px;
  background: #fcfcfc;
  border: 2px solid #7e6d57;
  border-radius: 50%;
  cursor: pointer;
}
.slider input[type="”range”"]::-webkit-slider-thumb:hover {
  background: #7e6d57;
}
.overview_card h2 {
  font-size: 17px;
  margin: 0;
  color: #444444;
  font-weight: 500;
}
.overview_card svg {
  margin-right: 10px;
  font-size: 16px;
}
.overview_card {
  background: #fff;
  padding: 15px;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  border-radius: 11px;
  border-bottom: 6px solid #27aae1;
  margin-bottom: 15px;
}
.overview_card span:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  display: block;
  background: #27aae1;
  top: 3px;
  left: 0;
  border-radius: 50%;
}
.overview_card span {
  position: relative;
    text-align: center;
    color: #27aae1;
    padding-left: 16px;
    margin-left: 31px;
    font-size: 13px;
}
.overview_card p {
  font-size: 13px;
  margin-top: 5px;
  color: #c7c7c7;
}
.overview_price {
  text-align: center;
  margin-top: 7px;
}
.overview_price p {
  font-size: 25px;
  font-weight: 800;
  margin: 0;
  color: #444444;
}
/* Overview css end*/
/* Main title start */
.pageMain_title {
  margin-top: 50px;
}
.pageMain_title h1 {
  font-size: 33px;
  color: #444444;
}
/* Main title end */

/* Area charts start */
section.charts_area {
  margin: 40px 0 40px 0;
}
.area_chart {
  background: #ffffff;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}
canvas.canvasjs-chart-canvas {
  width: 100% !important;
  height: 300px !important;
}
.date h4 {
  font-size: 16px;
  color: #00bfff;
  margin: 0;
  letter-spacing: 0px;
  font-weight: 500;
}
.date p {
  font-size: 12px;
  color: #999999;
}
/* Area charts end */
/* Calendar start */
.bg-primary {
  background: #1089ff !important;
}

.ftco-section {
  padding: 7em 0;
}

.ftco-no-pt {
  padding-top: 0;
}

.ftco-no-pb {
  padding-bottom: 0;
}

.heading-section {
  font-size: 28px;
  color: #000;
}

.img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.calendar,
.calendar_weekdays,
.calendar_content {
  max-width: 100%;
}

.calendar {
  margin: auto;
  font-weight: 400;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  padding: 14px 10px;
  border-radius: 15px;
  max-height: 395px;
  overflow: auto;
  margin-bottom: 15px;
}
.calendar::-webkit-scrollbar {
  display: none;
}
.calendar_content {
  background: #fff;
}

.calendar_weekdays {
  background: #ffffff;
  border-bottom: 2px solid #afafaf;
}

.calendar_header {
  padding: 10px 0;
}

.calendar_content,
.calendar_weekdays,
.calendar_header {
  position: relative;
  overflow: hidden;
}

.calendar_weekdays div {
  display: inline-block;
  vertical-align: top;
  color: #444444 !important;
}

.calendar_weekdays div,
.calendar_content div {
  width: 14.28571%;
  overflow: hidden;
  text-align: center;
  background-color: transparent;
  color: #000;
  font-size: 16px;
  padding: 11px 0;
}

.calendar_content div {
  border: 1px solid transparent;
  float: left;
  position: relative;
  z-index: 0;
}

.calendar_content div:hover {
  border: 1px solid #dcdcdc;
  cursor: default;
}

.calendar_content div.blank:hover {
  cursor: default;
  border: 1px solid transparent;
}

.calendar_content div.past-date {
  color: #d5d5d5;
}

.calendar_content div.today {
  font-weight: bold;
  font-size: 16px;
  color: #fff !important;
}
.calendar_content div.today:after {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto;
  background: #27aae1;
  z-index: -1;
  -webkit-box-shadow: 0px 5px 11px -9px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 0px 5px 11px -9px rgba(0, 0, 0, 0.48);
  box-shadow: 0px 5px 11px -9px rgba(0, 0, 0, 0.48);
}

.calendar_content div.selected {
  background-color: #f0f0f0;
}

.calendar_header {
  width: 100%;
  text-align: left;
}

.calendar_header h2 {
  padding: 0 0 0 5px;
  font-weight: 500;
  font-size: 20px;
  color: #27aae1;
  float: left;
  width: 86%;
  margin: 0 0 10px;
}

button.switch-month {
  background-color: transparent;
    padding: 0;
    outline: none;
    border: none;
    color: #dcdcdc;
    /* float: left; */
    /* width: 15%; */
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    transform: rotate(90deg);
    margin-right: 6px;
}

button.switch-month:hover {
  color: #1089ff;
}

@media (max-width: 767px) {
  .calendar_content div.today:after {
    width: 37px;
    height: 37px;
  }
}
/* Calendar end */

/* Completed Box start */
.completed_row {
  background: #ffffff;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  max-height: 395px;
  border-radius: 15px;
  padding: 10px 0;
  height: 100%;
  overflow: auto;
  text-align: center;
}
.completed_row::-webkit-scrollbar {
  display: none;
}
.completed_box ul {
  border-bottom: 1px solid #ccc;
  margin: 0;
  padding: 10px 0;
  font-size: 13px;
  list-style: none;
  color: #ccc;
}
.completed_box ul li {
  list-style: none;
  position: relative;
}
.completed_box ul li::after {
  content: "";
  position: absolute;
  display: block;
  background: #ccc;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.completed_box {
  width: 100%;
  text-align: center;
}
.completed_box.active ul li {
  color: #444444;
  font-weight: 500;
}
.completed_box.active {
  background: #eeeeee;
  position: relative;
}
.completed_box.active ul li:after {
  content: "";
  position: absolute;
  display: block;
  background: #27aae1;
  top: 50%;
  transform: translateY(-50%);
}
/* Completed Box end */

/* Navbar modify start 10-03-2023 */
.navigation ul{
  position: unset !important;
  transform:unset !important;
}
.navLink {
  padding: 0 !important;
}
.navLink::after {
  top: 50%;
  position: absolute;
  right: 40px;
}
.dropdownMenu li {
  margin-bottom: 6px !important;
  pointer-events: auto !important;
  overflow: hidden;
  border-radius: 33px !important;
}
.dropdownMenu li a {
  color: #444 !important;
  font-weight: 500 !important;
  justify-content: center;
  align-items: center;
}
.dropdownMenu {
  background: #d9f4ff;
  padding-right: 10px;
  border: unset;
}
.dropdownMenu li a:hover {
  background: #1d5aae;
  color: #ffffff !important;
  border-radius: 33px;
}
.dropdownMenu li:last-child {
  margin-bottom: 0px !important;
}
/* Navbar modify end 10-03-2023 */
