* {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

html, body {
    overscroll-behavior: none;
}

html,
body {
  padding: 0px;
  margin: 0px;
  font-family: "Goldplay", sans-serif;
}

.dn {
  display: none;
}

/* radio */
/* The radio-container */
.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

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

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

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .radio-checkmark {
  background-color: #fff;
  border: 1px solid #40b2e6;
}

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

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

/* Style the indicator (dot/circle) */
.radio-container .radio-checkmark:after {
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #40b2e6;
}
/* radio */

/* checkbox */
/* Customize the label (the container) */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  padding-top: 5px;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-checkmark {
  position: absolute;
  top: 5px;
  left: 5px;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #40b2e6;
  border-radius: 5px;
}

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

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox-checkmark {
  background-color: #fff;
}

.checkbox-container input:indeterminate ~ .checkbox-checkmark {
  background-color: #fbc;
}

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

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox-checkmark:after {
  display: block;
}

.checkbox-container input:indeterminate ~ .checkbox-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkbox-checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #40b2e6;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* checkbox */

#header {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #dbdbdb;
  box-sizing: border-box;
  padding: 0px 50px;
}
#logo {
  height: 80px;
}
#side-bar {
  position: absolute;
  width: 200px;
  top: 120px;
  left: 0px;
  bottom: 0px;
}
#content {
  margin-left: 200px;
}
.content {
  margin-left: 200px;
}
.services-header {
  box-sizing: border-box;
  padding: 50px;
  position: relative;
}
.area-header {
  box-sizing: border-box;
  padding: 20px 50px;
}
.services-body {
  box-sizing: border-box;
  padding: 0px 50px;
  margin-top: -50px;
}
.services-breed-header {
  box-sizing: border-box;
}

.booking-content .services-header h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
}

#booking-summary-greeting {
  float: left;
}

.area-header h2 {
  font-weight: 500;
  font-size: 24px;
}

.service-button,
.service-button-edit {
  height: 30px;
  float: left;
  width: 100px;
  box-sizing: border-box;
  border: 1px solid #40b2e6;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  margin-right: 20px;
  cursor: pointer;
  color: #40b2e6;
  border-radius: 5px;
}

.service-button.active,
.service-button-edit.active {
  background: #40b2e6;
  color: #fff;
}

.services-type {
  margin-bottom: 50px;
}

input#promo-search,
input#service-search,
input#breed-search,
#service-in-breed-search,
#member-search,
#client-search,
#calendar-search {
  float: right;
  height: 30px;
  box-sizing: border-box;
  outline: none;
  padding: 0px 10px;
  width: 130px;
  font-style: italic;
  border: 0px solid;
  border-radius: 5px;
  box-shadow: inset 0px 0px 6px rgb(0 0 0 / 25%);
}

.simple-input {
  height: 30px;
  box-sizing: border-box;
  outline: none;
  padding: 0px 10px;
  font-style: italic;
  border: 0px solid;
  border-radius: 5px;
  box-shadow: inset 0px 0px 6px rgb(0 0 0 / 25%);
  width: 100%;
}

.service-type-cat {
  background: url("/images/cat_icon.png") center center no-repeat;
  background-size: 32px;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
}

.service-type-dog {
  background: url("/images/dog_icon.png") center center no-repeat;
  background-size: 32px;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
}

.promo-codes-edit-action,
.client-edit-action,
.services-edit-action,
.in-services-edit-action,
.breed-services-edit-action,
.member-edit-action,
.time-block-edit-action,
.news-edit-action,
.appointment-note-edit-action,
.role-edit-item,
.shift-edit-item,
.tier-edit-item,
.surcharge-edit-item,
.sa-edit-item {
  background: url("/images/edit_icon.png") center center no-repeat;
  background-size: 24px;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.member-assign-action {
  background: url("/images/assign_icon.png") center center no-repeat;
  background-size: 24px;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.promo-codes-delete-action,
.client-delete-action,
.postal-code-delete-action,
.services-delete-action,
.in-services-delete-action,
.breed-services-delete-action,
.member-delete-action,
.time-block-delete-action,
.news-delete-action,
.appointment-note-delete-action,
.role-delete-item,
.shift-delete-item,
.tier-delete-item,
.surcharge-delete-item,
.sa-delete-item {
  background: url("/images/delete_icon.png") center center no-repeat;
  background-size: 24px;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.services-table {
  clear: left;
  box-sizing: border-box;
  padding: 0px 50px;
  padding-top: 30px;
}

.services-breed-table {
  clear: left;
  box-sizing: border-box;
  padding-top: 30px;
}

.services-table-header {
  color: #b5b5b5;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #dbdbdb;
  height: 30px;
  line-height: 30px;
}

.services-table-header-column-1 {
  float: left;
  width: 40%;
  box-sizing: border-box;
  padding-left: 10px;
}

.services-table-header-column-2 {
  float: left;
  width: 20%;
  box-sizing: border-box;
  padding-left: 10px;
  text-align: center;
}

.services-table-content .services-table-header-column-2 {
  height: 40px;
}

.services-table-header-column-3 {
  float: left;
  width: 20%;
  box-sizing: border-box;
  padding-left: 10px;
  text-align: center;
}

.services-table-header-column-4 {
  float: left;
  width: 20%;
  box-sizing: border-box;
  padding-left: 10px;
  text-align: center;
}

.services-table-content .services-table-header-column-4 {
  height: 40px;
}

.breeds-table-header-column-1 {
  float: left;
  width: 80%;
  box-sizing: border-box;
  padding-left: 10px;
  text-align: left;
}

.breeds-table-header-column-2 {
  float: left;
  width: 20%;
  box-sizing: border-box;
  padding-left: 10px;
  text-align: center;
  height: 40px;
}

.breeds-table-header-column-1 * {
  float: left;
}

.services-table-row {
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #dbdbdb;
}

span.service-link,
span.breed-service-link {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

span.service-link:hover,
span.breed-service-link:hover {
  color: #40b2e6;
  text-decoration: underline;
}

.services-table-row > .services-table-header-column-3 {
  color: #919ba4;
}

.services-table-row:hover .promo-codes-edit-action,
.services-table-row:hover .client-edit-action,
.services-table-row:hover .member-edit-action,
.services-table-row:hover .time-block-edit-action,
.services-table-row:hover .news-edit-action,
.services-table-row:hover .appointment-note-edit-action,
.services-table-row:hover .breed-services-edit-action,
.services-table-row:hover .services-edit-action,
.services-table-row:hover .in-services-edit-action,
.services-table-row:hover .role-delete-item,
.services-table-row:hover .shift-delete-item,
.services-table-row:hover .tier-delete-item,
.services-table-row:hover .surcharge-delete-item,
.services-table-row:hover .sa-delete-item {
  display: inline-block;
}

.services-table-row:hover .promo-codes-delete-action,
.services-table-row:hover .client-delete-action,
.services-table-row:hover .postal-code-delete-action,
.services-table-row:hover .member-delete-action,
.services-table-row:hover .time-block-delete-action,
.services-table-row:hover .news-delete-action,
.services-table-row:hover .appointment-note-delete-action,
.services-table-row:hover .breed-services-delete-action,
.services-table-row:hover .services-delete-action,
.services-table-row:hover .in-services-delete-action,
.services-table-row:hover .role-edit-item,
.services-table-row:hover .shift-edit-item,
.services-table-row:hover .tier-edit-item,
.services-table-row:hover .surcharge-edit-item,
.services-table-row:hover .sa-edit-item {
  display: inline-block;
}

.services-table-row:hover .member-assign-action {
  display: inline-block;
}

.services-table-row:hover {
  background: #f6f6f6;
}
.add-calendar-option,
.add-new-service,
.add-new-breed,
.add-new-member,
.add-new-time-block,
.add-new-appointment-note,
.add-new-news,
.add-new-code {
  position: fixed;
  right: 50px;
  bottom: 50px;
  background: #40b2e6;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 32px;
  color: #fff;
  border-radius: 100%;
  cursor: pointer;
  z-index: 1;
}
.add-calendar-option {
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  z-index: 2;
}
.add-calendar-option.active {
  transform: rotate(45deg);
}
.services-back-button,
.appointment-back-button,
.time-slot-back-button,
.time-blocks-back-button,
.appointment-notes-back-button,
.dashboard-news-back-button,
.new-appointment-back-button,
.time-block-back-button,
.appointment-note-back-button,
.dashboard-new-back-button,
.area-back-button,
.pet-back-button,
.change-services-appointment-back-button,
.reschedule-appointment-back-button,
.appointment-complete-back-button {
  color: #40b2e6;
  font-size: 18px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  margin-top: -48px;
  margin-left: -35px;
}

.back-button {
  color: #40b2e6;
  font-size: 18px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  padding-right: 10px;

  display: inline!important;
}

.services-table.service-table-new {
  margin-top: -50px;
}

.add-service-header {
  color: #40b2e6;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 10px;
  clear: left;
}

input.add-service-input {
  height: 30px;
  box-sizing: border-box;
  outline: none;
  padding: 0px 10px;
  width: 50%;
  border: 0px solid;
  border-radius: 5px;
  box-shadow: inset 0px 0px 6px rgb(0 0 0 / 25%);
  margin-bottom: 20px;
}

textarea.add-service-textarea {
  height: 100px;
  box-sizing: border-box;
  outline: none !important;
  padding: 20px;
  width: 50%;
  border: 0px solid !important;
  resize: none;
  border-radius: 5px;
  box-shadow: inset 0px 0px 6px rgb(0 0 0 / 25%) !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

label.checkbox-container,
label.radio-container {
  float: left;
  margin-right: 30px;
}

.save-service-button,
.save-breed-service-button,
.save-member-button,
.save-time-block-button,
.save-appointment-note-button,
.save-dashboard-news-button,
.save-member-assign-button,
.prebook-button,
.edit-peyment-methods,
.save-password-button,
.save-client-button,
.save-pet-button,
.save-promo-code-button {
  background: #5ebc59;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.save-pet-button {
	float: left;
	margin-right: 15px;
}

.delete-pet-button{
	background: #e76c6c;
	color: #fff;
	height: 40px;
	width: 120px;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	border-radius: 10px;
	margin-top: 20px;
	margin-bottom: 50px;
	float: left;
}

.upload-appointment-images,
.upload-appointment-complete-images {
  background: #40b2e6;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  clear: left;
}

.save-member-assign-button {
  margin-bottom: 250px;
}

.add-service-row {
  clear: left;
}

.add-service-row span {
  font-size: 14px;
  color: #40b2e6;
  text-decoration: underline;
  padding-left: 10px;
  margin-top: 10px;
  display: block;
  cursor: pointer;
}

.add-role-row {
  clear: left;
}

.add-role-row span {
  font-size: 14px;
  color: #40b2e6;
  text-decoration: underline;
  padding-left: 10px;
  margin-top: 10px;
  display: block;
  cursor: pointer;
}

.add-tier-row {
  clear: left;
}

.add-tier-row span {
  font-size: 14px;
  color: #40b2e6;
  text-decoration: underline;
  padding-left: 10px;
  margin-top: 10px;
  display: block;
  cursor: pointer;
}

.add-surcharge-row {
  clear: left;
}

.add-surcharge-row span {
  font-size: 14px;
  color: #40b2e6;
  text-decoration: underline;
  padding-left: 10px;
  margin-top: 10px;
  display: block;
  cursor: pointer;
}

.add-shift-row {
  clear: left;
}

.add-shift-row span {
  font-size: 14px;
  color: #40b2e6;
  text-decoration: underline;
  padding-left: 10px;
  margin-top: 10px;
  display: block;
  cursor: pointer;
}

.add-breed-service-field {
  box-sizing: border-box;
  border: 10px solid #f6f6f6;

  display: none;
}

.add-sa-service-field {
  box-sizing: border-box;
  border: 10px solid #f6f6f6;

  display: none;
}

.add-tier-field {
  box-sizing: border-box;
  border: 10px solid #f6f6f6;

  display: none;
}

.add-surcharge-field {
  box-sizing: border-box;
  border: 10px solid #f6f6f6;

  display: none;
}

.fuel-surcharge {
  box-sizing: border-box;
  border: 10px solid #f6f6f6;
}

.add-shift-field {
  box-sizing: border-box;
  border: 10px solid #f6f6f6;

  display: none;
}

.simple-column {
  float: left;
  box-sizing: border-box;
  padding-left: 10px;
  text-align: left;
  max-height: 40px;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.w2 {
  width: 2% !important;
}
.w5 {
  width: 5% !important;
}
.w10 {
  width: 10% !important;
}
.w15 {
  width: 15% !important;
}
.w20 {
  width: 20% !important;
}
.w25 {
  width: 25% !important;
}
.w30 {
  width: 30% !important;
}
.w40 {
  width: 40% !important;
}
.w46 {
  width: 46% !important;
}
.w50 {
  width: 50% !important;
}
.w60 {
  width: 60% !important;
}
.w70 {
  width: 70% !important;
}
.w80 {
  width: 80% !important;
}
.w90 {
  width: 90% !important;
}
.w100 {
  width: 100% !important;
}

.h {
  height: 1px !important;
}

.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

input.breed-add-input {
  height: 30px;
  box-sizing: border-box;
  outline: none;
  padding: 0px 10px;
  width: 50%;
  border: 0px solid;
  border-radius: 5px;
  box-shadow: inset 0px 0px 6px rgb(0 0 0 / 25%);
}

.single-checkbox {
  width: 30px;
  margin: 0px auto !important;
  float: initial !important;
  padding-left: 10px;
}

.single-checkbox .checkbox-checkmark {
  top: 10px;
}
.single-checkbox-text {
  line-height: 30px;
  margin-bottom: 0px;
}

.single-checkbox-text .checkbox-checkmark {
  top: 10px;
}

.service-add-save-btn {
  background: #5ebc59;
  color: #fff;
  height: 30px;
  width: 100px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  float: right;
  margin-right: 10px;
}

.service-add-cancel-btn {
  background: #e76c6c;
  color: #fff;
  height: 30px;
  width: 100px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  float: right;
  margin-right: 10px;
}
.new-breed-header-nav {
  height: 60px;
}

.breed-service-select {
  height: 30px;
  box-sizing: border-box;
  outline: none;
  padding: 0px 10px;
  width: 30%;
  border: 0px solid;
  border-radius: 5px;
  margin-left: 10px;
  margin-top: 20px;
  box-shadow: inset 0px 0px 6px rgb(0 0 0 / 25%);
}

.cat-type-booking {
  display: none;
}
.cat-grooming-services {
  display: none;
}
.cat-additional-services {
  display: none;
}

select.simple-select {
  height: 30px;
  box-sizing: border-box;
  outline: none;
  padding: 0px 10px;
  width: 100%;
  border: 0px solid;
  border-radius: 5px;
  box-shadow: inset 0px 0px 6px rgb(0 0 0 / 25%);
  margin-bottom: 20px;
}

.price-service-header {
  font-size: 18px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
}

.pricing-breakdown {
  box-sizing: border-box;
  padding: 0px 20px;
}

.subtotal-row span {
  font-size: 18px;
  font-weight: 500;
}

.tax-row span {
  font-size: 18px;
  font-weight: 500;
}

.fuel-surcharge-row span {
  font-size: 18px;
  font-weight: 500;
}

.fuel-surcharge-row-admin span {
  font-size: 18px;
  font-weight: 500;
}

.discount-row span {
  font-size: 18px;
  font-weight: 500;
}

.total-row {
  color: red;
  height: 30px;
  line-height: 30px;
}

.total-row span {
  font-size: 18px;
  font-weight: 500;
}

.main-service-rows {
  box-sizing: border-box;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 500;
}

.additional-service-row {
  box-sizing: border-box;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 500;
  height: 30px;
  line-height: 30px;
}

.main-service-row div,
.main-service-row-admin div {
  float: right;
}

.main-service-row,
.main-service-row-admin {
  height: 30px;
  line-height: 30px;
}

.additional-service-row div {
  float: right;
}

.subtotal-row div {
  float: right;
  font-weight: 500;
}

.subtotal-row {
  height: 30px;
  line-height: 30px;
}

.tax-row div {
  float: right;
  font-weight: 500;
}

.fuel-surcharge-row div {
  float: right;
  font-weight: 500;
}

.fuel-surcharge-row-admin div {
  float: right;
  font-weight: 500;
}

.discount-row div {
  float: right;
  font-weight: 500;
}

.tax-row {
  height: 30px;
  line-height: 30px;
}

.fuel-surcharge-row {
  height: 30px;
  line-height: 30px;
}

.fuel-surcharge-row-admin {
  height: 30px;
  line-height: 30px;
}

.discount-row {
  height: 30px;
  line-height: 30px;
  display: none;
}

.total-row div {
  float: right;
  font-weight: 500;
}

.chek-availability-button {
  background: #5ebc59;
  color: #fff;
  height: 30px;
  width: 200px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
  /* margin-bottom: 50px; */
  clear: left;
}

.pet-profile-header {
  color: #40b2e6;
  font-size: 18px;
  font-weight: 500;
  margin-top: -30px;
}

.service-edit {
  display: none;
}

.addon-service {
  display: none;
}

.login-bg {
  background: rgb(255 255 255 / 80%);
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.login-block {
  position: absolute;
  width: 300px;
  left: 50%;
  margin-left: -150px;
  top: 150px;
  box-shadow: 0px 0px 10px 7px #9d9d9d85;
  box-sizing: border-box;
  padding: 20px 40px;
}

.login-img {
  height: 120px;
  width: 100%;
  background: url("/images/logo.png") center center no-repeat;
  background-size: contain;
}

.login-block h2 {
  color: #40b2e6;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

input.login-input {
  height: 40px;
  box-sizing: border-box;
  outline: none;
  padding: 0px 10px;
  width: 100%;
  font-style: italic;
  border: 0px solid;
  border-radius: 5px;
  box-shadow: inset 0px 0px 6px rgb(0 0 0 / 25%);
  margin-bottom: 20px;
}

input.login-button {
  background: #40b2e6;
  color: #fff;
  outline: none;
  border: none;
  display: block;
  height: 40px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 100;
  margin-bottom: 30px;
}

textarea.simple-textarea {
  height: 90px;
  box-sizing: border-box;
  padding: 0px 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  resize: none;
  box-sizing: border-box;
  padding: 15px;
  outline: none !important;
  border: 0px solid !important;
  box-shadow: inset 0px 0px 6px rgb(0 0 0 / 25%) !important;

  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.service-holder,
.service-holder-multipet,
.service-holder-admin {
  display: none;
  clear: left;
}

.team-member-bio-assign {
  height: 90px;
}

.team-member-bio-assign-name h2 {
  color: #40b2e6;
  font-size: 18px;
  font-weight: bold;
  margin: 0px;
  line-height: 60px;
}

.team-member-bio-assign-name {
  float: left;
  margin-right: 30px;
}

.team-member-bio-assign-credentials * {
  clear: left;
  display: block;
  line-height: 20px;
  font-size: 14px;
}

.team-member-bio-assign-credentials {
  float: left;
}

.team-member-bio-assign-credentials a {
  color: #40b2e6;
}

h2.role-edit-header {
  color: #40b2e6;
  font-size: 16px;
  font-weight: normal;
  display: inline-block;
  margin: 0px;
  margin-left: 10px;
  line-height: 60px;
}

.assign-service-field b {
  font-weight: 600;
  color: #000;
}

span.assign-service-field {
  font-size: 14px;
  color: grey;
}

.dashboard-content {
  width: 100%;
  box-sizing: border-box;
  background: #dce7ec;
  padding: 50px;
  min-height: calc(100vh - 80px);
}

.dashboard-statistics-block {
  float: left;
  height: 180px;
  background: #40b2e6;
  border-radius: 15px;
}

h2.dashboard-statistics-header,
h2.dashboard-upcoming-header,
h2.dashboard-news-header {
  margin: 0px;
  color: #40b2e6;
  font-size: 16px;
  font-weight: 600;
}

h2.dashboard-news-header {
  float: left;
  width: 70%;
}

.dashboard-statistics-blocks {
  margin-top: 15px;
}

.dashboard-statistics {
  background: #fff;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 15px;
}

.dashboard-statistics-block h2 {
  text-align: center;
  margin: 10px 0px;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
}

.dashboard-statistics-block-content {
  height: 130px;
  width: 100%;
}

.dashboard-statistics-block-content-item {
  float: left;
}

.dashboard-statistics-block-content-item p {
  color: #fff;
  font-size: 54px;
  margin: 0px;
}

.dashboard-statistics-block-content-item span {
  color: #fff;
}

.dashboard-statistics-block-content-item-special {
  float: left;
  margin-top: 10px;
}

.special-row-highlight {
  float: left;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border: 2px solid #fff;
  border-radius: 50px;
  margin-top: 4px;
}

.special-row-highlight-green {
  background: #74b255;
}

.dashboard-special-row {
  color: #fff;
  line-height: 20px;
  height: 30px;
}

.dashboard-special-row p {
  display: inline;
  font-size: 14px;
}

.dashboard-special-row span {
  float: right;
  padding-right: 20px;
  font-size: 20px;
}

.special-row-highlight-yellow {
  background: #c7ba30;
}

.special-row-highlight-red {
  background: #eb7979;
}

.blue-button {
  background: #40b2e6;
  cursor: pointer;
  color: #fff;
  padding: 5px 25px;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
}

.booking-hidden {
  display: none;
}

span.calendar-view-time {
  font-weight: normal;
}

span.calendar-view-address {
  font-weight: normal;
}

.calendar-appointment-view {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.max-height-calendar .calendar-appointment-view {
  max-height: 30px !important;
}

.calendar-view-btn {
  height: 30px;
  float: left;
  width: 100px;
  box-sizing: border-box;
  border: 1px solid #40b2e6;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  margin-right: 20px;
  cursor: pointer;
  color: #40b2e6;
  border-radius: 5px;
}

.calendar-view-btn.active {
  background: #40b2e6;
  color: #fff;
}

.date-range-window {
  position: absolute;
  width: 230px;
  left: 30%;
  margin-left: 100px;
  text-align: center;
  height: 35px;
}

.calendar-day-btn[data-id="move-prev"] {
  left: 0px;
  top: 0px;
}

.calendar-day-btn[data-id="move-next"] {
  right: 0px;
  top: 0px;
}

.calendar-day-btn {
  position: absolute;
  cursor: pointer;
  color: #40b2e6;
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  height: 35px;
  width: 35px;
}

div#renderRange {
  line-height: 35px;
  font-size: 18px;
  font-weight: 500;
}

.tui-full-calendar-weekday-schedule-bullet {
  /* background-color: #40b2e6 !important; */
  background-color: transparent !important;
}

.tui-full-calendar-time-schedule-content {
  border-color: #40b2e6 !important;
  border: 0px !important;
}

a.side-bar-link {
  display: block;
  background: #fff;
  color: #40b2e6;
  text-align: left;
  text-decoration: none;
  height: 35px;
  line-height: 35px;
  border-radius: 5px;
  margin: 10px;
  box-sizing: border-box;
  padding-left: 40px;
}

a.side-bar-link:hover,
a.side-bar-link.active {
  color: #fff;
  background: #40b2e6;
}

.appointment-view,
.time-slot-view,
.time-blocks-view,
.appointment-notes-view,
.new-appointment-view,
.appointment-note-view,
.time-block-view,
.reschedule-appointment-view,
.appointment-complete-view,
.change-services-appointment-view,
.dashboard-news-view,
.dashboard-new-view {
  background: #fff;
  /* min-height: 1000px; */
  position: fixed;
  left: 200px;
  right: 0px;
  top: 80px;
  display: none;
  overflow-y: auto;
  z-index: 3;
  bottom: 0px;
}

.switch-button {
  height: 30px;
  float: left;
  width: 100px;
  box-sizing: border-box;
  border: 1px solid #40b2e6;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  margin-right: 20px;
  cursor: pointer;
  color: #40b2e6;
  border-radius: 5px;
}

.switch-button.active {
  background: #40b2e6;
  color: #fff;
}

.popup-save-btn {
  background: #5ebc59;
  color: #fff;
  height: 30px;
  width: 100px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  float: right;
  margin-right: 10px;
}

.popup-cancel-btn {
  background: #e76c6c;
  color: #fff;
  height: 30px;
  width: 100px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  float: right;
  margin-right: 10px;
}

.member-assign-table {
  clear: left;
  box-sizing: border-box;
  padding-top: 30px;
}

.service-area-table {
  clear: left;
  box-sizing: border-box;
  padding: 0px 50px;
  padding-top: 30px;
}

.service-assign {
  display: none;
}

.appointment-block {
  float: left;
}

.appointment-content {
  box-sizing: border-box;
  padding: 0px 30px;
}

.appointment-info-addons div::before {
  content: "+";
  margin-right: 5px;
  font-weight: bold;
}

.appointment-info-addons div {
  font-size: 14px;
}

#appointment-groomer-name {
  color: #40b2e6;
  font-weight: bold;
  padding-top: 5px;
}

.appointment-groomer-image {
  width: 50px;
  height: 50px;
  float: left;
  border-radius: 100%;
  background: url("/images/user_logo.png") center center no-repeat;
  background-size: cover;
  margin-right: 10px;
}

#appointment-groomer-role {
  font-size: 14px;
}

.appointment-pet-image {
  height: 300px;
  background: url("/images/pet_logo.png") center center no-repeat;
  background-size: cover;
}

.appointment-pet-info {
  height: 380px;
  text-align: center;
  background: #ebebeb;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  line-height: 40px;
}

.appointment-pet-name {
  width: 90%;
  margin-left: 5%;
  box-sizing: border-box;
  border-bottom: 1px solid rgb(255 255 255 / 75%);
  color: #40b2e6;
  font-size: 18px;
  height: 40px;
  cursor: pointer;
}
.appointment-pet-breed,
.appointment-pet-weight {
  height: 40px;
}

#appointment-total-price,
#appointment-subtotal-price,
#appointment-total-tips,
#appointment-truck-number {
  font-size: 22px;
  margin-top: -10px;
  cursor: pointer;
}

#appointment-info-duration {
  cursor: pointer;
}

#appointment-total-price::after,
#appointment-total-tips::after,
#appointment-truck-number::after,
.appointment-pet-weight::after,
.appointment-pet-breed::after {
  content: "";
  width: 22px;
  height: 22px;
  margin-left: 5px;
  display: none;
  background: url("/images/edit_icon.png") top 6px center no-repeat;
  background-size: 18px;
}

#appointment-info-duration::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 5px;
  display: none;
  background: url("/images/edit_icon.png") top 6px center no-repeat;
  background-size: 16px;
}

#appointment-total-price:hover::after,
#appointment-total-tips:hover::after,
#appointment-truck-number:hover::after,
.appointment-pet-weight:hover::after,
.appointment-pet-breed:hover::after {
  display: inline-block;
}

.appointment-pet-weight:hover::after {
	display: none !important;
}

#appointment-info-duration:hover::after {
  display: inline-block;
}

#appointment-total-price-edit,
#appointment-total-tips-edit,
#appointment-truck-number-edit,
.appointment-pet-weight-edit,
.appointment-pet-breed-edit {
  display: none;
  margin-top: -3px;
}

.appointment-pet-weight-edit {
  margin-top: 9px;
}

.appointment-pet-weight-edit input {
  font-size: 16px;
  background: transparent;
  text-align: right;
}

#appointment-info-duration-edit {
  display: none;
}

.appointment-edit-input {
  height: 22px;
  padding: 0px;
  font-size: 22px;
  font-weight: normal;
  font-family: "Goldplay", sans-serif;
  width: 50%;
  border: 0px;
  outline: none;
  float: left;
}

.appointment-edit-input-save {
  width: 22px;
  height: 22px;
  margin-left: 5px;
  display: block;
  background: url(/images/ok-black.png) top 2px center no-repeat;
  background-size: 16px;
  float: left;
  cursor: pointer;
}

#appointment-info-duration-edit .appointment-edit-input {
  height: 18px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}

#appointment-info-duration-edit .appointment-edit-input-save {
  width: 18px;
  height: 18px;
  background-size: 16px;
  margin-top: 3px;
}

.appointment-client {
  box-sizing: border-box;
  padding-top: 50px;
  text-align: center;
}

div#appointment-client-name {
  font-size: 18px;
  margin-bottom: 10px;
  cursor: pointer;
}

.appointment-complete-button {
  background: #5ebc59;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  float: left;
}

.time-slot-complete-button {
  background: #5ebc59;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  float: left;
}

.reschedule-appointment-complete-button,
.reschedule-appointment-complete-button-client {
  background: #5ebc59;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  float: left;
}

.save-appointment-complete-button {
  background: #5ebc59;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  float: left;
}

.change-services-appointment-complete-button,
.change-services-appointment-complete-button-client {
  background: #5ebc59;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  float: left;
}

.change-services-appointment-add-fee-button {
  background: #5ebc59;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  float: left;
}

.appointment-cancel-button {
  background: #e76c6c;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  float: left;
  margin-left: 10px;
}

.time-slot-cancel-button {
  background: #e76c6c;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  float: left;
  margin-left: 10px;
}

.change-services-appointment-cancel-button {
  background: #e76c6c;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  float: left;
  margin-left: 10px;
}

.reschedule-appointment-cancel-button {
  background: #e76c6c;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  float: left;
  margin-left: 10px;
}

#appointment-info-address,
#appointment-info-day,
#appointment-info-shift,
#appointment-info-slot,
#appointment-info-duration {
  line-height: 30px;
}

div#appointment-client-image {
  width: 50%;
  background: #ebebeb;
  margin-left: 25%;
  margin-bottom: 20px;
  border-radius: 100%;
  background: url("/images/user_logo.png") center center no-repeat;
  background-size: cover;
}

div#appointment-client-image::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.appointment-info-services,
.appointment-info-addons {
  line-height: 25px;
}

span.service-choose-recommended,
span.service-choose-recommended-multipet {
  background: #5ebc59;
  box-sizing: border-box;
  font-size: 12px;
  color: #fff;
  padding: 2px 5px;
  border-radius: 5px;
  margin-left: 5px;
  display: none;
}

.service-description-in-booking {
  box-sizing: border-box;
  background: #ebf6ff;
  padding: 10px;
  font-size: 14px;
  font-weight: normal;
  border: 1px solid #73c0e6;
  margin-top: 5px;
  width: 100%;
}
.edit-area-content {
  box-sizing: border-box;
  padding: 0px 10px;
}

.service-area-header {
  border-bottom: 1px solid #ebebeb;
  font-weight: 600;
}

.collapse-header {
  height: 30px;
}

span.collapse-header-text {
  line-height: 30px;
  font-weight: 500;
}

.collapse-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
  float: left;
  background: url("/images/collapse_icon.png") center center no-repeat;
}

.collapse-icon-table,
.collapse-icon-table-view {
  width: 30px;
  height: 30px;
  cursor: pointer;
  float: left;
  background: url("/images/collapse_icon.png") center center no-repeat;
  margin-top: 5px;
  transform: rotate(90deg);
}

.collapsed.collapse-icon-table,
.collapsed.collapse-icon-table-view {
  transform: rotate(0deg);
}

label.checkbox-container.collapse-checkbox {
  padding-left: 10px;
}

.collapse-body {
  box-sizing: border-box;
  padding: 10px;
  padding-left: 40px;
  display: none;
}

.collapsed .collapse-icon {
  transform: rotate(90deg);
}

.collapsed .collapse-body {
  display: block !important;
}

.collapse-area {
  border-bottom: 1px solid #ebebeb;
}

.service-area-locations-body {
  line-height: 60px;
}

.service-area-item {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  min-height: 30px;
  box-sizing: border-box;
  padding: 5px 0px;
  cursor: pointer;
}

.service-area-items {
  box-sizing: border-box;
  padding-left: 10px;
  padding-top: 10px;
}

.service-area-items-add {
  box-sizing: border-box;
  padding-left: 10px;
  margin-top: 10px;
  display: none;
}

.service-area-items-add input {
  height: 25px;
  line-height: 25px;
}

.service-area-items-add-btn {
  margin-left: 10px;
  text-align: center;
  line-height: 23px;
  height: 25px;
  box-sizing: border-box;
  cursor: pointer;
}

.add-new-service-area {
  color: #40b2e6;
  box-sizing: border-box;
  padding-left: 10px;
  line-height: 30px;
  font-size: 14px;
  cursor: pointer;
  margin-top: -30px;
}

.import-service-area,
.import-new-code {
  color: #40b2e6;
  box-sizing: border-box;
  padding-left: 10px;
  line-height: 30px;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-in-table {
  top: 10px;
}

.import-area-content {
  position: fixed;
  background: #fff;
  top: 80px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow: auto;
}

.import-area-content-status {
  width: 200px;
  float: left;
  margin-top: 40px;
  box-sizing: border-box;
}

.import-area-content-status-item {
  line-height: 30px;
  box-sizing: border-box;
  padding-left: 40px;
  width: 80%;
  margin-left: 5%;
  color: #7f7f7f;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.import-area-content-status-item.active {
  color: #fff;
  border-radius: 5px;
  background: url(/images/area_upload_active.png) #40b2e6 15px center no-repeat;
}

.import-area-content-status-item.done {
  color: #40b2e6;
  background: url(/images/area_upload_done.png) 15px center no-repeat;
}

.booking-content-status {
  width: 200px;
  float: left;
  margin-top: 40px;
  box-sizing: border-box;
}

.booking-content-status-item {
  line-height: 30px;
  box-sizing: border-box;
  padding-left: 40px;
  width: 80%;
  margin-left: 5%;
  color: #7f7f7f;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.booking-content-status-item.active {
  color: #fff;
  border-radius: 5px;
  background: url(/images/area_upload_active.png) #40b2e6 15px center no-repeat;
}

.booking-content-status-item.done {
  color: #40b2e6;
  background: url(/images/area_upload_done.png) 15px center no-repeat;
}

.import-area-content-block {
  float: left;
  width: calc(100vw - 200px);
}

.import-area-content-block-item {
  box-sizing: border-box;
  padding: 0px 50px;
}

.csv-upload-area {
  height: 180px;
  width: 50%;
  background: url("/images/cloud_icon.png") #f3f7f9 center 40px no-repeat;
  border-radius: 5px;
  cursor: pointer;
  box-sizing: border-box;
  padding-top: 110px;
}

.csv-upload-area div {
  text-align: center;
  margin-left: 6%;
  width: 90%;
  color: #5f5f5f;
  font-size: 16px;
  font-weight: 500;
}

#import_codes {
  display: none;
}

.loading-import {
  text-align: center;
  line-height: 100px;
  background: #fff;
  width: 100%;
  font-size: 24px;
  color: grey;
}

#service-area-map {
  height: 300px;
}

.service-area-items-add-block {
  background: #f6f6f6;
  height: 25px;
  padding: 5px;
}

.service-area-items-add-btn {
  background: url("/images/ok-black.png") center center no-repeat;
}

.service-area-name-input {
  display: none;
}

.service-area-name-span {
  line-height: 25px;
}

.service-area-item.edit .service-area-name-input {
  display: block;
}

.service-area-item.edit .service-area-name-span {
  display: none;
}

.current-service-area-holder {
  height: 30px;
  vertical-align: text-bottom;
  display: flex;
}

.current-service-area {
  margin-right: 5px;
  align-self: flex-end;
}

.current-service-area-refresh-btn {
  align-self: flex-end;
  margin-bottom: 2px;
  cursor: pointer;
}

.hidden {
  visibility: hidden;
}

.service-area-item-edit-btn {
  margin-left: 10px;
  text-align: center;
  line-height: 23px;
  height: 25px;
  box-sizing: border-box;
  cursor: pointer;
  display: none !important;
  /*background: url("/images/edit-black.png") center center no-repeat;*/
  /*background-size: 12px;*/
}

.service-area-item-save-btn {
  margin-left: 10px;
  text-align: center;
  line-height: 23px;
  height: 25px;
  box-sizing: border-box;
  cursor: pointer;
  background: url("/images/ok-black.png") center center no-repeat;
  display: none;
}

.service-area-item.edit .service-area-item-save-btn {
  display: block;
}

.service-area-item:not(.edit):hover .service-area-item-edit-btn {
  display: block !important;
}

.service-area-item.edit {
  background: #f6f6f6;
  height: 40px;
  box-sizing: border-box;
  padding: 5px;
}

.view-codes-holder.collapsed {
  display: none;
}

.assign-service-area-icon {
  height: 30px;
  width: 30px;
  cursor: pointer;
  background: url("/images/pin-blue.png") center center no-repeat;
}

.sa-nav-menu {
  margin-top: -30px;
  position: relative;
}

.link-to-sa-popup {
  width: 200px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 2px 2px 4px 1px #e2e6e8;
  position: absolute;
  top: 30px;
  z-index: 10;
  left: 0px;
  display: none;
}

.link-to-sa-popup-header {
  font-size: 12px;
  line-height: 20px;
  border-bottom: 1px solid #e2e6e8;
  padding: 10px;
  box-sizing: border-box;
  font-weight: 600;
}

.link-to-sa-popup-apply {
  clear: left;
  font-size: 12px;
  line-height: 20px;
  border-top: 1px solid #e2e6e8;
  padding: 10px;
  box-sizing: border-box;
  font-weight: 600;
  color: #40b2e6;
  cursor: pointer;
}

.link-to-sa-popup-items {
  clear: left;
}

.link-to-sa-popup-item {
  clear: both;
  height: 30px;
}

.link-to-sa-popup-item .checkbox-container {
  padding-left: 10px;
}

.link-to-sa-popup-item div {
  line-height: 30px;
  font-size: 14px;
  font-weight: 600;
}

.assign-service-area-icon:hover {
  background-color: rgb(235 235 235 / 50%);
}

.link-to-sa-popup-item-empty {
  line-height: 40px;
  text-align: center;
  color: gray;
  font-size: 14px;
  font-weight: 500;
}

.ui-widget.ui-widget-content {
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
}

span.tui-full-calendar-weekday-schedule-title:before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  top: 8px;
  left: 0px;
  border-radius: 100%;
}

span.tui-full-calendar-weekday-schedule-title[data-title="completed"]:before {
  background: #74b255;
}

span.tui-full-calendar-weekday-schedule-title[data-title="pending"]:before {
  background: #c7ba30;
}

span.tui-full-calendar-weekday-schedule-title[data-title="canceled"]:before {
  background: #eb7979;
}

#appointment-header span {
  display: inline-block;
}

#appointment-header {
  position: relative;
}

#appointment-header span {
  display: inline-block;
}

.appointment-in-status {
  display: inline-block;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 15px;
}

#appointment-header {
  position: relative;
}

.appointment-in-status-completed {
  background: #74b255;
}

.appointment-in-status-pending {
  background: #fff36d;
}

.appointment-in-status-canceled {
  background: #eb7979;
}

.single-code-item {
  cursor: pointer;
}

.member-photo-upload {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 70px;
  left: 35%;
  border-radius: 100%;
  background: url("/images/user_logo.png") center center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.service-table-new {
  position: relative;
}

.member-photo-upload-button {
  background: url("/images/photo_icon.png") center center no-repeat;
  background-size: 20px;
  background-color: rgb(235 235 235 / 70%);
  width: 100%;
  height: 30px;
  margin-top: 90px;
  cursor: pointer;
}

#team-member-photo {
  display: none;
}

.team-member-bio-photo {
  width: 60px;
  height: 60px;
  background: url("/images/user_logo.png") center center no-repeat;
  background-size: cover;
  float: left;
  border-radius: 100%;
  margin-right: 20px;
}

a.side-bar-link-dashboard {
  background: url("/images/menu/dashboard.png") #fff 10px center no-repeat;
  background-size: 20px;
}

a.side-bar-link-dashboard:hover,
a.side-bar-link-dashboard.active {
  background: url("/images/menu/dashboard_white.png") #40b2e6 10px center
    no-repeat;
  background-size: 20px;
}

a.side-bar-link-calendar {
  background: url("/images/menu/calendar.png") #fff 10px center no-repeat;
  background-size: 20px;
}

a.side-bar-link-calendar:hover,
a.side-bar-link-calendar.active {
  background: url("/images/menu/calendar_white.png") #40b2e6 10px center
    no-repeat;
  background-size: 20px;
}

a.side-bar-link-clients {
  background: url("/images/menu/clients.png") #fff 10px center no-repeat;
  background-size: 20px;
}

a.side-bar-link-clients:hover,
a.side-bar-link-clients.active {
  background: url("/images/menu/clients_white.png") #40b2e6 10px center
    no-repeat;
  background-size: 20px;
}

a.side-bar-link-areas {
  background: url("/images/menu/servicearea.png") #fff 10px center no-repeat;
  background-size: 20px;
}

a.side-bar-link-areas:hover {
  background: url("/images/menu/servicearea_white.png") #40b2e6 10px center
    no-repeat;
  background-size: 20px;
}

a.side-bar-link-services {
  background: url("/images/menu/services.png") #fff 10px center no-repeat;
  background-size: 20px;
}

a.side-bar-link-services:hover {
  background: url("/images/menu/services_white.png") #40b2e6 10px center
    no-repeat;
  background-size: 20px;
}

a.side-bar-link-breeds {
  background: url("/images/menu/breeds.png") #fff 10px center no-repeat;
  background-size: 20px;
}

a.side-bar-link-breeds:hover,
a.side-bar-link-breeds.active {
  background: url("/images/menu/breeds_white.png") #40b2e6 10px center no-repeat;
  background-size: 20px;
}

a.side-bar-link-members {
  background: url("/images/menu/members.png") #fff 10px center no-repeat;
  background-size: 22px;
}

a.side-bar-link-members:hover {
  background: url("/images/menu/members_white.png") #40b2e6 10px center
    no-repeat;
  background-size: 22px;
}

a.side-bar-link-export {
  background: url("/images/menu/export.png") #fff 10px center no-repeat;
  background-size: 18px;
}

a.side-bar-link-export:hover {
  background: url("/images/menu/export_white.png") #40b2e6 10px center no-repeat;
  background-size: 18px;
}

a.side-bar-link-payadvice {
  background: url("/images/menu/payadvice.png") #fff 10px center no-repeat;
  background-size: 20px;
}

a.side-bar-link-payadvice:hover {
  background: url("/images/menu/payadvice_white.png") #40b2e6 10px center
    no-repeat;
  background-size: 20px;
}

a.side-bar-link-promocodes {
  background: url("/images/menu/promocodes.png") #fff 10px center no-repeat;
  background-size: 20px;
}

a.side-bar-link-promocodes:hover {
  background: url("/images/menu/promocodes_white.png") #40b2e6 10px center
    no-repeat;
  background-size: 20px;
}

a.side-bar-link-report {
  padding-left: 0;
}

a.side-bar-link-report i {
  width: 30px;
  margin-left: 10px;
}

.report-header {
  margin-bottom: 1px;
  padding-bottom: 1px;
}

.breed-select-helper,
.breed-select-helper-admin {
  display: none;
}

.selectize-input {
  min-height: inherit !important;
  height: 30px !important;
}

.promo-codes-edit-action:after,
.breed-services-edit-action:after,
.client-edit-action:after,
.services-edit-action:after,
.in-services-edit-action:after,
.member-edit-action:after,
.time-block-edit-action:after,
.news-edit-action:after,
.appointment-note-edit-action:after,
.role-edit-item:after,
.shift-edit-item:after,
.tier-edit-item:after,
.surcharge-edit-item:after,
.sa-edit-item:after {
  content: "Edit";
  position: absolute;
  width: 50px;
  height: 16px;
  line-height: 16px;
  margin-left: -25px;
  margin-top: -10px;
  background: #9e9e9e;
  font-size: 12px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  display: none;
  left: 50%;
}

.promo-codes-edit-action:hover:after,
.breed-services-edit-action:hover:after,
.client-edit-action:hover:after,
.services-edit-action:hover:after,
.in-services-edit-action:hover:after,
.member-edit-action:hover:after,
.time-block-edit-action:hover:after,
.news-edit-action:hover:after,
.appointment-note-edit-action:hover:after,
.role-edit-item:hover:after,
.shift-edit-item:hover:after,
.tier-edit-item:hover:after,
.surcharge-edit-item:hover:after,
.sa-edit-item:hover:after {
  display: inline-block;
}

.promo-codes-delete-action:after,
.client-delete-action:after,
.postal-code-delete-action:after,
.services-delete-action:after,
.in-services-delete-action:after,
.breed-services-delete-action:after,
.member-delete-action:after,
.time-block-delete-action:after,
.news-delete-action:after,
.appointment-note-delete-action:after,
.role-delete-item:after,
.shift-delete-item:after,
.tier-delete-item:after,
.surcharge-delete-item:after,
.sa-delete-item:after {
  content: "Delete";
  position: absolute;
  width: 50px;
  height: 16px;
  line-height: 16px;
  margin-left: -25px;
  margin-top: -10px;
  background: #9e9e9e;
  font-size: 12px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  display: none;
  left: 50%;
}

.promo-codes-delete-action:hover:after,
.client-delete-action:hover:after,
.postal-code-delete-action:hover:after,
.services-delete-action:hover:after,
.in-services-delete-action:hover:after,
.breed-services-delete-action:hover:after,
.member-delete-action:hover:after,
.time-block-delete-action:hover:after,
.news-delete-action:hover:after,
.appointment-note-delete-action:hover:after,
.role-delete-item:hover:after,
.shift-delete-item:hover:after,
.tier-delete-item:hover:after,
.surcharge-delete-item:hover:after,
.sa-delete-item:hover:after {
  display: inline-block;
}

.member-assign-action:after {
  content: "Assign";
  position: absolute;
  width: 50px;
  height: 16px;
  line-height: 16px;
  margin-left: -25px;
  margin-top: -10px;
  background: #9e9e9e;
  font-size: 12px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  display: none;
  left: 50%;
}

.member-assign-action:hover:after {
  display: inline-block;
}

.empty-service,
.empty-service-multipet,
.empty-service-admin {
  display: none;
}

.add-new-client-pet {
  height: 60px;
  line-height: 60px;
  cursor: pointer;
}

.add-new-client-pet-btn-text {
  color: #40b2e6;
  font-weight: 500;
}

.add-new-client-pet-btn {
  background: #efefef;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #cfcfcf;
  line-height: 56px;
  font-size: 56px;
  font-weight: 600;
  color: #cfcfcf;
  border-radius: 100%;
  background-size: cover;
  background-position: center center;
}

.add-new-client-pet-photo {
  height: 60px;
  line-height: 60px;
  cursor: pointer;
}

.add-new-client-pet-photo-btn-text {
  color: #40b2e6;
  font-weight: 500;
}

.add-new-client-pet-photo-btn {
  background: #efefef;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #cfcfcf;
  line-height: 56px;
  font-size: 56px;
  font-weight: 600;
  color: #cfcfcf;
  border-radius: 100%;
}

.edit-client-pet {
  height: 60px;
  line-height: 60px;
  cursor: pointer;
  margin-right: 20px;
}

.edit-client-pet-btn-text {
  color: #40b2e6;
  font-weight: 500;
}

.edit-client-pet-btn {
  background: #efefef;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #cfcfcf;
  line-height: 56px;
  font-size: 56px;
  font-weight: 600;
  color: #cfcfcf;
  border-radius: 100%;
  background: url("/images/pet_logo.png") center center no-repeat;
  background-size: cover;
}

.edit-client-pet-btn-text * {
  line-height: 18px;
  margin: 0px;
  display: block;
  color: #c7c7c7;
}

.edit-client-pet-btn-text p {
  color: #40b2e6;
  margin-top: 3px;
}

.service-pet {
  box-sizing: border-box;
  padding: 0px 50px;
  display: none;
}

.service-pet .services-header {
  padding: 50px 0px;
}

#client-pet-photo {
  display: none;
}

#booking-pet-photo {
  display: none;
}

#booking-client-photo {
  display: none;
}

#upload-appointment-images,
#upload-appointment-complete-images {
  display: none;
}

.assign-breeds-checkbox-semi:before,
.assign-services-checkbox-semi:before {
  content: "-";
  color: #40b2e6;
  font-size: 34px;
  font-weight: 600;
  top: 0px;
  position: absolute;
  line-height: 17px;
  width: 18px;
  text-align: center;
}

#code-suggesstion-box {
  margin-top: -20px;
  box-sizing: border-box;
  max-height: 210px;
  overflow: auto;
  position: absolute;
  background: #fff;
  z-index: 1;
  border: 1px solid #ebebeb;
  border-top: 0px;
  line-height: 20px;
}

.ui-widget {
  position: relative;
display: none;
}

#code-suggesstion-box * {
  box-sizing: border-box;
  line-height: 25px;
  padding: 0px 10px;
  font-size: 14px;
  cursor: pointer;
}

#code-suggesstion-box *:hover {
  background: #ebebeb;
}

.promo-filter-row[data-id="promo-inactive"] {
  display: none;
}

.ui-timepicker-standard a {
  font-size: 12px !important;
}

.shift-time-slot {
  text-align: center;
  font-size: 12px;
}

.calendar-options {
  position: fixed;
  text-align: right;
  bottom: 90px;
  right: 50px;
  z-index: 2;
  display: none;
}

.calendar-option {
  background: #40b2e6;
  padding: 5px 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  cursor: pointer;
  display: inline;
  float: right;
  clear: both;
}

.slider-area {
  margin-top: 100px;
}

.time-slots label,
.time-slots-admin label {
  font-size: 15px;
  font-weight: 500;
}

#choose-date,
#choose-date-admin {
  /* visibility: hidden; */
  position: absolute;
  margin-top: -25px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  line-height: 1px;
  height: 2px;
  font-size: 1px;
  padding: 0px;
  border: none;
}

.choose-date-button,
.choose-date-admin-button {
  background: #40b2e6;
  color: #fff;
  height: 30px;
  width: 200px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
  clear: left;
  z-index: 1;
  position: relative;
}

.booking-summary {
  font-size: 14px;
  font-weight: 500;
}

a.simple-herf {
  color: #40b2e6;
}

/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */
.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #40b2e6;
  color: #40b2e6;
  box-shadow: 9999px 0 0 -5px #40b2e6;
  animation: dotPulse 1.5s infinite linear;
  animation-delay: 0.25s;
}

.dot-pulse::before,
.dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #40b2e6;
  color: #40b2e6;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px #40b2e6;
  animation: dotPulseBefore 1.5s infinite linear;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px #40b2e6;
  animation: dotPulseAfter 1.5s infinite linear;
  animation-delay: 0.5s;
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #40b2e6;
  }
  30% {
    box-shadow: 9984px 0 0 2px #40b2e6;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px #40b2e6;
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #40b2e6;
  }
  30% {
    box-shadow: 9999px 0 0 2px #40b2e6;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px #40b2e6;
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #40b2e6;
  }
  30% {
    box-shadow: 10014px 0 0 2px #40b2e6;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px #40b2e6;
  }
}

.ts-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem 0;
  margin: 0 -5%;
  overflow: hidden;
}

#calendar {
  height: 800px;
}

.dashboard-statistics-block-content-item-rev {
  width: 30%;
  margin: 0px 1.5%;
}

.dashboard-statistics-block-content-item-rev span {
  display: block;
  margin-top: 20px;
}

.dashboard-statistics-block-content-item-rev p {
  font-size: 32px;
  font-weight: 500;
  margin-top: 15px;
}

b.tui-calendar-hours {
  font-size: 15px;
  color: #9e9e9e;
  font-weight: 700;
}

.tui-calendar-minutes {
  color: #9e9e9e;
  font-size: 13px;
  font-weight: 500;
  position: relative !important;
}

.tui-calendar-minutes span {
  display: block;
  margin-top: 11.66px;
  position: relative !important;
  line-height: 20px;
}

/* .tui-full-calendar-timegrid-gridline:first-of-type {
  height: 152px !important;
}

.tui-full-calendar-timegrid-hour:first-of-type {
  height: 152px !important;
} */

.tui-full-calendar-week-container .tui-full-calendar-vlayout-container {
  margin-top: -120px;
}

/* div#calendar {
  overflow: hidden;
} */

.tui-full-calendar-week-container {
  overflow: hidden;
}

.tui-full-calendar-week-container .tui-full-calendar-dayname-layout {
  position: relative;
  z-index: 1;
  background: #fff;
}

.tui-full-calendar-timegrid-container {
  overflow-y: hidden !important;
}

.ui-timepicker-standard {
  z-index: 10 !important;
}

.date-picker-wrapper {
  z-index: 10 !important;
}

.dashboard-appointments {
  background: #fff;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 15px;
  margin-top: 20px;
  width: 48%;
  float: left;
  margin-right: 4%;
}

.dashboard-news {
  background: #fff;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 15px;
  margin-top: 20px;
  width: 48%;
  float: left;
}

.dashboard-news-block {
  width: 100%;
  clear: both;
  margin-top: 10px;
  height: 120px;
}

.dashboard-news-block-time {
  clear: left;
  float: left;
  width: 17%;
  color: #a4a4a4;
  font-size: 15px;
  font-weight: 500;
  box-sizing: border-box;
  padding-left: 10px;
}

.dashboard-news-block-body {
  float: left;
  width: 83%;
}

h2.dashboard-news-header {
  padding-bottom: 30px;
}

.dashboard-news-block-header {
  color: #40b2e6;
  font-weight: 500;
}

.dashboard-news-block-content {
  color: #7f7e80;
  font-size: 15px;
  margin-top: 9px;
  line-height: 20px;
  max-height: 80px;
  height: 80px;
  overflow: hidden;
}

.dashboard-appointments-block {
  height: 130px;
  clear: left;
}

.dashboard-appointments-time {
  color: #a4a4a4;
  line-height: 130px;
  width: 10%;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  float: left;
}

.dashboard-appointments-photos {
  width: 30%;
  float: left;
  position: relative;
  height: 1px;
}

.dashboard-appointments-client-photo {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 25px;
  left: 20px;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.dashboard-appointments-pet-photo {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 75px;
  left: 60px;
  border: 2px solid #fff;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.dashboard-appointments-name {
  float: left;
  width: 30%;
}

.dashboard-appointments-name p {
  margin: 0px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 45px;
}

.dashboard-appointments-name span {
  color: #737274;
  font-size: 14px;
  font-weight: 500;
}

.dashboard-appointments-services {
  float: left;
  width: 30%;
  box-sizing: border-box;
  padding-top: 15px;
}

.dashboard-appointments-service {
  float: right;
  background: #40b2e6;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-sizing: border-box;
  padding: 2px 7px;
  border-radius: 15px;
  margin: 2px;
  max-width: 140px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

a.dashboard-appointments-all {
  color: #40b2e6;
  text-align: center;
  margin: 0px auto;
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.appointment-reschedule-button {
  background: #40b2e6;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  float: left;
  margin-left: 10px;
}

.appointment-notes-button {
  background: #40b2e6;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  float: left;
  margin-left: 10px;
}

#appointment-history-button {
  background: #40b2e6;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  float: left;
  margin-left: 10px;
}

.appointment-edit-services-button {
  margin-top: 10px;
  color: gray;
  font-size: 14px;
  cursor: pointer;
}

.appointment-view-buttons {
  clear: left;
}

/* client */
.client-dashboard-statistics-header {
  margin: 5px 0px;
  font-size: 16px;
  font-weight: 500;
}

.client-dashboard-statistics-header-name {
  font-weight: 500;
  margin: 5px 0px;
  font-size: 28px;
}

.client-new-appointment-button {
  float: right;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: 10px;
  padding-left: 32px;
  background: #5ebd59 url("/images/appointment_button_icon.png") left 10px top
    7px no-repeat;
  background-size: 12px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-top: -24px;
}

.client-appointment-row {
  height: 60px;
  margin-top: 15px;
  border-bottom: 1px solid #e7e7e7;
  clear: left;
}

.client-appointment-row:last-child {
  border: none !important;
}

.client-appointment-row-time p {
  margin: 0px;
  font-size: 14px;
  line-height: 20px;
  padding-top: 10px;
}

.client-appointment-row-time span {
  margin: 0px;
  font-size: 14px;
  line-height: 20px;
  background: url("/images/time_icon.png") left center no-repeat;
  background-size: 14px;
  box-sizing: border-box;
  padding-left: 20px;
}

.client-appointment-row-duration {
  font-size: 14px;
  box-sizing: border-box;
  padding-left: 15px;
}

.client-appointment-row-duration span {
  box-sizing: border-box;
  background: url("/images/duration_icon.png") left center no-repeat;
  background-size: 14px;
  padding-left: 20px;
  line-height: 60px;
}

.client-appointment-row-pet-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  float: left;
  margin-top: 15px;
  border-radius: 100%;
  margin-right: 10px;
  background-image: url("/images/pet_logo.png");
}

.client-appointment-row-pet-name {
  float: left;
  font-size: 14px;
  line-height: 60px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.client-appointment-row-service {
  color: #40b2e6;
  background: rgb(64 178 230 / 10%);
  display: inline-block;
  padding: 2px 6px;
  border-radius: 20px;
  font-size: 14px;
  float: left;
  margin: 2px;
  height: 18px;
  line-height: 18px;
}

.client-appointment-row-price {
  line-height: 60px;
}

.client-appointment-details-button {
  background: #40b2e6;
  text-align: center;
  height: 30px;
  line-height: 30px;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 15px;
}

.client-appointment-row-price {
  font-weight: 500;
}

@media (max-width: 500px) {
	.square-button#delete-card-button {
	    margin-top: 10px;
	}
	
	.edit-buttons {
	    display: block !important;
}
}

@media (max-width: 1360px) {
	.client-appointments-holder .client-appointment-row{
		height: 80px;
	}

	.client-appointments-holder .client-appointment-row-time p {
	    margin-top: 30px;
	}
	
	.client-appointments-holder span.appointment-client-status {
	    clear: left;
	    margin-top: -60px;
	    float: left !important;
	}
}


@media (max-width: 992px) {
	.client-appointments-holder .client-appointment-row{
		height: auto;
	}

	.client-appointments-holder .client-appointment-row-time p {
	    margin-top: 10px;
	}
	
	.client-appointments-holder span.appointment-client-status {
	    clear: none;
	    margin-top: 10px;
	}
}


.header__burger {
  display: none;
}
body.nav-active {
  overflow: hidden;
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__actions > *:not(:last-of-type) {
  margin-right: 26px;
}
.header__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 98;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.header__user-icon {
  background: rgba(64, 178, 230, 0.1);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.user-sub-menu {
  list-style-type: none;
  padding: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 14px rgb(0 0 0 / 15%);
  box-shadow: 0 4px 14px rgb(0 0 0 / 15%);
  border-radius: 8px;
  min-width: 180px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
  z-index: 999;
  top: calc(100% + 10px);
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  margin: 0;
}
.user-sub-menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 100%;
  left: 0;
}
.user-sub-menu__item:not(:last-child) {
  margin-bottom: 20px;
}
.user-sub-menu__item--logout {
  border-top: 1px solid #e7e7e7;
  padding-top: 20px;
}
.user-sub-menu__link {
  font-size: 16px;
  line-height: 16px;
  color: inherit;
  text-decoration: none;
}
.header__user:hover .user-sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.header__notif {
  position: relative;
  cursor: pointer;
}
.header__notif-new {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  right: 0;
  top: 0;
  background-color: #ed4040;
  border-radius: 50%;
}
.header__notif-icon {
}
.header {
  display: flex;
  align-items: center;
/*   justify-content: space-between; */
  position: relative;
  z-index: 2;
}
.notifications-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);

  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}
.notifications-modal--active {
  opacity: 1;
  visibility: visible;
}
.notifications-modal__inner {
  background-color: #fff;
  border-radius: 8px;
  max-width: 360px;
  width: 90%;
}
.notifications-modal__head {
  padding: 16px;
}
.notifications-modal__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  color: #40b2e6;
}
.notifications-modal__body {
  background-color: #dce7ec;
  padding: 8px;
  max-height: 348px;
  overflow-y: auto;
  overflow-x: none;
}
.notifications-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.notifications-list__item {
  padding: 8px 12px;
  border-radius: 8px;
  background-color: #fff;
}
.notifications-list__item:not(:last-child) {
  margin-bottom: 8px;
}
.notifications-list__item--primary .notifications-list__item-title {
  color: #40b2e6;
}
.notifications-list__item--secondary .notifications-list__item-title {
  color: #d5a63b;
}
.notifications-list__item--disabled .notifications-list__item-title {
  color: #8c8c8c;
}
.notifications-list__item--disabled .notifications-list__item-text {
  color: #8c8c8c;
}
.notifications-list__item-date {
  display: inline-block;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #8c8c8c;
}
.notifications-list__item-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  margin-top: 4px;
  margin-bottom: 0;
}
.notifications-list__item-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-top: 4px;
  margin-bottom: 0;
  color: #0a080c;
}
.notifications-modal__footer {
  text-align: center;
  padding: 16px;
}
#notification-reset {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #40b2e6;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.d-flex {
  display: flex;
  flex-wrap: wrap;
}
.j-s-b {
  justify-content: space-between;
}
.add-breed-service-field .simple-column:nth-child(3) > p,
.add-breed-service-field .simple-column:nth-child(4) > p {
  display: none;
}
.add-breed-service-field .simple-column:nth-child(2) .checkbox-container {
  font-size: 0;
}
.member-assign-mobile {
  display: none;
}

.show-password-button {
    background: url('/img/view-password.png') center center no-repeat;
    width: 20px;
    height: 20px;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 30%;
    margin-left: -30px;
    cursor: pointer;
}

.password-input-holder {
    position: relative;
}

.password-input-holder input {
    font-size: 12px;
    max-height: 30px;
}

@media (max-width: 1200px) {
	.dashboard-appointments-service {
		max-width: 70px;
		font-size: 10px;
	}
}

@media (max-width: 991.98px) {
	.dashboard-appointments-service {
		max-width: 140px;
		font-size: 12px;
	}
	.show-password-button {
	    left: 100%;
	}

	#client_note {
		width: 100% !important;
	}
	
  .appointment-status-holder {
    margin: 0px !important;
  }
  .appointment-view-buttons div {
    /* width: 50% !important; */
    width: calc(50% - 4px);
  }
  .appointment-content-client {
    clear: left;
  }
  .peyment-method-content {
    width: calc(100% - 100px);
    margin-left: 0px !important;
    left: 50px !important;
    right: 50px;
    top: 50px !important;
    bottom: 50px;
    overflow: hidden;
    overflow-y: auto;
  }
  .sq-card-wrapper {
    min-width: inherit !important;
  }
  .peyment-method-content form {
    width: 100% !important;
  }
  .peyment-method-content-close-mobile {
    display: block !important;
  }
  body {
    padding-top: 80px;
  }
  .header {
    justify-content: center;
    padding: 0 15px;
    position: fixed;
    background: #fff;
    top: 0px;
  }
  .header__actions {
/*     position: absolute; */
    position: fixed !important;
/*     z-index: 2; */
    z-index: 999;
    right: 15px;
  }
  .header__burger {
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
  }
  #content {
    margin-left: 0;
  }
  .content {
    margin-left: 0;
  }
  #side-bar {
    position: fixed;
    top: 80px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 20;
    transform: translateX(-100%);
  }
  .nav-active #side-bar {
    transform: none;
  }
  .burger {
    --burger-width: 20px;
    --burger-height: 14px;
    --burger-line-height: 2px;
    position: relative;
    border: none;
    padding: 0;
    width: var(--burger-width);
    height: var(--burger-height);
    color: #40b2e6;
    background-color: transparent;
    cursor: pointer;
  }
  .burger__line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: var(--burger-line-height);
    background-color: currentColor;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    border-radius: 5px;
  }
  .burger::after,
  .burger::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--burger-line-height);
    background-color: currentColor;
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
      -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    border-radius: 5px;
  }
  .burger::before {
    top: 0;
  }
  .burger::after {
    top: calc(100% - var(--burger-line-height));
  }
  .burger--active .burger__line {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .burger--active::before {
    top: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
      -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  }
  .burger--active::after {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
      -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  }
  .dashboard-content {
    padding: 15px;
  }
  .dashboard-statistics {
    border-radius: 10px;
  }
  .dashboard-appointments {
    border-radius: 10px;
    width: 100%;
    float: none;
    padding: 20px;
  }
  .dashboard-news {
    border-radius: 10px;
    width: 100%;
    float: none;
    padding: 20px;
  }
  .dashboard-statistics-blocks .fl.h.w2 {
    display: none;
  }
  .dashboard-statistics-blocks {
    display: flex;
    flex-wrap: wrap;
    /* grid-gap: 12px; */
  }
  .dashboard-statistics-block {
    width: calc(50% - 6px) !important;
    border-radius: 8px;
    height: auto;
    padding: 12px 16px;
    box-sizing: border-box;
    margin: 3px;
  }
  .dashboard-statistics-block:last-child {
    width: 100% !important;
  }
  .dashboard-statistics-block-content {
    height: auto;
  }
  .dashboard-statistics-block h2 {
    font-size: 16px;
    line-height: 18px;
    margin-top: 0;
    margin-bottom: 12px;
  }
  .dashboard-statistics-block-content-item p {
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
  }
  .dashboard-statistics-block-content-item span {
    font-size: 16px;
    line-height: 18px;
  }
  .dashboard-statistics-block-content-item-special {
    margin-top: 20px;
  }
  .special-row-highlight {
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 8px;
    margin-top: 3px;
  }
  .dashboard-special-row span {
    font-weight: 600;
    font-size: 20px;
    line-height: 18px;
    padding-right: 0;
  }
  .dashboard-statistics-block-content-item:not(.dashboard-statistics-block-content-item-rev),
  .dashboard-statistics-block-content-item-special {
    width: 100% !important;
    float: none;
  }
  .dashboard-statistics-block-content-item-rev {
    display: flex;
    flex-direction: column;
  }
  .dashboard-statistics-block-content-item-rev span {
    order: 2;
    margin-top: 0;
    text-transform: uppercase;
  }
  .dashboard-statistics-block-content-item-rev p {
    order: 1;
    font-size: 18px;
    line-height: 24px;
    margin-top: 0;
    text-transform: uppercase;
  }
  h2.dashboard-statistics-header,
  h2.dashboard-upcoming-header,
  h2.dashboard-news-header {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
  }
  .dashboard-appointments-client-photo {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
  }
  .dashboard-appointments-pet-photo {
    width: 32px;
    height: 32px;
    top: 65px;
    left: 55px;
  }
  .dashboard-appointments-photos {
    height: 100%;
  }
  .dashboard-appointments-name p {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
  }
  .dashboard-appointments-name span {
    font-size: 14px;
    line-height: 18px;
  }
  .dashboard-appointments-services {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 0;
  }
  .dashboard-appointments-drive {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .dashboard-appointments-drive span {
    margin-left: 8px;
    font-size: 12px;
    line-height: 18px;
    color: #8c8c8c;
  }
  .dashboard-news-actions {
    text-align: right;
    display: flex;
    align-items: center;
  }
  .dashboard-news-actions > a {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-decoration: none;
    color: #40b2e6;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 20px;
  }
  a.dashboard-appointments-all {
    margin: 30px auto 0 auto;
  }
  .dashboard-news-block {
    border-bottom: 1px solid #e7e7e7;
    height: auto;
    max-height: 100%;
  }
  .dashboard-news-block-time {
    float: none;
    width: 100%;
    padding-left: 0;
    margin-bottom: 8px;
  }
  .dashboard-news-block-body {
    float: none;
    width: 100%;
  }
  .calendar-heading {
    padding: 0 15px;
  }
  .calendar-heading .tab-buttons,
  .services-header-nav {
    order: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 26px;
  }
  .services-type {
    display: flex;
  }
  input#service-search {
    margin-top: 28px;
    width: 100%;
    float: none;
  }
  .calendar-heading .calendar-view-btn,
  .services-header-nav .switch-button,
  .service-button,
  .service-button-edit {
    margin-right: 0;
    /* border-right-color: transparent; */
    border-left-color: transparent;
    border-radius: 0;
    flex: 1;
    height: 42px;
    font-size: 14px;
    line-height: 42px;
    float: none;
  }
  .calendar-heading .calendar-view-btn:first-child,
  .services-header-nav .switch-button:first-child,
  .service-button:first-of-type,
  .service-button-edit:first-of-type {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    border-left-color: #40b2e6;
  }
  .calendar-heading .calendar-view-btn:last-child,
  .services-header-nav .switch-button:last-child,
  .service-button:last-of-type,
  .service-button-edit:last-of-type {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    border-right-color: #40b2e6;
  }
  .calendar-heading .date-range-window {
    float: none;
    position: relative;
    left: 0;
    margin: 0;
    margin-right: auto;
  }
  div#renderRange {
    font-weight: 600;
    font-size: 20px;
    color: #40b2e6;
  }
  .appointment-view,
  .time-slot-view,
  .time-blocks-view,
  .appointment-notes-view,
  .new-appointment-view,
  .appointment-note-view,
  .time-block-view,
  .reschedule-appointment-view,
  .change-services-appointment-view {
    left: 0;
  }
  .services-table-row {
    height: auto !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #dce7ec;
    border-radius: 8px;
    position: relative;
    padding-right: 40px;
  }
  .services-table-row:not(:last-child) {
    margin-bottom: 16px;
  }
  .services-table-header {
    display: none;
  }
  .services-table-header-column-1 {
    width: 100%;
    float: none;
  }
  .services-table-header-column-2 {
    text-align: left;
    width: auto;
  }
  .services-table-header-column-3 {
    text-align: left;
    height: auto;
    float: none;
    width: auto !important;
  }
  .services-table-header-column-4 {
    width: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .promo-codes-edit-action,
  .client-edit-action,
  .services-edit-action,
  .in-services-edit-action,
  .breed-services-edit-action,
  .member-edit-action,
  .time-block-edit-action,
  .news-edit-action,
  .appointment-note-edit-action,
  .role-edit-item,
  .shift-edit-item,
  .tier-edit-item,
  .surcharge-edit-item,
  .sa-edit-item {
    display: inline-block;
  }
  .promo-codes-delete-action,
  .client-delete-action,
  .postal-code-delete-action,
  .services-delete-action,
  .in-services-delete-action,
  .breed-services-delete-action,
  .member-delete-action,
  .time-block-delete-action,
  .news-delete-action,
  .appointment-note-delete-action,
  .role-delete-item,
  .shift-delete-item,
  .tier-delete-item,
  .surcharge-delete-item,
  .sa-delete-item {
    display: inline-block;
  }
  .member-assign-action {
    display: inline-block;
  }
  input.add-service-input {
    width: 100% !important;
  }
  .w40 input {
    width: 95% !important;
	}
  .price-filter-range {
    width: 90% !important;
    margin: 0 auto;
  }
  textarea.add-service-textarea {
    width: 100%;
  }
  .save-service-button,
  .save-breed-service-button,
  .save-member-button,
  .save-time-block-button,
  .save-appointment-note-button,
  .save-dashboard-news-button,
  .save-member-assign-button,
  .edit-peyment-methods,
  .save-password-button,
  .save-client-button,
  .save-pet-button,
  .save-promo-code-button,
  .delete-pet-button {
    border-radius: 4px;
  }
  input#breed-search {
    width: 100%;
    margin-top: 28px;
  }
  input#service-in-breed-search {
    width: 100%;
    margin-top: 28px;
  }
  .breed-filter-row {
    padding-right: 0;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #e7e7e7;
  }
  .breeds-table-header-column-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    float: none;
  }
  .breeds-table-header-column-1 .service-type-dog,
  .breeds-table-header-column-1 .service-type-cat {
    order: 2;
  }
  .breeds-table-header-column-1 .service-link {
    order: 1;
  }
  .breeds-table-header-column-2 {
    display: flex;
    align-items: center;
    float: none;
  }
  .services-table-row.breed-item {
    padding-right: 0;
  }
  .services-table-row.breed-item > div {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  .add-service-row span {
    border-radius: 4px;
    background: #40b2e6;
    color: #fff;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    width: auto;
    display: inline-block;
    position: relative;
  }
  .add-service-row span::before {
    content: "+";
    display: inline-block;
    color: inherit;
    font-size: 24px;
    font-weight: 500;
    margin-right: 7px;
    position: relative;
    bottom: -1px;
  }
  .service-add-save-btn {
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1;
    height: auto;
    width: auto;
  }
  .service-add-cancel-btn {
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1;
    height: auto;
    width: auto;
  }
  .new-breed-header-nav {
    height: auto;
    display: flex;
    align-items: center;
    margin-bottom: 28px;
  }
  .new-breed-header-nav .breed-service-select {
    margin-right: auto;
    margin-left: 0;
  }
  .add-breed-service-field .services-table-row {
    padding-right: 0;
  }
  .add-breed-service-field .simple-column {
    float: none;
    max-height: none;
  }
  .add-breed-service-field .simple-column:nth-child(1) {
    width: 100% !important;
  }
  .add-breed-service-field .simple-column:nth-child(2) {
    width: 100% !important;
    position: relative;
    height: 50px;
  }
  .add-breed-service-field .simple-column:nth-child(3) {
    width: 50% !important;
    position: relative;
    text-align: left !important;
    padding-left: 42px;
  }
  .add-breed-service-field .simple-column:nth-child(3) .breed-add-input {
    width: 100%;
  }
  .add-breed-service-field .simple-column:nth-child(4) .breed-add-input {
    width: calc(100% - 42px);
  }
  .add-breed-service-field .simple-column:nth-child(4) {
    /* width: 50% !important;
    position: relative;
    text-align: left !important; */
  }
  .add-breed-service-field .simple-column:nth-child(3) > p,
  .add-breed-service-field .simple-column:nth-child(4) > p {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    color: #40b2e6;
    margin: 15px 0 0 0;
    display: block;
  }
  .add-breed-service-field .simple-column:nth-child(2) .checkbox-container {
    width: 100%;
    text-align: left;
    padding-left: 62px;
    font-size: 16px;
    line-height: 30px;
  }
  .add-breed-service-field .simple-column:nth-child(2) .checkbox-checkmark {
    left: 33px;
  }
  .add-breed-service-field {
    border: none;
  }
  .add-breed-service-field .services-table-row {
    padding-right: 0;
    padding-bottom: 16px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #e7e7e7;
  }
  .login-bg {
    position: static;
    background: #fff;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
  }
  .login-block {
    position: static;
    background: #fff;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 0;
    padding: 0;
    box-shadow: none;
  }
  .login-img {
    display: none;
  }
  .login-block h2 {
    font-weight: 600;
    line-height: 28px;
    margin-top: 0;
    margin-bottom: 20px;
  }
  input#client-search {
    width: 100%;
  }
  .clients-search-table .services-table-row .simple-column:nth-child(1) {
    width: 100% !important;
  }
  .clients-search-table .services-table-row .simple-column:nth-child(2) {
    width: 100% !important;
  }
  .clients-search-table .services-table-row .simple-column:nth-child(3) {
    width: 100% !important;
  }
  .clients-search-table .services-table-row .simple-column:nth-child(4) {
    width: auto !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /* background: #fff; */
  }
  .member-photo-upload {
    position: static;
    margin-bottom: 28px;
  }
  .edit-client-pet {
    margin-bottom: 20px;
  }
  .service-pet {
    padding: 0 15px;
  }
  h2#service-edit {
    padding-left: 40px;
  }
  .member-search-table .services-table-row .simple-column:nth-child(1) {
    width: 100% !important;
  }
  .member-search-table .services-table-row .simple-column:nth-child(2) {
    width: 100% !important;
  }
  .member-search-table .services-table-row .simple-column:nth-child(3) {
    width: auto !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  input#member-search {
    width: 100% !important;
  }
  input#calendar-search {
    /* width: 100% !important; */
    width: 95% !important;
    float: inherit;
    margin: 20px 2.5%;
  }
  #maximal-weight {
    width: 100% !important;
  }
  .member-assign-table .simple-column:nth-child(1),
  .member-assign-table .simple-column:nth-child(2),
  .member-assign-table .simple-column:nth-child(3) {
    width: 100% !important;
  }
  .member-assign-table .simple-column:last-child {
    width: auto !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .add-breed-service-field .services-table-row > div {
    width: 100% !important;
    position: inherit !important;
    min-width: 100%;
    transform: inherit !important;
    padding-left: 10px !important;
  }

  .add-shift-field .services-table-row > div {
    width: 100% !important;
    position: inherit !important;
    min-width: 100%;
    transform: inherit !important;
    padding-left: 10px !important;
  }

  .member-assign-mobile {
    display: block;
    color: #40b2e6;
  }

  .sa-mobile-wrapper {
    display: none;
  }

  .sa-mobile-dates {
    width: 100% !important;
    clear: left;
    height: 50px;
  }

  .sa-mobile-name {
    width: 80% !important;
  }

  .sa-mobile-checkbox {
    width: 20% !important;
    clear: left;
    height: 40px;
  }

  .service-area-eod-locations-body > div {
    width: 100% !important;
    clear: left;
  }

  .service-area-eod-locations-body > input {
    width: 100% !important;
  }

  .add-role-row span {
    border-radius: 4px;
    background: #40b2e6;
    color: #fff;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    width: auto;
    display: inline-block;
  }
  .add-breed-service-field .new-breed-header-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .popup-cancel-btn {
    padding: 12px 16px;
    border-radius: 4px;
    height: auto !important;
    width: auto !important;
  }
  .popup-save-btn {
    padding: 12px 16px;
    border-radius: 4px;
    height: auto !important;
    width: auto !important;
  }
  .services-body {
    margin-top: -20px;
    padding: 0 15px;
  }
  .services-body .simple-select.w50 {
    width: 100% !important;
  }
  .services-body .add-service-header.w20,
  .services-body .simple-input.w20 {
    width: 47% !important;
  }
  .blue-button {
    padding: 12px 16px;
    border-radius: 4px;
  }
  input#promo-search {
    width: 100% !important;
    margin-top: 28px;
  }
  .promo-search-table .simple-column:nth-child(1),
  .promo-search-table .simple-column:nth-child(2),
  .promo-search-table .simple-column:nth-child(3) {
    width: 100% !important;
    float: none;
  }
  .promo-search-table .simple-column:last-child {
    width: auto !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .chek-availability-button {
    border-radius: 4px;
    padding: 12px 16px;
  }
  .pricing-breakdown {
    /* padding: 0; */
  }
  input#promo-search,
  input#service-search,
  input#breed-search,
  #service-in-breed-search,
  #member-search,
  #client-search,
  #calendar-search {
    padding: 12px 8px;
    height: auto;
    font-size: 15px;
    line-height: 16px;
    border: 1px solid #cacaca;
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
  }
  .promo-codes-edit-action,
  .client-edit-action,
  .services-edit-action,
  .in-services-edit-action,
  .breed-services-edit-action,
  .member-edit-action,
  .time-block-edit-action,
  .news-edit-action,
  .appointment-note-edit-action,
  .role-edit-item,
  .shift-edit-item,
  .tier-edit-item,
  .surcharge-edit-item,
  .sa-edit-item {
    background: url("/images/edit_icon.svg") center center no-repeat;
    background-size: 18px;
  }
  .promo-codes-delete-action,
  .client-delete-action,
  .postal-code-delete-action,
  .services-delete-action,
  .in-services-delete-action,
  .breed-services-delete-action,
  .member-delete-action,
  .time-block-delete-action,
  .news-delete-action,
  .appointment-note-delete-action,
  .role-delete-item,
  .shift-delete-item,
  .tier-delete-item,
  .surcharge-delete-item,
  .sa-delete-item {
    background: url("/images/delete_icon.svg") center center no-repeat;
    background-size: 18px;
  }
  input[type="text"],
  input[type="number"],
  textarea {
    padding: 12px 8px;
    height: auto;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
  }
  .selectize-input {
    border: 1px solid #cacaca !important;
    box-sizing: border-box !important;
    box-shadow: inset 0px 0px 6px rgb(0 0 0 / 25%) !important;
    border-radius: 4px !important;
    height: auto !important;
    padding: 12px 8px !important;
    line-height: 1 !important;
  }
  .breed-duplicate {
    margin-bottom: 28px;
  }
  input {
    appearance: none;
    -webkit-appearance: none;
  }
  input.login-input {
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    border: 1px solid #cacaca;
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
  }
  .service-areas-actions {
    display: flex;
    align-items: center;
    position: absolute;
    right: 15px;
    top: 40px;
  }
  .service-areas-actions > a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(64, 178, 230, 0.1);
    border-radius: 4px;
    margin-left: 12px;
  }
  .dashboard-statistics-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 23px;
  }
  .dashboard-statistics-heading h2 {
    margin-right: auto;
  }
  .dashboard-statistics-heading-btn {
    margin-right: 8px;
    font-size: 16px;
    line-height: 18px;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    color: #40b2e6;
    border: none;
    background: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dashboard-statistics-heading-btn.active {
    background-color: #40b2e6;
    color: #fff;
  }
  .dashboard-statistics-select {
    color: #40b2e6;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    border: none;
    background-color: #fff;
  }
  .dashboard-statistics-select:last-child {
    margin-left: 23px;
  }
  .mobile-100 {
    width: 100% !important;
  }
  .sa-nav-menu {
    margin: 20px 0;
  }
  .services-table-row-collapse-view {
    max-height: auto !important;
  }
  .checkbox-in-table {
    /* top: 0; */
  }
  .view-codes-holder .checkbox-in-table{
	  top: 0;
  }
  .service-area-t-item > div {
    width: 100%;
  }
  .client-new-appointment-button {
    clear: left;
    float: left;
    margin-top: 10px;
}
.services-table-content-time-blocks .w20 {
    width: 35% !important;
}

.services-table-content-time-blocks .w50 {
    width: 35% !important;
}

.services-table-content-time-blocks .services-table-row {
    padding-right: 0px;
}

.services-table-content-time-blocks .services-table-row {
    overflow-y: hidden;
}
  .collapse-icon-table-view {
    margin-top: -14px;
  }
  .import-service-area,
  .import-new-code {
    padding: 12px;
    border-radius: 4px;
    background: #40b2e6;
    color: #fff;
    font-size: 16px;
    line-height: 16px;
  }
  .add-new-service-area {
    background: #40b2e6;
    border-radius: 4px;
    padding: 6px 12px;
    color: #fff;
    width: auto;
    display: inline-block;
    height: auto;
    margin: 0;
    font-size: 16px;
    line-height: 18px;
  }
  .import-area-content-status {
    width: 100%;
  }
  .import-area-content-block {
    width: 100%;
  }
  .area-header {
    position: relative;
  }
  .services-table-row.tier-item > div {
    width: 100%;
  }
  .services-table-row.tier-item .simple-column:last-child {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
  }
  .add-tier-row span {
    background: #40b2e6;
    border-radius: 4px;
    padding: 6px 12px;
    color: #fff;
    width: auto;
    display: inline-block;
    height: auto;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
  }
  .services-table-row.primary-service .simple-column {
    max-height: 100%;
  }
  .calendar-heading {
    position: relative;
  }
  .calendar-heading h2 {
    width: 100%;
  }
  .calendar-actions {
    display: flex;
    align-items: center;
    position: absolute;
    right: 15px;
    top: 20px;
  }
  .calendar-actions > a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(64, 178, 230, 0.1);
    border-radius: 4px;
    margin-left: 12px;
  }
  .calendar-heading-btn {
    margin-left: 8px;
    font-size: 16px;
    line-height: 18px;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    color: #40b2e6;
    border: none;
    background: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
  }
  .calendar-heading-btn.active {
    background-color: #40b2e6;
    color: #fff;
  }
  .service-area-items-add-block {
    height: 40px;
  }
  .service-area-items-add-btn {
    margin-top: 5px;
  }
  #appointment-header {
    padding-left: 20px;
  }
  .appointment-block {
    width: 100% !important;
  }
  .appointment-pet-info {
    max-width: 240px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
    /* height: 332px; */
    background: #f1f1f1;
  }
  .appointment-pet-image {
    height: 240px;
  }
  .appointment-pet-name {
    font-size: 20px;
    line-height: 46px;
    border-color: #e7e7e7;
    height: 46px;
    cursor: pointer;
  }
  .appointment-pet-breed,
  .appointment-pet-weight {
    color: #0a080c;
    font-size: 16px;
    line-height: 46px;
    height: 46px;
  }
  .appointment-content {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
  }
  .appointment-member-block {
    order: 1;
  }
  .appointment-pet-block {
    order: 2;
  }
  .appointment-info-block {
    order: 3;
    margin-top: 20px;
  }
  .appointment-view-buttons {
    order: 4;
    margin-top: 20px;
  }
  .appointment-view-buttons > * {
    border-radius: 4px !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
  }
  .appointment-view-buttons .appointment-complete-button {
    margin-right: 4px;
    width: calc(50% - 4px);
  }
  .appointment-view-buttons .appointment-cancel-button {
    margin-left: 4px;
    width: calc(50% - 4px);
  }
  .appointment-view-buttons .appointment-reschedule-button {
    margin-left: 0;
    margin-right: 4px;
    width: calc(33.333333% - 4px);
  }
  .appointment-view-buttons .appointment-prebook-button {
    margin-left: 4px;
    margin-right: 4px;
    width: calc(33.333333% - 8px);
  }
  .appointment-view-buttons .appointment-notes-button {
    margin-left: 4px;
    margin-right: 0;
    width: calc(33.333333% - 4px);
  }
  .appointment-client {
    margin-top: 20px;
    padding-left: 128px;
    position: relative;
    min-height: 120px;
    padding-top: 0;
    text-align: left;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  div#appointment-client-image {
    width: 120px;
    height: 120px;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
  div#appointment-client-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 18px;
    color: #40b2e6;
    margin-bottom: 12px;
  }
  div#appointment-client-phone {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    color: #40b2e6;
    margin-bottom: 12px;
  }
  div#appointment-client-email {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    word-break: break-word;
  }
  .services-header h2 {
    padding-left: 20px;
  }
  .appointment-edit-services-button {
    padding: 12px 16px;
    height: auto;
    background: #40b2e6;
    border-radius: 4px;
    margin-bottom: 32px;
    display: inline-block;
    color: #fff;
  }
  .appointment-content .w50 {
    width: 100% !important;
  }
  .change-services-appointment-complete-button,
  .change-services-appointment-complete-button-client,
  .reschedule-appointment-complete-button,
  .reschedule-appointment-complete-button-client,
  .time-slot-complete-button {
    border-radius: 4px;
    margin-right: 4px;
    width: calc(50% - 4px);
  }
  .change-services-appointment-cancel-button,
  .reschedule-appointment-cancel-button,
  .time-slot-cancel-button {
    border-radius: 4px;
    margin-left: 4px;
    width: calc(50% - 4px);
  }
  .appointment-in-status {
    margin-right: 8px;
  }
  #groomer-id-admin,
  .time-slot-amount-select,
  .breed-service-select {
    padding: 12px 8px;
    width: 100% !important;
    box-sizing: border-box;
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.25);
    border: 1px solid #cacaca;
    border-radius: 4px;
    height: auto;
  }
  .add-calendar-option,
  .add-new-service,
  .add-new-breed,
  .add-new-member,
  .add-new-time-block,
  .add-new-appointment-note,
  .add-new-news,
  .add-new-code {
    width: 52px;
    height: 52px;
    font-size: 52px;
    line-height: 50px;
    right: 16px;
    bottom: 48px;
    user-select: none;
  }
  .add-calendar-option.active {
    background-color: #e86c6c;
  }
  .calendar-options {
    right: 16px;
    bottom: 103px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
  }
  .calendar-option {
    background: #fff;
    color: inherit;
    padding: 0;
    font-size: 16px;
    line-height: 18px;
  }
  .calendar-option:last-child {
    margin-bottom: 0;
  }
  body.darken::before {
    content: "";
    position: fixed;
    z-index: 2;
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 12, 0.7);
  }
  #time-block-member,
  #groomer-id {
    width: 100% !important;
    padding: 12px 8px;
    height: auto;
    border: 1px solid #cacaca;
    box-shadow: inset 0px 0px 6px rgb(0 0 0 / 25%);
    border-radius: 4px;
  }
  #time-block-range {
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    width: 100% !important;
    padding: 12px 8px;
    height: auto;
  }
  #time-block-time-from,
  #time-block-time-to {
    border: 1px solid #cacaca;
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    padding: 8px 12px;
    width: 45% !important;
    height: auto;
  }
  #time-block-time-from + .w10 {
    margin-top: -5px;
    color: #000;
    font-size: 40px;
    line-height: 1;
    font-weight: 500;
  }
  .save-time-block-button {
    width: calc(50% - 4px);
    padding: 12px;
    box-sizing: border-box;
    height: auto;
    line-height: 18px;
    font-size: 16px;
  }
  .choose-date-button,
  .choose-date-admin-button {
    margin-bottom: 25px;
  }
  #choose-date {
    margin-top: -50px;
  }
  .services-table.service-table-new {
    margin-top: 0;
  }
  #booking-summary-greeting {
    padding-left: 0;
  }
  .services-header + .booking-content-status {
    margin-top: 0;
  }
  .services-header .booking-content-status-item {
    margin-left: 0;
  }
  .services-header .booking-content-status-item.done {
    background-position: 0;
    padding-left: 25px;
  }
  .total-row {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    color: #f6894e;
  }
  .price-service-header,
  .subtotal-row span {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
  }
  .services-table-content-appointment-notes .simple-column {
    width: 100% !important;
  }
  .services-table-content-appointment-notes .simple-column:last-child {
    width: auto !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #appointment-note-title {
    width: 100% !important;
  }
  .appointment-view,
  .time-slot-view,
  .time-blocks-view,
  .appointment-notes-view,
  .new-appointment-view,
  .appointment-note-view,
  .time-block-view,
  .reschedule-appointment-view,
  .appointment-complete-view,
  .change-services-appointment-view {
    left: 0;
  }
  #complete-appointment-receip,
  #complete-appointment-notes {
    width: 100% !important;
  }

  .add-another-pet-button,
  .add-another-pet-button-multipet {
    border-radius: 4px;
    padding: 12px 16px;
    float: left;
    clear: left;
    margin-left: 0px !important;
    margin-bottom: 50px;
  }

  #choose-date,
  #choose-date-admin {
    margin-top: -50px;
  }

  .client-appointment-row > div {
    width: 100% !important;
    float: inherit !important;
    height: 60px;
    clear: left;
  }

  .client-appointment-row {
    height: auto;
    margin-bottom: 20px;
  }

  .client-appointment-row-duration,
  .client-appointment-row-time {
    float: left !important;
    padding-left: 0px;
  }
  
  input#dashboard-range {
    font-size: 16px;
    margin-bottom: 10px;
  }
	
  select.dashboard-statistics-select.dashboard-statistics-select-groomer {
    font-size: 16px;
	margin-bottom: 10px;
  }
  
  .selectize-control.single .selectize-input:after {
	  display: none !important;
  }
  
}
@media (max-width: 767.98px) {
  .services-header {
    padding: 15px;
  }
  .service-edit .services-header {
    position: relative;
    display: flex;
    padding-left: 40px;
    align-items: center;
  }
  .services-back-button,
  .appointment-back-button,
  .time-slot-back-button,
  .time-blocks-back-button,
  .appointment-notes-back-button,
  .dashboard-news-back-button,
  .new-appointment-back-button,
  .time-block-back-button,
  .appointment-note-back-button,
  .dashboard-new-back-button,
  .area-back-button,
  .pet-back-button,
  .change-services-appointment-back-button,
  .reschedule-appointment-back-button,
  .appointment-complete-back-button {
    margin: 0;
    float: none;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .back-button {
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
  }
  .services-table {
    padding: 30px 15px;
  }
  .pricing-breakdown {
    margin-top: 30px;
    padding: 0px;
  }
  .service-booking .w2,
  .service-booking .w5,
  .service-booking .w10,
  .service-booking .w20,
  .service-booking .w25,
  .service-booking .w30,
  .service-booking .w40,
  .service-booking .w46,
  .service-booking .w50,
  .service-booking .w60,
  .service-booking .w70,
  .service-booking .w80,
  .service-booking .w90,
  .service-booking .w100 {
    width: 100% !important;
  }
  .dashboard-statistics-block {
    width: calc(50% - 6px) !important;
  }
  .span.service-link,
  span.breed-service-link {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
  }
  .save-service-button,
  .save-breed-service-button,
  .save-member-button,
  .save-time-block-button,
  .save-appointment-note-button,
  .save-dashboard-news-button,
  .save-member-assign-button,
  .prebook-button,
  .edit-peyment-methods,
  .save-password-button,
  .save-client-button,
  .save-pet-button,
  .save-promo-code-button,
  .delete-pet-button {
    border-radius: 4px;
  }
  .service-area-table {
    padding: 0 15px;
  }
  .service-areas-items .simple-column {
    max-height: 100%;
    width: 100% !important;
  }
  .service-area-t-item > div {
    width: 100%;
  }
  .service-area-t-item .sa-table-name {
    display: flex;
    align-items: center;
  }
  .service-area-t-item .sa-table-name span {
    margin-left: 8px;
  }
  .service-area-t-item .checkbox-container {
    height: 30px;
  }
  .service-area-t-item .checkbox-in-table {
    left: 0 !important;
    margin-left: 0 !important;
  }
  .service-area-t-item .simple-column:last-child {
    width: auto !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
  }
  .appointment-status-holder {
    padding: 0 15px;
  }
}

.booking-promo-code-apply {
  background: #5ebc59;
  color: #fff;
  height: 30px;
  width: 200px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 50px;
  clear: left;
}

.booking-promo-code-valid {
  width: 200px;
  text-align: center;
  font-size: 14px;
  color: #5ebc59;
}

.booking-promo-code-error, .booking-promo-code-error-email {
  width: 200px;
  text-align: center;
  font-size: 14px;
  color: red;
}

.booking-promo-code-message {
  display: none;
}

.appointment-client-pets {
  display: none;
}

.prebook-button {
  background: #40b2e6;
  margin-left: 10px;
  float: left;
}

.edit-peyment-methods,
.save-password-button,
.save-client-button {
  float: left;
}

.appointment-prebook-button {
  background: #40b2e6;
  color: #fff;
  height: 40px;
  width: 120px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  float: left;
  margin-left: 10px;
}

.dashboard-statistics-select-groomer {
  float: right;
  /* margin-top: -20px; */
  border: none;
  color: #40b2e6;
  font-family: "Goldplay", sans-serif;
  font-size: 16px;
  width: 180px;
  outline: none;
  cursor: pointer;
  font-weight: 500;
}

.appointment-cancel-options-bg {
  position: fixed;
  z-index: 2;
  display: none;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 8, 12, 0.7);
}

.appointment-cancel-options {
  position: fixed;
  background: #fff;
  box-sizing: border-box;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 8px;
  width: 300px;
  left: 50%;
  margin-left: -150px;
  top: 50vh;
  margin-top: -100px;
}

.appointment-cancel-options-close {
  cursor: pointer;
  color: #fff;
  position: absolute;
  right: 10px;
  top: -40px;
  font-size: 34px;
}

.appointment-cancel-options-header {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 16px;
}

.appointment-cancel-options-option {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 16px;
}

.appointment-cancel-options-option-close {
  cursor: pointer;
  color: #e86c6c;
}

.dashboard-news-actions {
  width: 30%;
  float: left;
  text-align: right;
}

.dashboard-news-actions a {
  color: #40b2e6;
  cursor: pointer;
  font-size: 14px;
}

.dashboard-attention-block {
  box-sizing: border-box;
  padding: 5px 15px;
  background: #fff9b0;
  margin-bottom: 15px;
  border-radius: 15px;
  border: 2px solid #d1c83c;
}

.dashboard-attention-block h2 {
  color: #d1c83c;
  font-size: 18px;
  margin: 0px;
  margin-top: 10px;
}

.dashboard-attention-block p {
  color: #0a080c;
  margin: 10px 0px;
}

.day-appointment-view.completed {
  background: #e7fbdd;
}

.day-appointment-view.pending {
  background: #fffcdf;
}

.day-appointment-view.canceled {
  background: #fceeee;
}

.day-appointment-view {
  box-sizing: border-box;
  padding: 5px;
}

.day-appointment-view.completed .day-appointment-view-header {
  background: #74b255;
}

.day-appointment-view.pending .day-appointment-view-header {
  background: #c7ba30;
}

.day-appointment-view.canceled .day-appointment-view-header {
  background: #eb7979;
}

.day-appointment-view .day-appointment-view-header {
  margin-left: -5px;
  margin-top: -5px;
  margin-right: -5px;
  box-sizing: border-box;
  padding: 3px;
  color: #fff;
}

.day-appointment-view .day-appointment-view-header-status:after {
  content: "";
  float: right;
  box-sizing: border-box;
  padding: 2px 5px;
  font-size: 10px;
  border-radius: 10px;
  margin-top: -1px;
}

.day-appointment-view.completed .day-appointment-view-header-status:after {
  content: "Completed";
  background: green;
}

.day-appointment-view.pending .day-appointment-view-header-status:after {
  content: "Pending";
  background: #a3992f;
}

.day-appointment-view.canceled .day-appointment-view-header-status:after {
  content: "Canceled";
  background: red;
}

.app-pet-type-dog {
  display: inline-block;
  background: url("/images/dog_icon.png") center top -1px no-repeat;
  width: 20px;
  height: 15px;
  background-size: 20px;
}

.app-pet-type-cat {
  display: inline-block;
  background: url("/images/dog_icon.png") center top -1px no-repeat;
  width: 20px;
  height: 15px;
  background-size: 20px;
}

.day-appointment-view-body-body {
  font-weight: normal !important;
}

.tui-full-calendar-time-schedule-content.tui-full-calendar-time-schedule-content-time {
  overflow: auto;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}

.tui-full-calendar-time-schedule-content.tui-full-calendar-time-schedule-content-time::-webkit-scrollbar {
  display: none;
}

span.day-appointment-view-header-price {
  float: right;
  margin-right: 10px;
  color: #000;
}

.appointment-status-holder {
  float: left;
  margin-top: 25px;
  margin-left: 15px;
}

h2#appointment-header {
  float: left;
}

.appointment-back-button {
  position: absolute;
  bottom: -15px;
}

.appointment-pet-image {
  background-color: #ebebeb;
  background-size: contain;
}

.uploaded-photo {
  float: left;
  width: 16%;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 5px;
  position: relative;
}

.uploaded-photo span {
  right: -6px;
  top: -6px;
  position: absolute;
  background: #fff;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  border: 1px solid black;
  border-radius: 100%;
  font-size: 20px;
  cursor: pointer;
}

.upload-note-photos-area,
.upload-appointment-complete-images {
  margin-bottom: 10px;
  float: left;
  width: 100%;
}

div#map-layer {
  height: 200px;
}

.appointment-note-view-mode {
  box-sizing: border-box;
  border: 10px solid #f6f6f6;
  display: none;
}

.appointment-note-view-mode-content-member {
  float: left;
  margin-left: 10px;
  margin-top: 10px;
}

.appointment-note-view-mode-content-member-photo {
  background-image: url("/images/members/3.png");
  width: 50px;
  height: 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 100%;
  float: left;
  margin-right: 15px;
}

.appointment-note-view-mode-content-member-name {
  float: left;
  line-height: 50px;
  color: #40b2e6;
  text-decoration: underline;
  font-weight: 500;
  font-size: 15px;
}

.appointment-note-view-mode {
  box-sizing: border-box;
  border: 10px solid #f6f6f6;
}

.appointment-note-view-mode-content-member {
  float: left;
  margin-left: 10px;
  margin-top: 10px;
}

.appointment-note-view-mode-content-member-photo {
  background-image: url("/images/members/3.png");
  width: 50px;
  height: 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 100%;
  float: left;
  margin-right: 15px;
}

.appointment-note-view-mode-content-member-name {
  float: left;
  line-height: 50px;
  color: #40b2e6;
  text-decoration: underline;
  font-weight: 500;
  font-size: 15px;
}

.appointment-note-view-mode-content-nav {
  margin-top: 10px;
  margin-right: 10px;
  float: right;
}

.appointment-note-view-mode-content-nav-date {
  float: left;
  font-size: 15px;
  color: #757575;
  line-height: 30px;
}

.appointment-note-view-mode-content-nav-edit {
  background: #40b2e6;
  float: left;
  color: #fff;
  padding: 0px 15px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  border-radius: 7px;
  margin-left: 10px;
  font-size: 15px;
}

.appointment-note-view-mode-content-nav-close {
  background: #40b2e6;
  float: left;
  color: #fff;
  padding: 0px 15px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  border-radius: 7px;
  margin-left: 10px;
  font-size: 15px;
}

.appointment-note-view-mode-content-note-header {
  clear: left;
  margin-left: 10px;
  padding-top: 15px;
  color: #40b2e6;
  font-weight: 500;
}

.appointment-note-view-mode-content-note {
  box-sizing: border-box;
  padding: 10px;
}

.appointment-note-view-mode-content-attachments-header {
  clear: left;
  margin-left: 10px;
  padding-top: 15px;
  color: #40b2e6;
  font-weight: 500;
}

.appointment-note-view-mode-content-attachments {
  box-sizing: border-box;
  padding: 10px; /* float: left; */
}

.appointment-note-view-mode-content-attachments div {
  float: left;
  margin: 5px;
  width: 15%;
  height: 120px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.dashboard-statistics-heading-btn {
  margin-right: 8px;
  font-size: 16px;
  line-height: 18px;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  color: #40b2e6;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
}
.dashboard-statistics-heading-btn.active {
  background-color: #40b2e6;
  color: #fff;
}
.dashboard-statistics-select {
  color: #40b2e6;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  border: none;
  background-color: #fff;
}
.dashboard-statistics-select:last-child {
  margin-left: 23px;
}
.dashboard-statistics-blocks {
  clear: left;
}

.booking-submit-error {
  display: none;
  /*
color: red;
  font-size: 15px;
  font-weight: 500;
*/
	box-sizing: border-box;
    background: #ffebee;
    padding: 10px;
    font-size: 14px;
    font-weight: normal;
    border: 1px solid #f44336;
    margin-top: 5px;
    width: 50%;
}

.booking-attention-block {
  box-sizing: border-box;
  padding: 5px 15px;
  background: #fff9b0;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 2px solid #d1c83c;
  clear: left;
}

.booking-attention-block p {
  color: #0a080c;
  margin: 10px 0px;
  font-size: 14px;
}

.booking-attention-block a {
  color: #40b2e6;
}

.booking-attention-block-is-aggressive,
.booking-attention-block-vaccination,
.booking-attention-block-anxiety,
.booking-attention-block-age,
.booking-attention-block-first-time {
  display: none;
}

.vaccination-file-button {
  background: #40b2e6;
  float: left;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  padding: 0px 10px;
  margin-left: 20px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  display: none;
}

.booking-vaccination-fields {
  display: none;
}

.submit-step-one {
  float: left;
}

.add-another-pet-button,
.add-another-pet-button-multipet {
  background: #40b2e6;
  color: #fff;
  height: 30px;
  width: 200px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;

  z-index: 1;
  position: relative;
  float: left;
  margin-left: 20px;
  margin-bottom: 50px;
}

.submit-step-one-multipet {
  float: left;
}

input#dashboard-range {
  font-family: "Goldplay", sans-serif;
  color: #40b2e6;
  min-width: 200px;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: 0px;
  float: right;
  margin-left: 20px;
  /* margin-top: -20px; */
}

input.date-time-picker-range {
  font-family: "Goldplay", sans-serif;
  color: #40b2e6;
  min-width: 160px;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: 0px;
  float: right;
  margin-left: 20px;
}

.dashboard-statistics-heading {
  float: left;
  clear: both;
  width: 100%;
  position: relative;
  top: -20px;
}

.dashboard-statistics-heading h2.dashboard-statistics-header {
  float: left;
  position: relative;
  bottom: -20px;
}

.booking-pet-number {
  background: #40b2e6;
  display: none;
  padding: 5px 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 15px;
  float: left;
  margin-top: 20px;
  margin-left: 15px;
}

.empty-appointments-client {
  clear: left;
/*   margin-top: inherit; */
}

#appointment-info-shift {
  background: url("/images/clock_icon.png") left center no-repeat;
  background-size: 14px;
  padding-left: 20px;
  box-sizing: border-box;
}

#appointment-info-slot {
  background: url("/images/clock_icon.png") left center no-repeat;
  background-size: 14px;
  padding-left: 20px;
  box-sizing: border-box;
}

#appointment-info-duration {
  background: url(/images/alarm_icon.png) left center no-repeat;
  background-size: 14px;
  padding-left: 20px;
  box-sizing: border-box;
}

.blue-link {
  color: #40b2e6;
  font-size: 14px;
}

.booking-summary-start-time {
  font-weight: bold;
  color: gray;
  clear: left;
}

.booking-summary-start-time span {
  color: #000;
}

.booking-is-client-agree label {
  font-size: 14px !important;
}

.pricing-petnum {
  background: #40b2e6;
  padding: 2px 7px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 15px;
  margin-left: 5px;
  display: inline;
}

#appointment-client-email a,
#appointment-client-phone a,
#appointment-info-address a {
  color: #40b2e6 !important;
}

#fullpage-image {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: contain;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-color: black;
}

.appointment-note-view-mode-content-note
  .appointment-note-view-mode-content-note-header {
  margin-left: 0px;
}

.add-new-code-popup {
  width: 200px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 2px 2px 4px 1px #e2e6e8;
  position: absolute;
  top: 30px;
  z-index: 10;
  right: 0px;
  display: none;
}

.add-new-code-popup-header {
  font-size: 12px;
  line-height: 20px;
  border-bottom: 1px solid #e2e6e8;
  padding: 10px;
  box-sizing: border-box;
  font-weight: 600;
}

.add-new-code-popup-apply {
  clear: left;
  font-size: 12px;
  line-height: 20px;
  border-top: 1px solid #e2e6e8;
  padding: 10px;
  box-sizing: border-box;
  font-weight: 600;
  color: #40b2e6;
  cursor: pointer;
}

.add-new-code-popup-items {
  clear: left;
}

.add-new-code-popup-item {
  clear: both;
  height: 30px;
}

.add-new-code-popup-item .checkbox-container {
  padding-left: 10px;
}

.add-new-code-popup-item div {
  line-height: 30px;
  font-size: 14px;
  font-weight: 600;
}

.add-new-code-popup-items {
  box-sizing: border-box;
  padding: 5px 15px;
}

.add-new-code-popup-items span {
  color: #40b2e6;
  font-size: 14px;
  font-weight: 500;
}

.add-new-code-popup-items input {
  height: 25px;
  margin-bottom: 5px;
}

.appointment-edit-select {
  width: 70%;
  float: left;
  background: transparent;
}

.appointment-pet-breed-edit {
  margin-top: 9px;
  box-sizing: border-box;
  padding-left: 20px;
}

.booking-back-button {
  background: #e76c6c;
  color: #fff;
  height: 30px;
  width: 200px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
  z-index: 1;
  position: relative;
  float: left;
  margin-left: 0px;
  margin-bottom: 50px;
  clear: left;
}

.sa-team-members-names {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

#calendar-search {
  margin: 0px 20px;
}

.booking-attention-block-choose-breed {
  display: none;
}

.custom-fee-name,
.custom-fee-price {
  margin-bottom: 10px;
}

.empty-notification {
  color: #8c8c8c;
  font-weight: 600;
  text-align: center;
  margin: 50px 0px;
}

.header__notif-new {
  display: none;
}

.appointment-info-block {
  clear: left;
}

.clickable-notification {
  cursor: pointer;
}

.view-appointment-notifications {
  color: grey;
  font-weight: 500;
  font-size: 14px;
  font-style: italic;
  cursor: pointer;
}

.total-row-admin {
  color: #f6894e;
}

#payment_card_form .services-header {
  padding: 0px;
}

ul#card_list {
  padding-left: 0px;
}

.appointment-content-client #appointment-info-duration::after {
  display: none !important;
}

.appointment-content-client #appointment-info-duration {
  cursor: inherit;
}

.appointment-content-client #appointment-total-price {
  cursor: inherit;
}

.appointment-content-client #appointment-total-price::after {
  display: none;
}

.appointment-content-client #appointment-total-tips {
  cursor: inherit;
}

.appointment-content-client #appointment-total-tips::after {
  display: none;
}

.appointment-content-client .appointment-pet-breed {
  cursor: inherit;
}

.appointment-content-client .appointment-pet-breed::after {
  display: none;
}

.appointment-content-client .appointment-pet-weight {
  cursor: inherit;
}

.appointment-content-client .appointment-pet-weight::after {
  display: none;
}

.appointment-content-client .appointment-pet-name {
  cursor: inherit;
}

.appointment-content-client #appointment-client-name {
  cursor: inherit;
}

.update-notification-block {
  display: none;
  box-sizing: border-box;
  padding: 5px 15px;
  background: rgb(94 188 89 / 25%);
  margin-bottom: 15px;
  border-radius: 15px;
  border: 2px solid #5ebc59;
}

.edit-peyment-methods {
  margin-left: 10px;
}

.peyment-method-block {
  position: fixed;
  z-index: 5;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: rgb(0 0 0 / 75%);
  display: none;
}

.peyment-method-content {
  background: #fff;
  padding: 50px;
  box-sizing: border-box;
  position: fixed;
  padding-top: 0px;
  left: 50%;
  margin-left: -275px;
  top: 50px;
}

.peyment-method-content-close {
  color: #fff;
  font-size: 40px;
  position: absolute;
  right: -40px;
  top: -40px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}

.peyment-method-content-close-mobile {
  color: #fff;
  font-size: 40px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  display: none;
}

.header__actions {
  position: absolute;
  right: 40px;
  top: 24px;
}

.loading-background {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: rgb(255 255 255 / 75%);
  z-index: 99999;
  display: none;
}

.loading-background .ts-loading {
  height: 100%;
}

.client-appointment-row-time p {
  float: left;
}

.client-appointment-row-time span {
  clear: left;
  float: left;
}

span.appointment-client-status {
	float: right;
    font-size: 14px;
    padding: 5px 5px;
    width: 85px;
    text-align: center;
    border-radius: 15px;
    clear: none;
    background-image: none;
    margin-top: 15px;
    margin-left: 15px;
  /*
float: left;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 15px;
  clear: none;
  background-image: none;
  margin-top: 5px;
  margin-left: 15px;
*/
}

span.appointment-client-status-pending {
  background-color: #fff36d;
}

span.appointment-client-status-completed {
  background-color: #74b255;
}

span.appointment-client-status-canceled {
  background-color: #eb7979;
}

#open-notifications {
  z-index: 98;
}

.red {
  color: red;
}

.email-exists-notification {
	display: none;
}

#ts-slider-range {
	display: block;
}

span.tui-full-calendar-weekday-schedule-title:not([data-title=pending]):not([data-title=canceled]):not([data-title=completed]) {
    background: #eb7979;
}

.client-appointment-row-services {
    max-height: 50px;
    overflow: hidden;
}

.add-new-code-popup-close {
    position: absolute;
    top: 10px;
    right: 0px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-weight: 600;
}

.calendar-day-btn[data-id="move-today"] {
    position: absolute;
    font-size: 14px;
    left: 50%;
    width: 120px;
    text-align: center;
    margin-left: -60px;
}

p.incorrect-login {
    color: red;
}

p.forgot-login {
    color: green;
}

.input-error{
    outline: 1px solid red;
}

div#slider-range {
    display: block;
}

input, select, select option {
	-webkit-appearance: none !important;
}

.dashboard-user-photo {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    border-radius: 100%;
}

.breed-search-erase {
    float: right;
    margin-top: 5px;
    margin-right: -30px;
    left: -35px;
    z-index: 1;
    position: relative;
    background: #e0e0e0;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 100%;
    font-weight: 500;
    cursor: pointer;
}

.calendar-view-btn[data-id=week] {
    display: block;
}

@media (max-width: 1200px) {
	.calendar-view-btn[data-id=week] {
	    display: none;
	}
}

@media (max-width: 991.98px) {
	.breed-search-erase {
		margin-top: 0px;
	    bottom: -70px;
    }
}

.booking-attention-block-unvalid-code {
	display: none;
}

.blocked-client {
    box-sizing: border-box;
    padding: 10px 15px;
    background: #fff9b0;
    margin-bottom: 15px;
    border-radius: 15px;
    border: 2px solid #d1c83c;
    color: #000;
    font-size: 14px;
    margin-top: 20px;
}

.appointment-note-view .services-table {
	display: block !important;
}

.appointment-notes-view .services-table {
	display: block !important;
}

.header .header__menu {
    list-style-type: none;
}

ul.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    line-height: 18px;
}

a.header__menu-link {
    color: black;
    text-decoration: none;
}

ul.sub-menu {
    padding: 20px;
    background-color: var(--color-white);
    -webkit-box-shadow: 0px 4px 14px rgb(0 0 0 / 15%);
    box-shadow: 0px 4px 14px rgb(0 0 0 / 15%);
    border-radius: 8px;
    min-width: 180px;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: absolute;
    z-index: 999;
    top: calc(100% + 10px);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    background-color: #fff;
    list-style: none;
    margin-left: -70px;
    margin-top: -20px;
}

li.header__menu-item {
    padding: 32px 10px;
}

.header__menu-item--parent:hover .sub-menu {
	opacity: 1;
    visibility: visible;
}

li.sub-menu__item:not(:first-child) {
    margin-top: 20px;
}

a.sub-menu__link {
    font-size: 16px;
    line-height: 16px;
    color: #000;
    text-decoration: none;
}

.header .header__menu-item--parent > a::after {
    content: url(../img/angle-down-black.svg);
    display: block;
    margin-left: 7px;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-transition: -webkit-transform 0.1s;
    transition: -webkit-transform 0.1s;
    -o-transition: transform 0.1s;
    transition: transform 0.1s;
    transition: transform 0.1s, -webkit-transform 0.1s;
}

.header .header__menu-item--parent > a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.header__menu-item--parent:hover > a::after {
    transform: translateY(4px) rotate(180deg);
}

@media (max-width: 991.98px) {
	.header__nav {
		display: none;
	}
}

.alert-notification {
    position: fixed;
    top: 50px;
    right: 50px;
    z-index: 100000;
}

.alert-notification-block {
    box-sizing: border-box;
    padding: 5px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    clear: left;
    max-width: 250px;
    display: none;
}

.alert-notification-block.error {
    border: 2px solid #f44336;
    background: #ffebee;
}

.alert-notification-block.success {
    border: 2px solid #4caf50;
    background: #e8f5e9;
}

@media (max-width: 991.98px) {
	.alert-notification {
		left: 50px;
		right: 50px;
	}
	
	.alert-notification-block {
		max-width: inherit;
	}
}

.mobile-side-bar a {
    display: block;
    text-decoration: none;
    color: #616161;
    margin-bottom: 10px;
}

.mobile-side-bar {
    box-sizing: border-box;
    padding-left: 20px;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    display: none;
    clear: left;
}

@media (max-width: 991.98px) {
	.mobile-side-bar {
		display: block;
	}
	
	.empty-appointments-client {
		margin-top: 60px;
	}
}

.choose-time-manually-block {
    display: none;
}

#choose-manual-date-admin {
    margin-bottom: 10px;
}

.appointment-client-view-buttons .appointment-cancel-button {
	margin-left: 0px;
}

@media (max-width: 991.98px) {
	.appointment-client-view-buttons .appointment-reschedule-button {
	    width: 49% !important;
	    margin: 0px !important;
	    margin-left: 1% !important;
	}
	
	.appointment-client-view-buttons .appointment-cancel-button {
	    width: 49% !important;
	    margin: 0px !important;
	    margin-right: 1% !important;
	}
	
	.booking-submit-error {
		width: 100%;
	}
}

.client-appointment-header .appointment-in-status {
    margin-left: 5px;
    display: block;
    float: right;
}

.booking-submit-error p {
    margin: 0px 10px;
}

.booking-submit-error ul {list-style: none;padding-left: 10px;}

.booking-submit-error li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #f44336;
    display: block;
    /* position: absolute; */
    float: left;
    margin-top: 7px;
    margin-right: 7px;
    border-radius: 100%;
}
.booking-attention-block-out-sa {
	display: none;
}

.app-promo-applied {box-sizing: border-box;background: #ebf6ff;font-size: 16px;font-weight: normal;border: 1px solid #73c0e6;width: 90%;overflow: auto; display: none;}

.app-promo-applied div {
    float: left;
}

.app-promo-applied-code {
    width: 30%;
    background: #73c0e6;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.app-promo-applied-description {
    width: 70%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 991.98px) {
	.app-promo-applied {
		width: 100%;
	}
}

.app-promo-applied-title {
    width: 100%;
    box-sizing: border-box;
    background-color: #1976d2;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px;
}

.resend-welcome-button {
    background: #40b2e6;
    color: #fff;
    height: 40px;
    width: 240px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 50px;
    float: left;
    clear: left;
}

.resend-welcome-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.client-delete-action {
	display: none !important;
}

.services-table-content-time-blocks .service-link {
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    height: 40px;
    white-space: nowrap;
}

#groomer-id-admin-manual, #groomer-id-manual {
	display: none;
}

.delete-pet-button[data-status=restore] {
    opacity: 0.75;
}

.edit-client-pet.deleted-pet::after {
    content: "Deleted";
    position: absolute;
    left: -10px;
    background: #ff5722;
    height: 20px;
    top: 20px;
    line-height: 20px;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    border-radius: 15px;
    text-align: center;
    width: 80px;
    transform: rotateZ(-25deg);
}

.edit-client-pet {
    position: relative;
}

.edit-client-pet.deleted-pet {
    opacity: 0.75;
}

.appointment-pet-info.deleted-pet::after {
    content: "Deleted";
    position: absolute;
    left: 0px;
    background: #ff5722;
    height: 20px;
    top: 0px;
    line-height: 20px;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.appointment-pet-info {
    position: relative;
}

.assign-dates-text {
    font-size: 14px;
}