@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.ri {
  position: absolute;
  max-width: 80%;
  top: 10%;
  left: 10%;
}

.ri:empty {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.col-50 {
  width: 50%;
  background-color: white;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.jsc {
  justify-content: space-between;
}

.col50 {
  width: 50%;
}

.jsc3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: #fff;
  max-width: 350px;
  width: 100%;
  padding: 25px 30px;
  margin: 0 auto;

}

.container form .title {
  font-size: 30px;
  font-weight: 600;
  margin: 20px 0 10px 0;
  position: relative;
}

.container form .title:before {
  content: '';
  position: absolute;
  height: 4px;
  width: 33px;
  left: 0px;
  bottom: 3px;
  border-radius: 5px;
}

.container .drop {
  width: 100%;
  height: 45px;
  margin-top: 25px;
  position: relative;
  outline: none;
  font-size: 16px;
  border: solid #adadad 1px;
  padding-left: 20px;
  border-radius: 5px;
}

.container form .input-box {
  width: 100%;
  height: 45px;
  margin-top: 25px;
  position: relative;
}

.container form .input-box input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 16px;
  border: solid #adadad 1px;
  padding-left: 20px;
  border-radius: 5px;

}

.container form .underline::before {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ccc;
  left: 0;
  bottom: 0;
}

.container form .button {
  margin: 20px 0 20px 0;
}

.container .input-box input[type="submit"] {
  background: #192126;
  font-size: 17px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.container .input-box input[type="submit"]:hover {
  letter-spacing: 1px;
  background: #192126;
}

.container .option {
  font-size: 14px;
  text-align: center;
}

.container .facebook a,
.container .twitter a {
  display: block;
  height: 45px;
  width: 100%;
  font-size: 15px;
  text-decoration: none;
  padding-left: 20px;
  line-height: 45px;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.container .facebook i,
.container .twitter i {
  padding-right: 12px;
  font-size: 20px;
}

.container .twitter a {
  background: linear-gradient(to right, #00acee 0%, #1abeff 100%);
  margin: 20px 0 15px 0;
}

/* .container .twitter a:hover {
  background: linear-gradient(to left, #00acee 0%, #1abeff 100%);
  margin: 20px 0 15px 0;
} */

.container .facebook a {
  background: linear-gradient(to right, #3b5998 0%, #476bb8 100%);
  margin: 20px 0 20px 0;
}

/* 
.container .facebook a:hover {
  background: linear-gradient(to left, #3b5998 0%, #476bb8 100%);
  margin: 20px 0 50px 0;
} */

.logo1 {
  background: #fff;
  max-width: 150px;
  margin: 0 auto;
}

.divlogo {
  margin: 0 auto;
  padding-bottom: 30px;
}

.p1 {
  font-size: 13px;
}

.goalpar {
  font-size: 12px;
  color: grey;

}

.goalpar {
  position: relative;
  top: 20px;
}

:root {
  --white-color: #fff;
  --blue-color: #4070f4;
  --grey-color: #707070;
  --grey-color-light: #aaa;
}

body {
  background-color: white;
  transition: all 0.5s ease;
}

body.dark {
  background-color: #333;
}

body.dark {
  --white-color: #333;
  --blue-color: #fff;
  --grey-color: #f2f2f2;
  --grey-color-light: #aaa;
}

.Tracker a {
  text-decoration: none;
}

/* navbar */
.navbar {
  position: sticky !important;
  top: 0;
  width: 100%;
  left: 0;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 15px 30px;
  z-index: 2;
  box-shadow: 0 0 2px var(--grey-color-light);
  /* padding: 20px 0; */
  margin-bottom: 0 !important;
}

.logo_item {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 22px;
  font-weight: 500;
  color: var(--blue-color);
}

.logo_item img {
  width: 140px;
  height: 50px;
}

.search_bar {
  height: 47px;
  max-width: 400px;
  width: 100%;
}

.search_bar input {
  height: 100%;
  width: 80%;
  border-radius: 12px;
  font-size: 18px;
  outline: none;
  background-color: var(--white-color);
  color: var(--grey-color);
  border: 1px solid var(--grey-color-light);
  padding: 0 20px;
  /* margin: 0 -300px; */
}

.navbar_content {
  display: flex;
  align-items: center;
  column-gap: 25px;
  margin: 0 0 0 150px;
}

.navbar_content i {
  cursor: pointer;
  font-size: 20px;
  color: var(--grey-color);
}

.profile {
  width: 40px;
  height: 40px;
  border: solid 4px #6B68E7;
  border-radius: 50%;
}

/* sidebar */
.sidebar {
  background-color: var(--white-color);
  width: 260px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 80px 20px;
  z-index: 1;
  overflow-y: scroll;
  box-shadow: 0 0 1px var(--grey-color-light);
  transition: all 0.5s ease;
}

.sidebar.close {
  padding: 60px 0;
  width: 80px;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.menu_content {
  position: relative;
}

.menu_title {
  margin: 15px 0;
  padding: 0 20px;
  font-size: 18px;
}

.sidebar.close .menu_title {
  padding: 6px 30px;
}

.menu_title::before {
  color: var(--grey-color);
  white-space: nowrap;
}

.menu_dahsboard::before {
  content: "Dashboard";
}

.menu_editor::before {
  content: "Editor";
}

.menu_setting::before {
  content: "Setting";
}

.sidebar.close .menu_title::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 18px;
  border-radius: 12px;
  background: var(--grey-color-light);
}

.menu_items {
  padding: 0;
  list-style: none;
}

.navlink_icon {
  position: relative;
  font-size: 22px;
  min-width: 50px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 6px;
}

.navlink_icon::before {
  content: "";
  position: absolute;
  height: 100%;
  width: calc(100% + 100px);
  left: -20px;
}

.navlink_icon:hover {
  background: #6B68E7;
}

.sidebar .nav_link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 4px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--grey-color);
  white-space: nowrap;
}

.sidebar.close .navlink {
  display: none;
}

.navlink {
  font-size: 15px;
}

.nav_link:hover {
  color: var(--white-color);
  background: #6B68E7;
}

.sidebar.close .nav_link:hover {
  background: var(--white-color);
}

.submenu_item {
  cursor: pointer;
}

.submenu {
  display: none;
}

.submenu_item .arrow-left {
  position: absolute;
  right: 10px;
  display: inline-block;
  margin-right: auto;
}

.sidebar.close .submenu {
  display: none;
}

.show_submenu~.submenu {
  display: block;
}

.show_submenu .arrow-left {
  transform: rotate(90deg);
}

.submenu .sublink {
  padding: 15px 15px 15px 52px;
}

.bottom_content {
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 260px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.bottom {
  position: absolute;
  display: flex;
  align-items: center;
  left: 0;
  justify-content: space-around;
  padding: 18px 0;
  text-align: center;
  width: 100%;
  color: var(--grey-color);
  border-top: 1px solid var(--grey-color-light);
  background-color: var(--white-color);
}

.bottom i {
  font-size: 20px;
}

.bottom span {
  font-size: 18px;
}

.sidebar.close .bottom_content {
  width: 50px;
  left: 15px;
}

.sidebar.close .bottom span {
  display: none;
}

.sidebar.hoverable .collapse_sidebar {
  display: none;
}

#sidebarOpen {
  /* display: none; */
  font-size: 50px;
  color: #9EA3AE;
  z-index: 20;
}

.Tracker a {
  font-size: 17px;
  color: black;
}

.Tracker a:hover {
  transition: 0.1s;
  border-bottom: 2px solid #6B68E7;
  text-decoration: none;
}

.bx-menu img {
  margin: 0 200px;
}

.mg12 {
  margin: 0 180px;
}

.indexcard i {
  color: #9EA3AE;
  font-size: 25px;
  margin: 0 10px 0 30px;
}

.indexcard h5 {
  font-size: 15px;
  margin-top: 3px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  top: 83px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.divimg img {
  margin: 20px 125px;
  border: solid 5px #6B68E7;
  border-radius: 50%;
}

.divtit {
  /* margin: 0 125px; */
  text-align: center;
}

.divtit h2 {
  font-family: 'Abhaya Libre', serif;
  font-size: 18px;

}

.divtit p {
  color: #6C727F;
}

.mg5 {
  margin: 20px 40px;
  font-size: medium;
  text-align: center;
}

.mg5 p {
  color: #818181;
}

.divgoal {
  margin: 5px 50px;
  font-size: 15px;
}

.divgoal i {
  margin: 0 10px;
}

.arrow {
  font-size: 30px;
  position: relative;
  bottom: 10px;
  color: #9EA3AE;
}

hr {
  padding: 0 20px;
  position: relative;
  bottom: 10px;
}

hr.new1 {
  border-top: 1px solid #d5d8de;
}

.divimg2 img {
  margin: 20px 30px 80px 25px;

}

.deshboardcont {
  height: 50%;
  width: 70%;
  margin: 0 auto;
  ;
}

.indexdiv h2 {
  font-family: 'Abhaya Libre', serif;
  font-weight: bold;
  font-size: 25px;
  margin-top: 20px;
}

.indexdiv p {
  font-size: 15px;
  color: #6C727F;
  margin: 10px 0 40px 0;
}

.divstep p {
  color: #6C727F;
  font-size: 15px;
  margin: 0 2px;

}

.divstep h3 {
  font-size: 25px;
}

.divstep {

  margin-top: 50px;

}

.row2 {
  display: flex;
  align-items: center;
  justify-content: center;

}

.divprogress {
  padding: 10px 30px 0 30px;
}

.p2 {
  color: #6C727F;
}

.mt-100 {
  margin-top: 200px;
}

.progress1 {
  width: 150px;
  height: 150px !important;
  float: left;
  line-height: 150px;
  background: none;
  margin: 20px;
  box-shadow: none;
  position: relative;
  z-index: 0;
}

.progress1:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 12px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.progress1>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress1 .progress-left {
  left: 0;
}

.progress1 .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 7px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress1 .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress1 .progress-right {
  right: 0;
}

.progress1 .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}

.progress1 .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  color: #000;
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
}

.progress1.blue .progress-bar {
  border-color: #6B68E7;
}

.progress1.blue .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

.progress1.yellow .progress-bar {
  border-color: #fdba04;
}

.progress1.yellow .progress-right .progress-bar {
  animation: loading-3 1.8s linear forwards;
}

.progress1.yellow .progress-left .progress-bar {
  animation: none;
}

.litres {
  color: 6C727F;
}

.green1 {
  background-color: #6B68E7 !important;
}

.progress2 {
  position: relative;
  margin: 40px 0 0 0;
  float: left;
  text-align: center;
}

.barOverflow {
  /* Wraps the rotating .bar */
  position: relative;
  overflow: hidden;
  /* Comment this line to understand the trick */
  width: 90px;
  height: 45px;
  /* Half circle (overflow) */
  margin-bottom: -14px;
  /* bring the numbers up */
}

.bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  /* full circle! */
  border-radius: 50%;
  box-sizing: border-box;
  border: 12px solid #eee;
  /* half gray, */
  border-bottom-color: #6B68E7;
  /* half azure */
  border-right-color: #6B68E7;
}

.Calories p {
  color: #6C727F;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: -5px;
}

.heartImg {
  margin-top: 40px;
}

.divstep2 {
  margin-top: 10px;
}

.divstep2 h3 {
  font-size: 25px;
}

.divstep2 p {
  color: #6C727F;
  font-size: 15px;
  margin: 0 2px;
}

.Cmfeed {
  margin: 50px 0 30px 0;
}

.Cmfeed h2 {
  font-weight: bold;

}

.divCom {
  border: solid 2px black;
}

.card {
  border-radius: 10px !important;
}

.commimg2 {
  border-radius: 50%;
  margin: 20px 10px;
}

.mapdiv {
  margin: 20px 10px;
}

.mapdiv iframe {
  border-radius: 10px;
  width: 100%;
  height: 300px;
}

.cmdiv2 {
  margin: 0 2px;
}

.userimg {
  border-radius: 50%;
  margin: 20px 10px;
}

.userdiv h3 {
  margin-top: 7%;
}

.userdiv p {
  margin-top: 48px;
  margin-left: 10px;
  color: #9EA3AE;
}

.fn2 {
  font-family: 'boxicons';
  font-weight: bold;
}

.fn2 p {
  color: #65686f;
  font-size: 12px;
  padding-right: 30px;
}

.mg6 {
  margin: 0 30px;
  font-size: medium;
  text-align: center;
  margin-top: 30px;
}

.mg6 p {
  color: #818181;
}

.sp3 {
  margin: 0 3%;
}

.mg7 i {
  font-size: 20px;
  color: #818181;
  margin-left: 30px;
}

.mg7 {
  margin-top: 10px;
}

.mg7 h5 {
  font-size: 15px;
  margin-left: 10px;
  margin-top: 3px;
  margin-right: 20px;
}

.bguploadimg {
  /* background-color: grey; */
  /* background-image: url("{{ URL::asset('assets/images/UploadPost.png)}}") ; */
  /* background-image:asset('assets/images/Upload Post.png'); */

  display: flex;
  justify-content: center;
  align-items: center;
}

.bguploadimg h2 {
  font-size: 30px;
  margin-top: 30px;
  font-family: 'Abhaya Libre', serif;
  font-weight: bold;
}

.inputPost {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin: 0 auto;
}

.inputtext {

  padding: 10px 50px 10px 10px;
  max-width: 1500px;
  border: solid #E5E6EB 1px;
  border-radius: 5px;
  background-color: #F9FAFB;
  font-size: 15px;
  /* color: #9EA3AE; */
}

.padd2 {
  padding: 20px 8px !important;
  font-size: 18px !important;
  background-color: #F9FAFB !important;
}

.mg8 {
  margin-top: 60px;
}

.mg9 {
  margin: 30px 0;
  /* padding: 20px 0; */
}

.imgdiv2 {
  border: dashed #E5E6EB 2px;
  margin: 30px 0px;
}

.gallerydiv img {
  margin: 20px 0;
}

.imgdiv2 {
  background-color: #F9FAFB !important;

}

.par1 {
  color: #9EA3AE !important;
  font-size: 15px;
  margin-bottom: 20px;
}

.btnpad {
  padding: 15px 50px !important;
  margin-top: 20px;
  border-radius: 5px !important;

}

.oneh3 h3 {
  color: #9EA3AE;
  margin-top: 50px;
}

.oneh3 h4 {
  font-size: 25px;
  font-family: 'Abhaya Libre', serif;
  font-weight: bold;
  /* margin-bottom: 15px; */
}

.br4 {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background-color: #F9FAFB;
  margin-bottom: -40px !important;
  padding: 3px;
}

.br4 i {
  font-size: 30px;
}

.br4 i {
  padding: 10px 10px 0 10px;
}

.br4 h4 {
  padding-top: 10px;
}

.br4 span {
  font-size: 10px;
  color: #9EA3AE;
}

.col-50 _ {
  width: 50%;
}

.row3 {
  display: flex;
  flex-wrap: wrap;
}

.col-45 {
  width: 45%;
}

.rediobtn {
  width: 30%;
  height: 40%;
  margin-top: 18px !important;
}

.activitySta h4 {
  margin-top: 5px;
  color: #9EA3AE;
  margin-left: 20px;
}

.activitySta i {
  padding-bottom: 10px;
  color: #9EA3AE;
}

.mb2 {
  margin-bottom: 0 !important;
}

.br5 {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background-color: #F9FAFB;
  padding: 5px;
}

.br5 i {
  font-size: 30px;
}

.br5 i {
  padding: 10px;
}

.br5 h4 {
  padding-top: 10px;
}

.feeldiv h3 {
  font-weight: bold;
  font-size: 15px;
}

.progress3-value {
  animation: load 3s normal forwards;
  border: 1px solid #9EA3AE;
  border-radius: 100px;
  background: #6B68E7;
  height: 30px;
  width: 0;
  margin-top: 20px;

}

.oneh4 h3 {
  color: #9EA3AE;
  margin-top: 50px;
}

.oneh4 h4 {
  font-size: 25px;
  font-family: 'Abhaya Libre', serif;
  font-weight: bold;
}

.seendiv {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  margin-top: 30px;
}

.rediobtn2 {
  margin: 10px !important;
}

.seendiv p {
  margin: 0 30px;
  color: #9EA3AE;
  font-size: 12px;
}

.seendiv label {
  font-size: 18px;
  font-weight: 500;
}

.trackercont {
  width: 60%;
  ;
}

.trackercont2 {
  width: 30%;
  ;
}

.sidenav2 {
  padding-top: 20px;
  height: 100%;
}

.trackerdiv {
  margin-top: 20px;
}

.trackerdiv p {
  color: #6C727F;
  font-size: 20px;
}

.mapdiv2 {
  margin: 20px 10px;
  height: 350px;
}

.mapdiv2 iframe {
  border-radius: 10px;
  width: 100%;
  height: 350px;
}

.loddiv h2 {
  margin-top: 40px;
  margin-bottom: -20px;
}

.morningdiv i {
  font-size: 15px;
  margin-right: 10px;
  color: #9EA3AE;
}

.morningdiv p {
  color: #9EA3AE;
  font-size: 11px;
}

.morningdiv {
  margin-top: 20px;
  margin-left: -20px;
}

.width80 {
  width: 80%;
  margin: 0 auto;
}

.width80 h2 {
  margin-top: 30px;
}

.connectdiv span {
  margin: 0 5px;
  color: #9EA3AE;
}

.connectdiv i {
  margin-left: 2px;
  font-size: 12px;
}

.mt-7 {
  margin-top: 70px;
}

.stepdiv i {
  font-size: 20px;
  border: solid #dedee9 1px;
  border-radius: 50%;
  padding: 10px;
  background-color: #F9FAFB;
  margin: 10px 10px 10px 0;
}

.rundiv {
  margin: 10px 5px;
}

.rundiv p {
  color: #9EA3AE;
}

.goaldiv p {
  color: #9EA3AE;
  font-size: 13px;
}

.Kcaldiv {
  background-color: #192126;
  border-radius: 10px;
  margin-top: 60px;
  height: 125px;
}

.Kcaldiv i {
  font-size: 40px;
  color: #6B68E7;
  border: solid #6B68E7 2px;
  border-radius: 50%;
  padding: 10px;
  margin: 30px 20px 20px 20px;
}

.Kcaldiv h3 {
  color: #fff;
  margin-top: 30px;
  font-size: 15px;
}

.Kcaldiv p {
  color: #9EA3AE;
}

.Kcaldiv a {
  color: #6B68E7;
  text-decoration: underline;
  margin-bottom: 20px;

}

.bl-2 {
  border-left: solid 1px #E5E6EB;
  height: 890px;
}

.mapdiviframe iframe {
  width: 100%;
  height: 890px;
}

.mb-7 {
  margin-bottom: -30px !important;
}

.Kcaldiv2 {
  background-color: #192126;
  border-radius: 10px;
  /* margin-top: 60px; */
  height: 125px;
}

.Kcaldiv2 i {
  font-size: 40px;
  color: #6B68E7;
  border: solid #6B68E7 2px;
  border-radius: 50%;
  padding: 10px;
  margin: 30px 20px 20px 20px;
}

.Kcaldiv2 h3 {
  color: #fff;
  margin-top: 30px;
  font-size: 15px;
}

.Kcaldiv2 p {
  color: #9EA3AE;
}

.Kcaldiv2 a {
  color: #6B68E7;
  text-decoration: underline;
  margin-bottom: 20px;
}

.mt-6 {
  margin-top: 40px;
}

.calendar {
  font-family: 'IBM Plex Sans', sans-serif;
  position: relative;
  max-width: 400px;
  /*change as per your design need */
  min-width: 320px;
  background: #fff;
  color: black;
  box-sizing: border-box;
  overflow: hidden;
  font-weight: normal;
  border-radius: var(--calendar-border-radius);
  margin-left: -20px;
}

.calendar-inner {
  padding: 10px 10px;
}

.calendar .calendar-inner .calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar .calendar-inner .calendar-body div {
  padding: 4px;
  min-height: 30px;
  line-height: 30px;
  border: 1px solid transparent;
  margin: 10px 2px 0px;
}

.calendar .calendar-inner .calendar-body div:nth-child(-n+7) {
  border: 1px solid transparent;
  border-bottom: 1px solid var(--weekdays-border-bottom-color);
}

.calendar .calendar-inner .calendar-body div:nth-child(-n+7):hover {
  border: 1px solid transparent;
  border-bottom: 1px solid var(--weekdays-border-bottom-color);
}

.calendar .calendar-inner .calendar-body div>a {
  color: black;
  text-decoration: none;
  display: flex;
  justify-content: center;
}

.calendar .calendar-inner .calendar-body div:hover {
  border: 1px solid var(--calendar-date-hover-color);
  border-radius: 4px;
}

.calendar .calendar-inner .calendar-body div.empty-dates:hover {
  border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.calendar .calendar-inner .calendar-today-date {
  display: grid;
  text-align: center;
  cursor: pointer;
  margin: 3px 0px;
  background: white;
  padding: 8px 0px;
  border-radius: 10px;
  width: 80%;
  margin: auto;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month {
  display: flex;
  min-width: 100px;
  justify-content: space-evenly;
  align-items: center;
}

.calendar .calendar-inner .calendar-controls .calendar-next {
  text-align: right;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-year-label,
.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-month-label {
  font-weight: 500;
  font-size: 20px;
}

.calendar .calendar-inner .calendar-body .calendar-today {
  background: white;
  border-radius: 4px;
}

.calendar .calendar-inner .calendar-body .calendar-today:hover {
  border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-body .calendar-today a {
  outline: 2px solid var(--calendar-today-innerborder-color);
}

.calendar .calendar-inner .calendar-controls .calendar-next a,
.calendar .calendar-inner .calendar-controls .calendar-prev a {
  color: black;
  font-family: arial, consolas, sans-serif;
  font-size: 26px;
  text-decoration: none;
  padding: 4px 12px;
  display: inline-block;
  background: var(--calendar-nextprev-bg-color);
  margin: 10px 0 10px 0;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg {
  height: 20px;
  width: 20px;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg path,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg path {
  fill: black;
}

.calendar .calendar-inner .calendar-body .prev-dates,
.calendar .calendar-inner .calendar-body .next-dates {
  color: black;
}

.calendar .calendar-inner .calendar-body .prev-dates:hover,
.calendar .calendar-inner .calendar-body .next-dates:hover {
  border: 1px solid transparent;
  pointer-events: none;
}

.stepdiv2 i {
  font-size: 30px;
  border: solid #dedee9 1px;
  border-radius: 50%;
  padding: 10px;
  background-color: #F9FAFB;
  margin: 5px 10px 10px 0;
}

.stepdiv3 i {
  font-size: 20px;
  border: solid #dedee9 1px;
  border-radius: 50%;
  padding: 10px;
  background-color: #F9FAFB;
  margin: 5px 10px 10px 0;
  color: #9EA3AE;
}

.bg1 {
  background-color: grey;
}

.healthdiv hr {
  margin-right: 50px;
}

.overviewh2 {
  font-family: 'Abhaya Libre', serif;
  font-weight: bold;
  font-size: 25px;
}

.waterdiv i {
  font-size: 20px;
}

.waterdiv i {
  color: #9EA3AE;
}

.waterdiv h5 {
  font-size: 15px;
  margin-left: 10px;
}

.glassesdiv {
  color: #9EA3AE;
}

.glassesdiv span {
  font-size: 20px;
  color: black;
  font-weight: bold;
}

.sleepscorediv h2 {
  color: white;
}

.sleepscorediv {
  background-color: #192126;
}

.suggestdiv {
  background-color: #384046;
  border-radius: 5px;
}

.suggestdiv p {
  color: #9EA3AE;
}

.suggestdiv h5 {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400px;
}

.suggestdiv i {
  font-size: 20px;
  justify-content: end;
}

.challenge2 h3 {
  font-size: 25px;
  font-family: 'Abhaya Libre', serif;
  font-weight: bold;
}

.running2 h2 {
  font-size: 25px;
  font-weight: bold;
}

.running2 img {
  border-radius: 60%;
  height: 25px;
}

.partp {
  font-size: 12px;
  margin-top: 5px;
}

.running2 h4 {
  font-size: 18px;
}

.joinp {
  color: #6C727F;
  font-size: 14px;
}

.celenderdiv {
  color: #6C727F;
}

.button2 {
  border-radius: 10px;
  outline: 0;
  font-size: 13px;
  display: inline-block;
  padding: 10px 60px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  /* width: 30%; */
}

.ericimg {
  border-radius: 50%;
}

.button2:hover {
  background-color: white;
  color: black;
}

.ml-6 {
  margin-left: 64px;
}

.column {
  float: left;
  width: 30%;
  /* margin-bottom: 16px; */
  padding: 10px;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 8px;
}

.about-section {
  padding: 50px;
  text-align: center;
  background-color: #474e5d;
  color: white;
}

.container {
  padding: 0 16px;
}

.container::after,
.row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: grey;
}

.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.button:hover {
  background-color: #555;
}

.button3 {
  border-radius: 10px;
  outline: 0;
  font-size: 15px;
  display: inline-block;
  padding: 10px 0;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}
.button3:hover
{
  background-color: white;
  color: black;
}
.walk2 h4 {
  margin-top: 20px;
  font-family: 'Abhaya Libre', serif;
  font-weight: 600;
}

.walk2 p {
  color: #6C727F;
  font-size: 12px;
}
.box-shadow{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2)
}

.walk2 {
  border-radius: 10px;
  box-shadow: 1px 2px 5px grey;
  transition:  0.5s;
}
.walk2:hover
{
  margin:0 5px ;
}
.walk2 img
{
  border-radius: 10px;
}

.user3 img {
  border-radius: 50%;
}

.button4 {
  border-radius: 10px;
  outline: 0;
  font-size: 13px;
  display: inline-block;
  padding: 10px 70px;
  color: black;
  text-align: center;
  cursor: pointer;
  border: solid black 1px;
  background-color: white;
  /* width: 30%; */
}

.button4:hover {
  color: white;
  background-color: black;
}

.sepdiv h3 {
  font-family: 'Abhaya Libre', serif;
  font-size: 20px;
  font-weight: 500;

}

.sepdiv p {
  font-size: 13px;
}

.font2 {
  font-size: 15px;
}

.challenge2 span {
  color: #6C727F;
  font-size: 11px;
}

.Germanydiv p {
  color: #6C727F;
}

.strongerp {
  font-size: 13px;
  color: #65686f;

}

.button5 {
  padding: 10px 70px;
  color: black;
  background-color: white;
  border-radius: 10px;
  font-size: 13px;
}

.button5:hover {
  color: white;
  background-color: black;

}

.jsc2 {
  justify-content: center;
}

.weightdiv i {
  font-size: 30px;
  color: white;
  background-color: #192126;
  padding: 10px;
  border-radius: 50%;
  border: solid 2px #6B68E7;
}

.rundiv2 p {
  color: #65686f;
}

.profilediv p:hover {
  font-weight: bold;
}

.profilediv p {
  color: #192126;
  font-size: 15px;
  margin-bottom: 30px;
}

.profilediv hr {
  margin-right: 40px;
}

.myprofilediv h2 {
  font-family: 'Abhaya Libre', serif;
  /* font-weight: bold; */
  font-size: 30px;
}

.button6 {
  background-color: #6B68E7;
  color: white;
  border-radius: 10px;
  margin-left: 20px;
  padding: 0 20px;
  font-size: 13px;
}

.removediv img {
  border-radius: 50%;

}

.removediv p {
  color: red;
  font-size: 13px;
}

.pad2 {
  padding: 0px 20px;
}

.accont2 p {
  color: #65686f;
}

.button7 {
  color: red;
  background-color: white;
  border: solid red 1px;
  border-radius: 10px;
  padding: 10px 40px;
  margin-left: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 12px;
}

.container5 {
  margin: 20px;
}

.accont3 label {
  font-size: 13px;
  margin-left: 20px;
  font-weight: 500;
}

.accont3 .form-check-input {
  font-size: 50px;
}

.connectiondiv h4 {
  font-size: 13px;
}

.connectiondiv p {
  color: red;
}

.clr2 input {
  background-color: #F9FAFB;
}

.clr2 select {
  background-color: #F9FAFB;
}

.clr2 textarea {
  background-color: #F9FAFB;

}

.border2 {
  border: solid 3px #6B68E7;
  border-radius: 50%;
}

#myBtn {
  /* display: none; */
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 1;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #6B68E7;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}
.btn-lg:hover
{
background-color: #343a40;
color: white !important;
}
.btn-dark:hover{
  background-color: white !important;
  color: black !important;
}
.button7:hover{
  background-color: red;
  color: white;
}
a:hover{
  text-decoration:none;
}
@media screen and (max-width: 575px) {
  .column {
    width: 100%;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .sidenav2 {
    height: auto;
    padding: 15px;
  }

  .row.content {
    height: auto;
  }
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@media only screen and (max-width: 600px) {
  .col-50 {
    width: 100%;
    margin-top: 60px;
  }

  .oneh3 {
    margin-bottom: -50px;
  }

  .br6 {
    margin-top: 20px;
  }

  .col-sm-2 {
    border: none;
  }

}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

@media screen and (orientation: portrait) {
  img.ri {
    max-width: 60%;
  }
}

@media screen and (orientation: landscape) {
  img.ri {
    max-height: 60%;
  }
}

@media only screen and (max-width: 600px) {
  .col50 {
    width: 100%;

  }

  .hide1 {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #sidebarOpen {
    font-size: 25px;
    display: block;
    margin-right: 10px;
    cursor: pointer;
    color: var(--grey-color);
  }

  .sidebar.close {
    left: -100%;
  }

  .search_bar {
    display: none;

  }

  .navbar_content {
    margin: 0;
    ;
  }

  .mg12 {
    margin: 0;
  }

  .search_bar input[type=text] {
    padding: 0 -100px;
  }

  .sidebar.close .bottom_content {
    left: -100%;
  }

  .tracker {
    display: none;
  }

  .Tracker {
    display: none;
  }
}