:root {
  --black: black;
  --white: white;
  --disabled-button: #AEAEAE;
  --gray:#969696;
}

.grecaptcha-badge {
  bottom: 200px !important;
}
@media screen and (max-width: 576px) {
  .grecaptcha-badge {
    display: none !important;
  }
}

.iti__flag {
  background-image: url("../images/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2x) {
  .iti__flag {
    background-image: url("../images/flags@2x.png");
  }
}
form.form-searcher {
  position: relative;
}
form.form-searcher input[type=search]::-webkit-search-decoration,
form.form-searcher input[type=search]::-webkit-search-cancel-button,
form.form-searcher input[type=search]::-webkit-search-results-button,
form.form-searcher input[type=search]::-webkit-search-results-decoration {
  display: none;
}
form.form-searcher .form-group .form-control {
  border-radius: 24px !important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
form.form-searcher .form-group .form-control:focus, form.form-searcher .form-group .form-control :focus-visible {
  border: none;
}
form.form-searcher .form-group .searcher-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  background-color: transparent;
  border: none;
}
form.form-searcher .form-group .searcher-icon svg path {
  stroke: var(--primary-color);
}
form .form-group {
  margin: 0 0 15px 0;
  position: relative;
}
form .form-group label {
  display: block;
  color: var(--font-color);
  font-size: 14px;
}
form .form-group label.form-label-diabled {
  color: #BFBFBF;
}
form .form-group .form-switch {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding-left: 2.8em;
}
form .form-group .form-switch .form-check-input {
  opacity: 0.6;
  width: 52px;
  height: 28px;
  border: 1px solid var(--font-color);
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%232B3842'/%3e%3c/svg%3e");
}
form .form-group .form-switch .form-check-input:checked {
  opacity: 1;
  background-color: var(--font-color);
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
}
form .form-group .form-switch .form-check-input:focus {
  box-shadow: unset;
}
form .form-control {
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  background-color: var(--white);
  font-size: 14px;
  color: var(--font-color);
  height: 48px;
}
form .form-control:focus {
  box-shadow: none;
  border-color: var(--secondary-color);
}
form .form-control::-webkit-input-placeholder {
  color: rgba(43, 56, 66, 0.6);
}
form .form-control::-moz-placeholder {
  color: rgba(43, 56, 66, 0.6);
}
form .form-control:-ms-input-placeholder {
  color: rgba(43, 56, 66, 0.6);
}
form .form-control::-ms-input-placeholder {
  color: rgba(43, 56, 66, 0.6);
}
form .form-control.placeholder, form .form-control::placeholder {
  color: rgba(43, 56, 66, 0.6);
}
form .iti {
  width: 100%;
}
form .form-password {
  position: relative;
}
form .form-password #form-eye {
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
form .form-password .form-control:valid, form .form-password .form-control:invalid {
  background-position: right calc(0.375em + 2.1875rem) center;
}
form .form-password .was-validated .form-control:valid, form .form-password .was-validated .form-control:invalid {
  padding-right: calc(1.5em + 2.75rem);
}
form.was-validated .form-control:invalid {
  background-image: url("../../../images/warning-invalid.svg");
}
form.was-validated input:invalid, form.was-validated select:invalid, form.was-validated textarea:invalid {
  -webkit-animation: shake 300ms;
          animation: shake 300ms;
}
@-webkit-keyframes shake {
  25% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  50% {
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
  75% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}
@keyframes shake {
  25% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  50% {
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
  75% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}
form .file {
  cursor: pointer;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}
form .file #customFile {
  display: none !important;
}
form .file #fileInputName {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
}
form .file .file-button {
  background-color: black;
  color: white;
  font-size: 16px;
  font-weight: 400;
  border-radius: 6px;
  padding: 7px 20px;
  display: inline-block;
  z-index: 2;
  position: relative;
  min-width: 195px;
  text-align: center;
  margin: 0 10px 0 0;
}
form .file img {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-bold-text {
  color: var(--font-color);
  font-weight: 700;
  font-size: 14px;
}

.form-description-text {
  color: var(--font-color);
  font-weight: 400;
  font-size: 14px;
}

.billing-total-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.step {
  display: none;
}
.step.open {
  display: block;
}

.divider {
  opacity: 1;
  border-color: var(--primary-color);
}

.form {
  margin-bottom: 150px;
}
.form-large {
  margin-bottom: 250px;
}

.add-cause-block .button-delete, .add-cause-block .button-transparent {
  text-align: right;
}

.cloned-input input {
  position: relative;
}
.cloned-input .button-delete, .cloned-input .button-transparent {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: auto;
  height: 0;
  line-height: 0;
}

input[type=file] {
  display: none;
}

.doc-link {
  width: 100%;
  text-decoration: none;
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  border-radius: 8px;
  cursor: pointer;
  padding: 15px;
  font-weight: 500;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  font-size: 16px !important;
  margin-bottom: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.doc-link::after {
  content: "";
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" fill="none"><path d="M15.5 9.5L20 14M20 14L15.5 18.5M20 14L8 14M27.5 14C27.5 21.4558 21.4558 27.5 14 27.5C6.54416 27.5 0.5 21.4558 0.5 14C0.5 6.54416 6.54416 0.5 14 0.5C21.4558 0.5 27.5 6.54416 27.5 14Z" stroke="%2399C538" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  display: inline-block;
  width: 27px;
  height: 27px;
  background-size: contain;
  margin-right: 5px;
  vertical-align: middle;
  background-position: center;
  margin-bottom: 5px;
}

label[for=input-pet-image], label[for=input-add-doc] {
  background-color: var(--secondary-color);
  text-align: center;
  color: var(--white) !important;
  border-radius: 12px;
  cursor: pointer;
  padding: 15px;
  font-weight: 500;
  font-size: 16px !important;
}
label[for=input-pet-image]::before, label[for=input-add-doc]::before {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 1C9.5 0.447715 9.05229 0 8.5 0C7.94772 0 7.5 0.447715 7.5 1V7H1.5C0.947715 7 0.5 7.44772 0.5 8C0.5 8.55229 0.947715 9 1.5 9H7.5V15C7.5 15.5523 7.94772 16 8.5 16C9.05229 16 9.5 15.5523 9.5 15V9H15.5C16.0523 9 16.5 8.55229 16.5 8C16.5 7.44772 16.0523 7 15.5 7H9.5V1Z" fill="white" /></svg>');
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  margin-right: 5px;
  vertical-align: middle;
  background-position: center;
  margin-bottom: 5px;
}

label[for=input-attach-doc] {
  background-color: transparent;
  text-align: center;
  color: var(--font-color) !important;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
label[for=input-attach-doc]::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='26' cy='26' r='26' fill='%23EDE5DD'/%3E%3Cpath d='M23 26H29M23 30H29M31 35H21C19.8954 35 19 34.1046 19 33V19C19 17.8954 19.8954 17 21 17H26.5858C26.851 17 27.1054 17.1054 27.2929 17.2929L32.7071 22.7071C32.8946 22.8946 33 23.149 33 23.4142V33C33 34.1046 32.1046 35 31 35Z' stroke='%23BE976F' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E ");
  display: inline-block;
  background-repeat: no-repeat;
  width: 52px;
  height: 52px;
  background-size: contain;
  vertical-align: middle;
  background-position: center;
  margin-bottom: 15px;
}

label[for=input-add-doc] {
  width: 100%;
}

.image-preview-block {
  text-align: center;
}
.image-preview-block .button-delete, .image-preview-block .button-transparent {
  margin-bottom: 1rem;
  display: none;
}
.image-preview-block .bold-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
}

.image-preview {
  width: 85px;
  height: 85px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.company-image {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

#input-age {
  background-color: #F3F3F3;
  border: 1px solid #BFBFBF;
  padding: 0.375rem 0.75rem;
}

input:-moz-read-only {
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  height: auto;
}

input:read-only {
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  height: auto;
}

input:disabled {
  background-color: #F3F3F3 !important;
  border: 2px solid #BFBFBF !important;
  padding: 0.375rem 0.75rem !important;
  border: none;
  color: #BFBFBF !important;
  font-size: 14px;
  font-weight: 400;
  height: 48px;
}

input:disabled.disabled-text-visible {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  color: var(--primary-color) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  height: auto !important;
}

.amount-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.amount-block .form-group {
  margin: 0;
}
.amount-block .form-group input {
  text-align: right;
  color: var(--font-color);
  font-size: 14px;
  font-weight: 400;
}

.subtotal-text {
  margin-bottom: 10px;
  color: var(--font-color);
  font-size: 14px;
  font-weight: 500;
}

.form-billing-text {
  color: var(--font-color);
  font-size: 20px;
  font-weight: 600;
}

.subtotal-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  margin-bottom: 15px;
}
.subtotal-block span {
  color: var(--font-color);
}
.subtotal-block .form-label {
  display: none;
}
.subtotal-block .subtotal {
  margin-bottom: 0;
  color: var(--font-color);
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}
.subtotal-block .form-control {
  width: 80px;
  margin-bottom: 0;
  color: var(--font-color);
  font-size: 18px;
  font-weight: 500;
}
.subtotal-block .form-group {
  margin-bottom: 0;
}
.subtotal-block .form-control::-webkit-input-placeholder {
  color: var(--font-color);
  font-size: 18px;
  font-weight: 500;
}
.subtotal-block .form-control::-moz-placeholder {
  color: var(--font-color);
  font-size: 18px;
  font-weight: 500;
}
.subtotal-block .form-control:-ms-input-placeholder {
  color: var(--font-color);
  font-size: 18px;
  font-weight: 500;
}
.subtotal-block .form-control::-ms-input-placeholder {
  color: var(--font-color);
  font-size: 18px;
  font-weight: 500;
}
.subtotal-block .form-control::placeholder {
  color: var(--font-color);
  font-size: 18px;
  font-weight: 500;
}

.accordion-form {
  margin-bottom: 250px;
}
.accordion-form .accordion-item {
  border-color: var(--primary-color);
}
.accordion-form .accordion-body {
  padding: 0;
}
.accordion-form .accordion-button {
  padding: 20px 0;
}
.accordion-form .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--font-color);
  box-shadow: unset;
}
.accordion-form .accordion-button:focus {
  border: none;
  box-shadow: unset;
}
.accordion-form .accordion-button::after {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="7" viewBox="0 0 12 7"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M0.96967 0.21967C1.26256 -0.0732233 1.73744 -0.0732233 2.03033 0.21967L6.375 4.56434L10.7197 0.21967C11.0126 -0.0732229 11.4874 -0.0732229 11.7803 0.21967C12.0732 0.512564 12.0732 0.987437 11.7803 1.28033L6.90533 6.15533C6.76468 6.29598 6.57391 6.375 6.375 6.375C6.17609 6.375 5.98532 6.29598 5.84467 6.15533L0.96967 1.28033C0.676777 0.987437 0.676777 0.512563 0.96967 0.21967Z" fill="%232B3842"%3E%3C/path%3E%3C/svg%3E');
  background-size: 12px;
  height: 7px;
}

.inputs-radio-container {
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-bottom: 20px;
}
.inputs-radio-container .form-group {
  margin-bottom: 0;
}
.inputs-radio-container .form-check-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  border: 1px solid var(--primary-color);
}
.inputs-radio-container .form-check-input:checked {
  outline: 1px solid var(--primary-color);
  background: var(--primary-color);
  border: 3px solid #FFF;
}
.inputs-radio-container .form-check-input:focus {
  outline: 1px solid var(--primary-color);
  background: var(--primary-color);
  border: 3px solid #FFF;
  box-shadow: unset;
}
.inputs-radio-container .form-check-label {
  display: inline;
}

.doc-image-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 26px;
}
.doc-image-container .doc {
  border-radius: 12px;
  width: calc(50% - 13px);
  text-align: center;
  position: relative;
}
.doc-image-container .doc-image {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.doc-image-container .doc-url {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.doc-view {
  text-align: center;
}
.doc-view .doc-view-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.doc-view .doc-view-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.doc-view .doc-view-buttons a {
  color: transparent;
}

.select2 {
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  background-color: var(--white);
  font-size: 14px;
  color: var(--font-color);
  height: 48px;
}
.select2 span.select2-selection.select2-selection--single {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
}

.select2-results__option[role=option][aria-selected=true] {
  background-color: var(--primary-color);
}

#farewallHidenBlock {
  display: none;
}

#hiddenMountInput {
  display: none;
}

#arrivalHidenBlock {
  display: none;
}

#wakeRoom {
  display: none;
}

#commonHiddenBlock {
  display: none;
}

#homeRoom {
  display: none;
}

#conIvaText {
  display: none;
}

#sinIvaText {
  display: none;
}

.menu-card {
  padding: 0;
  list-style: none;
  margin: 0;
}

.menu-card-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 !important;
}
.menu-card-item.only-fill svg:first-child path {
  stroke: none;
  fill: var(--primary-color);
}
.menu-card-item svg path {
  stroke: var(--primary-color);
}
.menu-card-item > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  font-size: 14px;
  color: var(--font-color);
  width: 100%;
  padding: 15px;
}
.menu-card-item > a span {
  display: block;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  line-height: 2;
  padding: 0 10px;
}

.cards-container {
  margin-bottom: 100px;
}

.card {
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
  border: 0;
  margin: 0 0 20px 0;
}

.card-client {
  position: relative;
}
.card-client-title {
  font-size: 16px;
  max-width: 95%;
}
.card-client-title-hidden {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.card-client-description {
  font-weight: 300;
  font-size: 12px;
  color: var(--gray);
}
.card-client-info-title {
  font-size: 14px;
}
.card-client-info-text {
  font-size: 12px;
}
.card-client > a {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.card-client-container {
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  list-style: none;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.card-client:nth-child(3n+1) .card-client-thumbnail span {
  background-color: var(--primary-color);
}
.card-client:nth-child(3n+2) .card-client-thumbnail span {
  background-color: var(--color1);
}
.card-client:nth-child(3n+3) .card-client-thumbnail span {
  background-color: var(--color2);
}
.card-client:nth-child(3n+4) .card-client-thumbnail span {
  background-color: var(--color3);
}

.card-client-thumbnail, .card-client-actions {
  width: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.card-client-actions svg path {
  stroke: var(--primary-color);
}
.card-client-actions.fill-secondary svg path {
  stroke: var(--secondary-color);
}

.card-client-thumbnail span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: var(--black);
  color: var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 14px;
  text-transform: uppercase;
}

.card-client-info {
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex: 1 0 0px;
      flex: 1 0 0;
  padding: 0 10px;
  max-width: 80%;
}
.card-client-info p, .card-client-info .card-client-title {
  padding: 0;
  margin: 0;
}

.card-client-data {
  background-color: var(--white);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 15px 25px;
  position: relative;
}
.card-client-data .info-client-title {
  font-weight: 500;
  font-size: 14px;
  color: var(--font-color);
}
.card-client-data .info-client-data {
  font-weight: 400;
  font-size: 12px;
  color: var(--font-color);
}
.card-client-data .info-client-link {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

.treasury-card {
  background-color: var(--white);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 15px 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
  background-color: var(--color4);
}
.treasury-card .treasury-text {
  font-size: 12px;
  color: var(--font-color);
  margin-bottom: 0;
}
.treasury-card .treasury-price {
  font-size: 16px;
  color: var(--font-color);
  margin-bottom: 0;
}
.treasury-card .treasury-title {
  font-size: 14px;
  color: var(--font-color);
  font-weight: 500;
}
.treasury-card .treasury-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.treasury-card .budget-block {
  background-color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  right: 0;
  height: 100%;
  bottom: 0;
  top: 0;
  width: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 0 8px 8px 0;
}

.treasury-cards-container {
  margin: 20px 0 200px 0;
}
.treasury-cards-container .treasury-card {
  -ms-flex-align: start;
      align-items: flex-start;
}

.dropdown-button svg path {
  stroke: var(--primary-color);
}

.dropdown-card .dropdown-menu {
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
  border: none;
  padding: 10px 20px;
}
.dropdown-card .dropdown-menu li, .dropdown-card .dropdown-menu li a, .dropdown-card .dropdown-menu .button-collapse {
  color: var(--font-color);
  font-size: 14px;
  padding: 10px 0;
  text-decoration: none;
}
.dropdown-card .dropdown-menu .button-collapse {
  background-color: transparent;
  border: none;
}
.dropdown-card .dropdown-button {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  text-align: center;
}
.dropdown-card .dropdown-button.show {
  background-color: rgba(203, 193, 182, 0.2);
}

.doc-card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 12px;
}
.doc-card-hidden {
  display: none;
}
.doc-card-title {
  font-weight: 500;
  font-size: 14px;
  color: var(--font-color);
}
.doc-card .doc-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.doc-card .doc-buttons a {
  text-decoration: none;
  text-align: center;
}

.button {
  outline: none;
  border: 0;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
  border-radius: 24px !important;
  padding: 13px 24px;
  color: var(--font-color);
}
.button-primary {
  background-color: var(--primary-color);
  width: 100%;
  border: none;
  color: var(--white);
  font-weight: 500;
}
.button-primary[disabled] {
  background-color: var(--disabled-button);
}
.button-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
}
.button-secondary-add {
  width: 100%;
  border-radius: 12px;
  padding: 15px 0;
  border: none;
  font-weight: 500;
  font-size: 16px;
}
.button-secondary-add:disabled {
  color: var(--white);
  background-color: var(--disabled-button);
}
.button-outline {
  background-color: var(--white);
  color: var(--font-color);
  border: 1px solid var(--font-color);
  text-decoration: none;
}
.button-outline-add {
  border-radius: 20px;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 16px;
  background-color: transparent;
}
.button-outline-add svg {
  width: 20px;
  height: 20px;
}
.button-outline-add svg path {
  stroke: var(--secondary-color);
  stroke-width: 2;
}
.button-outline-filter {
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  box-shadow: unset;
}
.button:disabled {
  color: var(--white);
  background-color: var(--disabled-button);
}

.button-delete, .button-transparent {
  width: 100%;
  background-color: transparent;
  border: none;
  color: var(--primary-color);
  font-weight: 500;
}
.button-delete svg, .button-transparent svg {
  margin: -4px 5px 0 0;
}
.button-delete svg path, .button-transparent svg path {
  stroke: var(--primary-color);
}

.button-float {
  position: fixed;
  z-index: 3;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
}
.button-float-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
}
.button-float .button {
  margin-bottom: 16px;
  display: block;
  width: 100%;
}
.button-float .button:last-child {
  margin-bottom: 0;
}
.button-float.bottom {
  bottom: 30px;
  right: 30px;
}
.button-float.bottom-center {
  bottom: 0px;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.05) 0px -1px 2px 0px;
}

.button-validate {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  row-gap: 15px;
  background-color: transparent;
  border: none;
  font-size: 14px;
  width: 100px;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-white {
  background-color: var(--white);
}
.bg-light-brown {
  background-color: var(--color4);
}

#topNav {
  border-radius: 0px 0px 24px 24px;
  padding: 15px 0;
}

#topNavMain {
  position: relative;
}

.topnav-title {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
}
.topnav-section {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 20px;
  color: var(--section-title-color);
}

.nav-with-search {
  margin-top: 20px;
}
.nav-with-search .topnav-title {
  margin-bottom: 10px;
}

.topnavmain-button {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 20px;
}

.topnavright {
  left: auto;
  right: 0px;
  margin-right: 20px;
  margin-left: 0px;
}

#changeBusiness {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}
#changeBusiness i {
  margin-left: 13px;
}

#changeBusinessModal {
  position: fixed;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
#changeBusinessModal.open {
  visibility: visible;
  opacity: 1;
}
#changeBusinessModal .drawer {
  background-color: var(--white);
  width: 100%;
  padding: 20px 0;
  border-radius: 8px 8px 0px 0px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
}

.drawer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 300px;
  margin: 0 auto;
  position: relative;
}
.drawer-list:before {
  content: "";
  position: absolute;
  width: 48px;
  height: 4px;
  display: block;
  background-color: var(--primary-color);
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.drawer-list li {
  padding-top: 20px;
  position: relative;
}
.drawer-list label {
  color: var(--font-color);
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.drawer-list label span {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  z-index: 2;
  transition: 0.3s;
}
.drawer-list label span:after {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  z-index: 3;
  background-color: var(--white);
  transition: 0.3s;
}
.drawer-list label input[type=radio] {
  display: none;
}
.drawer-list label input[type=radio]:checked + span:after {
  background-color: var(--primary-color);
}

.modal .modal-title {
  font-weight: 500;
  font-size: 18px;
  color: var(--font-color);
  text-align: center;
}
.modal .modal-text {
  font-weight: 700;
  font-size: 14px;
  color: var(--font-color);
}
.modal .modal-content {
  border-radius: 12px;
  padding: 20px;
  margin: 0 20px;
}
.modal .modal-footer, .modal .modal-header {
  border: none;
}
.modal .modal-footer {
  -ms-flex-direction: column;
      flex-direction: column;
}
.modal .modal-footer button, .modal .modal-footer a {
  text-align: center;
  width: 100%;
}

#addDoctorModal .modal-header {
  margin-left: auto;
  padding: 0;
}
#addDoctorModal .modal-header svg {
  width: 15px;
  height: 15px;
}
#addDoctorModal .modal-header svg path {
  fill: var(--primary-color);
}
#addDoctorModal .modal-title {
  text-align: left;
}
#addDoctorModal button {
  width: 100%;
}

#page-budget .modal-add-charge .modal-dialog {
  bottom: 20px;
}

#modalAddDocuments .modal-dialog {
  min-height: 100%;
}
#modalAddDocuments .modal-content {
  border-radius: 12px 12px 0 0;
}

.modal-add-charge .modal-content {
  margin: 0;
}
.modal-add-charge .modal-dialog {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  margin: 0;
}
.modal-add-charge .modal-title {
  text-align: left;
}
.modal-add-charge .modal-header {
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: 0;
}
.modal-add-charge .modal-header svg path {
  fill: var(--primary-color);
}
.modal-add-charge .modal-body {
  margin-bottom: 100px;
}

#filterModal.modal .modal-content {
  padding: 10px;
}

#page-charges #filterModal .form-group:last-of-type {
  display: none;
}

#validateModal {
  background-color: rgba(43, 56, 66, 0.6);
}

#validateModal .modal-dialog {
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  height: 100%;
}
#validateModal .modal-content {
  margin: 0;
  border-radius: 12px 12px 0 0;
  padding: 10px 20px;
}
#validateModal .validate-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
#validateModal .form-group {
  width: 100px;
}

#docsModal .modal-body {
  padding: 0 1rem;
}
#docsModal .doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#docsModal .doc-list li {
  margin-bottom: 10px;
}
#docsModal .doc-list li .doc {
  font-size: 18px;
  text-decoration: none;
  color: black;
}

.checkbox-wrapper-4 * {
  box-sizing: border-box;
}

.checkbox-wrapper-4 .cbx {
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
  padding: 6px 0px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: inline-block;
}

.checkbox-wrapper-4 .cbx:not(:last-child) {
  margin-right: 6px;
}

.checkbox-wrapper-4 .cbx span {
  float: left;
  vertical-align: middle;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  -webkit-transform: scale(1);
          transform: scale(1);
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.checkbox-wrapper-4 .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}

.checkbox-wrapper-4 .cbx:hover span:first-child {
  border-color: var(--font-color);
}

.checkbox-wrapper-4 .inp-cbx {
  position: absolute;
  visibility: hidden;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
  background: var(--font-color);
  border-color: var(--font-color);
  -webkit-animation: wave-4 0.4s ease;
          animation: wave-4 0.4s ease;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-4 .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (max-width: 640px) {
  .checkbox-wrapper-4 .cbx {
    width: 100%;
    display: inline-block;
  }
}
@-webkit-keyframes wave-4 {
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@keyframes wave-4 {
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@media (min-width: 1700px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1640px;
  }
}
.row {
  --bs-gutter-x: 16px;
}
@media screen and (max-width: 768px) {
  .row {
    --bs-gutter-x: 8px;
  }
}

.centered-block-container {
  margin: 40px;
  text-align: center;
}
.centered-block-container .centered-block-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--font-color);
}
.centered-block-container svg {
  margin-bottom: 30px;
}

.toast-container {
  -ms-flex-align: center;
      align-items: center;
}
.toast-container .toast {
  border: none;
  border-radius: 8px;
}
.toast-container .toast-body {
  -ms-flex-align: center;
      align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.toast-container .toast-text {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--font-color);
  -ms-flex: 1 0 0px;
      flex: 1 0 0;
}
.toast-container svg rect {
  fill: var(--primary-color);
}

.text {
  font-size: 14px;
  color: var(--font-color);
}

.nav-tabs {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border: none;
}
.nav-tabs .nav-link {
  padding: 8px 20px;
  border-radius: 21px;
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.nav-tabs .nav-link:hover {
  border: 1px solid var(--secondary-color);
}
.nav-tabs .nav-link.active {
  border: none;
  background-color: var(--secondary-color);
  color: var(--white);
}

.docs-preview-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.image-preview-content {
  width: calc(50% - 8px);
  text-align: center;
}

.docs-preview {
  width: 100%;
  height: 145px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.treasury-cards-container {
  margin: 20px 0;
}

.section-login {
  height: 90vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: #F9F9F9;
}
.section-login .button-outline {
  background-color: transparent !important;
  box-shadow: unset !important;
  display: block;
  width: 100%;
  text-align: center;
}
.section-login .button-secondary {
  display: block;
  width: 100%;
  text-align: center;
}

.input-password {
  position: relative;
}

.eye-button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.eye-button .password-eye-show {
  display: none;
}

#page-select-company {
  background-color: #2B3842;
}

.select-title {
  padding-top: 150px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.company-boxs {
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.company-box {
  -ms-flex: 0 0 calc(33% - 6px);
      flex: 0 0 calc(33% - 6px);
  max-width: 33%;
  background: #fff;
  padding: 50px 14px;
  border-radius: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}

.company-img {
  width: 100%;
}

.company-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-thumb {
  background: black;
}

::-webkit-scrollbar-track {
  background: gray;
}

body {
  scrollbar-face-color: black;
  scrollbar-track-color: gray;
}

body,
html {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  min-height: 100%;
  background-color: #fff;
}

body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

main {
  padding: 20px 0px;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}

#page-login {
  background-color: #F9F9F9;
}
