  @import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:opsz,wght@8..144,100;8..144,200;8..144,400;8..144,500;8..144,600;8..144,700&display=swap');

  html,body {
  height:100%;
  }
  body{
  font-family: 'Inter', sans-serif !important;
  scroll-behavior: smooth;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f4f6f8;
  }
  /*body::-webkit-scrollbar {
  display: none;
  height: 100%;
  }*/
  /*body{
  -ms-overflow-style: none;*/   /*IE and Edge */
  /*scrollbar-width: none;*/  /* Firefox */
  /*}*/
  .section{
  flex: 1 0 auto; 
  }
  /*.body-color{
  background-color:white;/*#fff9f2 #fafafa
  }*/

  /*Color: #00cbed*/
  /*------------------------------------top-bar---------------------------------------*/
  .topbar-bg{
  background-color: black;
   }
  .top-btn{
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.75rem 0.75rem;
  border-radius: 0px;
  }
  .top-btn:hover{
  background-color: transparent;
  border: none;
  color: white;
  }
  .topbar-bg .add-btn{
  background-color: #00cbed;
  border: #00cbed;
  color: white;
  padding: 0.75rem 2rem;
  margin-left: 15px;
  border-radius: 0px;
  }
  .topbar-bg .add-btn:hover{
  background-color: white;
  border: white;
  color: #00cbed;
  }
  /*----------------x--------------------top-bar----------------x--------------------*/

  /*------------------------------------navbar---------------------------------------*/
  .navbar-toggler i{
  font-size: 25px;
  color: #00cbed;
  }
  .navbar {
  border-bottom: 2px solid #fff9f2;
  background-color:#fff9f2;
  }
  .topbar + .navbar   {
  padding-top: 48px;
  }
  .sticky{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 91;
  background-color:#fff9f2;
  border-bottom-color: #00cbed;
  -webkit-animation: sticky 0.5s;
  animation: sticky 0.5s;
  }
  @keyframes sticky {
  0% {
  transform: translateY(-100%);
  }
  100% {
  transform: translateY(0%);
  }
  }
  .navbar-brand img {
  width: 110px;
  }
  .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0rem;
  }
  .nav-link{
  color: black;
  }
  .nav-link:focus, .nav-link:hover {
  color: #00cbed;
  }
  
  /*[type="checkbox"]:checked,
  [type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  }*/

  .dark-light:checked ~ .light-back{
  opacity: 1;
  }
  .dropdown:checked + label,
  .dropdown:not(:checked) + label{
  position: relative;
  transition: all 200ms linear;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  cursor: pointer;
  }

  .dropdown:checked + label:before{
  pointer-events: auto;
  }

  .section-dropdown {
  position: absolute;
  padding: 15px;
  /*margin: 10px 0px;*/
  top: 40px;
  left: 0;
  border-radius: 4px;
  display: block;
  box-shadow: 0 14px 35px 0 rgba(9,9,12,0.4);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 200ms linear;
  background: rgba(255, 255, 255);
  box-shadow: 0 4px 30px rgb(0 0 0 / 5%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 2px solid #00cbed;
  }
  .dark-light:checked ~ .sec-center .section-dropdown {
  background-color: #fff;
  box-shadow: 0 14px 35px 0 rgba(9,9,12,0.15);
  }
  .dropdown:checked ~ .section-dropdown{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  }
  .section-dropdown:before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  content: '';
  display: block;
  z-index: 1;
  }
  .section-dropdown:after {
  position: absolute;
  top: -8px;
  left: 30px;
  width: 0; 
  height: 0; 
  border-left: 8px solid transparent;
  border-right: 8px solid transparent; 
  border-bottom: 8px solid rgba(255, 255, 255);
  content: '';
  display: block;
  z-index: 2;
  transition: all 200ms linear;
  }
  .dark-light:checked ~ .sec-center .section-dropdown:after {
  border-bottom: 8px solid #fff;
  }
  .dark-light:checked ~ .sec-center .section-dropdown a {
  color: #102770;
  }
  .dark-light:checked ~ .sec-center .section-dropdown a:hover {
  color: #ffeba7;
  background-color: #102770;
  }
  .dark-light:checked ~ .sec-center .section-dropdown .for-dropdown-sub{
  color: #102770;
  }
  .dark-light:checked ~ .sec-center .section-dropdown .for-dropdown-sub:hover{
  color: #ffeba7;
  background-color: #102770;
  }
  .section-dropdown-sub {
  position: relative;
  display: block;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  max-height: 0;
  padding-left: 10px;
  padding-right: 3px;
  overflow: hidden;
  transition: all 200ms linear;
  }
  .dropdown-sub:checked ~ .section-dropdown-sub{
  pointer-events: auto;
  opacity: 1;
  max-height: 999px;
  }
  .dropdown-item{
  text-align: start;
  color: black;
  padding: .4rem 1rem;
  }
  .dropdown-item:hover{
  background-color: white;
  color: #00cbed;
  }


  .profile-sec.dropdown-toggle:hover .dropdown-menu {
  display: block ;
  margin-top: 5px;
  }
  .nav-item .dropdown-menu {
  background: white;
  box-shadow: 0px 0px 17px 0px rgb(0 0 0 / 21%);
  -webkit-box-shadow: 0px 0px 17px 0px rgb(0 0 0 / 12%);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.21);
  left: 0px;
  min-width: 10rem;
  border: 0px solid rgba(0,0,0,.15);
  border-radius: 8px;
  padding: 10px;
  border-bottom: 3px solid #00cbed;
  }
  /*.nav-item .dropdown-menu:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-bottom-width: 8px;
  border-bottom-style: solid;
  border-right: 7px solid transparent;
  border-bottom-color: #00cbed ;
  position: absolute;
  top: -8px;
  left: 42px;
  }*/
  .nav-item .dropdown-menu[data-bs-popper] {
  left: 0px;
  margin-top: 5px;
  }
  .nav-item .dropdown-item:focus, .dropdown-item:hover {
  color:#00cbed;
  background-color: transparent;
  }
  /*----------------x--------------------navbar----------------------x-----------------*/

  /*------------------------------------home---------------------------------------*/
  .home{
  height: 550px;
  background: url(../img/home-img.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .home-container h1{
  color: white;
  letter-spacing: 5px;
  font-size: 3rem;
  }
  .home-container p {
  color: white;
  }
  .search .form input {
  background-color: transparent;
  border-color: transparent;
  padding: 18px 15px;
  width: 100%;
  border-radius: 0px;
  color: black;
  border: none;
  }
  .search .form input::placeholder {
  color: black;
  opacity: 1;
  }
  .search .form .dropdown {
  background-color: transparent;
  border-color: transparent;
  padding: 18px 15px;
  border-radius: 0px;
  color: black;
  width: 100%;
  }
  .search .form-label {
  padding: 2px 15px;
  }
  .search .form-label {
  margin-bottom: 0.5rem;
  }
  .search .form input:focus-visible {
  outline: 0px solid #00cbed;
  outline-color: #00cbed;
  }
  .search .form input::placeholder{
  color: black;
  }
  .search {
  background-color: white;
  padding: 10px;
  }
  .btn-check:focus+.btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
  }
  .search-btn{
  padding: 18px 40px;
  background-color: #00cbed;
  border-color: #00cbed;
  border-radius: 0px;
  }
  .search-btn:hover{
  background-color: #00cbed;
  border-color: #00cbed;
  color: white;
  }
  .seprator{
  border: 1px solid #f1f1f1;
  margin: 0px 10px;
  }
  .category-box {
  height: 230px;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .category-name {
  background-color: rgb(93 74 74 / 40%);
  border-radius: 0px 0px 13px 13px;
  width: 100%;
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  }
  .category-box p{
  color: white;
  }
  .heading span{
  color: #00cbed;
  }
  .list-box{
  background-color: white;
  border-radius: 15px;
  box-shadow: rgb(100 100 111 / 20%) 0px 0 29px 0px;
  }
  .list-img{
  border-radius: 15px 15px 0px 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 280px;
  }
  .fav-ic{
  width: 55px;
  }
  .fav-ic img{
  width: 100%
  }
  .stars img{
  margin: 0px 2px;
  }
  .list-details .rating {
  display: flex;
  align-items: center;
  width: fit-content;
  background: #00cbed;
  padding: 6px 12px;
  border-radius: 25px;
  }
  .list-details h5{
  color: black;
  }
  .cate-name{
  color: #00cbed;
  }
  .popular-list-sec{
  background-color: #fbfbfb;
  }
  .pattern-diagonal-lines-md{
  color: #f3f3f3;
  }
  .heading h2{
  color: black;
  }
  .rating-text{
  color: black;
  }
  
  .join-btn:hover{
  background-color: #00cbed;
  border-color: #00cbed;
  color: white;
  }
  .signin-btn{
  width: 100%;
  padding: 15px 10px;
  background-color: #00cbed;
  border-color: #00cbed;
  border-radius: 0px;
  box-shadow: rgb(0 0 0 / 15%) 0px 8px 10px 1px;
  font-weight: 800;
  }
  .signin-btn:hover{
  background-color: #00aecb;
  border-color: #00aecb;
  box-shadow: rgb(0 0 0 / 35%) 0px 8px 10px 1px;
  }
  .signup-btn{
  background-color: transparent;
  border-color: #00cbed;
  color: #00cbed;
  width: 100%;
  padding: 15px 15px;
  border-radius: 0px;
  border-width: 2px;
  }
  .signup-btn:hover{
  background-color: transparent;
  border-color: #00cbed;
  color: #00cbed;
  }
  .map-bg{
  background-image: url(assets/img/map.png);
  background-position: center;
  background-size: cover;
  }

  /*----------------x--------------------home----------------------x-----------------*/

  /*------------------------------------Login---------------------------------------*/
  .login-box{
  background-color: white;
  border-radius: 20px;
  box-shadow: rgb(0 0 0 / 15%) 0px 8px 10px 1px;
  padding: 40px 40px;
  /*border: 2px solid #00cbed;*/
  }
  .form-title a{
  color:#00cbed;
  }
  .form input {
  background-color:#f2f2f2;
  border-color: transparent;
  padding: 12px;
  width: 100%;
  border-radius: 7px;
  color: black;
  }
  .form input:focus-visible {
  outline: none;
  /*outline-color: #00cbed;*/
  }
  /*.form-control:focus{
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%) !important;
  }*/
  .sign-btn{
  background-color: #00cbed;
  border-color: #00cbed;
  border-radius: 0px;
  color: white;
  padding: 12px;
  width: 100%;
  border-radius: 7px;
  box-shadow: rgb(0 0 0 / 15%) 0px 8px 10px 1px;
  font-weight: 800;
  }
  .sign-btn:hover{
  background-color: #00aecb;
  border-color: #00aecb;
  color: white;
  box-shadow: rgb(0 0 0 / 35%) 0px 8px 10px 1px;
  }
  .forgot-password a {
  color:#00cbed;
  text-decoration: none;
  }
  .pattern-vertical-lines-xl{
  color: white;
  }
  .form-label {
  margin-bottom: 0.5rem;
  color: black;
  font-weight: 550;
  }
  .form-title h3{
  color: black;
  }
  .form-title p {
  color: black;
  }
  .register{
  min-height: 600px;
  display: flex;
  align-items: center;
  }
  .options .inputGroup {
  background-color: #fff;
  display: block;
  margin: 10px 0;
  position: relative;
  }
  .options .inputGroup label {
  padding: 12px 30px;
  width: 100%;
  display: block;
  text-align: center;
  color: #dd3a57;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  border-radius: 4px;
  border: 2px solid #dd3a57;
  font-weight: 500;
  }
  .options .inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: '';
  background-color: #dd3a57;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
  }
  .options .inputGroup label:after {
  width: 32px;
  height: 32px;
  content: '';
  border: 2px solid #d1d7dc;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
  display: none;
  }
  .options .inputGroup input:checked ~ label {
  color: #fff;
  border: 2px solid transparent;
  }
  .options .inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
  }

  .options .inputGroup input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
  opacity: 1;
  }

  /*.options [type="checkbox"]:checked, [type="checkbox"]:not(:checked){
  opacity: 1;
  }
  .options[type="checkbox"]:checked, [type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
  opacity: 1;
  pointer-events: none;
  }*/
  .terms .option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 25px;
  width: 25px;
  transition: all 0.15s ease-out 0s;
  background: #f2f2f2;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 5;
  padding: 0.6px;
  }
  .terms .option-input:hover {
  background: #f2f2f2;
  }
  .terms .option-input:checked {
  background: #00cbed;
  opacity: 1;
  }
  .terms .option-input:checked::before {
  width: 25px;
  height: 25px;
  display:flex;
  content: '\f00c';
  font-size: 15px;
  font-weight:bold;
  position: absolute;
  align-items:center;
  justify-content:center;
  font-family:'Font Awesome 5 Free';
  }
  .terms .option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #00cbed;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
  }

  @keyframes click-wave {
  0% {
  height: 25px;
  width: 25px;
  opacity: 0.35;
  position: relative;
  }
  100% {
  height: 200px;
  width: 200px;
  margin-left: -80px;
  margin-top: -80px;
  opacity: 0;
  }
  }
  .terms label {
  color: black;
  }
  .form .dropdown{
  background-color:#f2f2f2;
  border-color: transparent;
  padding: 12px;
  width: 100%;
  border-radius: 7px;
  color: black;
  }
  /*-----------------x-------------------Login----------------------x------------------*/

  /*------------------------------------Subcategory---------------------------------------*/
  .sub-bg{
  background: url(../img/education.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0rem;
  display: flex !important;
  align-items: center !important;
  position: relative;
  z-index: 1;
  }
  .sub-bg:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 40%);
  opacity: 0.75;
  z-index: -1;
  } 
  .cate-heading h2{
  color: white;
  }
  .subcategory-box {
  background: url(../img/home-img.png);
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  transform: scale(1.0);
  transition: ease-in 0.2s;
  }
  .sub-text {
  padding: 25px 25px;
  background-color: rgb(0 0 0 / 40%);
  border-radius: 0px 0px 20px 20px;
  backdrop-filter: blur(3px);
  width: 100%;
  text-align: center;
  }
  .sub-text h5{
  color: white;
  font-size: 1rem;
  }
  .map-padding{
  position: relative;
  }
  .sidebar-arrow{
  position: absolute;
  top: 40%;
  left: 0px;
  background-color: #f87c0a;
  color: white;
  padding: 20px 15px;
  border-radius: 0px 10px 10px 0px;
  transition: transform .3s ease-in-out;
  }
  .offcanvas-start{
  border-right: 0px solid black;
  width: 450px;
  }
  .offcanvas .heading h2 {
  color: black;
  font-size: 1.7rem;
  }
  .offcanvas-header{
  background-image: url(../img/education.jpeg);
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: baseline; 
  justify-content: flex-end;
  }
  .title h5{
  color:#bfbfbf;
  font-weight: 400;
  }
  .title p{
  color:#bfbfbf;
  }
  .btn-close {
  color: white;
  opacity: 1;
  filter: invert(1) grayscale(100%) brightness(200%); 
  height: 25px;
  width: 25px;
  display: none;
  }
  
  /*-----------------x-------------------Subcategory----------------------x------------------*/

  /*------------------------------------add-business---------------------------------------*/

  .form textarea {
  background-color:#f2f2f2;
  border-color: transparent;
  padding: 12px;
  width: 100%;
  border-radius: 7px;
  color: black;
  width: 100%;
  resize: none;
  }
  .image-upload-wrap {
  border: 3px dashed #00cbed;
  border-radius: 10px;
  padding: 80px;
  position: relative;
  background: #fef9f2;
  }
  .file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
  }
  .drag-text h4{
  color:black;
  font-size: 1.3rem;
  text-align: center;
  }
  .drag-text h4 b{
  color:#00cbed;
  font-weight: 500;
  }

  /*-----------------x-------------------add-business----------------------x------------------*/

  /*------------------------------------settings----------------------------------------*/
  .setting-sec{
  padding-top: 2rem;
  padding-bottom: 2rem;
  }
  .accordion {
  background-color: white;
  max-width: 500px;
  box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
  margin: 0px auto;
  border-radius: 20px;
  }
  .accordion__title {
  padding: 30px 30px 30px 30px;
  display: block;
  position: relative;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid lightgray;
  }
  .accordion__title:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f055";
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  right: 30px;
  top: 30px;
  color: #00cbed;
  }
  .accordion__title h5 {
  display: inline-block;
  font-weight: 400;
  }

  .accordion__title:hover, .accordion__title:focus {
  cursor: pointer;
  outline: none;
  }
  .accordion__title:hover h5, .accordion__title:focus h5 {
  border-bottom-color: #a8bdc4;
  display: inline-block;
  }
  .is-expanded .accordion__title:before {
  content: "\f056";
  }
  .accordion__content-inner {
  /*padding: 0px 20px;*/
  /*background: #f2f2f2;*/
  }
  .accordion_padding_2{
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .accordion_padding{
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
  }
  .accordion__content {
  transition: height 0.3s ease-out;
  height: 0;
  overflow: hidden;
  }
  .accordion__content-inner ul li {
  list-style: none;
  padding: 5px 0;
  display: block;
  }
  .accordion__content-inner ul{
  margin: 0px;
  padding: 0;
  }
  .links li a {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  text-decoration: none;
  transition: all ease 0.3s;
  }
  .links li a:hover{
  color: #00cbed;
  }
 
  .tab-content{
  margin: 50px auto;
  }
  .tabcontent {
  display: none;
  }
  .tabcontent-active {
  display: block;
  }
  .shadow-box{
  background-color: white;
  box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
  border-radius: 20px;
  }
  /*.tabcontent .profile-img img {
  width: 150px;
  height: 150px;
  border: 3px solid #00cbed;
  border-radius: 50%;
  padding: 5px;
  }*/
  .tabcontent .labels {
  font-weight: 500;
  color: #00cbed;
  font-size: 1.2rem;
  }

  .tabcontent .disable{
  opacity: 0.9;
  }
  .tabcontent .disable input{
  background: transparent;
  }
  /*-----------------x-------------------settings----------------------x------------------*/

  /*------------------------------------business-detalis---------------------------------------*/
  .icons img {
  width: 25px;
  margin: 0px 3px;
  }
  .custom-hr {
  background-color: #bfbfbf;
  }
  .detail-text{
  color: #bfbfbf;  
  }
  .contact-text p{
  color: #00cbed;
  font-size: 0.9rem;
  }
  .contact-text p span{
  color: #bfbfbf;
  }
  .details .heading-text{ 
  font-size: 1.1rem;
  }
  .detail-text{
  font-size: 0.9rem;
  }
  .count{
  font-size: 14px;
   color: #bfbfbf;  
  }
  .rate-count{
  margin-top: 4px;
  }
  .progress-bar{
  background-color: #00cbed;
  }
  .progress{
  height: 12px;
  }
  .big-rate h1{
  font-size: 4rem;
  }
  .big-rate .stars img{
  width: 15px;
  }
  .give-rating{
  background: transparent;
  border-color: #00cbed;
  border-radius: 50px;
  color: #00cbed;
  padding: 10px 30px;
  font-size: 0.9rem;
  width: 100%;
  }
  .give-rating:hover{
  background: transparent;
  border-color: #00cbed;
  color: #00cbed;
  }
  .offcanvas-body{
  overflow-x: hidden;
  }
  /*-----------------x-------------------business-detalis----------------------x------------------*/
  
  /*------------------------------------profile---------------------------------------*/
  .profile-img-bg{
  height: 400px;
  display: flex;
  background-image: url(../img/computer.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: end;
  }
  .profile-img-bg img{
  width: 35px;
  }
  .profile-img-bg h1{
  color: white;
  font-size: 1.5rem;
  font-weight: normal;
  }
  .profile-img-bg h5{
  color: white;
  font-weight: normal;
  }
  .custom-container {
  margin-top: -40px;
  }
  .profile-details{
  background-color: white;
  border-radius: 20px;
  box-shadow: rgb(149 157 165 / 60%) 1px 0px 24px;
  padding: 10px;
  position: relative;
  z-index: 1;
  }
  .location{
  color: #bfbfbf;
  }
  .edit-btn {
  background-color: #00cbed;
  border-color: #00cbed;
  color: white;
  border-radius: 12px;
  padding: 0.5rem 3rem;
  }
  .edit-btn:hover {
  background-color: #00cbed;
  border-color: #00cbed;
  }
  .profile-details .nav-tabs {
  border-bottom: 0px solid #dee2e6;
  }
  .profile-details .nav-tabs .nav-link {
  /*margin-bottom: -1px;*/
  background: #f4f6f8;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 700;
  margin-right: 15px;
  margin-bottom: 5px;
  margin-top: 5px;
  }
  .profile-details .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: black;
  box-shadow: rgb(149 157 165 / 74%) 0px 6px 10px !important;
  /*background-color: #00cbed;
  border-color: #00cbed;*/
  border-radius: 15px;
  }
  .nav-tabs .nav-link:hover {
  border-color: transparent;
  box-shadow: rgb(0 0 0 / 15%) 0px 8px 10px 1px;
  isolation: isolate;
  }
  .my-business-box{
  background-color: white;
  box-shadow: rgb(100 100 111 / 20%) 0px 0 29px 0px;
  border-radius: 15px;
  padding: 10px;
  }
  .my-business-box .img{
  width: 100px;
  height: 100px;
  background-image: url(../img/computer.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;  
  }
  .my-business-box .stars img{
  width: 16px;
  }
  .rating-box {
  background-color: #00cbed;
  padding: 5px 15px;
  border-radius: 20px;
  width: fit-content;
  font-size: 13px;
  color: white;
  }
  .my-business-box .details h5{
  font-size: 1.1rem ;
  }
  .height-custom{
  min-height: 700px;
  position: relative;
  }

  /*-----------------x-------------------profile----------------------x------------------*/

  /*------------------------------------footer---------------------------------------*/
  @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,700;1,400;1,500&display=swap');
  
  .footer-sec {
  background-color: black;
  color: white;
  width: 100%;
  flex-shrink: 0;
  padding: 20px;
  z-index: 1;
  }

  .footer-sec b {
  color:#00cbed;
  font-weight: 400;
  }

  .footer-link:hover{
    color: #00cbed;
  }
  .footer-color{
    color: #a70404 !important;
  }
  .hir-text h4{
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 1rem;
  }
  .hir-text p{
  font-family: 'Raleway', sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 0.8rem;
  }
  /*-----------------x-------------------footer----------------------x------------------*/
  /*-----------------x-------------------rating----------------------x------------------*/
  #full-stars-example-two .rating-group {
   display: inline-flex;
}
 #full-stars-example-two .rating__icon {
   pointer-events: none;
}
 #full-stars-example-two .rating__input {
   position: absolute !important;
   left: -9999px !important;
}
 #full-stars-example-two .rating__input--none {
   display: none;
}
 #full-stars-example-two .rating__label {
   cursor: pointer;
   padding: 0 0.1em;
   font-size: 2rem;
}
 #full-stars-example-two .rating__icon--star {
   color: orange;
}
 #full-stars-example-two .rating__input:checked ~ .rating__label .rating__icon--star {
   color: #ddd;
}
 #full-stars-example-two .rating-group:hover .rating__label .rating__icon--star {
   color: orange;
}
 #full-stars-example-two .rating__input:hover ~ .rating__label .rating__icon--star {
   color: #ddd;
}

.containers {
  display: block;
  position: relative;
  padding-left: 35px;
  /*margin-bottom: 12px;*/
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: black;
}

/* Hide the browser's default radio button */
.containers input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containers:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containers input:checked ~ .checkmark {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containers input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containers .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.containrs {
  display: block;
  position: relative;
  padding-left: 35px;
  /*margin-bottom: 12px;*/
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: black;
}

/* Hide the browser's default radio button */
.containrs input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmarks {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .checkmarks {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .checkmarks {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmarks:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .checkmarks:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .checkmarks:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.check {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .check {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .check {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.check:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .check:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .check:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.checkbutton {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .checkbutton {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .checkbutton {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkbutton:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .checkbutton:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .checkbutton:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.checksbutton {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .checksbutton {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .checksbutton {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checksbutton:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .checksbutton:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .checksbutton:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.checkbuttons {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .checkbuttons {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .checkbuttons {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkbuttons:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .checkbuttons:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .checkbuttons:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.checksbuttons {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .checksbuttons {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .checksbuttons {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checksbuttons:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .checksbuttons:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .checksbuttons:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.check_buttons {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .check_buttons {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .check_buttons {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.check_buttons:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .check_buttons:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .check_buttons:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.radio_buttons {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .radio_buttons {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .radio_buttons {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio_buttons:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .radio_buttons:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .radio_buttons:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.radio_button {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .radio_button {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .radio_button {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio_button:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .radio_button:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .radio_button:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.radiobutton {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .radiobutton {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .radiobutton {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobutton:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .radiobutton:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .radiobutton:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.radiobuttons {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .radiobuttons {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .radiobuttons {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobuttons:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .radiobuttons:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .radiobuttons:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.radios_buttons {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .radios_buttons {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .radios_buttons {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radios_buttons:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .radios_buttons:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .radios_buttons:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
/*```````````````````````````````````*/
.checkbutons {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .checkbutons {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .checkbutons {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkbutons:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .checkbutons:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .checkbutons:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*```````````````````````````````````*/
.r_buttons {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containrs:hover input ~ .r_buttons {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containrs input:checked ~ .r_buttons {
  background-color: #00ccea;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.r_buttons:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.containrs input:checked ~ .r_buttons:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.containrs .r_buttons:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
  /*--alert-message-*/
  .alert{
  display: flex;
  align-items: center;
  justify-content: space-between;
  }
  .alert-danger {
  background-color: rgba(223 68 68 / 18%);
  border-radius: 12px;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 8%);
  color: #df4344;
  padding: 5px;
  border: 1px solid rgb(223 68 68 / 70%);
  }
  .danger-ic{
    display: flex;
    align-items: center;
  }
  .danger-ic img{
   width: 42px;
   margin-right:10px;
  }
  .alert-danger .close{
  position: initial;
  opacity: 1;
  padding: 0px 9px;
  background-color: transparent;
  border-radius: 10px;
  margin-right: 0px;
  }
  .alert .close:hover{
  background-color: white;
  }
  .alert .close{
  font-size: 20px;
  }
  .alert-success {
  background-color: rgba(80 223 68 / 18%);
  border-radius: 12px;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 8%);
  color: rgba(80 223 68);
  padding: 5px;
  border: 1px solid rgb(80 223 68 / 70%);
  }
  .alert-success .close{
  position: initial;
  opacity: 1;
  padding: 3px 10px;
  background-color: transparent;
  border-radius: 10px;
  margin-right: 5px;
  color: rgba(80 223 68);
  }
  .alert-warning{
  background-color: rgba(250 203 50 / 18%);
  border-radius: 12px;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 8%);
  color: rgba(250 203 50);
  padding: 5px;
  border: 1px solid rgb(250 203 50 / 70%);
  }
  .alert-warning .close{
  position: initial;
  opacity: 1;
  padding: 10px 10px;
  background-color: transparent;
  border-radius: 10px;
  margin-right: 5px;
  color: rgba(250 203 50);
  }
  .alert p{
  margin: 0px;
  }
  /*-*-alert-message-*-*/
.btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none !important;
}

.form-control:focus{
  box-shadow: none !important;
  border-color: #00ccea !important;
  border-width: 2px;
  background: #f2f2f2;
}

/*```````````home page`````````````*/

.home-box{
  padding: 25px;
  /*border : 1px solid #30d147;*/
  /*box-shadow: rgba(149, 157, 165, 25%) 0px 8px 24px;*/
}

.progress{
  border-radius: 1rem;
  height: 15px;
}

.home-count{
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.count{
  font-size: 13px;
  color: #808080b5;
  margin-bottom: 0px;
}

.counts{
  font-size: 13px;
  color: #000000;
  margin-bottom: 0px;
}

.home-complete{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-button{
  padding: 0px 30px;
  font-size: 15px;
  color:white;
  background-color: #30d147;
  border-color: #30d147;
}

h4{
  font-weight: 600;
}

.home_box{
  padding: 25px;
  /*border : 1px solid #eb4949;*/
  /*box-shadow: rgba(149, 157, 165, 25%) 0px 8px 24px;*/
}

.home_button{
  padding: 0px 30px;
  font-size: 15px;
  color:white;
  background-color: #eb4949;
  border-color: #eb4949;
}

.form_button{
  width: fit-content;
}

.home_button:hover {
    background-color: #c72b2b;
    border-color: #c72b2b;
    color: white;
}

.home-button:hover {
    background-color: #249d35;
    border-color: #249d35;
    color: white;
}

.dropdown-toggle::after{
  color: white !important;
}

input[type="file"] {
  padding: 17px;
  padding-left: 22px;
}

.new_checkbox input[type="checkbox"] {
   position: relative;
   width: 1rem;
   height: 1rem;
   color: #363839;
   border: 1px solid #bdc1c6;
   border-radius: 4px;
   appearance: none;
   outline: 0;
   cursor: pointer;
   transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
   padding: 10px;
}
.new_checkbox input[type="checkbox"]::before {
   position: absolute;
   content: '';
   display: block;
   top: 1px;
   left: 6px;
   width: 8px;
   height: 14px;
   border-style: solid;
   border-color: #fff;
   border-width: 0 3px 3px 0;
   transform: rotate(45deg);
   opacity: 0;
}
.new_checkbox input[type="checkbox"]:checked {
   color: #fff;
   border-color: #00ccea;
   background: #00ccea;
}
.new_checkbox input[type="checkbox"]:checked::before {
   opacity: 1;
}
.new_checkbox input[type="checkbox"]:checked ~ label::before {
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.new_checkbox label {
   position: relative;
   cursor: pointer;
   font-size: 0.9rem;
   font-weight: 550;
   padding: 0 0.50em 0;
   user-select: none;
}

.new_checkbox{
  margin-top: 12px;
  display: flex;
  align-items: center;
  padding-left: 0px;
  margin-bottom: 0px;
}

.compulsory_field{
  color: red;
}

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

.help-block{
  color: red;
}

.company-images {
  width: 110px;
  height: 110px;
  border-radius: 15px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0px 10px;
  object-fit: cover;
  margin-left: 0px;
}

a .btn-close {
  color: white;
  opacity: 1;
  filter: invert(1) grayscale(100%) brightness(200%);
  display: block;
}

.back_button{
  padding: 7px;
  width: 100px;
  border-radius: 15px;
}

.filename{
  white-space: nowrap;
  width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.survey-table .custom-trow{
  background: transparent;
}

.survey-table thead th, .survey-table thead td {
  border: 1.5px solid #0000000d;
}

.table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td, .table tbody + tbody, .table-bordered, .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    padding: 1rem 1rem !important;
    border-color: rgba(0, 0, 0, 0.05);
    border-width: 1.5px;
}

.survey-table .custom-trow th{
  /*font-size: 1.7rem !important;*/
  text-transform: none;
}

.survey-table tr th{
  /*font-size: 1.7rem !important;*/
  /*color: black;*/
  vertical-align: middle !important;
}

.survey-table td .form-control{
  margin-bottom: 0px;
}
.responsive_back{
  display: none;
}
.pending_registry{
  color: white;
  background: red;
  /*padding: 8px 15px;*/
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 1.3rem;
  padding-top: 2px;
}
.displayfile{
  position: relative;
  padding:5px 10px;
  border: 1px solid #bfbfbf87;
  border-radius: 10px;
  height: 70px;
  width: 400px;
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.responsive-back{
  color: #00cbed;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-link .disabled{
  color: grey;
}

.date{
  width: 33%
}

.sec-name{
  width: 33%;
  text-align: center;
  font-weight: 700;
}

.id-number{
  width: 33%;
  text-align: end;
}

.sug-color{
  color: #0000007a;
}

.suggestion-color{
  color: #0000007a;
  font-size: 14px;
}

.form-label1{
  align-items: center;
  display: flex;
  margin-right: 7px;
}

.footer-logo{
  width: 22%;
}

.animated {
  background-image: url('../../img/Background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: flip 4s infinite;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0.7;
  }
  @keyframes flip {
  from{
  transform: rotateY(0deg) ;
  }
  to{
  transform: rotateY(360deg) ;  
  }
  }

  .footer-link{
  color: white;
  text-decoration: none;
  font-size: .9rem;
  }
  .footer-link:hover{
  color: #00cbed;
  }
  .help-block{
  color: red;
  }
  .main{
  position: relative;
  width: 100%;
  min-height: 500px;
  display: grid;
  align-content: center;
  justify-content: center;
  }
  .site-url{
  background: #00cbed;
  color: white;
  }
  .welcome-text h5{
  font-size: 2rem;
  font-weight: 600;
  }
  .welcome-text h1{
  font-size: 5.5rem;
  font-weight: 600;
  color: #800000;
  }
  .welcome-text p{
  font-size: 1.5rem;
  }
  .video-box{
  width: 150px;
  height: 150px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  }
  .video-box video {
  width:100%;
  height:100%;
  border-radius: 20px;
  object-fit: cover;
  background:black;
  }
  
  .section-bg{
  background: rgb(255 255 255 / 80%);
  }

  #myVideo {
  position: fixed;
  right: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  }

  .login-btn{
    background-color: #800000;
    border-color: #800000;
    border-radius: 0px;
    color: white;
    padding: 12px;
    width: 100%;
    border-radius: 7px;
    box-shadow: rgb(0 0 0 / 15%) 0px 8px 10px 1px;
    font-weight: 800;
  }

  .login-btn:hover{
    background-color: #a70404;
    border-color: #a70404;
  }

  select.dropdown-arrow{
    appearance: none;
    background-position-x: 90%;
    background-position-y: 11px;
    background-size: 15px;
    background-image: url(../../../assets/img/drop-arrow.png);
    background-repeat: no-repeat;
  }
  .smoking
  {
    width: 32.4% !important;
  }
  .addMoreBtn
  {
    width: 45px;
    height: 45px;
    border: 0px;
    font-size: 30px;
    font-weight: 700;
    border-radius: 5px;
    background: #00cbed;
    color: #fff;
        align-items: center;
    justify-content: center;
    padding: 0px 15px 5px 15px;/*change from padding: 5px 15px 5px 15px;*/
    cursor: pointer;
  }
  .lab_one {
    width: calc(100% - 62px);
  }
  .lab_two
  {
        width: 62px;
  }

  .closeBtn
  {
    width: 45px;
    height: 45px;
    border: 0px;
    font-size: 30px;
    border-radius: 5px;
    background: red;
    color: #fff;
        align-items: center;
    justify-content: center;
    padding: 0px 15px 5px 15px;/*change from padding: 5px 15px 5px 15px;*/
    cursor: pointer;
  }

  .filter label {
    color: black;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1rem;
}
.filter .option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: rgba(12, 176, 167, .10);
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 1rem;
    outline: none;
    padding: 0.6px;
    position: relative;
    border-radius: 7px;
}
.filter .option-input:hover {
  background: #f2f2f2;
  }
  .filter .option-input:checked {
  background: #00cbed;
  opacity: 1;
  }
  .filter .option-input:checked::before {
  width: 24px;
  height: 24px;
  display:flex;
  content: '\f00c';
  font-size: 15px;
  font-weight:bold;
  position: absolute;
  align-items:center;
  justify-content:center;
  font-family:'Font Awesome 5 Free';
  }
  .filter .option-input:checked::after {
  -webkit-animation: ease 0.65s;
  -moz-animation: ease 0.65s;
  animation: ease 0.65s;
  background: #F97A5C;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
  }
  .w-50
  {
    width: 50% !important;
  }
  .clearall
  {
    text-decoration: none;
    color:#00aecb;
  }
  .border-result
  {
    border-right: 1px solid;
  }

  .fa-calculator{
  color :white;
  font-size: 35px;
  margin-right: 8px;
  }

 .link-cal{
color: white;
text-decoration: none;
 margin-right: 5px;
 font-weight: 600;
 }
  .link-cal:hover{
    color: white;
  }

      .new_tool {
   position: relative;
   margin-top: 3px;
}
 .tooltip__item {
   position: absolute;
   min-width: 150px;
   padding: 10px;
   visibility: hidden;
   opacity: 0;
   background: white;
   transition: all 0.25s cubic-bezier(0, 0, 0.2, 1);
   color: #484848;
   border: 1px solid #cecece;
   border-radius: 10px;
   font-weight: 500;
   box-shadow: 0 2px 1px #bcbcbc;
   z-index: 4;
   text-align: center;
   font-size: 14px;
}
 .tooltip__item:after {
   content: "";
   display: block;
   position: absolute;
   width: 0;
   height: 0;
   border-style: solid;
}
 .tooltip__initiator {
   cursor: pointer;
   z-index: 5;
}
 .new_tool[data-direction="left"] .tooltip__initiator:hover ~ .tooltip__item {
   transform: translate3d(0, -50%, 0);
   visibility: visible;
   opacity: 1;
}
 .new_tool[data-direction="left"] .tooltip__item {
   top: 50%;
   right: calc(100% + 1em);
   transform: translate3d(15px, -50%, 0);
}
 .new_tool[data-direction="left"] .tooltip__item:after {
   top: 50%;
   right: -0.5em;
   transform: translate3d(0, -50%, 0);
   border-width: 0.5em 0 0.5em 0.5em;
   border-color: transparent transparent transparent white;
   -webkit-filter: drop-shadow(1px 2px 1px #bcbcbc);
   filter: drop-shadow(1px 2px 1px #bcbcbc);
}
 .new_tool[data-direction="bottom"] .tooltip__initiator:hover ~ .tooltip__item {
   transform: translate3d(-50%, 0, 0);
   visibility: visible;
   opacity: 1;
}
 .new_tool[data-direction="bottom"] .tooltip__item {
   top: calc(100% + 1em);
   left: 50%;
   transform: translate3d(-50%, -15px, 0);
}
 .new_tool[data-direction="bottom"] .tooltip__item:after {
   top: -0.5em;
   left: 45%;
   transform: translate3d(-50%, 0, 0);
   border-width: 0 0.5em 0.5em 0.5em;
   border-color: transparent transparent white transparent;
   -webkit-filter: drop-shadow(1px 2px 1px #bcbcbc);
   filter: drop-shadow(1px -1px 1px #bcbcbc);
}
 .fa.fa-info-circle {
   font-size: 38px;
   color: #21606b;
}

.border-right-light{
  border-right:1px solid white;
}
.hmi-img{ /*JD*/
  width: 80%;
}
.border-heart-img { /*JD*/
display: flex;
align-items: center;
justify-content: center;
}
.chart-height{ /*JD*/
margin: 50% 0;
}
.border-seprate{
border-top: 1px solid white;;
}
.heart-img{
height: auto;
display: flex;
align-items: center;
justify-content: center;
}
.border-md-seprate{
  display: none;
}


  .pagination a.left {
    color: #00cbed;
}
.pagination a {
    font-size: 14px;
    color: #00cbed;
}
.pagination p {
    width: 32px;
    height: 32px;
    background: #00cbed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    border-radius: 6px;
}
.pagination a.right {
    color: #00cbed;
}


.registryList .pagination {
  list-style-type: none;
  padding: 10px 0;
  display: inline-flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.registryList .pagination li {
  box-sizing: border-box;
  padding-right: 10px;
}
.registryList .pagination li a {
  box-sizing: border-box;
  background-color: #e2e6e6;
  padding: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  color: #616872;
  border-radius: 4px;

  width: 35px;
  display: block;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.registryList .pagination li a:hover {
  background-color: #d4dada;
}
.registryList .pagination .next a, .registryList .pagination .prev a {
  text-transform: uppercase;
  font-size: 12px;
}
.registryList .pagination .currentpage a {
  background-color: #00cbed;
  color: #fff;
}
.registryList .pagination .currentpage a:hover {
  background-color: #518acb;
}
.registryList .prev, .registryList .next {
  cursor: pointer;
  padding: 0px;
  width: 28%;
  border: 0px solid #ccc;
  margin: auto;
  background: transparent;
  border-radius: 5px;
}
.registryList .prev:hover, .registryList .next:hover {
  background-color:transparent;
}