@import url("switch.css");

/*======= Button ========*/
a:hover {
  color: #03ad98;
}

.btn {
  font-size: 1rem;
  border-color: #cef7ee;
  transition: all 0.3s ease;
  padding: 0.5rem 1.5rem 0.425rem;
  border-radius: 0.375rem;
}

.btn:focus {
  box-shadow: none;
}

.btn i {
  font-size: 1.25rem;
}

.btn-solid,
.btn-circle {
  color: #03ad98;
  background-color: #cef7ee;
}

.btn-circle {
  border-radius: 50px;
}

.btn-solid:hover,
.btn-circle:hover,
.upload-btn label:hover {
  color: #ffffff;
  border-color: #03ad98;
  background-color: #03ad98;
}

.btn-text {
  color: #69ad9f;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  border: none;
}

/*======= Upload Button ========*/
.upload-btn {
  margin-top: 1.5rem;
}

.upload-btn label {
  font-size: 1rem;
  cursor: pointer;
  color: #03ad98;
  padding: 8px 24px 7px;
  border: 1px solid #03ad98;
  /* background-color: #0b5ed7; */
  border-radius: 6px;
  transition: all 0.3s ease;
}

.upload-btn > input[type="file"] {
  display: none;
}

/*================================================
	LOGIN WRAP
==================================================*/
.login-wrap {
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  border-radius: 8px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  background: #fff;
  align-items: center;
}

.login-wrap .login-content {
  border-radius: 8px;
  padding: 60px 30px;
  border: 2px solid #03ad98;
  margin: 30px 0;
  position: relative;
  left: -75px;
  z-index: 999;
  text-align: center;
  background-color: #ffffff;
}

.login-wrap .login-content .login-logo {
  margin-bottom: 20px;
}

.login-wrap .login-content .login-logo img {
  width: 180px;
}

.login-wrap .login-content .login-logo a {
  font-size: 24px;
  font-weight: 500;
  color: #1c252c;
  text-transform: uppercase;
  text-decoration: none;
}

.login-wrap .login-content p {
  color: #1c252c;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.8;
}

.login-wrap .login-content .btn {
  color: #03ad98;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  letter-spacing: 1px;
  padding: 6px 30px 6px 30px;
  border: 1px solid #03ad98;
  transition: all 0.3s;
}

.login-wrap .login-content .btn:hover {
  color: #1c252c;
}

.login-wrap .login-content ul {
  margin-top: 30px;
}

.login-wrap .login-content ul li {
  display: inline-block;
}

.login-wrap .login-content ul li a {
  display: block;
  margin: 0 5px;
  font-size: 20px;
  color: #03ad98;
  transition: all 0.3s;
}

.login-wrap .login-content ul li a:hover {
  color: #1c252c;
}

/*========== LOGIN FORM ============*/
.login-wrap .login-form {
  padding: 30px 75px;
  padding-left: 0;
  text-align: center;
}

.login-wrap .login-form-header {
  margin-bottom: 25px;
}

.login-wrap .login-form-header .title {
  color: #717171;
  font-size: 22px;
  font-weight: 400;
}

.login-wrap .login-form .form-group {
  margin-bottom: 20px;
}

.login-wrap .login-form .form-control {
  padding: 10px 16px;
  font-size: 0.9rem;
  outline: 0;
  font-weight: 400;
  color: #717171;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #dbdbdb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
}

.login-wrap .login-form .form-link {
  display: flex;
  margin-bottom: 15px;
}

.login-wrap .login-form .form-check label {
  font-size: 14px;
  color: #717171;
}

.login-wrap .login-form .f-password {
  margin-left: auto;
}

.login-wrap .login-form .btn {
  width: 100%;
  color: #ffffff;
  background-color: #03ad98;
}

.login-wrap .login-form .form-bottom {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.login-wrap .login-form a,
.login-wrap .login-form p {
  color: #717171;
  font-size: 14px;
}

.login-wrap .login-form .form-bottom a {
  margin-left: 3px;
}

.login-2 .login-form {
  padding: 30px;
  text-align: center;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.17);
}

.login-2 .login-form .login-logo {
  margin-bottom: 1.5rem;
}

.login-2 .login-form .login-logo img {
  width: 180px;
}

.login-2 .login-form-header .title {
  color: #717171;
  font-size: 1.125rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .login-wrap {
    background-color: #ffffff;
  }

  .login-wrap .login-form {
    padding: 30px;
  }

  .login-2 .login-form {
    box-shadow: none;
  }

  .login-2 .login-form .login-logo img {
    width: 180px;
  }

  .login-wrap .login-form p {
    margin-bottom: 0;
  }
}

/*================================================
	Page Wrap
==================================================*/
#content {
  width: 85%;
  min-height: 100vh;
  transition: all 0.3s ease;
}

.page-wrap {
  /* margin-left: 224px; */
}

.page-wrap .container,
.page-wrap .container-fluid {
  padding: 0 1.5rem;
}

.page-wrap .page-header {
  padding: 1rem 0;
  /* background-color: #ffffff;
    border-bottom: 1px solid #e0e5ec; */
  /* margin-bottom: 1.5rem; */
}

.page-wrap .page-header .page-title {
  font-size: 1rem;
  margin-bottom: 0;
}

.page-wrap .page-header .page-title i {
  margin-right: 0.5rem;
}

.page-wrap .card {
  border-radius: 0.5rem;
}

.page-wrap .card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  background-color: #ffffff;
  border-start-start-radius: 0.5rem;
  border-start-end-radius: 0.5rem;
}

.page-wrap .card .card-header .title {
  font-size: 1rem;
  margin-bottom: 0;
}

.page-wrap .card-body {
  padding: 1.25rem;
}

.page-wrap .card-body .card-title {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.page-wrap label {
  font-size: 0.875rem;
  font-weight: 500;
}

.page-wrap .form-control {
  height: 40px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
}

.page-wrap form .btn {
  /* padding-bottom: .25rem; */
}

.page-wrap .card {
  margin-bottom: 1.5rem;
}

/*========================================================
    Dashboard Section
=========================================================*/
.dashboard-section {
}

.dashboard-section .card {
}

.dashboard-section .card-body {
  display: flex;
}

.dashboard-section .card-body .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #f2f2f2;
  border-radius: 50%;
}

.dashboard-section .card-body .icon-box .las {
  color: #1c252c;
  font-size: 2.75rem;
}

.dashboard-section .card-body .featured-info {
  margin-left: 1rem;
}

.dashboard-section .card-body .title {
  color: #1c252c;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0;
}

.dashboard-section .card-body .sub-title {
  color: #6a6d70;
  font-size: 0.9rem;
  font-weight: 500;
}

.dashboard-section .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: transparent;
}

.dashboard-section .card-footer .meta {
  color: #6a6d70;
  font-size: 0.875rem;
  font-weight: 500;
}

.dashboard-section .card-footer .meta span {
  color: #1c252c;
  margin-left: 4px;
  font-weight: 700;
}

/*========================================================
    Profile Page
=========================================================*/
.profile-section .card {
}

.profile-section .card .card-body {
}

.profile-section .card-body .card-title {
}

.profile-photo-container .card-body img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
}

/*========================================================
    List Page
=========================================================*/
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive .table {
  width: 100%;
}

.table > :not(:first-child) {
}

.table .thead {
  border-bottom: 1px solid #1c252c;
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
  transition: all 0.3s ease;
}

.table-responsive::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 3px;
}

.table-responsive::-webkit-scrollbar-track {
  background-color: #c2c9db;
}

.table-responsive::-webkit-scrollbar-button {
  display: none;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background-color: #136acd;
}

.table-section {
}

.table-section .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

table th {
  color: #1c252c;
  font-weight: 600;
  /* width: auto !important; */
}

table th,
table td {
  font-size: 14px;
  text-align: left;
  white-space: nowrap;
}

table td img {
  width: 40px;
}

.table > :not(caption) > * > * {
  /* padding: .75rem 1rem; */
}

table td a {
  color: #03ad98;
  display: block;
}

.table td.action-td {
  text-align: center;
}

.table td.action-td a.btn {
  color: #1c252c;
  padding: 0;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 35px;
  border-radius: 4px;
}

.table td.action-td a.btn-solid {
  border-color: #1c252c;
  background-color: transparent;
}

.table td.action-td a.btn-more {
  font-size: 1rem;
  text-align: center;
}

.table td.action-td a.btn-more i {
  font-size: 1.5rem;
}

.table td.action-td .dropdown-toggle::after {
  display: none;
}

.table td.action-td a.del-btn {
  color: #dc3545;
  border-color: #dc3545;
  margin-left: 4px;
}

/* .table td.action-td a.del-btn:hover{
    color: #ffffff;
    border-color: #dc3545;
    background-color: #dc3545;
} */
.table-pagination {
  padding: 0 1rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-pagination p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.table-pagination .pagination {
}

.table-pagination .pagination .page-item {
}

.table-pagination .pagination .page-link {
  color: #1c252c;
  font-size: 0.875rem;
}

.table-pagination .pagination .page-item.active .page-link {
  color: #1c252c;
  border-color: #cef7ee;
  background-color: #cef7ee;
}

/*========================================================
    Search Section
=========================================================*/
.page-wrap .search-section {
  margin-bottom: 60px;
}

.search-section form .btn {
  /* display: block; */
}

/*========================================================
    Form Page
=========================================================*/
.form-section {
}

.form-section form {
}

.form-section .card .progress {
  height: 3px !important;
  border-radius: 0px !important;
}

.form-section .card .progress-bar {
  background-color: #03ad98;
}

/* FORMS */
#steps-container {
  /* min-height: 300px;
    height: 360px; */
}

/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}

#progressbar .active {
  color: #1c252c;
}

#progressbar li {
  font-size: 15px;
  position: relative;
  font-weight: 400;
}

#progressbar li .step-li {
  display: flex;
  align-items: center;
  margin-left: 80px;
}

#progressbar li:first-child .step-li {
  margin-left: 0;
}

#progressbar li .icon {
  display: block;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  border: 1px solid #03ad98;
  background-color: #ffffff;
}

#progressbar li .icon .las,
#progressbar li .icon .lar {
  font-size: 20px;
}

#progressbar li label {
  padding: 4px 10px;
  padding-left: 16px;
  font-weight: 600;
  margin-left: -10px;
  border-radius: 0 16px 16px 0;
  background-color: #cef7ee;
  border: 1px solid #03ad98;
  z-index: -1;
}

/* #progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
} */

#progressbar li::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 16px;
  background: lightgray;
  z-index: -2;
}

#progressbar li.active::after {
  background: #03ad98;
}

#form-wrapper fieldset:not(:first-of-type) {
  display: none;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

/* MEDIA QUERIES */
@media (max-width: 767px) {
  #steps-container {
    width: 100%;
    min-height: 400px;
  }
}

@media (max-width: 560px) {
}

.form-section form .title {
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #c2c9db;
}

.form-section form .title:first-child {
  margin-top: 0;
}

.form-section form .form-group {
  margin-bottom: 1rem;
}

.form-section form label {
  display: block;
}

.form-section form .form-control {
}

.form-section form textarea.form-control {
  min-height: 90px;
}

.form-check-input:focus {
  box-shadow: none;
}

.form-check-input:checked {
  background-color: #03ad98;
  border-color: #03ad98;
}

.form-section form .form-switch {
  padding-left: 0;
}

.form-section form .form-switch label {
  display: block;
  margin-bottom: 0.5rem;
}

.form-section form .form-switch input {
  margin-left: 0;
}

.form-section form .form-check-inline {
  margin-top: 0.375rem;
}

.form-section form .form-btn {
  width: 100%;
  text-align: right !important;
}

.form-section form .form-btn .btn {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem 0.475rem;
}

.form-section form .form-btn .btn i {
  margin-left: 0.375rem;
}

/*========================================================
    User Profile Page
=========================================================*/
.user-profile-section {
}

.user-profile-section .card-body {
}

.user-profile-section .card-body .customer-photo {
}

.user-profile-section .card-body .customer-photo img {
  width: 150px;
  height: 150px;
  /* width: 20%; */
  border-radius: 8px;
  object-fit: cover;
}

.user-profile-section .card-body .customer-info {
}

.user-profile-section .card-body .customer-info .title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.user-profile-section .card-body .customer-info ul {
  columns: 2;
}

.user-profile-section .card-body .customer-info ul li {
  font-size: 0.875rem;
}

.user-profile-section .card-body .customer-info ul li + li {
  margin-top: 0.5rem;
}

.user-profile-section .card-body .customer-info ul li i {
  font-size: 1.125rem;
  margin-right: 0.375rem;
}

@media (min-width: 768px) {
  .user-profile-section .card-body {
    display: flex;
  }

  .user-profile-section .card-body .customer-photo {
    margin-right: 1.5rem;
  }
}

#item-th {
  width: 25% !important;
}

#family-member-th {
  width: 15% !important;
}

#service-category-th {
  width: 15% !important;
}

#service-type-th {
  width: 15% !important;
}

#amount-th {
  width: 15% !important;
}
