@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Homemade+Apple&display=swap");
@font-face {
  font-family: "Inter UI";
  src: url("../fonts/interUI/InterUI-Medium.woff2") format("woff2"),
    url("../fonts/interUI/InterUI-Medium.woff") format("woff"),
    url("../fonts/interUI/InterUI-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter UI";
  src: url("../fonts/interUI/InterUI-Regular.woff2") format("woff2"),
    url("../fonts/interUI/InterUI-Regular.woff") format("woff"),
    url("../fonts/interUI/InterUI-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Inter UI";
  src: url("../fonts/interUI/InterUI-Bold.woff2") format("woff2"),
    url("../fonts/interUI/InterUI-Bold.woff") format("woff"),
    url("../fonts/interUI/InterUI-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Inter UI";
  src: url("../fonts/interUI/InterUI-Black.woff2") format("woff2"),
    url("../fonts/interUI/InterUI-Black.woff") format("woff"),
    url("../fonts/interUI/InterUI-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: "Inter UI";
  background-color: #fef6f6;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
a,
button {
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover {
  text-decoration: none;
}
img {
  max-width: 100%;
}
button:focus,
input:focus,
textarea:focus,
.form-control:focus {
  outline: none;
  box-shadow: none;
}
.bg-primary {
  background-color: #f2594f !important;
}
a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #de4940 !important;
}
.text-primary {
  color: #f2594f !important;
}
a.text-primary:hover {
  color: #de4940 !important;
}
.off-canvas-container {
  display: flex;
}
i {
  cursor: pointer;
}

/*
  Loader
*/
.lds-canvas {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 555;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.6);
}
.lds-canvas .lds-spinner {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
}
.lds-canvas .lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-canvas .lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 25px;
  left: 39px;
  width: 2px;
  height: 10px;
  border-radius: 33%;
  background: #de4940;
}
.lds-spinner {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  padding-top: 6px;
  padding-left: 2px;
}
.lds-spinner div {
  transform-origin: 9px 8px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 1px;
  height: 5px;
  border-radius: 20%;
  background: #f0f0f0;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
  Loader
*/

/*
  Sidebar Style
*/

.sidebar-show .sidebar-canvas {
  margin-left: 0px;
}
.sidebar {
  position: relative;
}
.sidebar-canvas {
  width: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 48px 28px 30px 28px;
  min-height: 100vh;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.user-profile .user-img-canvas {
  position: relative;
  margin-right: 12px;
}
.user-cross {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background-color: #f2594f;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.sidebar .user-profile .user-img-canvas {
  width: 42px;
  height: 42px;
}
.sidebar .user-detail {
  width: 100%;
}
.sidebar .user-img-canvas .digit-box,
.sidebar .user-detail .digit-box {
  position: absolute;
  right: -4px;
  top: -4px;
  background-color: #fff;
  color: #f2594f;
  box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, 0.1);
  display: none;
}
.sidebar .user-detail .digit-box {
  right: 0;
  top: -2px;
}
.sidebar .user-img-canvas:hover .digit-box,
.sidebar .user-detail:hover .digit-box {
  display: flex;
}
.user-profile .user-img {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -khtml-border-radius: 50%;
  overflow: hidden;
}
.user-profile .user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-profile .user-name {
  font-size: 13px;
  display: block;
  line-height: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  word-break: break-word;
  white-space: normal;
}
.sidebar .user-profile .user-name {
  margin-top: 4px;
}
.sidebar .user-profile {
  margin-bottom: 60px;
  min-height: 42px;
}
.sidebar-list li {
  margin-bottom: 8px;
}
.sidebar-list li a {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: #fff;
  padding: 7px 12px;
  min-width: 120px;
  border-radius: 9px;
  line-height: 15px;
}
.sidebar-list li a i {
  margin-right: 18px;
  font-size: 13px;
  min-width: 15px;
  display: inline-block;
  text-align: center;
  color: #fff;
}
.sidebar-list li a:hover {
  background-color: rgba(0, 0, 0, 0.12);
  color: #fff;
}
.sidebar-list li a:not([href]).active:hover,
.sidebar-list li a.active {
  background-color: #fff;
  color: #434343;
}
.sidebar-list li a.active i {
  color: #434343;
}
.scrollbar-set::-webkit-scrollbar {
  width: 5px;
}
.scrollbar-set::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.scrollbar-set::-webkit-scrollbar-thumb {
  background: #e44d43;
  border-radius: 10px;
}
.white-btn-rounded {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  padding: 2px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2594f;
}
.white-btn-rounded:hover {
  background-color: #de4940;
  color: #fff;
}
.navbar-toggler {
  width: 26px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  margin-left: auto;
}
.navbar-toggler span {
  display: inline-block;
  width: 26px;
  height: 2px;
}
.navbar-toggler span:nth-of-type(2) {
  width: 20px;
}
.sidebar .cross-btn {
  position: absolute;
  right: -16px;
  top: 52px;
  display: none !important;
}
.sidebar-show .cross-btn {
  display: block !important;
}
.main-content .back-btn {
  position: absolute;
  left: -16px;
  top: 52px;
}

/*
  Sidebar Style
*/

/*
  Customers
*/

.main-content {
  padding: 54px 50px;
  width: 100%;
  position: relative;
}
.app-heading {
  font-size: 24px;
  color: #434343;
  font-weight: 300;
  margin-bottom: 0;
  font-family: "Roboto";
  line-height: 30px;
  word-break: break-word;
}
.app-heading-medium {
  font-size: 20px;
  color: #434343;
  font-weight: normal;
  font-family: "Roboto";
}
.app-paragraph {
  font-size: 12px;
  color: #a4a4a4;
  line-height: 16px;
  font-weight: normal;
  word-break: break-word;
}
.form-group {
  position: relative;
}
.search-group {
  min-width: 140px;
  display: inline-block;
}
.search-group .form-control {
  color: #434343;
  font-size: 12px;
  font-weight: normal;
  border: none;
  border-bottom: 1px solid #bebebe;
  background-color: #fef6f6;
  border-radius: 0;
  padding: 8px 8px 8px 22px;
}
.search-group .icon-search {
  position: absolute;
  left: 0;
  top: 9px;
  color: #bebebe;
  font-size: 13px;
}
.search-group .form-control::-webkit-input-placeholder {
  color: #bebebe;
}
.search-group .form-control:-ms-input-placeholder {
  color: #bebebe;
}
.search-group .form-control::placeholder {
  color: #bebebe;
}
.app-table {
  min-width: 800px;
}
.app-table thead th,
.app-table tbody td {
  border-top: 0;
  vertical-align: middle;
  padding: 10px 16px;
  border: 5px solid transparent;
}
.app-table thead tr th {
  color: #434343;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 0;
}
.app-table tbody tr td {
  color: #434343;
  font-weight: normal;
  font-size: 12px;
}
.app-table tbody tr td:first-child {
  border-radius: 10px 0px 0px 10px;
}
.app-table tbody tr td:last-child {
  border-radius: 0px 10px 10px 0px;
}
.app-table th .icon-caret-down,
.app-table th .icon-caret-up {
  margin-left: 12px;
  color: #000;
  font-size: 10px;
}
.user-profile-customer .user-img {
  width: 32px;
  height: 32px;
  min-width: 32px;
}
.user-profile-customer .user-name {
  color: #434343;
  font-size: 14px;
}
.app-table tbody tr td small {
  font-weight: 700;
  font-size: 10px;
  vertical-align: top;
}
.app-table tbody tr.table-row:hover {
  background-color: #f2594f;
  color: #fff;
}
.app-table tbody tr.table-row:hover td {
  cursor: pointer;
}
.app-table tbody tr.table-row:hover td,
.app-table tbody tr.table-row:hover td .user-profile-customer .user-name {
  color: #fff;
}
.close-circle,
.plus-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 12px;
  color: #fff;
  border: none;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
}
.plus-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 55;
  margin-right: 0;
}
.remove-customer {
  cursor: pointer;
  width: 28px;
  height: 28px;
  min-width: 28px;
  color: #fff;
  font-size: 12px;
  margin-bottom: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 12px;
  background-color: #f2594f;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.app-table tbody tr.table-row:hover .remove-customer,
.app-table tbody tr.table-row:hover .remove-customer:hover {
  color: #8e91a0;
  background-color: #fff;
}
.remove-customer .lds-spinner {
  padding-top: 2px;
  padding-left: 0;
}
.remove-customer .lds-spinner div:after {
  width: 2px;
  height: 6px;
}
.app-table tbody tr.table-row:hover .remove-customer .lds-spinner div:after {
  background-color: #8e91a0;
}
/*
  Customers
*/

/*
  Profile
*/

.profile-top {
  margin-bottom: 32px;
  position: relative;
}
.user-profile-lg .user-img {
  width: 70px;
  height: 70px;
  min-width: 70px;
}

.profile-top-col {
  position: relative;
  margin-top: 32px;
}
.profile-list li {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #a4a4a4;
  margin-bottom: 12px;
}
.profile-list li:last-child {
  margin-bottom: 0;
}
.profile-list li i {
  font-size: 14px;
  margin-right: 14px;
}
.profile-list li .datepicker-group .red-circle {
  display: none;
}
.digit-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  color: #fff;
  font-size: 9px;
}
.profile-top .digit-box:hover,
.profile-top .digit-box:focus {
  color: #fff;
}
.view-list li {
  position: relative;
  padding-left: 12px;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
}
.view-list li a {
  font-size: 10px;
  color: #a4a4a4;
  font-weight: normal;
}
.view-list li:before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #8e91a0;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
  display: inline-block;
}
.attachment-block {
  display: flex;
  align-items: center;
}
.attachment-block .attachment-inner {
  display: flex;
  align-items: center;
}
.attachment-box {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 12px;
  margin-top: 6px;
  margin-bottom: 6px;
  background-color: #fff;
}
.formAdd-block .attachment-box {
  font-size: 15px;
}
.app-dropdown .btn,
.app-dropdown .btn-primary.dropdown-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  color: #8e91a0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  border: none;
  background-color: #fff;
}
.app-dropdown .btn:after {
  content: none;
}
.app-dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 0;
  border: none;
  left: 41px !important;
  min-width: 128px;
  transform: translate3d(0px, 0px, 0px) !important;
  top: -20px !important;
}
.app-dropdown .dropdown-item {
  font-size: 11px;
  color: #434343;
  font-weight: normal;
  padding: 8px 12px;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.app-dropdown .dropdown-item i {
  font-size: 12px;
  margin-right: 10px;
}
.app-dropdown .dropdown-item:hover {
  background-color: #f2594f;
  color: #fff;
}
.app-dropdown .dropdown-menu .dropdown-item:first-child {
  border-radius: 10px 10px 0px 0px;
}
.app-dropdown .dropdown-menu .dropdown-item:last-child {
  border-radius: 0px 0px 10px 10px;
}
.app-dropdown .dropdown-toggle:hover,
.app-dropdown .dropdown-toggle:focus,
.app-dropdown .dropdown-toggle:active,
.app-dropdown.show .dropdown-toggle:active {
  background-color: #f2594f !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
  outline: none;
}
.custom-file-upload,
.remove-treatment {
  cursor: pointer;
  width: 28px;
  height: 28px;
  min-width: 28px;
  color: #8e91a0;
  font-size: 12px;
  margin-bottom: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 12px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.custom-file-upload:hover,
.remove-treatment:hover {
  background-color: #f2594f;
  color: #fff;
}
.custom-file-upload input {
  display: none;
}
.remove-customer .icon-plus,
.remove-treatment .icon-plus {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.profile-table tbody tr td {
  font-size: 14px;
}
.profile-table .digit-box {
  font-size: 11px;
}
.popover-body .lds-spinner {
  padding-left: 3px;
  padding-top: 5px;
}
/*
  Profile
*/

/*
  Treatment Detail
*/

.treatmentDetail-row {
  margin-top: 50px;
}
.form-group-app {
  margin-bottom: 22px;
}

.form-group-table {
  margin-left: 6px;
  margin-right: 6px;
  margin-top: 2px;
  margin-bottom: 2px;
}
.form-group-table .form-control {
  border: none;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
  height: calc(1.22em + 0.78rem + 2px);
  min-height: 34px;
  font-size: 13px;
  color: #434343;
}
.form-group-table .form-control::-webkit-input-placeholder {
  color: #8e91a0;
}
.form-group-table .form-control:-ms-input-placeholder {
  color: #8e91a0;
}
.form-group-table .form-control::placeholder {
  color: #8e91a0;
}
.block-label {
  color: #434343;
  font-size: 12px;
  font-family: "Roboto";
  font-weight: normal;
  margin-bottom: 6px;
  min-height: 22px;
}
.form-group-app .form-control {
  border: none;
  border-bottom: 1px solid #8e91a0;
  border-radius: 0;
  background-color: transparent;
  padding: 5px 0;
  height: calc(1.22em + 0.78rem + 2px);
  min-height: 34px;
  font-size: 13px;
  color: #434343;
}
.form-group-app .form-control::-webkit-input-placeholder {
  color: #8e91a0;
}
.form-group-app .form-control:-ms-input-placeholder {
  color: #8e91a0;
}
.form-group-app .form-control::placeholder {
  color: #8e91a0;
}
.fg-app-area .form-control {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  min-height: 80px;
  margin-top: 28px;
  padding: 15px;
}
.row-space-ten {
  margin-left: -10px;
  margin-right: -10px;
}
.row-space-ten .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}
input[type="date"]::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
}
.row-max-width {
  max-width: 84%;
}
.treatmentDetail-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.treatmentDetail-list li a {
  color: #8e91a0;
  font-size: 13px;
  margin-right: 16px;
  margin-bottom: 6px;
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
  line-height: 16px;
  min-width: 48px;
  text-align: center;
}
.treatmentDetail-list li a:hover,
.treatmentDetail-list li a:focus,
.treatmentDetail-list li a.active {
  background-color: #f2594f;
  color: #fff;
}
.treatmentDetail-list li:last-child a {
  margin-right: 0;
}
.treatmentDetail-block {
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
}
.treatmentDetail-block .block-label {
  margin-bottom: 10px;
}
.treatmentDetail-block .app-heading-medium {
  margin-bottom: 18px;
}
.treatmentDetail-acne .treatmentDetail-list li a {
  min-width: 30px;
}
.treatmentDetail-acne .form-group .block-label {
  margin-bottom: 0;
  font-size: 11px;
}
.treatment-edit-box {
  width: 380px;
  margin-left: auto;
  text-align: center;
  z-index: 5;
}
.treatment-edit-box .treatment-edit-img {
  width: 380px;
  height: 380px;
  min-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
  border: 10px solid #fff;
  margin-left: auto;
  margin-right: auto;
}
.treatment-edit-box .treatment-edit-img img {
  width: 100%;
  object-fit: cover;
}
.treatment-edit-options {
  margin-top: 32px;
  background-color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  max-width: 310px;
  width: 100%;
  flex-wrap: wrap;
}
.treatment-edit-options .options-box .te-option-text {
  color: #434343;
  text-align: left;
  font-size: 11px;
  font-weight: normal;
  font-family: "Roboto";
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.treatment-edit-options .options-box .te-option-digit {
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 1px;
  text-indent: -999px;
  overflow: hidden;
  display: inline-block;
}

/* "#FF0000",
  "#800000",
  "#FFFF00",
  "#808000",
  "#00FF00",
  "#008000",
  "#00FFFF",
  "#008080",
  "#0000FF",
  "#FF00FF",
  "#800080" */

.treatment-edit-options .options-box-1 .te-option-digit {
  background-color: #ff0000;
}
.treatment-edit-options .options-box-2 .te-option-digit {
  background-color: #800000;
}
.treatment-edit-options .options-box-3 .te-option-digit {
  background-color: #ffff00;
}
.treatment-edit-options .options-box-4 .te-option-digit {
  background-color: #808000;
}
.treatment-edit-options .options-box-5 .te-option-digit {
  background-color: #00ff00;
}
.treatment-edit-options .options-box-6 .te-option-digit {
  background-color: #008000;
}
.treatment-edit-options .options-box-7 .te-option-digit {
  background-color: #00ffff;
}
.treatment-edit-options .options-box-8 .te-option-digit {
  background-color: #008080;
}
.treatment-edit-options .options-box-9 .te-option-digit {
  background-color: #0000ff;
}
.treatment-edit-options .options-box-10 .te-option-digit {
  background-color: #ff00ff;
}
.treatment-edit-options .options-box-11 .te-option-digit {
  background-color: #800080;
}
.treatment-edit-options .options-box-size .te-option-digit {
  background-color: #222222;
  margin-top: 0;
}
.treatment-edit-options .options-box {
  display: flex;
  cursor: pointer;
  margin-top: 3px;
  margin-bottom: 3px;
  padding-left: 4px;
  padding-right: 4px;
  width: 33.33%;
}
.treatment-edit-box .digit-box {
  position: absolute;
  right: 0px;
  top: 22px;
}
.treatment-size-option,
.treatment-size-option .options-box-size {
  align-items: center;
}
.treatment-size-option .options-box-size {
  margin-top: 0;
  margin-bottom: 0;
  padding: 3px 5px;
  min-height: 28px;
  border-radius: 8px;
}
.treatment-size-option .options-box-size.active {
  background-color: #ffc8b1;
}
.treatment-size-option .options-box-size:first-child .te-option-digit {
  width: 14px;
  height: 14px;
  min-width: 14px;
}
.treatment-size-option .options-box-size:nth-of-type(2) .te-option-digit {
  width: 18px;
  height: 18px;
  min-width: 18px;
}
.treatment-size-option .options-box-size:last-child .te-option-digit {
  width: 22px;
  height: 22px;
  min-width: 22px;
}
.pda-btns-canvas {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* .treatmentPro-home .table-responsive-set,
.treatmentPro-plans .table-responsive-set {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
} */
.treatment-table {
  margin-top: 22px;
  margin-bottom: 0;
  min-width: 800px;
}
.treatment-table thead th,
.treatment-table tbody td {
  font-size: 12px;
  color: #434343;
  font-family: "Roboto";
  border-bottom: 0;
  border-right: 1px solid #bebebe;
  padding: 2px 0;
  vertical-align: middle;
}
.treatment-table thead th {
  text-align: center;
  border-top: 0;
  padding: 10px 0;
}
.treatment-table thead tr th:last-child,
.treatment-table tbody tr td:last-child {
  border-right: 0;
}
.treatment-table thead tr:last-child th,
.treatment-table tbody tr:last-child td {
  border-bottom: 1px solid #bebebe;
}
.treatment-program {
  margin-top: 14px;
  display: inline-block;
  width: 100%;
  margin-bottom: 42px;
}
.treatmentPro-home .treatment-table thead th,
.treatmentPro-home .treatment-table tbody td,
.treatmentPro-plans .treatment-table thead th:last-child,
.treatmentPro-plans .treatment-table tbody td:last-child {
  width: 20%;
}
.treatmentPro-recommend .treatment-table thead th:first-child,
.treatmentPro-recommend .treatment-table thead th:nth-of-type(3),
.treatmentPro-recommend .treatment-table tbody td:first-child,
.treatmentPro-recommend .treatment-table tbody td:nth-of-type(3),
.treatmentPro-plans .treatment-table thead th:first-child,
.treatmentPro-plans .treatment-table tbody td:first-child {
  width: 14%;
}
.treatmentPro-recommend .treatment-table thead th:nth-of-type(2),
.treatmentPro-recommend .treatment-table thead th:last-child,
.treatmentPro-recommend .treatment-table tbody td:nth-of-type(2),
.treatmentPro-recommend .treatment-table tbody td:last-child {
  width: 36%;
}
.treatmentPro-plans .treatment-table thead th:nth-of-type(2),
.treatmentPro-plans .treatment-table tbody td:nth-of-type(2) {
  width: 66%;
}
.treatmentPro-plans .treatment-table tbody td:first-child {
  text-align: center;
}
.treatmentEdit-off:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
}
.treatmentDetail-objectives {
  margin-top: 14px;
  color: #434343;
  font-size: 14px;
}
.checkbox-box {
  display: block;
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  cursor: pointer;
  font-size: 14px;
  color: #434343;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-box .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 13px;
  width: 13px;
  border: 1px solid #8e91a0;
  border-radius: 3px;
}
.checkbox-box .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-box input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-box .checkmark:after {
  left: 4px;
  top: 2px;
  width: 4px;
  height: 6px;
  border: solid #8e91a0;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.fg-app-field .form-control {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  min-height: 32px;
  margin-top: 20px;
  padding: 15px;
}
.fg-field-family .form-control {
  font-family: "Homemade Apple", cursive;
  padding: 5px 10px;
  line-height: 18px;
  display: flex;
  height: auto;
}
.treatmentPro-recommend .treatment-table thead th {
  border-right: 0;
}

/*
  Treatment Detail
*/

/*
  Modal Style
*/

.app-modal .modal-content {
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.app-modal .modal-body {
  padding: 50px 50px 10px 50px;
  min-height: 400px;
}
.app-modal .modal-canvas {
  background-color: #fff;
  border-radius: 20px;
  padding: 48px 24px;
}
.app-modal .close-circle {
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  color: #f2594f;
  font-size: 14px;
}
.app-modal .close-circle:hover,
.app-modal .close-circle:focus,
.app-modal .close-circle:active,
.app-modal .close-circle:focus:active {
  background-color: #f2594f;
  color: #fff;
  box-shadow: none !important;
}
.addCustomer-btn {
  background-color: #f2594f;
  border-color: #f2594f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  padding: 7px 16px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}
.addCustomer-btn .lds-spinner {
  padding: 0;
  margin-left: 6px;
  top: 1px;
}
.addCustomer-btn:not(:disabled):not(.disabled):active:focus,
.addCustomer-btn:not(:disabled):not(.disabled):active,
.addCustomer-btn:hover,
.addCustomer-btn:focus,
.addCustomer-btn:active {
  background-color: #de4940;
  border-color: #de4940;
  color: #fff;
  box-shadow: none;
  outline: none;
}
.addCustomer-btn:disabled {
  cursor: not-allowed;
  background-color: #8e91a0;
  border-color: #8e91a0;
  color: #e6e6e6;
}
.exclamation-mark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 1px solid #fef6f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  color: #fff;
  font-size: 11px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.exclamation-mark-sm {
  width: 14px;
  height: 14px;
  font-size: 6px;
  min-width: 14px;
}
.customer-profile .exclamation-mark {
  position: initial;
  background-color: #8e91a0;
  margin-right: 5px;
}
.customer-profile .user-profile {
  flex: 1;
}
.customer-profile .profile-top-col {
  flex: 1;
  margin-right: 0;
}
.modal-group {
  width: 100%;
}
.modal-group .form-control {
  color: #434343;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  padding: 5px 0;
  font-size: 11px;
  height: auto;
  line-height: 19px;
}
.modal-group .form-control::-webkit-input-placeholder {
  color: #bebebe;
}
.modal-group .form-control:-ms-input-placeholder {
  color: #bebebe;
}
.modal-group .form-control::placeholder {
  color: #bebebe;
}
.modalGroup-name .form-control {
  font-size: 24px;
  font-weight: 300;
  font-family: "Roboto";
  line-height: 25px;
  height: calc(1.25em + 0.75rem + 2px);
}
.modalGroup-list .form-control {
  height: calc(0.75em + 0.75rem + 2px);
  line-height: 18px;
  padding: 2px 0;
}
.profile-list .react-datepicker-wrapper input[type="text"] {
  color: #434343;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  font-size: 11px;
  height: calc(0.75em + 0.75rem + 2px);
  line-height: 18px;
  padding: 2px 0;
}
.customer-img-upload {
  width: 70px;
  height: 70px;
  min-width: 70px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -khtml-border-radius: 50%;
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.customer-img-upload i {
  color: #fff;
  font-size: 18px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customer-img-upload input {
  display: none;
}
.customer-complete .modal-group .form-control {
  color: #a4a4a4;
}
.customer-complete .modalGroup-name .form-control {
  color: #434343;
}
.customer-complete .exclamation-mark {
  background-color: #f2594f;
}
.addCustomer-btn-complete {
  background-color: #f2594f;
  border-color: #f2594f;
  color: #fff;
}
.addCustomer-btn-complete:not(:disabled):not(.disabled):active:focus,
.addCustomer-btn-complete:not(:disabled):not(.disabled):active,
.addCustomer-btn-complete:hover,
.addCustomer-btn-complete:focus,
.addCustomer-btn-complete:active {
  background-color: #de4940;
  border-color: #de4940;
  color: #fff;
}

.treatment-dropdown {
  position: relative;
  display: inline-flex;
  box-shadow: none;
  cursor: pointer;
  min-width: 140px;
  margin-bottom: 20px;
}
.treatment-dropdown .dropdown-toggle {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  margin-left: 10px;
  margin-top: 2px;
  cursor: pointer;
  box-shadow: none;
  border: none;
  font-size: 10px;
}
.treatment-dropdown .dropdown-toggle:after {
  content: none;
}
.treatment-dropdown .dropdown-toggle:hover,
.treatment-dropdown .dropdown-toggle:focus,
.treatment-dropdown .dropdown-toggle:focus:active {
  background-color: #de4940 !important;
  border-color: #de4940 !important;
  box-shadow: none !important;
  outline: none !important;
}
.treatment-dropdown .form-control {
  color: #434343;
  font-size: 11px;
  font-weight: normal;
  border-top: none;
  border-left: none;
  border-right: none;
  line-height: 15px;
  border-bottom: 1px solid #bebebe;
  border-radius: 0;
  background-color: transparent;
  padding: 2px 0;
  height: calc(0.75em + 0.75rem + 2px);
  width: 100%;
}
.treatment-dropdown .form-control::-webkit-input-placeholder {
  color: #bebebe;
}
.treatment-dropdown .form-control:-ms-input-placeholder {
  color: #bebebe;
}
.treatment-dropdown .form-control::placeholder {
  color: #bebebe;
}
.treatment-dropdown .dropdown-menu {
  left: 0 !important;
  top: 28px !important;
  transform: none !important;
  background-color: transparent;
  border: none;
  margin: 0;
  border-radius: 0px 0px 14px 14px;
  max-width: 200px;
  max-height: 174px;
  box-shadow: none;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}
.treatment-dropdown .dropdown-item {
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  padding: 6px 15px;
  background-color: #f2594f;
  word-break: break-word;
  white-space: normal;
}
.treatment-dropdown .dropdown-item:hover {
  background-color: #de4940;
}
.treatment-dropdown .dropdown-menu .dropdown-item:last-child {
  border-radius: 0px 0px 10px 10px;
}
.profile-modal-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.profile-modal-row label,
.profile-modal-row span {
  color: #434343;
  font-size: 12px;
  font-weight: normal;
}
.profile-modal-row .datepicker-group .red-circle {
  width: 18px;
  height: 18px;
  min-width: 18px;
  font-size: 10px;
  right: 0;
}
.profile-modal-row .datepicker-group .red-circle .icon-arrow-down {
  color: #fff;
}
.profile-modal-row .react-datepicker-wrapper input[type="text"] {
  background-color: transparent;
  padding: 2px 0;
  width: 100%;
  border-radius: 0;
  line-height: 15px;
  border-bottom: 1px solid #bebebe;
  color: #434343;
  height: calc(0.75em + 0.75rem + 2px);
  font-size: 11px;
}
.profileRow-date .datepicker-group .red-circle {
  display: none;
}
.profileRow-date .datepicker-group {
  width: auto;
}
.profile-modal-row label {
  margin-right: 18px;
  white-space: nowrap;
}
.profile-modal-row .custom-file-upload {
  background-color: #f2594f;
  color: #fff;
  margin-right: 0;
}
.profile-modal-row .custom-file-upload:hover,
.profile-modal-row .custom-file-upload:focus,
.profile-modal-row .custom-file-upload:active {
  background-color: #de4940;
  color: #fff;
}
.profile-modal-row .app-dropdown .dropdown-toggle {
  background-color: #bebebe;
  color: #fff;
}
.profile-modal-row .app-dropdown .dropdown-item {
  background-color: #f2594f;
  color: #fff;
}
.profile-modal-row .app-dropdown .dropdown-item:hover {
  background-color: #de4940;
}
.profileRow-date .modal-group {
  width: auto;
}
.profileRow-date .modal-group .form-control {
  border: none;
  color: #434343;
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  line-height: 15px;
  border-bottom: 1px solid #bebebe;
}
.profileRow-date .modal-group .form-control::-webkit-input-placeholder {
  color: #bebebe;
}
.profileRow-date .modal-group .form-control:-ms-input-placeholder {
  color: #bebebe;
}
.profileRow-date .modal-group .form-control::placeholder {
  color: #bebebe;
}
.profileModal-main .user-profile {
  margin-bottom: 40px;
  padding-right: 0;
}
.profileModal-main .modal-canvas .profile-modal-row:last-child {
  margin-bottom: 0;
}
.profile-modal .modal-canvas {
  padding: 46px 32px;
}
.app-modal .modal-body::-webkit-scrollbar {
  width: 5px;
}
.profileRow-opt > label {
  min-width: 44px;
}
.profile-modal-set .modal-body {
  min-height: 100px;
}

/*
  Modal Style
*/

/*
  Setting Style
*/

.setting-content .app-heading-medium {
  margin-bottom: 32px;
}
.settings-block {
  margin-bottom: 48px;
}
.settings-block h6 {
  font-size: 18px;
  color: #434343;
  font-weight: 700;
  font-family: "Roboto";
}
.react-tagsinput {
  background-color: #fef6f6 !important;
  border: 1px solid #fef6f6 !important;
  border-radius: 22px;
  margin-bottom: 8px;
}
.react-tagsinput .react-tagsinput-tag {
  background-color: #f2594f;
  border: 1px solid #f2594f;
  color: white;
  border-radius: 14px;
  font-size: 12px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
}
.react-tagsinput .react-tagsinput-remove {
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 10px;
  margin-left: 10px;
}
.react-tagsinput .react-tagsinput-remove:before {
  line-height: 11px;
}
.react-tagsinput .react-tagsinput-input {
  color: #434343;
  font-size: 12px;
}
.react-tagsinput .react-tagsinput-input::-webkit-input-placeholder {
  color: #434343;
}
.react-tagsinput .react-tagsinput-input:-ms-input-placeholder {
  color: #434343;
}
.react-tagsinput .react-tagsinput-input::placeholder {
  color: #434343;
}

/*
  Setting Style
*/

/*
  Custom Style
*/

div.css-1hb7zxy-IndicatorsContainer > span {
  display: none;
}

div.css-yk16xz-control,
div.css-1pahdxg-control {
  border-radius: 10px;
  border: none;
  box-shadow: none;
}
.css-1wa3eu0-placeholder {
  font-size: 13px;
  color: #8e91a0 !important;
}
.css-1hwfws3 {
  padding: 2px 10px !important;
}
.css-1hwfws3 {
  padding-right: 0 !important;
}
.css-tlfecz-indicatorContainer,
.css-1gtu0rj-indicatorContainer {
  padding: 8px 3px !important;
}
.css-1hb7zxy-IndicatorsContainer {
  padding-right: 6px !important;
}
.css-26l3qy-menu {
  border-radius: 10px !important;
  border: none !important;
  box-shadow: 0px 1px 2px rgba(34, 39, 44, 0.1) !important;
  z-index: 55 !important;
}
.css-1uccc91-singleValue {
  font-size: 13px;
  color: #434343;
}
.css-9gakcf-option {
  font-size: 13px !important;
  color: #8e91a0 !important;
  word-break: break-word;
  background-color: #deebff !important;
}
.css-12jo7m5 {
  font-size: 13px !important;
  padding-left: 8px !important;
  line-height: 18px !important;
}
.css-1rhbuit-multiValue {
  border-radius: 10px !important;
}
.css-4ljt47-MenuList {
  overflow-x: hidden;
}
.css-gg45go-NoOptionsMessage {
  font-size: 13px !important;
  color: #8e91a0 !important;
}
.css-yt9ioa-option,
.css-1n7v3ny-option,
.css-165luzk-option,
.css-19jh2ze-option {
  font-size: 13px !important;
  color: #8e91a0 !important;
  word-break: break-word;
}
.css-yt9ioa-option:focus,
.css-1n7v3ny-option:focus,
.css-165luzk-option:focus,
.css-19jh2ze-option:focus {
  outline: none !important;
}
.css-4ljt47-MenuList::-webkit-scrollbar {
  width: 5px;
}
.css-4ljt47-MenuList::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.css-4ljt47-MenuList::-webkit-scrollbar-thumb {
  background: #e44d43;
  border-radius: 10px;
}
.css-1pahdxg-control:hover {
  border-color: white !important;
}
.css-1hwfws3 > div {
  border-radius: 22px !important;
}
.css-1hwfws3 .css-1wa3eu0-placeholder {
  background-color: transparent;
}
.css-1hwfws3 .css-b8ldur-Input {
  line-height: 18px;
  background-color: transparent;
}
.css-12jo7m5 {
  color: #fff !important;
  font-size: 13px !important;
}
div.css-tlfecz-indicatorContainer > svg.css-6q0nyr-Svg,
div.css-1gtu0rj-indicatorContainer > svg.css-6q0nyr-Svg {
  background: #f2594f;
  border-radius: 22px;
  color: white;
}
.css-a25fsq-multiValue svg.css-6q0nyr-Svg {
  border-radius: 22px;
  color: white;
  width: 16px;
  height: 16px;
}
.css-xb97g8 {
  border-radius: 22px !important;
  cursor: pointer;
}
.css-xb97g8:hover {
  background: transparent !important;
}
/* div.css-1rhbuit-multiValue,
div.css-12jo7m5 {
  background-color: #f2594f;
  border-radius: 22px;
  color: white;
} */
.save-button {
  width: auto;
  height: 36px;
  background-color: #f2594f;
  border-radius: 8px;
  color: white;
  border: none;
}
.save-button:disabled {
  cursor: not-allowed;
  background-color: #8e91a0;
  border-color: #8e91a0;
  color: #e6e6e6;
}
.save-button:hover,
.save-button:focus,
.save-button:active {
  background-color: #de4940;
}
.save-button .lds-spinner {
  padding-top: 4px;
}
.print-button {
  font-size: 13px;
  height: 30px;
  padding: 5px 10px;
  margin-top: 10px;
}
.addPadding4px {
  padding-left: 4px;
  padding-bottom: 4px;
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  box-shadow: none !important;
}
.profile-info-allergy {
  color: #434343;
  font-size: 14px;
  margin: 0px 0px 0px 0px;
  font-weight: 700;
  word-break: break-word;
}
.react-datepicker-wrapper input[type="text"] {
  font-size: 13px;
  color: #8e91a0;
  border-radius: 10px;
  background-color: #fff;
  border: none;
  padding: 8px 32px 8px 12px;
  width: 100%;
  height: 36px;
}
.react-datepicker-wrapper {
  width: 100%;
}
.red-circle {
  background-color: #f2594f;
  border-radius: 22px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.datepicker-group {
  position: relative;
  width: 100%;
}
.datepicker-group .red-circle {
  position: absolute;
  right: 9px;
  top: 7px;
  z-index: 5;
  pointer-events: none;
}
.datepicker-group .red-circle i {
  margin-left: 1px;
}
.react-datepicker {
  border-radius: 10px !important;
  border: none !important;
  box-shadow: 0px 1px 2px rgba(34, 39, 44, 0.1) !important;
  font-family: "Inter UI" !important;
}
.react-datepicker__header {
  background-color: #fff !important;
  border-radius: 10px 10px 0px 0px !important;
}
.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  border-radius: 50% !important;
}
.react-datepicker__day--selected {
  background-color: #f2594f !important;
  outline: none !important;
}
.react-datepicker-popper {
  z-index: 55 !important;
}
.attachment-off {
  position: relative;
  border-radius: 50%;
}
.attachment-cross {
  width: 14px;
  height: 14px;
  min-width: 14px;
  background-color: #f2594f;
  color: #fff;
  font-size: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.attachment-cross i {
  position: absolute;
  top: 4px;
  right: 4px;
}
.attachment-off .attachment-cross {
  position: absolute;
  right: 8px;
  top: -4px;
}
.attachment-off .attachment-cross {
  display: none;
}
.attachment-off:hover .attachment-cross {
  display: flex;
}
.popover-custom {
  border: none;
  border-radius: 10px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}
.popover-custom .popover-header {
  background-color: #f2594f;
  max-width: 190px;
  padding: 20px 18px;
  text-align: center;
  box-shadow: none;
  border: none;
  border-radius: 10px 10px 0px 0px;
}
.popover-custom .popover-header h4 {
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  margin-bottom: 0;
}
.popover-custom .arrow::after {
  border-left-color: #f2594f;
}
.popover-custom .popover-body button {
  background-color: #f2594f;
  border-color: #f2594f;
  width: 100%;
  font-size: 14px;
}
.popover-custom .popover-body button:not(:disabled):not(.disabled):active,
.popover-custom .popover-body button:not(:disabled):not(.disabled):active:focus,
.popover-custom .popover-body button:hover,
.popover-custom .popover-body button:focus {
  background-color: #de4940;
  border-color: #de4940;
  color: #fff;
  box-shadow: none;
}
.st-block .st-block-inner {
  margin-right: 14px;
}

/*
  Custom Style
*/

/*
SIGN IN & SIGN UP
*/
.app__logo {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  height: 90px;
  width: 90px;
}
.form--page {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.app--canvas {
  background-color: #fff;
  padding: 60px;
  margin-top: 50px;
  box-shadow: 0px 4px 34px rgba(34, 39, 44, 0.1);
  border-radius: 14px;
  max-width: 770px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.app__heading {
  font-size: 32px;
  font-weight: 700;
  color: #22272c;
  margin-bottom: 0;
}
.form--content {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 480px;
}
.form--main {
  margin-top: 46px;
}
.fields--group {
  position: relative;
  margin-bottom: 22px;
}
.fields--group .form-control {
  background-color: #f6f6f7;
  border: none;
  border-radius: 8px;
  height: auto;
  padding: 16px 34px 16px 50px;
  font-size: 14px;
  color: #4d555c;
  min-height: 54px;
  font-weight: 500;
}
.fields--group i {
  position: absolute;
  left: 16px;
  top: 18px;
  color: #d5d5d7;
  font-size: 18px;
}
.fields--group .error__msg {
  position: absolute;
  top: 54px;
  right: 0;
  font-size: 12px;
  color: #f2594f;
}
.fields--group .error {
  border: 1.5px solid #f2594f;
}
.forgot--pass {
  margin-top: auto;
}
.forgotPass__link {
  display: inline-block;
  color: #22272c;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.forgotPass__link:hover {
  color: #22272c;
}
.form--btn--canvas {
  width: 100%;
  max-width: 328px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 46px;
  margin-bottom: 66px;
}
.btn__form {
  background-color: #f2594f;
  border: 1px solid #f2594f;
  color: #fff;
  border-radius: 14px;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 14px;
  min-height: 54px;
}
.btn__form:hover,
.btn__form:active,
.btn__form:focus {
  background-color: #de4940 !important;
  border-color: #de4940 !important;
}
.btn__form:disabled {
  background-color: #f2594f !important;
  border-color: #f2594f !important;
  cursor: wait;
}
.btn__form .lds-spinner {
  padding-top: 4px;
  padding-left: 4px;
}
.account__option {
  text-align: center;
  color: #282a41;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0;
}
.account__option__link {
  color: #282a41;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  display: inline-block;
}
.account__option__link:hover {
  color: #282a41;
  text-decoration: none;
}
.row--space--11 {
  margin-left: -11px;
  margin-right: -11px;
}
.row--space--11 .col-12 {
  padding-left: 11px;
  padding-right: 11px;
}
.forgotPassword__logo--canvas {
  width: 100%;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
  position: relative;
}
.back__link:not([href]),
.back__link {
  color: #22272c;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 22px;
  display: inline-block;
}
.back__link i {
  font-size: 12px;
  margin-right: 2px;
}
/*
SIGN IN & SIGN UP
*/

/*
  Media Queries
*/

@media (min-width: 576px) {
  .app-modal .modal-dialog {
    max-width: 720px;
  }
  .profile-modal .modal-dialog {
    max-width: 550px;
  }
}
@media screen and (min-width: 768px) {
  .profile-top-col:before {
    content: "";
    width: 1px;
    height: 36px;
    background-color: #e6e6e6;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .profile-top-col {
    margin-top: 0;
    padding-left: 32px;
    margin-left: 32px;
    margin-right: 38px;
  }
  .cp-inner {
    padding-right: 20px;
  }
  .customer-profile .user-profile {
    padding-right: 10px;
  }
}
@media screen and (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .treatment-edit-box .treatment-edit-img {
    width: 280px;
    height: 280px;
    min-width: 280px;
  }
  .treatment-edit-box {
    margin-right: auto;
    margin-bottom: 32px;
  }
  .row-max-width {
    max-width: initial;
  }
}
@media screen and (max-width: 991px) {
  .main-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 24px;
  }
  .sidebar-canvas {
    margin-left: -240px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 5;
  }
  .main-content .back-btn {
    position: initial;
  }
  /* .app-modal .modal-dialog {
    margin-left: 8px;
    margin-right: 8px;
  } */
  .app-table thead th,
  .app-table tbody td {
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .profile-top .digit-box {
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .search-group {
    width: 100%;
  }
  .app-modal .close-circle {
    width: 30px;
    min-width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .app-modal .modal-body {
    padding: 12px 12px 10px 12px;
    min-height: 10px;
  }
  .modalGroup-list .form-control,
  .profile-list .react-datepicker-wrapper input[type="text"],
  .treatment-dropdown .form-control,
  .profile-modal-row .react-datepicker-wrapper input[type="text"] {
    height: auto;
    line-height: 20px;
  }
  .modalGroup-list .form-control,
  .profile-list .react-datepicker-wrapper input[type="text"],
  .treatment-dropdown .form-control,
  .profile-modal-row .react-datepicker-wrapper input[type="text"] {
    height: auto;
    line-height: 20px;
  }
}
.ant-notification {
  /* Make z-index greater than bootstrap modal (1050) */
  z-index: 2000 !important;
}
@media screen and (max-width: 575px) {
  .app__logo {
    width: 50px;
    height: 50px;
  }
  .app__heading {
    font-size: 24px;
  }
  .fields--group {
    margin-bottom: 16px;
  }
  .form--btn--canvas {
    max-width: 100%;
    max-width: 100%;
    margin-top: 58px;
    margin-bottom: 70px;
  }
  .signup--btn--canvas {
    margin-top: 30px;
  }
  .app--canvas {
    padding: 30px 20px 30px 20px;
    margin-top: 60px;
    box-shadow: none;
  }
  .form--main {
    margin-top: 32px;
  }
  .form--page {
    padding-bottom: 20px;
  }
  .form--btn--canvas {
    margin-bottom: 48px;
  }
  .forgotPassword--btn--canvas {
    margin-top: 16px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 480px) {
  .user-profile {
    flex-direction: column;
  }
  .app-table .user-profile {
    flex-direction: row;
  }
  .user-profile .user-img-canvas {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .app-table .user-profile .user-img-canvas {
    margin-right: 12px;
    margin-bottom: 0;
  }
  .profile-info-allergy {
    text-align: center;
  }
  .pda-btns-canvas {
    flex-direction: column;
  }
  .pda-btns-canvas .save-button {
    width: 100%;
    margin: 2px 0;
  }
  .treatment-edit-box {
    width: 100%;
  }
  .profile-top .digit-box {
    top: 70px;
  }
}
