@charset "UTF-8";

/*!
 * BootstrapVue Custom CSS (https://bootstrap-vue.org)
 */

.bv-no-focus-ring:focus {
  outline: none;
}

@media (max-width: 575.98px) {
  .bv-d-xs-down-none {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .bv-d-sm-down-none {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .bv-d-md-down-none {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .bv-d-lg-down-none {
    display: none !important;
  }
}

.bv-d-xl-down-none {
  display: none !important;
}

.form-control.focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control.focus.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control.focus.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.b-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: inherit;
  font-weight: 400;
  line-height: 1;
  max-width: 100%;
  max-height: auto;
  text-align: center;
  overflow: visible;
  position: relative;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.b-avatar:focus {
  outline: 0;
}

.b-avatar.btn,
.b-avatar[href] {
  padding: 0;
  border: 0;
}

.b-avatar.btn .b-avatar-img img,
.b-avatar[href] .b-avatar-img img {
  transition: transform 0.15s ease-in-out;
}

.b-avatar.btn:not(:disabled):not(.disabled),
.b-avatar[href]:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.b-avatar.btn:not(:disabled):not(.disabled):hover .b-avatar-img img,
.b-avatar[href]:not(:disabled):not(.disabled):hover .b-avatar-img img {
  transform: scale(1.15);
}

.b-avatar.disabled,
.b-avatar:disabled,
.b-avatar[disabled] {
  opacity: 0.65;
  pointer-events: none;
}

.b-avatar .b-avatar-custom,
.b-avatar .b-avatar-img,
.b-avatar .b-avatar-text {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-mask-image: radial-gradient(#fff, #000);
  mask-image: radial-gradient(#fff, #000);
}

.b-avatar .b-avatar-text {
  text-transform: uppercase;
  white-space: nowrap;
}

.b-avatar[href] {
  text-decoration: none;
}

.b-avatar > .b-icon {
  width: 60%;
  height: auto;
  max-width: 100%;
}

.b-avatar .b-avatar-img img {
  width: 100%;
  height: 100%;
  max-height: auto;
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
}

.b-avatar .b-avatar-badge {
  position: absolute;
  min-height: 1.5em;
  min-width: 1.5em;
  padding: 0.25em;
  line-height: 1;
  border-radius: 10em;
  font-size: 70%;
  font-weight: 700;
  z-index: 1;
}

.b-avatar-sm {
  width: 1.5rem;
  height: 1.5rem;
}

.b-avatar-sm .b-avatar-text {
  font-size: 0.6rem;
}

.b-avatar-sm .b-avatar-badge {
  font-size: 0.42rem;
}

.b-avatar-lg {
  width: 3.5rem;
  height: 3.5rem;
}

.b-avatar-lg .b-avatar-text {
  font-size: 1.4rem;
}

.b-avatar-lg .b-avatar-badge {
  font-size: 0.98rem;
}

.b-avatar-group .b-avatar-group-inner {
  display: flex;
  flex-wrap: wrap;
}

.b-avatar-group .b-avatar {
  border: 1px solid #dee2e6;
}

.b-avatar-group .btn.b-avatar:hover:not(.disabled):not(disabled),
.b-avatar-group a.b-avatar:hover:not(.disabled):not(disabled) {
  z-index: 1;
}

.b-calendar {
  display: inline-flex;
}

.b-calendar .b-calendar-inner {
  min-width: 250px;
}

.b-calendar .b-calendar-header,
.b-calendar .b-calendar-nav {
  margin-bottom: 0.25rem;
}

.b-calendar .b-calendar-nav .btn {
  padding: 0.25rem;
}

.b-calendar output {
  padding: 0.25rem;
  font-size: 80%;
}

.b-calendar output.readonly {
  background-color: #e9ecef;
  opacity: 1;
}

.b-calendar .b-calendar-footer {
  margin-top: 0.5rem;
}

.b-calendar .b-calendar-grid {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.b-calendar .b-calendar-grid .row {
  flex-wrap: nowrap;
}

.b-calendar .b-calendar-grid-caption {
  padding: 0.25rem;
}

.b-calendar .b-calendar-grid-body .col[data-date] .btn {
  width: 32px;
  height: 32px;
  font-size: 14px;
  line-height: 1;
  margin: 3px auto;
  padding: 9px 0;
}

.b-calendar .btn.disabled,
.b-calendar .btn:disabled,
.b-calendar .btn[aria-disabled=true] {
  cursor: default;
  pointer-events: none;
}

.card-img-left {
  border-top-left-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-img-right {
  border-top-right-radius: calc(0.25rem - 1px);
  border-bottom-right-radius: calc(0.25rem - 1px);
}

.dropdown.dropleft .dropdown-toggle.dropdown-toggle-no-caret:before,
.dropdown:not(.dropleft) .dropdown-toggle.dropdown-toggle-no-caret:after {
  display: none !important;
}

.dropdown .dropdown-menu:focus {
  outline: none;
}

.b-dropdown-form {
  display: inline-block;
  padding: 0.25rem 1.5rem;
  width: 100%;
  clear: both;
  font-weight: 400;
}

.b-dropdown-form:focus {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}

.b-dropdown-form.disabled,
.b-dropdown-form:disabled {
  outline: 0 !important;
  color: #adb5bd;
  pointer-events: none;
}

.b-dropdown-text {
  display: inline-block;
  padding: 0.25rem 1.5rem;
  margin-bottom: 0;
  width: 100%;
  clear: both;
  font-weight: lighter;
}

.custom-checkbox.b-custom-control-lg,
.input-group-lg .custom-checkbox {
  font-size: 1.25rem;
  line-height: 1.5;
  padding-left: 1.875rem;
}

.custom-checkbox.b-custom-control-lg .custom-control-label:before,
.input-group-lg .custom-checkbox .custom-control-label:before {
  top: 0.3125rem;
  left: -1.875rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.3rem;
}

.custom-checkbox.b-custom-control-lg .custom-control-label:after,
.input-group-lg .custom-checkbox .custom-control-label:after {
  top: 0.3125rem;
  left: -1.875rem;
  width: 1.25rem;
  height: 1.25rem;
  background-size: 50% 50%;
}

.custom-checkbox.b-custom-control-sm,
.input-group-sm .custom-checkbox {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 1.3125rem;
}

.custom-checkbox.b-custom-control-sm .custom-control-label:before,
.input-group-sm .custom-checkbox .custom-control-label:before {
  top: 0.21875rem;
  left: -1.3125rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.2rem;
}

.custom-checkbox.b-custom-control-sm .custom-control-label:after,
.input-group-sm .custom-checkbox .custom-control-label:after {
  top: 0.21875rem;
  left: -1.3125rem;
  width: 0.875rem;
  height: 0.875rem;
  background-size: 50% 50%;
}

.custom-switch.b-custom-control-lg,
.input-group-lg .custom-switch {
  padding-left: 2.8125rem;
}

.custom-switch.b-custom-control-lg .custom-control-label,
.input-group-lg .custom-switch .custom-control-label {
  font-size: 1.25rem;
  line-height: 1.5;
}

.custom-switch.b-custom-control-lg .custom-control-label:before,
.input-group-lg .custom-switch .custom-control-label:before {
  top: 0.3125rem;
  height: 1.25rem;
  left: -2.8125rem;
  width: 2.1875rem;
  border-radius: 0.625rem;
}

.custom-switch.b-custom-control-lg .custom-control-label:after,
.input-group-lg .custom-switch .custom-control-label:after {
  top: calc(0.3125rem + 2px);
  left: calc(-2.8125rem + 2px);
  width: calc(1.25rem - 4px);
  height: calc(1.25rem - 4px);
  border-radius: 0.625rem;
  background-size: 50% 50%;
}

.custom-switch.b-custom-control-lg .custom-control-input:checked ~ .custom-control-label:after,
.input-group-lg .custom-switch .custom-control-input:checked ~ .custom-control-label:after {
  transform: translateX(0.9375rem);
}

.custom-switch.b-custom-control-sm,
.input-group-sm .custom-switch {
  padding-left: 1.96875rem;
}

.custom-switch.b-custom-control-sm .custom-control-label,
.input-group-sm .custom-switch .custom-control-label {
  font-size: 0.875rem;
  line-height: 1.5;
}

.custom-switch.b-custom-control-sm .custom-control-label:before,
.input-group-sm .custom-switch .custom-control-label:before {
  top: 0.21875rem;
  left: -1.96875rem;
  width: 1.53125rem;
  height: 0.875rem;
  border-radius: 0.4375rem;
}

.custom-switch.b-custom-control-sm .custom-control-label:after,
.input-group-sm .custom-switch .custom-control-label:after {
  top: calc(0.21875rem + 2px);
  left: calc(-1.96875rem + 2px);
  width: calc(0.875rem - 4px);
  height: calc(0.875rem - 4px);
  border-radius: 0.4375rem;
  background-size: 50% 50%;
}

.custom-switch.b-custom-control-sm .custom-control-input:checked ~ .custom-control-label:after,
.input-group-sm .custom-switch .custom-control-input:checked ~ .custom-control-label:after {
  transform: translateX(0.65625rem);
}

.input-group > .input-group-append:last-child > .btn-group:not(:last-child):not(.dropdown-toggle) > .btn,
.input-group > .input-group-append:not(:last-child) > .btn-group > .btn,
.input-group > .input-group-prepend > .btn-group > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn-group > .btn,
.input-group > .input-group-prepend:first-child > .btn-group:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .btn-group > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.b-form-btn-label-control.form-control {
  display: flex;
  align-items: stretch;
  height: auto;
  padding: 0;
  background-image: none;
}

.input-group .b-form-btn-label-control.form-control {
  padding: 0;
}

.b-form-btn-label-control.form-control[dir=rtl],
[dir=rtl] .b-form-btn-label-control.form-control {
  flex-direction: row-reverse;
}

.b-form-btn-label-control.form-control[dir=rtl] > label,
[dir=rtl] .b-form-btn-label-control.form-control > label {
  text-align: right;
}

.b-form-btn-label-control.form-control > .btn {
  line-height: 1;
  font-size: inherit;
  box-shadow: none !important;
  border: 0;
}

.b-form-btn-label-control.form-control > .btn:disabled {
  pointer-events: none;
}

.b-form-btn-label-control.form-control.is-valid > .btn {
  color: #28a745;
}

.b-form-btn-label-control.form-control.is-invalid > .btn {
  color: #dc3545;
}

.b-form-btn-label-control.form-control > .dropdown-menu {
  padding: 0.5rem;
}

.b-form-btn-label-control.form-control > .form-control {
  height: auto;
  min-height: calc(1.5em + 0.75rem);
  padding-left: 0.25rem;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
  word-break: break-word;
  font-size: inherit;
  white-space: normal;
  cursor: pointer;
}

.b-form-btn-label-control.form-control > .form-control.form-control-sm {
  min-height: calc(1.5em + 0.5rem);
}

.b-form-btn-label-control.form-control > .form-control.form-control-lg {
  min-height: calc(1.5em + 1rem);
}

.input-group.input-group-sm .b-form-btn-label-control.form-control > .form-control {
  min-height: calc(1.5em + 0.5rem);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.input-group.input-group-lg .b-form-btn-label-control.form-control > .form-control {
  min-height: calc(1.5em + 1rem);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.b-form-btn-label-control.form-control[aria-disabled=true],
.b-form-btn-label-control.form-control[aria-readonly=true] {
  background-color: #e9ecef;
  opacity: 1;
}

.b-form-btn-label-control.form-control[aria-disabled=true] {
  pointer-events: none;
}

.b-form-btn-label-control.form-control[aria-disabled=true] > label {
  cursor: default;
}

.b-form-btn-label-control.btn-group > .dropdown-menu {
  padding: 0.5rem;
}

.custom-file-label {
  white-space: nowrap;
  overflow-x: hidden;
}

.b-custom-control-lg.custom-file,
.b-custom-control-lg .custom-file-input,
.b-custom-control-lg .custom-file-label,
.input-group-lg.custom-file,
.input-group-lg .custom-file-input,
.input-group-lg .custom-file-label {
  font-size: 1.25rem;
  height: calc(1.5em + 1rem + 2px);
}

.b-custom-control-lg .custom-file-label,
.b-custom-control-lg .custom-file-label:after,
.input-group-lg .custom-file-label,
.input-group-lg .custom-file-label:after {
  padding: 0.5rem 1rem;
  line-height: 1.5;
}

.b-custom-control-lg .custom-file-label,
.input-group-lg .custom-file-label {
  border-radius: 0.3rem;
}

.b-custom-control-lg .custom-file-label:after,
.input-group-lg .custom-file-label:after {
  font-size: inherit;
  height: calc(1.5em + 1rem);
  border-radius: 0 0.3rem 0.3rem 0;
}

.b-custom-control-sm.custom-file,
.b-custom-control-sm .custom-file-input,
.b-custom-control-sm .custom-file-label,
.input-group-sm.custom-file,
.input-group-sm .custom-file-input,
.input-group-sm .custom-file-label {
  font-size: 0.875rem;
  height: calc(1.5em + 0.5rem + 2px);
}

.b-custom-control-sm .custom-file-label,
.b-custom-control-sm .custom-file-label:after,
.input-group-sm .custom-file-label,
.input-group-sm .custom-file-label:after {
  padding: 0.25rem 0.5rem;
  line-height: 1.5;
}

.b-custom-control-sm .custom-file-label,
.input-group-sm .custom-file-label {
  border-radius: 0.2rem;
}

.b-custom-control-sm .custom-file-label:after,
.input-group-sm .custom-file-label:after {
  font-size: inherit;
  height: calc(1.5em + 0.5rem);
  border-radius: 0 0.2rem 0.2rem 0;
}

.form-control.is-invalid,
.form-control.is-valid,
.was-validated .form-control:invalid,
.was-validated .form-control:valid {
  background-position: right calc(0.375em + 0.1875rem) center;
}

input[type=color].form-control {
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.125rem 0.25rem;
}

.input-group-sm input[type=color].form-control,
input[type=color].form-control.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.125rem 0.25rem;
}

.input-group-lg input[type=color].form-control,
input[type=color].form-control.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.125rem 0.25rem;
}

input[type=color].form-control:disabled {
  background-color: #adb5bd;
  opacity: 0.65;
}

.input-group > .custom-range {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .custom-file + .custom-range,
.input-group > .custom-range + .custom-file,
.input-group > .custom-range + .custom-range,
.input-group > .custom-range + .custom-select,
.input-group > .custom-range + .form-control,
.input-group > .custom-range + .form-control-plaintext,
.input-group > .custom-select + .custom-range,
.input-group > .form-control + .custom-range,
.input-group > .form-control-plaintext + .custom-range {
  margin-left: -1px;
}

.input-group > .custom-range:focus {
  z-index: 3;
}

.input-group > .custom-range:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-range:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-range {
  padding: 0 0.75rem;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  height: calc(1.5em + 0.75rem + 2px);
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .input-group > .custom-range {
    transition: none;
  }
}

.input-group > .custom-range:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-group > .custom-range:disabled,
.input-group > .custom-range[readonly] {
  background-color: #e9ecef;
}

.input-group-lg > .custom-range {
  height: calc(1.5em + 1rem + 2px);
  padding: 0 1rem;
  border-radius: 0.3rem;
}

.input-group-sm > .custom-range {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0 0.5rem;
  border-radius: 0.2rem;
}

.input-group .custom-range.is-valid,
.was-validated .input-group .custom-range:valid {
  border-color: #28a745;
}

.input-group .custom-range.is-valid:focus,
.was-validated .input-group .custom-range:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.custom-range.is-valid:focus::-webkit-slider-thumb,
.was-validated .custom-range:valid:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac;
}

.custom-range.is-valid:focus::-moz-range-thumb,
.was-validated .custom-range:valid:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac;
}

.custom-range.is-valid:focus::-ms-thumb,
.was-validated .custom-range:valid:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac;
}

.custom-range.is-valid::-webkit-slider-thumb,
.was-validated .custom-range:valid::-webkit-slider-thumb {
  background-color: #28a745;
  background-image: none;
}

.custom-range.is-valid::-webkit-slider-thumb:active,
.was-validated .custom-range:valid::-webkit-slider-thumb:active {
  background-color: #9be7ac;
  background-image: none;
}

.custom-range.is-valid::-webkit-slider-runnable-track,
.was-validated .custom-range:valid::-webkit-slider-runnable-track {
  background-color: rgba(40, 167, 69, 0.35);
}

.custom-range.is-valid::-moz-range-thumb,
.was-validated .custom-range:valid::-moz-range-thumb {
  background-color: #28a745;
  background-image: none;
}

.custom-range.is-valid::-moz-range-thumb:active,
.was-validated .custom-range:valid::-moz-range-thumb:active {
  background-color: #9be7ac;
  background-image: none;
}

.custom-range.is-valid::-moz-range-track,
.was-validated .custom-range:valid::-moz-range-track {
  background: rgba(40, 167, 69, 0.35);
}

.custom-range.is-valid ~ .valid-feedback,
.custom-range.is-valid ~ .valid-tooltip,
.was-validated .custom-range:valid ~ .valid-feedback,
.was-validated .custom-range:valid ~ .valid-tooltip {
  display: block;
}

.custom-range.is-valid::-ms-thumb,
.was-validated .custom-range:valid::-ms-thumb {
  background-color: #28a745;
  background-image: none;
}

.custom-range.is-valid::-ms-thumb:active,
.was-validated .custom-range:valid::-ms-thumb:active {
  background-color: #9be7ac;
  background-image: none;
}

.custom-range.is-valid::-ms-track-lower,
.custom-range.is-valid::-ms-track-upper,
.was-validated .custom-range:valid::-ms-track-lower,
.was-validated .custom-range:valid::-ms-track-upper {
  background: rgba(40, 167, 69, 0.35);
}

.input-group .custom-range.is-invalid,
.was-validated .input-group .custom-range:invalid {
  border-color: #dc3545;
}

.input-group .custom-range.is-invalid:focus,
.was-validated .input-group .custom-range:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-range.is-invalid:focus::-webkit-slider-thumb,
.was-validated .custom-range:invalid:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1;
}

.custom-range.is-invalid:focus::-moz-range-thumb,
.was-validated .custom-range:invalid:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1;
}

.custom-range.is-invalid:focus::-ms-thumb,
.was-validated .custom-range:invalid:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1;
}

.custom-range.is-invalid::-webkit-slider-thumb,
.was-validated .custom-range:invalid::-webkit-slider-thumb {
  background-color: #dc3545;
  background-image: none;
}

.custom-range.is-invalid::-webkit-slider-thumb:active,
.was-validated .custom-range:invalid::-webkit-slider-thumb:active {
  background-color: #f6cdd1;
  background-image: none;
}

.custom-range.is-invalid::-webkit-slider-runnable-track,
.was-validated .custom-range:invalid::-webkit-slider-runnable-track {
  background-color: rgba(220, 53, 69, 0.35);
}

.custom-range.is-invalid::-moz-range-thumb,
.was-validated .custom-range:invalid::-moz-range-thumb {
  background-color: #dc3545;
  background-image: none;
}

.custom-range.is-invalid::-moz-range-thumb:active,
.was-validated .custom-range:invalid::-moz-range-thumb:active {
  background-color: #f6cdd1;
  background-image: none;
}

.custom-range.is-invalid::-moz-range-track,
.was-validated .custom-range:invalid::-moz-range-track {
  background: rgba(220, 53, 69, 0.35);
}

.custom-range.is-invalid ~ .invalid-feedback,
.custom-range.is-invalid ~ .invalid-tooltip,
.was-validated .custom-range:invalid ~ .invalid-feedback,
.was-validated .custom-range:invalid ~ .invalid-tooltip {
  display: block;
}

.custom-range.is-invalid::-ms-thumb,
.was-validated .custom-range:invalid::-ms-thumb {
  background-color: #dc3545;
  background-image: none;
}

.custom-range.is-invalid::-ms-thumb:active,
.was-validated .custom-range:invalid::-ms-thumb:active {
  background-color: #f6cdd1;
  background-image: none;
}

.custom-range.is-invalid::-ms-track-lower,
.custom-range.is-invalid::-ms-track-upper,
.was-validated .custom-range:invalid::-ms-track-lower,
.was-validated .custom-range:invalid::-ms-track-upper {
  background: rgba(220, 53, 69, 0.35);
}

.custom-radio.b-custom-control-lg,
.input-group-lg .custom-radio {
  font-size: 1.25rem;
  line-height: 1.5;
  padding-left: 1.875rem;
}

.custom-radio.b-custom-control-lg .custom-control-label:before,
.input-group-lg .custom-radio .custom-control-label:before {
  top: 0.3125rem;
  left: -1.875rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
}

.custom-radio.b-custom-control-lg .custom-control-label:after,
.input-group-lg .custom-radio .custom-control-label:after {
  top: 0.3125rem;
  left: -1.875rem;
  width: 1.25rem;
  height: 1.25rem;
  background: no-repeat 50%/50% 50%;
}

.custom-radio.b-custom-control-sm,
.input-group-sm .custom-radio {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 1.3125rem;
}

.custom-radio.b-custom-control-sm .custom-control-label:before,
.input-group-sm .custom-radio .custom-control-label:before {
  top: 0.21875rem;
  left: -1.3125rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
}

.custom-radio.b-custom-control-sm .custom-control-label:after,
.input-group-sm .custom-radio .custom-control-label:after {
  top: 0.21875rem;
  left: -1.3125rem;
  width: 0.875rem;
  height: 0.875rem;
  background: no-repeat 50%/50% 50%;
}

.b-rating {
  text-align: center;
}

.b-rating.d-inline-flex {
  width: auto;
}

.b-rating .b-rating-star,
.b-rating .b-rating-value {
  padding: 0 0.25em;
}

.b-rating .b-rating-value {
  min-width: 2.5em;
}

.b-rating .b-rating-star {
  display: inline-flex;
  justify-content: center;
  outline: 0;
}

.b-rating .b-rating-star .b-rating-icon {
  display: inline-flex;
  transition: all 0.15s ease-in-out;
}

.b-rating.disabled,
.b-rating:disabled {
  background-color: #e9ecef;
  color: #6c757d;
}

.b-rating:not(.disabled):not(.readonly) .b-rating-star {
  cursor: pointer;
}

.b-rating:not(.disabled):not(.readonly) .b-rating-star:hover .b-rating-icon,
.b-rating:not(.disabled):not(.readonly):focus:not(:hover) .b-rating-star.focused .b-rating-icon {
  transform: scale(1.5);
}

.b-rating[dir=rtl] .b-rating-star-half {
  transform: scaleX(-1);
}

.b-form-spinbutton {
  text-align: center;
  overflow: hidden;
  background-image: none;
  padding: 0;
}

.b-form-spinbutton[dir=rtl]:not(.flex-column),
[dir=rtl] .b-form-spinbutton:not(.flex-column) {
  flex-direction: row-reverse;
}

.b-form-spinbutton output {
  font-size: inherit;
  outline: 0;
  border: 0;
  background-color: transparent;
  width: auto;
  margin: 0;
  padding: 0 0.25rem;
}

.b-form-spinbutton output > bdi,
.b-form-spinbutton output > div {
  display: block;
  min-width: 2.25em;
  height: 1.5em;
}

.b-form-spinbutton.flex-column {
  height: auto;
  width: auto;
}

.b-form-spinbutton.flex-column output {
  margin: 0 0.25rem;
  padding: 0.25rem 0;
}

.b-form-spinbutton:not(.d-inline-flex):not(.flex-column) {
  output-width: 100%;
}

.b-form-spinbutton.d-inline-flex:not(.flex-column) {
  width: auto;
}

.b-form-spinbutton .btn {
  line-height: 1;
  box-shadow: none !important;
}

.b-form-spinbutton .btn:disabled {
  pointer-events: none;
}

.b-form-spinbutton .btn:hover:not(:disabled) > div > .b-icon {
  transform: scale(1.25);
}

.b-form-spinbutton.disabled,
.b-form-spinbutton.readonly {
  background-color: #e9ecef;
}

.b-form-spinbutton.disabled {
  pointer-events: none;
}

.b-form-tags.focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.b-form-tags.focus.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.b-form-tags.focus.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.b-form-tags.disabled {
  background-color: #e9ecef;
}

.b-form-tags-list {
  margin-top: -0.25rem;
}

.b-form-tags-list .b-form-tag,
.b-form-tags-list .b-form-tags-field {
  margin-top: 0.25rem;
}

.b-form-tags-input {
  color: #495057;
}

.b-form-tag {
  font-size: 75%;
  font-weight: 400;
  line-height: 1.5;
  margin-right: 0.25rem;
}

.b-form-tag.disabled {
  opacity: 0.75;
}

.b-form-tag > button.b-form-tag-remove {
  color: inherit;
  font-size: 125%;
  line-height: 1;
  float: none;
  margin-left: 0.25rem;
}

.form-control-lg .b-form-tag,
.form-control-sm .b-form-tag {
  line-height: 1.5;
}

.media-aside {
  display: flex;
  margin-right: 1rem;
}

.media-aside-right {
  margin-right: 0;
  margin-left: 1rem;
}

.modal-backdrop {
  opacity: 0.5;
}

.b-pagination-pills .page-item .page-link {
  border-radius: 50rem !important;
  margin-left: 0.25rem;
  line-height: 1;
}

.b-pagination-pills .page-item:first-child .page-link {
  margin-left: 0;
}

.popover.b-popover {
  display: block;
  opacity: 1;
  outline: 0;
}

.popover.b-popover.fade:not(.show) {
  opacity: 0;
}

.popover.b-popover.show {
  opacity: 1;
}

.b-popover-primary.popover {
  background-color: #cce5ff;
  border-color: #b8daff;
}

.b-popover-primary.bs-popover-auto[x-placement^=top] > .arrow:before,
.b-popover-primary.bs-popover-top > .arrow:before {
  border-top-color: #b8daff;
}

.b-popover-primary.bs-popover-auto[x-placement^=top] > .arrow:after,
.b-popover-primary.bs-popover-top > .arrow:after {
  border-top-color: #cce5ff;
}

.b-popover-primary.bs-popover-auto[x-placement^=right] > .arrow:before,
.b-popover-primary.bs-popover-right > .arrow:before {
  border-right-color: #b8daff;
}

.b-popover-primary.bs-popover-auto[x-placement^=right] > .arrow:after,
.b-popover-primary.bs-popover-right > .arrow:after {
  border-right-color: #cce5ff;
}

.b-popover-primary.bs-popover-auto[x-placement^=bottom] > .arrow:before,
.b-popover-primary.bs-popover-bottom > .arrow:before {
  border-bottom-color: #b8daff;
}

.b-popover-primary.bs-popover-auto[x-placement^=bottom] .popover-header:before,
.b-popover-primary.bs-popover-auto[x-placement^=bottom] > .arrow:after,
.b-popover-primary.bs-popover-bottom .popover-header:before,
.b-popover-primary.bs-popover-bottom > .arrow:after {
  border-bottom-color: #bdddff;
}

.b-popover-primary.bs-popover-auto[x-placement^=left] > .arrow:before,
.b-popover-primary.bs-popover-left > .arrow:before {
  border-left-color: #b8daff;
}

.b-popover-primary.bs-popover-auto[x-placement^=left] > .arrow:after,
.b-popover-primary.bs-popover-left > .arrow:after {
  border-left-color: #cce5ff;
}

.b-popover-primary .popover-header {
  color: #212529;
  background-color: #bdddff;
  border-bottom-color: #a3d0ff;
}

.b-popover-primary .popover-body {
  color: #004085;
}

.b-popover-secondary.popover {
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.b-popover-secondary.bs-popover-auto[x-placement^=top] > .arrow:before,
.b-popover-secondary.bs-popover-top > .arrow:before {
  border-top-color: #d6d8db;
}

.b-popover-secondary.bs-popover-auto[x-placement^=top] > .arrow:after,
.b-popover-secondary.bs-popover-top > .arrow:after {
  border-top-color: #e2e3e5;
}

.b-popover-secondary.bs-popover-auto[x-placement^=right] > .arrow:before,
.b-popover-secondary.bs-popover-right > .arrow:before {
  border-right-color: #d6d8db;
}

.b-popover-secondary.bs-popover-auto[x-placement^=right] > .arrow:after,
.b-popover-secondary.bs-popover-right > .arrow:after {
  border-right-color: #e2e3e5;
}

.b-popover-secondary.bs-popover-auto[x-placement^=bottom] > .arrow:before,
.b-popover-secondary.bs-popover-bottom > .arrow:before {
  border-bottom-color: #d6d8db;
}

.b-popover-secondary.bs-popover-auto[x-placement^=bottom] .popover-header:before,
.b-popover-secondary.bs-popover-auto[x-placement^=bottom] > .arrow:after,
.b-popover-secondary.bs-popover-bottom .popover-header:before,
.b-popover-secondary.bs-popover-bottom > .arrow:after {
  border-bottom-color: #dadbde;
}

.b-popover-secondary.bs-popover-auto[x-placement^=left] > .arrow:before,
.b-popover-secondary.bs-popover-left > .arrow:before {
  border-left-color: #d6d8db;
}

.b-popover-secondary.bs-popover-auto[x-placement^=left] > .arrow:after,
.b-popover-secondary.bs-popover-left > .arrow:after {
  border-left-color: #e2e3e5;
}

.b-popover-secondary .popover-header {
  color: #212529;
  background-color: #dadbde;
  border-bottom-color: #ccced2;
}

.b-popover-secondary .popover-body {
  color: #383d41;
}

.b-popover-success.popover {
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.b-popover-success.bs-popover-auto[x-placement^=top] > .arrow:before,
.b-popover-success.bs-popover-top > .arrow:before {
  border-top-color: #c3e6cb;
}

.b-popover-success.bs-popover-auto[x-placement^=top] > .arrow:after,
.b-popover-success.bs-popover-top > .arrow:after {
  border-top-color: #d4edda;
}

.b-popover-success.bs-popover-auto[x-placement^=right] > .arrow:before,
.b-popover-success.bs-popover-right > .arrow:before {
  border-right-color: #c3e6cb;
}

.b-popover-success.bs-popover-auto[x-placement^=right] > .arrow:after,
.b-popover-success.bs-popover-right > .arrow:after {
  border-right-color: #d4edda;
}

.b-popover-success.bs-popover-auto[x-placement^=bottom] > .arrow:before,
.b-popover-success.bs-popover-bottom > .arrow:before {
  border-bottom-color: #c3e6cb;
}

.b-popover-success.bs-popover-auto[x-placement^=bottom] .popover-header:before,
.b-popover-success.bs-popover-auto[x-placement^=bottom] > .arrow:after,
.b-popover-success.bs-popover-bottom .popover-header:before,
.b-popover-success.bs-popover-bottom > .arrow:after {
  border-bottom-color: #c9e8d1;
}

.b-popover-success.bs-popover-auto[x-placement^=left] > .arrow:before,
.b-popover-success.bs-popover-left > .arrow:before {
  border-left-color: #c3e6cb;
}

.b-popover-success.bs-popover-auto[x-placement^=left] > .arrow:after,
.b-popover-success.bs-popover-left > .arrow:after {
  border-left-color: #d4edda;
}

.b-popover-success .popover-header {
  color: #212529;
  background-color: #c9e8d1;
  border-bottom-color: #b7e1c1;
}

.b-popover-success .popover-body {
  color: #155724;
}

.b-popover-info.popover {
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.b-popover-info.bs-popover-auto[x-placement^=top] > .arrow:before,
.b-popover-info.bs-popover-top > .arrow:before {
  border-top-color: #bee5eb;
}

.b-popover-info.bs-popover-auto[x-placement^=top] > .arrow:after,
.b-popover-info.bs-popover-top > .arrow:after {
  border-top-color: #d1ecf1;
}

.b-popover-info.bs-popover-auto[x-placement^=right] > .arrow:before,
.b-popover-info.bs-popover-right > .arrow:before {
  border-right-color: #bee5eb;
}

.b-popover-info.bs-popover-auto[x-placement^=right] > .arrow:after,
.b-popover-info.bs-popover-right > .arrow:after {
  border-right-color: #d1ecf1;
}

.b-popover-info.bs-popover-auto[x-placement^=bottom] > .arrow:before,
.b-popover-info.bs-popover-bottom > .arrow:before {
  border-bottom-color: #bee5eb;
}

.b-popover-info.bs-popover-auto[x-placement^=bottom] .popover-header:before,
.b-popover-info.bs-popover-auto[x-placement^=bottom] > .arrow:after,
.b-popover-info.bs-popover-bottom .popover-header:before,
.b-popover-info.bs-popover-bottom > .arrow:after {
  border-bottom-color: #c5e7ed;
}

.b-popover-info.bs-popover-auto[x-placement^=left] > .arrow:before,
.b-popover-info.bs-popover-left > .arrow:before {
  border-left-color: #bee5eb;
}

.b-popover-info.bs-popover-auto[x-placement^=left] > .arrow:after,
.b-popover-info.bs-popover-left > .arrow:after {
  border-left-color: #d1ecf1;
}

.b-popover-info .popover-header {
  color: #212529;
  background-color: #c5e7ed;
  border-bottom-color: #b2dfe7;
}

.b-popover-info .popover-body {
  color: #0c5460;
}

.b-popover-warning.popover {
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.b-popover-warning.bs-popover-auto[x-placement^=top] > .arrow:before,
.b-popover-warning.bs-popover-top > .arrow:before {
  border-top-color: #ffeeba;
}

.b-popover-warning.bs-popover-auto[x-placement^=top] > .arrow:after,
.b-popover-warning.bs-popover-top > .arrow:after {
  border-top-color: #fff3cd;
}

.b-popover-warning.bs-popover-auto[x-placement^=right] > .arrow:before,
.b-popover-warning.bs-popover-right > .arrow:before {
  border-right-color: #ffeeba;
}

.b-popover-warning.bs-popover-auto[x-placement^=right] > .arrow:after,
.b-popover-warning.bs-popover-right > .arrow:after {
  border-right-color: #fff3cd;
}

.b-popover-warning.bs-popover-auto[x-placement^=bottom] > .arrow:before,
.b-popover-warning.bs-popover-bottom > .arrow:before {
  border-bottom-color: #ffeeba;
}

.b-popover-warning.bs-popover-auto[x-placement^=bottom] .popover-header:before,
.b-popover-warning.bs-popover-auto[x-placement^=bottom] > .arrow:after,
.b-popover-warning.bs-popover-bottom .popover-header:before,
.b-popover-warning.bs-popover-bottom > .arrow:after {
  border-bottom-color: #ffefbe;
}

.b-popover-warning.bs-popover-auto[x-placement^=left] > .arrow:before,
.b-popover-warning.bs-popover-left > .arrow:before {
  border-left-color: #ffeeba;
}

.b-popover-warning.bs-popover-auto[x-placement^=left] > .arrow:after,
.b-popover-warning.bs-popover-left > .arrow:after {
  border-left-color: #fff3cd;
}

.b-popover-warning .popover-header {
  color: #212529;
  background-color: #ffefbe;
  border-bottom-color: #ffe9a4;
}

.b-popover-warning .popover-body {
  color: #856404;
}

.b-popover-danger.popover {
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.b-popover-danger.bs-popover-auto[x-placement^=top] > .arrow:before,
.b-popover-danger.bs-popover-top > .arrow:before {
  border-top-color: #f5c6cb;
}

.b-popover-danger.bs-popover-auto[x-placement^=top] > .arrow:after,
.b-popover-danger.bs-popover-top > .arrow:after {
  border-top-color: #f8d7da;
}

.b-popover-danger.bs-popover-auto[x-placement^=right] > .arrow:before,
.b-popover-danger.bs-popover-right > .arrow:before {
  border-right-color: #f5c6cb;
}

.b-popover-danger.bs-popover-auto[x-placement^=right] > .arrow:after,
.b-popover-danger.bs-popover-right > .arrow:after {
  border-right-color: #f8d7da;
}

.b-popover-danger.bs-popover-auto[x-placement^=bottom] > .arrow:before,
.b-popover-danger.bs-popover-bottom > .arrow:before {
  border-bottom-color: #f5c6cb;
}

.b-popover-danger.bs-popover-auto[x-placement^=bottom] .popover-header:before,
.b-popover-danger.bs-popover-auto[x-placement^=bottom] > .arrow:after,
.b-popover-danger.bs-popover-bottom .popover-header:before,
.b-popover-danger.bs-popover-bottom > .arrow:after {
  border-bottom-color: #f6cace;
}

.b-popover-danger.bs-popover-auto[x-placement^=left] > .arrow:before,
.b-popover-danger.bs-popover-left > .arrow:before {
  border-left-color: #f5c6cb;
}

.b-popover-danger.bs-popover-auto[x-placement^=left] > .arrow:after,
.b-popover-danger.bs-popover-left > .arrow:after {
  border-left-color: #f8d7da;
}

.b-popover-danger .popover-header {
  color: #212529;
  background-color: #f6cace;
  border-bottom-color: #f2b4ba;
}

.b-popover-danger .popover-body {
  color: #721c24;
}

.b-popover-light.popover {
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.b-popover-light.bs-popover-auto[x-placement^=top] > .arrow:before,
.b-popover-light.bs-popover-top > .arrow:before {
  border-top-color: #fdfdfe;
}

.b-popover-light.bs-popover-auto[x-placement^=top] > .arrow:after,
.b-popover-light.bs-popover-top > .arrow:after {
  border-top-color: #fefefe;
}

.b-popover-light.bs-popover-auto[x-placement^=right] > .arrow:before,
.b-popover-light.bs-popover-right > .arrow:before {
  border-right-color: #fdfdfe;
}

.b-popover-light.bs-popover-auto[x-placement^=right] > .arrow:after,
.b-popover-light.bs-popover-right > .arrow:after {
  border-right-color: #fefefe;
}

.b-popover-light.bs-popover-auto[x-placement^=bottom] > .arrow:before,
.b-popover-light.bs-popover-bottom > .arrow:before {
  border-bottom-color: #fdfdfe;
}

.b-popover-light.bs-popover-auto[x-placement^=bottom] .popover-header:before,
.b-popover-light.bs-popover-auto[x-placement^=bottom] > .arrow:after,
.b-popover-light.bs-popover-bottom .popover-header:before,
.b-popover-light.bs-popover-bottom > .arrow:after {
  border-bottom-color: #f6f6f6;
}

.b-popover-light.bs-popover-auto[x-placement^=left] > .arrow:before,
.b-popover-light.bs-popover-left > .arrow:before {
  border-left-color: #fdfdfe;
}

.b-popover-light.bs-popover-auto[x-placement^=left] > .arrow:after,
.b-popover-light.bs-popover-left > .arrow:after {
  border-left-color: #fefefe;
}

.b-popover-light .popover-header {
  color: #212529;
  background-color: #f6f6f6;
  border-bottom-color: #eaeaea;
}

.b-popover-light .popover-body {
  color: #818182;
}

.b-popover-dark.popover {
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.b-popover-dark.bs-popover-auto[x-placement^=top] > .arrow:before,
.b-popover-dark.bs-popover-top > .arrow:before {
  border-top-color: #c6c8ca;
}

.b-popover-dark.bs-popover-auto[x-placement^=top] > .arrow:after,
.b-popover-dark.bs-popover-top > .arrow:after {
  border-top-color: #d6d8d9;
}

.b-popover-dark.bs-popover-auto[x-placement^=right] > .arrow:before,
.b-popover-dark.bs-popover-right > .arrow:before {
  border-right-color: #c6c8ca;
}

.b-popover-dark.bs-popover-auto[x-placement^=right] > .arrow:after,
.b-popover-dark.bs-popover-right > .arrow:after {
  border-right-color: #d6d8d9;
}

.b-popover-dark.bs-popover-auto[x-placement^=bottom] > .arrow:before,
.b-popover-dark.bs-popover-bottom > .arrow:before {
  border-bottom-color: #c6c8ca;
}

.b-popover-dark.bs-popover-auto[x-placement^=bottom] .popover-header:before,
.b-popover-dark.bs-popover-auto[x-placement^=bottom] > .arrow:after,
.b-popover-dark.bs-popover-bottom .popover-header:before,
.b-popover-dark.bs-popover-bottom > .arrow:after {
  border-bottom-color: #ced0d2;
}

.b-popover-dark.bs-popover-auto[x-placement^=left] > .arrow:before,
.b-popover-dark.bs-popover-left > .arrow:before {
  border-left-color: #c6c8ca;
}

.b-popover-dark.bs-popover-auto[x-placement^=left] > .arrow:after,
.b-popover-dark.bs-popover-left > .arrow:after {
  border-left-color: #d6d8d9;
}

.b-popover-dark .popover-header {
  color: #212529;
  background-color: #ced0d2;
  border-bottom-color: #c1c4c5;
}

.b-popover-dark .popover-body {
  color: #1b1e21;
}

.b-sidebar-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  overflow: visible;
  z-index: 1035;
}

.b-sidebar-backdrop {
  left: 0;
  z-index: -1;
  width: 100vw;
  opacity: 0.6;
}

.b-sidebar,
.b-sidebar-backdrop {
  position: fixed;
  top: 0;
  height: 100vh;
}

.b-sidebar {
  display: flex;
  flex-direction: column;
  width: 320px;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  outline: 0;
  transform: translateX(0);
}

.b-sidebar.slide {
  transition: transform 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .b-sidebar.slide {
    transition: none;
  }
}

.b-sidebar:not(.b-sidebar-right) {
  left: 0;
  right: auto;
}

.b-sidebar:not(.b-sidebar-right).slide:not(.show) {
  transform: translateX(-100%);
}

.b-sidebar:not(.b-sidebar-right) > .b-sidebar-header .close {
  margin-left: auto;
}

.b-sidebar.b-sidebar-right {
  left: auto;
  right: 0;
}

.b-sidebar.b-sidebar-right.slide:not(.show) {
  transform: translateX(100%);
}

.b-sidebar.b-sidebar-right > .b-sidebar-header .close {
  margin-right: auto;
}

.b-sidebar > .b-sidebar-header {
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
  flex-grow: 0;
  align-items: center;
}

[dir=rtl] .b-sidebar > .b-sidebar-header {
  flex-direction: row-reverse;
}

.b-sidebar > .b-sidebar-header .close {
  float: none;
  font-size: 1.5rem;
}

.b-sidebar > .b-sidebar-body {
  flex-grow: 1;
  height: 100%;
  overflow-y: auto;
}

.b-sidebar > .b-sidebar-footer {
  flex-grow: 0;
}

.b-skeleton-wrapper {
  cursor: wait;
}

.b-skeleton {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.12);
  cursor: wait;
  -webkit-mask-image: radial-gradient(#fff, #000);
  mask-image: radial-gradient(#fff, #000);
}

.b-skeleton:before {
  content: "\A0";
}

.b-skeleton-text {
  height: 1rem;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
}

.b-skeleton-button {
  width: 75px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}

.b-skeleton-avatar {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
}

.b-skeleton-input {
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.b-skeleton-icon-wrapper svg {
  color: rgba(0, 0, 0, 0.12);
}

.b-skeleton-img {
  height: 100%;
  width: 100%;
}

.b-skeleton-animate-wave:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.4), transparent);
  -webkit-animation: b-skeleton-animate-wave 1.75s linear infinite;
  animation: b-skeleton-animate-wave 1.75s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .b-skeleton-animate-wave:after {
    background: none;
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes b-skeleton-animate-wave {
  0% {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes b-skeleton-animate-wave {
  0% {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

.b-skeleton-animate-fade {
  -webkit-animation: b-skeleton-animate-fade 0.875s ease-in-out infinite alternate;
  animation: b-skeleton-animate-fade 0.875s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .b-skeleton-animate-fade {
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes b-skeleton-animate-fade {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0.4;
  }
}

@keyframes b-skeleton-animate-fade {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0.4;
  }
}

.b-skeleton-animate-throb {
  -webkit-animation: b-skeleton-animate-throb 0.875s ease-in infinite alternate;
  animation: b-skeleton-animate-throb 0.875s ease-in infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .b-skeleton-animate-throb {
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes b-skeleton-animate-throb {
  0% {
    transform: scale(1);
  }

  to {
    transform: scale(0.975);
  }
}

@keyframes b-skeleton-animate-throb {
  0% {
    transform: scale(1);
  }

  to {
    transform: scale(0.975);
  }
}

.table.b-table.b-table-fixed {
  table-layout: fixed;
}

.table.b-table.b-table-no-border-collapse {
  border-collapse: separate;
  border-spacing: 0;
}

.table.b-table[aria-busy=true] {
  opacity: 0.55;
}

.table.b-table > tbody > tr.b-table-details > td {
  border-top: none !important;
}

.table.b-table > caption {
  caption-side: bottom;
}

.table.b-table.b-table-caption-top > caption {
  caption-side: top !important;
}

.table.b-table > tbody > .table-active,
.table.b-table > tbody > .table-active > td,
.table.b-table > tbody > .table-active > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table.b-table.table-hover > tbody > tr.table-active:hover td,
.table.b-table.table-hover > tbody > tr.table-active:hover th {
  color: #212529;
  background-image: linear-gradient(rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.075));
  background-repeat: no-repeat;
}

.table.b-table > tbody > .bg-active,
.table.b-table > tbody > .bg-active > td,
.table.b-table > tbody > .bg-active > th {
  background-color: hsla(0, 0%, 100%, 0.075) !important;
}

.table.b-table.table-hover.table-dark > tbody > tr.bg-active:hover td,
.table.b-table.table-hover.table-dark > tbody > tr.bg-active:hover th {
  color: #fff;
  background-image: linear-gradient(hsla(0, 0%, 100%, 0.075), hsla(0, 0%, 100%, 0.075));
  background-repeat: no-repeat;
}

.b-table-sticky-header,
.table-responsive,
[class*=table-responsive-] {
  margin-bottom: 1rem;
}

.b-table-sticky-header > .table,
.table-responsive > .table,
[class*=table-responsive-] > .table {
  margin-bottom: 0;
}

.b-table-sticky-header {
  overflow-y: auto;
  max-height: 300px;
}

@media print {
  .b-table-sticky-header {
    overflow-y: visible !important;
    max-height: none !important;
  }
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .b-table-sticky-header > .table.b-table > thead > tr > th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .b-table-sticky-header > .table.b-table > tbody > tr > .b-table-sticky-column,
  .b-table-sticky-header > .table.b-table > tfoot > tr > .b-table-sticky-column,
  .b-table-sticky-header > .table.b-table > thead > tr > .b-table-sticky-column,
  .table-responsive > .table.b-table > tbody > tr > .b-table-sticky-column,
  .table-responsive > .table.b-table > tfoot > tr > .b-table-sticky-column,
  .table-responsive > .table.b-table > thead > tr > .b-table-sticky-column,
  [class*=table-responsive-] > .table.b-table > tbody > tr > .b-table-sticky-column,
  [class*=table-responsive-] > .table.b-table > tfoot > tr > .b-table-sticky-column,
  [class*=table-responsive-] > .table.b-table > thead > tr > .b-table-sticky-column {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
  }

  .b-table-sticky-header > .table.b-table > thead > tr > .b-table-sticky-column,
  .table-responsive > .table.b-table > thead > tr > .b-table-sticky-column,
  [class*=table-responsive-] > .table.b-table > thead > tr > .b-table-sticky-column {
    z-index: 5;
  }

  .b-table-sticky-header > .table.b-table > tbody > tr > .b-table-sticky-column,
  .b-table-sticky-header > .table.b-table > tfoot > tr > .b-table-sticky-column,
  .table-responsive > .table.b-table > tbody > tr > .b-table-sticky-column,
  .table-responsive > .table.b-table > tfoot > tr > .b-table-sticky-column,
  [class*=table-responsive-] > .table.b-table > tbody > tr > .b-table-sticky-column,
  [class*=table-responsive-] > .table.b-table > tfoot > tr > .b-table-sticky-column {
    z-index: 2;
  }

  .table.b-table > tbody > tr > .table-b-table-default,
  .table.b-table > tfoot > tr > .table-b-table-default,
  .table.b-table > thead > tr > .table-b-table-default {
    color: #212529;
    background-color: #fff;
  }

  .table.b-table.table-dark > tbody > tr > .bg-b-table-default,
  .table.b-table.table-dark > tfoot > tr > .bg-b-table-default,
  .table.b-table.table-dark > thead > tr > .bg-b-table-default {
    color: #fff;
    background-color: #343a40;
  }

  .table.b-table.table-striped > tbody > tr:nth-of-type(odd) > .table-b-table-default {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
    background-repeat: no-repeat;
  }

  .table.b-table.table-striped.table-dark > tbody > tr:nth-of-type(odd) > .bg-b-table-default {
    background-image: linear-gradient(hsla(0, 0%, 100%, 0.05), hsla(0, 0%, 100%, 0.05));
    background-repeat: no-repeat;
  }

  .table.b-table.table-hover > tbody > tr:hover > .table-b-table-default {
    color: #212529;
    background-image: linear-gradient(rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.075));
    background-repeat: no-repeat;
  }

  .table.b-table.table-hover.table-dark > tbody > tr:hover > .bg-b-table-default {
    color: #fff;
    background-image: linear-gradient(hsla(0, 0%, 100%, 0.075), hsla(0, 0%, 100%, 0.075));
    background-repeat: no-repeat;
  }
}

.table.b-table > tfoot > tr > [aria-sort],
.table.b-table > thead > tr > [aria-sort] {
  cursor: pointer;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 0.65em 1em;
}

.table.b-table > tfoot > tr > [aria-sort]:not(.b-table-sort-icon-left),
.table.b-table > thead > tr > [aria-sort]:not(.b-table-sort-icon-left) {
  background-position: right 0.375rem center;
  padding-right: calc(0.75rem + 0.65em);
}

.table.b-table > tfoot > tr > [aria-sort].b-table-sort-icon-left,
.table.b-table > thead > tr > [aria-sort].b-table-sort-icon-left {
  background-position: left 0.375rem center;
  padding-left: calc(0.75rem + 0.65em);
}

.table.b-table > tfoot > tr > [aria-sort=none],
.table.b-table > thead > tr > [aria-sort=none] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath opacity='.3' d='M51 1l25 23 24 22H1l25-22zm0 100l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}

.table.b-table > tfoot > tr > [aria-sort=ascending],
.table.b-table > thead > tr > [aria-sort=ascending] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}

.table.b-table > tfoot > tr > [aria-sort=descending],
.table.b-table > thead > tr > [aria-sort=descending] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}

.table.b-table.table-dark > tfoot > tr > [aria-sort=none],
.table.b-table.table-dark > thead > tr > [aria-sort=none],
.table.b-table > .thead-dark > tr > [aria-sort=none] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22zm0 100l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}

.table.b-table.table-dark > tfoot > tr > [aria-sort=ascending],
.table.b-table.table-dark > thead > tr > [aria-sort=ascending],
.table.b-table > .thead-dark > tr > [aria-sort=ascending] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}

.table.b-table.table-dark > tfoot > tr > [aria-sort=descending],
.table.b-table.table-dark > thead > tr > [aria-sort=descending],
.table.b-table > .thead-dark > tr > [aria-sort=descending] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}

.table.b-table > tfoot > tr > .table-dark[aria-sort=none],
.table.b-table > thead > tr > .table-dark[aria-sort=none] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22zm0 100l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}

.table.b-table > tfoot > tr > .table-dark[aria-sort=ascending],
.table.b-table > thead > tr > .table-dark[aria-sort=ascending] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}

.table.b-table > tfoot > tr > .table-dark[aria-sort=descending],
.table.b-table > thead > tr > .table-dark[aria-sort=descending] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}

.table.b-table.table-sm > tfoot > tr > [aria-sort]:not(.b-table-sort-icon-left),
.table.b-table.table-sm > thead > tr > [aria-sort]:not(.b-table-sort-icon-left) {
  background-position: right 0.15rem center;
  padding-right: calc(0.3rem + 0.65em);
}

.table.b-table.table-sm > tfoot > tr > [aria-sort].b-table-sort-icon-left,
.table.b-table.table-sm > thead > tr > [aria-sort].b-table-sort-icon-left {
  background-position: left 0.15rem center;
  padding-left: calc(0.3rem + 0.65em);
}

.table.b-table.b-table-selectable:not(.b-table-selectable-no-click) > tbody > tr {
  cursor: pointer;
}

.table.b-table.b-table-selectable:not(.b-table-selectable-no-click).b-table-selecting.b-table-select-range > tbody > tr {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (max-width: 575.98px) {
  .table.b-table.b-table-stacked-sm {
    display: block;
    width: 100%;
  }

  .table.b-table.b-table-stacked-sm > caption,
  .table.b-table.b-table-stacked-sm > tbody,
  .table.b-table.b-table-stacked-sm > tbody > tr,
  .table.b-table.b-table-stacked-sm > tbody > tr > td,
  .table.b-table.b-table-stacked-sm > tbody > tr > th {
    display: block;
  }

  .table.b-table.b-table-stacked-sm > tfoot,
  .table.b-table.b-table-stacked-sm > tfoot > tr.b-table-bottom-row,
  .table.b-table.b-table-stacked-sm > tfoot > tr.b-table-top-row,
  .table.b-table.b-table-stacked-sm > thead,
  .table.b-table.b-table-stacked-sm > thead > tr.b-table-bottom-row,
  .table.b-table.b-table-stacked-sm > thead > tr.b-table-top-row {
    display: none;
  }

  .table.b-table.b-table-stacked-sm > caption {
    caption-side: top !important;
  }

  .table.b-table.b-table-stacked-sm > tbody > tr > [data-label]:before {
    content: attr(data-label);
    width: 40%;
    float: left;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: 700;
    font-style: normal;
    padding: 0 0.5rem 0 0;
    margin: 0;
  }

  .table.b-table.b-table-stacked-sm > tbody > tr > [data-label]:after {
    display: block;
    clear: both;
    content: "";
  }

  .table.b-table.b-table-stacked-sm > tbody > tr > [data-label] > div {
    display: inline-block;
    width: 60%;
    padding: 0 0 0 0.5rem;
    margin: 0;
  }

  .table.b-table.b-table-stacked-sm > tbody > tr.bottom-row,
  .table.b-table.b-table-stacked-sm > tbody > tr.top-row {
    display: none;
  }

  .table.b-table.b-table-stacked-sm > tbody > tr > :first-child,
  .table.b-table.b-table-stacked-sm > tbody > tr > [rowspan] + td,
  .table.b-table.b-table-stacked-sm > tbody > tr > [rowspan] + th {
    border-top-width: 3px;
  }
}

@media (max-width: 767.98px) {
  .table.b-table.b-table-stacked-md {
    display: block;
    width: 100%;
  }

  .table.b-table.b-table-stacked-md > caption,
  .table.b-table.b-table-stacked-md > tbody,
  .table.b-table.b-table-stacked-md > tbody > tr,
  .table.b-table.b-table-stacked-md > tbody > tr > td,
  .table.b-table.b-table-stacked-md > tbody > tr > th {
    display: block;
  }

  .table.b-table.b-table-stacked-md > tfoot,
  .table.b-table.b-table-stacked-md > tfoot > tr.b-table-bottom-row,
  .table.b-table.b-table-stacked-md > tfoot > tr.b-table-top-row,
  .table.b-table.b-table-stacked-md > thead,
  .table.b-table.b-table-stacked-md > thead > tr.b-table-bottom-row,
  .table.b-table.b-table-stacked-md > thead > tr.b-table-top-row {
    display: none;
  }

  .table.b-table.b-table-stacked-md > caption {
    caption-side: top !important;
  }

  .table.b-table.b-table-stacked-md > tbody > tr > [data-label]:before {
    content: attr(data-label);
    width: 40%;
    float: left;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: 700;
    font-style: normal;
    padding: 0 0.5rem 0 0;
    margin: 0;
  }

  .table.b-table.b-table-stacked-md > tbody > tr > [data-label]:after {
    display: block;
    clear: both;
    content: "";
  }

  .table.b-table.b-table-stacked-md > tbody > tr > [data-label] > div {
    display: inline-block;
    width: 60%;
    padding: 0 0 0 0.5rem;
    margin: 0;
  }

  .table.b-table.b-table-stacked-md > tbody > tr.bottom-row,
  .table.b-table.b-table-stacked-md > tbody > tr.top-row {
    display: none;
  }

  .table.b-table.b-table-stacked-md > tbody > tr > :first-child,
  .table.b-table.b-table-stacked-md > tbody > tr > [rowspan] + td,
  .table.b-table.b-table-stacked-md > tbody > tr > [rowspan] + th {
    border-top-width: 3px;
  }
}

@media (max-width: 991.98px) {
  .table.b-table.b-table-stacked-lg {
    display: block;
    width: 100%;
  }

  .table.b-table.b-table-stacked-lg > caption,
  .table.b-table.b-table-stacked-lg > tbody,
  .table.b-table.b-table-stacked-lg > tbody > tr,
  .table.b-table.b-table-stacked-lg > tbody > tr > td,
  .table.b-table.b-table-stacked-lg > tbody > tr > th {
    display: block;
  }

  .table.b-table.b-table-stacked-lg > tfoot,
  .table.b-table.b-table-stacked-lg > tfoot > tr.b-table-bottom-row,
  .table.b-table.b-table-stacked-lg > tfoot > tr.b-table-top-row,
  .table.b-table.b-table-stacked-lg > thead,
  .table.b-table.b-table-stacked-lg > thead > tr.b-table-bottom-row,
  .table.b-table.b-table-stacked-lg > thead > tr.b-table-top-row {
    display: none;
  }

  .table.b-table.b-table-stacked-lg > caption {
    caption-side: top !important;
  }

  .table.b-table.b-table-stacked-lg > tbody > tr > [data-label]:before {
    content: attr(data-label);
    width: 40%;
    float: left;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: 700;
    font-style: normal;
    padding: 0 0.5rem 0 0;
    margin: 0;
  }

  .table.b-table.b-table-stacked-lg > tbody > tr > [data-label]:after {
    display: block;
    clear: both;
    content: "";
  }

  .table.b-table.b-table-stacked-lg > tbody > tr > [data-label] > div {
    display: inline-block;
    width: 60%;
    padding: 0 0 0 0.5rem;
    margin: 0;
  }

  .table.b-table.b-table-stacked-lg > tbody > tr.bottom-row,
  .table.b-table.b-table-stacked-lg > tbody > tr.top-row {
    display: none;
  }

  .table.b-table.b-table-stacked-lg > tbody > tr > :first-child,
  .table.b-table.b-table-stacked-lg > tbody > tr > [rowspan] + td,
  .table.b-table.b-table-stacked-lg > tbody > tr > [rowspan] + th {
    border-top-width: 3px;
  }
}

@media (max-width: 1199.98px) {
  .table.b-table.b-table-stacked-xl {
    display: block;
    width: 100%;
  }

  .table.b-table.b-table-stacked-xl > caption,
  .table.b-table.b-table-stacked-xl > tbody,
  .table.b-table.b-table-stacked-xl > tbody > tr,
  .table.b-table.b-table-stacked-xl > tbody > tr > td,
  .table.b-table.b-table-stacked-xl > tbody > tr > th {
    display: block;
  }

  .table.b-table.b-table-stacked-xl > tfoot,
  .table.b-table.b-table-stacked-xl > tfoot > tr.b-table-bottom-row,
  .table.b-table.b-table-stacked-xl > tfoot > tr.b-table-top-row,
  .table.b-table.b-table-stacked-xl > thead,
  .table.b-table.b-table-stacked-xl > thead > tr.b-table-bottom-row,
  .table.b-table.b-table-stacked-xl > thead > tr.b-table-top-row {
    display: none;
  }

  .table.b-table.b-table-stacked-xl > caption {
    caption-side: top !important;
  }

  .table.b-table.b-table-stacked-xl > tbody > tr > [data-label]:before {
    content: attr(data-label);
    width: 40%;
    float: left;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: 700;
    font-style: normal;
    padding: 0 0.5rem 0 0;
    margin: 0;
  }

  .table.b-table.b-table-stacked-xl > tbody > tr > [data-label]:after {
    display: block;
    clear: both;
    content: "";
  }

  .table.b-table.b-table-stacked-xl > tbody > tr > [data-label] > div {
    display: inline-block;
    width: 60%;
    padding: 0 0 0 0.5rem;
    margin: 0;
  }

  .table.b-table.b-table-stacked-xl > tbody > tr.bottom-row,
  .table.b-table.b-table-stacked-xl > tbody > tr.top-row {
    display: none;
  }

  .table.b-table.b-table-stacked-xl > tbody > tr > :first-child,
  .table.b-table.b-table-stacked-xl > tbody > tr > [rowspan] + td,
  .table.b-table.b-table-stacked-xl > tbody > tr > [rowspan] + th {
    border-top-width: 3px;
  }
}

.table.b-table.b-table-stacked {
  display: block;
  width: 100%;
}

.table.b-table.b-table-stacked > caption,
.table.b-table.b-table-stacked > tbody,
.table.b-table.b-table-stacked > tbody > tr,
.table.b-table.b-table-stacked > tbody > tr > td,
.table.b-table.b-table-stacked > tbody > tr > th {
  display: block;
}

.table.b-table.b-table-stacked > tfoot,
.table.b-table.b-table-stacked > tfoot > tr.b-table-bottom-row,
.table.b-table.b-table-stacked > tfoot > tr.b-table-top-row,
.table.b-table.b-table-stacked > thead,
.table.b-table.b-table-stacked > thead > tr.b-table-bottom-row,
.table.b-table.b-table-stacked > thead > tr.b-table-top-row {
  display: none;
}

.table.b-table.b-table-stacked > caption {
  caption-side: top !important;
}

.table.b-table.b-table-stacked > tbody > tr > [data-label]:before {
  content: attr(data-label);
  width: 40%;
  float: left;
  text-align: right;
  overflow-wrap: break-word;
  font-weight: 700;
  font-style: normal;
  padding: 0 0.5rem 0 0;
  margin: 0;
}

.table.b-table.b-table-stacked > tbody > tr > [data-label]:after {
  display: block;
  clear: both;
  content: "";
}

.table.b-table.b-table-stacked > tbody > tr > [data-label] > div {
  display: inline-block;
  width: 60%;
  padding: 0 0 0 0.5rem;
  margin: 0;
}

.table.b-table.b-table-stacked > tbody > tr.bottom-row,
.table.b-table.b-table-stacked > tbody > tr.top-row {
  display: none;
}

.table.b-table.b-table-stacked > tbody > tr > :first-child,
.table.b-table.b-table-stacked > tbody > tr > [rowspan] + td,
.table.b-table.b-table-stacked > tbody > tr > [rowspan] + th {
  border-top-width: 3px;
}

.b-time {
  min-width: 150px;
}

.b-time[aria-disabled=true] output,
.b-time[aria-readonly=true] output,
.b-time output.disabled {
  background-color: #e9ecef;
  opacity: 1;
}

.b-time[aria-disabled=true] output {
  pointer-events: none;
}

[dir=rtl] .b-time > .d-flex:not(.flex-column) {
  flex-direction: row-reverse;
}

.b-time .b-time-header {
  margin-bottom: 0.5rem;
}

.b-time .b-time-header output {
  padding: 0.25rem;
  font-size: 80%;
}

.b-time .b-time-footer {
  margin-top: 0.5rem;
}

.b-time .b-time-ampm {
  margin-left: 0.5rem;
}

.b-toast {
  display: block;
  position: relative;
  max-width: 350px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-clip: padding-box;
  z-index: 1;
  border-radius: 0.25rem;
}

.b-toast .toast {
  background-color: hsla(0, 0%, 100%, 0.85);
}

.b-toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.b-toast.b-toast-solid .toast {
  background-color: #fff;
}

.b-toast .toast {
  opacity: 1;
}

.b-toast .toast.fade:not(.show) {
  opacity: 0;
}

.b-toast .toast .toast-body {
  display: block;
}

.b-toast-primary .toast {
  background-color: rgba(230, 242, 255, 0.85);
  border-color: rgba(184, 218, 255, 0.85);
  color: #004085;
}

.b-toast-primary .toast .toast-header {
  color: #004085;
  background-color: rgba(204, 229, 255, 0.85);
  border-bottom-color: rgba(184, 218, 255, 0.85);
}

.b-toast-primary.b-toast-solid .toast {
  background-color: #e6f2ff;
}

.b-toast-secondary .toast {
  background-color: rgba(239, 240, 241, 0.85);
  border-color: rgba(214, 216, 219, 0.85);
  color: #383d41;
}

.b-toast-secondary .toast .toast-header {
  color: #383d41;
  background-color: rgba(226, 227, 229, 0.85);
  border-bottom-color: rgba(214, 216, 219, 0.85);
}

.b-toast-secondary.b-toast-solid .toast {
  background-color: #eff0f1;
}

.b-toast-success .toast {
  background-color: rgba(230, 245, 233, 0.85);
  border-color: rgba(195, 230, 203, 0.85);
  color: #155724;
}

.b-toast-success .toast .toast-header {
  color: #155724;
  background-color: rgba(212, 237, 218, 0.85);
  border-bottom-color: rgba(195, 230, 203, 0.85);
}

.b-toast-success.b-toast-solid .toast {
  background-color: #e6f5e9;
}

.b-toast-info .toast {
  background-color: rgba(229, 244, 247, 0.85);
  border-color: rgba(190, 229, 235, 0.85);
  color: #0c5460;
}

.b-toast-info .toast .toast-header {
  color: #0c5460;
  background-color: rgba(209, 236, 241, 0.85);
  border-bottom-color: rgba(190, 229, 235, 0.85);
}

.b-toast-info.b-toast-solid .toast {
  background-color: #e5f4f7;
}

.b-toast-warning .toast {
  background-color: rgba(255, 249, 231, 0.85);
  border-color: rgba(255, 238, 186, 0.85);
  color: #856404;
}

.b-toast-warning .toast .toast-header {
  color: #856404;
  background-color: rgba(255, 243, 205, 0.85);
  border-bottom-color: rgba(255, 238, 186, 0.85);
}

.b-toast-warning.b-toast-solid .toast {
  background-color: #fff9e7;
}

.b-toast-danger .toast {
  background-color: rgba(252, 237, 238, 0.85);
  border-color: rgba(245, 198, 203, 0.85);
  color: #721c24;
}

.b-toast-danger .toast .toast-header {
  color: #721c24;
  background-color: rgba(248, 215, 218, 0.85);
  border-bottom-color: rgba(245, 198, 203, 0.85);
}

.b-toast-danger.b-toast-solid .toast {
  background-color: #fcedee;
}

.b-toast-light .toast {
  background-color: hsla(0, 0%, 100%, 0.85);
  border-color: rgba(253, 253, 254, 0.85);
  color: #818182;
}

.b-toast-light .toast .toast-header {
  color: #818182;
  background-color: hsla(0, 0%, 99.6%, 0.85);
  border-bottom-color: rgba(253, 253, 254, 0.85);
}

.b-toast-light.b-toast-solid .toast {
  background-color: #fff;
}

.b-toast-dark .toast {
  background-color: rgba(227, 229, 229, 0.85);
  border-color: rgba(198, 200, 202, 0.85);
  color: #1b1e21;
}

.b-toast-dark .toast .toast-header {
  color: #1b1e21;
  background-color: rgba(214, 216, 217, 0.85);
  border-bottom-color: rgba(198, 200, 202, 0.85);
}

.b-toast-dark.b-toast-solid .toast {
  background-color: #e3e5e5;
}

.b-toaster {
  z-index: 1100;
}

.b-toaster .b-toaster-slot {
  position: relative;
  display: block;
}

.b-toaster .b-toaster-slot:empty {
  display: none !important;
}

.b-toaster.b-toaster-bottom-center,
.b-toaster.b-toaster-bottom-full,
.b-toaster.b-toaster-bottom-left,
.b-toaster.b-toaster-bottom-right,
.b-toaster.b-toaster-top-center,
.b-toaster.b-toaster-top-full,
.b-toaster.b-toaster-top-left,
.b-toaster.b-toaster-top-right {
  position: fixed;
  left: 0.5rem;
  right: 0.5rem;
  margin: 0;
  padding: 0;
  height: 0;
  overflow: visible;
}

.b-toaster.b-toaster-bottom-center .b-toaster-slot,
.b-toaster.b-toaster-bottom-full .b-toaster-slot,
.b-toaster.b-toaster-bottom-left .b-toaster-slot,
.b-toaster.b-toaster-bottom-right .b-toaster-slot,
.b-toaster.b-toaster-top-center .b-toaster-slot,
.b-toaster.b-toaster-top-full .b-toaster-slot,
.b-toaster.b-toaster-top-left .b-toaster-slot,
.b-toaster.b-toaster-top-right .b-toaster-slot {
  position: absolute;
  max-width: 350px;
  width: 100%;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
}

.b-toaster.b-toaster-bottom-full .b-toaster-slot,
.b-toaster.b-toaster-bottom-full .b-toaster-slot .b-toast,
.b-toaster.b-toaster-bottom-full .b-toaster-slot .toast,
.b-toaster.b-toaster-top-full .b-toaster-slot,
.b-toaster.b-toaster-top-full .b-toaster-slot .b-toast,
.b-toaster.b-toaster-top-full .b-toaster-slot .toast {
  width: 100%;
  max-width: 100%;
}

.b-toaster.b-toaster-top-center,
.b-toaster.b-toaster-top-full,
.b-toaster.b-toaster-top-left,
.b-toaster.b-toaster-top-right {
  top: 0;
}

.b-toaster.b-toaster-top-center .b-toaster-slot,
.b-toaster.b-toaster-top-full .b-toaster-slot,
.b-toaster.b-toaster-top-left .b-toaster-slot,
.b-toaster.b-toaster-top-right .b-toaster-slot {
  top: 0.5rem;
}

.b-toaster.b-toaster-bottom-center,
.b-toaster.b-toaster-bottom-full,
.b-toaster.b-toaster-bottom-left,
.b-toaster.b-toaster-bottom-right {
  bottom: 0;
}

.b-toaster.b-toaster-bottom-center .b-toaster-slot,
.b-toaster.b-toaster-bottom-full .b-toaster-slot,
.b-toaster.b-toaster-bottom-left .b-toaster-slot,
.b-toaster.b-toaster-bottom-right .b-toaster-slot {
  bottom: 0.5rem;
}

.b-toaster.b-toaster-bottom-center .b-toaster-slot,
.b-toaster.b-toaster-bottom-right .b-toaster-slot,
.b-toaster.b-toaster-top-center .b-toaster-slot,
.b-toaster.b-toaster-top-right .b-toaster-slot {
  margin-left: auto;
}

.b-toaster.b-toaster-bottom-center .b-toaster-slot,
.b-toaster.b-toaster-bottom-left .b-toaster-slot,
.b-toaster.b-toaster-top-center .b-toaster-slot,
.b-toaster.b-toaster-top-left .b-toaster-slot {
  margin-right: auto;
}

.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active,
.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-move,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-move,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-move,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-move {
  transition: transform 0.175s;
}

.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active .toast.fade,
.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-to .toast.fade,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active .toast.fade,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-to .toast.fade,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active .toast.fade,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-to .toast.fade,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active .toast.fade,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-to .toast.fade {
  transition-delay: 0.175s;
}

.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active {
  position: absolute;
  transition-delay: 0.175s;
}

.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active .toast.fade,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active .toast.fade,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active .toast.fade,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active .toast.fade {
  transition-delay: 0s;
}

.tooltip.b-tooltip {
  display: block;
  opacity: 0.9;
  outline: 0;
}

.tooltip.b-tooltip.fade:not(.show) {
  opacity: 0;
}

.tooltip.b-tooltip.show {
  opacity: 0.9;
}

.tooltip.b-tooltip.noninteractive {
  pointer-events: none;
}

.tooltip.b-tooltip .arrow {
  margin: 0 0.25rem;
}

.tooltip.b-tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow,
.tooltip.b-tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow,
.tooltip.b-tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow,
.tooltip.b-tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow,
.tooltip.b-tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow,
.tooltip.b-tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow,
.tooltip.b-tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow,
.tooltip.b-tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow,
.tooltip.b-tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow,
.tooltip.b-tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow,
.tooltip.b-tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow,
.tooltip.b-tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow,
.tooltip.b-tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow,
.tooltip.b-tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow,
.tooltip.b-tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow,
.tooltip.b-tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow,
.tooltip.b-tooltip.bs-tooltip-left .arrow,
.tooltip.b-tooltip.bs-tooltip-right .arrow {
  margin: 0.25rem 0;
}

.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-top .arrow:before {
  border-top-color: #007bff;
}

.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-right .arrow:before {
  border-right-color: #007bff;
}

.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #007bff;
}

.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-left .arrow:before {
  border-left-color: #007bff;
}

.tooltip.b-tooltip-primary .tooltip-inner {
  color: #fff;
  background-color: #007bff;
}

.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-top .arrow:before {
  border-top-color: #6c757d;
}

.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-right .arrow:before {
  border-right-color: #6c757d;
}

.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #6c757d;
}

.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-left .arrow:before {
  border-left-color: #6c757d;
}

.tooltip.b-tooltip-secondary .tooltip-inner {
  color: #fff;
  background-color: #6c757d;
}

.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-top .arrow:before {
  border-top-color: #28a745;
}

.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-right .arrow:before {
  border-right-color: #28a745;
}

.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #28a745;
}

.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-left .arrow:before {
  border-left-color: #28a745;
}

.tooltip.b-tooltip-success .tooltip-inner {
  color: #fff;
  background-color: #28a745;
}

.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-top .arrow:before {
  border-top-color: #17a2b8;
}

.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-right .arrow:before {
  border-right-color: #17a2b8;
}

.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #17a2b8;
}

.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-left .arrow:before {
  border-left-color: #17a2b8;
}

.tooltip.b-tooltip-info .tooltip-inner {
  color: #fff;
  background-color: #17a2b8;
}

.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-top .arrow:before {
  border-top-color: #ffc107;
}

.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-right .arrow:before {
  border-right-color: #ffc107;
}

.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #ffc107;
}

.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-left .arrow:before {
  border-left-color: #ffc107;
}

.tooltip.b-tooltip-warning .tooltip-inner {
  color: #212529;
  background-color: #ffc107;
}

.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-top .arrow:before {
  border-top-color: #dc3545;
}

.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-right .arrow:before {
  border-right-color: #dc3545;
}

.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #dc3545;
}

.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-left .arrow:before {
  border-left-color: #dc3545;
}

.tooltip.b-tooltip-danger .tooltip-inner {
  color: #fff;
  background-color: #dc3545;
}

.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-top .arrow:before {
  border-top-color: #f8f9fa;
}

.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-right .arrow:before {
  border-right-color: #f8f9fa;
}

.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #f8f9fa;
}

.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-left .arrow:before {
  border-left-color: #f8f9fa;
}

.tooltip.b-tooltip-light .tooltip-inner {
  color: #212529;
  background-color: #f8f9fa;
}

.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-top .arrow:before {
  border-top-color: #343a40;
}

.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-right .arrow:before {
  border-right-color: #343a40;
}

.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #343a40;
}

.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-left .arrow:before {
  border-left-color: #343a40;
}

.tooltip.b-tooltip-dark .tooltip-inner {
  color: #fff;
  background-color: #343a40;
}

.b-icon.bi {
  display: inline-block;
  overflow: visible;
  vertical-align: -0.15em;
}

.b-icon.b-icon-animation-cylon,
.b-icon.b-iconstack .b-icon-animation-cylon > g {
  transform-origin: center;
  -webkit-animation: b-icon-animation-cylon 0.75s ease-in-out infinite alternate;
  animation: b-icon-animation-cylon 0.75s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-cylon,
  .b-icon.b-iconstack .b-icon-animation-cylon > g {
    -webkit-animation: none;
    animation: none;
  }
}

.b-icon.b-icon-animation-cylon-vertical,
.b-icon.b-iconstack .b-icon-animation-cylon-vertical > g {
  transform-origin: center;
  -webkit-animation: b-icon-animation-cylon-vertical 0.75s ease-in-out infinite alternate;
  animation: b-icon-animation-cylon-vertical 0.75s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-cylon-vertical,
  .b-icon.b-iconstack .b-icon-animation-cylon-vertical > g {
    -webkit-animation: none;
    animation: none;
  }
}

.b-icon.b-icon-animation-fade,
.b-icon.b-iconstack .b-icon-animation-fade > g {
  transform-origin: center;
  -webkit-animation: b-icon-animation-fade 0.75s ease-in-out infinite alternate;
  animation: b-icon-animation-fade 0.75s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-fade,
  .b-icon.b-iconstack .b-icon-animation-fade > g {
    -webkit-animation: none;
    animation: none;
  }
}

.b-icon.b-icon-animation-spin,
.b-icon.b-iconstack .b-icon-animation-spin > g {
  transform-origin: center;
  -webkit-animation: b-icon-animation-spin 2s linear infinite normal;
  animation: b-icon-animation-spin 2s linear infinite normal;
}

@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-spin,
  .b-icon.b-iconstack .b-icon-animation-spin > g {
    -webkit-animation: none;
    animation: none;
  }
}

.b-icon.b-icon-animation-spin-reverse,
.b-icon.b-iconstack .b-icon-animation-spin-reverse > g {
  transform-origin: center;
  animation: b-icon-animation-spin 2s linear infinite reverse;
}

@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-spin-reverse,
  .b-icon.b-iconstack .b-icon-animation-spin-reverse > g {
    -webkit-animation: none;
    animation: none;
  }
}

.b-icon.b-icon-animation-spin-pulse,
.b-icon.b-iconstack .b-icon-animation-spin-pulse > g {
  transform-origin: center;
  -webkit-animation: b-icon-animation-spin 1s steps(8) infinite normal;
  animation: b-icon-animation-spin 1s steps(8) infinite normal;
}

@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-spin-pulse,
  .b-icon.b-iconstack .b-icon-animation-spin-pulse > g {
    -webkit-animation: none;
    animation: none;
  }
}

.b-icon.b-icon-animation-spin-reverse-pulse,
.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse > g {
  transform-origin: center;
  animation: b-icon-animation-spin 1s steps(8) infinite reverse;
}

@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-spin-reverse-pulse,
  .b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse > g {
    -webkit-animation: none;
    animation: none;
  }
}

.b-icon.b-icon-animation-throb,
.b-icon.b-iconstack .b-icon-animation-throb > g {
  transform-origin: center;
  -webkit-animation: b-icon-animation-throb 0.75s ease-in-out infinite alternate;
  animation: b-icon-animation-throb 0.75s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-throb,
  .b-icon.b-iconstack .b-icon-animation-throb > g {
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes b-icon-animation-cylon {
  0% {
    transform: translateX(-25%);
  }

  to {
    transform: translateX(25%);
  }
}

@keyframes b-icon-animation-cylon {
  0% {
    transform: translateX(-25%);
  }

  to {
    transform: translateX(25%);
  }
}

@-webkit-keyframes b-icon-animation-cylon-vertical {
  0% {
    transform: translateY(25%);
  }

  to {
    transform: translateY(-25%);
  }
}

@keyframes b-icon-animation-cylon-vertical {
  0% {
    transform: translateY(25%);
  }

  to {
    transform: translateY(-25%);
  }
}

@-webkit-keyframes b-icon-animation-fade {
  0% {
    opacity: 0.1;
  }

  to {
    opacity: 1;
  }
}

@keyframes b-icon-animation-fade {
  0% {
    opacity: 0.1;
  }

  to {
    opacity: 1;
  }
}

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

  to {
    transform: rotate(359deg);
  }
}

@keyframes b-icon-animation-spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@-webkit-keyframes b-icon-animation-throb {
  0% {
    opacity: 0.5;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes b-icon-animation-throb {
  0% {
    opacity: 0.5;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btn .b-icon.bi,
.dropdown-item .b-icon.bi,
.dropdown-toggle .b-icon.bi,
.input-group-text .b-icon.bi,
.nav-link .b-icon.bi {
  font-size: 125%;
  vertical-align: text-bottom;
}

/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

*,
:after,
:before {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
}

address,
dl,
ol,
ul {
  margin-bottom: 1rem;
}

dl,
ol,
ul {
  margin-top: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  border-style: none;
}

img,
svg {
  vertical-align: middle;
}

svg {
  overflow: hidden;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.h1,
h1 {
  font-size: 2.5rem;
}

.h2,
h2 {
  font-size: 2rem;
}

.h3,
h3 {
  font-size: 1.75rem;
}

.h4,
h4 {
  font-size: 1.5rem;
}

.h5,
h5 {
  font-size: 1.25rem;
}

.h6,
h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
}

.display-1,
.display-2 {
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
}

.display-3 {
  font-size: 4.5rem;
}

.display-3,
.display-4 {
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.small,
small {
  font-size: 0.875em;
  font-weight: 400;
}

.mark,
mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-inline,
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer:before {
  content: "\2014\A0";
}

.img-fluid,
.img-thumbnail {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table td,
.table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm td,
.table-sm th {
  padding: 0.3rem;
}

.table-bordered,
.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
}

.table-bordered thead td,
.table-bordered thead th {
  border-bottom-width: 2px;
}

.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > td,
.table-primary > th {
  background-color: #b8daff;
}

.table-primary tbody + tbody,
.table-primary td,
.table-primary th,
.table-primary thead th {
  border-color: #7abaff;
}

.table-hover .table-primary:hover,
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > td,
.table-secondary > th {
  background-color: #d6d8db;
}

.table-secondary tbody + tbody,
.table-secondary td,
.table-secondary th,
.table-secondary thead th {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover,
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > td,
.table-success > th {
  background-color: #c3e6cb;
}

.table-success tbody + tbody,
.table-success td,
.table-success th,
.table-success thead th {
  border-color: #8fd19e;
}

.table-hover .table-success:hover,
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > td,
.table-info > th {
  background-color: #bee5eb;
}

.table-info tbody + tbody,
.table-info td,
.table-info th,
.table-info thead th {
  border-color: #86cfda;
}

.table-hover .table-info:hover,
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > td,
.table-warning > th {
  background-color: #ffeeba;
}

.table-warning tbody + tbody,
.table-warning td,
.table-warning th,
.table-warning thead th {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover,
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > td,
.table-danger > th {
  background-color: #f5c6cb;
}

.table-danger tbody + tbody,
.table-danger td,
.table-danger th,
.table-danger thead th {
  border-color: #ed969e;
}

.table-hover .table-danger:hover,
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > td,
.table-light > th {
  background-color: #fdfdfe;
}

.table-light tbody + tbody,
.table-light td,
.table-light th,
.table-light thead th {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover,
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > td,
.table-dark > th {
  background-color: #c6c8ca;
}

.table-dark tbody + tbody,
.table-dark td,
.table-dark th,
.table-dark thead th {
  border-color: #95999c;
}

.table-hover .table-dark:hover,
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > td,
.table-active > th,
.table-hover .table-active:hover,
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark td,
.table-dark th,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: hsla(0, 0%, 100%, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: hsla(0, 0%, 100%, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control,
input[type=time].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[multiple],
select.form-control[size],
textarea.form-control {
  height: auto;
}

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

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.form-row > .col > .valid-tooltip,
.form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip,
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip {
  display: block;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid,
select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.custom-select.is-valid,
.was-validated .custom-select:valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.custom-select.is-valid:focus,
.was-validated .custom-select:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #28a745;
}

.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip,
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip {
  display: block;
}

.custom-control-input.is-valid ~ .custom-control-label,
.was-validated .custom-control-input:valid ~ .custom-control-label {
  color: #28a745;
}

.custom-control-input.is-valid ~ .custom-control-label:before,
.was-validated .custom-control-input:valid ~ .custom-control-label:before {
  border-color: #28a745;
}

.custom-control-input.is-valid:checked ~ .custom-control-label:before,
.was-validated .custom-control-input:valid:checked ~ .custom-control-label:before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.custom-control-input.is-valid:focus ~ .custom-control-label:before,
.was-validated .custom-control-input:valid:focus ~ .custom-control-label:before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label:before,
.custom-file-input.is-valid ~ .custom-file-label,
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label:before,
.was-validated .custom-file-input:valid ~ .custom-file-label {
  border-color: #28a745;
}

.custom-file-input.is-valid:focus ~ .custom-file-label,
.was-validated .custom-file-input:valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.form-row > .col > .invalid-tooltip,
.form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated select.form-control:invalid,
select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.custom-select.is-invalid,
.was-validated .custom-select:invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.custom-select.is-invalid:focus,
.was-validated .custom-select:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip,
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip {
  display: block;
}

.custom-control-input.is-invalid ~ .custom-control-label,
.was-validated .custom-control-input:invalid ~ .custom-control-label {
  color: #dc3545;
}

.custom-control-input.is-invalid ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid ~ .custom-control-label:before {
  border-color: #dc3545;
}

.custom-control-input.is-invalid:checked ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label:before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.custom-control-input.is-invalid:focus ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label:before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label:before,
.custom-file-input.is-invalid ~ .custom-file-label,
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label:before,
.was-validated .custom-file-input:invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.custom-file-input.is-invalid:focus ~ .custom-file-label,
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    justify-content: center;
  }

  .form-inline .form-group,
  .form-inline label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-group {
    flex: 0 0 auto;
    flex-flow: row wrap;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .custom-select,
  .form-inline .input-group {
    width: auto;
  }

  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }

  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary.focus,
.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success.focus,
.btn-success:focus,
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success.focus,
.btn-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info.focus,
.btn-info:focus,
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info.focus,
.btn-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning.focus,
.btn-warning:focus,
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning.focus,
.btn-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger.focus,
.btn-danger:focus,
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger.focus,
.btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light.focus,
.btn-light:focus,
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light.focus,
.btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark.focus,
.btn-dark:focus,
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark.focus,
.btn-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success.focus,
.btn-outline-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info.focus,
.btn-outline-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning.focus,
.btn-outline-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger.focus,
.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light.focus,
.btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.btn-link:hover {
  color: #0056b3;
}

.btn-link.focus,
.btn-link:focus,
.btn-link:hover {
  text-decoration: underline;
}

.btn-link.disabled,
.btn-link:disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-group-lg > .btn,
.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-group-sm > .btn,
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.dropdown,
.dropleft,
.dropright,
.dropup {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropright .dropdown-toggle:after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  display: none;
}

.dropleft .dropdown-toggle:before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropleft .dropdown-toggle:before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=bottom],
.dropdown-menu[x-placement^=left],
.dropdown-menu[x-placement^=right],
.dropdown-menu[x-placement^=top] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group-vertical > .btn,
.btn-group > .btn {
  position: relative;
  flex: 1 1 auto;
}

.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn-group:not(:first-child),
.btn-group > .btn:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split:after,
.dropright .dropdown-toggle-split:after,
.dropup .dropdown-toggle-split:after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split:before {
  margin-right: 0;
}

.btn-group-sm > .btn + .dropdown-toggle-split,
.btn-sm + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-group-lg > .btn + .dropdown-toggle-split,
.btn-lg + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn-group:not(:first-child),
.btn-group-vertical > .btn:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn-group > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control,
.input-group > .form-control-plaintext {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group > .custom-file + .custom-file,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .form-control,
.input-group > .custom-select + .custom-file,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .form-control,
.input-group > .form-control + .custom-file,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .form-control,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .form-control {
  margin-left: -1px;
}

.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
.input-group > .custom-select:focus,
.input-group > .form-control:focus {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: flex;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label:after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label:after,
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .form-control:nth-last-child(n+3),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label:after,
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-append,
.input-group-prepend {
  display: flex;
}

.input-group-append .btn,
.input-group-prepend .btn {
  position: relative;
  z-index: 2;
}

.input-group-append .btn:focus,
.input-group-prepend .btn:focus {
  z-index: 3;
}

.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .input-group-text,
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .input-group-text {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type=checkbox],
.input-group-text input[type=radio] {
  margin-top: 0;
}

.input-group-lg > .custom-select,
.input-group-lg > .form-control:not(textarea) {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .custom-select,
.input-group-lg > .form-control,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .input-group-text {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .custom-select,
.input-group-sm > .form-control:not(textarea) {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .custom-select,
.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child),
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label:before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label:before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
  border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label:before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-control-input:disabled ~ .custom-control-label,
.custom-control-input[disabled] ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label:before,
.custom-control-input[disabled] ~ .custom-control-label:before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label:before {
  pointer-events: none;
  background-color: #fff;
  border: 1px solid #adb5bd;
}

.custom-control-label:after,
.custom-control-label:before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

.custom-control-label:after {
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label:before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label:before {
  border-color: #007bff;
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label:before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label:before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label:before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label:before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label:before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label:after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label:after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label:after {
  background-color: #fff;
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label:before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  display: inline-block;
  margin-bottom: 0;
}

.custom-file,
.custom-file-input {
  position: relative;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
}

.custom-file-input {
  z-index: 2;
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input:disabled ~ .custom-file-label,
.custom-file-input[disabled] ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label:after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]:after {
  content: attr(data-browse);
}

.custom-file-label {
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  overflow: hidden;
  font-weight: 400;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label,
.custom-file-label:after {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
}

.custom-file-label:after {
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-range:focus {
  outline: 0;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower,
.custom-range::-ms-fill-upper {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label:before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label:before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:focus,
.nav-link:hover {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill .nav-item,
.nav-fill > .nav-link {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item,
.nav-justified > .nav-link {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  padding: 0.5rem 1rem;
}

.navbar,
.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-lg,
.navbar-expand > .container-md,
.navbar-expand > .container-sm,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-lg,
.navbar-expand > .container-md,
.navbar-expand > .container-sm,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: hsla(0, 0%, 100%, 0.5);
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: hsla(0, 0%, 100%, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: hsla(0, 0%, 100%, 0.25);
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: hsla(0, 0%, 100%, 0.5);
  border-color: hsla(0, 0%, 100%, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
  color: hsla(0, 0%, 100%, 0.5);
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
}

.card-subtitle,
.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-bottom: -0.75rem;
  border-bottom: 0;
}

.card-header-pills,
.card-header-tabs {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom,
.card-img-top {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }

  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-header,
  .card-group > .card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-footer,
  .card-group > .card:not(:last-child) .card-img-bottom {
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-header,
  .card-group > .card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-footer,
  .card-group > .card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item:before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover:before {
  text-decoration: underline;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}

a.badge:focus,
a.badge:hover {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

a.badge-primary:focus,
a.badge-primary:hover {
  color: #fff;
  background-color: #0062cc;
}

a.badge-primary.focus,
a.badge-primary:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

a.badge-secondary:focus,
a.badge-secondary:hover {
  color: #fff;
  background-color: #545b62;
}

a.badge-secondary.focus,
a.badge-secondary:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

a.badge-success:focus,
a.badge-success:hover {
  color: #fff;
  background-color: #1e7e34;
}

a.badge-success.focus,
a.badge-success:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

a.badge-info:focus,
a.badge-info:hover {
  color: #fff;
  background-color: #117a8b;
}

a.badge-info.focus,
a.badge-info:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

a.badge-warning:focus,
a.badge-warning:hover {
  color: #212529;
  background-color: #d39e00;
}

a.badge-warning.focus,
a.badge-warning:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

a.badge-danger:focus,
a.badge-danger:hover {
  color: #fff;
  background-color: #bd2130;
}

a.badge-danger.focus,
a.badge-danger:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

a.badge-light:focus,
a.badge-light:hover {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light.focus,
a.badge-light:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:focus,
a.badge-dark:hover {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark.focus,
a.badge-dark:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  0% {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  height: 1rem;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress,
.progress-bar {
  display: flex;
  overflow: hidden;
}

.progress-bar {
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, hsla(0, 0%, 100%, 0.15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, 0.15) 0, hsla(0, 0%, 100%, 0.15) 75%, transparent 0, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
    animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }

  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }

  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }

  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }

  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: hsla(0, 0%, 100%, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: hsla(0, 0%, 100%, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translateY(-50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered:before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable:before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered:before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow:before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-auto[x-placement^=top],
.bs-tooltip-top {
  padding: 0.4rem 0;
}

.bs-tooltip-auto[x-placement^=top] .arrow,
.bs-tooltip-top .arrow {
  bottom: 0;
}

.bs-tooltip-auto[x-placement^=top] .arrow:before,
.bs-tooltip-top .arrow:before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-auto[x-placement^=right],
.bs-tooltip-right {
  padding: 0 0.4rem;
}

.bs-tooltip-auto[x-placement^=right] .arrow,
.bs-tooltip-right .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-auto[x-placement^=right] .arrow:before,
.bs-tooltip-right .arrow:before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-auto[x-placement^=bottom],
.bs-tooltip-bottom {
  padding: 0.4rem 0;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow,
.bs-tooltip-bottom .arrow {
  top: 0;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow:before,
.bs-tooltip-bottom .arrow:before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-auto[x-placement^=left],
.bs-tooltip-left {
  padding: 0 0.4rem;
}

.bs-tooltip-auto[x-placement^=left] .arrow,
.bs-tooltip-left .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-auto[x-placement^=left] .arrow:before,
.bs-tooltip-left .arrow:before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  top: 0;
  left: 0;
  z-index: 1060;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover,
.popover .arrow {
  position: absolute;
  display: block;
}

.popover .arrow {
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow:after,
.popover .arrow:before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-auto[x-placement^=top],
.bs-popover-top {
  margin-bottom: 0.5rem;
}

.bs-popover-auto[x-placement^=top] > .arrow,
.bs-popover-top > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-auto[x-placement^=top] > .arrow:before,
.bs-popover-top > .arrow:before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=top] > .arrow:after,
.bs-popover-top > .arrow:after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-auto[x-placement^=right],
.bs-popover-right {
  margin-left: 0.5rem;
}

.bs-popover-auto[x-placement^=right] > .arrow,
.bs-popover-right > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-auto[x-placement^=right] > .arrow:before,
.bs-popover-right > .arrow:before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=right] > .arrow:after,
.bs-popover-right > .arrow:after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-auto[x-placement^=bottom],
.bs-popover-bottom {
  margin-top: 0.5rem;
}

.bs-popover-auto[x-placement^=bottom] > .arrow,
.bs-popover-bottom > .arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-auto[x-placement^=bottom] > .arrow:before,
.bs-popover-bottom > .arrow:before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=bottom] > .arrow:after,
.bs-popover-bottom > .arrow:after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-auto[x-placement^=bottom] .popover-header:before,
.bs-popover-bottom .popover-header:before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-auto[x-placement^=left],
.bs-popover-left {
  margin-right: 0.5rem;
}

.bs-popover-auto[x-placement^=left] > .arrow,
.bs-popover-left > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-auto[x-placement^=left] > .arrow:before,
.bs-popover-left > .arrow:before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=left] > .arrow:after,
.bs-popover-left > .arrow:after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner:after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}

.active.carousel-item-right,
.carousel-item-next:not(.carousel-item-left) {
  transform: translateX(100%);
}

.active.carousel-item-left,
.carousel-item-prev:not(.carousel-item-right) {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-next,
  .carousel-control-prev {
    transition: none;
  }
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50%/100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(1turn);
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(1turn);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: none;
  }
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
  animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
}

.rounded-right,
.rounded-top {
  border-top-right-radius: 0.25rem !important;
}

.rounded-bottom,
.rounded-right {
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom,
.rounded-left {
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive:before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9:before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9:before {
  padding-top: 56.25%;
}

.embed-responsive-4by3:before {
  padding-top: 75%;
}

.embed-responsive-1by1:before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  top: 0;
}

.fixed-bottom,
.fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  bottom: 0;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.stretched-link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace !important;
}

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

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

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

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

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

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

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

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

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

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

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

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

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

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:focus,
a.text-primary:hover {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:focus,
a.text-secondary:hover {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:focus,
a.text-success:hover {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:focus,
a.text-info:hover {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:focus,
a.text-warning:hover {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:focus,
a.text-danger:hover {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:focus,
a.text-light:hover {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:focus,
a.text-dark:hover {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: hsla(0, 0%, 100%, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  :after,
  :before {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  blockquote,
  pre {
    border: 1px solid #adb5bd;
  }

  blockquote,
  img,
  pre,
  tr {
    page-break-inside: avoid;
  }

  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  .container,
  body {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered td,
  .table-bordered th {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark tbody + tbody,
  .table-dark td,
  .table-dark th,
  .table-dark thead th {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  display: inline-block;
}

a,
a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
  box-shadow: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
select,
textarea {
  background-color: transparent;
  outline: none;
  border: 0;
}

:focus {
  outline: none;
}

.alert-custom {
  padding: 15px 20px 16px 20px;
}

.alert-custom,
.alert-custom-icon {
  width: 100%;
  border-radius: 12px;
  line-height: 19px;
}

.alert-custom-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px 13px 20px;
}

.alert-custom-icon svg {
  cursor: pointer;
}

.custom-button {
  width: 100%;
  text-align: center;
  padding: 15px 0 16px 0;
  border-radius: 12px;
  line-height: 19px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.custom-button:focus {
  outline: none;
  box-shadow: none;
}

.custom-button.bg-FF:hover {
  background-color: #000;
  color: #fff;
}

.custom-button.bg-blue:hover {
  background-color: #fff;
  color: #0060ff;
  border: 1px solid #0060ff;
}

.filter-button {
  width: 100%;
  text-align: center;
  padding: 10px 0 11px 0;
  border-radius: 12px;
  line-height: 19px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.filter-button:focus {
  outline: none;
  box-shadow: none;
}

.filter-button.bg-brown:hover {
  background-color: #fff;
  color: #281c1c;
  border: 1px solid #281c1c;
}

.form-element {
  margin-bottom: 20px;
  position: relative;
}

.form-element .custom-input {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  background-color: #f2f2f2;
  border-radius: 12px;
  padding: 10px 15px 0 15px;
  height: 50px;
}

.form-element .custom-input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .custom-input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .custom-input:focus ~ label,
.form-element .custom-input:valid ~ label {
  top: 10px;
  font-size: 10px;
  line-height: 14px;
}

.form-element .custom-input:focus,
.form-element .custom-input:valid {
  font-size: 12px;
  line-height: 16px;
}

.form-element .custom-selected {
  color: #281c1c;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  width: 100%;
  min-height: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(/images/select-icon.svg);
  background-position: right 19.98px top 22.14px;
  background-repeat: no-repeat;
  padding: 24px 15px 0 15px;
  background-color: #f2f2f2;
  border-radius: 12px;
}

.form-element .custom-input-filter {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  background-color: #fff;
  border-radius: 12px;
  padding: 10px 0 11px 20px;
}

.form-element .custom-input-filter::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .custom-input-filter::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .custom-input-filter-icon {
  position: relative;
}

.form-element .custom-input-filter-icon input {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  background-color: #fff;
  border-radius: 12px;
  padding: 10px 0 11px 20px;
  cursor: pointer;
}

.form-element .custom-input-filter-icon input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .custom-input-filter-icon input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .custom-input-filter-icon img {
  position: absolute;
  top: 11px;
  right: 20.31px;
  width: 16.69px;
  height: 18px;
  cursor: pointer;
}

.form-element .custom-select-filter {
  line-height: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(/images/dropdown-icon.svg);
  background-position: right 20px top 17px;
  background-repeat: no-repeat;
  padding: 10px 0 11px 20px;
  background-color: #fff;
}

.form-element .custom-input-dashboard,
.form-element .custom-select-filter {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  height: 40px;
  border-radius: 12px;
}

.form-element .custom-input-dashboard {
  line-height: 19px;
  background-color: #f2f2f2;
  padding: 10px 20px 0 20px;
}

.form-element .custom-input-dashboard::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .custom-input-dashboard::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .custom-input-dashboard:focus ~ label,
.form-element .custom-input-dashboard:valid ~ label {
  top: 5px;
  font-size: 10px;
  line-height: 14px;
}

.form-element .custom-input-dashboard:valid {
  font-size: 12px;
  line-height: 16px;
}

.form-element .custom-input-dashboard:disabled ~ label {
  top: 5px;
  font-size: 10px;
  line-height: 14px;
}

.form-element .custom-select-dashboard {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  width: 100%;
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(/images/dropdown-icon.svg);
  background-position: right 20px top 17px;
  background-repeat: no-repeat;
  padding: 10px 0 11px 20px;
  background-color: #f2f2f2;
  border-radius: 12px;
}

.form-element .custom-input-create-payment {
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  padding: 9px 25px;
  background-color: #e14b5a;
  border-radius: 12px;
}

.form-element label {
  color: rgba(83, 84, 97, 0.5098039216);
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  position: absolute;
  left: 15px;
  top: 15px;
  transition: 0.3s;
  pointer-events: none;
}

.form-element label.custom-select-label {
  top: 10px;
}

.form-element label.custom-input-dashboard-label {
  top: 10px;
  left: 20px;
}

.form-element span {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
}

.form-element span.cop-button-tooltip-text {
  right: unset;
  top: -50px;
}

.form-element input[type=password] {
  color: #0060ff;
}

.form-element.user-information input {
  padding-bottom: 11px;
  padding-right: 185px;
}

.basic-select {
  width: 100%;
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(/images/dropdown-icon.svg);
  background-position: right 0 top 6.5px;
  background-repeat: no-repeat;
  padding-right: 20px;
}

.dashboard-alert-processing {
  width: 100%;
  padding: 20px 30px;
  border-radius: 12px;
  justify-content: space-between;
}

.dashboard-alert-processing,
.dashboard-alert-processing .icon-text {
  display: flex;
  align-items: center;
}

.dashboard-alert-processing .icon-text .icon {
  margin-right: 30px;
}

.dashboard-alert-processing .icon-text .icon img {
  width: 42px;
  height: 42px;
}

.dashboard-alert-processing .button button {
  padding: 15px 0 16px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  border-radius: 61px;
  min-width: 178px;
}

.dashboard-alert-update {
  width: 100%;
  padding: 20px 30px;
  border-radius: 12px;
  justify-content: space-between;
}

.dashboard-alert-update,
.dashboard-alert-update .icon-text {
  display: flex;
  align-items: center;
}

.dashboard-alert-update .icon-text .icon {
  margin-right: 30px;
}

.dashboard-alert-update .icon-text .icon img {
  width: 42px;
  height: 42px;
}

.dashboard-alert-email-verification {
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.dashboard-alert-email-verification .icon-text {
  display: flex;
  align-items: center;
}

.dashboard-alert-email-verification .icon-text .icon {
  margin-right: 20px;
}

.dashboard-alert-email-verification .icon-text .icon img {
  width: 42px;
  height: 42px;
}

.dashboard-alert-email-verification .close-button {
  cursor: pointer;
  position: absolute;
  right: -10px;
  top: -10px;
}

.dashboard-alert-email-verification .close-button img {
  width: 26px;
  height: 26px;
}

.pagination {
  border-radius: 0;
  align-items: center;
}

.pagination .page-item {
  margin-right: 20px;
}

.pagination .page-item .page-link {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: none;
  padding: 0;
}

.pagination .page-item .page-link:hover {
  background-color: transparent;
}

.pagination .page-item .page-link:focus {
  box-shadow: none;
}

.pagination .page-item.active .page-link {
  color: #281c1c;
  background-color: #f2f2f2;
  border-radius: 2px;
  padding: 6px 13px;
  margin-right: 0;
}

body {
  font-family: Manrope, sans-serif;
}

.form-condition-check {
  display: flex;
}

.form-condition-check input {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.form-condition-check label {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

section {
  padding-top: 40px;
  padding-bottom: 100px;
}

.side-bar-border {
  border-top: 1px solid #f2f2f2;
  padding-top: 20px;
  margin-top: 20px;
  margin: 20px -30px 0 -30px;
  padding-left: 30px;
  padding-right: 30px;
}

.c-white {
  color: #fff;
}

.c-black {
  color: #000;
}

.c-brown {
  color: #281c1c;
}

.c-blue {
  color: #0060ff;
}

.c-red {
  color: #e14b5a;
}

.c-535 {
  color: rgba(83, 84, 97, 0.5098039216);
}

.c-grey {
  color: #f2f2f2;
}

.c-green {
  color: #8ed16f;
}

.c-yellow {
  color: #ffd037;
}

.c-yellow-2 {
  color: #ffc601;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-22 {
  font-size: 22px;
}

.fs-32 {
  font-size: 32px;
}

.fw-300 {
  font-weight: 300;
}

.fw-500 {
  font-weight: 500;
}

.fw-400 {
  font-weight: 400;
}

.fw-700 {
  font-weight: 700;
}

.ln-19 {
  line-height: 19px;
}

.ln-22 {
  line-height: 22px;
}

.ln-25 {
  line-height: 25px;
}

.ln-30 {
  line-height: 30px;
}

.br-1F2 {
  border: 1px solid #f2f2f2;
}

.br-12 {
  border-radius: 12px;
}

.br-61 {
  border-radius: 61px;
}

.br-120 {
  border-radius: 120px;
}

.bg-FF {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

.bg-blue {
  background-color: #0060ff;
}

.bg-red {
  background-color: #e14b5a;
}

.bg-535 {
  background-color: rgba(83, 84, 97, 0.5098039216);
}

.bg-grey {
  background-color: #f2f2f2;
}

.bg-green {
  background-color: #8ed16f;
}

.bg-yellow {
  background-color: #ffd037;
}

.bg-yellow-2 {
  background-color: #ffc601;
}

.bg-brown {
  background-color: #281c1c;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-mobile-10 {
  margin-bottom: 0;
}

.ptb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.plr-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.ptb-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.ptb-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.plr-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.plr-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.box-title-blue {
  color: #0060ff;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
}

.box-title-blue-2 {
  color: #0060ff;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
}

.box-title-gray {
  color: #281c1c;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.box-sub-title-c28 {
  color: #281c1c;
}

.box-sub-title-c28,
.box-sub-title-c535 {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.box-sub-title-c535 {
  color: rgba(83, 84, 97, 0.5098039216);
}

.box-layout-1 {
  padding: 50px 30px;
}

.box-layout-1,
.box-layout-2 {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.box-layout-2 {
  padding: 30px 50px;
}

.box-layout-3-none-shadow {
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
}

.paragraph-text {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.content-box {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: center;
}

.content-box label {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 5px;
  display: block;
}

.required-border {
  border: 1px solid #e14b5a;
}

#equal-height > [class*=col-] {
  display: flex;
  margin-bottom: 30px;
}

.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  margin: 0;
  padding: 0;
  align-items: center;
}

.breadcrumb .breadcrumb-item a {
  color: #281c1c;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.breadcrumb .breadcrumb-item.active {
  color: #281c1c;
  font-weight: 400;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: "";
  background-image: url(/images/breadcrumb-icon.svg);
  background-repeat: no-repeat;
  float: none;
  padding: 0;
  width: 6px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  background-size: cover;
  margin-right: 12px;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 12px;
}

.auth-header {
  padding-top: 11px;
  padding-bottom: 11px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.09);
}

.auth-header .logo a {
  display: inline-block;
}

.auth-header .logo a img {
  width: 100%;
  height: auto;
}

.auth-header .menu {
  text-align: right;
}

.auth-header .menu ul li {
  display: inline-block;
  margin-right: 20px;
}

.auth-header .menu ul li:last-child {
  margin-right: 0;
}

.auth-header .menu ul li .dashboard-dropdown-menu button,
.auth-header .menu ul li a {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.auth-header .menu ul li .dashboard-dropdown-menu button {
  background-color: transparent;
  border: none;
  padding: 0;
}

.auth-header .menu ul li .dashboard-dropdown-menu button img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
  margin-right: 10px;
  vertical-align: middle;
}

.auth-header .menu ul li .dashboard-dropdown-menu button:after {
  border: none;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  background-image: url(/images/dropdown-icon.svg);
  background-repeat: no-repeat;
  vertical-align: middle;
}

.auth-header .menu ul li .dashboard-dropdown-menu .dropdown-menu {
  border: none;
  padding: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.auth-header .menu ul li .dashboard-dropdown-menu .dropdown-menu .dashboard-dropdown-menu-item ul li {
  display: block;
  margin: 0;
}

.auth-header .menu ul li .dashboard-dropdown-menu .dropdown-menu .dashboard-dropdown-menu-item ul li a {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 5px;
  width: 100%;
}

.input-modal {
  padding-left: 0;
  background-color: #fff;
}

.input-modal .modal-dialog {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  margin: 0;
}

.input-modal .modal-dialog .modal-content {
  border: 0;
}

.input-modal .modal-dialog .modal-content .modal-close-title {
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
}

.input-modal .modal-dialog .modal-content .modal-close-title .modal-close-button button,
.input-modal .modal-dialog .modal-content .modal-close-title .modal-close-button button img {
  width: 24px;
  height: 24px;
}

.input-modal .modal-dialog .modal-content .modal-body {
  flex: none;
  padding: 0;
}

.input-modal .modal-dialog .modal-content .modal-footer {
  border: none;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin-top: 10px;
}

.input-modal .modal-dialog .modal-content .modal-footer button {
  max-width: 160px;
}

#posSelection___BV_modal_outer_ {
  z-index: 9998 !important;
}

.dashboard-sms-verification-box {
  position: relative;
  background-color: #f2f2f2;
  border-radius: 12px;
  padding: 20px 20px 50px 20px;
}

.dashboard-sms-verification-box .close-button {
  cursor: pointer;
  position: absolute;
  right: -10px;
  top: -10px;
}

.dashboard-sms-verification-box .close-button img {
  width: 26px;
  height: 26px;
}

.dashboard-sms-verification-box .form-element {
  margin-bottom: 0;
}

.dashboard-sms-verification-box .form-element input {
  background-color: #fff;
}

.dashboard-sms-verification-box .verification-box-button {
  padding: 10px 0 11px 0;
}

.pos-modal {
  padding-left: 0;
  background-color: transparent;
}

.pos-modal .modal-dialog {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  margin: 0;
}

.pos-modal .modal-dialog .modal-content {
  border: 0;
  padding: 10px;
  border-radius: 12px;
}

.pos-modal .modal-dialog .modal-content .modal-close-title {
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
}

.pos-modal .modal-dialog .modal-content .modal-close-title .modal-close-button button,
.pos-modal .modal-dialog .modal-content .modal-close-title .modal-close-button button img {
  width: 24px;
  height: 24px;
}

.pos-modal .modal-dialog .modal-content .modal-body {
  flex: none;
  padding: 0;
}

.pos-modal .modal-dialog .modal-content .modal-footer {
  border: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-top: 10px;
}

.pos-modal .modal-dialog .modal-content .modal-footer button {
  max-width: 160px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.modal-backdrop {
  background-color: #000;
  opacity: 0.7;
}

#modal-1___BV_modal_outer_ {
  z-index: 9999 !important;
}

.bm-burger-button {
  top: 20px !important;
  right: 30px !important;
  left: unset !important;
  width: 36px !important;
  height: 30px !important;
  cursor: pointer !important;
  z-index: 9 !important;
  display: none;
}

.bm-burger-bars {
  background-color: #0060ff !important;
}

.line-style {
  position: absolute;
  height: 20%;
  left: 0;
  right: 0;
}

.cross-style {
  position: absolute;
  right: 10px !important;
  top: 20px !important;
  cursor: pointer;
}

.bm-cross {
  background: #fff !important;
  width: 10% !important;
  height: 100% !important;
}

.bm-cross-button {
  height: 36px !important;
  width: 36px !important;
}

.bm-menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: #0060ff !important;
  overflow-x: hidden;
  padding-top: 0 !important;
  transition: 0.5s;
}

.bm-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.bm-item-list {
  padding: 20px !important;
  margin-left: 0 !important;
}

.bm-item-list .logo {
  margin-bottom: 20px;
}

.bm-item-list .logo a img {
  max-width: 100%;
  height: auto;
}

.bm-item-list .menu ul li {
  margin-bottom: 10px;
}

.bm-item-list .menu ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 8px 10px;
}

.bm-item-list .menu ul li a img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.bm-item-list .menu ul li a.active {
  border-radius: 12px;
  background: hsla(0, 0%, 100%, 0.2);
}

.bm-item-list .menu ul li .sub-menu {
  display: block;
}

.bm-item-list .menu ul li .sub-menu button {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  background-color: transparent !important;
  padding: 0;
  border: none !important;
  border-radius: none;
  left: 10px;
  text-align: left;
}

.bm-item-list .menu ul li .sub-menu button:after {
  border: none;
  width: 14px;
  height: 7.89px;
  background-image: url(/images/side-bar-sub-menu-icon.svg);
  background-repeat: no-repeat;
  vertical-align: middle;
  transform: rotate(180deg);
  position: absolute;
  top: 7px;
  right: 0;
}

.bm-item-list .menu ul li .sub-menu button img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: middle;
}

.bm-item-list .menu ul li .sub-menu button:focus {
  box-shadow: none !important;
}

.bm-item-list .menu ul li .sub-menu button[aria-expanded=true]:after {
  transform: rotate(0deg);
}

.bm-item-list .menu ul li .sub-menu .dropdown-menu {
  position: relative !important;
  left: 46px !important;
  top: 15px !important;
  transform: none !important;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.bm-item-list .menu ul li .sub-menu .dropdown-menu ul li:last-child {
  margin-bottom: 15px;
}

.bm-item-list .menu ul li .sub-menu .dropdown-menu ul li a {
  padding: 0;
}

.bm-item-list .menu ul li .sub-menu .dropdown-menu ul li a.active {
  background-color: transparent;
  border-radius: 0;
  font-weight: 700;
}

.bm-item-list .menu ul li .basic-select {
  background-image: url(/images/mobil-select-icon.svg);
  color: #fff;
  background-position: right 20px top 15px;
  border: 1px solid #fff;
  padding: 10px 20px 10px 20px;
  border-radius: 12px;
}

.bm-item-list .menu ul li .side-bar-logo {
  margin-left: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.bm-item-list > div {
  display: block !important;
  text-decoration: none !important;
  padding: 0 !important;
}

.bm-item-list > * > span {
  margin-left: 0 !important;
}

.register .register-container .register-container-left img {
  width: 100%;
  height: auto;
  margin-top: 70px;
}

.register .register-container .register-container-right .domain-container {
  display: flex;
  position: relative;
}

.register .register-container .register-container-right .domain-container span {
  position: absolute;
  top: 14px;
  left: 15px;
  cursor: pointer;
}

.register .register-container .register-container-right .domain-container input {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 70%;
  padding: 17px 0 14px 49px;
  background-color: #f2f2f2;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.register .register-container .register-container-right .domain-container input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.register .register-container .register-container-right .domain-container input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.register .register-container .register-container-right .domain-container label {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 30%;
  padding: 15px 0 16px 0;
  background-color: #e14b5a;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  text-align: center;
}

.tooltip .arrow {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.tooltip .arrow:before {
  border-top-color: #fff;
}

.tooltip .tooltip-inner {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 10px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.tooltip.b-tooltip {
  opacity: 1;
}

.login .forgot-password {
  text-align: right;
}

.login .forgot-password a {
  color: #0060ff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.password-change .img {
  text-align: center;
}

.password-change .img img {
  max-width: 100%;
  height: auto;
}

.side-bar {
  padding: 40px 30px;
  background-color: #0060ff;
  height: 100%;
  min-height: 100vh;
  width: 240px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
}

.side-bar .logo {
  padding-bottom: 40px;
  margin-bottom: 30px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
}

.side-bar .logo a {
  display: inline-block;
}

.side-bar .logo a img {
  max-width: 100%;
  height: auto;
}

.side-bar nav label {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 20px;
}

.side-bar nav ul {
  margin-left: -10px;
}

.side-bar nav ul li {
  margin-bottom: 10px;
}

.side-bar nav ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 8px 10px;
}

.side-bar nav ul li a img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.side-bar nav ul li a.active {
  border-radius: 12px;
  background: hsla(0, 0%, 100%, 0.2);
}

.side-bar nav ul li .sub-menu {
  display: block;
}

.side-bar nav ul li .sub-menu button {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  background-color: transparent !important;
  padding: 0;
  border: none !important;
  border-radius: none;
  left: 10px;
  text-align: left;
}

.side-bar nav ul li .sub-menu button:after {
  border: none;
  width: 14px;
  height: 7.89px;
  background-image: url(/images/side-bar-sub-menu-icon.svg);
  background-repeat: no-repeat;
  vertical-align: middle;
  transform: rotate(180deg);
  position: absolute;
  top: 7px;
  right: 0;
}

.side-bar nav ul li .sub-menu button img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: middle;
}

.side-bar nav ul li .sub-menu button:focus {
  box-shadow: none !important;
}

.side-bar nav ul li .sub-menu button[aria-expanded=true]:after {
  transform: rotate(0deg);
}

.side-bar nav ul li .sub-menu .dropdown-menu {
  position: relative !important;
  left: 46px !important;
  top: 15px !important;
  transform: none !important;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.side-bar nav ul li .sub-menu .dropdown-menu ul li:last-child {
  margin-bottom: 15px;
}

.side-bar nav ul li .sub-menu .dropdown-menu ul li a {
  padding: 0;
}

.side-bar nav ul li .sub-menu .dropdown-menu ul li a.active {
  background-color: transparent;
  border-radius: 0;
  font-weight: 700;
}

.side-bar nav ul li .side-bar-logo {
  margin-top: 53px;
  margin-left: 10px;
}

.side-bar nav ul li .side-bar-logo * {
  cursor: pointer;
}

.dashboard .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.dashboard .content-container {
  margin-left: 240px;
}

.dashboard .content-container .main-content {
  padding: 30px 30px 100px 30px;
  background-color: #f2f2f2;
}

.remove-button {
  background-color: #e14b5a;
  padding: 11px 17px;
  border-radius: 120px;
  width: 100%;
  text-align: center;
}

.remove-button img {
  width: 18px;
  height: 18px;
}

.add-button {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  background-color: transparent;
  padding: 11px 35px 10px 35px;
  border-radius: 12px;
  border: 1px solid #281c1c;
}

.add-button,
.add-button:hover {
  color: #281c1c;
}

.add-button img {
  margin-right: 20px;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.cop-button-tooltip-text {
  visibility: hidden;
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 10px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  width: 200px;
  text-align: center;
  position: absolute;
  z-index: 1;
  left: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  transform: translate(-50%);
  top: -50px;
}

.cop-button-tooltip-text:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.cop-button-tooltip-text-visible {
  visibility: visible;
  opacity: 1;
}

.copy-button {
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
  width: 40px;
  height: 40px;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  cursor: pointer;
}

.copy-button img {
  width: 20px;
  height: 20px;
}

.global-loader {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  background: hsla(0, 0%, 100%, 0.6);
  display: none;
}

.global-loader img {
  width: 200px;
  height: 200px;
}

.dashboard-header {
  padding: 20px 30px;
}

.dashboard-header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}

.dashboard-header .header .page-title label {
  color: #281c1c;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}

.dashboard-header .header .dashboard-menu ul li {
  display: inline-block;
  margin-right: 20px;
}

.dashboard-header .header .dashboard-menu ul li:last-child {
  margin-right: 0;
}

.dashboard-header .header .dashboard-menu ul li a {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.dashboard-header .header .dashboard-menu ul li .dashboard-dropdown-menu button {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  background-color: transparent;
  border: none;
  padding: 0;
}

.dashboard-header .header .dashboard-menu ul li .dashboard-dropdown-menu button img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
  margin-right: 10px;
  vertical-align: middle;
}

.dashboard-header .header .dashboard-menu ul li .dashboard-dropdown-menu button:after {
  border: none;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  background-image: url(/images/dropdown-icon.svg);
  background-repeat: no-repeat;
  vertical-align: middle;
}

.dashboard-header .header .dashboard-menu ul li .dashboard-dropdown-menu button:focus {
  box-shadow: none !important;
}

.dashboard-header .header .dashboard-menu ul li .dashboard-dropdown-menu .dropdown-menu {
  border: none;
  padding: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.dashboard-header .header .dashboard-menu ul li .dashboard-dropdown-menu .dropdown-menu .dashboard-dropdown-menu-item ul li {
  display: block;
  margin: 0;
}

.dashboard-header .header .dashboard-menu ul li .dashboard-dropdown-menu .dropdown-menu .dashboard-dropdown-menu-item ul li a {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 5px;
  width: 100%;
}

.dashboard-header .sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-header .sub-header .web-site-link a {
  color: #0060ff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.filter-container .filter-form-elements {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.filter-container .filter-form-elements .form-element {
  margin-right: 25px;
  width: 100%;
}

.filter-container .filter-form-elements .form-element:last-child {
  margin-right: 0;
}

.filter-container .filter-form-elements .form-element .daterangepicker {
  min-width: 250px !important;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.filter-container .filter-form-elements .form-element .daterangepicker .calendars .calendars-container {
  width: 100%;
}

.filter-container .filter-form-elements .form-element .daterangepicker .calendars .calendars-container .drp-calendar {
  width: 100%;
  max-width: 100%;
}

.filter-container .filter-form-elements .form-element .daterangepicker .calendars .calendars-container .drp-calendar.left {
  border: none;
}

.filter-container .filter-form-elements .form-element .daterangepicker .calendar-table .available span {
  position: relative;
  right: unset;
  top: unset;
}

.filter-container .form-element-date-picker {
  display: flex;
  margin-right: 20px;
}

.filter-container .filter-item-title {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  margin: 0 -30px;
  padding-left: 30px;
  padding-right: 30px;
}

.filter-container .filter-item-title .title label {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.filter-container .filter-item {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
  margin: 0 -30px;
  padding-left: 30px;
  padding-right: 30px;
}

.filter-container .filter-item .item .qrcode-link {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 3px;
  padding-bottom: 3px;
  background-color: #000;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.filter-container .filter-item .item .simple-text {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.filter-container .filter-item .item .price {
  color: #e14b5a;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.filter-container .filter-item .item .status {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 3px;
  padding-bottom: 3px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
}

.filter-container .filter-item .item .status.waiting {
  background-color: #ffd037;
}

.filter-container .filter-item .item .status.fail {
  background-color: #e14b5a;
}

.filter-container .filter-item .item .status.success {
  background-color: #0060ff;
}

.filter-container .filter-item .item .payment {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 3px;
  padding-bottom: 3px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
}

.filter-container .filter-item .item .payment.direct {
  background-color: #f2f2f2;
}

.filter-container .filter-item .item .payment.request {
  color: #fff;
  background-color: rgba(83, 84, 97, 0.51);
}

.filter-container .filter-item .item .payment.fast {
  background-color: #8ed16f;
}

.filter-container .filter-item .item .edit {
  color: #0060ff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: pointer;
}

.filter-container .filter-result-pagination p {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.filter-container .filter-result-pagination .pagination {
  justify-content: end;
}

.pos-box {
  padding: 30px;
  border: 1px solid #f2f2f2;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.pos-box .img {
  text-align: center;
}

.pos-box .img img {
  max-width: 100%;
  min-height: 87px;
}

.pos-box .text {
  text-align: center;
}

.pos-box .text p {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.pos-box .switch {
  text-align: center;
  margin-bottom: 10px;
}

.pos-box .switch .vue-js-switch.toggled .v-switch-core {
  background-color: #0060ff !important;
}

.pos-box .switch .vue-js-switch.toggled .v-switch-core .v-switch-button {
  transform: translate3d(39px, 3px, 0) !important;
}

.pos-box .switch .vue-js-switch .v-switch-core {
  border-radius: 200px !important;
  width: 63px !important;
  height: 25px !important;
  background-color: rgba(83, 84, 97, 0.51) !important;
}

.pos-box .switch .vue-js-switch .v-switch-core .v-switch-button {
  width: 20px !important;
  height: 20px !important;
  transform: translate3d(4px, 3px, 0) !important;
}

.pos-box .switch .vue-js-switch .v-switch-label {
  color: #fff !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 19px !important;
  top: 3px !important;
}

.pos-box .connect-button {
  text-align: center;
}

.pos-box .connect-button a {
  color: #0060ff;
  font-size: 14px;
  font-weight: 400;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.col-lg-4:last-child .pos-box {
  margin-bottom: 0;
}

.create-payment .tabs .nav-tabs {
  border: none;
  justify-content: center;
}

.create-payment .tabs .nav-tabs .nav-item {
  margin-right: 20px;
}

.create-payment .tabs .nav-tabs .nav-item:last-child {
  margin-right: 0;
}

.create-payment .tabs .nav-tabs .nav-item .nav-link {
  width: 100%;
  min-width: 200px;
  color: rgba(83, 84, 97, 0.5098039216);
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  background-color: #fff;
  border-radius: 120px;
  padding: 10px 0 11px 0;
  text-align: center;
  border: none;
  margin: 0;
}

.create-payment .tabs .nav-tabs .nav-item .nav-link.active {
  color: #fff;
  background-color: #0060ff;
}

.create-payment .tabs .nav-tabs .nav-item .nav-link:hover {
  border: none;
}

.create-payment .create-payment-content {
  margin-top: 30px;
}

.create-payment .create-payment-content .accordion .card {
  background-color: #fff;
  border-radius: 12px;
  border: none;
  margin-bottom: 30px;
}

.create-payment .create-payment-content .accordion .card .card-header {
  border: none;
  border-radius: 0;
  background-color: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.create-payment .create-payment-content .accordion .card .card-header button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  padding: 30px;
  background-color: #fff;
}

.create-payment .create-payment-content .accordion .card .card-header button:focus {
  box-shadow: none;
}

.create-payment .create-payment-content .accordion .card .card-header button .title label {
  color: #281c1c;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  cursor: pointer;
}

.create-payment .create-payment-content .accordion .card .card-header button .show-button {
  display: flex;
  align-items: center;
}

.create-payment .create-payment-content .accordion .card .card-header button .show-button span {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-right: 20px;
}

.create-payment .create-payment-content .accordion .card .card-header button .show-button img {
  width: 32px;
  height: 32px;
}

.create-payment .create-payment-content .accordion .card .card-header button .show-button .transform-rotate-180deg {
  transform: rotate(180deg);
}

.create-payment .create-payment-content .accordion .card .card-header button .show-button .transform-rotate-0deg {
  transform: rotate(0deg);
}

.create-payment .create-payment-content .accordion .card .card-body {
  padding: 0 30px 30px 30px;
}

.create-payment .create-payment-content .accordion .card .card-body .product-remove {
  background-color: #e14b5a;
  padding: 11px 17px;
  border-radius: 120px;
}

.create-payment .create-payment-content .accordion .card .card-body .product-remove img {
  width: 18px;
  height: 18px;
}

.create-payment .create-payment-content .accordion .card .card-body .product-add {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  background-color: transparent;
  padding: 11px 35px 10px 35px;
  border-radius: 12px;
  border: 1px solid #281c1c;
}

.create-payment .create-payment-content .accordion .card .card-body .product-add img {
  margin-right: 20px;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.create-payment-buttons {
  text-align: center;
}

.create-payment-buttons .link-button {
  width: 100%;
  color: #0060ff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 10px;
}

.create-payment-buttons .link-button:hover {
  color: #0060ff;
}

.create-payment-buttons .copy-button {
  position: relative;
  width: 100%;
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
  border: 1px solid #f2f2f2;
  border-radius: 12px;
  padding: 11px 0 10px 0;
}

.create-payment-buttons .custom-button {
  padding-top: 11px;
  padding-bottom: 10px;
}

.not-select-box {
  color: #281c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 11px 20px;
  background-color: #f2f2f2;
  border-radius: 12px;
}

@media only screen and (max-width: 992px) {
  .side-bar {
    display: none;
  }

  .dashboard .content-container {
    margin-left: 0;
  }

  .dashboard-header .header .dashboard-menu {
    display: none;
  }

  .dashboard-header .sub-header {
    flex-direction: column;
  }

  .dashboard-header .sub-header nav {
    width: 100%;
    margin-bottom: 10px;
  }

  .dashboard-header .sub-header .web-site-link {
    width: 100%;
  }

  .mb-mobile-10 {
    margin-bottom: 10px;
  }

  .mb-mobile-20 {
    margin-bottom: 20px !important;
  }

  .input-modal .modal-dialog,
  .pos-modal .modal-dialog {
    padding: 20px;
  }

  .dashboard-alert-processing {
    flex-direction: column;
  }

  .dashboard-alert-processing .icon-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .dashboard-alert-processing .button,
  .dashboard-alert-processing .button button {
    width: 100%;
  }

  .bm-burger-button {
    display: block;
  }

  .breadcrumb {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex-wrap: unset;
  }

  .breadcrumb .breadcrumb-item {
    flex-shrink: 0;
    max-width: 200px;
  }

  .filter-container .filter-form-elements {
    flex-wrap: wrap;
  }

  .filter-container .filter-form-elements .form-element {
    margin-right: 0;
  }

  .filter-container .filter-form-elements .form-element .custom-input-filter {
    width: 100%;
  }

  .filter-container .form-element-date-picker {
    flex-wrap: wrap;
    margin-right: 0;
  }

  .filter-container .form-element-date-picker .form-element {
    margin-right: 0;
    margin-bottom: 20px !important;
  }

  .filter-container .form-element-date-picker .custom-input-filter-icon input,
  .filter-container .form-element-date-picker .vue-daterange-picker {
    width: 100%;
  }

  .filter-container .filter-item-title .mobil-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .filter-container .filter-item-title .mobil-slider .title {
    flex-shrink: 0;
    max-width: 200px;
  }

  .filter-container .filter-item .mobil-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .filter-container .filter-item .mobil-slider .item {
    flex-shrink: 0;
    max-width: 200px;
  }

  .filter-container .filter-result-pagination .product-list-footer-result {
    text-align: center;
    margin-bottom: 20px;
  }

  .filter-container .filter-result-pagination .pagination {
    justify-content: center;
  }

  .mobile-none {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .input-modal .modal-dialog {
    max-width: 446px;
  }
}

/*
1- Fonts
2- Color
3- Font Size
4- Font Weight
5- Border
6- Border Radius
7- Margin
8- Padding

*/

.tour-options-add-alert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 4px;
  border-bottom: 1px solid #F2F2F2;
}

.alert-custom-icon {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 4px;
}

.rc-request-alert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 4px;
  background-color: #EE7070;
}

.rc-request-alert .content {
  display: flex;
  align-items: center;
}

.rc-request-alert .content .img {
  margin-right: 10px;
}

.rc-request-alert .content .img img {
  width: 32px;
  height: 32px;
}

.rc-request-alert .content .text label {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.rc-request-alert .content .text p {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.rc-request-alert .buttons {
  display: flex;
}

.rc-request-alert .buttons button {
  padding: 6px 10px;
  border-radius: 4px;
}

.rc-request-alert .buttons button.approve {
  color: #E14B5A;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  background-color: #FFFFFF;
  margin-right: 10px;
}

.rc-request-alert .buttons button.reject {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  background-color: #E14B5A;
}

.tour-summary-alert {
  background-color: #3E3F3E;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 23px 30px 22px 30px;
  border-radius: 6px;
}

.setup-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px 11px 20px;
  background-color: #043D9B;
  border-radius: 4px;
}

.setup-alert .icon-text {
  display: flex;
  align-items: center;
}

.setup-alert .icon-text img {
  width: 32px;
  height: 32px;
  margin-right: 20px;
}

.setup-alert .icon-text .text label {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 5px;
}

.setup-alert .icon-text .text p {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.setup-alert .button button {
  color: #043D9B;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 11px 20px 10px 20px;
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: 300ms;
}

.setup-alert .button button:hover {
  color: #FFFFFF;
  background-color: #043D9B;
  border: 1px solid #FFFFFF;
}

.cta-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px 11px 20px;
  background-color: #3E3F3E;
  border-radius: 4px;
}

.cta-alert .icon-text {
  display: flex;
  align-items: center;
}

.cta-alert .icon-text img {
  width: 32px;
  height: 32px;
  margin-right: 20px;
}

.cta-alert .icon-text .text label {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 5px;
}

.cta-alert .icon-text .text p {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.cta-alert .button button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 11px 44px 10px 44px;
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: 300ms;
}

.cta-alert .button button:hover {
  color: #FFFFFF;
  background-color: #3E3F3E;
  border: 1px solid #FFFFFF;
}

.translate-alert-container .translate-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 19px 20px 21px 20px;
  margin-bottom: 9px;
}

.translate-alert-container .translate-alert .img-desc {
  display: flex;
  align-items: center;
}

.translate-alert-container .translate-alert .img-desc img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

.translate-alert-container .translate-alert .img-desc .desc .title {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.translate-alert-container .translate-alert .img-desc .desc desc {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.translate-alert-container .translate-alert .button {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  padding: 11px 18px 10px 18px;
  background-color: #3E3F3E;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}

.translate-alert-container .translate-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 16px 20px 15px 20px;
}

.translate-alert-container .translate-info .desc {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.translate-alert-container .translate-info .translate-increase {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  padding: 6px 16px 8px 15px;
  background-color: #3E3F3E;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}

.subscription-alert-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #E14B5A;
  border-radius: 4px;
  padding: 13px 20px 11px 20px;
}

.subscription-alert-container .icon-text {
  display: flex;
  align-items: center;
}

.subscription-alert-container .icon-text .icon {
  margin-right: 20px;
}

.subscription-alert-container .icon-text .icon img {
  width: 32px;
  height: 32px;
}

.subscription-alert-container .icon-text .text {
  text-align: left;
}

.subscription-alert-container .icon-text .text label {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 2px;
  cursor: text;
}

.subscription-alert-container .icon-text .text p {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.subscription-alert-container .buttons button {
  color: #281C1C;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 10px 55px 11px 55px;
}

.subscription-settings-alert-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #043D9B;
  border-radius: 4px;
  padding: 20px 30px;
}

.subscription-settings-alert-container .icon-text {
  display: flex;
  align-items: center;
}

.subscription-settings-alert-container .icon-text .icon {
  margin-right: 30px;
}

.subscription-settings-alert-container .icon-text .icon img {
  width: 42px;
  height: 47px;
}

.subscription-settings-alert-container .icon-text .text label {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 5px;
  cursor: text;
}

.subscription-settings-alert-container .icon-text .text p {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.subscription-settings-alert-container .buttons button {
  color: #281C1C;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 16px 38px 15px 38px;
}

.custom-button {
  padding: 9px 0 9px 0;
  border-radius: 4px;
}

.default-button {
  width: 100%;
  text-align: center;
  padding: 9px 5px 9px 5px;
  border-radius: 4px;
  line-height: 22px;
  border: 1px solid transparent;
  transition: 300ms;
}

.default-button img {
  width: 19.5px;
  height: 19.5px;
  vertical-align: middle;
}

.default-button:focus {
  outline: none;
  box-shadow: none;
}

.default-button:disabled {
  opacity: 0.6;
}

.default-button.m-button {
  padding: 6px 12px 5px 11px;
}

.default-button:hover.bg-04 {
  background-color: #FFFFFF;
  color: #043D9B;
  border: 1px solid #043D9B;
}

.default-button:hover.bg-535 {
  background-color: #FFFFFF;
  color: rgba(83, 84, 97, 0.5098039216);
  border: 1px solid rgba(83, 84, 97, 0.5098039216);
}

.default-button:hover.bg-3E {
  background-color: #FFFFFF;
  color: #3E3F3E;
  border: 1px solid #3E3F3E;
}

.default-button:hover.bg-grey {
  background-color: #FFFFFF;
  color: #3E3F3E;
  border: 1px solid #3E3F3E;
}

.default-button:hover.bg-trans {
  background-color: #043D9B;
  color: #FFFFFF;
  border: 1px solid #043D9B;
}

.default-button:hover.bg-E14 {
  background-color: #FFFFFF;
  color: #E14B5A;
  border: 1px solid #E14B5A;
}

.default-button:hover.bg-cF15 {
  background-color: #FFFFFF;
  color: #F15E4F;
  border: 1px solid #F15E4F;
}

.default-button:disabled:hover.bg-04 {
  background-color: #043D9B;
  color: #FFFFFF;
  border: 1px solid transparent;
}

.default-button:disabled:hover.bg-535 {
  background-color: rgba(83, 84, 97, 0.5098039216);
  color: #FFFFFF;
  border: 1px solid transparent;
}

.default-button:disabled:hover.bg-3E {
  background-color: #3E3F3E;
  color: #FFFFFF;
  border: 1px solid transparent;
}

.custom-link {
  width: 100%;
  color: #043D9B;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.custom-link:hover {
  color: #043D9B;
}

.custom-link-006 {
  color: #0060FF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.custom-link-006:hover {
  color: #0060FF;
}

.custom-link-535 {
  color: rgba(83, 84, 97, 0.5098039216);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.custom-link-535:hover {
  color: rgba(83, 84, 97, 0.5098039216);
}

.custom-link-535 {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.custom-link-535:hover {
  color: #3E3F3E;
}

.custom-link-04 {
  color: #043D9B;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.custom-link-04:hover {
  color: #043D9B;
}

.add-new-button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding-top: 12px;
  padding-bottom: 11px;
  background-color: #F2F2F2;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  width: 100%;
  transition: 300ms;
}

.add-new-button:hover {
  background-color: #FFFFFF;
  border-color: #043D9B;
  color: #043D9B;
}

.edit-button {
  color: #043D9B;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 11px;
  padding-bottom: 10px;
  background-color: #FFFFFF;
  border: 1px solid #043D9B;
  border-radius: 4px;
  width: 100%;
  transition: 300ms;
}

.edit-button:hover {
  background-color: #043D9B;
  border-color: #043D9B;
  color: #FFFFFF;
}

.delete-button {
  color: #E14B5A;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 11px;
  padding-bottom: 10px;
  background-color: #FFFFFF;
  border: 1px solid #E14B5A;
  border-radius: 4px;
  width: 100%;
  transition: 300ms;
}

.delete-button:hover {
  background-color: #E14B5A;
  border-color: #E14B5A;
  color: #FFFFFF;
}

.delete-button-text {
  display: block;
  color: #E14B5A;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #F2F2F2;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  width: 100%;
  transition: 300ms;
  cursor: pointer;
}

.delete-button-text:hover {
  opacity: 0.6;
}

.delete-button-text img {
  margin-right: 5px;
  vertical-align: sub;
}

.options-add-button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 11px 18px 10px 19px;
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid transparent;
  text-align: center;
  transition: 300ms;
}

.options-add-button:hover {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.rc-edit-button {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 3px 10px;
  background-color: #3E3F3E;
  border-radius: 4px;
  width: 100%;
}

.rc-edit-button img {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

.front-custom-button {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  width: 100%;
  border-radius: 12px;
  background-color: #E14B5A;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
}

.front-custom-button:hover {
  color: #FFFFFF;
}

.cancel-request {
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 6px;
  padding-bottom: 5px;
  background-color: rgba(83, 84, 97, 0.51);
  border-radius: 4px;
  border: 1px solid transparent;
  transition: 300ms;
}

.cancel-request:hover {
  color: rgba(83, 84, 97, 0.51);
  background-color: #FFFFFF;
  border: 1px solid rgba(83, 84, 97, 0.51);
}

.quota-update-button-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.quota-update-button-container .buttons {
  margin-right: 10px;
}

.quota-update-button-container .buttons:last-child {
  margin-right: 0;
}

.quota-update-button-container .buttons button {
  width: 100%;
  color: rgba(83, 84, 97, 0.51);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  padding: 2px 11px 2px 10px;
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-radius: 4px;
}

.b2b-gray-button {
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  border-radius: 4px;
  background-color: #3E3F3E;
  padding: 10px 28px;
}

.form-element .default-input {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  padding: 10px 20px 11px 20px;
  background-color: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  height: auto;
  transition: all 0.3s;
}

.form-element .default-input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .default-input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .default-input.search-icon {
  background-image: url("/images/search-icon.svg");
  background-repeat: no-repeat;
  background-position: right 20px top 10px;
}

.form-element .default-input:focus {
  border-color: #043D9B;
}

.form-element .default-input:hover {
  border-color: #043D9B;
}

.form-element .default-textarea {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  padding: 10px 20px 11px 20px;
  background-color: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  height: auto;
  resize: none;
  max-height: 90px;
  transition: all 0.3s;
}

.form-element .default-textarea::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .default-textarea::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .default-textarea:focus {
  border-color: #043D9B;
}

.form-element .default-textarea:hover {
  border-color: #043D9B;
}

.form-element .default-textarea.h-205 {
  min-height: 205px;
}

.form-element .default-textarea.h-87 {
  min-height: 87px;
}

.form-element .default-textarea.h-109 {
  min-height: 109px;
}

.form-element .default-select {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/select-icon-dif.svg");
  background-position: right 16px top 16px;
  background-repeat: no-repeat;
  padding: 10px 20px 11px 20px;
  transition: all 0.3s;
}

.form-element .default-select:focus {
  border-color: #043D9B;
}

.form-element .default-select:hover {
  border-color: #043D9B;
}

.form-element .default-select.bg-white {
  border: 1px solid #043D9B;
  background-color: #FFFFFF;
}

.form-element.icon .default-select {
  position: relative;
  padding-left: 58px;
}

.form-element.icon .default-input {
  position: relative;
  padding-left: 54px;
}

.form-element.icon img {
  position: absolute;
  top: 13px;
  left: 20px;
}

.form-element.symbol-right .default-input {
  position: relative;
}

.form-element.symbol-right .symbol {
  color: rgba(83, 84, 97, 0.5098039216);
  position: absolute;
  top: 11px;
  right: 20px;
}

.form-element.icon-right .default-select {
  position: relative;
}

.form-element.icon-right img {
  position: absolute;
  top: 11px;
  right: 20px;
}

.form-element.icon-right .default-input {
  padding-right: 36px;
}

.form-element.icon-right img {
  position: absolute;
  top: 14px;
  right: 10px;
}

.form-element .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.form-element.left-icon .v-select .vs__dropdown-toggle {
  padding-left: 41px;
}

.form-element .v-select .vs__dropdown-toggle {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  padding: 10px 20px 11px 20px;
  background-color: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  transition: all 0.3s;
}

.form-element .v-select .vs__dropdown-toggle .vs__selected-options {
  padding: 0;
}

.form-element .v-select .vs__dropdown-toggle .vs__selected-options .vs__selected {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  position: relative;
  right: unset;
  top: unset;
}

.form-element .v-select .vs__dropdown-toggle .vs__selected-options .vs__search {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 0;
  margin: 0;
  border: none;
}

.form-element .v-select .vs__dropdown-toggle .vs__selected-options .vs__search::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .v-select .vs__dropdown-toggle .vs__selected-options .vs__search::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element .v-select .vs__dropdown-toggle .vs__actions {
  display: none;
}

.form-element .v-select .vs__dropdown-toggle:focus {
  border-color: #043D9B;
}

.form-element .v-select .vs__dropdown-toggle:hover {
  border-color: #043D9B;
}

.form-element .v-select.vs--multiple .vs__dropdown-toggle .vs__selected-options .vs__selected {
  color: #007EFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  background-color: rgba(0, 126, 255, 0.2);
  padding: 3px 8px;
  border: 0.5px solid rgba(0, 126, 255, 0.3);
  border-radius: 4px;
  display: flex;
  margin-top: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  z-index: 1;
}

.form-element .v-select.vs--multiple .vs__dropdown-toggle .vs__selected-options .vs__deselect {
  fill: #007EFF;
}

.form-element .v-select.vs--multiple .vs__dropdown-toggle .vs__actions {
  display: none;
}

.form-element .v-select.vs--multiple .vs__dropdown-toggle:focus {
  border-color: #043D9B;
}

.form-element .v-select.vs--multiple .vs__dropdown-toggle:hover {
  border-color: #043D9B;
}

.form-element .v-select .vs__dropdown-menu {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 0;
}

.form-element .v-select .vs__dropdown-menu .vs__dropdown-option {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 10px;
}

.form-element .v-select .vs__dropdown-menu .vs__dropdown-option.vs__dropdown-option--highlight {
  color: #FFFFFF;
  background-color: #043D9B;
}

.form-element .v-select .vs__dropdown-menu .vs__dropdown-option--disabled {
  color: white;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  background-color: #A8A8A8;
  line-height: 19px;
  padding: 10px;
}

.form-element .v-select.icon .vs__dropdown-toggle .vs__actions {
  display: flex;
  padding: 0;
}

.form-element .v-select.icon .vs__dropdown-toggle .vs__actions .vs__open-indicator {
  top: 12px;
  right: 20px;
  transform: none;
}

.form-element .v-select.icon .vs__dropdown-toggle .vs__actions .vs__open-indicator.left {
  left: 10px;
  right: 0;
}

.form-element .v-select.icon .vs__dropdown-toggle .vs__actions .vs__clear {
  display: none;
}

.form-element.close-icon .default-input {
  position: relative;
}

.form-element.close-icon img {
  position: absolute;
  right: -5px;
  top: -5px;
}

.form-element select.form-control {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/select-icon-dif.svg");
  background-position: right 16px top 16px;
  background-repeat: no-repeat;
  padding: 10px 20px 11px 20px;
  transition: all 0.3s;
  height: auto;
}

.form-element select.form-control:focus {
  border-color: #043D9B;
}

.form-element select.form-control:hover {
  border-color: #043D9B;
}

.form-element select.form-control:focus {
  outline: none;
  box-shadow: none;
}

.form-element-int-tel-input .int-tel-input-wapper {
  display: flex;
  width: 100%;
  padding-left: 0 !important;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-select {
  width: 20% !important;
  float: none !important;
  margin-left: 0 !important;
  margin-right: 20px !important;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-select input {
  position: unset !important;
  color: #3E3F3E !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 19px !important;
  width: 100% !important;
  padding: 10px 20px 11px 20px !important;
  background-color: #FFFFFF !important;
  border: 1px solid #F2F2F2 !important;
  border-radius: 4px !important;
  height: auto !important;
  background-image: url("/images/select-icon-dif.svg");
  transition: all 0.3s;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-select input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216) !important;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-select input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216) !important;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-select input:focus {
  border-color: #043D9B !important;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-select input:hover {
  border-color: #043D9B !important;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-select .int-tel-icon {
  background: url("/images/select-icon-dif.svg") !important;
  background-repeat: no-repeat !important;
  top: 16px !important;
  right: 20px !important;
  width: 14px !important;
  height: 8px !important;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-input {
  width: 100% !important;
  float: none !important;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-input input {
  position: unset !important;
  color: #3E3F3E !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 19px !important;
  width: 100% !important;
  padding: 10px 20px 11px 20px !important;
  background-color: #FFFFFF !important;
  border: 1px solid #F2F2F2 !important;
  border-radius: 4px !important;
  height: auto !important;
  transition: all 0.3s;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-input input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216) !important;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-input input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216) !important;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-input input:focus {
  border-color: #043D9B !important;
  box-shadow: none !important;
}

.form-element-int-tel-input .int-tel-input-wapper .int-tel-input input:hover {
  border-color: #043D9B !important;
  box-shadow: none !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown {
  background-color: #FFFFFF !important;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1) !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown .scrollbar__wrap {
  border: none !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown .scrollbar__wrap .filter-wapper .filter-input {
  border: 1px solid #F2F2F2 !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown .scrollbar__wrap .filter-wapper .filter-input input {
  color: #3E3F3E !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 19px !important;
  width: 100% !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown .scrollbar__wrap .filter-wapper .filter-input input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216) !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown .scrollbar__wrap .filter-wapper .filter-input input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216) !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown .scrollbar__wrap .filter-wapper .filter-input:after {
  background: url("/images/search-icon.svg") !important;
  background-repeat: no-repeat !important;
  top: 7px !important;
  right: 10px !important;
  width: 20px !important;
  height: 20px !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown .scrollbar__wrap .filter-wapper .filter-alphabet {
  border-bottom: 1px solid #F2F2F2 !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown .scrollbar__wrap .filter-wapper .filter-alphabet p {
  color: #3E3F3E !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown .scrollbar__wrap .filter-wapper .filter-alphabet p.selected {
  color: #FFFFFF !important;
  background: #043D9B !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown .scrollbar__wrap .scrollbar .options {
  color: #3E3F3E !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.form-element-int-tel-input .int-tel-input-wapper .select-dropdown .scrollbar__wrap .scrollbar .options.selected {
  color: #FFFFFF !important;
  background: #043D9B !important;
}

.form-element-int-tel-input .vue-tel-input {
  border: none;
  border-radius: 0;
  justify-content: space-between;
}

.form-element-int-tel-input .vue-tel-input .vti__dropdown {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 10px 20px 11px 20px;
  border-radius: 4px;
  border: 1px solid #F2F2F2;
  margin-right: 20px;
}

.form-element-int-tel-input .vue-tel-input .vti__dropdown .vti__selection .vti__flag {
  margin-left: 0;
  margin-right: 10px;
}

.form-element-int-tel-input .vue-tel-input .vti__dropdown .vti__selection .vti__country-code {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.form-element-int-tel-input .vue-tel-input .vti__dropdown .vti__selection .vti__dropdown-arrow {
  color: #3E3F3E;
  margin-left: 10px;
}

.form-element-int-tel-input .vue-tel-input .vti__dropdown:hover {
  background-color: transparent;
}

.form-element-int-tel-input .vue-tel-input .vti__dropdown.open {
  background-color: transparent;
}

.form-element-int-tel-input .vue-tel-input .vti__dropdown .vti__dropdown-list {
  z-index: 2;
  border-radius: 4px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border: none;
  min-width: 300px;
}

.form-element-int-tel-input .vue-tel-input .vti__dropdown .vti__dropdown-list.below {
  top: 42px;
}

.form-element-int-tel-input .vue-tel-input .vti__dropdown .vti__dropdown-list .vti__search_box {
  margin: 5px;
}

.form-element-int-tel-input .vue-tel-input .vti__input {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 10px 20px 11px 20px;
  border-radius: 4px;
  border: 1px solid #F2F2F2;
}

.form-element-int-tel-input .vue-tel-input:focus-within {
  box-shadow: none;
  border: none;
}

.form-element-int-tel-input .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.form-element-editor .quill-editor.required-border:hover .ql-toolbar {
  border: 1px solid #F2F2F2;
}

.form-element-editor .quill-editor.required-border:hover .ql-container.ql-snow {
  border-color: transparent;
}

.form-element-editor .quill-editor:hover .ql-toolbar {
  border-color: #043D9B;
}

.form-element-editor .quill-editor:hover .ql-container.ql-snow {
  border-color: #043D9B;
}

.form-element-editor .quill-editor .ql-toolbar {
  border: 1px solid #F2F2F2;
  transition: all 0.3s;
}

.form-element-editor .quill-editor .ql-container {
  min-height: 165px;
}

.form-element-editor .quill-editor .ql-container.ql-snow {
  transition: all 0.3s;
  border-top: 0;
  border: 1px solid #F2F2F2;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  font-style: normal;
  font-family: unset;
}

.form-element-editor .quill-editor .ql-container .ql-editor {
  min-height: 165px;
}

.form-element-editor .quill-editor .ql-container .ql-editor.ql-blank:before {
  color: rgba(83, 84, 97, 0.5098039216);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  font-style: normal;
}

.form-element-editor .quill-editor .ql-editing {
  top: 0 !important;
  left: 0 !important;
}

.form-element-editor .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.basic-select {
  color: #3E3F3E;
  transition: all 0.3s;
}

.basic-select:focus {
  border-color: #043D9B;
}

.basic-select:hover {
  border-color: #043D9B;
}

.dashboard-menu .basic-select {
  cursor: pointer;
}

.filter-input {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  padding: 9px 10px 7px 41px;
  background-color: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  height: auto;
  position: relative;
  transition: all 0.3s;
}

.filter-input::-moz-placeholder {
  color: #A8A8A8;
}

.filter-input::placeholder {
  color: #A8A8A8;
}

.filter-input:focus {
  border-color: #043D9B;
}

.filter-input:hover {
  border-color: #043D9B;
}

.filter-select {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-position: right 10px top 13px;
  background-repeat: no-repeat;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  padding-right: 10px;
  transition: all 0.3s;
}

.filter-select.status {
  background-image: url("/images/select-icon-dif.svg");
}

.filter-select.order {
  background-image: url("/images/orders-icon.svg");
}

.filter-select:focus {
  border-color: #043D9B;
}

.filter-select:hover {
  border-color: #043D9B;
}

.form-element-select2 .select2-container {
  background-color: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  padding: 10px 10px 0 10px;
  transition: all 0.3s;
  position: relative;
  right: unset;
  top: unset;
  width: 100% !important;
}

.form-element-select2 .select2-container span {
  position: relative;
  right: unset;
  top: unset;
}

.form-element-select2 .select2-container:focus {
  border-color: #043D9B;
}

.form-element-select2 .select2-container:hover {
  border-color: #043D9B;
}

.form-element-select2 .select2-container:after {
  content: "";
  background-image: url("/images/select-icon-dif.svg");
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  display: inline-block;
  width: 14px;
  height: 7.89px;
  top: 16px;
}

.form-element-select2 .select2-container .selection .select2-selection--multiple {
  border: none;
  border-radius: 0;
}

.form-element-select2 .select2-container .selection .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
}

.form-element-select2 .select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  color: #007EFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  background-color: rgba(0, 126, 255, 0.2);
  padding: 3px 8px;
  border: 0.5px solid rgba(0, 126, 255, 0.3);
  border-radius: 4px;
  display: flex;
  margin-top: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}

.form-element-select2 .select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  color: #007EFF;
  font-size: 20px;
  font-weight: 400;
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid rgba(0, 126, 255, 0.3);
  margin-top: -3px;
  margin-bottom: -3px;
  vertical-align: middle;
  padding-top: 3px;
}

.form-element-select2 .select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-search__field {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-top: 0;
}

.form-element-select2 .select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-search__field::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element-select2 .select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-search__field::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.form-element-select2 .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.select2-dropdown {
  background-color: #FFFFFF !important;
  border: none !important;
  border-radius: 0 0 4px 4px !important;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.select2-dropdown .select2-results .select2-results__option[aria-selected=true] {
  background-color: #043D9B !important;
  color: #FFFFFF;
}

.select2-dropdown .select2-results .select2-results__option--highlighted {
  background-color: #043D9B !important;
  color: #FFFFFF;
}

.select2-dropdown .select2-results .select2-results__option {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 10px;
}

.select2-dropdown .select2-results .select2-results__option:last-child {
  border-radius: 0 0 4px 4px !important;
}

.form-element-price-type .custom-control {
  padding-left: 0;
}

.form-element-price-type .custom-control.disabled-bg .custom-control-label {
  background-color: #E5E5E5;
}

.form-element-price-type .custom-control .custom-control-label {
  width: 100%;
  background-color: #FFFFFF;
  padding: 20px 20px 20px 60px;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.form-element-price-type .custom-control .custom-control-label span {
  display: block;
  margin-bottom: 5px;
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.form-element-price-type .custom-control .custom-control-label p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.form-element-price-type .custom-control .custom-control-label:before {
  top: 32px;
  left: 20px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(83, 84, 97, 0.51);
}

.form-element-price-type .custom-control .custom-control-label:after {
  left: 20px;
  width: 20px;
  height: 20px;
  background: none;
}

.form-element-price-type .custom-control .custom-control-label:hover {
  border-color: #043D9B;
}

.form-element-price-type .custom-control .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #043D9B;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.form-element-price-type .custom-control .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none;
}

.form-element-price-type .custom-control .custom-control-input:checked ~ .custom-control-label {
  border-color: #043D9B;
}

.form-element-price-type .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.form-element-price-type.checkbox .custom-control {
  padding-left: 0;
}

.form-element-price-type.checkbox .custom-control .custom-control-label:before {
  top: 32px;
  left: 20px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(83, 84, 97, 0.51);
  box-shadow: none;
  outline: none;
}

.form-element-price-type.checkbox .custom-control .custom-control-label:after {
  top: 32px;
  left: 20px;
  width: 20px;
  height: 20px;
  background: 50%/50% 50% no-repeat;
}

.form-element-price-type.checkbox .custom-control .custom-control-label:hover {
  border-color: #043D9B;
}

.form-element-price-type.checkbox .custom-control .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #043D9B;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.form-element-price-type.checkbox .custom-control .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E");
}

.form-element-price-type.checkbox .custom-control .custom-control-input:checked ~ .custom-control-label {
  border-color: #043D9B;
}

.form-element-checkbox .custom-control .custom-control-label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s;
}

.form-element-checkbox .custom-control .custom-control-label:before {
  width: 14px;
  height: 14px;
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-radius: 2px;
}

.form-element-checkbox .custom-control .custom-control-label:after {
  width: 14px;
  height: 14px;
}

.form-element-checkbox .custom-control .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #043D9B;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.form-element-checkbox .custom-control .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border: 1px solid rgba(83, 84, 97, 0.51);
}

.form-element-checkbox .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.required-border {
  border-color: #E14B5A !important;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type=number] {
  -moz-appearance: textfield;
}

.price-type-number-input-container {
  display: flex;
  align-items: center;
}

.price-type-number-input-container .form-element .default-input {
  max-width: 60px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.price-type-number-input-container .line {
  margin-left: 10px;
  margin-right: 10px;
}

.list-checkbox-item ul li {
  margin-bottom: 10px;
}

.list-checkbox-item ul li:last-child {
  margin-bottom: 0;
}

.list-checkbox-item ul li .custom-control .custom-control-label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s;
}

.list-checkbox-item ul li .custom-control .custom-control-label:before {
  width: 14px;
  height: 14px;
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-radius: 2px;
}

.list-checkbox-item ul li .custom-control .custom-control-label:after {
  width: 14px;
  height: 14px;
}

.list-checkbox-item ul li .custom-control .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #043D9B;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.list-checkbox-item ul li .custom-control .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border: 1px solid rgba(83, 84, 97, 0.51);
}

.form-element-currency {
  display: flex;
  align-content: center;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  transition: all 0.3s;
}

.form-element-currency.cr-right .currency {
  border-left: 1px solid #F2F2F2;
  border-right: none;
}

.form-element-currency.cr-right .input input {
  padding-left: 20px;
}

.form-element-currency.cr-right:hover .currency {
  border-left: 1px solid #043D9B;
  border-right: none;
}

.form-element-currency .currency {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 10px 20px;
  margin-right: 10px;
  border-right: 1px solid #F2F2F2;
}

.form-element-currency .input {
  width: 100%;
}

.form-element-currency .input input {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 11px;
  padding-bottom: 10px;
  padding-right: 10px;
}

.form-element-currency:hover {
  border: 1px solid #043D9B;
}

.form-element-currency:hover .currency {
  border-right: 1px solid #043D9B;
}

.error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.form-element-checkbox-diff-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff {
  margin-bottom: 20px;
  margin-right: 10px;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff:last-child {
  margin-right: 0;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff .custom-control {
  padding-left: 0;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff .custom-control .custom-control-label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s;
  padding: 11px 21px 10px 21px;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  min-width: 82.46px;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff .custom-control .custom-control-label:before {
  display: none;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff .custom-control .custom-control-label:after {
  display: none;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff .custom-control .custom-control-input:checked ~ .custom-control-label {
  background-color: #043D9B;
  border: 1px solid #043D9B;
  color: #FFFFFF;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff .remove-icon {
  padding: 13px;
  background-color: #F2F2F2;
  border-radius: 0 4px 4px 0;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff .remove-icon img {
  width: 12px;
  height: 12px;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff .edit-icon {
  padding: 13px;
  background-color: #F2F2F2;
  border-radius: 4px 0 0 4px;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff .edit-icon img {
  width: 12px;
  height: 12px;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff.remove-icon {
  display: flex;
}

.form-element-checkbox-diff-container .form-element-checkbox-diff.remove-icon .custom-control .custom-control-label {
  border-radius: 0;
}

.form-element-checkbox-diff-container .edit-button {
  max-width: 80px;
  margin-bottom: 20px;
}

.vue__time-picker {
  width: 100% !important;
}

.vue__time-picker .display-time {
  width: 100% !important;
  color: #3E3F3E !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 19px !important;
  padding: 10px 20px 11px 20px !important;
  background-color: #FFFFFF !important;
  border: 1px solid #F2F2F2 !important;
  border-radius: 4px !important;
  height: auto !important;
  transition: all 0.3s !important;
}

.vue__time-picker .display-time::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216) !important;
}

.vue__time-picker .display-time::placeholder {
  color: rgba(83, 84, 97, 0.5098039216) !important;
}

.vue__time-picker .display-time:focus {
  border-color: #043D9B !important;
}

.vue__time-picker .display-time:hover {
  border-color: #043D9B !important;
}

.vue__time-picker .controls {
  display: none !important;
}

.vue__time-picker .dropdown {
  width: 100% !important;
  top: 42px !important;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1) !important;
}

.vue__time-picker .dropdown ul li {
  padding: 5px !important;
  color: #3E3F3E !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 19px !important;
}

.vue__time-picker .dropdown ul li.active {
  background-color: #043D9B !important;
  color: #FFFFFF !important;
}

.vue__time-picker .dropdown .hint {
  color: #043D9B !important;
}

.vue__time-picker .dropdown .select-list {
  width: 100% !important;
}

.form-element-datepicker-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.form-element-datepicker-container span:first-child {
  display: block;
  width: 100%;
  position: relative;
  right: 0;
  top: 0;
}

.form-element-datepicker-container .vc-day-content {
  display: flex !important;
  width: 28px !important;
  position: relative !important;
  right: 0 !important;
  top: 0 !important;
}

.form-element-datepicker-container .datepicker-item {
  margin-right: 20px;
  margin-bottom: 20px;
}

.form-element-datepicker-container .datepicker-item:last-child {
  margin-right: 0;
}

.form-element-datepicker-container .form-element-datepicker-container-content {
  display: flex;
  align-items: center;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input {
  position: relative;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input img {
  position: absolute;
  left: 25px;
  top: 11px;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input input {
  width: 100%;
  position: relative;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-top: 11px;
  padding-bottom: 10px;
  padding-left: 75px;
  cursor: pointer;
  transition: all 0.3s;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input input:hover {
  border-color: #043D9B;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input input:focus {
  border-color: #043D9B;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input input.br-4 {
  border-radius: 4px;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input input::-moz-placeholder {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input input::placeholder {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input.rc input {
  padding-left: 38px;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input.rc input::-moz-placeholder {
  color: #3E3F3E;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input.rc input::placeholder {
  color: #3E3F3E;
}

.form-element-datepicker-container .form-element-datepicker-container-content .input.rc img {
  left: 10px;
  top: 12px;
}

.form-element-datepicker-container .form-element-datepicker-container-content button {
  background-color: #F2F2F2;
  padding: 12.4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.form-element-datepicker-container .edit-button {
  max-width: 100px;
}

.form-element-rc-payment-options {
  padding-left: 0;
}

.form-element-rc-payment-options .custom-control-label {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: pointer;
  padding-left: 15px;
  transition: all 0.3s;
}

.form-element-rc-payment-options .custom-control-label:before {
  top: 2px;
  width: 17px;
  height: 17px;
  border: 1px solid transparent;
  background-color: #C4C4C4;
}

.form-element-rc-payment-options .custom-control-label:after {
  top: 2px;
  width: 17px;
  height: 17px;
  background: none;
}

.form-element-rc-payment-options .custom-control-label:hover {
  border-color: #043D9B;
}

.form-element-rc-payment-options .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #043D9B;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.form-element-rc-payment-options .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.form-element-rc-payment-options .custom-control-input:checked ~ .custom-control-label {
  border-color: #043D9B;
}

.form-element-rc-payment-price {
  display: flex;
  align-items: center;
}

.form-element-rc-payment-price input {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  padding: 10px 20px 11px 20px;
  background-color: #FFFFFF;
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-right: 0;
  border-radius: 4px 0px 0px 4px;
  height: auto;
  transition: all 0.3s;
}

.form-element-rc-payment-price input:focus {
  border-color: #043D9B;
}

.form-element-rc-payment-price input:hover {
  border-color: #043D9B;
}

.form-element-rc-payment-price input:-moz-read-only {
  background: rgba(83, 84, 97, 0.51);
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-right: 0;
}

.form-element-rc-payment-price input:read-only {
  background: rgba(83, 84, 97, 0.51);
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-right: 0;
}

.form-element-rc-payment-price input:-moz-read-only::-moz-placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price input:read-only::-moz-placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price input:-moz-read-only::placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price input:read-only::-moz-placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price input:-moz-read-only::placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price input:read-only::-moz-placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price input:-moz-read-only::placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price input:read-only::-moz-placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price input:-moz-read-only::placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price input:read-only::-moz-placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price input:-moz-read-only::placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price input:read-only::placeholder {
  color: #3E3F3E;
}

.form-element-rc-payment-price label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding: 10px 20px 11px 20px;
  background-color: #F2F2F2;
  border-radius: 0px 4px 4px 0px;
  border: 1px solid transparent;
}

.form-element-hours-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.form-element-hours-container .form-element {
  display: flex;
  margin-right: 10px;
}

.form-element-hours-container .form-element:last-child {
  margin-right: 0;
}

.form-element-hours-container .form-element .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.form-element-hours-container .form-element .remove-icon {
  padding: 13px;
  background-color: #F2F2F2;
  border-radius: 0 4px 4px 0;
}

.form-element-hours-container .form-element .remove-icon img {
  width: 12px;
  height: 12px;
}

.form-element-hours-container .form-element .edit-icon {
  padding: 13px;
  background-color: #F2F2F2;
  border-radius: 4px 0 0 4px;
}

.form-element-hours-container .form-element .edit-icon img {
  width: 12px;
  height: 12px;
}

.form-element-hours-container .form-element.remove-icon {
  display: flex;
}

.form-element-hours-container .form-element.remove-icon .custom-control .custom-control-label {
  border-radius: 0;
}

.form-element-hours-container .form-element .default-input {
  max-width: 82.46px;
  border-radius: 0;
}

.form-element-hours-container .edit-button {
  max-width: 80px;
  margin-bottom: 20px;
}

.form-element-includes-excludes-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.form-element-includes-excludes-container .form-element-checkbox {
  margin-right: 20px;
  margin-bottom: 20px;
}

.form-element-includes-excludes-container .form-element-checkbox:last-child {
  margin-right: 0;
}

.form-element-includes-excludes-container .form-element-checkbox .custom-control .custom-control-label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s;
}

.form-element-includes-excludes-container .form-element-checkbox .custom-control .custom-control-label:before {
  width: 14px;
  height: 14px;
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-radius: 2px;
}

.form-element-includes-excludes-container .form-element-checkbox .custom-control .custom-control-label:after {
  width: 14px;
  height: 14px;
}

.form-element-includes-excludes-container .form-element-checkbox .custom-control .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #043D9B;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.form-element-includes-excludes-container .form-element-checkbox .custom-control .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border: 1px solid rgba(83, 84, 97, 0.51);
}

.form-element-includes-excludes-container .form-element-checkbox .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.front-form-element {
  margin-bottom: 20px;
}

.front-form-element .front-input-white {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  background-color: #F2F2F2;
  border-radius: 12px;
  padding: 10.5px 20px 10.5px 20px;
}

.front-form-element .front-input-white::-moz-placeholder {
  color: #000000;
}

.front-form-element .front-input-white::placeholder {
  color: #000000;
}

.front-form-element .front-select-white {
  color: #281C1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/dropdown-icon.svg");
  background-position: right 9.96px top 17px;
  background-repeat: no-repeat;
  padding: 10px 10px 11px 10px;
  background-color: #F2F2F2;
  border-radius: 12px;
}

.front-form-element .front-input-whit-color-red {
  color: #E14B5A;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  width: 100%;
  background-color: #F2F2F2;
  border-radius: 12px;
  padding: 4px 14px 3px 14px;
}

.front-form-element .front-input-whit-color-red::-moz-placeholder {
  color: #E14B5A;
}

.front-form-element .front-input-whit-color-red::placeholder {
  color: #E14B5A;
}

.form-element-radio-tour-summary-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.form-element-radio-tour-summary-container .custom-control {
  margin-right: 10px;
  padding-left: 0;
  margin-bottom: 10px;
}

.form-element-radio-tour-summary-container .custom-control:last-child {
  margin-right: 0;
}

.form-element-radio-tour-summary-container .custom-control .custom-control-label {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  width: 100%;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s;
  padding: 11px 10px 10px 10px;
  border-radius: 6px;
}

.form-element-radio-tour-summary-container .custom-control .custom-control-label:before {
  display: none;
}

.form-element-radio-tour-summary-container .custom-control .custom-control-label:after {
  display: none;
}

.form-element-radio-tour-summary-container .custom-control .custom-control-input:checked ~ .custom-control-label {
  background-color: #043D9B;
  color: #FFFFFF;
}

.form-element-radio-tour-summary-container .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.form-element-date-radio-tour-summary-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.form-element-date-radio-tour-summary-container .custom-control {
  margin-right: 20px;
  padding-left: 0;
  margin-bottom: 20px;
}

.form-element-date-radio-tour-summary-container .custom-control:last-child {
  margin-right: 0;
}

.form-element-date-radio-tour-summary-container .custom-control .custom-control-label {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  width: 100%;
  background-color: #F2F2F2;
  cursor: pointer;
  transition: all 0.3s;
  padding: 21px 20px 20px 20px;
  border-radius: 6px;
}

.form-element-date-radio-tour-summary-container .custom-control .custom-control-label:before {
  display: none;
}

.form-element-date-radio-tour-summary-container .custom-control .custom-control-label:after {
  display: none;
}

.form-element-date-radio-tour-summary-container .custom-control .custom-control-input:checked ~ .custom-control-label {
  background-color: #043D9B;
  color: #FFFFFF;
}

.form-element-date-radio-tour-summary-container .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.form-element-new-datepicker-container-content {
  padding: 9px 24px 9px 25px;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-items: flex-start;
  cursor: pointer;
}

.form-element-new-datepicker-container-content img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.form-element-new-datepicker-container-content label {
  color: #3E3F3E;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
}

.form-element-new-datepicker-container-content.coupon img {
  width: 14px;
  height: 14px;
  margin-right: 20px;
}

.form-element-new-datepicker-container-content.coupon label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.custom-switcher .custom-checkbox {
  padding-left: 0 !important;
}

.custom-switcher .custom-control-label {
  width: 63px !important;
  height: 25px !important;
  position: relative;
  border-radius: 200px;
  transition: all ease 300ms !important;
  background-color: rgba(83, 84, 97, 0.51) !important;
}

.custom-switcher .custom-control-label:before {
  width: 20px !important;
  height: 20px !important;
  background-color: #fff;
  transition: all ease 300ms !important;
  border-radius: 50% !important;
  border: 0 !important;
  position: absolute;
  left: 4px;
  top: 2px;
  z-index: 10;
}

.custom-switcher .custom-control-label:after {
  display: none;
}

.custom-switcher .custom-control-input:checked ~ .custom-control-label {
  background-color: #007EFF !important;
}

.custom-switcher .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #fff !important;
  left: 39px;
  top: 2px;
}

.multi-input .int-tel-input-wapper .int-tel-select {
  min-width: 120px;
}

.number-list .item:not(:last-child) {
  border-bottom: 1px solid #e1e1e1;
}

section {
  padding-top: 30px;
  padding-bottom: 100px;
}

.dashboard-content {
  padding-top: 90px;
  padding-bottom: 100px;
}

.theguidefy-banner {
  margin-bottom: 20px;
}

.theguidefy-banner a {
  display: inline-block;
  width: 100%;
}

.theguidefy-banner a .img {
  width: 100%;
  height: 100px;
}

.theguidefy-banner a .img img {
  max-width: 100%;
  height: 100%;
}

/*
1- Color
2- Font Size
3- Font Weight
4- Line Height
5- Border
6- Border Radius
7- Background Color
8- Margin
9- Padding
10- Title
11- Sub Title
12- Box Layout
13- Paragraph Text
14- Content Box
*/

.c-FF {
  color: #FFFFFF;
}

.c-3E {
  color: #3E3F3E;
}

.c-E14 {
  color: #E14B5A;
}

.c-04 {
  color: #043D9B;
}

.c-28 {
  color: #281C1C;
}

.c-A8 {
  color: #A8A8A8;
}

.c-F15 {
  color: #F15E4F;
}

.c-535 {
  color: rgba(83, 84, 97, 0.5098039216);
}

.c04 {
  color: #043D9B;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.fs-24 {
  font-size: 24px;
}

.fw-400 {
  font-weight: 400;
}

.fw-700 {
  font-weight: 700;
}

.ln-16 {
  line-height: 16px;
}

.ln-18 {
  line-height: 18px;
}

.ln-19 {
  line-height: 19px;
}

.ln-22 {
  line-height: 22px;
}

.ln-25 {
  line-height: 25px;
}

.ln-33 {
  line-height: 33px;
}

.lt-sp04 {
  letter-spacing: -0.04em;
}

.br-04 {
  border: 1px solid #043D9B;
}

.br-4 {
  border-radius: 4px;
}

.bg-04 {
  background-color: #043D9B;
}

.bg-3E {
  background-color: #3E3F3E;
}

.bg-trans {
  background-color: transparent;
}

.bg-E14 {
  background-color: #E14B5A;
}

.bg-cF15 {
  background-color: #F15E4F;
}

.bg-cPlaceholderBg {
  background-color: rgba(83, 84, 97, 0.51);
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-15 {
  margin-top: 15px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-70 {
  margin-top: 70px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.ml-20 {
  margin-left: 20px;
}

.mlr-negative-20 {
  margin-left: -20px;
  margin-right: -20px;
}

.mt-mobile-30 {
  margin-top: 0;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptlbr-20 {
  padding: 20px;
}

.plr-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.border-c04 {
  border: 1px solid #043D9B;
}

.title-24-3E {
  color: #3E3F3E;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  cursor: text;
}

.title-18-3E {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  cursor: text;
}

.title-18-04 {
  color: #043D9B;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  cursor: text;
}

.title-16-3E {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  cursor: text;
}

.box-title-blue-2 {
  color: #043D9B !important;
}

.box-title-blue {
  color: #043D9B !important;
}

.sub-title-14-3E {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.sub-title-14-3E a {
  color: #043D9B;
}

.setup-box {
  background-color: #FFFFFF;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.box-layout-not-shadow-padding {
  background-color: #FFFFFF;
  border-radius: 6px;
}

.box-layout-not-shadow-padding.br-12 {
  border-radius: 12px;
}

.box-layout-shadow {
  padding: 50px 50px 20px 50px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.box-layout-shadow-30-20 {
  padding: 30px 20px 30px 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.box-layout-shadow-20 {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 20px;
}

.box-layout-shadow-30 {
  padding: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.paragraph-text {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.paragraph-text-00 {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

#equal-height-20 > [class*=col-] {
  display: flex;
  margin-bottom: 20px;
}

#equal-height-0 > [class*=col-] {
  display: flex;
}

.switch {
  display: flex;
  align-items: center;
}

.switch p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-left: 10px;
}

.switch .vue-js-switch.disabled {
  opacity: 1 !important;
}

.switch .vue-js-switch.toggled .v-switch-core {
  background-color: #007EFF !important;
}

.switch .vue-js-switch.toggled .v-switch-core .v-switch-button {
  transform: translate3d(39px, 3px, 0px) !important;
}

.switch .vue-js-switch .v-switch-core {
  border-radius: 200px !important;
  width: 63px !important;
  height: 25px !important;
  background-color: rgba(83, 84, 97, 0.51) !important;
}

.switch .vue-js-switch .v-switch-core .v-switch-button {
  width: 20px !important;
  height: 20px !important;
  transform: translate3d(4px, 3px, 0px) !important;
}

.cp-text {
  cursor: text !important;
}

.tick-list li {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 10px;
}

.tick-list li:last-child {
  margin-bottom: 0;
}

.tick-list li:before {
  content: "";
  display: inline-block;
  width: 14.2px;
  height: 10px;
  background-image: url("/images/tick-icon.svg");
  background-size: cover;
  margin-right: 13.71px;
  vertical-align: middle;
}

.with-accommodation-price-container {
  padding: 20px 20px 0 20px;
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-radius: 4px;
}

.fixed-button {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 160px;
  z-index: 999;
}

.berdered-15-20 {
  border-bottom: 1px solid #F2F2F2;
  margin: 0 -20px 15px -20px;
  padding-bottom: 15px;
}

.reservation-info-label-container {
  margin-bottom: 10px;
}

.reservation-info-label-container .reservation-info-label {
  padding: 3px 10px;
  color: #007EFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  background-color: rgba(0, 126, 255, 0.2);
  border: 0.5px solid rgba(0, 126, 255, 0.3);
  border-radius: 4px;
  margin-bottom: 10px;
}

.reservation-info-label-container .reservation-info-label:last-child {
  margin-right: 0;
}

.bordered-20 {
  margin: 0 -20px 20px -20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.bordered-30 {
  margin: 0 -30px 20px -30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.bordered-F2 {
  border: 1px solid #F2F2F2;
  border-bottom: none;
  border-radius: 6px 6px 0 6px;
}

.print-ticket {
  display: block;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 6px 5px;
  border-radius: 4px;
  background-color: #F2F2F2;
  text-align: center;
  cursor: pointer;
}

.rc-cancel {
  display: block;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  padding: 3px 16px;
  border-radius: 4px;
  background-color: #E14B5A;
  text-align: center;
  cursor: pointer;
}

.rc-confirmed-mail {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 6px 5px;
  border-radius: 4px;
  background-color: #0060FF;
  text-align: center;
  cursor: pointer;
}

.rc-rejected-mail {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 6px 5px;
  border-radius: 4px;
  background-color: #E14B5A;
  text-align: center;
  cursor: pointer;
}

.new-blog-category-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  padding: 10px 20px 10px 20px;
  position: relative;
  cursor: pointer;
}

.new-blog-category-box input {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.new-blog-category-box input::-moz-placeholder {
  color: #3E3F3E;
}

.new-blog-category-box input::placeholder {
  color: #3E3F3E;
}

.new-blog-category-box p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.new-blog-category-box p span {
  display: block;
  color: #043D9B;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: pointer;
}

.new-blog-category-box p img {
  width: 12px;
  height: 12px;
  margin-left: 20px;
}

.new-blog-category-box .close-icon {
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
}

.new-blog-category-box .close-icon img {
  width: 20px;
  height: 20px;
}

.reservation-tooltip img {
  width: 19px;
  height: 19px;
  vertical-align: bottom;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-text {
  cursor: text !important;
}

.min-w-75 {
  min-width: 75px;
}

.text-link {
  color: #0060FF;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.05em;
}

.text-link:hover {
  color: #0060FF;
}

.text-link-16 {
  color: #0060FF;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.05em;
}

.text-link-16:hover {
  color: #0060FF;
}

.text-link-14 {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.text-link-14:hover {
  color: #043D9B;
}

.min-275-w {
  min-width: 275px;
}

.payment-table-result {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #F2F2F2;
  border-radius: 0px 0px 4px 4px;
}

.payment-table-result .item {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.payment-table-result .item p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.payment-table-result .bordered {
  width: 100%;
  border-bottom: 1px solid #C4C4C4;
  margin-top: 10px;
  margin-bottom: 10px;
}

.box-title-blue-2 {
  color: #0060FF;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.box-layout-1-FF {
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 12px;
}

.paragraph-text-2 {
  color: #281C1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
  margin: 0;
}

.payment-detail-tour-information {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  border-radius: 4px;
}

.payment-detail-tour-information .title-print {
  margin: 0 -20px 20px -20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.payment-detail-tour-information .title-print label {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.payment-detail-tour-information .title-print span {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 6px 20px 5px 20px;
  background-color: #F2F2F2;
  border-radius: 4px;
  cursor: pointer;
}

.payment-detail-tour-information .image-tour-desc-time- {
  background-color: #F2F2F2;
  border-radius: 4px;
  padding: 15px 20px 15px 20px;
  margin-bottom: 20px;
}

.payment-detail-tour-information .image-tour-desc-time- .img-tour-desc {
  display: flex;
  align-items: center;
}

.payment-detail-tour-information .image-tour-desc-time- .img-tour-desc .img {
  width: 60px;
  height: 40px;
  margin-right: 13px;
  border-radius: 4px;
}

.payment-detail-tour-information .image-tour-desc-time- .img-tour-desc .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 4px;
}

.payment-detail-tour-information .image-tour-desc-time- .img-tour-desc .desc label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.payment-detail-tour-information .image-tour-desc-time- .img-tour-desc .desc p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.payment-detail-tour-information .image-tour-desc-time- .time-date label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.payment-detail-tour-information .image-tour-desc-time- .time-date p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.operation-filter-title {
  padding: 15px;
  border-bottom: 1px solid #F2F2F2;
}

.operation-filter-title label {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.print-button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 7px 18px 7px 18px;
  background-color: #F2F2F2;
  border-radius: 4px;
  text-align: center;
}

.mx-100 {
  max-width: 100%;
}

.mx-210 {
  max-width: 210px;
}

.m-title {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.m-text-link {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.extra-pricing-button {
  color: #281C1C;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  width: 100%;
  padding: 10px 58px;
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-radius: 4px;
}

.d-hide-mobile {
  display: block;
}

.d-show-mobile {
  display: none;
}

#tourOptionsScrollMobile {
  display: block;
  visibility: hidden;
  position: absolute;
  padding-top: 40px;
  margin-top: -40px;
}

#tourOptionsScroll {
  display: block;
  visibility: hidden;
  position: absolute;
  padding-top: 40px;
  margin-top: -40px;
}

.ql-editor {
  padding: 0;
}

.vue2leaflet-map {
  z-index: 1;
}

.fixed-wp {
  width: 60px;
  height: auto;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999999;
}

.fixed-wp a {
  display: inline-block;
  width: 100%;
}

.fixed-wp a img {
  width: 60px;
  height: 60px;
}

.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  margin: 0;
  padding: 0;
  align-items: center;
}

.breadcrumb .breadcrumb-item a {
  color: #043D9B;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
}

.breadcrumb .breadcrumb-item.active {
  color: #3E3F3E;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  padding-left: 20px;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  background-image: url("/images/breadcrumb-icon.svg");
  background-repeat: no-repeat;
  float: none;
  padding: 0;
  width: 7px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  background-size: cover;
  margin-right: 20px;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 20px;
}

.steps-modal .modal-content {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: none;
}

.steps-modal .modal-content .modal-body {
  padding: 30px;
}

.steps-modal .modal-content .modal-body .header {
  display: flex;
  justify-content: end;
  margin-bottom: 30px;
}

.steps-modal .modal-content .modal-body .header img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.steps-modal .modal-content .modal-body .content .logo {
  margin-bottom: 30px;
}

.steps-modal .modal-content .modal-body .content .welcome-text {
  text-align: center;
  margin-bottom: 30px;
}

.steps-modal .modal-content .modal-body .content .welcome-text label {
  color: #043D9B;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 40px;
}

.steps-modal .modal-content .modal-body .content .welcome-text p {
  color: #3E3F3E;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
}

.steps-modal .modal-content .modal-body .content .welcome-text p strong {
  color: #043D9B;
  font-weight: 700;
}

.steps-modal .modal-content .modal-body .content .footer {
  text-align: center;
}

.excluded-dates-modal .modal-content {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: none;
}

.excluded-dates-modal .modal-content .modal-body {
  padding: 0;
}

.excluded-dates-modal .modal-content .modal-body .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 20px 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #F2F2F2;
}

.excluded-dates-modal .modal-content .modal-body .header label {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.excluded-dates-modal .modal-content .modal-body .header img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.excluded-dates-modal .modal-content .modal-body .content {
  padding: 0 30px 30px 30px;
}

.excluded-dates-modal .modal-content .modal-body .content .logo {
  margin-bottom: 30px;
}

.excluded-dates-modal .modal-content .modal-body .content .welcome-text {
  text-align: center;
  margin-bottom: 30px;
}

.excluded-dates-modal .modal-content .modal-body .content .welcome-text label {
  color: #043D9B;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 40px;
}

.excluded-dates-modal .modal-content .modal-body .content .welcome-text p {
  color: #3E3F3E;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
}

.excluded-dates-modal .modal-content .modal-body .content .welcome-text p strong {
  color: #043D9B;
  font-weight: 700;
}

.excluded-dates-modal .modal-content .modal-body .content .date {
  width: 100%;
}

.excluded-dates-modal .modal-content .modal-body .content .date button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 11px;
  padding-bottom: 10px;
  padding-left: 58px;
  background-color: transparent;
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-radius: 4px;
  text-align: left;
  outline: none;
  box-shadow: none;
}

.excluded-dates-modal .modal-content .modal-body .content .date button:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/images/datepicker-icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  top: 13px;
}

.excluded-dates-modal .modal-content .modal-body .content .date button:after {
  display: none;
}

.excluded-dates-modal .modal-content .modal-body .content .date button:focus {
  outline: none;
  box-shadow: none;
}

.excluded-dates-modal .modal-content .modal-body .content .date .btn-secondary:not(:disabled):not(.disabled).active,
.excluded-dates-modal .modal-content .modal-body .content .date .btn-secondary:not(:disabled):not(.disabled):active,
.excluded-dates-modal .modal-content .modal-body .content .date .show > .btn-secondary.dropdown-toggle {
  box-shadow: none;
  background-color: transparent;
  color: #3E3F3E;
  border: 1px solid rgba(83, 84, 97, 0.51);
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  min-width: 330px;
  padding: 0;
  margin-bottom: 10px;
  border: none;
  text-align: center;
  margin-top: 10px;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container {
  width: 100%;
  border-radius: 4px;
  border: none;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-weekday {
  padding-bottom: 15px;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day {
  margin-bottom: 10px;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span {
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span:hover {
  border: 2px solid #043D9B;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 13px;
  margin-bottom: 0;
  cursor: pointer;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span p {
  display: block;
  color: #043D9B;
  font-size: 8px;
  font-weight: 700;
  line-height: 14.3px;
  margin-bottom: 0;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.active-dates {
  border: 2px solid #043D9B;
  border-radius: 4px;
  background-color: #043D9B;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.active-dates label {
  color: #ffffff;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.active-dates p {
  color: #ffffff;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.text-muted {
  border: 2px solid transparent;
  padding: 5px;
  border-radius: 4px;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.text-muted label {
  color: #6c757d;
  cursor: text;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.text-muted p {
  color: #6c757d;
  cursor: text;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day.is-not-in-month {
  margin-bottom: 0;
  height: 0;
  min-height: 0;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day.is-not-in-month span {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.excluded-dates-modal .modal-content .modal-body .content .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day.is-not-in-month label {
  font-size: 0;
}

.excluded-dates-modal .modal-content .modal-body .content .footer {
  text-align: center;
}

.bm-burger-button {
  z-index: 99 !important;
  position: fixed !important;
  top: 18px !important;
  left: 20px !important;
  right: unset !important;
  width: 24px !important;
  height: 24px !important;
}

.bm-burger-button img {
  width: 24px;
  height: 24px;
}

.bm-burger-bars {
  background-color: #043D9B !important;
}

.line-style {
  position: absolute;
  height: 20%;
  left: 0;
  right: 0;
}

.cross-style {
  position: absolute;
  right: 10px !important;
  top: 20px !important;
  cursor: pointer;
}

.bm-cross {
  background: #FFFFFF !important;
  width: 10% !important;
  height: 100% !important;
}

.bm-cross-button {
  z-index: 99 !important;
  position: fixed !important;
  top: 18px !important;
  left: 20px !important;
}

.bm-cross-button img {
  width: 24px;
  height: 24px;
}

.bm-menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000;
  left: 0;
  background-color: #FFFFFF !important;
  overflow-x: hidden;
  padding-top: 0 !important;
  transition: 0.5s;
  top: 75px !important;
}

.bm-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.bm-item-list {
  padding: 0 20px 20px 20px !important;
  margin-left: 0 !important;
}

.bm-item-list .logo {
  margin-bottom: 20px;
  display: none !important;
}

.bm-item-list .logo a img {
  max-width: 100%;
  height: auto;
}

.bm-item-list .menu ul li {
  margin-bottom: 10px;
}

.bm-item-list .menu ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 8px 10px;
}

.bm-item-list .menu ul li a img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.bm-item-list .menu ul li a.active {
  background: rgba(62, 63, 62, 0.2);
}

.bm-item-list .menu ul li .sub-menu {
  display: block;
}

.bm-item-list .menu ul li .sub-menu button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  background-color: transparent !important;
  padding: 0;
  border: none !important;
  border-radius: none;
  left: 10px;
  text-align: left;
}

.bm-item-list .menu ul li .sub-menu button:after {
  border: none;
  width: 14px;
  height: 7.89px;
  background-image: url("/images/side-bar-sub-menu-icon.svg");
  background-repeat: no-repeat;
  vertical-align: middle;
  transform: rotate(180deg);
  position: absolute;
  top: 7px;
  right: 0;
}

.bm-item-list .menu ul li .sub-menu button img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: middle;
}

.bm-item-list .menu ul li .sub-menu button:focus {
  box-shadow: none !important;
}

.bm-item-list .menu ul li .sub-menu button[aria-expanded=true]:after {
  transform: rotate(0deg);
}

.bm-item-list .menu ul li .sub-menu .dropdown-menu {
  position: relative !important;
  left: 46px !important;
  top: 15px !important;
  transform: none !important;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.bm-item-list .menu ul li .sub-menu .dropdown-menu ul li:last-child {
  margin-bottom: 15px;
}

.bm-item-list .menu ul li .sub-menu .dropdown-menu ul li a {
  padding: 0;
}

.bm-item-list .menu ul li .sub-menu .dropdown-menu ul li a.active {
  background-color: transparent;
  border-radius: 0;
  font-weight: 700;
}

.bm-item-list .menu ul li .basic-select {
  background-image: url("/images/select-icon-dif.svg");
  color: #3E3F3E;
  background-position: right 20px top 15px;
  border: 1px solid #3E3F3E;
  padding: 10px 20px 10px 20px;
  border-radius: 12px;
}

.bm-item-list > div {
  display: block !important;
  text-decoration: none !important;
  padding: 0 !important;
}

.bm-item-list > * > span {
  margin-left: 0 !important;
}

.croppers-modal .modal-content {
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.croppers-modal .modal-body .header .close-icon {
  text-align: right;
  cursor: pointer;
}

.croppers-modal .modal-body .header .close-icon img {
  width: 24px;
  height: 24px;
}

.croppers-modal .modal-body .header .title {
  margin-bottom: 20px;
}

.croppers-modal .modal-body .header .title label {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
}

.croppers-modal .modal-body .footer {
  text-align: right;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 1;
}

.filter-tab {
  padding-left: 15px;
  padding-right: 15px;
  border-bottom: 1px solid #F2F2F2;
}

.filter-tab ul {
  display: flex;
}

.filter-tab ul li {
  margin-right: 20px;
}

.filter-tab ul li:last-child {
  margin-right: 0;
}

.filter-tab ul li a {
  color: #A8A8A8;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 16px;
  padding-bottom: 15px;
}

.filter-tab ul li a.active {
  color: #000000;
  border-bottom: 2px solid #007EFF;
}

.filter-date {
  padding: 9px 17px 9px 17px;
  border-bottom: 1px solid #F2F2F2;
}

.filter-date .date-dropdown {
  width: auto;
  margin-bottom: 0;
}

.filter-date .date-dropdown button {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding-top: 4px;
  padding-bottom: 4px;
}

.filter-attributes {
  padding: 15px;
  border-bottom: 1px solid #F2F2F2;
}

.filter-attributes .filter-attributes-item {
  margin-right: 20px;
}

.filter-attributes .filter-attributes-item:last-child {
  margin-right: 0;
}

.filter-attributes .filter-attributes-item.input-icon {
  position: relative;
}

.filter-attributes .filter-attributes-item.input-icon .search {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 16px;
  height: 16px;
  z-index: 9;
}

.filter-attributes .filter-attributes-item.input-icon .remove {
  position: absolute;
  right: 9px;
  top: 11px;
  width: 14px;
  height: 14px;
  z-index: 9;
  cursor: pointer;
}

.filter-attributes .filter-attributes-title {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.filter-attributes .form-element .default-select {
  padding: 6px 10px;
  background-position: right 10px top 11px;
}

.filter-attributes .filter-attributes-button button {
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  background-color: #043D9B;
  padding: 6px 13px;
  text-align: center;
}

.filter-attributes .price-matching-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.filter-attributes .price-matching-item .title-icon {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-right: 10px;
}

.filter-attributes .price-matching-item .select-item {
  width: 30%;
}

.filter-title {
  padding: 15px;
  border-bottom: 1px solid #F2F2F2;
}

.filter-title.payment-table label {
  font-weight: 700;
}

.filter-title.black label {
  color: #000000;
}

.filter-title.p-30 {
  padding: 20px 30px;
}

.filter-title label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: text;
}

.table-title {
  padding: 30px;
  border-bottom: 1px solid #F2F2F2;
}

.table-title label {
  color: #281C1C;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.filter-item-container .filter-item {
  padding: 10px 15px;
  border-bottom: 1px solid #F2F2F2;
}

.filter-item-container .filter-item.dif-padding {
  padding: 23px 15px 23px 15px;
}

.filter-item-container .filter-item.p-30 {
  padding: 20px 30px;
}

.filter-item-container .filter-item:hover {
  background-color: #F2F2F2;
}

.filter-item-container .filter-item .id {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  cursor: text;
}

.filter-item-container .filter-item .text {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.filter-item-container .filter-item .text.red {
  color: #E14B5A;
  font-weight: 700;
}

.filter-item-container .filter-item .img {
  max-width: 100%;
  max-height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px;
}

.filter-item-container .filter-item .preview-title {
  display: flex;
  align-items: center;
}

.filter-item-container .filter-item .preview-title img {
  margin-right: 5px;
  width: 15px;
  height: 10px;
  cursor: pointer;
}

.filter-item-container .filter-item .preview-title p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.filter-item-container .filter-item .switch .vue-js-switch.toggled .v-switch-core {
  background-color: #007EFF !important;
}

.filter-item-container .filter-item .switch .vue-js-switch.toggled .v-switch-core .v-switch-button {
  transform: translate3d(39px, 3px, 0px) !important;
}

.filter-item-container .filter-item .switch .vue-js-switch .v-switch-core {
  border-radius: 200px !important;
  width: 63px !important;
  height: 25px !important;
  background-color: rgba(83, 84, 97, 0.51) !important;
}

.filter-item-container .filter-item .switch .vue-js-switch .v-switch-core .v-switch-button {
  width: 20px !important;
  height: 20px !important;
  transform: translate3d(4px, 3px, 0px) !important;
}

.filter-item-container .filter-item .price {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  cursor: text;
}

.filter-item-container .filter-item .management {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.filter-item-container .filter-item .management.red {
  color: #E14B5A;
}

.filter-item-container .filter-item .status-select {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  border-radius: 62px;
  padding-right: 7px;
  padding-left: 7px;
  padding-top: 3px;
  padding-bottom: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/white-select-icon.svg");
  background-position: right 7px top 7px;
  background-repeat: no-repeat;
  width: 100%;
}

.filter-item-container .filter-item .status-select.active {
  background-color: #0060FF;
}

.filter-item-container .filter-item .status-select.passive {
  background-color: #EE7070;
}

.filter-item-container .filter-item .status-select.archive {
  background-color: rgba(83, 84, 97, 0.5098039216);
}

.filter-item-container .filter-item .edit-date {
  display: flex;
}

.filter-item-container .filter-item .edit-date img {
  cursor: pointer;
  margin-right: 5px;
}

.filter-item-container .filter-item .edit-date img:last-child {
  margin-right: 0;
}

.filter-item-container .filter-item .status-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.filter-item-container .filter-item .status-text.green {
  color: #8ED16F;
}

.filter-item-container .filter-item .status-text.green-004 {
  color: #004737;
}

.filter-item-container .filter-item .status-text.gray {
  color: #3E3F3E;
}

.filter-item-container .filter-item .status-text.blue {
  color: #043D9B;
}

.filter-item-container .filter-item .status-text.red {
  color: #E14B5A;
}

.filter-item-container .filter-item .status-text.orange {
  color: #F79E1B;
}

.filter-item-container .filter-item .status-text.green-8ED {
  color: #8ED16F;
}

.filter-item-container .filter-item .status-text.c-006 {
  color: #0060FF;
}

.filter-item-container .filter-item .status-text.c-EE {
  color: #EE7070;
}

.filter-item-container .filter-item .status-text.c-F7 {
  color: #F79E1B;
}

.filter-item-container .filter-item .payment-channel {
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.filter-item-container .filter-item .payment-channel.online-payment {
  color: #8ED16F;
}

.filter-item-container .filter-item .payment-channel.reservation {
  color: #3E3F3E;
}

.filter-item-container .filter-item .payment-channel.online {
  color: #043D9B;
}

.filter-item-container .filter-item .status-button {
  display: block;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  padding-top: 5px;
  padding-bottom: 6px;
  border-radius: 6px;
}

.filter-item-container .filter-item .status-button.active {
  background-color: #007EFF;
}

.filter-item-container .filter-item .status-button.full {
  background-color: #A8A8A8;
}

.filter-item-container .filter-item .status-button.passive {
  background-color: #E14B5A;
}

.filter-item-container .filter-item .form-element .default-input {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  padding: 7px 18px;
}

.filter-item-container .filter-item .vehicle-inputs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.filter-item-container .filter-item .vehicle-inputs .vehicle-input {
  margin-right: 5px;
}

.filter-item-container .filter-item .vehicle-inputs .vehicle-input:last-child {
  margin-right: 0;
}

.filter-item-container .filter-item .vehicle-inputs .vehicle-input .info {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 2px;
  cursor: pointer;
}

.filter-item-container .filter-item .vehicle-inputs .vehicle-input input {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  background-color: #FFF;
  padding: 8px;
  max-width: 100px;
}

.filter-item-container .filter-item .vehicle-inputs.diff {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.filter-item-container .filter-item .vehicle-inputs.diff input {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 4px;
  margin-right: 6px;
}

.filter-item-container .filter-item .vehicle-inputs.diff input:last-child {
  margin-right: 0;
}

.filter-item-container .nestable-handle {
  padding: 0 !important;
  display: inline;
  background-color: transparent !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  margin-right: 10px;
}

.filter-item-container .nestable-drag-layer > .nestable-list {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 !important;
  background-color: rgba(242, 242, 242, 0.5) !important;
  border-radius: 0 !important;
}

.filter-footer {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-footer .text {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}

.filter-footer .operation-save button {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 10px 29px;
  border-radius: 12px;
  background: #F15E4F;
  text-align: center;
}

.filter-pagination {
  padding: 15px;
}

.filter-pagination .row {
  align-items: center;
}

.filter-pagination .pagination-result label {
  color: #281C1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.filter-pagination .pagination-result .filter-select {
  width: auto;
  margin-left: 20px;
  padding-left: 14px;
  padding-right: 40px;
}

.filter-pagination .pagination {
  justify-content: end;
}

.vehicle-pricing-list .filter-item:hover {
  background-color: #fff;
}

.vehicle-pricing-list .filter-vehicle-item-top {
  gap: 15px;
}

@media all and (max-width: 991px) {
  .vehicle-pricing-list .filter-vehicle-item-top {
    background-color: #f7f7f7;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
  }
}

.vehicle-pricing-list .filter-item {
  padding: 20px 15px;
}

@media all and (max-width: 991px) {
  .vehicle-pricing-list .filter-item {
    padding: 0;
  }
}

@media all and (min-width: 992px) {
  .vehicle-pricing-list .filter-vehicle-items {
    padding-left: 30px;
    border-left: 1px solid #e1e1e1;
  }
}

.vehicle-pricing-list .vehicle-input-title {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
  display: block;
}

.vehicle-pricing-list .vehicle-inputs {
  width: 100%;
  gap: 10px;
}

.vehicle-pricing-list .vehicle-inputs .vehicle-input {
  width: 100%;
  position: relative;
  margin-right: 0 !important;
}

.vehicle-pricing-list .vehicle-inputs .vehicle-input .info {
  width: 37px;
  height: 37px;
  position: absolute;
  top: 0;
  left: 0;
  display: -moz-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e1e1e1;
}

.vehicle-pricing-list .vehicle-inputs .vehicle-input input {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 45px !important;
}

@media all and (max-width: 992px) {
  .filter-attributes {
    padding: 20px 0;
  }
}

@media all and (max-width: 992px) {
  .filter-attributes .price-matching-item {
    margin-bottom: 10px;
  }
}

.filter-attributes .price-matching-item .select-item {
  width: 40%;
  min-width: 40%;
  max-width: 40%;
}

.vue-recycle-scroller.ready .vue-recycle-scroller__item-view {
  position: relative !important;
  transform: none !important;
}

.location-container .location-item {
  background-color: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  padding: 12px 10px 12px 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.location-container .location-item:hover {
  border-color: #043D9B;
}

.location-container .location-item:last-child {
  margin-bottom: 0;
}

.location-container .location-item .title-drag-drop-icon img {
  max-width: 100%;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.location-container .location-item .title-drag-drop-icon label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  cursor: pointer;
}

.location-container .location-item .edit-trash-icon {
  text-align: right;
}

.location-container .location-item .edit-trash-icon img {
  max-width: 100%;
  height: auto;
  margin-right: 10px;
  cursor: pointer;
}

.location-container .location-item .edit-trash-icon img:last-child {
  margin-right: 0;
}

.text-modal .modal-content {
  border: none;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.text-modal .modal-content .modal-body {
  padding: 0;
}

.text-modal .modal-content .modal-body .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 20px 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #F2F2F2;
}

.text-modal .modal-content .modal-body .header label {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.text-modal .modal-content .modal-body .header img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.text-modal .modal-content .modal-body .content {
  padding: 0 30px 30px 30px;
}

.text-modal .modal-content .modal-body .footer {
  padding: 0 30px 30px 30px;
}

@media only screen and (min-width: 576px) {
  .text-modal .modal-dialog {
    max-width: 920px;
  }

  .text-modal.w-445 .modal-dialog {
    max-width: 445px;
  }

  .text-modal.w-620 .modal-dialog {
    max-width: 620px;
  }
}

#text-modal___BV_modal_outer_ .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.cropper-modal-gallery .modal-content {
  border: none;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.cropper-modal-gallery .modal-content .modal-body {
  padding: 0;
}

.cropper-modal-gallery .modal-content .modal-body .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 20px 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #F2F2F2;
}

.cropper-modal-gallery .modal-content .modal-body .header label {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.cropper-modal-gallery .modal-content .modal-body .header img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.cropper-modal-gallery .modal-content .modal-body .content {
  padding: 0 30px 30px 30px;
}

.cropper-modal-gallery .modal-content .modal-body .footer {
  padding: 50px 30px 50px 30px;
}

@media only screen and (min-width: 576px) {
  .cropper-modal-gallery .modal-dialog {
    max-width: 920px;
  }
}

#cropper-modal___BV_modal_outer_ .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.pagination .page-item .page-link {
  color: #3E3F3E;
}

.pagination .page-item.active .page-link {
  color: #3E3F3E;
  border-radius: 4px;
}

.pos-modal .modal-dialog {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.pos-modal .modal-dialog .modal-content {
  border-radius: 4px;
}

.pos-modal .modal-dialog .modal-content .modal-footer {
  flex-wrap: nowrap;
}

.pos-modal .modal-dialog .modal-content .modal-footer button {
  padding-top: 9px;
  padding-bottom: 9px;
  max-width: 50%;
}

.pos-modal .modal-dialog .modal-content .modal-footer button.bg-blue {
  background-color: #043D9B;
}

.pos-modal .modal-dialog .modal-content .modal-footer button.bg-blue:hover {
  background-color: #FFFFFF;
  border-color: #043D9B;
  color: #043D9B;
}

#modal-1___BV_modal_outer_ {
  z-index: 9999 !important;
}

#modal-1___BV_modal_outer_ .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.input-modal .modal-dialog .modal-content .modal-footer button {
  padding-top: 9px;
  padding-bottom: 9px;
}

.input-modal .modal-dialog .modal-content .modal-footer button.bg-blue {
  background-color: #043D9B;
}

.input-modal .modal-dialog .modal-content .modal-footer button.bg-blue:hover {
  background-color: #FFFFFF;
  border-color: #043D9B;
  color: #043D9B;
}

.view-modal {
  background-color: #F2F2F2;
}

.view-modal .modal-dialog {
  max-width: 100%;
  height: 100%;
  margin: 0;
  background-color: #F2F2F2;
}

.view-modal .modal-dialog .modal-content {
  border: none;
  height: 100%;
  background-color: #F2F2F2;
  box-shadow: none;
  border-radius: 0;
}

.view-modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}

@media only screen and (min-width: 576px) {
  .view-modal .modal-dialog {
    max-width: 100%;
  }
}

.reservation-create-box-container .reservation-create-box {
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  background-color: #FFFFFF;
  transition: 300ms;
}

.reservation-create-box-container .reservation-create-box:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.reservation-create-box-container .reservation-create-box .img {
  width: 100%;
  height: 133px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.reservation-create-box-container .reservation-create-box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.reservation-create-box-container .reservation-create-box .content {
  padding: 10px;
  text-align: center;
}

.reservation-create-box-container .reservation-create-box .content .title {
  margin-bottom: 10px;
}

.reservation-create-box-container .reservation-create-box .content .title label {
  color: #281C1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.reservation-create-box-container .reservation-create-box .content .price {
  margin-bottom: 10px;
}

.reservation-create-box-container .reservation-create-box .content .price span {
  display: block;
  color: #281C1C;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.reservation-create-box-container .reservation-create-box .content .price p {
  color: #043D9B;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
}

.reservation-create-box-container .reservation-create-box .content .check-button button {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 5px 23px 6px 24px;
  text-align: center;
  background-color: #043D9B;
  border-radius: 4px;
}

.reservation-create-box-container .filter-pagination {
  padding: 18px 15px;
  background-color: #FFFFFF;
  border-radius: 4px;
}

.rc-title-video {
  padding: 20px 20px 0 20px;
  margin-bottom: 10px;
}

.rc-time-difficulty {
  display: flex;
  padding: 0 20px 20px 20px;
}

.rc-time-difficulty .item {
  margin-right: 20px;
}

.rc-time-difficulty .item:last-child {
  margin-right: 0;
}

.rc-time-difficulty .item p {
  color: rgba(83, 84, 97, 0.5098039216);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.rc-slider .slick-prev {
  width: 24px;
  height: 24px;
  left: 20px;
  z-index: 9;
}

.rc-slider .slick-prev:before {
  opacity: 1;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("/images/rc-slider-arrow.svg");
  background-repeat: no-repeat;
}

.rc-slider .slick-next {
  width: 24px;
  height: 24px;
  right: 20px;
  z-index: 9;
}

.rc-slider .slick-next:before {
  opacity: 1;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("/images/rc-slider-arrow.svg");
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.rc-slider .rc-slider-item {
  width: 100%;
  height: 381px;
}

.rc-slider .rc-slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.rc-content {
  padding: 20px 20px 35px 20px;
}

.rc-content .border-box {
  padding: 20px;
  border: 1px solid #0060FF;
  border-radius: 4px;
  margin-bottom: 20px;
}

.rc-content .border-box .time {
  border-bottom: 1px solid #0060FF;
  margin: 0 -20px 0 -20px;
  padding: 0 20px 0 20px;
}

.rc-content .border-box .time span {
  display: block;
  margin-bottom: 10px;
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.rc-content .border-box .price-type-reservation-check {
  padding-top: 20px;
}

.rc-content .border-box .price-type-reservation-check label {
  color: #281C1C;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 10px;
}

.rc-content .border-box .price-type-reservation-check p {
  color: #281C1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.rc-content .border-box .price-type-reservation-check span {
  color: #043D9B;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.tabs-content {
  margin-top: 40px;
}

.tabs-content .nav-tabs {
  border: none;
}

.tabs-content .nav-tabs .nav-item {
  margin-right: 20px;
}

.tabs-content .nav-tabs .nav-item:last-child {
  margin-right: 0;
}

.tabs-content .nav-tabs .nav-item .nav-link {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 6px 20px;
  background: rgba(0, 126, 255, 0.3);
  border-radius: 4px;
  border: none;
  margin-bottom: 0;
}

.tabs-content .nav-tabs .nav-item .nav-link.active {
  background-color: #007EFF;
  color: #FFFFFF;
}

.tabs-content .tab-content {
  margin-top: 20px;
}

.tabs-content .tab-content .accordion .card {
  background-color: #FFFFFF;
  border-radius: 4px;
  margin-bottom: 10px;
  border: 1px solid #F2F2F2;
}

.tabs-content .tab-content .accordion .card:last-child {
  margin-bottom: 30px;
}

.tabs-content .tab-content .accordion .card .card-header {
  border: none;
  border-radius: 0;
  background-color: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.tabs-content .tab-content .accordion .card .card-header button {
  border: none;
  padding: 11px 20px 11px 20px;
  background-color: #FFFFFF;
  text-align: left;
}

.tabs-content .tab-content .accordion .card .card-header button:focus {
  box-shadow: none;
}

.tabs-content .tab-content .accordion .card .card-header button .title-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tabs-content .tab-content .accordion .card .card-header button .title-icon label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: pointer;
}

.tabs-content .tab-content .accordion .card .card-header button .title-icon img {
  width: 14px;
  height: 7px;
}

.tabs-content .tab-content .accordion .card .card-body {
  padding: 0 20px 20px 20px;
}

.rc-box .price {
  border-bottom: 1px solid #F2F2F2;
  margin: 0 -20px 20px -20px;
  padding: 0 20px 20px 20px;
}

.rc-box .price p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.rc-box .price p span {
  color: #043D9B;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  margin-left: 5px;
}

.rc-box .date-priceType-container .date {
  width: 100%;
}

.rc-box .date-priceType-container .date button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 11px;
  padding-bottom: 10px;
  padding-left: 58px;
  background-color: transparent;
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-radius: 4px;
  text-align: left;
  outline: none;
  box-shadow: none;
}

.rc-box .date-priceType-container .date button:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/images/datepicker-icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  top: 13px;
}

.rc-box .date-priceType-container .date button:after {
  display: none;
}

.rc-box .date-priceType-container .date button:focus {
  outline: none;
  box-shadow: none;
}

.rc-box .date-priceType-container .date .btn-secondary:not(:disabled):not(.disabled).active,
.rc-box .date-priceType-container .date .btn-secondary:not(:disabled):not(.disabled):active,
.rc-box .date-priceType-container .date .show > .btn-secondary.dropdown-toggle {
  box-shadow: none;
  background-color: transparent;
  color: #3E3F3E;
  border: 1px solid rgba(83, 84, 97, 0.51);
}

.rc-box .date-priceType-container .date .dropdown-menu {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  min-width: 330px;
  padding: 0;
  margin-bottom: 10px;
  border: none;
  text-align: center;
  margin-top: 10px;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container {
  width: 100%;
  border-radius: 4px;
  border: none;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-weekday {
  padding-bottom: 15px;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day {
  margin-bottom: 10px;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span {
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span:hover {
  border: 2px solid #043D9B;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 13px;
  margin-bottom: 0;
  cursor: pointer;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span p {
  display: block;
  color: #043D9B;
  font-size: 8px;
  font-weight: 700;
  line-height: 14.3px;
  margin-bottom: 0;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.active-dates {
  border: 2px solid #043D9B;
  border-radius: 4px;
  background-color: #043D9B;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.active-dates label {
  color: #ffffff;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.active-dates p {
  color: #ffffff;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.text-muted {
  border: 2px solid transparent;
  padding: 5px;
  border-radius: 4px;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.text-muted label {
  color: #6c757d;
  cursor: text;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.text-muted p {
  color: #6c757d;
  cursor: text;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day.is-not-in-month {
  margin-bottom: 0;
  height: 0;
  min-height: 0;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day.is-not-in-month span {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.rc-box .date-priceType-container .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day.is-not-in-month label {
  font-size: 0;
}

.rc-box .date-priceType-container .default-select {
  border: 1px solid rgba(83, 84, 97, 0.51);
}

.rc-box .date-priceType-container .default-select:hover {
  border-color: #043D9B;
}

.rc-box .date-priceType-container .price-type {
  width: 100%;
}

.rc-box .date-priceType-container .price-type button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 11px;
  padding-bottom: 10px;
  padding-left: 58px;
  background-color: transparent;
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-radius: 4px;
  text-align: left;
  outline: none;
  box-shadow: none;
  width: 100%;
}

.rc-box .date-priceType-container .price-type button:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 14px;
  background-image: url("/images/price-type-icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  top: 13px;
}

.rc-box .date-priceType-container .price-type button:after {
  display: none;
}

.rc-box .date-priceType-container .price-type button:focus {
  outline: none;
  box-shadow: none;
}

.rc-box .date-priceType-container .price-type button:hover {
  border-color: #043D9B;
}

.rc-box .date-priceType-container .price-type .dropdown-menu {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  min-width: 309px;
  padding: 15px;
  margin-bottom: 10px;
  border: none;
  margin-top: 10px;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .title span {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 15px;
  display: block;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .price-type-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .price-type-item:last-child {
  margin-bottom: 0;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .price-type-item .type {
  width: 70%;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .price-type-item .type label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .price-type-item .type-count {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 30%;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .price-type-item .type-count span {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .price-type-item .type-count span img {
  width: 20px;
  height: 20px;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .price-type-item .type-count input {
  color: #041728;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.04em;
  text-align: center;
  width: 100%;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .remove-room {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding-top: 6px;
  padding-bottom: 5px;
  background-color: rgba(83, 84, 97, 0.5098039216);
  border-radius: 4px;
  margin-bottom: 20px;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .remove-room:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.rc-box .date-priceType-container .price-type .dropdown-menu .add-room {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding-top: 6px;
  padding-bottom: 5px;
  background-color: #0060FF;
  border-radius: 4px;
  margin-bottom: 10px;
}

.rc-box .date-priceType-container .price-type .dropdown-menu .add-room:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.rc-thumbnail-tour-info {
  display: flex;
  align-items: center;
  padding: 0 20px 20px 20px;
  margin: 0 -20px 20px -20px;
}

.rc-thumbnail-tour-info .thumbnail {
  margin-right: 20px;
  border-radius: 4px;
  width: 100%;
  max-width: 140px;
  height: 87px;
}

.rc-thumbnail-tour-info .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 4px;
}

.rc-thumbnail-tour-info .tour-info label {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 10px;
}

.rc-thumbnail-tour-info .tour-info p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.rc-hr {
  margin-top: 8px;
  border-top: 1px solid #f2f2f2;
}

.rc-info-form .bordered {
  margin: 0 -20px 20px -20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.rc-info-form .form-element-int-tel-input .int-tel-input-wapper .int-tel-select {
  width: 60% !important;
}

.rc-tour-result {
  margin: 0 -20px 20px -20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.rc-tour-result .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.rc-tour-result .item label {
  color: #281C1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.rc-tour-result .item span {
  color: #281C1C;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.rc-tour-result .total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rc-tour-result .total-price label {
  color: #E14B5A;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.rc-tour-result .total-price span {
  display: flex;
  color: #E14B5A;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.rc-tour-result .total-price span p {
  color: #E14B5A;
  font-size: 12px;
  font-weight: 700;
}

.rc-tour-payment-options {
  margin-bottom: 20px;
}

.rc-payment-price-container {
  margin-bottom: 10px;
}

.rc-payment-payment-option {
  margin-bottom: 30px;
}

.rc-payment-payment-option .form-element .default-select {
  border: 1px solid rgba(83, 84, 97, 0.51);
}

.rc-payment-payment-option .form-element .default-select:focus {
  border-color: #043D9B;
}

.rc-payment-payment-option .form-element .default-select:hover {
  border-color: #043D9B;
}

.rc-credit-card-container .form-element {
  margin-bottom: 10px;
}

.rc-credit-card-container .form-element .default-input {
  border-color: rgba(83, 84, 97, 0.51);
}

.rc-credit-card-container .form-element .default-input:focus {
  border-color: #043D9B;
}

.rc-credit-card-container .form-element .default-input:hover {
  border-color: #043D9B;
}

.rc-credit-card-container .form-element.icon input {
  position: relative;
}

.rc-credit-card-container .form-element.icon img {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 10px;
  z-index: 1;
  top: 12px;
}

.rc-payment-check {
  margin-top: 10px;
  text-align: center;
}

.rc-status-label {
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  border-radius: 6px;
}

.rc-status-label.success {
  color: #043D9B;
  border: 1px solid #043D9B;
}

.rc-status-label.pending {
  color: rgba(83, 84, 97, 0.5098039216);
  border: 1px solid rgba(83, 84, 97, 0.5098039216);
}

.rc-status-label.cancel {
  color: #E14B5A;
  border: 1px solid #E14B5A;
}

.rc-payment-status {
  display: block;
  padding: 6px 5px;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

.rc-payment-status.manuel {
  background-color: #3E3F3E;
}

.rc-payment-status.online-request {
  background-color: #E14B5A;
}

.rc-payment-status.online-payment {
  background-color: #8ED16F;
}

.rc-border-table {
  border: 1px solid #F2F2F2;
  border-radius: 4px;
}

.rc-border-table .rc-border-table-title {
  padding: 10px 20px;
  border-bottom: 1px solid #F2F2F2;
}

.rc-border-table .rc-border-table-item {
  padding: 10px 20px;
  border-bottom: 1px solid #F2F2F2;
}

.rc-border-table .rc-border-table-item:last-child {
  border-bottom: 0;
}

.hotel-room-container {
  margin-top: 20px;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 999;
  border-radius: 10px;
  background-color: #F6F6F6;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-header .col-lg-3.br-right,
.hotel-room-container .hotel-room-list-container .hotel-room-list-header .col-lg-2.br-right,
.hotel-room-container .hotel-room-list-container .hotel-room-list-header .col-lg-1.br-right {
  border-right: 1px solid #EEE;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-header .hotel-room-list-title {
  color: #212121;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  padding: 11px 13px;
  padding-right: 0;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .col-lg-3.br-bottom-right,
.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .col-lg-2.br-bottom-right,
.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .col-lg-1.br-bottom-right {
  border-right: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .col-lg-3.highlight,
.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .col-lg-2.highlight,
.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .col-lg-1.highlight {
  background-color: rgba(242, 219, 8, 0.06);
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item-content-container {
  padding: 17px 0 17px 0;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-img-title .hotel-room-img {
  width: 100%;
  height: 100px;
  margin-bottom: 11px;
  border-radius: 12px;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-img-title .hotel-room-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-img-title .hotel-room-title {
  color: #212121;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 11px;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-info-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-info-box .box {
  color: #212121;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  background-color: #F6F6F6;
  padding: 3px 6px;
  margin-right: 7px;
  margin-bottom: 7px;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-info-box .box:last-child {
  margin-right: 0;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .conditions-box-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .conditions-box-container .conditions-box {
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  padding: 3px 6px;
  margin-right: 7px;
  margin-bottom: 7px;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .conditions-box-container .conditions-box:last-child {
  margin-right: 0;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .conditions-box-container .conditions-box.light-yellow {
  color: #FFFFFF;
  background-color: #043D9B;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .conditions-box-container .conditions-box.light-green {
  color: #08A03C;
  background-color: rgba(15, 208, 81, 0.1);
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .conditions-box-container .conditions-box.green {
  color: #FFF;
  background-color: #227950;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .conditions-box-container .conditions-box.light-grey {
  color: #212121;
  background-color: #F6F6F6;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .conditions-box-container .conditions-box.red {
  color: #FFF;
  background-color: #F25D5D;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .number-of-people {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .number-of-people img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  margin-bottom: 10px;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .pricing .discount-price {
  color: #212121;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .pricing .price {
  color: #043D9B;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-select {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 12px;
  border: 1px solid #EEE;
  background-color: #FFF;
  padding: 8px;
  width: 100%;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-reservation-button-info .room-people {
  color: #212121;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-reservation-button-info .total-text {
  color: #212121;
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-reservation-button-info .total-price {
  color: #0A663A;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-reservation-button-info .total-price span {
  display: block;
  color: #0A663A;
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-reservation-button-info .hotel-room-reservation-button {
  color: #212121;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 12px;
  background-color: #F2DB08;
  padding: 10px;
  text-align: center;
  box-shadow: none;
  border: none;
  width: 100%;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-reservation-warning {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 16px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #0182F4;
  background-color: #F0FCFE;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-reservation-warning .icon {
  margin-right: 7px;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-reservation-warning .text-content .title-info {
  color: #212121;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 5px;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container .hotel-room-list-item .hotel-room-reservation-warning .text-content .desc-info {
  color: #212121;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
}

.hotel-room-container .hotel-room-list-container .hotel-room-list-item-container #reservationButtonInfo {
  position: -webkit-sticky;
  position: sticky;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #EEE;
  margin-bottom: 20px;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item.highlight {
  background-color: rgba(242, 219, 8, 0.06);
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item:last-child {
  margin-bottom: 0;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-title-image-info-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #EEE;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-title-image-info-box .hotel-room-list-mobil-title-info-box {
  width: 70%;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-title-image-info-box .hotel-room-list-mobil-title-info-box .room-list-mobil-title {
  color: #0182F4;
  font-size: 17px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-title-image-info-box .hotel-room-list-mobil-title-info-box .room-list-mobil-info-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-title-image-info-box .hotel-room-list-mobil-title-info-box .room-list-mobil-info-box .room-list-mobil-info-box-item {
  color: #212121;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  background-color: #F6F6F6;
  padding: 3px 6px;
  margin-right: 7px;
  margin-bottom: 7px;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-title-image-info-box .hotel-room-list-mobil-image {
  width: 30%;
  height: 80px;
  border-radius: 12px;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-title-image-info-box .hotel-room-list-mobil-image img {
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-conditions-box-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #EEE;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-conditions-box-container .conditions-box-mobil {
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  padding: 3px 6px;
  margin-right: 7px;
  margin-bottom: 7px;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-conditions-box-container .conditions-box-mobil:last-child {
  margin-right: 0;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-conditions-box-container .conditions-box-mobil.light-yellow {
  color: #7A6E01;
  background-color: rgba(242, 219, 8, 0.2);
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-conditions-box-container .conditions-box-mobil.light-green {
  color: #08A03C;
  background-color: rgba(15, 208, 81, 0.1);
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-conditions-box-container .conditions-box-mobil.green {
  color: #FFF;
  background-color: #227950;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-conditions-box-container .conditions-box-mobil.light-grey {
  color: #212121;
  background-color: #F6F6F6;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-conditions-box-container .conditions-box-mobil.red {
  color: #FFF;
  background-color: #F25D5D;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-pricing-people {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-pricing-people .hotel-room-list-mobil-pricing .discount-price {
  color: #212121;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: line-through;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-pricing-people .hotel-room-list-mobil-pricing .price {
  color: #0A663A;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-pricing-people .hotel-room-list-mobil-pricing .price-text {
  color: #212121;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-pricing-people .hotel-room-list-mobil-people {
  text-align: right;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-pricing-people .hotel-room-list-mobil-people .people-text {
  color: #212121;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5px;
}

.hotel-room-container .hotel-room-list-mobil-container .hotel-room-list-mobil-item .hotel-room-list-mobil-pricing-people .hotel-room-list-mobil-people .hotel-room-select {
  color: #212121;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 12px;
  border: 1px solid #EEE;
  background-color: #FFF;
  padding: 8px;
  width: 100%;
  max-width: 60px;
}

.hotel-room-container .basic-filter-container {
  border-radius: 15px;
  border: 1px solid #EEE;
  background-color: #FFF;
  padding: 24px;
  margin-bottom: 20px;
}

.hotel-room-container .basic-filter-container .basic-filter-title {
  color: #212121;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}

.hotel-room-container .basic-filter-container .basic-filter-checkbox-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hotel-room-container .basic-filter-container .basic-filter-checkbox-container .custom-checkbox {
  margin-right: 16px;
}

.hotel-room-container .basic-filter-container .basic-filter-checkbox-container .custom-checkbox .custom-control-label {
  color: #A1A1A1;
}

.hotel-room-container .basic-filter-container .basic-filter-checkbox-container .custom-checkbox:last-child {
  margin-right: 0;
}

.hotel-room-container .basic-filter-container .basic-filter-checkbox-container .custom-checkbox .custom-control-input:checked ~ .custom-control-label {
  color: #212121;
}

.hotel-room-container .basic-filter-mobil-container {
  margin-bottom: 20px;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card {
  border-radius: 10px;
  border: 1px solid #EEE;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .card-header {
  padding: 0;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .card-header button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #212121;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  border-radius: 10px;
  border: none;
  background-color: white;
  padding: 12px !important;
  background-image: none;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .card-header button[aria-expanded=true] img {
  transform: rotate(180deg);
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .collapse .card-body {
  padding: 12px;
  padding-top: 0;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .collapse .card-body .bordered {
  width: 100%;
  height: 1px;
  border-top: 1px solid #EEE;
  margin-bottom: 12px;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .collapse .card-body .basic-filter-title {
  color: #212121;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .collapse .card-body .basic-filter-checkbox-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .collapse .card-body .basic-filter-checkbox-container:last-child {
  margin-bottom: 0;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .collapse .card-body .basic-filter-checkbox-container .custom-checkbox {
  margin-right: 20px;
  margin-bottom: 14px;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .collapse .card-body .basic-filter-checkbox-container .custom-checkbox .custom-control-label {
  color: #A1A1A1;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .collapse .card-body .basic-filter-checkbox-container .custom-checkbox:last-child {
  margin-bottom: 0;
}

.hotel-room-container .basic-filter-mobil-container .accordion .card .collapse .card-body .basic-filter-checkbox-container .custom-checkbox .custom-control-input:checked ~ .custom-control-label {
  color: #212121;
}

.hotel-room-filter-container {
  margin-top: 30px;
}

.hotel-room-filter-container .hotel-room-filter-container-title {
  color: #212121;
  font-size: 17px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area {
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #EEE;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item {
  width: 100%;
  padding: 15px;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title {
  display: flex;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-icons {
  margin-right: 5px;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title {
  width: 100%;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .filter-title {
  color: #0C422B;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date {
  margin-bottom: 0 !important;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date button {
  color: #0C422B !important;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  border: 0;
  padding: 0;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date button:before {
  display: none;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date .dropdown-menu .vc-container .vc-pane-container .vc-pane-layout .vc-pane {
  min-width: 280px;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date .dropdown-menu .vc-container .vc-pane-container .vc-pane-layout .vc-pane .vc-weeks .vc-day span {
  padding: 0;
  border: none;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date .dropdown-menu .vc-container .vc-pane-container .vc-pane-layout .vc-pane .vc-weeks .vc-day span:hover {
  border: none;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date .dropdown-menu .vc-container .vc-pane-container .vc-pane-layout .vc-pane .vc-weeks .vc-day span.active-dates {
  border-radius: 0;
  background-color: unset;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date .dropdown-menu .vc-container .vc-pane-container .vc-pane-layout .vc-pane .vc-weeks .vc-day span label {
  font-size: 12px;
  line-height: 1;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date .dropdown-menu .vc-container .vc-pane-container .vc-pane-layout .vc-pane .vc-weeks .vc-day span p {
  line-height: 1;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date .dropdown-menu .vc-container .vc-pane-container .vc-pane-layout .vc-pane .vc-weeks .vc-day .vc-highlights .vc-highlight {
  border-color: #0C422B !important;
  background-color: #0C422B !important;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date .dropdown-menu .vc-container .vc-pane-container .vc-pane-layout .vc-pane .vc-weeks .vc-day .vc-highlights .vc-highlight.vc-highlight-base-middle {
  background-color: rgba(12, 66, 43, 0.5) !important;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date .dropdown-menu .vc-container .vc-pane-container .vc-pane-layout .vc-pane .vc-weeks .vc-day .vc-highlights .vc-highlight.vc-highlight-base-start {
  background-color: rgba(12, 66, 43, 0.5) !important;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date .dropdown-menu .vc-container .vc-pane-container .vc-pane-layout .vc-pane .vc-weeks .vc-day .vc-highlights .vc-highlight.vc-highlight-base-end {
  background-color: rgba(12, 66, 43, 0.5) !important;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .price-type {
  margin-bottom: 0 !important;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .price-type button {
  color: #0C422B !important;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  border: 0;
  padding: 0;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .price-type button:before {
  display: none;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .vue-portal-target {
  width: 100%;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item.br-right {
  border-right: 1px solid #EEE;
}

.hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area-button .default-button {
  color: #212121;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 12px;
  background-color: #F2DB08;
  margin: 0 !important;
}

.mobil-fixed-hotel-reservation {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99999999;
  width: 100%;
  border-top: 1px solid #EEE;
  background-color: #FFF;
  box-shadow: 0px -6px 30px 0px rgba(0, 0, 0, 0.06);
}

.mobil-fixed-hotel-reservation .mobil-reservation-warning {
  padding: 10px 15px;
  border-top: 1px solid #0182F4;
  background-color: #F0FCFE;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.mobil-fixed-hotel-reservation .mobil-reservation-warning .icon {
  margin-right: 7px;
}

.mobil-fixed-hotel-reservation .mobil-reservation-warning .text-content .text-title {
  color: #212121;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}

.mobil-fixed-hotel-reservation .mobil-reservation-warning .text-content .text-desc {
  color: #212121;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
}

.mobil-fixed-hotel-reservation .pricing-reservation-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #EEE;
  background-color: #FFF;
  padding: 15px;
}

.mobil-fixed-hotel-reservation .pricing-reservation-button .pricing .pricing-people {
  color: #212121;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
}

.mobil-fixed-hotel-reservation .pricing-reservation-button .pricing .price {
  color: #0A663A;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
}

.mobil-fixed-hotel-reservation .pricing-reservation-button .pricing .price-text {
  color: #0A663A;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
}

.mobil-fixed-hotel-reservation .pricing-reservation-button .reservation-button {
  text-align: center;
  color: #212121;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 10px;
  border-radius: 12px;
  background-color: #F2DB08;
}

.br-bottom {
  border-bottom: 1px solid #EEE;
}

@media only screen and (max-width: 992px) {
  .hotel-room-filter-container .hotel-room-filter-container-title {
    color: #212121;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
  }

  .hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area {
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item {
    padding: 10px;
  }

  .hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title {
    display: flex;
  }

  .hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title {
    width: 100%;
  }

  .hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .filter-title {
    display: none;
  }

  .hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .date button {
    font-size: 12px;
  }

  .hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .price-type button {
    font-size: 12px;
  }

  .hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area .hotel-room-filter-form-area-item .filter-icons-inputs-title .filter-inputs-title .price-type .dropdown-menu {
    min-width: 300px;
    transform: translate3d(-160px, 14px, 0px) !important;
  }

  .hotel-room-filter-container .hotel-room-filter-area .hotel-room-filter-form-area-button .default-button {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 35px;
    border-radius: 10px;
  }
}

.video-modal .modal-content {
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.video-modal .modal-body .header .close-icon {
  text-align: right;
  cursor: pointer;
}

.video-modal .modal-body .header .close-icon img {
  width: 24px;
  height: 24px;
}

.video-modal .modal-body .header .title {
  margin-bottom: 20px;
}

.video-modal .modal-body .header .title label {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
}

.video-modal .modal-body .content iframe {
  width: 100%;
  height: 350px;
}

.video-modal .modal-body .footer {
  text-align: right;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 1;
}

.blog-img-container .img-preview .logo {
  margin-bottom: 10px;
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 4px;
}

.blog-img-container .img-preview .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 4px;
}

.blog-img-container .img-preview .logo .delete {
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  display: flex;
}

.blog-img-container .img-preview .logo .delete img {
  width: 20px;
  height: 20px;
}

.blog-img-container .img-preview .logo .delete img:last-child {
  margin-right: 0;
}

.blog-img-container .img-preview .logo .thumbnail {
  position: absolute;
  top: 4px;
  left: 6px;
  color: #FFFFFF;
  font-size: 8px;
  font-weight: 700;
  line-height: 11px;
  padding: 5px 23px 4px 23px;
  background-color: #043D9B;
  border-radius: 120px;
}

.blog-img-container .img-upload {
  padding-top: 11px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  border: 1px dashed #3E3F3E;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-img-container .img-upload img {
  width: 18px;
  height: 18px;
  display: block;
  margin-right: 10px;
}

.blog-img-container .img-upload label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.blog-img-container .img-upload input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.blog-img-container .img-upload:hover {
  border-color: #043D9B;
}

.theme-choose-box {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  width: 100%;
}

.theme-choose-box:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.theme-choose-box .img {
  width: 100%;
  height: 230px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.theme-choose-box .img img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  -o-object-position: top center;
     object-position: top center;
  -o-object-fit: cover;
     object-fit: cover;
}

.theme-choose-box .theme-choose-box-content {
  padding: 20px 20px 30px 20px;
}

.theme-choose-box .theme-choose-box-content label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 10px;
}

.theme-choose-box .theme-choose-box-content p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.theme-choose-box .theme-choose-box-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px 20px;
}

.theme-choose-box .theme-choose-box-footer a {
  color: #043D9B;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.theme-choose-box .theme-choose-box-footer button {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  background-color: #043D9B;
  border-radius: 4px;
  padding: 11px 33px 10px 33px;
}

.drag-drop .nestable {
  position: relative;
}

.drag-drop .nestable .nestable-list {
  margin: 0;
  padding: 0 0 0 40px;
  list-style-type: none;
}

.drag-drop .nestable .nestable-list .nestable-item,
.drag-drop .nestable .nestable-list .nestable-item-copy {
  margin: 10px 0 0;
}

.drag-drop .nestable .nestable-list .nestable-item:first-child,
.drag-drop .nestable .nestable-list .nestable-item-copy:first-child {
  margin-top: 0;
}

.drag-drop .nestable .nestable-list .nestable-item .nestable-list,
.drag-drop .nestable .nestable-list .nestable-item-copy .nestable-list {
  margin-top: 10px;
}

.drag-drop .nestable .nestable-list .nestable-list-empty {
  display: none;
}

.drag-drop .nestable > .nestable-list {
  padding: 0;
}

.drag-drop .nestable-item {
  position: relative;
  background-color: #FFFFFF;
  margin-bottom: 10px !important;
}

.drag-drop .nestable-item .nestable-item-content {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  border-radius: 4px;
}

.drag-drop .nestable-item .nestable-item-content .drag-drop-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 10px 20px 10px 10px;
}

.drag-drop .nestable-item .nestable-item-content .drag-drop-content .title span {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.drag-drop .nestable-item .nestable-item-content .drag-drop-content .buttons {
  display: flex;
}

.drag-drop .nestable-item .nestable-item-content .drag-drop-content .buttons button.edit {
  color: rgba(83, 84, 97, 0.5098039216);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-right: 20px;
}

.drag-drop .nestable-item .nestable-item-content .drag-drop-content .buttons button.delete {
  color: #E14B5A;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.drag-drop .nestable-item.is-dragging .nestable-list {
  pointer-events: none;
}

.drag-drop .nestable-item.is-dragging * {
  opacity: 0;
  filter: alpha(opacity=0);
}

.drag-drop .nestable-item.is-dragging:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(4, 61, 155, 0.274);
  border: 1px dashed #043D9B;
  border-radius: 4px;
}

.nestable-rtl {
  direction: rtl;
}

.nestable-rtl .nestable-list {
  padding: 0 40px 0 0;
}

.nestable-drag-layer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  background-color: #FFFFFF;
  border-radius: 4px;
  margin-bottom: 10px !important;
}

.nestable-drag-layer .nestable-item-content {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  display: flex;
}

.nestable-drag-layer .nestable-item-content .drag-drop-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 10px 20px 10px 10px;
}

.nestable-drag-layer .nestable-item-content .drag-drop-content .title span {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.nestable-drag-layer .nestable-item-content .drag-drop-content .buttons {
  display: flex;
}

.nestable-drag-layer .nestable-item-content .drag-drop-content .buttons button.edit {
  color: rgba(83, 84, 97, 0.5098039216);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-right: 20px;
}

.nestable-drag-layer .nestable-item-content .drag-drop-content .buttons button.delete {
  color: #E14B5A;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.nestable-rtl .nestable-drag-layer {
  left: 0;
  right: 0;
}

.nestable-drag-layer > .nestable-list {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 !important;
  background-color: rgba(4, 61, 155, 0.274);
  border-radius: 4px;
}

.nestable-rtl .nestable-drag-layer > .nestable-list {
  padding: 0;
}

.nestable [draggable=true] {
  cursor: move;
}

.nestable-handle {
  padding: 13px 15px;
  display: inline;
  background-color: #F2F2F2;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pos-box {
  padding: 30px;
  border: 1px solid #F2F2F2;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.pos-box .img {
  text-align: center;
}

.pos-box .img img {
  max-width: 100%;
  max-height: 87px;
}

.pos-box .text {
  text-align: center;
}

.pos-box .text p {
  color: #281C1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.pos-box .switch {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pos-box .switch p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-left: 10px;
}

.pos-box .switch .vue-js-switch.disabled {
  opacity: 1 !important;
}

.pos-box .switch .vue-js-switch.toggled .v-switch-core {
  background-color: #007EFF !important;
}

.pos-box .switch .vue-js-switch.toggled .v-switch-core .v-switch-button {
  transform: translate3d(56px, 3px, 0px) !important;
}

.pos-box .switch .vue-js-switch .v-switch-core {
  border-radius: 200px !important;
  width: 80px !important;
  height: 25px !important;
  background-color: rgba(83, 84, 97, 0.51) !important;
}

.pos-box .switch .vue-js-switch .v-switch-core .v-switch-button {
  width: 20px !important;
  height: 20px !important;
  transform: translate3d(4px, 3px, 0px) !important;
}

.pos-box .connect-button {
  text-align: center;
}

.pos-box .connect-button a {
  color: #0060FF;
  font-size: 14px;
  font-weight: 400;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.payment-modal {
  background-color: #efefef;
}

.payment-modal .modal-content {
  box-shadow: none;
  border-radius: 0;
  border: none;
  background-color: #efefef;
}

.payment-modal .modal-content .modal-body {
  padding: 0;
}

.payment-modal .modal-content .modal-body .header {
  display: flex;
  justify-content: end;
  margin-bottom: 30px;
}

.payment-modal .modal-content .modal-body .header img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.payment-modal .modal-content .modal-body .content iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.payment-fail-modal .modal-content {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  border: none;
}

.payment-fail-modal .modal-content .modal-body {
  padding: 30px;
}

.payment-fail-modal .modal-content .modal-body .header {
  display: flex;
  justify-content: end;
  margin-bottom: 30px;
}

.payment-fail-modal .modal-content .modal-body .header img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.payment-fail-modal .modal-content .modal-body .content .icon {
  text-align: center;
  margin-bottom: 20px;
}

.payment-fail-modal .modal-content .modal-body .content .icon img {
  width: 92px;
  height: 92px;
}

.payment-fail-modal .modal-content .modal-body .content .welcome-text {
  text-align: center;
  margin-bottom: 30px;
}

.payment-fail-modal .modal-content .modal-body .content .welcome-text label {
  color: #BD162C;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 10px;
}

.payment-fail-modal .modal-content .modal-body .content .welcome-text p {
  color: #041728;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 0;
}

.payment-fail-modal .modal-content .modal-body .content .footer {
  text-align: center;
}

.tour-summary-info-box {
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-bottom: 20px;
}

.tour-summary-info-box label {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 17px;
}

.tour-summary-info-box p {
  color: #043D9B;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
}

.operation-modal .modal-content {
  border: none;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.operation-modal .modal-content .modal-body {
  padding: 0;
}

.operation-modal .modal-content .modal-body .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 20px 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.operation-modal .modal-content .modal-body .header .title-date label {
  color: #043D9B;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 5px;
}

.operation-modal .modal-content .modal-body .header .title-date .date {
  display: flex;
  justify-items: flex-start;
  align-items: center;
}

.operation-modal .modal-content .modal-body .header .title-date .date.blue p {
  color: #043D9B;
}

.operation-modal .modal-content .modal-body .header .title-date .date img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.operation-modal .modal-content .modal-body .header .title-date .date p {
  color: rgba(83, 84, 97, 0.51);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.operation-modal .modal-content .modal-body .header .close-icon img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.operation-modal .modal-content .modal-body .content {
  padding: 0 30px 20px 30px;
}

.operation-modal .modal-content .modal-body .content .buttons button {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 11px 15px 10px 15px;
  background-color: #E8E8E8;
  border-radius: 6px;
}

.operation-modal .modal-content .modal-body .content .tour-management {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.operation-modal .modal-content .modal-body .content .tour-management label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.operation-modal .modal-content .modal-body .content .tour-management .text-icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.operation-modal .modal-content .modal-body .content .tour-management .text-icon p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-right: 10px;
}

.operation-modal .modal-content .modal-body .content .tour-management .text-icon img {
  width: 16px;
  height: 12.46px;
}

.operation-modal .modal-content .modal-body .content .quota-update {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.operation-modal .modal-content .modal-body .content .quota-update label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.operation-modal .modal-content .modal-body .content .quota-update .text-icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.operation-modal .modal-content .modal-body .content .quota-update .text-icon p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-right: 10px;
}

.operation-modal .modal-content .modal-body .content .quota-update .text-icon img {
  width: 16px;
  height: 12.46px;
}

.operation-modal .modal-content .modal-body .content .quota-update-input label {
  color: #3E3F3E;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 10px;
}

.operation-modal .modal-content .modal-body .content .quota-update-input input {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  width: 100%;
  padding: 10px 20px 11px 20px;
  background-color: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  height: auto;
  transition: all 0.3s;
}

.operation-modal .modal-content .modal-body .content .quota-update-input input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.operation-modal .modal-content .modal-body .content .quota-update-input input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.operation-modal .modal-content .modal-body .content .quota-update-input input:focus {
  border-color: #043D9B;
}

.operation-modal .modal-content .modal-body .content .quota-update-input input:hover {
  border-color: #043D9B;
}

.operation-modal .modal-content .modal-body .content li {
  list-style: none;
}

.operation-modal .modal-content .modal-body .content li .basic-select {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/select-icon-dif.svg");
  background-position: right 16px top 16px;
  background-repeat: no-repeat;
  padding: 10px 20px 11px 20px;
  transition: all 0.3s;
}

.operation-modal .modal-content .modal-body .content li .basic-select:focus {
  border-color: #043D9B;
}

.operation-modal .modal-content .modal-body .content li .basic-select:hover {
  border-color: #043D9B;
}

.operation-modal .modal-content .modal-body .content .quick-menu {
  margin-bottom: 20px;
}

.operation-modal .modal-content .modal-body .content .quick-menu .quick-menu-title {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.operation-modal .modal-content .modal-body .content .quick-menu a {
  display: flex;
  align-items: center;
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: -0.04em;
}

.operation-modal .modal-content .modal-body .content .quick-menu a img {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}

.operation-modal .modal-content .modal-body .footer {
  border-top: 1px solid #F2F2F2;
  padding: 30px 30px 30px 30px;
}

.operation-modal .modal-dialog {
  transform: translate(0, -50%) !important;
  top: 50%;
  margin: 0 auto;
}

@media only screen and (min-width: 576px) {
  .operation-modal .modal-dialog {
    max-width: 538px;
  }
}

#operation-modal___BV_modal_outer_ .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

#quota-modal___BV_modal_outer_ .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.date-dropdown {
  width: 100%;
  margin-bottom: 30px;
}

.date-dropdown .btn-secondary {
  width: 100%;
  color: #000000 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  background-color: #FFFFFF !important;
  padding: 9px 23px 9px 26px;
  border: 1px solid #E5E5E5 !important;
  border-radius: 6px;
  text-align: left;
}

.date-dropdown .btn-secondary:after {
  display: none;
}

.date-dropdown .btn-secondary:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(/images/date-icon-black.svg);
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}

.date-dropdown .btn-secondary:focus {
  color: #000000;
  border: 1px solid #E5E5E5;
  box-shadow: none;
  outline: none;
  background-color: #FFFFFF;
}

.date-dropdown .btn-secondary:active {
  color: #000000;
  border: 1px solid #E5E5E5;
  box-shadow: none;
  outline: none;
  background-color: #FFFFFF;
}

.date-dropdown .btn-secondary:not(:disabled):not(.disabled).active,
.date-dropdown .btn-secondary:not(:disabled):not(.disabled):active,
.date-dropdown .show > .btn-secondary.dropdown-toggle {
  color: #000000;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  box-shadow: none;
  outline: none;
}

.date-dropdown .dropdown-menu {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-top: 7px;
  min-width: 520px;
}

.date-dropdown .dropdown-menu .header {
  padding: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.date-dropdown .dropdown-menu .header label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 10px;
}

.date-dropdown .dropdown-menu .content {
  padding: 20px 20px 40px 20px;
}

.date-dropdown .dropdown-menu .footer {
  padding: 0 20px 20px 20px;
}

.date-dropdown .dropdown-menu .footer .close-button {
  width: 100%;
  text-align: center;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  background-color: #F2F2F2;
  border-radius: 4px;
  padding-top: 11px;
  padding-bottom: 10px;
}

.coupon-detail-status span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border-radius: 6px;
  padding-top: 6px;
  padding-bottom: 5px;
  padding-left: 23px;
  padding-right: 22px;
}

.coupon-detail-status span.active {
  background-color: #7FD188;
}

.danger-info-modal .modal-content {
  border: none;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.danger-info-modal .modal-content .modal-body {
  padding: 0;
}

.danger-info-modal .modal-content .modal-body .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 20px 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.danger-info-modal .modal-content .modal-body .header .close-icon img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.danger-info-modal .modal-content .modal-body .content {
  padding: 30px 50px 30px 50px;
  text-align: center;
}

.danger-info-modal .modal-content .modal-body .content img {
  margin-bottom: 20px;
}

.danger-info-modal .modal-content .modal-body .footer {
  padding: 20px 30px 30px 30px;
}

.danger-info-modal .modal-content .modal-body .footer button {
  padding-top: 11px;
  padding-bottom: 10px;
}

.danger-info-modal .modal-dialog {
  transform: translate(0, -50%) !important;
  top: 50%;
  margin: 0 auto;
}

#danger-info-modal___BV_modal_outer_ .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.translate-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.translate-buttons::-webkit-scrollbar {
  height: 6px;
}

.translate-buttons::-webkit-scrollbar-track {
  background-color: #F2F2F2;
}

.translate-buttons::-webkit-scrollbar-thumb {
  background-color: #043D9B;
}

.translate-buttons button {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-right: 10px;
  padding: 6px 20px;
  background-color: rgba(4, 61, 155, 0.4);
  border-radius: 4px;
}

.translate-buttons button.active {
  background-color: #043D9B;
}

.translate-buttons button:last-child {
  margin-right: 0;
}

.translation-from-one-language-to-another {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}

.translation-from-one-language-to-another .buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 10px 6px 10px;
  background-color: rgba(83, 84, 97, 0.51);
  border-radius: 4px;
  flex-shrink: 0;
  margin-right: 12px;
}

.translation-from-one-language-to-another .buttons:last-child {
  margin-right: 0;
}

.translation-from-one-language-to-another .buttons.active {
  background-color: #3E3F3E;
}

.translation-from-one-language-to-another .buttons .icon {
  margin-right: 10px;
}

.translation-from-one-language-to-another .buttons .icon img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.translation-from-one-language-to-another .buttons .content {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.subscription-packages-title-info {
  padding-top: 20px;
  margin-bottom: 50px;
}

.subscription-packages-title-info .title {
  color: #281C1C;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 30px;
  text-align: center;
}

.subscription-packages-title-info .info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscription-packages-title-info .info .item {
  display: flex;
  align-items: center;
  margin-right: 50px;
}

.subscription-packages-title-info .info .item:last-child {
  margin-right: 0;
}

.subscription-packages-title-info .info .item .icon {
  margin-right: 20px;
}

.subscription-packages-title-info .info .item .icon img {
  width: 50px;
  height: 50px;
}

.subscription-packages-title-info .info .item .text span {
  display: block;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.subscription-packages-title-info .info .item .text p {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.subscription-package {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 30px;
}

.subscription-package .header {
  border-bottom: 1px solid #F2F2F2;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.subscription-package .header label {
  color: #281C1C;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
  cursor: text;
}

.subscription-package .header p {
  color: #281C1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.subscription-package .content ul li {
  display: flex;
  margin-bottom: 10px;
}

.subscription-package .content ul li:last-child {
  margin-bottom: 0;
}

.subscription-package .content ul li img {
  width: 16px;
  height: 13px;
  margin-right: 10px;
  margin-top: 3px;
}

.subscription-package .content ul li p {
  color: #281C1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.subscription-package .price-content {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #F2F2F2;
  border-bottom: 1px solid #F2F2F2;
}

.subscription-package .price-content .price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.subscription-package .price-content .price .item {
  color: #0060FF;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
}

.subscription-package .price-content .price .item span {
  color: rgba(83, 84, 97, 0.51);
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.subscription-package .price-content .price .item.or {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-left: 10px;
  margin-right: 10px;
}

.subscription-package .price-content .desc {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
}

.subscription-package .swicth-year-month {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.subscription-package .swicth-year-month .item {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.subscription-package .swicth-year-month .vue-js-switch {
  margin-right: 20px;
  margin-left: 20px;
}

.subscription-package .swicth-year-month .vue-js-switch.disabled {
  opacity: 1 !important;
}

.subscription-package .swicth-year-month .vue-js-switch.toggled .v-switch-core {
  background-color: #007EFF !important;
}

.subscription-package .swicth-year-month .vue-js-switch.toggled .v-switch-core .v-switch-button {
  transform: translate3d(26px, 3px, 0px) !important;
}

.subscription-package .swicth-year-month .vue-js-switch .v-switch-core {
  border-radius: 200px !important;
  width: 45px !important;
  height: 21px !important;
  background-color: #E14B5A !important;
}

.subscription-package .swicth-year-month .vue-js-switch .v-switch-core .v-switch-button {
  width: 15px !important;
  height: 15px !important;
  transform: translate3d(4px, 3px, 0px) !important;
}

.subscription-package .footer button {
  width: 100%;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: #0060FF;
  border-radius: 4px;
}

.subscription-payment-container {
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 12px;
}

.subscription-payment-container .title {
  color: #281C1C;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 30px;
}

.subscription-payment-container .subscription-payment-input {
  width: 100%;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  background-color: #F2F2F2;
  border-radius: 12px;
  padding: 10px 20px 11px 20px;
}

.subscription-payment-container .subscription-payment-input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.subscription-payment-container .subscription-payment-input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.subscription-payment-container .subscription-payment-select {
  width: 100%;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border-radius: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/select-icon-dif.svg");
  background-position: right 9.95px top 17px;
  background-repeat: no-repeat;
  background-color: #F2F2F2;
  padding: 10px 20px 11px 20px;
}

.subscription-payment-container .price-packages-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F2F2F2;
  margin-bottom: 20px;
  padding-top: 27px;
}

.subscription-payment-container .price-packages-info .packages {
  color: #060606;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.subscription-payment-container .price-packages-info .price {
  display: flex;
  align-items: center;
}

.subscription-payment-container .price-packages-info .price span {
  color: #281C1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  margin-right: 10px;
}

.subscription-payment-container .price-packages-info .price p {
  color: #0060FF;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  margin-right: 10px;
}

.subscription-payment-container .price-packages-info .price label {
  color: rgba(83, 84, 97, 0.51);
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.subscription-payment-container .buttons-payment-desc button {
  width: 100%;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: #0060FF;
  border-radius: 12px;
  margin-bottom: 10px;
  text-align: center;
}

.subscription-payment-container .buttons-payment-desc p {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}

.subscription-payment-success-fail {
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 12px;
  text-align: center;
}

.subscription-payment-success-fail .icon {
  margin-bottom: 20px;
}

.subscription-payment-success-fail .title-desc {
  margin-bottom: 30px;
}

.subscription-payment-success-fail .title-desc .title {
  color: #0060FF;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  margin-bottom: 10px;
}

.subscription-payment-success-fail .title-desc .title.red {
  color: #E14B5A;
}

.subscription-payment-success-fail .title-desc .desc {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.subscription-payment-success-fail .packages-price {
  margin-bottom: 30px;
}

.subscription-payment-success-fail .packages-price .packages {
  color: #281C1C;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
}

.subscription-payment-success-fail .packages-price .price span {
  color: #0060FF;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscription-payment-success-fail .packages-price .price span p {
  color: rgba(83, 84, 97, 0.51);
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-left: 5px;
}

.subscription-payment-success-fail .date-button .date {
  margin-bottom: 30px;
}

.subscription-payment-success-fail .date-button .date label {
  display: block;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  cursor: text;
  margin-bottom: 5px;
}

.subscription-payment-success-fail .date-button .date p {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.subscription-payment-success-fail .date-button .button button {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  background-color: #0060FF;
  border-radius: 12px;
  padding: 11px 61px 10px 61px;
  text-align: center;
}

.changelog-card {
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-bottom: 20px;
  cursor: pointer;
}

.changelog-card .changelog-card-title {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 15px;
}

.changelog-card .changelog-card-date {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */

.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}

.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}

.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}

.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}

.ql-clipboard p {
  margin: 0;
  padding: 0;
}

.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  -o-tab-size: 4;
     tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.ql-editor > * {
  cursor: text;
}

.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}

.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}

.ql-editor ul > li::before {
  content: "\2022";
}

.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}

.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}

.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}

.ql-editor ul[data-checked=true] > li::before {
  content: "\2611";
}

.ql-editor ul[data-checked=false] > li::before {
  content: "\2610";
}

.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}

.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}

.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}

.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}

.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}

.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}

.ql-editor ol li:before {
  content: counter(list-0, decimal) ". ";
}

.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}

.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) ". ";
}

.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}

.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) ". ";
}

.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}

.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) ". ";
}

.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}

.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) ". ";
}

.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}

.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) ". ";
}

.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}

.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) ". ";
}

.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}

.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) ". ";
}

.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}

.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}

.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) ". ";
}

.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}

.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}

.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) ". ";
}

.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}

.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}

.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}

.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}

.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}

.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}

.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}

.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}

.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}

.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}

.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}

.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}

.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}

.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}

.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}

.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}

.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}

.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}

.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}

.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}

.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}

.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}

.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}

.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}

.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}

.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}

.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}

.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}

.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}

.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}

.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}

.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}

.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}

.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}

.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}

.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}

.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}

.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}

.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}

.ql-editor .ql-bg-black {
  background-color: #000;
}

.ql-editor .ql-bg-red {
  background-color: #e60000;
}

.ql-editor .ql-bg-orange {
  background-color: #f90;
}

.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}

.ql-editor .ql-bg-green {
  background-color: #008a00;
}

.ql-editor .ql-bg-blue {
  background-color: #06c;
}

.ql-editor .ql-bg-purple {
  background-color: #93f;
}

.ql-editor .ql-color-white {
  color: #fff;
}

.ql-editor .ql-color-red {
  color: #e60000;
}

.ql-editor .ql-color-orange {
  color: #f90;
}

.ql-editor .ql-color-yellow {
  color: #ff0;
}

.ql-editor .ql-color-green {
  color: #008a00;
}

.ql-editor .ql-color-blue {
  color: #06c;
}

.ql-editor .ql-color-purple {
  color: #93f;
}

.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}

.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}

.ql-editor .ql-size-small {
  font-size: 0.75em;
}

.ql-editor .ql-size-large {
  font-size: 1.5em;
}

.ql-editor .ql-size-huge {
  font-size: 2.5em;
}

.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}

.ql-editor .ql-align-center {
  text-align: center;
}

.ql-editor .ql-align-justify {
  text-align: justify;
}

.ql-editor .ql-align-right {
  text-align: right;
}

.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}

.tour-grouped-pax-box {
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-bottom: 30px;
}

.tour-grouped-pax-box .title {
  color: #043D9B;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  margin-bottom: 30px;
}

.tour-grouped-pax-box .total {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tour-grouped-pax-box ul li {
  margin-bottom: 5px;
  color: #281C1C;
  font-size: 16px;
  font-weight: 500;
}

.tour-grouped-pax-box .item-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-grouped-pax-box .item-container.diff {
  display: flex;
  flex-wrap: wrap;
}

.tour-grouped-pax-box .item-container.diff .item {
  flex-grow: 1;
  width: 33%;
}

.tour-grouped-pax-box .item-container .item {
  margin-bottom: 5px;
}

.tour-grouped-pax-box .item-container .item .item-title {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}

.tour-grouped-pax-box .item-container .item .item-title.diff {
  color: #3E3F3E;
}

.tour-grouped-pax-box .item-container .item .item-desc {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.access-restriction {
  text-align: center;
}

.access-restriction .img {
  margin-bottom: 20px;
}

.access-restriction .title {
  color: #043D9B;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.access-restriction .desc {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 30px;
}

.otel-room-accardion .accordion .card {
  border-radius: 4px;
  border: 1px solid #F2F2F2;
  background-color: #FFF;
  margin-bottom: 20px;
}

.otel-room-accardion .accordion .card:last-child {
  margin-bottom: 30px;
}

.otel-room-accardion .accordion .card .card-header {
  border: 0;
  background-color: transparent;
  padding: 20px;
}

.otel-room-accardion .accordion .card .card-header button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: 0;
  padding: 0;
}

.otel-room-accardion .accordion .card .card-header button .text {
  text-align: left;
}

.otel-room-accardion .accordion .card .card-header button .text p {
  color: #3E3F3E;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 2px;
}

.otel-room-accardion .accordion .card .card-header button .text span {
  display: block;
  color: #3E3F3E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.otel-room-accardion .accordion .card .card-header button .icon img {
  transition: 300ms;
}

.otel-room-accardion .accordion .card .card-header button[aria-expanded=true] .icon img {
  transform: rotate(180deg);
}

.otel-room-accardion .accordion .card .card-body {
  padding: 20px;
  border-top: 1px solid #F2F2F2;
}

.btn-secondary.focus,
.btn-secondary:focus {
  box-shadow: none !important;
}

.accardion-inputs .add-manual {
  color: #043D9B;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6px;
  cursor: pointer;
}

.room-list-item {
  border-radius: 4px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.room-list-item .img {
  width: 100%;
  height: 150px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.room-list-item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.room-list-item .room-content {
  padding: 15px 10px;
}

.room-list-item .room-content .title-toggle-button {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.room-list-item .room-content .title-toggle-button .title {
  color: #3E3F3E;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.room-list-item .room-content .room-features ul li {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  color: #3E3F3E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.room-list-item .room-content .room-features ul li img {
  margin-right: 4px;
}

.room-list-item .room-content .room-price-buttons {
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.room-list-item .room-content .room-price-buttons .room {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: #F2F2F2;
  margin-right: 10px;
}

.room-list-item .room-content .room-price-buttons .price {
  width: 100%;
  color: #0075FF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #F2F2F2;
  background-color: #FFF;
}

.room-list-item .room-content .room-price-buttons .archive {
  width: 100%;
  color: #E14B5A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #F2F2F2;
  background-color: #FFF;
}

.file-upload-container {
  position: relative;
}

.file-upload-container .file-upload-area {
  display: flex;
  align-items: center;
}

.file-upload-container .file-upload-area .file-upload-button {
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.84px;
  padding: 11px 25px;
  border-radius: 20px;
  background-color: #043D9B;
  margin-right: 11px;
}

.file-upload-container .file-upload-area .file-upload-button img {
  width: 15px;
  height: 18px;
  margin-right: 10px;
}

.file-upload-container .file-upload-area .file-upload-button span {
  position: relative;
  right: 0;
  top: 0;
}

.file-upload-container .file-upload-area .file-upload-text {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.84px;
}

.file-upload-container .file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-buttons-preview .preview-img {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 6px;
  border: 1px solid rgba(196, 196, 196, 0.2);
}

.file-upload-buttons-preview .preview-img img {
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  max-width: 100%;
  max-height: 130px;
  display: block;
}

.file-upload-buttons-preview .preview-remove-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}

.file-upload-buttons-preview .preview-remove-button button {
  color: white;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: 300ms;
  padding: 5px;
  text-align: center;
  width: 100%;
}

.file-upload-buttons-preview .preview-remove-button button.preview {
  margin-right: 10px;
  background-color: #043D9B;
}

.file-upload-buttons-preview .preview-remove-button button.remove {
  background-color: #E14B5A;
}

.cropper-modal-gallery .modal-content .modal-body .content .header {
  position: relative;
  height: auto;
}

.cropper-modal-gallery .modal-content .modal-body .content .header label {
  margin-bottom: 0;
}

.cropper-modal-gallery .modal-content .modal-body .content .preview-img-iframe {
  width: 100%;
  height: auto;
}

.cropper-modal-gallery .modal-content .modal-body .content .preview-img-iframe img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.cropper-modal-gallery .modal-content .modal-body .content .preview-img-iframe iframe {
  width: 100%;
  height: 80vh;
}

label.people-data {
  border: 1px solid #e1e1e1;
  padding: 10px;
  width: 100%;
  height: 150px;
  display: -moz-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 15px;
  transition: all ease 150ms;
}

label.people-data:hover,
label.people-data:focus {
  border-color: #333;
}

label.people-data img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 130px;
  display: block;
}

.setup {
  background-color: #F2F2F2;
  min-height: 100vh;
  height: 100%;
  padding-bottom: 100px;
}

.setup .setup-header {
  padding-top: 15px;
  padding-bottom: 16px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.09);
  background-color: #FFFFFF;
  position: relative;
  z-index: 9;
}

.setup .setup-header a {
  display: inline-block;
}

.setup .setup-header a img {
  max-width: 136px;
  height: auto;
}

.setup .setup-content .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.setup .setup-content .setup-side-bar {
  background-color: #FFFFFF;
  padding: 20px 30px;
  margin-right: 30px;
  min-height: 100vh;
  height: 100%;
}

.setup .setup-content .setup-side-bar .progress-container {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
  margin: 0 -30px 20px -30px;
  padding-right: 30px;
  padding-left: 30px;
}

.setup .setup-content .setup-side-bar .progress-container label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.setup .setup-content .setup-side-bar .progress-container .progress {
  height: 15px;
  line-height: 0;
  font-size: 0;
  background-color: #F2F2F2;
  border-radius: 120px;
}

.setup .setup-content .setup-side-bar .progress-container .progress .progress-bar {
  background-color: #043D9B;
  border-radius: 120px;
}

.setup .setup-content .setup-side-bar .menu .steps-link {
  display: block;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 10px;
}

.setup .setup-content .setup-side-bar .menu .steps-link:last-child {
  margin-bottom: 0;
}

.setup .setup-content .setup-side-bar .menu .steps-link.router-link-active {
  font-weight: 700;
}

.setup .setup-content .content {
  padding-top: 30px;
  padding-bottom: 100px;
}

.setup .setup-content .content section {
  padding-bottom: 0;
}

.logo-cropper-container .logo-preview .logo {
  background-color: #F2F2F2;
  padding-top: 34px;
  padding-bottom: 34px;
  border-radius: 4px;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}

.logo-cropper-container .logo-preview .logo img {
  max-width: 391px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo-cropper-container .logo-preview .logo .delete {
  position: absolute;
  top: -20px;
  right: -5px;
  cursor: pointer;
  display: flex;
}

.logo-cropper-container .logo-preview .logo .delete img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.logo-cropper-container .logo-preview .logo .delete img:last-child {
  margin-right: 0;
}

.logo-cropper-container .logo-upload {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  border: 1px dashed #3E3F3E;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.logo-cropper-container .logo-upload img {
  width: 42px;
  height: 42px;
  display: block;
  margin: 0 auto;
}

.logo-cropper-container .logo-upload input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.logo-cropper-container .logo-upload:hover {
  border-color: #043D9B;
}

.gallery-container {
  margin-bottom: 30px;
}

.gallery-container .gallery-upload {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  border: 1px dashed #3E3F3E;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.gallery-container .gallery-upload img {
  width: 42px;
  height: 42px;
  display: block;
  margin: 0 auto;
}

.gallery-container .gallery-upload input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.gallery-container .gallery-upload label {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.gallery-container .gallery-upload:hover {
  border-color: #043D9B;
}

.gallery-container .img-wrapper {
  float: none;
}

.gallery-container .images-preview-container {
  margin-top: 50px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.gallery-container .images-preview-container .images-preview {
  position: relative;
  margin-bottom: 20px;
}

.gallery-container .images-preview-container .images-preview .img {
  width: 100%;
  height: 150px;
  border-radius: 4px;
}

.gallery-container .images-preview-container .images-preview .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px;
}

.gallery-container .images-preview-container .images-preview .delete-crop-icon {
  position: absolute;
  top: -10px;
  right: 10px;
  cursor: pointer;
  display: flex;
}

.gallery-container .images-preview-container .images-preview .delete-crop-icon img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.gallery-container .images-preview-container .images-preview .delete-crop-icon img:last-child {
  margin-right: 0;
}

.gallery-container .images-preview-container .images-preview .thumbnail {
  position: absolute;
  left: 5px;
  top: 5px;
  color: #FFFFFF;
  font-size: 8px;
  font-weight: 400;
  line-height: 11px;
  background-color: #043D9B;
  border-radius: 120px;
  text-align: center;
  padding: 2px 6px 3px 7px;
}

.gallery-container .images-preview-container .images-preview .images-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

.gallery-container .images-preview-container .images-preview .images-loading img {
  display: block;
  width: 24px;
  height: 24px;
}

.gallery-container .images-preview-container .images-preview .images-loading span {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.price-type-container .price-type-content {
  margin-top: 20px;
  margin-bottom: 40px;
}

.tour-options-container {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-bottom: 20px;
}

.tour-options-container .header {
  padding: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.tour-options-container .content-item {
  padding: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.side-bar {
  padding: 20px 20px 100px 20px;
  background-color: #FFFFFF;
  top: 63px;
  overflow: hidden auto;
}

.side-bar::-webkit-scrollbar {
  width: 3px;
}

.side-bar::-webkit-scrollbar-track {
  background-color: #F2F2F2;
}

.side-bar::-webkit-scrollbar-thumb {
  background-color: #043D9B;
}

.side-bar .logo {
  display: none;
}

.side-bar nav label {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 20px;
}

.side-bar nav ul {
  overflow: hidden auto;
  margin-left: 0;
}

.side-bar nav ul li a {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.side-bar nav ul li a img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.side-bar nav ul li a.active {
  background: rgba(62, 63, 62, 0.2);
}

.side-bar nav ul li a .menu-bubble {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  background-color: #E14B5A;
  margin-top: -10px;
  margin-left: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 18px;
  height: 18px;
}

.side-bar nav ul li .sub-menu {
  display: block;
}

.side-bar nav ul li .sub-menu button {
  color: #3E3F3E !important;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 10px;
  left: 0;
}

.side-bar nav ul li .sub-menu button:after {
  top: 14.5px;
  right: 10px;
}

.side-bar nav ul li .sub-menu .dropdown-menu {
  top: 7px !important;
  float: none;
}

.dashboard .content-container .main-content {
  padding: 63px 30px 100px 30px;
  min-height: 100vh;
  height: 100%;
}

.global-loader {
  background: rgba(255, 255, 255, 0.8);
}

.dashboard-header {
  position: fixed;
  padding: 15px 30px 16px 30px;
  margin-left: -240px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.09);
  width: 100%;
  background-color: #FFFFFF;
  z-index: 9;
}

.dashboard-header .header {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.dashboard-header .header .page-title {
  display: none;
}

.dashboard-header .header .dashboard-logo img {
  max-width: 100%;
  height: auto;
}

.dashboard-header .header .dashboard-logo .mobil-website-lang-user {
  display: none;
  align-items: center;
}

.dashboard-header .header .dashboard-logo .mobil-website-lang-user .dashboard-dropdown-menu button {
  color: #3E3F3E;
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 0;
}

.dashboard-header .header .dashboard-logo .mobil-website-lang-user .dashboard-dropdown-menu button:after {
  display: none;
}

.dashboard-header .header .dashboard-logo .mobil-website-lang-user .dashboard-dropdown-menu button img {
  width: 24px;
  height: 24px;
  margin-right: 0;
}

.dashboard-header .header .dashboard-logo .mobil-website-lang-user .dashboard-dropdown-menu .dropdown-menu {
  border: none;
  padding: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.dashboard-header .header .dashboard-logo .mobil-website-lang-user .dashboard-dropdown-menu .dropdown-menu .dashboard-dropdown-menu-item ul li a {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 5px;
  width: 100%;
}

.dashboard-header .header .dashboard-logo .mobil-website-lang-user .item {
  margin-right: 10px;
}

.dashboard-header .header .dashboard-logo .mobil-website-lang-user .item:last-child {
  margin-right: 0;
}

.dashboard-header .header .dashboard-logo .mobil-website-lang-user .btn-secondary:not(:disabled):not(.disabled).active,
.dashboard-header .header .dashboard-logo .mobil-website-lang-user .btn-secondary:not(:disabled):not(.disabled):active,
.dashboard-header .header .dashboard-logo .mobil-website-lang-user .show > .btn-secondary.dropdown-toggle {
  color: #3E3F3E;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
}

.dashboard-header .header .dashboard-logo .mobil-website-lang-user .btn-secondary:not(:disabled):not(.disabled):active:focus,
.dashboard-header .header .dashboard-logo .mobil-website-lang-user .btn-secondary:not(:disabled):not(.disabled).active:focus,
.dashboard-header .header .dashboard-logo .mobil-website-lang-user .show > .btn-secondary.dropdown-toggle:focus {
  color: #3E3F3E;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
}

.dashboard-header .header .dashboard-menu ul li {
  display: inline-block;
  margin-right: 20px;
}

.dashboard-header .header .dashboard-menu ul li:last-child {
  margin-right: 0;
}

.dashboard-header .header .dashboard-menu ul li a {
  color: #0060FF;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.dashboard-header .header .dashboard-menu ul li a img {
  margin-right: 5px;
  vertical-align: middle;
}

.dashboard-header .header .dashboard-menu ul li .dashboard-dropdown-menu button {
  color: #3E3F3E;
}

.dashboard-header .header .dashboard-menu ul li .dashboard-dropdown-menu button:after {
  border: none;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  background-image: url("/images/dropdown-icon.svg");
  background-repeat: no-repeat;
  vertical-align: middle;
}

.dashboard-header .header .dashboard-menu ul li .dashboard-dropdown-menu button img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.dashboard-header .header .dashboard-menu ul li .dashboard-dropdown-menu .dropdown-menu .dashboard-dropdown-menu-item ul li a {
  color: #3E3F3E;
}

.dashboard-header .header .dashboard-menu ul li .lang-desktop {
  display: flex;
  align-items: center;
}

.dashboard-header .header .dashboard-menu ul li .lang-desktop img {
  margin-right: 5px;
}

.dashboard-header .header .dashboard-menu ul li .b2b-header-discount-button {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 11px 14px;
  border-radius: 6px;
  background-color: #06538B;
}

.sticky-header {
  background-color: #FFFFFF;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.09);
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.sticky-header .default-button {
  max-width: 120px;
}

.sticky-header .close-icon {
  margin-left: 30px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  cursor: pointer;
}

.side-bar-dif {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 20px;
  position: fixed;
  width: 100%;
  max-width: 255px;
}

.general-container {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 20px;
}

.progress-container {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
  margin: 0 -20px 20px -20px;
  padding-right: 20px;
  padding-left: 20px;
}

.progress-container label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.progress-container .progress {
  height: 15px;
  line-height: 0;
  font-size: 0;
  background-color: #F2F2F2;
  border-radius: 120px;
}

.progress-container .progress .progress-bar {
  background-color: #043D9B;
  border-radius: 120px;
}

.collapse-item {
  margin-bottom: 10px;
}

.collapse-item .collapse-button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding: 7px 10px 6px 10px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  text-align: left;
  border: none;
  width: 100%;
}

.collapse-item .collapse-button.not-collapsed {
  background-color: #3E3F3E;
  color: #FFFFFF;
  font-weight: 700;
}

.collapse-item .btn-secondary:not(:disabled):not(.disabled).active,
.collapse-item .btn-secondary:not(:disabled):not(.disabled):active,
.collapse-item .show > .btn-secondary.dropdown-toggle {
  background-color: #FFFFFF;
  color: #3E3F3E;
  border: 0;
}

.collapse-item .btn-secondary:not(:disabled):not(.disabled).active:focus,
.collapse-item .btn-secondary:not(:disabled):not(.disabled):active:focus,
.collapse-item .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.collapse-item .card {
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.collapse-item .card .card-body {
  padding: 20px 0 0 20px;
}

.collapse-item .card .card-body ul li {
  margin-bottom: 10px;
}

.collapse-item .card .card-body ul li:last-child {
  margin-bottom: 0;
}

.collapse-item .card .card-body ul li span {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.collapse-item .card .card-body ul li span.active {
  font-weight: 700;
}

.collapse-mobil {
  display: none;
}

.collapse-mobil button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 9px;
  border-radius: 4px;
  border: 1px solid #043D9B;
  background-color: transparent;
  width: 100%;
}

.collapse-mobil button:focus {
  box-shadow: none;
  outline: none;
  border-color: #043D9B;
  background-color: transparent;
}

.collapse-mobil button:active {
  box-shadow: none;
  outline: none;
  border-color: #043D9B;
  background-color: transparent;
}

.collapse-mobil button:hover {
  box-shadow: none;
  outline: none;
  border-color: #043D9B;
  background-color: transparent;
}

.collapse-mobil button label {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  cursor: pointer;
}

.collapse-mobil button img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.collapse-mobil .btn-secondary:not(:disabled):not(.disabled).active,
.collapse-mobil .btn-secondary:not(:disabled):not(.disabled):active,
.collapse-mobil .show > .btn-secondary.dropdown-toggle {
  box-shadow: none;
  background-color: transparent;
  color: #043D9B;
  border-color: #043D9B;
}

.collapse-mobil .btn-secondary:not(:disabled):not(.disabled).active:focus,
.collapse-mobil .btn-secondary:not(:disabled):not(.disabled):active:focus,
.collapse-mobil .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: none;
  background-color: transparent;
  color: #043D9B;
  border-color: #043D9B;
}

.collapse-mobil .card {
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.collapse-mobil .card .card-body {
  padding: 20px 0 0 20px;
}

.dashboard-box {
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-bottom: 30px;
}

.dashboard-box.bg-043D9B {
  background-color: #043D9B;
}

.dashboard-box.bg-043D9B label {
  color: #FFFFFF;
}

.dashboard-box.bg-043D9B p {
  color: #FFFFFF;
}

.dashboard-box.bg-F15E4F {
  background-color: #F15E4F;
}

.dashboard-box.bg-F15E4F label {
  color: #FFFFFF;
}

.dashboard-box.bg-F15E4F p {
  color: #FFFFFF;
}

.dashboard-box label {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 17px;
}

.dashboard-box p {
  color: #043D9B;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
}

.dashboard-box p.red {
  color: #E14B5A;
}

.chart-box {
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

.chart-box label {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 20px;
}

.tour-summary-content .tabs .nav {
  margin-bottom: 15px;
  border: none;
}

.tour-summary-content .tabs .nav .nav-item {
  margin-right: 20px;
}

.tour-summary-content .tabs .nav .nav-item:last-child {
  margin-right: 0;
}

.tour-summary-content .tabs .nav .nav-item .nav-link {
  color: #F2F2F2;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: none;
  background-color: rgba(83, 84, 97, 0.51);
  border-radius: 4px;
}

.tour-summary-content .tabs .nav .nav-item .nav-link.active {
  color: #FFFFFF;
  background-color: #043D9B;
}

.tour-summary-content .tabs .tab-content .tab-pane .chart-box {
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

.tour-summary-content .tabs .tab-content .tab-pane .chart-box label {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 20px;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container {
  padding: 20px 20px 20px 20px;
  background-color: #FFFFFF;
  border-radius: 6px;
  margin-bottom: 20px;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .title-desc {
  margin-bottom: 20px;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .title-desc label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 10px;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .title-desc p {
  color: #E14B5A;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 20px 0 20px;
  background-color: #F2F2F2;
  border-radius: 6px;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active {
  background-color: #043D9B;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .date {
  color: #FFFFFF;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .form-element-radio-tour-summary-container .custom-control .custom-control-label {
  background-color: rgba(255, 255, 255, 0.5);
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .form-element-radio-tour-summary-container .custom-control .custom-control-label:before {
  display: none;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .form-element-radio-tour-summary-container .custom-control .custom-control-label:after {
  display: none;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .form-element-radio-tour-summary-container .custom-control .custom-control-input:checked ~ .custom-control-label {
  color: #043D9B;
  background-color: #FFFFFF;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .form-element-radio-tour-summary-container .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container .date {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-right: 20px;
  width: 100%;
}

.tour-summary-content .tabs .tab-content .tab-pane .tour-summary-content-information {
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tour-summary-content-information .date-time-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 20px;
  background-color: #043D9B;
  border-radius: 6px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tour-summary-content-information .date-time-info label {
  color: #F2F2F2;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-right: 20px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tour-summary-content-information .date-time-info span {
  display: block;
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding: 11px 10px 10px 10px;
  background-color: #FFFFFF;
  border-radius: 6px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tour-summary-content-information .participant-quota {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.tour-summary-content .tabs .tab-content .tab-pane .tour-summary-content-information .participant-quota .participant {
  color: #F2F2F2;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  background-color: #0060FF;
  padding: 20px;
  border-radius: 6px;
  margin-right: 12px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tour-summary-content-information .participant-quota .quota {
  color: #F2F2F2;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  background-color: #E14B5A;
  padding: 20px;
  border-radius: 6px;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E8E8E8;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .title label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .title p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  text-align: right;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table {
  margin-bottom: 20px;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E8E8E8;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item label {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: text;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item label img {
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  margin-right: 10px;
  cursor: pointer;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item label.E3 {
  color: #3E3F3E;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item label.green {
  color: #63D031;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item label.red {
  color: #E14B5A;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select img {
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  margin-right: 10px;
  cursor: pointer;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select input {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 5px 10px 6px 10px;
  background-color: #F2F2F2;
  border-radius: 6px;
  border: 1px solid transparent;
  margin-right: 20px;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select input:focus {
  border-color: #043D9B;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select input:hover {
  border-color: #043D9B;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select select {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/select-icon-dif.svg");
  background-position: right 10px top 12px;
  background-repeat: no-repeat;
  background-color: #F2F2F2;
  padding: 6px 10px 5px 10px;
  transition: all 0.3s;
  margin-right: 20px;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select select:focus {
  border-color: #043D9B;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select select:hover {
  border-color: #043D9B;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select button {
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 6px 10px 5px 10px;
  background-color: #043D9B;
  border-radius: 6px;
  transition: 300ms;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-add {
  text-align: right;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-add button {
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 6px 10px 5px 10px;
  background-color: #3E3F3E;
  border-radius: 6px;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-report .title-print {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E8E8E8;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-report .title-print label {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-report .title-print button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 7px 18px 7px 18px;
  background-color: #F2F2F2;
  border-radius: 4px;
  text-align: center;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-report .income-expense-table {
  margin-bottom: 30px;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E8E8E8;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item:last-child {
  border-bottom: none;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item label {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: text;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item label.E3 {
  color: #3E3F3E;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item label.green {
  color: #63D031;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item label.red {
  color: #E14B5A;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item label.blue {
  color: #043D9B;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-graphic .title {
  margin-bottom: 20px;
}

.tour-summary-content .tabs .tab-content .tab-pane .income-expense-graphic .title label {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .title {
  margin-top: 15px;
  margin-bottom: 20px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .title label {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes .note {
  padding: 20px;
  background-color: #F2F2F2;
  border-radius: 6px;
  border: 1px solid transparent;
  margin-bottom: 10px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes .note:first-child {
  border-color: #043D9B;
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes .note:last-child {
  margin-bottom: 20px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes .note label {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 10px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes .note p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 10px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes .note span {
  color: rgba(83, 84, 97, 0.51);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes-add input {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 16px 20px 15px 20px;
  background-color: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-right: 0;
  border-radius: 6px 0px 0px 6px;
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes-add input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.51);
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes-add input::placeholder {
  color: rgba(83, 84, 97, 0.51);
}

.tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes-add button {
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding-top: 16px;
  padding-bottom: 15px;
  background-color: #3E3F3E;
  border-radius: 0 6px 6px 0;
  border: 1px solid transparent;
  border-left: 0;
  text-align: center;
}

.operation-box {
  display: inline-block;
  width: 100%;
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-bottom: 30px;
}

.operation-box label {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 17px;
}

.operation-box .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.operation-box .bottom p {
  color: #043D9B;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
}

.operation-box .bottom span {
  color: #0060FF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.operation-calender-info .operation-calender-info-item {
  display: flex;
  align-items: center;
  justify-items: flex-start;
}

.operation-calender-info .operation-calender-info-item .circle {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  margin-right: 10px;
}

.operation-calender-info .operation-calender-info-item .circle.blue {
  background-color: #043D9B;
}

.operation-calender-info .operation-calender-info-item .circle.gray {
  background-color: #3E3F3E;
}

.operation-calender-info .operation-calender-info-item .circle.light-grey {
  background-color: rgba(83, 84, 97, 0.51);
}

.operation-calender-info .operation-calender-info-item label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.domain-information-box {
  padding: 20px;
  background-color: #F2F2F2;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 10px;
}

.domain-information-box img {
  width: 24px;
  height: 24px;
  margin-bottom: 20px;
}

.domain-information-box p {
  color: #281C1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.reservation-tab-container .reservation-tab {
  padding: 20px;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.reservation-tab-container .reservation-tab .reservation-header {
  cursor: pointer;
}

.reservation-tab-container .reservation-tab .reservation-header .title-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reservation-tab-container .reservation-tab .reservation-header .title-icon .title {
  color: #3E3F3E;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.reservation-tab-container .reservation-tab .reservation-header .title-icon .title-desc .title {
  color: #3E3F3E;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 2px;
}

.reservation-tab-container .reservation-tab .reservation-header .title-icon .title-desc .desc {
  color: #3E3F3E;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.reservation-tab-container .reservation-tab .reservation-content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #F2F2F2;
}

.reservation-tab-container .reservation-tab .reservation-content .img-tour-content {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.reservation-tab-container .reservation-tab .reservation-content .img-tour-content .img {
  width: 100%;
  height: 120px;
  border-radius: 4px;
}

.reservation-tab-container .reservation-tab .reservation-content .img-tour-content .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 4px;
}

.reservation-tab-container .reservation-tab .reservation-content .img-tour-content .title {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}

.reservation-tab-container .reservation-tab .reservation-content .img-tour-content .date {
  color: #3E3F3E;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}

.reservation-tab-container .reservation-tab .reservation-content .img-tour-content .tour-detail-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #043D9B;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}

.reservation-tab-container .reservation-tab .reservation-content .img-tour-content .tour-detail-icon img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container {
  margin-bottom: 20px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item span {
  display: block;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date {
  width: 100%;
  margin-bottom: 0;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: 43px;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  background-color: #FFFFFF;
  text-align: left;
  outline: none;
  box-shadow: none;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date button:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/images/datepicker-icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 15px;
  top: 11.5px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date button:after {
  content: "";
  border: none;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/images/reservation-create-tab-icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  top: 16.5px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date button:focus {
  outline: none;
  box-shadow: none;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date button:hover {
  border: 1px solid #043D9B;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .btn-secondary:not(:disabled):not(.disabled).active,
.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .btn-secondary:not(:disabled):not(.disabled):active,
.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .show > .btn-secondary.dropdown-toggle {
  box-shadow: none;
  background-color: transparent;
  color: #3E3F3E;
  border: 1px solid rgba(83, 84, 97, 0.51);
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  min-width: 330px;
  padding: 0;
  margin-bottom: 10px;
  border: none;
  text-align: center;
  margin-top: 10px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container {
  width: 100%;
  border-radius: 4px;
  border: none;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-weekday {
  padding-bottom: 15px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day {
  margin-bottom: 10px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span {
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span:hover {
  border: 2px solid #043D9B;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 13px;
  margin-bottom: 0;
  cursor: pointer;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span p {
  display: block;
  color: #043D9B;
  font-size: 8px;
  font-weight: 700;
  line-height: 14.3px;
  margin-bottom: 0;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.active-dates {
  border: 2px solid #043D9B;
  border-radius: 4px;
  background-color: #043D9B;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.active-dates label {
  color: #ffffff;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.active-dates p {
  color: #ffffff;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.text-muted {
  border: 2px solid transparent;
  padding: 5px;
  border-radius: 4px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.text-muted label {
  color: #6c757d;
  cursor: text;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day span.text-muted p {
  color: #6c757d;
  cursor: text;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day.is-not-in-month {
  margin-bottom: 0;
  height: 0;
  min-height: 0;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day.is-not-in-month span {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .date .dropdown-menu .vc-container .vc-pane-container .vc-pane .vc-weeks .vc-day.is-not-in-month label {
  font-size: 0;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type {
  width: 100%;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: 43px;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  background-color: #FFFFFF;
  text-align: left;
  outline: none;
  box-shadow: none;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type button:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 14px;
  background-image: url("/images/price-type-icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  top: 13px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type button:after {
  content: "";
  border: none;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/images/reservation-create-tab-icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  top: 16.5px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type button:focus {
  outline: none;
  box-shadow: none;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type button:hover {
  border-color: #043D9B;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  min-width: 309px;
  padding: 15px;
  margin-bottom: 10px;
  border: none;
  margin-top: 10px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .title span {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 15px;
  display: block;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .price-type-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .price-type-item:last-child {
  margin-bottom: 0;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .price-type-item .type {
  width: 70%;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .price-type-item .type label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .price-type-item .type-count {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 30%;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .price-type-item .type-count span {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .price-type-item .type-count span img {
  width: 20px;
  height: 20px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .price-type-item .type-count input {
  color: #041728;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.04em;
  text-align: center;
  width: 100%;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .remove-room {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding-top: 6px;
  padding-bottom: 5px;
  background-color: rgba(83, 84, 97, 0.5098039216);
  border-radius: 4px;
  margin-bottom: 20px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .remove-room:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .add-room {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding-top: 6px;
  padding-bottom: 5px;
  background-color: #0060FF;
  border-radius: 4px;
  margin-bottom: 10px;
}

.reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item .price-type .dropdown-menu .add-room:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.reservation-tab-container .reservation-tab .reservation-content .options-container .border-box .title-18-3E {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}

.reservation-tab-container .reservation-tab .reservation-content .options-container .border-box .time span {
  display: block;
  color: #3E3F3E;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 5px;
}

.reservation-tab-container .reservation-tab .reservation-content .reservation-person-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.reservation-tab-container .reservation-tab .reservation-content .reservation-person-info .icon {
  margin-right: 8px;
}

.reservation-tab-container .reservation-tab .reservation-content .reservation-person-info .icon img {
  width: 22px;
  height: 22px;
}

.reservation-tab-container .reservation-tab .reservation-content .reservation-person-info .info {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.continue-button button {
  width: 100%;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  border-radius: 4px;
  background-color: #043D9B;
  padding: 15px 45px;
  border: 1px solid transparent;
  text-align: center;
  transition: 300ms;
}

.continue-button button:hover {
  color: #043D9B;
  background-color: #FFFFFF;
  border: 1px solid #043D9B;
}

.reservation-form-container.pl-30 {
  padding-left: 30px;
}

.reservation-form-container .form-title-label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.reservation-form-container .reservation-form-element {
  margin-bottom: 20px;
}

.reservation-form-container .reservation-form-element .default-input {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  background-color: #FFFFFF;
  padding: 11px 15px;
  transition: 300ms;
}

.reservation-form-container .reservation-form-element .default-input:hover {
  border: 1px solid #043D9B;
}

.reservation-form-container .reservation-form-element .default-select {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  background-color: #FFFFFF;
  padding: 11px 15px;
  transition: 300ms;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/reservation-create-new-icon.svg");
  background-position: right 15px top 15.55px;
  background-repeat: no-repeat;
}

.reservation-form-container .reservation-form-element .default-select:hover {
  border: 1px solid #043D9B;
}

.reservation-form-container .reservation-form-element .int-tel-input-wapper .int-tel-select {
  width: 40% !important;
}

.reservation-form-container .reservation-form-element .int-tel-input-wapper .int-tel-select input {
  color: #3E3F3E !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: normal !important;
  border-radius: 4px !important;
  border: 1px solid #E5E5E5 !important;
  background-color: #FFFFFF !important;
  padding: 11px 15px !important;
}

.reservation-form-container .reservation-form-element .int-tel-input-wapper .int-tel-input {
  width: 60% !important;
}

.reservation-form-container .reservation-form-element .int-tel-input-wapper .int-tel-input input {
  color: #3E3F3E !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: normal !important;
  border-radius: 4px !important;
  border: 1px solid #E5E5E5 !important;
  background-color: #FFFFFF !important;
  padding: 11px 15px !important;
}

.reservation-form-container .col-lg-6.pl-50 {
  padding-left: 50px;
}

.reservation-side-bar {
  padding: 20px;
  border-radius: 4px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.reservation-side-bar .reservation-side-bar-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.reservation-side-bar .reservation-side-bar-header .total-price {
  margin-bottom: 8px;
}

.reservation-side-bar .reservation-side-bar-header .total-price .total {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}

.reservation-side-bar .reservation-side-bar-header .total-price .price {
  color: #043D9B;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}

.reservation-side-bar .reservation-side-bar-header .price-detail-list .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.reservation-side-bar .reservation-side-bar-header .price-detail-list .list-item:last-child {
  margin-bottom: 0;
}

.reservation-side-bar .reservation-side-bar-header .price-detail-list .list-item span {
  color: #3E3F3E;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.reservation-side-bar .reservation-side-bar-header .price-detail-list .list-item p {
  color: #3E3F3E;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
}

.reservation-side-bar .reservation-payment-options .reservation-payment-options-title {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.reservation-side-bar .reservation-payment-options .payment-options {
  margin-bottom: 10px;
}

.reservation-side-bar .reservation-payment-options .payment-options:last-child {
  margin-bottom: 20px;
}

.reservation-side-bar .reservation-payment-options .payment-options .custom-control {
  min-height: auto;
}

.reservation-side-bar .reservation-payment-options .payment-options .custom-control-label {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: pointer;
  padding-left: 15px;
  transition: all 0.3s;
}

.reservation-side-bar .reservation-payment-options .payment-options .custom-control-label:before {
  top: 2px;
  width: 17px;
  height: 17px;
  border: 1px solid transparent;
  background-color: #C4C4C4;
}

.reservation-side-bar .reservation-payment-options .payment-options .custom-control-label:after {
  top: 2px;
  width: 17px;
  height: 17px;
  background: none;
}

.reservation-side-bar .reservation-payment-options .payment-options .custom-control-label:hover {
  border-color: #043D9B;
}

.reservation-side-bar .reservation-payment-options .payment-options .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #043D9B;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.reservation-side-bar .reservation-payment-options .payment-options .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.reservation-side-bar .reservation-payment-options .payment-options .custom-control-input:checked ~ .custom-control-label {
  border-color: #043D9B;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input-title {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px 0px 0px 4px;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
  background-color: #FFFFFF;
  transition: all 0.3s;
  padding: 11px 15px;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:focus {
  border-color: #043D9B;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:hover {
  border-color: #043D9B;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:-moz-read-only {
  background: rgba(83, 84, 97, 0.51);
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-right: 0;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:read-only {
  background: rgba(83, 84, 97, 0.51);
  border: 1px solid rgba(83, 84, 97, 0.51);
  border-right: 0;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:-moz-read-only::-moz-placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:read-only::-moz-placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:-moz-read-only::placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:read-only::-moz-placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:-moz-read-only::placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:read-only::-moz-placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:-moz-read-only::placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:read-only::-moz-placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:-moz-read-only::placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:read-only::-moz-placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:-moz-read-only::placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input input:read-only::placeholder {
  color: #3E3F3E;
}

.reservation-side-bar .reservation-currency-input-container .reservation-currency-input label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  padding: 11px 15px;
  border-radius: 0px 4px 4px 0px;
  border: 1px solid #E5E5E5;
  background-color: #E5E5E5;
}

.reservation-side-bar .continue-button button {
  padding: 15px;
}

.sub-agency-list .date-dropdown {
  margin-bottom: 0;
}

.agency-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  background-color: #3E3F3E;
  padding: 16px 25px 14px 30px;
}

.agency-alert .text {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

.agency-alert .text span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.agency-alert .button button {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  border-radius: 4px;
  padding: 11px 45px 10px 44px;
  background-color: rgba(83, 84, 97, 0.51);
}

.sub-agency-spent .tabs .nav {
  margin-bottom: 15px;
  border: none;
}

.sub-agency-spent .tabs .nav .nav-item {
  margin-right: 20px;
}

.sub-agency-spent .tabs .nav .nav-item:last-child {
  margin-right: 0;
}

.sub-agency-spent .tabs .nav .nav-item .nav-link {
  color: #F2F2F2;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: none;
  background-color: rgba(83, 84, 97, 0.51);
  border-radius: 4px;
}

.sub-agency-spent .tabs .nav .nav-item .nav-link.active {
  color: #FFFFFF;
  background-color: #043D9B;
}

.sub-agency-spent .tabs .tab-content .tab-pane .chart-box {
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .chart-box label {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 20px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container {
  padding: 20px 20px 20px 20px;
  background-color: #FFFFFF;
  border-radius: 6px;
  margin-bottom: 20px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .title-desc {
  margin-bottom: 20px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .title-desc label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 10px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .title-desc p {
  color: #E14B5A;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 20px 0 20px;
  background-color: #F2F2F2;
  border-radius: 6px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active {
  background-color: #043D9B;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .date {
  color: #FFFFFF;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .form-element-radio-tour-summary-container .custom-control .custom-control-label {
  background-color: rgba(255, 255, 255, 0.5);
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .form-element-radio-tour-summary-container .custom-control .custom-control-label:before {
  display: none;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .form-element-radio-tour-summary-container .custom-control .custom-control-label:after {
  display: none;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .form-element-radio-tour-summary-container .custom-control .custom-control-input:checked ~ .custom-control-label {
  color: #043D9B;
  background-color: #FFFFFF;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container.active .form-element-radio-tour-summary-container .error-message span {
  color: #E14B5A !important;
  margin-top: 5px;
  display: block;
  cursor: text;
  position: relative;
  right: unset;
  top: unset;
}

.sub-agency-spent .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container .date {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-right: 20px;
  width: 100%;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tour-summary-content-information {
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tour-summary-content-information .date-time-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 20px;
  background-color: #043D9B;
  border-radius: 6px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tour-summary-content-information .date-time-info label {
  color: #F2F2F2;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-right: 20px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tour-summary-content-information .date-time-info span {
  display: block;
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding: 11px 10px 10px 10px;
  background-color: #FFFFFF;
  border-radius: 6px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tour-summary-content-information .participant-quota {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tour-summary-content-information .participant-quota .participant {
  color: #F2F2F2;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  background-color: #0060FF;
  padding: 20px;
  border-radius: 6px;
  margin-right: 12px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tour-summary-content-information .participant-quota .quota {
  color: #F2F2F2;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  background-color: #E14B5A;
  padding: 20px;
  border-radius: 6px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E8E8E8;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .title label {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .title p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  text-align: right;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table {
  margin-bottom: 20px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E8E8E8;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item label {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: text;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item label img {
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  margin-right: 10px;
  cursor: pointer;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item label.E3 {
  color: #3E3F3E;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item label.green {
  color: #63D031;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item label.red {
  color: #E14B5A;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select img {
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  margin-right: 10px;
  cursor: pointer;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select input {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 5px 10px 6px 10px;
  background-color: #F2F2F2;
  border-radius: 6px;
  border: 1px solid transparent;
  margin-right: 20px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select input:focus {
  border-color: #043D9B;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select input:hover {
  border-color: #043D9B;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select select {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/select-icon-dif.svg");
  background-position: right 10px top 12px;
  background-repeat: no-repeat;
  background-color: #F2F2F2;
  padding: 6px 10px 5px 10px;
  transition: all 0.3s;
  margin-right: 20px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select select:focus {
  border-color: #043D9B;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select select:hover {
  border-color: #043D9B;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select button {
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 6px 10px 5px 10px;
  background-color: #043D9B;
  border-radius: 6px;
  transition: 300ms;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-add {
  text-align: right;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-add button {
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 6px 10px 5px 10px;
  background-color: #3E3F3E;
  border-radius: 6px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-report .title-print {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E8E8E8;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-report .title-print label {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-report .title-print button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 7px 18px 7px 18px;
  background-color: #F2F2F2;
  border-radius: 4px;
  text-align: center;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-report .income-expense-table {
  margin-bottom: 30px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E8E8E8;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item:last-child {
  border-bottom: none;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item label {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: text;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item label.E3 {
  color: #3E3F3E;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item label.green {
  color: #63D031;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item label.red {
  color: #E14B5A;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-report .income-expense-table .item label.blue {
  color: #043D9B;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-graphic .title {
  margin-bottom: 20px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .income-expense-graphic .title label {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .title {
  margin-top: 15px;
  margin-bottom: 20px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .title label {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .notes .note {
  padding: 20px;
  background-color: #F2F2F2;
  border-radius: 6px;
  border: 1px solid transparent;
  margin-bottom: 10px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .notes .note:first-child {
  border-color: #043D9B;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .notes .note:last-child {
  margin-bottom: 20px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .notes .note label {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 10px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .notes .note p {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 10px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .notes .note span {
  color: rgba(83, 84, 97, 0.51);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .notes-add input {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 16px 20px 15px 20px;
  background-color: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-right: 0;
  border-radius: 6px 0px 0px 6px;
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .notes-add input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.51);
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .notes-add input::placeholder {
  color: rgba(83, 84, 97, 0.51);
}

.sub-agency-spent .tabs .tab-content .tab-pane .tours-notes .notes-add button {
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding-top: 16px;
  padding-bottom: 15px;
  background-color: #3E3F3E;
  border-radius: 0 6px 6px 0;
  border: 1px solid transparent;
  border-left: 0;
  text-align: center;
}

.operation-vehicle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.operation-vehicle .btn-blue {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  background-color: #043D9B;
  padding: 7px 18px;
  text-align: center;
}

.operation-vehicle .btn-green {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  background-color: #8ED16F;
  padding: 7px 18px;
  text-align: center;
  margin-left: 13px;
  margin-right: 13px;
}

.m-dashboard-general-box {
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  margin-left: -10px;
}

.m-dashboard-general-box .box-item {
  padding: 10px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-right: 10px;
  flex-shrink: 0;
  max-width: 170px;
  margin: 10px;
}

.m-dashboard-general-box .box-item:last-child {
  margin-right: 0;
}

.m-dashboard-general-box .box-item label {
  cursor: text;
  display: block;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 10px;
}

.m-dashboard-general-box .box-item span {
  color: #043D9B;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.m-company-domain {
  margin-bottom: 10px;
}

.m-company-domain label {
  color: #3E3F3E;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.m-reservation-container .m-reservation-tab ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}

.m-reservation-container .m-reservation-tab ul li {
  margin-right: 10px;
  flex-shrink: 0;
  max-width: 200px;
}

.m-reservation-container .m-reservation-tab ul li:last-child {
  margin-right: 0;
}

.m-reservation-container .m-reservation-tab ul li a {
  display: inline-block;
  color: #F2F2F2;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 6px 10px 5px 10px;
  background-color: rgba(83, 84, 97, 0.5098039216);
  border-radius: 4px;
}

.m-reservation-container .m-reservation-tab ul li a.active {
  color: #FFFFFF;
  background-color: #043D9B;
}

.m-reservation-container .m-filter-attributes {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.m-reservation-container .m-filter-attributes .filter-attributes-item {
  margin-bottom: 0 !important;
  width: 50%;
  margin-right: 10px;
}

.m-reservation-container .m-filter-attributes .filter-attributes-item.input-icon img {
  display: none;
}

.m-reservation-container .m-filter-attributes .filter-attributes-item .filter-input {
  padding: 8px 10px;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  background-color: transparent;
}

.m-reservation-container .m-filter-attributes .filter-attributes-item .filter-input::-moz-placeholder {
  color: #A8A8A8;
}

.m-reservation-container .m-filter-attributes .filter-attributes-item .filter-input::placeholder {
  color: #A8A8A8;
}

.m-reservation-container .m-filter-attributes .filter-select {
  width: 25%;
  padding: 8px 10px;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 10px;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item:last-child {
  margin-bottom: 0;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .reservation-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .reservation-info .status-payment {
  display: flex;
  align-items: center;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .reservation-info .status-payment .status {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  padding: 2px 10px;
  border-radius: 4px;
  margin-right: 10px;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .reservation-info .status-payment .status.wait {
  background-color: #F79E1B;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .reservation-info .status-payment .status.confirm {
  background-color: #043D9B;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .reservation-info .status-payment .payment {
  color: rgba(83, 84, 97, 0.5098039216);
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .reservation-info .price {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  padding: 2px 10px;
  border-radius: 4px;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .reservation-info .price.red {
  background-color: #E14B5A;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .reservation-info .price.green {
  background-color: #8ED16F;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .leader-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .leader-info .item {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-right: 20px;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .leader-info .item:last-child {
  margin-right: 0;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .title {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .date-time-person {
  display: flex;
  align-items: center;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .date-time-person .item {
  margin-right: 20px;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .date-time-person .item:last-child {
  margin-right: 0;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .date-time-person .item img {
  margin-right: 10px;
  vertical-align: middle;
}

.m-reservation-container .m-reservation-item-container .m-reservation-item .date-time-person .item span {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.04em;
}

.m-reservation-container .m-reservation-pagination {
  margin-top: 20px;
}

.m-reservation-container .m-reservation-pagination .filter-pagination .pagination-result {
  margin-bottom: 20px;
}

.m-reservation-container .m-tours-item-container .m-tour-item {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 10px;
}

.m-reservation-container .m-tours-item-container .m-tour-item:last-child {
  margin-bottom: 0;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F2F2F2;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-header .item {
  display: flex;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-header .item .make-reservation {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  background-color: #043D9B;
  border-radius: 4px;
  padding: 2px 10px;
  margin-right: 10px;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-header .item .edit {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  background-color: rgba(83, 84, 97, 0.5098039216);
  border-radius: 4px;
  padding: 2px 10px;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-header .item .status-select {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  border-radius: 62px;
  padding-right: 33px;
  padding-left: 7px;
  padding-top: 1px;
  padding-bottom: 1px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/white-select-icon.svg");
  background-position: right 7px top 5px;
  background-repeat: no-repeat;
  width: 100%;
  min-width: 68px;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-header .item .status-select.active {
  background-color: #043D9B;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-header .item .status-select.passive {
  background-color: #EE7070;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-header .item .status-select.archive {
  background-color: rgba(83, 84, 97, 0.5098039216);
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .img-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .img-title .img {
  width: 79px;
  height: 44px;
  margin-right: 10px;
  border-radius: 4px;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .img-title .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 4px;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .img-title .title {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: -0.04em;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .show-homepage-featured-buttons {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F2F2F2;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .show-homepage-featured-buttons .switch span {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.04em;
  margin-right: 10px;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .show-homepage-featured-buttons .switch .vue-js-switch .v-switch-core {
  width: 36px !important;
  height: 20px !important;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .show-homepage-featured-buttons .switch .vue-js-switch .v-switch-core .v-switch-button {
  width: 16px !important;
  height: 16px !important;
  transform: translate3d(4px, 2.4px, 0px) !important;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .show-homepage-featured-buttons .switch .vue-js-switch.toggled .v-switch-core .v-switch-button {
  transform: translate3d(17px, 2.4px, 0px) !important;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .price-date-time-management {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F2F2F2;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .price-date-time-management .price {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.04em;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-content .price-date-time-management .date-time-management {
  color: #043D9B;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.04em;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-footer {
  display: flex;
  align-items: center;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-footer .item {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  background-color: rgba(83, 84, 97, 0.5098039216);
  border-radius: 4px;
  padding: 2px 10px;
  margin-right: 10px;
}

.m-reservation-container .m-tours-item-container .m-tour-item .tour-item-footer .item:last-child {
  margin-right: 0;
}

.m-mobile-print {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 7px;
}

.m-mobile-print .desc {
  color: #3E3F3E;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.m-mobile-print .print-button {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  background-color: rgba(83, 84, 97, 0.5098039216);
  border-radius: 4px;
  padding: 2px 16px;
}

.m-tour-summary {
  padding: 20px;
  background-color: #3E3F3E;
  border-radius: 6px;
  margin-bottom: 20px;
}

.m-tour-summary .title-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.m-tour-summary .title-person .title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.m-tour-summary .title-person .person span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-right: 0;
}

.m-tour-summary .title-person .person img {
  vertical-align: middle;
}

.m-tour-summary .date-time img {
  margin-right: 10px;
  vertical-align: middle;
}

.m-tour-summary .date-time span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.m-operation-reservation-item-container .operation-reservation-item {
  padding: 10px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  margin-bottom: 10px;
}

.m-operation-reservation-item-container .operation-reservation-item .item-header {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F2F2F2;
}

.m-operation-reservation-item-container .operation-reservation-item .item-header .status-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.m-operation-reservation-item-container .operation-reservation-item .item-header .status-amount .status {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  padding: 2px 14px 2px 13px;
  background-color: #043D9B;
  border-radius: 4px;
}

.m-operation-reservation-item-container .operation-reservation-item .item-header .status-amount .amount {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  background-color: #E14B5A;
  border-radius: 4px;
  padding: 2px 8px;
}

.m-operation-reservation-item-container .operation-reservation-item .item-header .customer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-operation-reservation-item-container .operation-reservation-item .item-header .customer-info .item {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.m-operation-reservation-item-container .operation-reservation-item .item-content {
  margin-bottom: 5px;
}

.m-operation-reservation-item-container .operation-reservation-item .item-content:last-child {
  margin-bottom: 0;
}

.m-operation-reservation-item-container .operation-reservation-item .item-content .hotel-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-operation-reservation-item-container .operation-reservation-item .item-content .hotel-person .hotel {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.04em;
}

.m-operation-reservation-item-container .operation-reservation-item .item-content .hotel-person .person img {
  margin-right: 10px;
  vertical-align: middle;
}

.m-operation-reservation-item-container .operation-reservation-item .item-content .hotel-person .person span {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.04em;
}

.m-operation-reservation-item-container .operation-reservation-item .item-content .item {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.04em;
  margin-bottom: 5px;
}

.m-operation-reservation-item-container .operation-reservation-item .item-content .item:last-child {
  margin-bottom: 0;
}

.m-operation-reservation-item-container .operation-reservation-item .item-content .item span {
  color: #043D9B;
}

.m-income-expense-container {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 10px;
}

.m-income-expense-container .title {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E8E8E8;
}

.m-income-expense-container .title-2 {
  color: #3E3F3E;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 20px;
}

.m-income-expense-container .income-expense-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E8E8E8;
}

.m-income-expense-container .income-expense-item:last-child {
  padding: 0;
  margin: 0;
  border-bottom: 0;
}

.m-income-expense-container .income-expense-item div {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: text;
}

.m-income-expense-container .income-expense-item div img {
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  margin-right: 10px;
  cursor: pointer;
}

.m-income-expense-container .income-expense-item div.E3 {
  color: #3E3F3E;
}

.m-income-expense-container .income-expense-item div.green {
  color: #63D031;
}

.m-income-expense-container .income-expense-item div.red {
  color: #E14B5A;
}

.m-income-expense-container .income-expense-item div.blue {
  color: #043D9B;
}

.m-income-expense-container .income-expense-item-add {
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  background-color: #043D9B;
  border-radius: 6px;
  padding-top: 6px;
  padding-bottom: 5px;
}

.m-inputs-select input {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  padding: 5px 10px 6px 10px;
  background-color: #F2F2F2;
  border-radius: 6px;
  border: 1px solid transparent;
}

.m-inputs-select input::-moz-placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.m-inputs-select input::placeholder {
  color: rgba(83, 84, 97, 0.5098039216);
}

.m-inputs-select input:focus {
  border-color: #043D9B;
}

.m-inputs-select input:hover {
  border-color: #043D9B;
}

.m-inputs-select select {
  width: 100%;
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/select-icon-dif.svg");
  background-position: right 10px top 12px;
  background-repeat: no-repeat;
  background-color: #F2F2F2;
  padding: 6px 10px 5px 10px;
  transition: all 0.3s;
}

.m-inputs-select select:focus {
  border-color: #043D9B;
}

.m-inputs-select select:hover {
  border-color: #043D9B;
}

.m-income-expense-button {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  background-color: #8ED16F;
  border-radius: 6px;
  padding: 11px 27px 10px 27px;
}

.m-coupon-item-container .m-coupon-item {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 10px;
}

.m-coupon-item-container .m-coupon-item .m-coupon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F2F2F2;
}

.m-coupon-item-container .m-coupon-item .m-coupon-header .edit-remove {
  display: flex;
  align-items: center;
}

.m-coupon-item-container .m-coupon-item .m-coupon-header .edit-remove .edit {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  padding: 2px 10px;
  background-color: rgba(83, 84, 97, 0.51);
  border-radius: 4px;
  margin-right: 10px;
}

.m-coupon-item-container .m-coupon-item .m-coupon-header .edit-remove .remove {
  color: rgba(83, 84, 97, 0.51);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  padding: 2px 10px;
  background-color: #F2F2F2;
  border-radius: 4px;
}

.m-coupon-item-container .m-coupon-item .m-coupon-header .status .status-select {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  border-radius: 62px;
  padding-right: 7px;
  padding-left: 7px;
  padding-top: 1px;
  padding-bottom: 1px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/white-select-icon.svg");
  background-position: right 7px top 5px;
  background-repeat: no-repeat;
  width: 100%;
  min-width: 68px;
}

.m-coupon-item-container .m-coupon-item .m-coupon-header .status .status-select.active {
  background-color: #043D9B;
}

.m-coupon-item-container .m-coupon-item .m-coupon-header .status .status-select.passive {
  background-color: #EE7070;
}

.m-coupon-item-container .m-coupon-item .m-coupon-header .status .status-select.archive {
  background-color: rgba(83, 84, 97, 0.5098039216);
}

.m-coupon-item-container .m-coupon-item .m-coupon-header .price {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  padding: 2px 10px;
  border-radius: 4px;
}

.m-coupon-item-container .m-coupon-item .m-coupon-header .price.red {
  background-color: #EE7070;
}

.m-coupon-item-container .m-coupon-item .m-coupon-header .price.green {
  background-color: #8ED16F;
}

.m-coupon-item-container .m-coupon-item .m-coupon-content {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F2F2F2;
}

.m-coupon-item-container .m-coupon-item .m-coupon-content .coupon-code {
  color: #043D9B;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: -0.04em;
}

.m-coupon-item-container .m-coupon-item .m-coupon-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.m-coupon-item-container .m-coupon-item .m-coupon-footer .coupon-type {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.04em;
}

.m-coupon-item-container .m-coupon-item .coupon-rules {
  color: #3E3F3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.04em;
}

@media only screen and (max-width: 992px) {
  .setup .setup-content .setup-side-bar {
    margin-right: 0;
    min-height: unset;
  }

  .setup .setup-content .setup-side-bar .menu {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .setup .setup-content .setup-side-bar .menu .steps-link {
    flex-shrink: 0;
    margin-right: 20px;
    max-width: 300px;
  }

  .setup .setup-content .content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .logo-cropper-container .logo-upload {
    margin-left: -15px;
  }

  .logo-cropper-container .logo-preview .logo {
    padding: 20px;
  }

  .logo-cropper-container .logo-preview .logo img {
    width: 100%;
  }

  .form-element-int-tel-input .int-tel-input-wapper .int-tel-select {
    width: 55% !important;
  }

  .mt-mobile-30 {
    margin-top: 30px;
  }

  .mb-mobile-20 {
    margin-bottom: 20px;
  }

  .mt-mobile-20 {
    margin-top: 20px;
  }

  .mb-mobile-10 {
    margin-bottom: 10px;
  }

  .mt-mobile-5 {
    margin-top: 5px;
  }

  .mb-mobile-5 {
    margin-bottom: 5px;
  }

  .mb-mobile-0 {
    margin-bottom: 0;
  }

  .mobil-d-none {
    display: none;
  }

  .mobil-d-show {
    display: block !important;
  }

  .dashboard-header {
    margin-left: 0;
  }

  .dashboard-header .header {
    flex-direction: column;
    justify-content: flex-start;
  }

  .dashboard-header .header .dashboard-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 34px;
  }

  .dashboard-header .header .dashboard-logo .mobil-website-lang-user {
    display: flex;
  }

  .dashboard-header .header .dashboard-menu {
    display: none;
  }

  .grid-reverse {
    flex-wrap: wrap-reverse;
  }

  .m-text-center {
    text-align: center;
  }

  .side-bar-dif {
    position: relative;
    max-width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .location-container .location-item .edit-trash-icon {
    text-align: center;
    margin-top: 20px;
  }

  .gallery-container .gallery-upload {
    margin-bottom: 30px;
  }

  .tour-options-add-alert {
    flex-wrap: wrap;
  }

  .tour-options-add-alert .title-desc {
    margin-bottom: 20px;
  }

  .tour-options-add-alert .button {
    width: 100%;
  }

  .tour-options-add-alert .button button {
    width: 100%;
  }

  .error-message span {
    margin-bottom: 10px;
  }

  .collapse-mobil {
    display: block;
  }

  .sticky-header .default-button {
    display: none;
  }

  .fixed-button {
    display: block;
  }

  .mobil-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .filter-title label {
    flex-shrink: 0;
    max-width: 100%;
  }

  .filter-pagination {
    padding: 0;
  }

  .filter-pagination .pagination-result {
    text-align: center;
    margin-bottom: 10px;
  }

  .filter-pagination .pagination {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 20px;
  }

  .tabs-content .nav-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex-wrap: unset;
  }

  .tabs-content .nav-tabs .nav-item {
    margin-right: 20px;
    flex-shrink: 0;
    max-width: 200px;
  }

  .rc-border-table .rc-border-table-title .row {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex-wrap: unset;
  }

  .rc-border-table .rc-border-table-item .row {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex-wrap: unset;
  }

  .rc-request-alert {
    flex-wrap: wrap;
  }

  .rc-request-alert .content {
    margin-bottom: 20px;
  }

  .rc-request-alert .buttons {
    justify-content: center;
    width: 100%;
  }

  .mobile-flex-wrap {
    flex-wrap: wrap;
  }

  .tour-summary-content .tabs .nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .tour-summary-content .tabs .nav .nav-item {
    flex-shrink: 0;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .date-time-choose-container .tour-summary-time-date-container .date {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .tour-summary-content-information .participant-quota {
    justify-content: space-between;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .tour-summary-content-information .participant-quota .participant {
    margin-right: 0;
    margin-bottom: 0;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select {
    width: 100%;
    flex-direction: column;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select img {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select input {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .income-expense .income-expense-table .item .inputs-select select {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .income-expense-add {
    margin-bottom: 20px;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes-add input {
    border-right: 1px solid #F2F2F2;
    margin-bottom: 10px;
    border-radius: 6px;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .tours-notes .notes-add button {
    border-left: 1px solid #F2F2F2;
    border-radius: 6px;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .income-expense-graphic {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 10px;
    margin-top: 20px;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .income-expense-graphic .title {
    color: #3E3F3E;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
  }

  .form-element-radio-tour-summary-container .custom-control {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .form-element-radio-tour-summary-container .custom-control:last-child {
    margin-bottom: 0;
  }

  .form-element-date-radio-tour-summary-container .custom-control {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .setup-alert {
    flex-direction: column;
  }

  .setup-alert .icon-text {
    margin-bottom: 20px;
  }

  .setup-alert .button {
    width: 100%;
  }

  .setup-alert .button button {
    width: 100%;
  }

  .dashboard .content-container .main-content {
    padding-top: 62px;
  }

  .date-dropdown .dropdown-menu {
    min-width: unset;
  }

  .date-dropdown .dropdown-menu .datepicker-item {
    width: 100%;
  }

  .date-dropdown .dropdown-menu .footer .close-button {
    margin-bottom: 20px;
  }

  .dashboard .content-container .main-content {
    background-color: #FFFFFF;
  }

  .operation-modal .modal-dialog {
    margin: 0 20px 0 20px;
  }

  .danger-info-modal .modal-dialog {
    margin: 0 20px 0 20px;
  }

  .view-modal {
    background-color: #FFFFFF;
  }

  .view-modal .modal-dialog {
    background-color: #FFFFFF;
  }

  .view-modal .modal-dialog .modal-content {
    background-color: #FFFFFF;
  }

  .tour-summary-content .tabs .tab-content .tab-pane .tour-summary-content-information {
    padding: 0;
    box-shadow: none;
  }

  section {
    padding-top: 20px;
  }

  .translate-alert-container .translate-alert {
    flex-wrap: wrap;
  }

  .translate-alert-container .translate-alert .img-desc {
    margin-bottom: 20px;
  }

  .translate-alert-container .translate-alert .button {
    width: 100%;
  }

  .translate-alert-container .translate-info {
    flex-wrap: wrap;
  }

  .translate-alert-container .translate-info .desc {
    margin-bottom: 20px;
  }

  .translate-alert-container .translate-info .translate-increase {
    width: 100%;
  }

  .breadcrumb .breadcrumb-item {
    max-width: none;
  }

  .subscription-alert-container {
    flex-direction: column;
  }

  .subscription-alert-container .icon-text {
    margin-bottom: 20px;
  }

  .subscription-packages-title-info .info .item {
    flex-direction: column;
    text-align: center;
  }

  .subscription-packages-title-info .info .item .icon {
    margin-bottom: 10px;
  }

  .subscription-settings-alert-container {
    flex-direction: column;
  }

  .subscription-settings-alert-container .icon-text {
    margin-bottom: 20px;
  }

  .subscription-settings-alert-container .buttons {
    width: 100%;
  }

  .subscription-settings-alert-container .buttons button {
    width: 100%;
  }

  .box-layout-not-shadow-padding.shadow01 {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  }

  .subscription-package {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }

  .subscription-payment-container {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  }

  .subscription-payment-success-fail {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  }

  .mobil-column-reverse {
    flex-direction: column-reverse;
  }

  .d-hide-mobile {
    display: none;
  }

  .d-show-mobile {
    display: block;
  }

  .mobil-flex-direction {
    flex-direction: column;
  }

  .reservation-side-bar {
    margin-bottom: 30px;
  }

  .reservation-tab-container .reservation-tab .reservation-content .img-tour-content .img {
    margin-bottom: 20px;
  }

  .reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container {
    margin-bottom: 0;
  }

  .reservation-tab-container .reservation-tab .reservation-content .date-person-dropdown-container .item {
    margin-bottom: 20px;
  }

  .theguidefy-banner a .img {
    width: 100%;
    height: auto;
  }

  .theguidefy-banner a .img img {
    width: 100%;
    height: auto;
  }

  .mobile-d-flex {
    flex-direction: column;
  }

  .tour-grouped-pax-box .item-container {
    margin-bottom: 20px;
  }

  .tour-grouped-pax-box .item-container.diff .item {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .steps-modal .modal-dialog {
    max-width: 920px;
  }
}

@media only screen and (max-width: 767px) {
  .fc .fc-toolbar {
    flex-wrap: wrap;
    justify-content: center !important;
  }

  .fc .fc-toolbar-title {
    margin-bottom: 20px !important;
  }
}

