@import url(https://fonts.googleapis.com/css?family=Assistant:400,600,700);
@import url(https://fonts.googleapis.com/css?family=Assistant:400,600,700);
/*---===<<< COLORS >>>===---*/
/*---===<<< Calendar styles >>>===---*/
/*---===<<< TYPOGOGRAPHY & Styles >>>===---*/
/*---===<<< MEDIA QUERIES BREAKPOINTS >>>===---*/
.confirm-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 24px;
  text-align: center;
}
.confirm-modal__message {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin: 0 0 28px;
}
.confirm-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.confirm-modal__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
}
.confirm-modal__loading .loading-dots {
  margin-bottom: 16px;
}
.confirm-modal__loading-text {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}
.confirm-modal__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.confirm-modal__result svg {
  margin-bottom: 16px;
}
.confirm-modal__result .confirm-modal__actions {
  width: 100%;
}
.confirm-modal__result-icon {
  margin-bottom: 20px;
  animation: confirm-modal-success-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.confirm-modal__result-icon .ag-success-check {
  animation: confirm-modal-success-draw 0.5s 0.3s ease forwards;
}
@keyframes confirm-modal-success-pop {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes confirm-modal-success-draw {
  from {
    stroke-dashoffset: 44;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.confirm-modal__result-msg {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 24px;
  line-height: 1.5;
}
.confirm-modal__result-msg--success {
  color: #111827;
}
.confirm-modal__result-msg--error {
  font-size: 15px;
  font-weight: 400;
  color: #dc2626;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
}
.aaf-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.aaf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aaf-field .form-field-select,
.aaf-field .text-input,
.aaf-field input {
  width: 100%;
}
.aaf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  .aaf-row {
    grid-template-columns: 1fr;
  }
}
.aaf-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin: 0;
}
.aaf-currency {
  font-weight: 400;
  color: #6b7280;
  margin-left: 4px;
}
.aaf-warning {
  font-size: 12px;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 8px 12px;
  margin: 2px 0 0;
}
.aaf-breakdown {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}
.aaf-breakdown__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}
.aaf-breakdown__row:last-child {
  border-bottom: none;
}
.aaf-breakdown__row--total {
  font-weight: 700;
  font-size: 15px;
  color: #111827;
  background: #f1f5f9;
}
.aaf-invoice-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

/*---===<<< COLORS >>>===---*/
/*---===<<< Calendar styles >>>===---*/
/*---===<<< TYPOGOGRAPHY & Styles >>>===---*/
/*---===<<< MEDIA QUERIES BREAKPOINTS >>>===---*/
.host-agent-chat-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  border-left: 1px solid #ccc;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.host-agent-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ac2431;
  color: #fff;
  flex-shrink: 0;
}
.host-agent-chat-title {
  font-size: 16px;
  font-weight: 600;
}
.host-agent-chat-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.host-agent-chat-btn-new {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.host-agent-chat-btn-new:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
}
.host-agent-chat-btn-new:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.host-agent-chat-btn-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.8;
}
.host-agent-chat-btn-close:hover {
  opacity: 1;
}
.host-agent-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f8f9fa;
}
.host-agent-chat-empty {
  color: #999;
  text-align: center;
  margin-top: 40px;
  font-style: italic;
}
.host-agent-chat-bubble {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 90%;
  word-wrap: break-word;
}
.host-agent-chat-bubble.host-bubble {
  background: #fcf1f2;
  border-bottom-right-radius: 0;
  margin-left: auto;
}
.host-agent-chat-bubble.agent-bubble {
  background: #fff;
  border: 1px solid #ddd;
  border-top-left-radius: 0;
  margin-right: auto;
}
.host-agent-chat-role {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.host-agent-chat-content p {
  margin: 0 0 6px;
}
.host-agent-chat-content p:last-child {
  margin-bottom: 0;
}
.host-agent-chat-content ul,
.host-agent-chat-content ol {
  padding-left: 20px;
  margin: 4px 0;
}
.host-agent-chat-content code {
  background: rgba(0, 0, 0, 0.06);
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 13px;
}
.host-agent-chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}
.host-agent-chat-typing .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ac2431;
  animation: hostAgentTypingAnim 1.8s infinite ease-in-out;
}
.host-agent-chat-typing .dot:nth-child(1) {
  animation-delay: 200ms;
}
.host-agent-chat-typing .dot:nth-child(2) {
  animation-delay: 300ms;
}
.host-agent-chat-typing .dot:nth-child(3) {
  animation-delay: 400ms;
}
@keyframes hostAgentTypingAnim {
  0% {
    transform: translateY(0);
    background-color: #ac2431;
  }
  28% {
    transform: translateY(-7px);
    background-color: #dc5a66;
  }
  44% {
    transform: translateY(0);
    background-color: #ea99a1;
  }
}
.host-agent-chat-error {
  color: #d9534f;
  background: #fdf2f2;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 13px;
}
.host-agent-chat-input-area {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid #ddd;
  background: #fff;
  flex-shrink: 0;
}
.host-agent-chat-textarea {
  flex: 1;
  resize: vertical;
  min-height: 44px;
  max-height: 120px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.host-agent-chat-textarea:focus {
  border-color: #ac2431;
  box-shadow: 0 0 0 2px rgba(172, 36, 49, 0.15);
}
.host-agent-chat-textarea:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}
.host-agent-chat-btn-send {
  flex-shrink: 0;
  background: #ac2431;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.host-agent-chat-btn-send:hover:not(:disabled) {
  background: #821b25;
}
.host-agent-chat-btn-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.host-agent-chat-guide-btn {
  display: block;
  margin-top: 10px;
  background: #ac2431;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.host-agent-chat-guide-btn:hover {
  background: #821b25;
}
.host-agent-chat-embedded {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-size: 14px;
}
.host-agent-chat-embedded .host-agent-chat-messages {
  flex: 1;
  overflow-y: auto;
}
.host-agent-chat-embedded .host-agent-chat-input-area {
  flex-shrink: 0;
}
.host-agent-chat-embedded-toolbar {
  display: flex;
  justify-content: flex-end;
  padding: 6px 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.host-agent-chat-btn-new-embedded {
  background: transparent;
  border: 1px solid #ccc;
  color: #555;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.host-agent-chat-btn-new-embedded:hover:not(:disabled) {
  background: #f0f0f0;
  border-color: #aaa;
}
.host-agent-chat-btn-new-embedded:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/*---===<<< COLORS >>>===---*/
/*---===<<< Calendar styles >>>===---*/
/*---===<<< TYPOGOGRAPHY & Styles >>>===---*/
/*---===<<< MEDIA QUERIES BREAKPOINTS >>>===---*/
#user-guide-help-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #337ab7 !important;
  font-size: 22px;
  outline: none !important;
}
#user-guide-help-btn:hover,
#user-guide-help-btn:focus,
#user-guide-help-btn:active {
  color: #285f8f !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.user-guide-bubble {
  /* Native Bootstrap 5 parameters */
  --bs-popover-bg: #e7f0f8 !important;
  --bs-popover-border-color: #e7f0f8 !important;
  --bs-popover-arrow-width: 40px !important;
  --bs-popover-arrow-height: 20px !important;
  /* Custom box styling */
  background-color: #e7f0f8 !important;
  border: none !important;
  border-radius: 0.4em !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.user-guide-bubble .popover-header {
  background-color: transparent !important;
  border-bottom: 1px solid #bfd8ed;
  color: #2d6da3;
}
.user-guide-bubble .popover-body {
  background-color: transparent !important;
  color: #2d6da3;
}
.user-guide-bubble button.close {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: #2d6da3;
  opacity: 0.7;
  padding: 0;
}
.user-guide-bubble button.close:hover {
  opacity: 1;
}
/* Hide outer border arrow to make it perfectly flat and borderless */
.user-guide-bubble > .popover-arrow::before {
  display: none !important;
}
/* When dragging: hide the arrow and show a connector line instead */
.user-guide-bubble--dragging > .popover-arrow {
  display: none !important;
}
/* Force the ::after arrow coloring correctly */
.user-guide-bubble[data-popper-placement^="top"] > .popover-arrow::after,
.user-guide-bubble.bs-popover-top > .popover-arrow::after {
  border-top-color: #e7f0f8 !important;
}
.user-guide-bubble[data-popper-placement^="bottom"] > .popover-arrow::after,
.user-guide-bubble.bs-popover-bottom > .popover-arrow::after {
  border-bottom-color: #e7f0f8 !important;
}
.user-guide-bubble[data-popper-placement^="left"] > .popover-arrow::after,
.user-guide-bubble[data-popper-placement^="start"] > .popover-arrow::after,
.user-guide-bubble.bs-popover-left > .popover-arrow::after,
.user-guide-bubble.bs-popover-start > .popover-arrow::after {
  border-left-color: #e7f0f8 !important;
}
.user-guide-bubble[data-popper-placement^="right"] > .popover-arrow::after,
.user-guide-bubble[data-popper-placement^="end"] > .popover-arrow::after,
.user-guide-bubble.bs-popover-right > .popover-arrow::after,
.user-guide-bubble.bs-popover-end > .popover-arrow::after {
  border-right-color: #e7f0f8 !important;
}
.user-guide-connector-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1059;
}
.user-guide-sidebar-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  flex-shrink: 0;
}
.user-guide-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.user-guide-tab-btn:hover {
  color: #ac2431;
}
.user-guide-tab-btn.active {
  color: #ac2431;
  border-bottom-color: #ac2431;
}
.user-guide-sidebar-content {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.user-guide-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.user-guide-filter-wrapper {
  padding: 0;
  margin-bottom: 8px;
}
.user-guide-drag-handle {
  cursor: move;
  user-select: none;
}
.user-guide-close-btn {
  margin-left: 10px;
  font-size: 1.2rem;
  line-height: 1;
}
.user-guide-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  border-left: 1px solid #ddd;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
@media (max-width: 480px) {
  .user-guide-sidebar {
    width: 100vw;
    border-left: none;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .user-guide-sidebar {
    width: 85vw;
  }
}
.user-guide-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ac2431;
  color: #fff;
  flex-shrink: 0;
}
.user-guide-sidebar-title {
  font-size: 15px;
  font-weight: 600;
}
.user-guide-sidebar-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
}
.user-guide-sidebar-close:hover {
  opacity: 1;
}
.user-guide-sidebar-divider {
  margin: 4px 0;
  border-color: #eee;
}
.user-guide-sidebar-section-title {
  font-weight: 600;
  color: #555;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.user-guide-sidebar-guide-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.user-guide-sidebar-guide-item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 7px 10px;
  cursor: pointer;
  color: #333;
}
.user-guide-sidebar-guide-item:hover {
  background: #f5f5f5;
  border-color: #ccc;
}
.user-guide-sidebar-empty {
  color: #999;
  font-size: 13px;
  margin: 0;
}
.user-guide-sidebar-stop-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid #d9534f;
  border-radius: 4px;
  padding: 7px 10px;
  cursor: pointer;
  color: #d9534f;
}
.user-guide-sidebar-stop-btn:hover {
  background: #fdf2f2;
}

@font-face {
  font-family: 'redawning';
  src: url(/5c360847d366a4ec2948.eot?f1eqeq);
  src: url(/5c360847d366a4ec2948.eot?f1eqeq#iefix) format('embedded-opentype'), url(/d1666e868ab711e519c7.ttf?f1eqeq) format('truetype'), url(/883078b6e7e5c29af2cc.woff?f1eqeq) format('woff'), url(/4867443d1b6ece91ccd6.svg?f1eqeq#redawning) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'redawning' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-reports:before {
  content: "\e952";
}
.icon-house:before {
  content: "\e939";
}
.icon-logout:before {
  content: "\e93f";
}
.icon-cleaning:before {
  content: "\e905";
}
.icon-ai-chat:before {
  content: "\e907";
}
.icon-check-mark:before {
  content: "\e900";
}
.icon-delete:before {
  content: "\e901";
}
.icon-drag-locator:before {
  content: "\e902";
}
.icon-x:before {
  content: "\e903";
}
.icon-selection-tip:before {
  content: "\e904";
}
.icon-wrong:before {
  content: "\e906";
}
.icon-previous:before {
  content: "\e908";
}
.icon-next:before {
  content: "\e909";
}
.icon-plus:before {
  content: "\e90a";
}
.icon-hrs:before {
  content: "\e90b";
}
.icon-act-fast:before {
  content: "\e90c";
}
.icon-adding-pic:before {
  content: "\e90d";
}
.icon-block:before {
  content: "\e90e";
}
.icon-green-check:before {
  content: "\e90f";
}
.icon-left-arrow:before {
  content: "\e910";
}
.icon-list-style:before {
  content: "\e911";
}
.icon-right-arrow:before {
  content: "\e912";
}
.icon-map-locator:before {
  content: "\e913";
}
.icon-ice-skating:before {
  content: "\e914";
}
.icon-boating:before {
  content: "\e915";
}
.icon-cycling:before {
  content: "\e916";
}
.icon-hiking:before {
  content: "\e917";
}
.icon-mountain-biking:before {
  content: "\e918";
}
.icon-swimming:before {
  content: "\e919";
}
.icon-horse-riding:before {
  content: "\e91a";
}
.icon-fishing:before {
  content: "\e91b";
}
.icon-family-friendly:before {
  content: "\e91c";
}
.icon-hair-dryer:before {
  content: "\e91d";
}
.icon-iron:before {
  content: "\e91e";
}
.icon-coffee-machine:before {
  content: "\e91f";
}
.icon-toaster:before {
  content: "\e920";
}
.icon-parking:before {
  content: "\e922";
}
.icon-microwave:before {
  content: "\e923";
}
.icon-fire-place:before {
  content: "\e924";
}
.icon-no-smoking:before {
  content: "\e925";
}
.icon-internet:before {
  content: "\e926";
}
.icon-tv:before {
  content: "\e927";
}
.icon-washing-machine:before {
  content: "\e928";
}
.icon-dish-washer:before {
  content: "\e929";
}
.icon-pets:before {
  content: "\e92a";
}
.icon-heart:before {
  content: "\e92b";
}
.icon-share:before {
  content: "\e92c";
}
.icon-note:before {
  content: "\e92d";
}
.icon-ski-area:before {
  content: "\e92e";
}
.icon-lake:before {
  content: "\e92f";
}
.icon-golf:before {
  content: "\e930";
}
.icon-kitchen:before {
  content: "\e931";
}
.icon-sleeps:before {
  content: "\e932";
}
.icon-bathrooms:before {
  content: "\e933";
}
.icon-bedrooms:before {
  content: "\e934";
}
.icon-sqft:before {
  content: "\e935";
}
.icon-checkout:before {
  content: "\e936";
}
.icon-checkin:before {
  content: "\e937";
}
.icon-down-arrow:before {
  content: "\e938";
}
.icon-filter:before {
  content: "\e93a";
}
.icon-edit:before {
  content: "\e93b";
}
.icon-calendar:before {
  content: "\e93c";
}
.icon-magnifying-glass:before {
  content: "\e93d";
}
.icon-settings:before {
  content: "\e93e";
}
.icon-properties:before {
  content: "\e940";
}
.icon-reservations:before {
  content: "\e941";
}
.icon-website-icon:before {
  content: "\e942";
}
.icon-hot-tub:before {
  content: "\e943";
}
.icon-facebook:before {
  content: "\e944";
}
.icon-instagram:before {
  content: "\e945";
}
.icon-twitter:before {
  content: "\e946";
}
.icon-youtube:before {
  content: "\e947";
}
.icon-search:before {
  content: "\e948";
}
.icon-hamburger:before {
  content: "\e949";
}
.icon-up-arrow:before {
  content: "\e94a";
}
.icon-call:before {
  content: "\e94b";
}
.icon-location2:before {
  content: "\e94c";
}
.icon-collections:before {
  content: "\e94d";
}
.icon-house-icon:before {
  content: "\e94e";
}
.icon-users:before {
  content: "\e94f";
}
.icon-organization:before {
  content: "\e950";
}
.icon-promotions:before {
  content: "\e951";
}
.icon-wifi:before {
  content: "\e959";
}
.icon-digits:before {
  content: "\e95a";
}
.icon-character:before {
  content: "\e95b";
}
.icon-eye-close:before {
  content: "\e95c";
}
.icon-eye-open:before {
  content: "\e95d";
}
.icon-locked:before {
  content: "\e95e";
}
.icon-unlock:before {
  content: "\e95f";
}
.icon-caps-lock-on:before {
  content: "\e960";
}
.icon-light-bulb:before {
  content: "\e961";
}
.icon-sun:before {
  content: "\e962";
}
.icon-camera:before {
  content: "\e963";
}
.icon-fees:before {
  content: "\e964";
}
.icon-image-collection:before {
  content: "\e965";
}
.icon-checklist:before {
  content: "\e966";
}
.icon-warning:before {
  content: "\e967";
}
.icon-question-mark:before {
  content: "\e968";
}
.icon-sparkle-hand:before {
  content: "\e969";
}
.icon-exclamation-mark:before {
  content: "\e96a";
}
.icon-documents:before {
  content: "\e96b";
}
.icon-spreadsheet:before {
  content: "\e96c";
}
.icon-money:before {
  content: "\e96d";
}
.icon-chart:before {
  content: "\e96e";
}
.icon-credit-card:before {
  content: "\e96f";
}
.icon-tax:before {
  content: "\e970";
}
.icon-info:before {
  content: "\e971";
}
.icon-percent:before {
  content: "\e972";
}
.icon-faq:before {
  content: "\e973";
}
.icon-time:before {
  content: "\e974";
}
.icon-dashboard:before {
  content: "\e975";
}
.icon-validation:before {
  content: "\e976";
}
.icon-cico:before {
  content: "\e977";
}
.icon-week:before {
  content: "\e978";
}
.icon-star-full:before {
  content: "\e979";
}
.icon-rotate-left:before {
  content: "\e97a";
}
.icon-rotate-right:before {
  content: "\e97b";
}
.icon-move:before {
  content: "\e97c";
}
.icon-copy:before {
  content: "\e97d";
}
.icon-folder-download:before {
  content: "\e97e";
}
.icon-reply:before {
  content: "\e97f";
}
.icon-icon-add:before {
  content: "\e980";
}
.icon-attachment:before {
  content: "\e981";
}
.icon-thermostat:before {
  content: "\e982";
}
.icon-battery:before {
  content: "\e983";
}
.icon-exclamation-triangle-fill:before {
  content: "\e984";
}
.icon-open-new-tab:before {
  content: "\e985";
}
.icon-circle:before {
  content: "\e986";
}
.icon-zoom-in:before {
  content: "\e987";
}
.icon-zoom-out:before {
  content: "\e988";
}
.icon-triangle:before {
  content: "\e989";
}
.icon-down-triangle:before {
  content: "\e98a";
}
.icon-critical:before {
  content: "\e98b";
}
.icon-lock-unknown:before {
  content: "\e98c";
}
.icon-wifi-unknown:before {
  content: "\e98d";
}
.icon-question-mark-unknown:before {
  content: "\e98e";
}
.icon-chevrons-up:before {
  content: "\e98f";
}
.icon-chevrons-down:before {
  content: "\e990";
}
.icon-first-page:before {
  content: "\e991";
}
.icon-thumbs_up:before {
  content: "\e992";
}
.icon-head-set:before {
  content: "\e993";
}
.icon-calendar-checkmark:before {
  content: "\e994";
}
.icon-calendar-cross:before {
  content: "\e995";
}
.icon-cell-phone:before {
  content: "\e996";
}
.icon-email:before {
  content: "\e997";
}
.icon-profile:before {
  content: "\e998";
}
.icon-pie-chart:before {
  content: "\e99a";
}
.icon-link:before {
  content: "\e9cb";
}
.icon-cross:before {
  content: "\ea0f";
}
.icon-play:before {
  content: "\ea15";
}
.icon-arrow-left:before {
  content: "\ea38";
}
.icon-crop:before {
  content: "\ea57";
}
/*---=======<<< GLOBAL >>>======---*/
/*---===<<< COLORS >>>===---*/
/*---===<<< Calendar styles >>>===---*/
/*---===<<< TYPOGOGRAPHY & Styles >>>===---*/
/*---===<<< MEDIA QUERIES BREAKPOINTS >>>===---*/
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
}
html {
  font-size: 14px;
}
body {
  font-family: "Assistant", Arial, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Assistant", Arial, sans-serif;
  text-rendering: optimizelegibility;
}
.big-title {
  color: #337ab7;
  font-size: 42px;
  line-height: 52px;
}
.spinning {
  animation: spin 1s infinite linear;
  -webkit-animation: spin 1s infinite linear;
  display: inline-block;
}
.glyphicon.spinning::before {
  animation: spin 1s infinite linear;
  -webkit-animation: spin 1s infinite linear;
  position: absolute;
  left: 5px;
  bottom: 0;
}
@keyframes spin {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: scale(1) rotate(0deg);
  }
  to {
    -webkit-transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes spin2 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Error Messages */
.error-msg {
  color: #ac2431;
  font-size: 14px;
  overflow: hidden;
  width: 100%;
  font-weight: bold;
}
.no-border {
  border: none;
}
.title-case {
  text-transform: capitalize;
}
.page-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}
.page-subtitle {
  font-size: 14px;
  color: #9ca3af;
  margin: 0 0 24px;
}
.download-csv-btn {
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  background: #fff;
  color: #333;
  transition: background 0.15s, border-color 0.15s;
}
.download-csv-btn:hover:not(:disabled) {
  background: #f0f0f0;
  border-color: #bbb;
}
.download-csv-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.header-container {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 3px 0px 8px 0px rgba(0, 0, 0, 0.2);
}
.header-container .header-inner {
  padding: 20px 25px 0;
}
.header-container .logo-wrap {
  width: 220px;
  float: left;
  margin-bottom: 10px;
}
.header-container .logo-wrap img {
  max-width: 100%;
}
.header-container .page-title {
  float: left;
  border-left: 1px solid #dedede;
  margin: 40px 0 0 15px;
  padding-left: 15px;
  padding-bottom: 10px;
}
.header-container .page-title h1 {
  font-size: 26px;
  font-weight: 300;
  margin-top: 7px;
  margin-bottom: 5px;
  color: #337ab7;
}
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.side-nav a {
  text-decoration: none !important;
}
.side-nav a:hover,
.side-nav a:focus {
  text-decoration: none !important;
}
.side-nav .loader-div {
  z-index: 9999;
}
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 1000;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}
.top-header .top-header-logo {
  display: flex;
  align-items: center;
}
.top-header .top-header-logo img {
  max-height: 30px;
  width: auto;
}
.th-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.th-dropdown-wrap {
  position: relative;
}
.th-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background 0.15s, color 0.15s;
}
.th-icon-btn:hover {
  background: #f3f4f6;
  color: #111;
}
.th-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #ac2431;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.th-avatar-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  border-radius: 50%;
}
.th-avatar-btn:hover .th-avatar {
  opacity: 0.85;
}
.th-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ac2431;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}
.th-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1100;
  overflow: hidden;
  animation: th-fade-in 0.15s ease;
}
.th-dropdown--messages {
  width: 320px;
}
.th-dropdown--profile {
  width: 220px;
}
.th-dropdown--notifications {
  width: 300px;
  display: none;
}
.th-dropdown--notifications.th-dropdown--open {
  display: block;
}
@keyframes th-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.th-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  border-bottom: 1px solid #f3f4f6;
}
.th-dropdown-badge {
  background: #ac2431;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}
.th-dropdown-footer {
  padding: 10px 16px;
  border-top: 1px solid #f3f4f6;
  text-align: center;
}
.th-dropdown-footer a {
  font-size: 12px;
  font-weight: 600;
  color: #ac2431;
  text-decoration: none;
}
.th-dropdown-footer a:hover {
  text-decoration: underline;
}
.nc-empty {
  padding: 20px 16px;
  font-size: 13px;
  color: #9ca3af;
  text-align: center;
}
.nc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px;
  transition: background 0.12s;
}
.nc-item:hover {
  background: #f9fafb;
}
.nc-item--unread {
  background: #f0f7ff;
}
.nc-item--unread:hover {
  background: #e0effe;
}
.nc-item__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 4px;
  background: #d1d5db;
}
.nc-item__body {
  flex: 1;
  min-width: 0;
}
.nc-item__title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nc-item__message {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
  margin-top: 1px;
}
.nc-item__time {
  flex-shrink: 0;
  font-size: 11px;
  color: #9ca3af;
  white-space: nowrap;
  margin-top: 2px;
}
.nc-item--info .nc-item__dot {
  background: #3b82f6;
}
.nc-item--success .nc-item__dot {
  background: #10b981;
}
.nc-item--warning .nc-item__dot {
  background: #f59e0b;
}
.nc-item--error .nc-item__dot {
  background: #ef4444;
}
.nc-item--clickable {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.nc-item--clickable:hover {
  background: #f9fafb;
}
.nc-body {
  padding: 4px 0;
}
.th-msg-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.th-msg-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.12s;
}
.th-msg-item:hover {
  background: #f9fafb;
}
.th-msg-item--unread {
  background: #fdf2f3;
}
.th-msg-item--unread:hover {
  background: #fae8ea;
}
.th-msg-avatar {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #85bee8;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.th-msg-body {
  flex: 1;
  min-width: 0;
}
.th-msg-from {
  font-size: 13px;
  font-weight: 600;
  color: #111;
}
.th-msg-preview {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.th-msg-time {
  font-size: 11px;
  color: #9ca3af;
  flex-shrink: 0;
  margin-top: 2px;
}
.th-profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid #f3f4f6;
}
.th-profile-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ac2431;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.th-profile-name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}
.th-profile-email {
  font-size: 11px;
  color: #6b7280;
}
.th-profile-menu {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}
.th-profile-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  color: #374151;
  text-decoration: none;
  transition: background 0.12s;
}
.th-profile-menu li a:hover {
  background: #f3f4f6;
  color: #111;
}
.th-profile-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 4px 0;
}
.sidebar {
  min-width: 65px;
  max-width: 65px;
  position: fixed;
  top: 50px;
  left: 0;
  z-index: 950;
  height: calc(100vh - 50px);
  transition: all 0.3s;
}
.sidebar.expand {
  min-width: 225px;
  max-width: 225px;
  background: #fff;
}
.sidebar.expand .nav-link-container {
  overflow-y: auto;
}
.sidebar .sidebar-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.sidebar .sidebar-wrap .org-wrap {
  padding: 0px 15px;
}
.sidebar .sidebar-wrap .org-wrap .user-profile {
  margin: 5px auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ac2431;
  transition: background 0.15s, transform 0.15s;
}
.sidebar .sidebar-wrap .org-wrap .user-profile svg {
  color: #fff;
}
.sidebar .sidebar-wrap .org-wrap .user-profile:hover {
  background: #8a1d27;
  transform: scale(1.08);
}
.sidebar .sidebar-wrap ul {
  overflow: hidden;
}
.sidebar .sidebar-wrap ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  margin: 2px 8px;
  border-radius: 8px;
  color: #999;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-right: none;
  background: transparent;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  overflow: hidden;
}
.sidebar .sidebar-wrap ul li a.active {
  color: #ac2431;
  background-color: rgba(172, 36, 49, 0.1);
  font-weight: 600;
}
.sidebar .sidebar-wrap ul li a:hover:not(.active) {
  color: #111;
  background-color: #f3f4f6;
}
.sidebar .sidebar-wrap ul li a i,
.sidebar .sidebar-wrap ul li a svg {
  font-size: 18px;
  min-width: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}
.sidebar .sidebar-wrap ul li a span:not(.pull-right):not(.user-abbrev):not(.nav-emoji) {
  font-size: 14px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar .sidebar-wrap ul li a .pull-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sidebar .sidebar-wrap ul li a sup {
  margin-left: auto;
  flex-shrink: 0;
  background: #ac2431;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 6px;
  line-height: 1.4;
}
.sidebar:not(.expand) .sidebar .sidebar-wrap ul li a {
  justify-content: center;
  gap: 0;
  margin: 2px 6px;
  padding: 9px 0;
}
.sidebar:not(.expand) .sidebar .sidebar-wrap ul li a span:not(.nav-emoji):not(.user-abbrev) {
  display: none;
}
.sidebar:not(.expand) .sidebar .sidebar-wrap ul li a .pull-right {
  display: none;
}
.sidebar:not(.expand) .sidebar .sidebar-wrap ul li a sup {
  display: none;
}
.sidebar .sidebar-wrap .user-profile {
  top: -2px;
  margin: 0;
  width: 34px;
  height: 34px;
  background: #ac2431;
  border: none;
  padding: 0;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.sidebar .sidebar-wrap .user-profile svg {
  color: #fff;
}
.sidebar .sidebar-wrap .user-profile:hover {
  background: #8a1d27;
  transform: scale(1.08);
}
.sidebar .sidebar-wrap .user-profile i {
  font-size: 13px;
  color: #fff;
}
.org-wrap {
  position: relative;
}
.org-wrap .org-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: #f8f9fa;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.org-wrap .org-card:hover {
  background: #f0f0f0;
  border-color: #ac2431;
}
.org-wrap .org-card:hover .org-switch-icon {
  color: #ac2431;
}
.org-wrap .org-card .org-card-content {
  overflow: hidden;
  flex: 1;
}
.org-wrap .org-card .org-label {
  margin: 0 0 2px 0;
  font-size: 11px;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.05em;
  padding: 0;
  line-height: normal;
}
.org-wrap .org-card .org-name {
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: capitalize;
  padding: 0;
  background: transparent;
}
.org-wrap .org-card .org-switch-icon {
  color: #aaa;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.sidebar .sidebar-wrap .navbar-account-container li .user-abbrev {
  position: relative;
  font-family: "Assistant", sans-serif;
  text-align: center;
  margin: 0px;
  left: 26px;
  top: -3px;
  min-width: 18px;
}
.sidebar .sidebar-wrap .navbar-account-container li i,
.sidebar .sidebar-wrap .navbar-account-container li svg {
  top: 2px;
  left: 25px;
  font-size: 18px;
  position: relative;
}
.sidebar .sidebar-wrap .navbar-account-container li span {
  font-size: 14px;
  margin-left: 40px;
  margin-top: 5px;
}
.nav-link-container {
  flex: 1;
  overflow-x: hidden;
  overflow-y: hidden;
}
.nav-link-container::-webkit-scrollbar {
  width: 6px;
}
.nav-link-container::-webkit-scrollbar-track {
  background: transparent;
}
.nav-link-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.nav-link-container::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
.sidebar-footer {
  flex-shrink: 0;
  padding: 4px 0;
}
.sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  margin: 2px 8px;
  border-radius: 8px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  overflow: hidden;
}
.sidebar-footer a:hover,
.sidebar-footer a:focus {
  color: #111;
  background-color: #f3f4f6;
}
.sidebar-footer a .nav-emoji {
  font-size: 18px;
  min-width: 20px;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
  position: static;
  top: auto;
  vertical-align: unset;
}
.sidebar-footer a span:last-child {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-section-header {
  padding: 16px 18px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #bbb;
  text-transform: uppercase;
  list-style: none;
  user-select: none;
  cursor: default;
  white-space: nowrap;
  overflow: hidden;
}
.sidebar:not(.expand) .nav-section-header {
  max-width: none;
  opacity: 1;
  padding: 8px 12px 4px;
  overflow: visible;
  font-size: 0;
  letter-spacing: 0;
}
.sidebar:not(.expand) .nav-section-header::after {
  content: "";
  display: block;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  margin: 0 auto;
  width: 32px;
}
.sidebar.expand .nav-section-header {
  max-width: 300px;
  opacity: 1;
  transition: opacity 0.15s ease 0.3s;
}
.sidebar.expand .nav-section-header::after {
  display: none;
}
.sidenav-tooltip {
  position: fixed;
  transform: translateY(-50%);
  background: rgba(30, 30, 30, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.sidebar:not(.expand) .sidebar-footer a {
  justify-content: center;
  gap: 0;
  margin: 2px 6px;
  padding: 9px 0;
}
.sidebar:not(.expand) .sidebar-footer a span:last-child {
  display: none;
}
.sidebar.expand .sidebar-footer a span:last-child {
  display: block;
}
.nav-emoji {
  font-size: 18px;
  min-width: 24px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
  margin-left: 0 !important;
  position: relative;
  top: -1px;
}
.sidebar-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #888;
  border-radius: 6px;
  flex-shrink: 0;
}
.sidebar-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #ac2431;
}
.sub-option li a {
  padding-left: 30px !important;
  border-right: none !important;
  border-left: none !important;
  font-size: 14px !important;
  color: #888 !important;
}
.sub-option li a.active {
  color: #ac2431 !important;
  background-color: rgba(172, 36, 49, 0.1) !important;
  font-weight: 600 !important;
}
.sub-option li a:hover:not(.active) {
  color: #111 !important;
  background-color: #f3f4f6 !important;
  font-weight: 500;
}
.navbar-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.navbar-collapse.open {
  max-height: 500px;
}
@media screen and (max-width: 767px) {
  .sidebar {
    min-width: 0;
    max-width: 0;
  }
  .sidebar.expand {
    min-width: 250px;
    max-width: 250px;
  }
}
.sidebar-backdrop {
  display: none;
}
@media screen and (max-width: 767px) {
  .sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 940;
    animation: fadeIn 0.3s ease;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-title h1 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 480px;
  line-height: 1.2;
}
.icon-Properties_icon {
  font-size: 20px;
  margin-left: 5px;
}
.breadcrumb {
  margin: 0 0 6px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  background: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #888;
  font-weight: 500;
}
.breadcrumb li + li::before {
  content: "›";
  margin: 0 6px;
  color: #d0d0d0;
  font-size: 15px;
  font-weight: 300;
}
.breadcrumb li.breadcrumb-org a {
  display: inline-flex;
  align-items: center;
  background: #fdf0f1;
  color: #ac2431;
  border: 1px solid rgba(172, 36, 49, 0.2);
  border-radius: 20px;
  padding: 1px 10px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.breadcrumb li.breadcrumb-org a:hover {
  background: rgba(172, 36, 49, 0.1);
  border-color: rgba(172, 36, 49, 0.4);
}
.breadcrumb li.last-item {
  font-weight: 600;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.breadcrumb li a {
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb li a:hover {
  color: #ac2431;
}
.title-bar__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.title-container-wrap {
  position: sticky;
  top: 50px;
  z-index: 500;
  background: #fff;
  padding: 10px;
}
.title-bar {
  display: flex;
  align-items: center;
}
.title-bar .title-bar__heading {
  flex: 1;
  min-width: 0;
}
.title-bar .title-bar__heading.has-back-btn {
  padding-left: 25px;
  position: relative;
}
.title-bar .title-bar__actions {
  flex-shrink: 0;
}
.property-status {
  position: relative;
  left: 5px;
  font-weight: 600;
  color: #666;
}
.property-status.property-status-reason {
  padding-left: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.property-status .active-status-reason-input {
  margin-top: -2px;
}
.property-status .live-btn {
  margin-left: 10px;
  cursor: pointer;
  font-size: 12px;
  width: 80px;
  text-align: left;
  position: relative;
}
.property-status .live-btn.not-live {
  border-color: #ac2431;
  color: #ac2431;
}
.property-status .live-btn.disabled {
  border-color: #999;
  color: #999;
  cursor: default;
}
.property-status .live-btn.not-allowed {
  cursor: not-allowed;
}
.property-status .live-btn .icon {
  position: absolute;
  top: 11px;
  right: 6px;
  font-size: 8px;
}
@media screen and (max-width: 767px) {
  .title-bar {
    flex-wrap: wrap;
  }
  .title-bar .title-bar__heading {
    width: 100%;
  }
  .title-bar .title-bar__actions {
    width: 100%;
    flex-wrap: wrap;
  }
}
.title-bar__actions--inline {
  flex-wrap: nowrap;
  gap: 12px;
}
.title-bar__actions--inline .fe-search-wrap {
  width: 220px;
  flex-shrink: 1;
}
.title-bar__actions--inline .fe-checkbox {
  white-space: nowrap;
  flex-shrink: 0;
}
.title-bar__actions--inline .primary-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .title-bar__actions--inline {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .title-bar__actions--inline .fe-search-wrap {
    width: 100%;
    order: -1;
  }
}
.page-container.form-wrap {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  background-image: url(/886e238c921180b47935.jpg);
  background-size: cover;
  background-position: right center;
  background-attachment: fixed;
  padding: 0 5%;
}
.page-container.form-wrap h1 {
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  color: #dedede;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.page-container.form-wrap .form-horizontal {
  max-width: 450px;
  padding: 40px 30px;
  background-color: rgba(255, 255, 255, 0.94);
  margin: 20px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.page-container.form-wrap .form-horizontal .login-welcome {
  font-size: 18px;
  margin-bottom: 40px;
}
.page-container.form-wrap .form-horizontal .form-control {
  border-radius: 0;
  border-width: 0 0 1px 0;
  border-color: #d5d5d5;
  background: transparent;
  box-shadow: none;
  padding: 5px;
  font-size: 15px;
  color: #333;
}
.page-container.form-wrap .form-horizontal .form-control:-webkit-autofill {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}
.page-container.form-wrap .form-horizontal .form-control::-webkit-input-placeholder,
.page-container.form-wrap .form-horizontal .form-control:-ms-input-placeholder,
.page-container.form-wrap .form-horizontal .form-control::-moz-placeholder {
  color: #333;
}
.page-container.form-wrap .form-horizontal .login-utils {
  margin-top: 25px;
}
.page-container.form-wrap .form-horizontal .login-utils #rememberMe {
  display: none;
}
.page-container.form-wrap .form-horizontal .login-utils #rememberMe:checked + label::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 8px;
  border-style: solid;
  border-color: #333;
  border-width: 0 2px 2px 0;
  top: 5px;
  left: 5px;
  transform: rotate(45deg);
}
.page-container.form-wrap .form-horizontal .login-utils #rememberMe + label {
  font-size: 15px;
  font-weight: normal;
  padding-left: 20px;
  position: relative;
}
.page-container.form-wrap .form-horizontal .login-utils #rememberMe + label::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #333;
  background-color: #fff;
  left: 0;
  top: 3px;
}
.page-container.form-wrap .form-horizontal .login-utils .forgot-password {
  font-size: 15px;
  color: #333;
  text-decoration: underline;
}
.page-container.form-wrap .form-horizontal button.btn-default {
  background-color: #ac2431;
  color: #fff;
  padding: 7px 25px;
  width: 100%;
  font-size: 18px;
  border-color: transparent;
  outline: none !important;
}
.show-caps-lock-on-container {
  position: absolute;
  top: 4px;
  right: 45px;
  font-size: 20px;
}
.show-password-container {
  position: absolute;
  top: 5px;
  right: 25px;
  font-size: 20px;
}
.page-container.form-wrap .form-horizontal .show-password-padding.form-control {
  padding-right: 50px;
}
.password-rule {
  opacity: 0.4;
}
@-webkit-keyframes autofill {
  to {
    background: transparent;
  }
}
@media screen and (max-width: 767px) {
  .page-container.form-wrap .form-horizontal {
    margin-left: auto;
    margin-right: auto;
  }
}
.page-container {
  display: flex;
  align-items: stretch;
  padding-left: 60px;
  padding-top: 50px;
  transition: padding-left 0.3s ease;
  position: relative;
  z-index: 0;
}
body.sidebar-open .page-container {
  padding-left: 225px;
}
.page-container main {
  width: 100%;
  overflow-x: clip;
}
.page-container .main-container .dropdown-item.active,
.page-container .main-container .dropdown-item:active {
  background-color: #e2e2e2;
}
.page-container .main-container .active > .page-link {
  background-color: #337ab7;
  border-color: #337ab7;
}
.page-container .main-container .clickable-text {
  color: #337ab7;
}
.page-container .main-container .clickable-text:visited {
  color: #337ab7;
}
.page-container .main-container .clickable-text:hover {
  text-decoration: underline;
}
.page-container .main-container a {
  color: #337ab7;
}
.page-container .main-container a.primary-btn,
.page-container .main-container a.btn {
  height: fit-content;
  color: white;
}
.page-container .main-container a.primary-btn:visited,
.page-container .main-container a.btn:visited {
  color: white;
}
.page-container .main-container a.primary-btn:hover,
.page-container .main-container a.btn:hover {
  opacity: 0.85;
  text-decoration: none;
  border: 1px solid #e2e2e2;
}
.page-container .main-container a.primary-btn.white-btn {
  color: #555;
}
.page-container .main-container .nav-tabs {
  position: relative;
  z-index: 800;
  border: none;
  margin-left: 5px;
}
.page-container .main-container .nav-tabs .nav-item {
  display: inline-flex;
  flex: 1;
}
.page-container .main-container .nav-tabs .nav-item button {
  font-size: 0.9em;
  color: #555;
  font-weight: bold;
  border: 1px solid #e2e2e2;
  border-bottom: none;
  margin-right: 6px;
  width: 100%;
}
.page-container .main-container .nav-tabs .nav-item button:hover {
  background-color: #ffffff;
  color: #555;
}
.page-container .main-container .nav-tabs .nav-item button:focus {
  outline: 0;
}
.page-container .main-container .nav-tabs .nav-item button.active {
  background-color: #ffffff;
  color: #555;
}
.page-container .main-container .accordion .accordion-item .accordion-button {
  font-weight: bold;
  color: #333;
  font-size: 0.85em;
}
.page-container .main-container .accordion .accordion-item .accordion-button .panel-subtext {
  font-size: 0.85em;
  display: inline-block;
  margin: 0 0 0 10px;
  color: #000;
  opacity: 0.5;
}
.page-container .main-container .accordion .accordion-item .accordion-button:focus,
.page-container .main-container .accordion .accordion-item .accordion-button:not(.collapsed) {
  border: none;
  box-shadow: none;
}
.page-container .main-container .mobile-col {
  padding: 0px 0px 15px;
}
.page-container .main-container .big-top-margin {
  margin-top: 50px;
}
.page-container .main-container .center-content {
  text-align: center;
}
.page-container .main-container.home-page .logo-wrap {
  width: 200px;
  margin: 70px auto;
  min-width: 200px;
}
.page-container .main-container.home-page .logo-wrap img {
  max-width: 100%;
}
.page-container .main-container.home-page .quick-links {
  margin: 150px auto 0;
  max-width: 350px;
  width: 100%;
  text-align: center;
}
.page-container .main-container.home-page .quick-links ul {
  margin: 0 auto;
  list-style: none;
  color: #85bee8;
  font-size: 20px;
  text-align: center;
}
.page-container .main-container.home-page .quick-links ul li {
  margin-bottom: 15px;
}
.page-container .main-container.home-page .quick-links ul li a {
  background-color: #337ab7;
  padding: 12px;
  color: #fff;
  display: inline-block;
  width: 100%;
  transition: 0.3s all;
}
.page-container .main-container.home-page .quick-links ul li a:hover {
  background-color: #ac2431;
  color: #fff;
}
.page-container .main-container .homepage-hero {
  border-bottom: 2px solid #dedede;
  display: block;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  margin: -25px -25px 30px;
}
.page-container .main-container .homepage-hero img {
  width: 100%;
}
.page-container .main-container .homepage-hero .headline {
  color: #fff;
  font-size: 50px;
  font-weight: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.page-container .main-container .page-content {
  padding: 10px 50px;
}
.page-container .main-container .list-content {
  max-width: 100%;
  margin-bottom: 80px;
}
.page-container .main-container .list-content h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  color: #ac2431;
}
.page-container .main-container .list-content .img-wrap {
  margin-top: 30px;
  height: 105px;
}
.page-container .api-container .btn-api {
  margin-bottom: 10px;
}
.page-container .api-container .form-group {
  max-width: 300px;
}
.page-container .api-container code {
  display: block;
  word-break: break-word;
}
.flex-gap-5 {
  display: flex;
  gap: 5px;
}
.line-through {
  text-decoration: line-through solid 1.5px;
  cursor: auto;
}
.custom-hr {
  display: block;
  border-bottom: 1px solid #dedede;
}
.divider {
  display: block;
  height: 1px;
  background-color: #dedede;
  border: none;
  margin: 30px 0;
}
h1 {
  font-size: 22px;
  color: #000;
  font-weight: 600;
}
h2 {
  font-size: 18px;
  color: #2d2d2d;
  font-weight: 600;
}
.clear {
  clear: both;
}
.clear-fix {
  overflow: auto;
}
.small-text {
  font-size: 12px;
}
.md-text {
  font-size: 14px;
}
.lg-text {
  font-size: 16px;
}
.grey-font {
  color: #999;
}
.grey-background {
  background-color: #f5f5f5;
}
.white-background {
  background-color: #fff;
}
.button-margin {
  margin-top: 12px;
}
.row-padding {
  padding: 0 2%;
}
.no-padding {
  padding: 0;
}
.no-padding-left {
  padding-left: 0;
}
.right-padding {
  padding-right: 15px;
}
.left-padding-5 {
  padding-left: 5px;
}
.left-padding {
  padding-left: 15px;
}
.right-margin {
  margin-right: 15px;
}
.top-margin {
  margin-top: 15px;
}
.top-margin-5 {
  margin-top: 5px;
}
.top-margin-10 {
  margin-top: 10px;
}
.top-margin-20 {
  margin-top: 20px;
}
.top-margin-30 {
  margin-top: 30px;
}
.bottom-margin-5 {
  margin-bottom: 5px;
}
.bottom-margin-10 {
  margin-bottom: 10px;
}
.bottom-margin {
  margin-bottom: 15px;
}
.bottom-margin-20 {
  margin-bottom: 20px;
}
.bottom-margin-30 {
  margin-bottom: 30px;
}
.mt-0 {
  margin-top: 0;
}
.mt-5 {
  margin-top: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-30 {
  margin-bottom: 30px;
}
.ml-0 {
  margin-left: 0;
}
.ml-5 {
  margin-left: 5px;
}
.ml-10 {
  margin-left: 10px;
}
.ml-15 {
  margin-left: 15px;
}
.mr-0 {
  margin-right: 0;
}
.mr-5 {
  margin-right: 5px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-15 {
  margin-right: 15px;
}
.pt-0 {
  padding-top: 0;
}
.pt-5 {
  padding-top: 5px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-15 {
  padding-top: 15px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-24 {
  padding-top: 24px;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-5 {
  padding-bottom: 5px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-24 {
  padding-bottom: 24px;
}
.pl-0 {
  padding-left: 0;
}
.pl-5 {
  padding-left: 5px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-15 {
  padding-left: 15px;
}
.pr-0 {
  padding-right: 0;
}
.pr-5 {
  padding-right: 5px;
}
.pr-10 {
  padding-right: 10px;
}
.pr-15 {
  padding-right: 15px;
}
.gap-5 {
  gap: 5px;
}
.gap-8 {
  gap: 8px;
}
.gap-10 {
  gap: 10px;
}
.gap-12 {
  gap: 12px;
}
.gap-16 {
  gap: 16px;
}
.gap-20 {
  gap: 20px;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.display-block {
  display: block;
}
.display-inline-block {
  display: inline-block;
}
.display-flex {
  display: flex;
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.flex-space-between {
  display: flex;
  justify-content: space-between;
}
.flex-align-right {
  display: flex;
  justify-content: flex-end;
}
.flex-align-center {
  display: flex;
  justify-content: center;
}
.flex-align-items-center {
  display: flex;
  align-items: center;
}
.flex-align-items-baseline {
  display: flex;
  align-items: baseline;
}
.flex-col {
  flex: 1;
}
.flex-wrap-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.text-center {
  text-align: center;
}
.pull-none {
  float: none;
}
.text-area {
  height: 100px;
  resize: none;
}
.left-margin {
  margin-left: 15px;
}
.right-margin-5 {
  margin-right: 5px;
}
.center-text {
  text-align: center;
}
.left-text {
  text-align: left;
}
.pointer {
  cursor: pointer;
}
.white-space-normal {
  white-space: normal;
}
.position-relative {
  position: relative;
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 24px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  border: 1.5px dashed #d1d5db;
  border-radius: 10px;
  background: #fafafa;
  margin: 16px 0;
}
.empty-state .empty-state__icon {
  font-size: 36px;
  color: #d1d5db;
  line-height: 1;
}
.empty-state .empty-state__sub {
  font-size: 12px;
  color: #9ca3af;
}
.currency {
  margin-right: 2px;
}
.text-wrap-auto {
  text-wrap: auto;
}
.badges {
  padding: 5px 0;
  border-radius: 45px;
  margin-top: 15px;
  margin-right: 15px;
  font-weight: 500;
}
.overlay-disbled-btn {
  padding: 1px;
}
.plain-text-btn {
  background-color: Transparent;
  background-repeat: no-repeat;
  border: none;
  overflow: hidden;
  outline: none;
}
.capitalize {
  text-transform: capitalize;
}
.error-text {
  color: #771821;
}
.checkbox-wrap {
  display: inline-block;
  margin: 0px;
  padding: 6px;
}
.checkbox-wrap.checkbox-input {
  padding: 4px 10px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.checkbox-wrap.checkbox-input:hover {
  border-color: #b7c3d3;
}
.checkbox-wrap.checkbox-input input[type="checkbox"] {
  display: none;
}
.checkbox-wrap.checkbox-input input[type="checkbox"] + .checkbox-label {
  position: relative;
  margin-left: 24px;
  cursor: pointer;
  font-weight: 500;
  line-height: 18px;
  color: #26384c;
}
.checkbox-wrap.checkbox-input input[type="checkbox"] + .checkbox-label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 1px;
  left: -24px;
  border-radius: 2px;
  border: 1px solid #dedede;
  background-color: #fff;
}
.checkbox-wrap.checkbox-input input[type="checkbox"]:checked + .checkbox-label {
  font-weight: 700;
}
.checkbox-wrap.checkbox-input input[type="checkbox"]:checked + .checkbox-label:after {
  content: "";
  position: absolute;
  top: 6px;
  left: -20px;
  width: 8px;
  height: 5px;
  color: #ac2431;
  border-left: 2px solid #ac2431;
  border-bottom: 2px solid #ac2431;
  transform: rotate(-45deg);
}
.checkbox-group.badge-style {
  border: 1px solid #dedede;
}
.checkbox-group.badge-style.form-validation {
  border: 3px solid #ac2431;
}
.checkbox-group.badge-style .checked-boxes {
  min-height: 30px;
  padding: 6px;
  display: flex;
  justify-content: flex-end;
}
.checkbox-group.badge-style .checked-boxes .checked-boxes-inner {
  flex-grow: 1;
}
.checkbox-group.badge-style .checked-boxes .cb-toggle {
  cursor: pointer;
}
.checkbox-group.badge-style .checked-boxes .cb-toggle .add-text {
  color: #85bee8;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  margin-right: 5px;
  margin-top: 7px;
}
.checkbox-group.badge-style .checked-boxes .cb-toggle .active-btn {
  margin-top: 2px;
}
.checkbox-group.badge-style .checked-boxes .placeholder-text {
  font-size: 12px;
  padding: 5px 0;
  color: #ddd;
}
.checkbox-group.badge-style .unchecked-boxes {
  background-color: #f5f5f5;
  padding: 6px;
  height: auto;
  overflow: hidden;
  transition: 0.7s all;
}
.checkbox-group.badge-style.expanded {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}
.checkbox-group.badge-style.collapsed .unchecked-boxes {
  display: none;
}
.checkbox-group.badge-style .checkbox-wrap input[type="checkbox"] {
  display: none;
}
.checkbox-group.badge-style .checkbox-wrap input[type="checkbox"] + .checkbox-label {
  padding: 3px 12px 2px;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  background-color: #d5d5d5;
  cursor: pointer;
  color: #666;
}
.checkbox-group.badge-style .checkbox-wrap input[type="checkbox"] + .checkbox-label .checkbox-close {
  display: none;
}
.checkbox-group.badge-style .checkbox-wrap input[type="checkbox"] + .checkbox-label.form-validation {
  color: #fff;
  background-color: #ac2431;
}
.checkbox-group.badge-style .checkbox-wrap input[type="checkbox"]:checked + .checkbox-label {
  background-color: #337ab7;
  color: white;
  padding-right: 32px;
  position: relative;
}
.checkbox-group.badge-style .checkbox-wrap input[type="checkbox"]:checked + .checkbox-label .checkbox-close {
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  margin: 4px 6px;
  display: inline-block;
}
.checkbox-group.badge-style .checkbox-wrap input[type="checkbox"]:checked + .checkbox-label.form-validation {
  color: #fff;
  background-color: #ac2431;
}
.radio-wrap {
  display: inline-block;
  margin: 0px;
  padding: 6px;
}
.radio-wrap.radio-input input[type="radio"] {
  display: none;
}
.radio-wrap.radio-input input[type="radio"] + .radio-label {
  position: relative;
  margin-left: 30px;
  cursor: pointer;
  font-weight: 500;
}
.radio-wrap.radio-input input[type="radio"] + .radio-label:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 1px;
  left: -28px;
  border-radius: 18px;
  border: 1px solid #dedede;
  background-color: #fff;
}
.radio-wrap.radio-input input[type="radio"]:checked + .radio-label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: -25px;
  width: 9px;
  height: 6px;
  color: #ac2431;
  border-top: 6px solid #ac2431;
  border-bottom: 6px solid #ac2431;
  border-left: 6px solid #ac2431;
  border-right: 6px solid #ac2431;
  border-radius: 6px;
}
.text-disabled {
  color: #d5d5d5;
}
.top-margin-zero {
  margin-top: 0;
}
a[aria-expanded="true"] {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
  background-color: inherit;
}
a[aria-expanded="false"]::before,
a[aria-expanded="true"]::before {
  margin-right: 26px;
  margin-top: 5px;
}
/* Panel styles updated for Bootstrap 5 compatibility */
.panel {
  border-radius: 0.375rem !important;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.125);
  background-color: #fff;
  margin-bottom: 20px;
}
.panel-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  color: #2d2d2d;
  position: relative;
  margin-bottom: 0;
}
.panel-title:after {
  font-family: "RedAwning";
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 12px;
  pointer-events: none;
}
.panel-title .glyphicon {
  font-size: 13px;
  color: #191919;
}
.panel-heading {
  background: #fff !important;
  background-color: #fff !important;
  border-radius: 0.375rem 0.375rem 0 0 !important;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.panel-default {
  border-color: rgba(0, 0, 0, 0.125);
}
.panel-default > .panel-heading {
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.125);
}
.panel-default .panel-body {
  padding: 25px 0 30px;
  flex: 1 1 auto;
}
.common-area-config {
  width: 100%;
  padding: 15px 0;
}
.property-item .currency-panel .panel-body > .row.bottom-margin-5 {
  margin-bottom: 5px;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.negative-amount {
  color: #adadad;
}
.negative-amount::before {
  content: "(";
}
.negative-amount::after {
  content: ")";
}
.info-popover {
  margin-left: 5px;
  color: #999999;
  position: relative;
  top: 2px;
}
.loader-div {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80px;
  background-color: rgba(245, 245, 245, 0.5);
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 101;
  top: 0;
}
.loader-div .circular {
  animation: rotate 2s linear infinite;
  height: 50px;
  transform-origin: center center;
  width: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.loader-div .path {
  stroke: #ac2431;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.row.display-flex {
  display: flex;
  flex-wrap: wrap;
}
.row.display-flex > [class*="col-"] {
  display: flex;
  flex-direction: column;
}
.room-config-box {
  animation: appear 0.8s;
}
.animation-delete2 {
  animation: app1 1s;
  animation-iteration-count: 1;
  animation-fill-mode: backwards;
}
@-webkit-keyframes app1 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes app1 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes app1 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bed-config-box {
  background-color: #f2f2f2;
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 15px;
  height: 100%;
  overflow: hidden;
}
.bed-config-box .bed-config-title {
  margin-bottom: 7px;
}
.bed-config-box .bed-config-title .config-label {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}
.bed-config-box .bed-config-title .bed-config-actions {
  float: right;
  position: relative;
  top: 1px;
}
.bed-config-box .bed-config-title .bed-config-actions .icon {
  font-size: 14px;
  cursor: pointer;
}
.bed-config-box .bed-config-title .bed-config-actions .icon-delete {
  color: #ac2431;
  margin-left: 14px;
}
.bed-config-box .room-config-list {
  list-style: none;
  padding: 0 0 0 15px;
  margin: 0;
}
.bed-config-box .room-config-list li {
  font-size: 12px;
  position: relative;
}
.bed-config-box .room-config-list li:before {
  content: "\25C6";
  position: absolute;
  top: 0;
  left: -15px;
}
p {
  margin-bottom: -4px;
  font-size: 12px;
}
.icons {
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}
.delete {
  color: red;
}
.button-radius {
  border-radius: 0;
}
.button_radius {
  border: 1px solid #dcdcdc;
  border-radius: 0px;
}
.badge-selected {
  background-color: #337ab7 !important;
  color: white !important;
}
.panel-title > .small,
.panel-title > .small > a,
.panel-title > a,
.panel-title > small,
.panel-title > small > a {
  display: block;
}
.h1,
.h2,
.h3,
h1,
h2,
h3 {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #2d2d2d;
}
ul,
ol {
  padding-left: 1em;
}
div.template-wrap h1 {
  font-size: 36px;
  line-height: 42px;
}
div.template-wrap h2 {
  font-size: 24px;
  line-height: 30px;
}
div.template-wrap h3 {
  font-size: 18px;
  line-height: 24px;
}
div.template-wrap h4 {
  font-size: 14px;
  line-height: 18px;
}
div.template-wrap h5 {
  font-size: 12px;
  line-height: 16px;
}
div.template-wrap h6 {
  font-size: 10px;
  line-height: 14px;
}
div.template-wrap ul {
  padding-left: 1.3em;
}
.prevent-click {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.prevent-click:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.kebab-menu .kebab-item {
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: #333;
  margin-bottom: 4px;
}
.kebab-menu.small-kebab-menu .kebab-item {
  width: 4px;
  height: 4px;
}
.h-divider {
  border-top: 1px solid #d5d5d5;
  width: 100%;
  clear: both;
  height: 1px;
  margin: 25px 0 30px;
}
.menu-item {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.menu-item:hover,
.menu-item:focus {
  background: #f5f5f5;
  outline: 0;
}
.clickable-text:hover,
.clickable-text:focus,
.clickable-text {
  display: inline-block;
  color: #0417ff;
  cursor: pointer !important;
}
.display-inline {
  display: inline;
}
.justified-text {
  text-align: justify;
}
.mobile-link,
.mobile-link:hover {
  color: #337ab7;
}
.sbold-text {
  font-weight: 600;
}
.bold-text {
  font-weight: bold;
}
.optional {
  font-weight: 500;
}
.success-text {
  color: #159d47;
}
.failure-text {
  color: #ac2431;
}
.text-neutral {
  color: #999999;
}
.channel-markup-warning-icon {
  position: relative;
  font-size: 25px;
  margin-right: 10px;
  top: 5px;
  color: #ac2431;
}
.cursor-default {
  cursor: default;
}
.cursor-pointer {
  cursor: pointer;
}
.content-wrapper {
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.effective-dates-container.start-form-validation .DateRangePickerInput .DateInput:first-child {
  border: 3px solid #ac2431;
  border-radius: 2px;
}
.effective-dates-container.end-form-validation .DateRangePickerInput .DateInput:last-child {
  border: 3px solid #ac2431;
  border-radius: 2px;
}
.icon-text-top {
  font-size: 10px;
  vertical-align: text-top;
  color: #999;
  cursor: pointer;
  margin-left: 1px;
}
.no-data-found-container {
  padding: 10px;
  display: block;
  background: hsla(0, 0%, 100%, 0.8);
  transition: all 0.3s ease;
  pointer-events: none;
  text-align: center;
  border: 1px solid #dedede;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  a[aria-expanded="false"]::before,
  a[aria-expanded="true"]::before {
    content: none;
  }
  .right-padding {
    padding-right: 0;
  }
  .left-padding {
    padding-left: 0;
  }
  .top-pad {
    padding-top: 15px;
  }
  .page-container .main-container #content.monthview-pricing {
    padding-top: 15px;
  }
  .page-container .main-container #content.properties {
    margin: 0px;
    margin-top: 15px;
    padding: 0px;
  }
  .page-container .main-container #content.property-form {
    margin-top: 45px;
  }
  .page-container .main-container #content.weekview-pricing,
  .page-container .main-container #content.reservations,
  .page-container .main-container #content.reservation {
    margin: 0px;
    padding: 0px;
  }
}
.website-container .template-container .sticky.sticky-search-main {
  position: -webkit-sticky !important;
}
.add-organization-table-component-container {
  background-color: #f5f5f5;
  overflow: hidden;
  padding: 5px;
}
.add-organization-table-component-container .search-wrapper {
  float: right;
  margin-bottom: 20px;
}
.add-organization-table-component-container .search-wrapper .search-inp input.form-field {
  width: 265px;
}
.add-organization-table-component-container .search-wrapper .search-inp {
  margin: 0px;
}
.accordion .accordion-item .accordion-header button {
  background-color: white;
}
@media screen and (max-width: 767px) {
  .page-container {
    padding-left: 0;
  }
  body.sidebar-open .page-container {
    padding-left: 0;
  }
}
.loading-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.loading-dots span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ac2431;
  animation: dot-bounce 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(1) {
  animation-delay: 0s;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dot-bounce {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.sp-status-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  cursor: default !important;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.sp-status-pill--live {
  background: #dcfce7;
  color: #166534;
  border: 2px solid #86efac;
}
.sp-status-pill--unlisted {
  background: #f3f4f6;
  color: #6b7280;
  border: 2px solid #d1d5db;
}
.sp-status-pill--interactive {
  cursor: pointer !important;
}
.sp-status-pill--interactive.sp-status-pill--live:hover {
  background: #bbf7d0;
  box-shadow: 0 0 0 3px #166534;
}
.sp-status-pill--interactive.sp-status-pill--unlisted:hover {
  background: #e5e7eb;
  box-shadow: 0 0 0 3px #9ca3af;
}
.sp-status-pill--loading {
  opacity: 0.6;
  cursor: wait !important;
}
.page-inner {
  max-width: 860px;
  margin: 0 auto;
}
.page-inner--full-width {
  max-width: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.required-error-text {
  color: #ac2431;
}
input[type="range"] {
  accent-color: #ac2431;
}
.field-wrapper {
  margin-bottom: 10px;
}
.form-label {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
}
.form-label.form-validation {
  color: #ac2431;
}
.form-label.form-label-add-fees {
  min-width: 100px;
}
select.form-field:disabled {
  color: #999;
  background-color: #f5f5f5;
}
textarea.form-field {
  min-height: 100px;
}
textarea.form-field,
select.form-field,
input[type="text"].form-field,
input[type="password"].form-field,
input[type="number"].form-field,
input[type="email"].form-field,
input[type="url"].form-field,
input[type="search"].form-field,
input[type="tel"].form-field {
  width: 100%;
  display: inline-block;
  border: 1px solid #dedede;
  padding: 5px;
  font-size: 13px;
  height: 35px;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  border-radius: 8px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #2d2d2d;
  font-weight: 600;
  min-width: 60px;
}
textarea.form-field:focus,
select.form-field:focus,
input[type="text"].form-field:focus,
input[type="password"].form-field:focus,
input[type="number"].form-field:focus,
input[type="email"].form-field:focus,
input[type="url"].form-field:focus,
input[type="search"].form-field:focus,
input[type="tel"].form-field:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
textarea.form-field::-webkit-input-placeholder,
select.form-field::-webkit-input-placeholder,
input[type="text"].form-field::-webkit-input-placeholder,
input[type="password"].form-field::-webkit-input-placeholder,
input[type="number"].form-field::-webkit-input-placeholder,
input[type="email"].form-field::-webkit-input-placeholder,
input[type="url"].form-field::-webkit-input-placeholder,
input[type="search"].form-field::-webkit-input-placeholder,
input[type="tel"].form-field::-webkit-input-placeholder,
textarea.form-field ::-moz-placeholder,
select.form-field ::-moz-placeholder,
input[type="text"].form-field ::-moz-placeholder,
input[type="password"].form-field ::-moz-placeholder,
input[type="number"].form-field ::-moz-placeholder,
input[type="email"].form-field ::-moz-placeholder,
input[type="url"].form-field ::-moz-placeholder,
input[type="search"].form-field ::-moz-placeholder,
input[type="tel"].form-field ::-moz-placeholder,
textarea.form-field :-ms-input-placeholder,
select.form-field :-ms-input-placeholder,
input[type="text"].form-field :-ms-input-placeholder,
input[type="password"].form-field :-ms-input-placeholder,
input[type="number"].form-field :-ms-input-placeholder,
input[type="email"].form-field :-ms-input-placeholder,
input[type="url"].form-field :-ms-input-placeholder,
input[type="search"].form-field :-ms-input-placeholder,
input[type="tel"].form-field :-ms-input-placeholder,
textarea.form-field :-o-input-placeholder,
select.form-field :-o-input-placeholder,
input[type="text"].form-field :-o-input-placeholder,
input[type="password"].form-field :-o-input-placeholder,
input[type="number"].form-field :-o-input-placeholder,
input[type="email"].form-field :-o-input-placeholder,
input[type="url"].form-field :-o-input-placeholder,
input[type="search"].form-field :-o-input-placeholder,
input[type="tel"].form-field :-o-input-placeholder {
  font-weight: 400;
}
textarea.form-field:disabled,
select.form-field:disabled,
input[type="text"].form-field:disabled,
input[type="password"].form-field:disabled,
input[type="number"].form-field:disabled,
input[type="email"].form-field:disabled,
input[type="url"].form-field:disabled,
input[type="search"].form-field:disabled,
input[type="tel"].form-field:disabled {
  color: #d5d5d5;
}
textarea.form-field::placeholder,
select.form-field::placeholder,
input[type="text"].form-field::placeholder,
input[type="password"].form-field::placeholder,
input[type="number"].form-field::placeholder,
input[type="email"].form-field::placeholder,
input[type="url"].form-field::placeholder,
input[type="search"].form-field::placeholder,
input[type="tel"].form-field::placeholder {
  color: #bbb;
  opacity: 0.6;
}
textarea.form-validation,
select.form-validation,
input[type="text"].form-validation,
input[type="password"].form-validation,
input[type="number"].form-validation,
input[type="email"].form-validation,
input[type="url"].form-validation,
input[type="search"].form-validation,
input[type="tel"].form-validation {
  border: 3px solid #ac2431 !important;
}
textarea.form-field.text-area {
  height: auto;
}
input[type="radio"].form-field {
  display: none;
}
input[type="radio"].form-field + .form-label {
  padding-left: 25px;
  position: relative;
  cursor: pointer;
}
input[type="radio"].form-field + .form-label::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translate(0, -50%);
  padding: 6px;
  border: 1px solid #dedede;
  border-radius: 50%;
}
input[type="radio"].form-field:checked + .form-label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(0, -50%);
  padding: 4px;
  border-radius: 50%;
  background-color: #ac2431;
}
.dropdown-item.unselectable {
  color: gray;
  pointer-events: none;
}
.dropdown-item.child {
  padding-left: 30px;
}
.form-field-select {
  position: relative;
}
.form-field-select .caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.form-field-select.full-width {
  width: 100%;
}
.primary-btn {
  background-color: #ac2431;
  color: #fff;
  padding: 5px 25px;
  line-height: 22px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: 1px solid #d5d5d5;
  border-radius: 20px;
  transition: background 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-align: center;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
}
.primary-btn.full-width {
  width: 100%;
}
.primary-btn:hover,
.primary-btn:focus {
  background-color: #771821;
  border-color: transparent;
  color: #fff;
  box-shadow: none;
}
.primary-btn:active,
.primary-btn.active,
.primary-btn:active:focus,
.primary-btn:active:hover {
  background-color: #4d0f15;
  border-color: transparent;
  color: #fff;
  box-shadow: none;
}
.primary-btn:disabled,
.primary-btn.disabled {
  background-color: #dc5a66;
  border-color: transparent;
  color: #fff;
  opacity: 0.6;
  cursor: not-allowed;
}
.primary-btn:disabled:hover,
.primary-btn.disabled:hover,
.primary-btn:disabled:focus,
.primary-btn.disabled:focus,
.primary-btn:disabled:active,
.primary-btn.disabled:active {
  background-color: #dc5a66;
  border-color: transparent;
  color: #fff;
}
.primary-btn.blue-btn,
.primary-btn.secondary-btn {
  background-color: #337ab7;
  border-color: transparent;
}
.primary-btn.blue-btn:hover,
.primary-btn.secondary-btn:hover,
.primary-btn.blue-btn:active,
.primary-btn.secondary-btn:active {
  background-color: #85bee8;
}
.primary-btn.black-btn {
  background-color: #000;
}
.primary-btn.white-btn {
  background-color: #fff;
  color: #000;
  border-color: #d5d5d5;
  font-size: 12px;
}
.primary-btn.green-btn {
  background-color: #5ad888;
  color: #fff;
}
.primary-btn.brand-btn {
  background-color: #ac2431;
  color: #fff;
}
.primary-btn.grey-btn {
  background-color: #d5d5d5;
  color: #000;
  border-color: #d5d5d5;
  font-weight: 400;
  font-size: 12px;
}
.primary-btn.transparent-btn {
  background-color: transparent;
  color: #000;
  border-color: #d5d5d5;
  font-size: 12px;
}
.primary-btn.active-btn {
  border-color: #5ad888;
  background-color: #fff;
  color: #5ad888;
  padding: 2px 11px 3px;
  font-size: 12px;
}
.primary-btn.active-reason-btn {
  border-color: #000;
  background-color: #fff;
  color: #000;
  padding: 2px 11px 3px;
  font-size: 12px;
}
.primary-btn .icon {
  font-size: 8px;
  margin-left: 7px;
}
.primary-btn.icon-btn {
  padding: 5px 15px;
}
#upload-csv {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
#upload-csv + label {
  display: inline-block;
  width: 270px;
  height: 32px;
  border: 1px solid black;
}
#upload-csv:focus + label,
#upload-csv + label:hover {
  cursor: pointer;
}
#csv-label-wrapper {
  padding: 6px 10px 6px 10px;
  width: 92px;
  height: 31px;
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  border-right: 1px solid black;
  background-color: #6ba2d7;
}
#csv-label-wrapper:hover {
  background-color: #85bee8;
}
#csv-file-name {
  padding: 4px 0px 4px 96px;
  font-weight: 500;
}
.react-datepicker {
  border-radius: 0;
  font-family: "Assistant", Arial, sans-serif;
}
.react-datepicker-popper {
  z-index: 5;
}
.react-datepicker-wrapper,
.react-datepicker__input-container {
  width: 100%;
}
.react-datepicker__day {
  transition: background 0.1s linear;
}
.react-datepicker__day:hover {
  background-color: #ac2431;
  color: #fff;
  border-radius: 0;
}
.react-datepicker__day--today {
  background-color: #337ab7;
}
.react-datepicker__day--selected,
.react-datepicker__day--in-selecting-range,
.react-datepicker__day--in-range {
  background-color: #771821;
  color: #fff;
  border-radius: 0;
}
.react-datepicker__day--selected:hover,
.react-datepicker__day--in-selecting-range:hover,
.react-datepicker__day--in-range:hover {
  background-color: #771821;
  border-radius: 0;
}
.rte-inp {
  height: 200px;
  margin-bottom: 40px;
}
i.dim-gray {
  color: dimgray;
}
.badge-checkbox {
  margin: 0;
  text-transform: uppercase;
}
.badge-checkbox input {
  display: none;
}
.badge-checkbox input:checked + label {
  background-color: #337ab7;
  color: #fff;
  text-decoration: none;
}
.badge-checkbox input:checked + label:hover {
  background-color: #85bee8;
}
.badge-checkbox label {
  background-color: #f5f5f5;
  width: 100%;
  padding: 5px 0;
  text-align: center;
  border-radius: 3px;
  display: inline-block;
  font-weight: normal;
  cursor: pointer;
  text-decoration: line-through;
}
.main-container div[class^="RichTextEditor__editor___"] {
  font-family: "Assistant", Arial, sans-serif;
  font-size: 13px;
}
.main-container div[class^="RichTextEditor__editor___"] span {
  display: inline;
}
.main-container .public-DraftEditor-content {
  min-height: 120px;
}
.SingleDatePicker {
  width: 100%;
}
.SingleDatePickerInput {
  width: 100%;
}
.SingleDatePickerInput .DateInput {
  width: 100%;
}
.SingleDatePickerInput .DateInput::after {
  font-family: RedAwning;
  content: "\E93C";
  position: absolute;
  right: 10px;
  top: 5px;
  pointer-events: none;
}
.SingleDatePickerInput .DateInput_input {
  width: 100%;
  display: inline-block;
  border: 1px solid #dedede;
  padding: 5px;
  font-size: 13px;
  height: 35px;
  transition: border 0.2s linear, box-shadow 0.2s linear;
  border-radius: 2px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #2d2d2d;
  font-weight: 600;
}
.SingleDatePickerInput .DateInput_input__focused {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
.SingleDatePicker_picker .CalendarDay__blocked_out_of_range,
.SingleDatePicker_picker .CalendarDay__blocked_calendar,
.SingleDatePicker_picker .CalendarDay__blocked_out_of_range:active,
.SingleDatePicker_picker .CalendarDay__blocked_calendar:active,
.SingleDatePicker_picker .CalendarDay__blocked_out_of_range:hover,
.SingleDatePicker_picker .CalendarDay__blocked_calendar:hover {
  background: #f2dede;
  color: #771821;
  text-decoration: line-through;
}
.SingleDatePicker_picker .CalendarDay__blocked_out_of_range .checkOutOnly,
.SingleDatePicker_picker .CalendarDay__blocked_calendar .checkOutOnly,
.SingleDatePicker_picker .CalendarDay__blocked_out_of_range:active .checkOutOnly,
.SingleDatePicker_picker .CalendarDay__blocked_calendar:active .checkOutOnly,
.SingleDatePicker_picker .CalendarDay__blocked_out_of_range:hover .checkOutOnly,
.SingleDatePicker_picker .CalendarDay__blocked_calendar:hover .checkOutOnly {
  background: linear-gradient(-45deg, #f2dede, #f2dede 50%, #fff 0, #fff);
}
.SingleDatePicker_picker .CalendarDay__selected {
  background-color: #ac2431;
  color: #2d2d2d;
}
.SingleDatePicker_picker .CalendarDay__selected_span,
.SingleDatePicker_picker .CalendarDay__selected__hovered_span,
.SingleDatePicker_picker .CalendarDay__selected_span:active,
.SingleDatePicker_picker .CalendarDay__selected__hovered_span:active,
.SingleDatePicker_picker .CalendarDay__selected_spanhover,
.SingleDatePicker_picker .CalendarDay__selected__hovered_spanhover {
  background-color: #dedede;
  color: #2d2d2d;
}
.SingleDatePicker_picker .CalendarDay__selected_span .checkInOnly,
.SingleDatePicker_picker .CalendarDay__selected__hovered_span .checkInOnly,
.SingleDatePicker_picker .CalendarDay__selected_span:active .checkInOnly,
.SingleDatePicker_picker .CalendarDay__selected__hovered_span:active .checkInOnly,
.SingleDatePicker_picker .CalendarDay__selected_spanhover .checkInOnly,
.SingleDatePicker_picker .CalendarDay__selected__hovered_spanhover .checkInOnly,
.SingleDatePicker_picker .CalendarDay__selected_span .checkOutOnly,
.SingleDatePicker_picker .CalendarDay__selected__hovered_span .checkOutOnly,
.SingleDatePicker_picker .CalendarDay__selected_span:active .checkOutOnly,
.SingleDatePicker_picker .CalendarDay__selected__hovered_span:active .checkOutOnly,
.SingleDatePicker_picker .CalendarDay__selected_spanhover .checkOutOnly,
.SingleDatePicker_picker .CalendarDay__selected__hovered_spanhover .checkOutOnly {
  background: transparent;
}
.SingleDatePicker_picker .CalendarDay__selected_start .checkInOnly,
.SingleDatePicker_picker .CalendarDay__selected_end .checkInOnly,
.SingleDatePicker_picker .CalendarDay__selected_start .checkOutOnly,
.SingleDatePicker_picker .CalendarDay__selected_end .checkOutOnly {
  background: transparent;
}
.SingleDatePicker_picker .CalendarDay__selected_start,
.SingleDatePicker_picker .CalendarDay__selected_start:active,
.SingleDatePicker_picker .CalendarDay__selected_starthover {
  background: linear-gradient(-45deg, #dedede, #dedede 50%, #fff 0, #fff);
}
.SingleDatePicker_picker .CalendarDay__selected_end,
.SingleDatePicker_picker .CalendarDay__selected_end:active,
.SingleDatePicker_picker .CalendarDay__selected_endhover {
  background: linear-gradient(135deg, #dedede, #dedede 50%, #fff 0, #fff);
}
.react-tel-input.form-validation {
  border: 3px solid #ac2431;
  border-radius: 2px;
}
.react-tel-input .form-control {
  width: 100% !important;
  border-radius: 20px;
  border: 1px solid #dedede;
  box-shadow: none;
  transition: border 0.2s linear, box-shadow 0.2s linear;
}
.react-tel-input .form-control:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
.react-tel-input .country-list {
  max-height: 300px;
  overflow-y: auto;
  margin: 0;
}
.react-tel-input .country-list li {
  padding: 6px 10px;
  font-size: 13px;
  line-height: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.react-tel-input .country-list li:hover {
  background: #337ab7;
}
.react-tel-input .country-list li.highlight,
.react-tel-input .country-list li.active {
  background: #337ab7;
  font-weight: 600;
}
.react-tel-input .country-list .search-box {
  margin-left: 0px;
}
.react-tel-input .country-list .search {
  padding: 6px 8px;
}
.DateRangePicker {
  width: 100%;
}
.DateRangePickerInput {
  width: 100%;
}
.DateRangePickerInput .DateInput {
  width: calc(50% - 15px);
}
.DateRangePickerInput .DateInput:first-child {
  margin-right: 15px;
}
.DateRangePickerInput .DateInput:last-child {
  margin-left: 15px;
}
.DateRangePickerInput .DateInput::after {
  font-family: RedAwning;
  content: "\E93C";
  position: absolute;
  right: 10px;
  top: 5px;
  pointer-events: none;
}
.DateRangePickerInput .DateInput_input {
  width: 100%;
  display: inline-block;
  border: 1px solid #dedede;
  padding: 5px;
  font-size: 13px;
  height: 35px;
  transition: border 0.2s linear, box-shadow 0.2s linear;
  border-radius: 2px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: #2d2d2d;
  font-weight: 600;
}
.DateRangePickerInput .DateInput_input__focused {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
.DateRangePicker_picker .CalendarDay__blocked_out_of_range,
.DateRangePicker_picker .CalendarDay__blocked_calendar,
.DateRangePicker_picker .CalendarDay__blocked_out_of_range:active,
.DateRangePicker_picker .CalendarDay__blocked_calendar:active,
.DateRangePicker_picker .CalendarDay__blocked_out_of_range:hover,
.DateRangePicker_picker .CalendarDay__blocked_calendar:hover {
  background: #f2dede;
  color: #771821;
  text-decoration: line-through;
}
.DateRangePicker_picker .CalendarDay__blocked_out_of_range .checkOutOnly,
.DateRangePicker_picker .CalendarDay__blocked_calendar .checkOutOnly,
.DateRangePicker_picker .CalendarDay__blocked_out_of_range:active .checkOutOnly,
.DateRangePicker_picker .CalendarDay__blocked_calendar:active .checkOutOnly,
.DateRangePicker_picker .CalendarDay__blocked_out_of_range:hover .checkOutOnly,
.DateRangePicker_picker .CalendarDay__blocked_calendar:hover .checkOutOnly {
  background: linear-gradient(-45deg, #f2dede, #f2dede 50%, #fff 0, #fff);
}
.DateRangePicker_picker .CalendarDay__highlighted_calendar {
  background-color: #f5f5f5 !important;
}
.DateRangePicker_picker .CalendarDay__highlighted_calendar,
.DateRangePicker_picker .CalendarDay__highlighted_calendar:active,
.DateRangePicker_picker .CalendarDay__highlighted_calendarhover {
  background-color: #f5f5f5 !important;
}
.DateRangePicker_picker .CalendarDay__selected {
  background-color: #dedede !important;
  color: #2d2d2d;
}
.DateRangePicker_picker .CalendarDay__selected_span,
.DateRangePicker_picker .CalendarDay__selected__hovered_span,
.DateRangePicker_picker .CalendarDay__selected_span:active,
.DateRangePicker_picker .CalendarDay__selected__hovered_span:active,
.DateRangePicker_picker .CalendarDay__selected_spanhover,
.DateRangePicker_picker .CalendarDay__selected__hovered_spanhover {
  background-color: #dedede !important;
  color: #2d2d2d;
}
.DateRangePicker_picker .CalendarDay__selected_span .checkInOnly,
.DateRangePicker_picker .CalendarDay__selected__hovered_span .checkInOnly,
.DateRangePicker_picker .CalendarDay__selected_span:active .checkInOnly,
.DateRangePicker_picker .CalendarDay__selected__hovered_span:active .checkInOnly,
.DateRangePicker_picker .CalendarDay__selected_spanhover .checkInOnly,
.DateRangePicker_picker .CalendarDay__selected__hovered_spanhover .checkInOnly,
.DateRangePicker_picker .CalendarDay__selected_span .checkOutOnly,
.DateRangePicker_picker .CalendarDay__selected__hovered_span .checkOutOnly,
.DateRangePicker_picker .CalendarDay__selected_span:active .checkOutOnly,
.DateRangePicker_picker .CalendarDay__selected__hovered_span:active .checkOutOnly,
.DateRangePicker_picker .CalendarDay__selected_spanhover .checkOutOnly,
.DateRangePicker_picker .CalendarDay__selected__hovered_spanhover .checkOutOnly {
  background: transparent;
}
.DateRangePicker_picker .CalendarDay__selected_start .checkInOnly,
.DateRangePicker_picker .CalendarDay__selected_end .checkInOnly,
.DateRangePicker_picker .CalendarDay__selected_start .checkOutOnly,
.DateRangePicker_picker .CalendarDay__selected_end .checkOutOnly {
  background: transparent;
}
.DateRangePicker_picker .CalendarDay__selected_start,
.DateRangePicker_picker .CalendarDay__selected_start:active,
.DateRangePicker_picker .CalendarDay__selected_starthover {
  background-color: #494949 !important;
  color: #fff;
}
.DateRangePicker_picker .CalendarDay__selected_end,
.DateRangePicker_picker .CalendarDay__selected_end:active,
.DateRangePicker_picker .CalendarDay__selected_endhover {
  background-color: #494949 !important;
  color: #fff;
}
.search-box-container {
  width: 100%;
  position: relative;
}
.search-box-container input[type="search"].form-field {
  padding-right: 35px;
}
.search-box-container input[type="search"].form-field::-webkit-search-decoration,
.search-box-container input[type="search"].form-field::-webkit-search-cancel-button,
.search-box-container input[type="search"].form-field::-webkit-search-results-button,
.search-box-container input[type="search"].form-field::-webkit-search-results-decoration {
  display: none;
}
.search-box-container input[type="search"].form-field::-ms-clear,
.search-box-container input[type="search"].form-field::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.search-box-btn {
  position: absolute;
  display: inline-block;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.search-box-btn .btn {
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
  border-radius: 50%;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: #f0f0f0;
  color: black;
}
.search-box-btn .btn:hover {
  background-color: #d7d7d7;
  color: white;
}
.fe-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.fe-search-wrap .fe-search-icon {
  position: absolute;
  left: 12px;
  font-size: 14px;
  color: #9ca3af;
  pointer-events: none;
}
.fe-search-wrap .fe-search-input {
  width: 100%;
  padding: 8px 36px 8px 34px;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  font-size: 14px;
  color: #111;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.fe-search-wrap .fe-search-input::placeholder {
  color: #9ca3af;
}
.fe-search-wrap .fe-search-input:focus {
  border-color: #337ab7;
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.12);
}
.fe-search-wrap .fe-search-input::-webkit-search-decoration,
.fe-search-wrap .fe-search-input::-webkit-search-cancel-button,
.fe-search-wrap .fe-search-input::-webkit-search-results-button,
.fe-search-wrap .fe-search-input::-webkit-search-results-decoration {
  display: none;
}
.fe-search-wrap .fe-search-input::-ms-clear,
.fe-search-wrap .fe-search-input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.fe-search-wrap .fe-search-clear {
  position: absolute;
  right: 8px;
}
.fe-search-clear {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #e5e7eb;
  border-radius: 50%;
  font-size: 12px;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, color 0.15s;
}
.fe-search-clear:hover {
  background: #337ab7;
  color: #fff;
}
.fe-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  margin: 0;
  vertical-align: middle;
}
.fe-checkbox--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.fe-checkbox .fe-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.fe-checkbox .fe-checkbox__box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.fe-checkbox .fe-checkbox__box::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0;
  transition: opacity 0.1s;
}
.fe-checkbox:not(.fe-checkbox--disabled):hover .fe-checkbox__box {
  border-color: #337ab7;
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.12);
}
.fe-checkbox .fe-checkbox__input:checked + .fe-checkbox__box {
  background: #337ab7;
  border-color: #337ab7;
}
.fe-checkbox .fe-checkbox__input:checked + .fe-checkbox__box::after {
  opacity: 1;
}
.fe-checkbox .fe-checkbox__input:indeterminate + .fe-checkbox__box {
  background: #337ab7;
  border-color: #337ab7;
}
.fe-checkbox .fe-checkbox__input:indeterminate + .fe-checkbox__box::after {
  width: 8px;
  height: 0;
  border: none;
  border-top: 2px solid #fff;
  transform: none;
  opacity: 1;
}
.fe-checkbox .fe-checkbox__input:focus-visible + .fe-checkbox__box {
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.25);
}
.fe-checkbox .fe-checkbox__label {
  font-size: 14px;
  color: #374151;
  line-height: 1.4;
}
.fe-field-wrap {
  margin-bottom: 14px;
}
.fe-field-wrap > .fe-info-popover {
  margin-left: 6px;
}
.fe-disable-id-verification {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}
.fe-disable-id-verification > .fe-info-popover {
  margin-left: 8px;
  flex-shrink: 0;
}
.fe-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
.fe-label .fe-label-asterisk {
  color: #dc2626;
  margin-left: 2px;
}
.fe-input {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.fe-input:focus {
  border-color: #337ab7;
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.2);
}
.fe-input:disabled,
.fe-input[readonly] {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}
.fe-input.fe-input--error {
  border-color: #dc2626;
}
.fe-input.fe-input--error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}
.fe-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.fe-input-wrap .fe-input {
  padding-right: 32px;
}
.fe-input-wrap .fe-input-clear {
  position: absolute;
  right: 8px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #e5e7eb;
  border-radius: 50%;
  font-size: 11px;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}
.fe-input-wrap .fe-input-clear:hover {
  background: #337ab7;
  color: #fff;
}
.fe-dti {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.fe-dti:focus-within {
  border-color: #337ab7;
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.2);
}
.fe-dti.fe-dti--disabled {
  background: #f3f4f6;
  cursor: not-allowed;
}
.fe-dti .fe-dti__date,
.fe-dti .fe-dti__time {
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
  color: #374151;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.fe-dti .fe-dti__date:disabled,
.fe-dti .fe-dti__time:disabled {
  color: #9ca3af;
  cursor: not-allowed;
}
.fe-dti .fe-dti__date {
  flex: 1 1 auto;
  min-width: 0;
}
.fe-dti .fe-dti__time {
  width: 120px;
  flex-shrink: 0;
}
.fe-dti .fe-dti__sep {
  width: 1px;
  align-self: stretch;
  background: #d1d5db;
  flex-shrink: 0;
}
.fe-textarea {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  resize: vertical;
  line-height: 1.5;
  transition: border-color 0.15s, box-shadow 0.15s;
  max-height: 300px;
}
.fe-textarea:focus {
  border-color: #337ab7;
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.2);
}
.fe-textarea:disabled,
.fe-textarea[readonly] {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}
.fe-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.fe-radio .fe-radio__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.fe-radio .fe-radio__dot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.fe-radio .fe-radio__dot::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #337ab7;
  transform: scale(0);
  transition: transform 0.12s ease;
}
.fe-radio .fe-radio__input:checked + .fe-radio__dot {
  border-color: #337ab7;
}
.fe-radio .fe-radio__input:checked + .fe-radio__dot::after {
  transform: scale(1);
}
.fe-radio .fe-radio__input:focus-visible + .fe-radio__dot {
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.2);
}
.fe-radio:not(.fe-radio--disabled):hover .fe-radio__dot {
  border-color: #337ab7;
}
.fe-radio .fe-radio__label {
  font-size: 14px;
  color: #374151;
  line-height: 1.4;
}
.fe-radio.fe-radio--disabled {
  cursor: not-allowed;
}
.fe-radio.fe-radio--disabled .fe-radio__dot {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.fe-radio.fe-radio--disabled .fe-radio__dot::after {
  background: #9ca3af;
}
.fe-radio.fe-radio--disabled .fe-radio__label {
  color: #9ca3af;
}
.fe-select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.fe-select-wrap .fe-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 36px;
  padding: 0 36px 0 12px;
  font-size: 14px;
  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.fe-select-wrap .fe-select:focus {
  border-color: #337ab7;
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.2);
}
.fe-select-wrap .fe-select:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}
.fe-select-wrap .fe-select-arrow {
  pointer-events: none;
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #6b7280;
}
.fe-select-wrap.fe-select-wrap--disabled .fe-select-arrow {
  border-top-color: #d1d5db;
}
.fe-tooltip-wrap {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1;
}
.fe-info-popover__bubble {
  position: absolute;
  z-index: 1000;
  width: max-content;
  max-width: 220px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  background: #1f2937;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}
.fe-info-popover__bubble::after {
  content: "";
  position: absolute;
  border: 5px solid transparent;
}
.fe-info-popover__bubble.fe-info-popover__bubble--top {
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
}
.fe-info-popover__bubble.fe-info-popover__bubble--top::after {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: #1f2937;
}
.fe-info-popover__bubble.fe-info-popover__bubble--bottom {
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
}
.fe-info-popover__bubble.fe-info-popover__bubble--bottom::after {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: #1f2937;
}
.fe-info-popover__bubble.fe-info-popover__bubble--left {
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
}
.fe-info-popover__bubble.fe-info-popover__bubble--left::after {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: #1f2937;
}
.fe-info-popover__bubble.fe-info-popover__bubble--right {
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
}
.fe-info-popover__bubble.fe-info-popover__bubble--right::after {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: #1f2937;
}
.fe-info-popover__bubble[class*="fe-info-popover__bubble--cols-"] {
  width: max-content;
  max-width: none;
}
.fe-info-popover__bubble.fe-info-popover__bubble--cols-2 {
  columns: 2;
  column-gap: 16px;
  min-width: 260px;
}
.fe-info-popover__bubble.fe-info-popover__bubble--cols-3 {
  columns: 3;
  column-gap: 16px;
  min-width: 360px;
}
.fe-info-popover__bubble.fe-info-popover__bubble--cols-4 {
  columns: 4;
  column-gap: 16px;
  min-width: 460px;
}
.fe-info-popover__bubble.fe-info-popover__bubble--light {
  color: #1f2937;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.fe-info-popover__bubble.fe-info-popover__bubble--light.fe-info-popover__bubble--top::after {
  border-top-color: #fff;
}
.fe-info-popover__bubble.fe-info-popover__bubble--light.fe-info-popover__bubble--bottom::after {
  border-bottom-color: #fff;
}
.fe-info-popover__bubble.fe-info-popover__bubble--light.fe-info-popover__bubble--left::after {
  border-left-color: #fff;
}
.fe-info-popover__bubble.fe-info-popover__bubble--light.fe-info-popover__bubble--right::after {
  border-right-color: #fff;
}
.fe-info-popover {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1;
}
.fe-info-popover .fe-info-popover__icon {
  cursor: pointer;
  color: #9ca3af;
  font-size: 14px;
  outline: none;
  transition: color 0.15s;
}
.fe-info-popover .fe-info-popover__icon:hover,
.fe-info-popover .fe-info-popover__icon:focus {
  color: #337ab7;
}
.fe-info-popover:hover .fe-info-popover__bubble,
.fe-info-popover:focus-within .fe-info-popover__bubble {
  opacity: 1;
}
.fe-dropdown {
  position: relative;
  display: inline-block;
}
.fe-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid #d4dbe5;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.fe-dropdown__trigger:hover:not(:disabled) {
  border-color: #85bee8;
  background: #f8fafc;
}
.fe-dropdown__trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(133, 190, 232, 0.25);
  border-color: #85bee8;
}
.fe-dropdown__trigger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.fe-dropdown__trigger--open {
  border-color: #85bee8;
  background: #f8fafc;
}
.fe-dropdown__trigger--open .fe-dropdown__caret {
  transform: rotate(180deg);
}
.fe-dropdown__trigger-icon {
  font-size: 14px;
}
.fe-dropdown__caret {
  font-size: 11px;
  color: #9ca3af;
  transition: transform 0.15s;
  margin-left: 2px;
}
.fe-dropdown__menu {
  position: absolute;
  top: calc(100% + 4px);
  z-index: 200;
  min-width: 160px;
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 4px 0;
  list-style: none;
  margin: 0;
}
.fe-dropdown__menu--left {
  left: 0;
}
.fe-dropdown__menu--right {
  right: 0;
}
.fe-dropdown__item {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
}
.fe-dropdown__item:hover:not(.fe-dropdown__item--disabled) {
  background: #f3f4f6;
  color: #111827;
}
.fe-dropdown__item--danger {
  color: #dc2626;
}
.fe-dropdown__item--danger:hover:not(.fe-dropdown__item--disabled) {
  background: #fef2f2;
  color: #b91c1c;
}
.fe-dropdown__item--disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.fe-dropdown__divider {
  height: 1px;
  background: #e5e9f0;
  margin: 4px 0;
}
.DateRangePickerInput .DateRangePickerInput_arrow_svg {
  width: 0;
  height: 0;
}
.DateRangePickerInput .DayPickerKeyboardShortcuts_show__bottomRight {
  background: #fff;
  border: none;
}
.DateRangePickerInput .DateInput .DateInput_fang {
  top: 56px !important;
}
.DateRangePicker_picker {
  z-index: 2;
}
#mobile-panel-group .DateRangePicker_picker {
  top: 115px !important;
  left: 50% !important;
  transform: translateX(-50%);
}
#mobile-panel-group .DateRangePickerInput .DateInput .DateInput_fang {
  display: none;
}
.DayPicker .DayPickerKeyboardShortcuts_show__bottomRight {
  background: #fff;
  border: none;
  outline: none;
}
.DayPicker .Calender {
  background: linear-gradient(140deg, #000 50%, #f2dede 0);
}
.DayPicker .CalendarMonth_table.CalendarMonth_table_1 tbody * {
  border: none !important;
}
.DayPicker .checkInOnly {
  background: linear-gradient(135deg, #f2dede, #f2dede 50%, transparent 0, transparent);
  padding: 9px 0;
}
.DayPicker .checkOutOnly {
  background: linear-gradient(-45deg, #f2dede, #f2dede 50%, transparent 0, transparent);
  padding: 9px 0;
}
.pricing-modal .checkbox-wrap {
  margin-bottom: 5px;
  padding: 0px;
}
.pricing-modal .DateRangePicker_picker .CalendarDay__selected_start,
.pricing-modal .DateRangePicker_picker .CalendarDay__selected_end,
.pricing-modal .DateRangePicker_picker .CalendarDay__selected_start:active,
.pricing-modal .DateRangePicker_picker .CalendarDay__selected_end:active,
.pricing-modal .DateRangePicker_picker .CalendarDay__selected_starthover,
.pricing-modal .DateRangePicker_picker .CalendarDay__selected_endhover {
  background: #ac2431;
}
.pricing-modal .parallel-radio-container {
  margin-top: 10px;
}
.pricing-modal .ovr-price-title {
  color: #337ab7;
}
.pricing-modal button .close {
  font-size: 0px;
}
.pricing-modal textarea.form-field:disabled,
.pricing-modal select.form-field:disabled,
.pricing-modal input[type="text"].form-field:disabled,
.pricing-modal input[type="password"].form-field:disabled,
.pricing-modal input[type="number"].form-field:disabled,
.pricing-modal input[type="email"].form-field:disabled,
.pricing-modal input[type="url"].form-field:disabled,
.pricing-modal input[type="search"].form-field:disabled,
.pricing-modal input[type="tel"].form-field:disabled {
  color: #999;
  background-color: #f5f5f5;
}
.pricing-modal.override-price .modal-dialog {
  max-width: 425px;
}
.pricing-modal.override-price .info-popover {
  position: relative;
  left: -6px;
  top: 2px;
}
.pricing-modal .radio-wrap.radio-input input[type="radio"] + .radio-label {
  margin-left: 20px;
}
.pricing-modal .radio-wrap.radio-input input[type="radio"] + .radio-label:before {
  left: -26px;
}
.pricing-modal .radio-wrap.radio-input input[type="radio"]:checked + .radio-label:after {
  left: -23px;
}
.pagination > .disabled > a {
  background-color: #f5f5f5;
}
.pagination > .disabled > a:active,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  background-color: #f5f5f5;
}
.pagination-container {
  display: flex;
  justify-content: flex-end;
}
.pagination-container.mobile {
  justify-content: flex-start;
}
.pagination-container.mobile.listview {
  padding: 0px 8px;
}
.pagination-container.mobile .pagination {
  margin: 2px 0px 0px 0px;
}
.pagination-container .page_size-input-container,
.pagination-container .units-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container .units-info-container {
  margin-right: 10px;
}
.pagination-container .units-info-container span {
  padding: 0px 5px;
}
.pagination-container .mobile-link,
.pagination-container li.disabled .mobile-link,
.pagination-container li.active .mobile-link,
.pagination-container li.active .mobile-link:hover,
.pagination-container a.mobile-link:hover,
.pagination-container a.mobile-link:active,
.pagination-container a.mobile-link:focus {
  background: none !important;
  border: none !important;
  color: #333;
}
.form-validation .DateRangePicker .DateInput input {
  border-color: #ac2431;
}
.photo-heading {
  display: block;
  text-align: center;
  margin-top: 25px;
  font-size: 15px;
  font-weight: 400;
}
.photo-progress-wrapper {
  margin-bottom: 50px;
  margin-left: 25px;
  margin-right: 25px;
}
.photo-progress-wrapper .progress {
  height: 10px;
  margin-bottom: 0px;
}
.photo-progress-wrapper .photo-progress-percent {
  float: right;
}
.picky {
  outline: none;
}
.picky .picky__placeholder {
  white-space: nowrap;
}
.picky .picky__input {
  border-color: #dedede;
  height: 35px;
}
.picky .picky__input--disabled {
  background: #f2f2f2;
  color: #000;
  border-color: #f2f2f2;
}
.picky .picky__dropdown {
  top: 34px;
}
.picky .custom-picky-dropdown .checkbox-wrap.checkbox-input input[type="checkbox"] + .checkbox-label {
  bottom: 10px;
}
.form-validation .picky__input {
  border: 3px solid #ac2431;
}
.form-validation .RichTextEditor__root___2QXK- {
  border-color: #ac2431;
}
.expirationDate.form-validation .SingleDatePickerInput .DateInput_input {
  border-color: #ac2431;
}
.photo-tips-container button {
  background: none;
  border: none;
}
.photo-tips-container .icon-light-bulb {
  font-size: 25px;
  position: relative;
  right: 8px;
}
.photo-tips-container .clickable-text {
  position: relative;
  bottom: 5px;
  outline: none;
  box-shadow: none;
}
.individual-photo-tips-container {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.individual-photo-tips-container i {
  font-size: 40px;
}
.individual-photo-tips-container span {
  margin-left: 10px;
}
.photo-tips-modal .modal-body {
  padding: 0px 30px 30px 30px;
}
.tax-cleaning-prompt-modal .modal-body {
  padding: 0px 30px 30px 30px;
}
.integration-fee-container {
  border: 1px solid #ddd;
  padding: 15px;
}
.integration-fee-container.form-validation {
  border: 3px solid #ac2431;
}
.bulletin {
  list-style: none;
}
.bulletin li {
  padding-left: 10px;
}
.bulletin li:before {
  content: "\25C6";
  position: relative;
  left: -7px;
  font-size: 12px;
}
.popover {
  z-index: 10000;
  max-width: 450px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 8px;
}
.popover .popover-title {
  font-size: 15px;
  font-weight: bold;
}
.popover p {
  margin-bottom: 1px;
}
.input-question-mark {
  font-size: 15px;
  color: #337ab7;
  margin-left: 3px;
}
.details .input-question-mark {
  margin-right: 5px;
}
.fs-warning {
  display: block;
  font-weight: normal;
  font-size: 14px;
}
.range-slider-container {
  display: flex;
}
.range-slider-container .range-slider-count {
  padding-left: 5px;
  font-weight: bold;
}
.template-panel {
  position: relative;
}
.template-panel label.form-label {
  font-size: 14px;
  font-weight: bold;
}
.template-panel .loader-div {
  height: 100%;
  position: absolute;
}
.template-panel .msg-template-container {
  position: relative;
}
.template-panel .msg-template-container .loader-div .circular {
  height: 30px;
}
.template-panel .picky__input {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.template-panel .trigger-time {
  padding-left: 0px;
}
.template-panel .trigger-conjunction {
  padding-top: 25px;
}
.template-panel .trigger-event {
  padding-right: 0px;
}
@media (min-width: 1px) and (max-width: 990px) {
  .template-panel .trigger-time,
  .template-panel .trigger-conjunction,
  .template-panel .trigger-event {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 1px) and (max-width: 1400px) {
  .template-panel .attach-container {
    justify-content: center;
  }
  .template-panel .attach-container .attach-file-name {
    display: none;
  }
}
.new-attachments .new-attach-container {
  margin-bottom: 10px;
}
.new-attachments .new-attach-container .new-attach {
  display: flex;
  background-color: #d5d5d5;
  justify-content: space-between;
  width: 50%;
}
.new-attachments .new-attach-container .new-attach .new-attach-name {
  padding: 0px 5px;
  font-weight: bold;
}
.new-attachments .new-attach-container .new-attach .new-attach-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.new-attachments .new-attach-container .new-attach .new-attach-icon .icon-x {
  font-size: 16px;
}
.attachments {
  border-top: 1px solid #dedede;
  margin-bottom: 20px;
}
.attachments .delete-attachment-container {
  position: relative;
  float: right;
  right: 10px;
  top: 5px;
  cursor: pointer;
}
.attachments .delete-attachment-container .icon-x {
  font-size: 18px;
  padding: 5px;
}
.attachments .delete-attachment-container .icon-x:hover {
  background-color: #ffff;
  border-radius: 50%;
}
.input-wrapper {
  position: relative;
}
.input-wrapper span {
  position: absolute;
  bottom: 7px;
  right: 10px;
  font-weight: 700;
}
.template-preview-toolbar {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  padding: 4px 8px;
}
.template-preview-toolbar .zoom-btn {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  background: rgba(255, 255, 255, 0.75);
  user-select: none;
}
.template-preview-toolbar .zoom-btn:not(.zoom-reset) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  padding: 0;
}
.template-preview-toolbar .zoom-btn:hover {
  background: #e0e0e0;
}
.template-preview-toolbar .zoom-level {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  background: rgba(255, 255, 255, 0.75);
  padding: 2px 4px;
  border-radius: 3px;
  min-width: 40px;
  text-align: center;
}
.template-preview-toolbar .zoom-reset {
  color: #555;
  font-size: 12px;
  font-weight: 400;
}
.template-wrap {
  position: relative;
  border: 1px solid #dedede;
  padding: 10px;
  border-radius: 5px;
  overflow: auto;
  min-height: 100px;
}
.template-wrap.temp-type {
  margin-top: 45px;
}
.template-btn-bar {
  display: flex;
  justify-content: space-between;
}
.template-btn-bar .right-bar {
  display: flex;
  justify-content: end;
  align-items: center;
}
.template-btn-bar .left-bar {
  display: flex;
  align-items: center;
  margin: 0px 15px;
}
.template-btn-bar .left-bar .icon-delete {
  cursor: pointer;
  font-size: 20px;
  color: #ac2431;
}
.template-btn-bar .clickable-text {
  display: inline;
}
.template-btn-bar .add-attachment {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0px 10px;
  cursor: pointer;
}
.template-btn-bar .add-attachment .attach-dropzone {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}
.template-btn-bar .add-attachment .icon-attachment {
  font-size: 25px;
}
.attachments-title {
  font-weight: bold;
  margin: 10px 0px;
}
.green-tooltip .tooltip-inner {
  background-color: green;
}
.green-tooltip .tooltip-arrow::before {
  border-top-color: green;
  border-bottom-color: green;
  border-left-color: green;
  border-right-color: green;
}
.tooltip-content {
  white-space: pre-wrap;
  word-break: break-all;
}
/* DropdownButton (react-bootstrap) */
.dropdown .btn.dropdown-toggle,
.btn-group .btn.dropdown-toggle {
  background-color: #fff;
  color: #000;
  border: 1px solid #d5d5d5;
  font-weight: 600;
  position: relative;
  height: 100%;
}
.dropdown .btn.dropdown-toggle:focus,
.btn-group .btn.dropdown-toggle:focus,
.dropdown .btn.dropdown-toggle:active,
.btn-group .btn.dropdown-toggle:active {
  outline: none;
  box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.35);
}
.dropdown .btn.dropdown-toggle::after,
.btn-group .btn.dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
}
.dropdown.show .btn.dropdown-toggle,
.btn-group.show .btn.dropdown-toggle {
  background-color: #dbe9f5;
  border-color: #337ab7;
}
.dropdown-menu {
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  padding: 6px 0;
  font-size: 13px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d5d5d5 transparent;
}
.dropdown-menu::-webkit-scrollbar {
  width: 8px;
}
.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 4px;
}
.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #aeaeae;
}
.dropdown-item {
  font-size: 13px;
  padding: 6px 14px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  transition: background-color 0.12s ease, color 0.12s ease;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #f5f5f5;
  color: #000;
  text-decoration: none;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: #337ab7;
  color: #fff;
}
.dropdown-item.disabled,
.dropdown-item.unselectable {
  color: #9a9a9a;
  background: transparent;
  pointer-events: none;
  opacity: 0.65;
}
.dropdown-item.child {
  position: relative;
}
.dropdown-item.child::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(213, 213, 213, 0.6);
}
.dropdown-divider {
  margin: 4px 0;
  border-top: 1px solid rgba(213, 213, 213, 0.55);
}
.dropdown-menu[data-popper-placement^="bottom-end"] {
  right: 0;
  left: auto;
}
.dropdown .btn.dropdown-toggle:disabled,
.dropdown .btn.dropdown-toggle.disabled,
.btn-group .btn.dropdown-toggle:disabled,
.btn-group .btn.dropdown-toggle.disabled,
.btn.dropdown-toggle:disabled,
.btn.dropdown-toggle.disabled,
.dropdown-toggle[disabled],
.btn[disabled].dropdown-toggle,
.disabled > .btn.dropdown-toggle,
.disabled > .dropdown-toggle {
  background-color: #adb5bd !important;
  border-color: #adb5bd !important;
  color: #fff !important;
  opacity: 1;
  cursor: not-allowed;
}
.add-attachment {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 10px;
  cursor: pointer;
}
.add-attachment .attach-dropzone {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}
.add-attachment .icon-attachment {
  font-size: 25px;
}
.accordion-title .accordion-sub-text {
  font-size: 13px;
  color: #666;
}
/* Organization logo dropzone */
.org-file-input-wrap .dropzone-container {
  border: 2px dashed #d5d5d5;
  border-radius: 4px;
  text-align: center;
  padding: 20px 16px;
  min-height: 200px;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.org-file-input-wrap .dropzone-container:hover,
.org-file-input-wrap .dropzone-container.drag-over {
  border-color: #337ab7;
  background-color: #e7f0f8;
}
.org-file-input-wrap .dropzone-container .dropzone-hint {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.org-file-input-wrap .dropzone-container .dropzone-hint .dropzone-icon {
  font-size: 28px;
  color: #d5d5d5;
  display: block;
  margin-bottom: 6px;
}
.org-file-input-wrap .dropzone-container .dropzone-hint p {
  margin: 0;
  color: #666;
  font-size: 13px;
}
.org-file-input-wrap .dropzone-container .dropzone-preview {
  margin: 0;
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.org-file-input-wrap .dropzone-container .dropzone-preview .image-wrapper {
  max-width: 300px;
  margin: 0 auto;
}
.org-file-input-wrap .dropzone-container .dropzone-preview .image-wrapper img {
  max-height: 200px;
  width: auto;
}
.org-file-input-wrap .dropzone-container .mb-3 {
  margin-bottom: 0 !important;
}
.pill-selector {
  display: flex;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
  border: 1.5px solid #d4dbe5;
  margin-top: 8px;
  width: fit-content;
}
.pill-selector__btn {
  padding: 8px 22px;
  background: #fff;
  border: none;
  border-right: 1.5px solid #d4dbe5;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}
.pill-selector__btn:first-child {
  border-radius: 999px 0 0 999px;
}
.pill-selector__btn:last-child {
  border-right: none;
  border-radius: 0 999px 999px 0;
}
.pill-selector__btn:only-child {
  border-radius: 999px;
}
.pill-selector__btn:hover:not(.pill-selector__btn--active):not(:disabled) {
  background: rgba(0, 0, 0, 0.04);
  color: #111827;
}
.pill-selector__btn--active {
  background: #e7f0f8;
  color: #337ab7;
  font-weight: 600;
}
.pill-selector__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.fe-overlay {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.fe-overlay__card {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.fe-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid #e5e7eb;
}
.fe-overlay__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.fe-overlay__close {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
  transition: color 0.15s;
}
.fe-overlay__close:hover {
  color: #111827;
}
.fe-overlay__body {
  padding: 20px 22px;
  overflow-y: auto;
  flex: 1;
}
.fe-overlay__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 22px 18px;
  border-top: 1px solid #e5e7eb;
}
.fe-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.fe-switch--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.fe-switch .fe-switch__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.fe-switch .fe-switch__track {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  background: #d1d5db;
  border-radius: 12px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.fe-switch .fe-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.fe-switch .fe-switch__input:checked ~ .fe-switch__track {
  background: #337ab7;
}
.fe-switch .fe-switch__input:checked ~ .fe-switch__track .fe-switch__thumb {
  transform: translateX(20px);
}
.fe-switch .fe-switch__input:focus-visible ~ .fe-switch__track {
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.25);
}
.fe-switch .fe-switch__label {
  font-size: 14px;
  color: #374151;
}
.fe-card {
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  background: #fafbfc;
}
.fe-card.form-validation {
  border-color: #ac2431;
  border-width: 2px;
}
.fe-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #f1f5f9;
  border-bottom: 1px solid #e5e9f0;
  border-radius: 12px 12px 0 0;
}
.fe-card__title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
}
.fe-card__remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: none;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.fe-card__remove-btn:hover {
  border-color: #e03c31;
  color: #e03c31;
}
.fe-card__remove-btn > i {
  font-size: 13px;
}
.fe-card__body {
  padding: 16px;
}
.fe-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fe-accordion__item {
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  overflow: hidden;
}
.fe-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #f8fafc;
  border: none;
  border-bottom: 1px solid transparent;
  width: 100%;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  transition: background 0.15s;
  user-select: none;
}
.fe-accordion__header:hover {
  background: #f1f5f9;
}
.fe-accordion__item--open .fe-accordion__header {
  border-bottom-color: #e5e9f0;
}
.fe-accordion__chevron {
  flex-shrink: 0;
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #9ca3af;
  transition: transform 0.2s ease;
  margin-left: 8px;
}
.fe-accordion__item--open .fe-accordion__chevron {
  transform: rotate(180deg);
}
.fe-accordion__body {
  padding: 12px 16px 16px;
  background: #fff;
  font-size: 13px;
  color: #374151;
}
.rt-scroll-container {
  position: relative;
}
.rt-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: box-shadow 0.15s ease, background 0.15s ease;
}
.rt-scroll-btn:hover {
  background: #f5f5f5;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}
.rt-scroll-btn--left {
  left: -21px;
}
.rt-scroll-btn--right {
  right: -21px;
}
.rt-scroll-chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid #555;
  border-bottom: 2.5px solid #555;
}
.rt-scroll-chevron--left {
  transform: rotate(135deg);
  margin-left: 4px;
}
.rt-scroll-chevron--right {
  transform: rotate(-45deg);
  margin-right: 4px;
}
.rt-col-toggle {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.rt-col-toggle__anchor {
  position: relative;
  display: inline-block;
}
.rt-col-toggle__dropdown {
  right: 0;
  left: auto;
}
.rt-col-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.rt-col-toggle__btn:hover {
  background: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.rt-col-toggle__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  z-index: 100;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 10px 12px;
  width: min(340px, calc(100vw - 24px));
  max-height: 60vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 2px 8px;
  align-content: start;
}
@media (max-width: 480px) {
  .rt-col-toggle__dropdown {
    right: auto;
    left: 0;
  }
}
.rt-col-toggle__item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 6px;
  border-radius: 4px;
  font-size: 12.5px;
  color: #333;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rt-col-toggle__item:hover {
  background: #f5f5f5;
}
.rt-col-toggle__item--all {
  grid-column: 1 / -1;
  font-weight: 600;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0;
  padding-bottom: 7px;
  margin-bottom: 2px;
}
.rt-col-toggle__item input[type="checkbox"] {
  cursor: pointer;
  accent-color: #AC2431;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.ReactTable {
  overflow-x: auto;
  position: relative;
}
.ReactTable table {
  border-spacing: 0 2px;
  border-collapse: separate;
}
.ReactTable table thead tr th {
  padding: 10px;
  border: 0;
  text-align: left;
  position: relative;
  font-size: 11px;
  font-weight: 700;
  color: #494949;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.ReactTable table thead tr th.sortable:hover {
  background-color: #f5f5f5;
}
.ReactTable table thead tr th .sort-indicator {
  display: inline-block;
  width: 10px;
  height: 14px;
  margin-left: -1em;
  position: relative;
  opacity: 0.25;
  pointer-events: none;
}
.ReactTable table thead tr th .sort-indicator::before,
.ReactTable table thead tr th .sort-indicator::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.ReactTable table thead tr th .sort-indicator::before {
  top: 0;
  border-bottom: 6px solid #494949;
}
.ReactTable table thead tr th .sort-indicator::after {
  bottom: 0;
  border-top: 6px solid #494949;
}
.ReactTable table thead tr th.sorted-asc .sort-indicator {
  opacity: 1;
}
.ReactTable table thead tr th.sorted-asc .sort-indicator::before {
  border-bottom-color: #ac2431;
}
.ReactTable table thead tr th.sorted-asc .sort-indicator::after {
  border-top-color: rgba(172, 36, 49, 0.25);
}
.ReactTable table thead tr th.sorted-desc .sort-indicator {
  opacity: 1;
}
.ReactTable table thead tr th.sorted-desc .sort-indicator::after {
  border-top-color: #ac2431;
}
.ReactTable table thead tr th.sorted-desc .sort-indicator::before {
  border-bottom-color: rgba(172, 36, 49, 0.25);
}
.ReactTable table thead tr th .resize-handle {
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  cursor: col-resize;
  background: transparent;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease, width 0.2s ease;
  user-select: none;
  touch-action: none;
}
.ReactTable table thead tr th .resize-handle:hover {
  background: rgba(128, 128, 128, 0.7) !important;
  width: 4px !important;
  opacity: 1;
}
.ReactTable table thead tr th .resize-handle:active {
  background: rgba(128, 128, 128, 0.9) !important;
  width: 4px !important;
  opacity: 1;
}
.ReactTable table thead tr th:hover .resize-handle {
  background: rgba(128, 128, 128, 0.5);
  opacity: 1;
}
.ReactTable table thead tr th.resizing .resize-handle {
  background: rgba(128, 128, 128, 0.9) !important;
  width: 4px !important;
  opacity: 1 !important;
}
.ReactTable tbody tr {
  background-color: #fff;
  transition: background 0.2s linear;
}
.ReactTable tbody tr:hover {
  background-color: #fff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.ReactTable tbody tr[data-qnt="0"] > .expandable {
  visibility: hidden;
}
.ReactTable tbody tr[channels-markup="1"] {
  background-color: #f3dee0 !important;
}
.ReactTable tbody tr td {
  padding: 10px !important;
  border: 0;
  text-align: left;
  vertical-align: top;
}
.ReactTable tbody tr td:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ReactTable tbody tr td:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.ReactTable tbody tr td .users-actions span {
  margin-right: 4px;
}
.ReactTable tbody tr td span {
  vertical-align: middle;
}
.rt-expander-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #495057;
  transition: transform 0.2s ease;
}
.rt-expander-btn:hover .rt-chevron {
  opacity: 1;
}
.rt-chevron {
  width: 12px;
  height: 12px;
  display: inline-block;
  position: relative;
  transition: transform 0.25s ease;
}
.rt-chevron::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  margin-left: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.rt-chevron.open::before {
  transform: rotate(225deg);
}
.rt-no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #6C757D;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  background-color: #FAFAFA;
  border-radius: 8px;
  border: 1px dashed #E9ECEF;
}
.rt-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
  width: 100%;
}
.rt-pagination .pagination {
  margin-bottom: 0;
}
.rt-page-info-separator {
  margin: 0 6px;
}
.rt-page-size {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rt-page-size-label {
  color: #6c757d;
  font-size: 14px;
}
.rt-page-size-select {
  width: 100px;
}
.custom-pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  background: #ffffff;
  color: #495057;
  border: 1px solid #ced4da;
  border-radius: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  margin: 0;
  vertical-align: top;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.custom-pagination-btn + .custom-pagination-btn {
  border-left: 0;
}
.custom-pagination-btn:hover:not(:disabled) {
  background: #f8f9fa;
  color: #212529;
}
.custom-pagination-btn:active:not(:disabled) {
  background: #e9ecef;
}
.custom-pagination-btn:focus-visible {
  outline: 0;
  z-index: 2;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-pagination-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background: #f8f9fa;
}
.custom-pagination-btn:first-of-type {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.custom-pagination-btn:last-of-type {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.actions-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  gap: 2px;
  padding: 3px;
  border: 1px solid #dedede;
  border-radius: 20px;
  background-color: #f5f5f5;
}
.actions-container .action,
.actions-container .dropdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #337ab7;
}
.actions-container .action[data-tooltip]::after,
.actions-container .dropdown[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #2d2d2d;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 100;
}
.actions-container .action[data-tooltip]:hover::after,
.actions-container .dropdown[data-tooltip]:hover::after {
  opacity: 1;
}
.actions-container .action:hover,
.actions-container .dropdown:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #85bee8;
  text-decoration: none;
  transform: translateY(-1px);
}
.actions-container .action:focus,
.actions-container .dropdown:focus {
  outline: 2px solid #85bee8;
  outline-offset: 2px;
}
.actions-container .action:active,
.actions-container .dropdown:active {
  transform: translateY(0);
}
.actions-container .action.disabled,
.actions-container .dropdown.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.actions-container .action.disabled:hover,
.actions-container .dropdown.disabled:hover {
  background-color: transparent;
  color: #337ab7;
  transform: none;
}
.actions-container--mobile .action {
  width: 26px;
  height: 26px;
  font-size: 13px;
  padding: 4px;
}
.messaging-pagination-btn {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.messaging-pagination-btn:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.messaging-pagination-btn:focus {
  outline: 0;
}
.ReactTable table tbody tr:only-child td[colspan] {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  border-radius: 0px;
  padding: 0px !important;
}
.rt-cell-truncate {
  overflow: hidden;
  min-width: 0;
}
.rt-cell-truncate * {
  max-width: 100%;
}
.rt-cell-truncate .fe-tooltip-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}
.rt-cell-truncate-1 {
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rt-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  padding: 12px 8px;
  font-size: 12px;
  color: #555;
}
.rt-legend__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.rt-legend__label {
  line-height: 1;
}
.rt-legend__icon--critical {
  color: #c91918;
  font-size: 16px;
}
.rt-legend__icon--high {
  color: #e68e35;
  font-size: 16px;
}
.rt-legend__icon--medium {
  color: #7eae42;
  font-size: 16px;
}
.rt-legend__icon--low {
  color: #5874b8;
  font-size: 16px;
}
.rt-cell-truncate-2,
.rt-cell-truncate-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
}
.rt-cell-truncate-2 {
  -webkit-line-clamp: 2;
  max-height: calc(1.35em * 2);
}
.rt-cell-truncate-3 {
  -webkit-line-clamp: 3;
  max-height: calc(1.35em * 3);
}
@media (max-width: 992px) {
  .ReactTable table thead tr th {
    white-space: normal;
    word-break: break-word;
    line-height: 1.2;
    font-size: 10px;
    padding: 8px 12px;
  }
  .ReactTable table tbody tr td {
    font-size: 12px;
    line-height: 1.35;
    padding: 8px 12px !important;
  }
}
@media (max-width: 576px) {
  .ReactTable table thead tr th {
    font-size: 9px;
    letter-spacing: 0.3px;
    padding: 6px 8px;
  }
  .ReactTable table tbody tr td {
    font-size: 11px;
    padding: 6px 8px !important;
  }
}
.app-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 10000;
  padding: 60px 16px 40px;
  overflow-y: auto;
  animation: app-modal-fade-in 0.15s ease;
}
@keyframes app-modal-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.app-modal-overlay--blur {
  backdrop-filter: blur(6px);
}
.app-modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 40px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  animation: app-modal-slide-up 0.2s ease;
}
@keyframes app-modal-slide-up {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.app-modal-overlay--right {
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
}
.app-modal--drawer {
  height: 100%;
  border-radius: 0;
  overflow-y: auto;
  width: 85%;
  max-width: 85%;
  animation: app-modal-slide-right 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 991px) {
  .app-modal--drawer {
    width: 100%;
    max-width: 100%;
  }
}
@keyframes app-modal-slide-right {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.app-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #374151;
  line-height: 0;
  border-radius: 50%;
  transition: background 0.15s;
}
.app-modal-close:hover {
  background: #f1f5f9;
}
.app-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin: 0 0 12px;
}
.app-modal__header {
  padding: 8px 0 16px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}
.app-modal__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 4px 0;
}
.app-modal__footer {
  padding: 16px 0 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.app-modal--drawer {
  display: flex;
  flex-direction: column;
}
.app-modal--drawer .app-modal__header {
  flex-shrink: 0;
}
.app-modal--drawer .app-modal__body {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.app-modal--drawer .app-modal__body > * {
  flex: 1 1 0;
  min-height: 0;
}
.app-modal--drawer .app-modal__footer {
  flex-shrink: 0;
}
.cmv-modal-prop-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 12px;
}
.cmv-modal-prop-info .cmv-prop-id {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #1e7ebb;
  background: #e8f3fb;
  border: 1px solid #c3dff2;
  border-radius: 3px;
  padding: 2px 7px;
  line-height: 1.5;
  white-space: nowrap;
}
.cmv-modal-prop-info .cmv-prop-ref {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #6b7280;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 3px;
  padding: 2px 7px;
  line-height: 1.5;
  white-space: nowrap;
}
.cmv-modal-prop-info .cmv-prop-title {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-modal-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  text-align: center;
  margin: 0 0 24px;
}
.app-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}
@media screen and (max-width: 991px) {
  .app-modal-overlay {
    padding: 24px 12px 32px;
  }
  .app-modal {
    padding: 28px 20px 32px;
  }
}
.import-modal {
  max-width: 460px;
}
.import-modal .app-modal-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.import-modal .thread-tabs {
  display: flex;
  flex-shrink: 0;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e8ed;
  padding: 6px;
  gap: 4px;
}
.import-modal .thread-tabs__btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.import-modal .thread-tabs__btn--active {
  background: #fff;
  color: #1a5f99;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.import-modal .thread-tabs__btn:not(.import-modal .thread-tabs__btn--active):hover {
  background: #e9eaec;
  color: #374151;
}
.import-modal #dashboard-csv-link,
.import-modal #dashboard-los-link,
.import-modal #mcmv-csv-link,
.import-modal #mcmv-los-link,
.import-modal #pe-csv-link,
.import-modal #pe-los-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.import-modal #dashboard-csv-link svg,
.import-modal #dashboard-los-link svg,
.import-modal #mcmv-csv-link svg,
.import-modal #mcmv-los-link svg,
.import-modal #pe-csv-link svg,
.import-modal #pe-los-link svg {
  color: #666;
}
.import-modal #dashboard-csv-link:hover,
.import-modal #dashboard-los-link:hover,
.import-modal #mcmv-csv-link:hover,
.import-modal #mcmv-los-link:hover,
.import-modal #pe-csv-link:hover,
.import-modal #pe-los-link:hover {
  background: #f0f0f0;
  border-color: #bbb;
  text-decoration: none;
}
.import-modal #dashboard-upload-csv,
.import-modal #dashboard-upload-los,
.import-modal #mcmv-upload-csv,
.import-modal #mcmv-upload-los,
.import-modal #pe-upload-csv,
.import-modal #pe-upload-los {
  display: none;
}
.import-modal label[for="dashboard-upload-csv"],
.import-modal label[for="dashboard-upload-los"],
.import-modal label[for="mcmv-upload-csv"],
.import-modal label[for="mcmv-upload-los"],
.import-modal label[for="pe-upload-csv"],
.import-modal label[for="pe-upload-los"] {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px dashed #dedede;
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  margin: 0;
  transition: border-color 0.15s, background 0.15s;
}
.import-modal label[for="dashboard-upload-csv"]:hover,
.import-modal label[for="dashboard-upload-los"]:hover,
.import-modal label[for="mcmv-upload-csv"]:hover,
.import-modal label[for="mcmv-upload-los"]:hover,
.import-modal label[for="pe-upload-csv"]:hover,
.import-modal label[for="pe-upload-los"]:hover {
  border-color: #337ab7;
  background: #f5f9ff;
}
.import-modal label[for="dashboard-upload-csv"] #csv-label-wrapper,
.import-modal label[for="dashboard-upload-los"] #csv-label-wrapper,
.import-modal label[for="mcmv-upload-csv"] #csv-label-wrapper,
.import-modal label[for="mcmv-upload-los"] #csv-label-wrapper,
.import-modal label[for="pe-upload-csv"] #csv-label-wrapper,
.import-modal label[for="pe-upload-los"] #csv-label-wrapper,
.import-modal label[for="dashboard-upload-csv"] #los-label-wrapper,
.import-modal label[for="dashboard-upload-los"] #los-label-wrapper,
.import-modal label[for="mcmv-upload-csv"] #los-label-wrapper,
.import-modal label[for="mcmv-upload-los"] #los-label-wrapper,
.import-modal label[for="pe-upload-csv"] #los-label-wrapper,
.import-modal label[for="pe-upload-los"] #los-label-wrapper {
  position: static;
  flex-shrink: 0;
  width: auto;
  height: auto;
  background: #337ab7;
  border-right: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
  white-space: nowrap;
}
.import-modal label[for="dashboard-upload-csv"] #csv-file-name,
.import-modal label[for="dashboard-upload-los"] #csv-file-name,
.import-modal label[for="mcmv-upload-csv"] #csv-file-name,
.import-modal label[for="mcmv-upload-los"] #csv-file-name,
.import-modal label[for="pe-upload-csv"] #csv-file-name,
.import-modal label[for="pe-upload-los"] #csv-file-name,
.import-modal label[for="dashboard-upload-csv"] #los-file-name,
.import-modal label[for="dashboard-upload-los"] #los-file-name,
.import-modal label[for="mcmv-upload-csv"] #los-file-name,
.import-modal label[for="mcmv-upload-los"] #los-file-name,
.import-modal label[for="pe-upload-csv"] #los-file-name,
.import-modal label[for="pe-upload-los"] #los-file-name {
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.import-modal .file-type-bulletin {
  list-style: none;
  padding: 0;
  margin: 0;
}
.import-modal .file-type-bulletin li {
  font-size: 12px;
  color: #bbb;
  padding-left: 14px;
  position: relative;
}
.import-modal .file-type-bulletin li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 8px;
  color: #d5d5d5;
}
.import-modal .import-modal-actions {
  display: flex;
  justify-content: flex-end;
}
.import-modal .import-modal-actions button {
  width: auto;
}
.ical-settings-modal .parallel-radio-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.ical-settings-modal .parallel-radio-container .radio-wrap {
  flex: 0 0 50%;
  max-width: 50%;
}
.ical-url-modal .ical-url-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ical-url-modal .ical-url-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #dedede;
  border-radius: 8px;
  font-size: 13px;
  color: #2d2d2d;
  background: #f5f5f5;
  outline: none;
}
.ical-url-modal .ical-copy-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  color: #494949;
  transition: background 0.15s, border-color 0.15s;
}
.ical-url-modal .ical-copy-btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.ical-url-modal .ical-copy-success {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  color: #159d47;
}
.cp-modal-options {
  display: flex;
  gap: 20px;
}
.cp-modal-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 36px 20px 28px;
  border: 1.5px solid #e5e9f0;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.cp-modal-option:hover:not(:disabled):not(.cp-modal-option--disabled) {
  border-color: #9ca3af;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.cp-modal-option--disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.cp-modal-option-icon {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 8px;
}
.cp-modal-option-label {
  font-size: 17px;
  font-weight: 600;
  color: #111827;
}
.cp-modal-option-desc {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .cp-modal-options {
    flex-direction: column;
  }
  .cp-modal-option-icon {
    font-size: 48px;
  }
}
.properties .rep-icon-container {
  font-size: 20px;
}
.rt-tr-group {
  animation-name: fadein;
  animation-duration: 2s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.create-icon {
  font-size: 10px;
  margin-right: 10px;
}
.page-size {
  margin-right: 15px;
  white-space: nowrap;
}
.page-size input.form-field {
  width: 40px;
  height: 30px;
  padding: 3px;
  border: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-right: 5px;
}
.page-size input.form-field:focus {
  box-shadow: 0 1px 8px 2px rgba(0, 0, 0, 0.05);
}
.propertyId,
.referenceId {
  overflow: hidden;
}
.search-wrapper {
  display: flex;
}
.dirty::before {
  content: "";
}
.pricing-search-bar {
  float: right;
  margin: 0px;
  min-height: 33px;
  margin-bottom: 5px;
}
.property-item .input-question-mark {
  top: 3px;
  font-size: 18px;
  margin-left: 3px;
}
.property-item .panel {
  padding: 15px 0;
}
.property-item .panel label.form-label {
  font-size: 14px;
  font-weight: bold;
}
.property-item .panel .sub-panel label {
  font-size: 14px;
}
.property-item .panel-heading {
  padding: 0;
  padding-bottom: 13px;
}
.property-item .panel-title {
  font-size: 18px;
}
.property-item .panel-title a {
  padding-bottom: 10px;
}
.property-item .panel-title .collapsed {
  padding-bottom: 0px;
}
.property-item .panel-title .panel-subtext {
  font-size: 14px;
  display: inline-block;
  margin: 0 0 0 20px;
}
.property-item .panel-title .panel-btn {
  margin-top: -4px;
}
.property-item .panel-title .panel-btn-margin {
  margin-right: 30px;
}
.property-item .checkbox-group .checkbox-input {
  width: 20%;
}
.property-item .float-left {
  float: left;
}
.property-item .time-picker-col {
  margin-bottom: 15px;
}
.property-item .time-picker-col .cico {
  position: absolute;
  right: 25px;
  top: 35px;
}
.property-item .bordered_section {
  border: 1px solid #ddd;
  overflow: hidden;
  padding: 15px 0 25px;
}
.property-item .currency-panel .panel-body > .row {
  margin-bottom: 25px;
}
.property-item .address-section > .row,
.property-item .rows-section > .row {
  margin-top: 20px;
}
.property-item .address-search-row {
  display: flex;
  align-items: center;
}
.property-item .address-search-row input#add-input,
.property-item .address-search-row select#add-input,
.property-item .address-search-row textarea#add-input,
.property-item .address-search-row #add-input {
  flex: 1 1 auto;
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.property-item .address-search-row .btn-add-manually {
  margin-left: 0;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  line-height: 24px;
}
.property-item .map-section {
  margin-top: 20px;
}
.property-item .map-section.hidden {
  display: none;
}
.property-item .property-type-section .prop-type-col {
  margin-bottom: 20px;
}
.property-item .property-type-section .prop-checks {
  margin-bottom: 20px;
}
.property-item .properties__options {
  margin-right: 10px;
}
.placeholder-wrap {
  position: relative;
}
.placeholder-wrap .placeholder {
  position: absolute;
  right: 8px;
  top: 6px;
  pointer-events: none;
  font-weight: 600;
  background-color: transparent;
  color: #2d2d2d;
  opacity: 0.7;
}
.bed-config-div {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
}
.bed-config-div.no-frame {
  padding: 0;
  border: none;
}
.bed-config-div.form-validation {
  border: 2px solid #ac2431;
}
.common-area-container {
  border: 1px solid #ddd;
  width: 100%;
  overflow: auto;
  padding: 15px;
}
.common-area-container.no-frame {
  border: none;
  padding: 0;
  overflow: visible;
}
.common-area-container.form-validation {
  border: 3px solid #ac2431;
}
.common-area-delete-button {
  font-size: 20px;
  color: #ac2431;
}
.validation-icon {
  width: 18px;
  display: inline-block;
  margin: 0 5px 6px 0;
}
.padding-box {
  padding: 0px 8px !important;
}
.margin-btn {
  margin-left: 8px;
}
.address-card {
  padding: 5px 15px 25px;
  background-color: #f2f2f2;
  margin: 20px 0 0;
  border-radius: 4px;
  animation: appear 0.8s;
}
.address-card__label {
  font-size: 14px;
  font-weight: bold;
  display: block;
}
.address-card.hidden {
  display: none;
}
.readonly .form-field,
.readonly label,
.readonly .picky,
.readonly .manage-device-icon,
.readonly .file-input-wrap,
.readonly .primary-btn,
.readonly .react-switch-bg,
.readonly .react-switch-handle {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .page-size {
    display: none;
  }
  .search-inp input.form-field {
    width: auto;
  }
}
.property-item .guest-book-preview p {
  margin-bottom: 10px;
  line-height: 1.2em;
}
.property-item .guest-book-preview ol,
.property-item .guest-book-preview ul {
  margin-left: 20px;
}
.properties-table table thead tr th:nth-child(3) {
  border-right: none !important;
}
.properties-table table thead tr th:nth-child(4) {
  border-left: none !important;
}
.properties-table table tbody tr td:first-child {
  padding: 0 !important;
}
.photos-preview__thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.photos-preview--empty {
  width: 60px;
  height: 60px;
  background-color: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0aabf;
  border: 1px dashed #d9e2ec;
}
.photos-preview--empty i {
  font-size: 14px;
}
.actions-container--mobile,
.actions-container--mobile-compact {
  position: relative;
  width: 100%;
}
.actions-container--mobile .kebab-dropdown-button .btn,
.actions-container--mobile-compact .kebab-dropdown-button .btn {
  border: 1px solid #d5d5d5;
  background-color: #fff;
  color: #2d2d2d;
  font-size: 18px;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}
.actions-container--mobile .kebab-dropdown-button .btn:hover,
.actions-container--mobile-compact .kebab-dropdown-button .btn:hover {
  background-color: #f5f5f5;
  border-color: #d5d5d5;
}
.actions-container--mobile .kebab-dropdown-button .btn:focus,
.actions-container--mobile-compact .kebab-dropdown-button .btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(133, 190, 232, 0.25);
  border-color: #85bee8;
}
.actions-container--mobile .kebab-dropdown-button .dropdown-menu,
.actions-container--mobile-compact .kebab-dropdown-button .dropdown-menu {
  min-width: 140px;
  padding: 0.25rem 0;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.actions-container--mobile .kebab-dropdown-button .dropdown-menu .dropdown-item,
.actions-container--mobile-compact .kebab-dropdown-button .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  text-decoration: none;
}
.actions-container--mobile .kebab-dropdown-button .dropdown-menu .dropdown-item:hover,
.actions-container--mobile-compact .kebab-dropdown-button .dropdown-menu .dropdown-item:hover {
  background-color: #f5f5f5;
}
.actions-container--mobile .kebab-dropdown-button .dropdown-menu .dropdown-item i,
.actions-container--mobile-compact .kebab-dropdown-button .dropdown-menu .dropdown-item i {
  width: 16px;
  font-size: 14px;
}
.actions-container--mobile .kebab-dropdown-button .dropdown-menu .dropdown-item .validation-icon,
.actions-container--mobile-compact .kebab-dropdown-button .dropdown-menu .dropdown-item .validation-icon {
  width: 14px;
  height: 14px;
}
.actions-container--mobile .kebab-dropdown-button .dropdown-menu .dropdown-divider,
.actions-container--mobile-compact .kebab-dropdown-button .dropdown-menu .dropdown-divider {
  margin: 0.25rem 0;
}
.actions-container--tablet .d-flex,
.actions-container--desktop .d-flex {
  gap: 0.5rem;
}
.actions-container--desktop .d-flex {
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .actions-container--mobile .kebab-dropdown-button .dropdown-menu,
  .actions-container--mobile-compact .kebab-dropdown-button .dropdown-menu {
    min-width: 120px;
  }
  .actions-container--mobile .kebab-dropdown-button .dropdown-menu .dropdown-item,
  .actions-container--mobile-compact .kebab-dropdown-button .dropdown-menu .dropdown-item {
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 768px) {
  .actions-container--tablet .action {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
.guided-review-modal,
.guided-review-inline {
  min-width: min(600px, calc(100vw - 32px));
}
.guided-review-modal .wizard-step p,
.guided-review-inline .wizard-step p {
  font-size: 13px;
}
.guided-review-modal .wizard-step p:not(.no-margin),
.guided-review-inline .wizard-step p:not(.no-margin) {
  margin: 10px 0;
}
.col-header--abbr {
  display: none;
}
@media screen and (max-width: 767px) {
  .col-header--full {
    display: none;
  }
  .col-header--abbr {
    display: inline;
  }
}
.rrte {
  font-family: inherit;
}
.rrte-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.rrte-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.rrte-btn {
  border: 1px solid #dee2e6;
  background: #fff;
  padding: 4px 8px;
  cursor: pointer;
  margin-right: 0;
  border-radius: 4px;
  font-size: 13px;
  color: #2d2d2d;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rrte-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}
.rrte-btn:hover {
  background: #f8f9fa;
}
.rrte-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.25);
}
.rrte-btn.active {
  background: #e9f5ff;
  border-color: #90caf9;
}
.rrte-icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
}
.rrte-label {
  font-size: 12px;
  color: #495057;
}
.rrte-select {
  border: 1px solid #dee2e6;
  padding: 4px 6px;
  border-radius: 4px;
  background: #fff;
}
.rrte-container {
  position: relative;
}
.rrte-editor {
  min-height: 150px;
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 10px;
  line-height: 1.4;
  background: #fff;
  outline: none;
}
.rrte-editor u,
.rrte-editor span[style*="underline"],
.rrte-editor [style*="text-decoration: underline"],
.rrte-editor [style*="text-decoration-line: underline"] {
  text-decoration: underline !important;
}
.rrte-editor:focus {
  border-color: #337ab7;
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.2);
}
.rrte-placeholder {
  position: absolute;
  top: 10px;
  left: 12px;
  color: #adb5bd;
  pointer-events: none;
  font-size: 14px;
}
.rrte-editor strong,
.rrte-editor b,
.rrte-editor span[style*="font-weight"],
.rrte-editor [style*="font-weight:"] {
  font-weight: 700 !important;
}
.rrte-editor,
.pe-sum-description {
  font-family: inherit;
}
.rrte-editor h1,
.pe-sum-description h1,
.rrte-editor h2,
.pe-sum-description h2,
.rrte-editor h3,
.pe-sum-description h3,
.rrte-editor h4,
.pe-sum-description h4,
.rrte-editor h5,
.pe-sum-description h5,
.rrte-editor h6,
.pe-sum-description h6 {
  font-weight: bold;
  line-height: 1.2;
}
.rrte-editor h1,
.pe-sum-description h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
.rrte-editor h2,
.pe-sum-description h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
.rrte-editor h3,
.pe-sum-description h3 {
  font-size: 1.17em;
  margin: 1em 0;
}
.rrte-editor h4,
.pe-sum-description h4 {
  font-size: 1em;
  margin: 1.33em 0;
}
.rrte-editor h5,
.pe-sum-description h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}
.rrte-editor h6,
.pe-sum-description h6 {
  font-size: 0.67em;
  margin: 2.33em 0;
}
.rrte-editor > :first-child,
.pe-sum-description > :first-child {
  margin-top: 0.2em;
}
.rrte-editor p,
.pe-sum-description p {
  margin: 1em 0;
}
.rrte-editor ul,
.pe-sum-description ul,
.rrte-editor ol,
.pe-sum-description ol {
  margin: 1em 0;
  padding-left: 40px;
}
.rrte-editor ul,
.pe-sum-description ul {
  list-style: disc outside;
}
.rrte-editor ol,
.pe-sum-description ol {
  list-style: decimal outside;
}
.rrte-editor ul ul,
.pe-sum-description ul ul,
.rrte-editor ol ul,
.pe-sum-description ol ul {
  list-style-type: circle;
}
.rrte-editor ul ul ul,
.pe-sum-description ul ul ul,
.rrte-editor ol ul ul,
.pe-sum-description ol ul ul,
.rrte-editor ul ol ul,
.pe-sum-description ul ol ul,
.rrte-editor ol ol ul,
.pe-sum-description ol ol ul {
  list-style-type: square;
}
.rrte-editor li,
.pe-sum-description li {
  display: list-item;
}
.rrte-editor blockquote,
.pe-sum-description blockquote {
  margin: 1em 40px;
}
.rrte-editor hr,
.pe-sum-description hr {
  margin: 0.5em auto;
  border: 0;
  border-top: 1px solid #ccc;
}
.rrte-editor a,
.pe-sum-description a {
  color: -webkit-link;
  text-decoration: underline;
  cursor: pointer;
}
.rrte-editor em,
.pe-sum-description em,
.rrte-editor i,
.pe-sum-description i {
  font-style: italic;
}
.rrte-editor small,
.pe-sum-description small {
  font-size: 0.8em;
}
.rrte-editor sub,
.pe-sum-description sub,
.rrte-editor sup,
.pe-sum-description sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.rrte-editor sub,
.pe-sum-description sub {
  bottom: -0.25em;
}
.rrte-editor sup,
.pe-sum-description sup {
  top: -0.5em;
}
/*---===<<< COLORS >>>===---*/
@lightblueb :rgba (39,74,187, 0.1);
/*---===<<<Global Themes Colors >>>===---*/
/*---===<<< Calendar styles >>>===---*/
/*---===<<< TYPOGOGRAPHY & Styles >>>===---*/
/*---===<<< MEDIA QUERIES BREAKPOINTS >>>===---*/
.manage-website-section.main-container textarea.form-field,
.manage-website-section.main-container select.form-field,
.manage-website-section.main-container input[type="text"].form-field,
.manage-website-section.main-container input[type="password"].form-field,
.manage-website-section.main-container input[type="number"].form-field,
.manage-website-section.main-container input[type="email"].form-field,
.manage-website-section.main-container input[type="url"].form-field,
.manage-website-section.main-container input[type="search"].form-field,
.manage-website-section.main-container input[type="tel"].form-field {
  border: 1px solid #dedede;
}
.manage-website-section.main-container .link-text {
  color: #0077ce;
}
.manage-website-section.main-container .span-divider {
  margin: 0 10px;
}
.manage-website-section.main-container .preview-btn {
  margin-right: 5px;
}
.manage-website-section.main-container .publish-btn {
  margin-left: 5px;
}
.manage-website-section.main-container .col-heading {
  margin-bottom: 15px;
}
.manage-website-section.main-container .col-heading h1 {
  display: inline-block;
  margin-bottom: 0;
}
.manage-website-section.main-container .form-column {
  background: #fff;
  padding: 30px;
}
.manage-website-section.main-container .form-column label.form-label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 7px;
}
.manage-website-section.main-container .form-column .sub-panel label {
  font-size: 14px;
}
.manage-website-section.main-container .form-column .row-heading h2 {
  margin-bottom: 15px;
}
.manage-website-section.main-container .thumbs-list {
  margin-top: 5px;
}
.manage-website-section.main-container .thumbs-list input + .theme-item {
  margin-bottom: 15px;
  background: #000;
  cursor: pointer;
}
.manage-website-section.main-container .thumbs-list input + .theme-item img {
  width: 100%;
  opacity: 0.9;
}
.manage-website-section.main-container .thumbs-list input + .theme-item .caption {
  background: #fff;
  padding: 10px 5px;
  font-weight: 600;
}
.manage-website-section.main-container .thumbs-list input:checked + .theme-item {
  outline: 4px solid #5ad888;
  position: relative;
}
.manage-website-section.main-container .thumbs-list input:checked + .theme-item:after {
  content: "\E90F";
  position: absolute;
  top: 5px;
  right: 5px;
  font-family: "RedAwning";
  color: #5ad888;
}
.manage-website-section.main-container .icon-question-mark {
  cursor: pointer;
}
.manage-website-section.main-container .domain input[type="text"].form-field:disabled {
  color: unset;
}
.manage-website-section.main-container .custom-domain-container {
  border: 1px solid #d5d5d5;
  overflow: auto;
  padding: 10px;
  border-radius: 3px;
}
.manage-website-section.main-container .custom-domain-container textarea,
.manage-website-section.main-container .custom-domain-container input[type="text"].form-field:disabled {
  color: unset;
  resize: none;
}
.manage-website-section.main-container .custom-domain-container .cd-status-container {
  display: flex;
  justify-content: space-between;
  padding-right: 11px;
}
.manage-website-section.main-container .custom-domain-container .cd-status-container .cd-instructions .info-popover {
  margin-left: 0px;
}
.manage-website-section.main-container .custom-domain-container .cd-status-container .cd-instructions .icon-question-mark {
  font-size: 18px;
  color: #337ab7;
  margin-left: 0px;
}
.manage-website-section.main-container .custom-domain-container .cd-status-container .info-popover {
  margin-left: 12px;
}
.manage-website-section.main-container .custom-domain-container .cd-status-container .cd-status-active {
  color: #159d47;
}
.manage-website-section.main-container .custom-domain-container .cd-status-container .cd-status-certificate_pending {
  color: #ff9e00;
}
.manage-website-section.main-container .custom-domain-container .cd-status-container .cd-status-certificate_failed {
  color: #ac2431;
}
.manage-website-section.main-container .custom-domain-container .cd-field {
  display: flex;
  align-items: center;
}
.manage-website-section.main-container .custom-domain-container .cd-field .icon-copy {
  font-size: 18px;
  padding: 0px 10px;
  color: #999999;
  cursor: pointer;
}
.manage-website-section.main-container .tab-content {
  border: 1px solid #d5d5d5;
  border-radius: 5px;
}
.manage-website-section.main-container .tab-container {
  padding: 15px;
}
.manage-website-section.main-container .tab-container .icon-delete {
  color: #ac2431;
  font-size: 20px;
}
.img-container-1 {
  height: 150px;
}
.img-container-2 {
  height: 350px;
}
.img-container-3 {
  height: 440px;
}
.img-container-4 {
  height: 375px;
}
.img-container-1,
.img-container-2,
.img-container-3,
.img-container-4 {
  margin-bottom: 15px;
  margin-top: 15px;
  padding: 10px;
}
.img-container-1 .img-1,
.img-container-2 .img-1,
.img-container-3 .img-1,
.img-container-4 .img-1,
.img-container-1 .img-2,
.img-container-2 .img-2,
.img-container-3 .img-2,
.img-container-4 .img-2,
.img-container-1 .img-3,
.img-container-2 .img-3,
.img-container-3 .img-3,
.img-container-4 .img-3,
.img-container-1 .img-4,
.img-container-2 .img-4,
.img-container-3 .img-4,
.img-container-4 .img-4 {
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
}
.img-container-1 .img-1,
.img-container-2 .img-1,
.img-container-3 .img-1,
.img-container-4 .img-1 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA5gAAACSCAYAAAAgu2VGAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAB9NSURBVHhe7d19fFTVgf/xr7AkNPwmC00Um6hropUYNWBLoiUgS8QH0l0EFgPKU8VgkYgiVEWxPFhABEEBeVBYFIEaqcuDDzzUCJUQWwP7gkRJg7WJohPKMlkx82qWiY3+zp25CZOYhARuAoTP+/Ua5t5z79x77pn5I1/Ouede8J0hAAAAAABOUxv7HQAAAACA00LABAAAAAA4goAJAAAAAHDE9+7B9Hq9Ki0tVXl5uV0CAAAAAEBNYWFhioiIkMvlsktqBUwrXLrdbkVFRSk8PNwuBQAAAACgprKyMpWUlCg6Oro6ZNYYImv1XBIuAQAAAAAnY+VGKz9aObJKjYBpDYslXAIAAAAAGsPKj8G3VzLJDwAAAADAEQRMAAAAAIAjCJgAAAAAAEcQMAEAAAAAjiBgAgAAAAAcQcAEAAAAADiCgAkAAAAAcAQBEwAAAADgiBYJmN+Ue/VF0SHlfmy/Dh6Rx1uub+ztAAAAAIBz3wXfGfayCgoKFB8fb6+dpm/+V/v2HNbmPx/X4Uq7rLY2bXRpVLgG97xMceHt7EIAAAAAwLkiOEc2Sw9m+eefaObqYi3/uIFwafn2W33x5TE9l5mv6dsPyfOtXQ4AAAAAOOc4HDAr5ck7oCnbvfqiiWHx8OdHNeW1Qn1cbhcAAAAAAM4pjgbM8sJPNOvD4zrljPj3v2vxm5/qMD2ZAAAAAHDOcS5gln+pV/9U3nC4bNNG4e3Nq6HbLcu+1tx3v2QCIAAAAAA4xzgUMCtV+MFR7auwV2sJu9ClsQOu0Yvp12veSPO656d64T8uVFIHe4dayj8/qteKGrp5EwAAAABwtnEmYFa49e5ndY9rDYu6ULMGXqXrL2pvlwS0i7hM9w6M1LV11uBb5XzsphcTAAAAAM4hjgTMsvwyfVzPfZNdrrxMYf6l4/o4a78efjlf7x71F5j0eYluuNheru1vZcrx2ssAAAAAgLOeAwHzuD760mcvf9/fSg7L4/XK88WXeuezSpV/841y/vK/9ta2aldvDXwq/IJhsgAAAABwrnAgYHpU6LEX63D40xJNee0TTdn6tYrsXs4fhNiz/Hxboo+OBBbr8rdjX9tLAAAAAICz3ekHTO838jT2sSJt2iqpR4wmdneZlUod/pNHOQ3caHn4GA/FBAAAAIBzxekHzOOV+j978WSuTfyx7r32h2pnwqUnr1BzP2YaHwAAAABoLU4/YP5zO0XYiw1rpysutZ9LcvQzLd9zvOFnZhrhHRp6YCYAAAAA4Gxy+gEzJMTKmI1Qqa+9ldK3x1X4UZm+aMSw2sgOgflnAQAAAABnPwcm+emkKzrZiw36Vn/Yvl+/XHlAz33amJs22+iKi617NQEAAAAA5wIHAmZ7XXdJqL3cgDbtdEvfKzSr3w91bYhd1pB2P9C1l9jLAAAAAICzngMBUwpPCNe1JzvSxR01OLajIi+N0fjkMJ1sVO2PulykOHsZAAAAAHD2cyRgKuQyDY5va6/U49hxFfknja3U4SM+NTh/bEgHDb3xh/YKAAAAAOBccMF3hr2sgoICxcfH22tN9K1HW9Z/rs1l9no92plI+01Dt2C2aac7+l+j1ItOElgBAAAAAGdccI50pgfT0iZSqf0v0S3h9no9ThouU68mXAIAAADAOci5gGkJ66zBaVfo3n9pe9J7LGsLv/Cf9fCQa5QaxbMvAQAAAOBc5GzAtLTpqKTbuum5oVEafEk7/5DYhrQLb6/Bt16leQOvVJyLnksAAAAAOFc5dw9mfb49Lo/bo6LS4/rrkW9UborCXGG64uIOuvaSTgoLIVQCAAAAwLkqOEc2f8AEAAAAALRazTPJDwAAAADgvEbABAAAAAA4goAJAAAAAHAEARMAAAAA4AgCJgAAAADAEQRMAAAAAIAjCJgAAAAAAEcQMAEAAAAAjiBgAgAAAAAcQcA835SXKOeNtdr2idcuAAAAAABnXPCdYS+roKBA8fHx9topqvSqeO8O5exzq0zhir4xRf2ui1JIW3t7a1JRonxznT571RLaOVZxl0actdd78OX+GrakRAobrVW7xinBLgcAAACAUxGcIx0NmBUFa/XQg89rzzG7wBZy1XAtXDpBiR3tgtP1P5v1UOpvlNPj19q+6A5F2MUtrqoe9mq1sAglp8/TzGEJcp1lQbPio1W6J2OpSnrM1Btzbj9zbQcAAACgVQjOkc4NkS3ZrEfGBsJlyFW3a/TUhVo2a4JuvypEujhG0S57PyccK1WxvXi2SEgdrdHpw3X7deZCy0uVs8isL8lXhb39bBFy3Wit27VXOwmXAAAAABzmUA+mV9sm99GTWWbx8uFa9eoEJYQFtlhDZr0+l1zWujdf69ftlscsxv18nFIutXbwKv+NNdptCiNvHKG0boEk6v1km/5zxRrtOWJWXDHqN+Re3ZEcI++updq0c69WbcmXopKVltpF/09xGjA2RVH+T1aoZNd6LX19q4q9Uvjl/TR8TJqSLzVB16/qfJHqOSxNkfue1/Mr98itaCWmT9CEm6Lk/Wi9nlm+2Xw+XDH9J2jq4C6q+nQNQT2Yw1fu1YRugeKSjQ9p8KwcU5MYTXj9dxp+RaD85HUztdu/Xmv+5Am0RUS+nl+01N8G0d3HaUJGsqLKTRvOW6bNn5WZz9+hCZPT1KWqrQ3vZznamrlZmwvc/vXo7iN0f/rtirH3qTq+IntqxOAEuWq1R3TBWj33qlU/69rv12MDz75eWAAAAABnD+eHyHp36Mk+j2qbWUxb9IEe7VFnHKsnkJVq84O36TcfSMlTt2th/whVfLRUw+5ZVauXMkbjXl6n7jt7aPSrdlE1E2r3mlBrAlz+omFme+3+zRhzvnXmfFa9Tpwv5qoucn9yMKiXMUq3D4xTzsYdJnZVCdHtc7ZrZt86umDrCZiqPKhVA4dpaYnU5ZHfad2QGFPYmLqZ2r35kG57yhzx8i7q8j8HdbDcX+wXddsdivtws3YEDUEOuW2uts9KMUHRfHb7o7ptyo7AhiAhN83UWwsCPZbVx68eXtxQe0gps3Zq7m1Odj8DAAAAaE2cHyL7WaECsSZZXa6sJ1w2QeHOQLiMSF+lvXv3au8Hb2rZgpkafl2IEtJ3at0jiYEduz+qdVk7tTMrMFlNxYfPa6w/wJnQtmSn9n64U8tGWuGuWGute0NrjVct/jLU7Pemdm6cqzR/92eJtm13644FpmzLKo27ziqr0La9TRzq2jZSUVcGFg8eCUTVptZNnxUr9O5lejPrTc0dHOibLdm+Ve7UhaZsu1aNDUzPU7F9r/Ltz0b0vVePDp6gZRs/8LfbzuXDzdnMPruWavMngX0aUt0eW0zg7REo27FrT1DYBgAAAID6ORMwKyuaFsBOIjIqEJ5K31imVbuKVaooJd5kD1MNcynyB3aIDQlVZEeXXB2t9Qrt2bk+UA8Tssbd4DJBz6XEsROUZpWVr9fOvTVrmfyreWa/KLkuTVGff7ULBz/mHybruihByebdr8TTxJAVoYhL7EW/ptdNPR7TvLGJiuoYpZS+KXZhmh6bmGzKIpRwU097SLBbnqoezbZdlDZ5uBI7+1RSsEf5JRX+nk0rOBcdOvkVVLfHRV2U0scO8V6vo98tAAAAgNbLmYAZFm6HHY98QUM6T1XUwJmBIanH9mjpxDt1W48+uv/VfHkr7R3q5JWnxF40IbS6HzXkxLLbU3/ICv0neyFIZITV/3cqSlRSo8fw9OqmOuomEzK/V7vKEm2bM1p9THv1H3m/HnpqvfLtTd7ypsXE0LbVtQQAAACARnEmYF7eRT39Cwe1bW9VkjoNbaN0+5yd2vnGQk1IDUxEs2fRaD35Tmlgez2qQ+I/gp5MWRm0XFdQaw4le7Rjb2Dx9vhADGz+ulUof8lYPflGvnzdRtvDZFdpuL0VAAAAAJqbMwEzJFG3jwz0YeYvelKrPjrRG+f9ZL1+s9y+h/GimOpetxL73kR9sVs79gcWqx0r1kGTJV2XJ2v4U6u0/MHAp3I+C8yMWh3G9hfLXd2rGaGEHoGhtfpDjvbYPakV+3Ls+0MTlHxd8z+Yo6IkR8//6pnAszGjhivtJmuQakvUzaPCfYFw329kuhKtmWnLvdw/CQAAAKDFOBMwZU2+M1PDLzeL5flaek8fde97p+7s21197p6rzSsf0lM7rd7HaMVUTR4zpb/uHHmn+gx8RnsCRQGVpdo2b5iG3dZHo6c+r6XL5+p5e+bVlC6BoBlxXbJ/Uh+Vr9VD6U/qyUdWKd8EzajUCYE6lKzV/f3v1DBz/NvGrpUVu2JGTtAA/2NRmsfa9O7q3r27evR/SGs/MXE6rItGPzVOCfZI0+avm0uR9i2jm596SHNNu91v6rI5UAQAAAAAzc6hgGmEJWjCq7/TzJGJgYlljhWr2Jp8pmOC0qau0tQ+Vg9dhPo9UPWMTK+KCzyKe/BlrftVslUQ0DZCif3TlXyRT/lb1mrVyvXac8ylxAdX6ddVjwq5dIAey0jw37/o/Wibtu18T4VfmBWrDi8u07ibIhRi9YIWFMsbFqHkscu03N6/uYVYE+SMnKl176zTOPvRI37NXjeXUjJmKqWjWTy2R+tXbpWGLtPCsXbqBAAAAIBmdoEjz8GsrbJCXq91f2GoPcNrLVXbw1xyNZCsKrxe+SrNUVwuhdT1sP8Kr7zWcNO6jmMND61o4LNnUnPWrZFtCwAAAABOCM6RzRMwAQAAAADnheAc6dwQWQAAAADAeY2ACQAAAABwBAETAAAAAOAIAiYAAAAAwBEETAAAAACAIwiYAAAAAABHEDABAAAAAI4gYAIAAAAAHEHABAAAAAA4goAJAAAAAHDEBd8Z9rIKCgoUHx9vrzVeRUWFSktLdfz4cbsEAAAAAM5f7du3V0REhEJCQuyS1is4RzoSMA8fPqwOHTooPDzcLgEAAACA81dZWZn+/ve/60c/+pFd0noF50hHhshaPZeESwAAAAAIsPLR+TjCk3swAQAAAACOIGACAAAAABxBwAQAAAAAOIKACQAAAABwBAETAAAAAOAIAiYAAAAAwBEETAAAAAA461XKU3RABz6u7/WpjlSY3cqOqMQb+MSZQMAEAAAAgLPdX97Vhqwc5XxQ32uPPv3a7FeyR2+//ppySioDn2thBEwAAAAAONtV/sNeaIRvvTqwZf0ZCZkETAAAAABobc5QyCRgAgAAAEBrZIXMHTkqsVdbwgXfGfayCgoKFB8fb681XnFxsWJiYuw1AAAAAMAp5aSKT7Xttzt0yJqwx8+lawbepeTSt/XSroaiYojiUn+hmy6xV1tQcI48oz2Y3n2ZWrwkU3lncJajVuFQlmnHxco6ZK87rbmPH6yec3lyMzV/ykRNnrdauUfsQgAAAKC1+fqIvqoOl01RocId6/X29m3aVuO1r0V7MM9owPR9nq0VL2brr+V2geVIobI3rdbiVzYot5jk2SileaYdVyiv1F53WnMfP1gd5/Ltm68R6bOVXR6taF+oQiPtDc3I5/XK67NXmllLngsAAACt2PFjKvn8kA7VeLlVZm9uCWfRPZg+Fb0+Ucm3jNC0de8oe+N8pd+RorQX88wWnM+K/ztLbg3VpDmTNP7Joera1t7QbPL00i3JmrzVY683p5Y8FwAAANC8zkjA9H1VR2SsrJDHE6JfrN2hHb9br/Wbc7TpkTgVLnlJ75zikEirZ8h3KpMmVfrkPY0upUad1zpHcM+tpfzkn2vyNdV1npPwfdWEc5xmW1Vp6Lp8ZW7zb6jCQwPr3+P7/mcb20717VfRxDaznOycTp4LAAAAOBu1aMD07J6vETclKLF3ohJuStdrfwlKDG1dSsqYozEJLrtAir22m/k3W8XWoOFKtzaMN5+7Y4UKq/5IL1yhAQmJmr07EHA8mzKUkDBfW3JXKOOWRCUmJ5tXmqb/3gooljzNT0gw+9R8ZWyye48qvcp7JUMpyYlKNi+rjqsPBI5tDdO0zjX591XDdr3KeszsMzxTRVZ9Kj3KfWVy4Pqs816fqLR52fJUB4rAuTP+q9CcI13JZnvyjWafGVnylBdpw4w0Jd5ofS5ZE9+qqm9jrqkepr22zBxhn8fU6c7pympw8LVPRZumK83at7d1jhRlrMwzV1mP4OObtkq8JUMrcoN64Ux7WW07f5+9bgSuJUMbgv7DwPdppiYHX9dOr2LtbZa8lSlKf8VaWq0R1ve1IM8qDbTlpiIVWm2ZmKyeC61y863krz7RTqYtR8zcoKKgAFfVnrmHtmj6nUHnfc+ue/4Kpdw4wpzN/PKmptT8fdRy0mPZatcp/ZXCQK98E84FAAAAnAtaLmCaMJg+brWKkiZpzds52rosVRW52fbGunmPHjX/9lJMlHlrG61Bjz+uXsWLNev1ImurtqxcLHfvGbqvZ3DX1mpNm+dWr7mblPP2Go1PLNaGX01Wpn/SmFgNfHGlVvpfCzTmZ6YorJduTgrc1Ff48giNWC7dtWyrct7fofVjQ/XCvdOU9ZUUev0DemJEpLZMXaxsK7AcyNT8rdEa8+hAxVpDNn1/VvbOcP18of3ZyUkqXjNRL/yhZkTLnXevZh0dZNpgk+bcHa3C/5qv9LsmKz9uijZZ9e1doawpi5VV42MNXVNdTPh9YoAm77laUzbvMPXZqgU/3a+J9weF81qKfpuuAVPf0YXpa7T1ffP9PDdKvX4apxNxP5h9/LfD9YvV5nrf3aQZN7u1OD1di/Ob0Jv5VZamDZ+t9zoO1RxTzx2v/UoxJe/K+narxP7rHD1wq7XUV5Os763/ifhZ9PJEjfvjDZpilQ+N8//GRgyfL/fNM7TpXXMNq3+h8Lena8hjW1QztmUq494Nin7gdW3dPEdDOxdqw5TVyrPa5tKbNWfaKJmjKW7EHP9v5b6kulshoIFjWfx1ekEastLfrjteG6/Q5SM0zfqPiiafCwAAADi7tVDA9Cn7jcUqCjNB4qlR6nqZS9HXDNKoYUn29jpUFipzyRaF9huoWzrbZVGDNGlyV+Uteklb3s/U4t931aSJqao550uSHl84XUOvj5brsq4aM3GS+QM+Txt2W7HFpdifJSnJvLp2+LPe+2Ooek2ZoUFWgPVla8OiIvWdNkdjrM92ilTckPs0VFuUtcdKe6FKynjCrJtg+dtsbXl5sTxpk3Rfgh1uTVCdtNpsr/rs3dZnfdqQFxyXzGlunaM1j6Qq9rJYpY4caWrrVuTdz2n6kK6KNvUdOWSg2es9/bk4sH9AQ9dUh+J39NLWSI2f/YRSYyJNfaLV656RJpxvUPZf7H2C+XKVuShPoWkLtCDd1KOT+X5+Nsqcr54xqf7j+9Rr8oxAW3U21/LIHI2PKtKKddn193rWUrTVfI/l5jucO8lfz8iYJPObGGRvDXBdmaRu1vejaHWzvrsrTwQwt6+Xnls0RqnW92n2CfzGRmmG1b6dzTVcP8YEuL7yvb9YGwvtD/nF6IFlKzWmd6yiY1I1aqT5HZYX6a9WCu0Uq6SfxOhCs3jhj+3fSlR9Y3MtDRyr6nd/6wzNsds18pqhui9N2vLeh/I2+VwAAADA2a2FAqZb7gPm7SdxujosUNIwn/IWTtbiI730+EN9a/SixQ6ZovGdt2jy+MUKfXCKhn7vsTLmD/TgSWBirtYN5q3wb0GxpzxPL/x6hdz9ntacf7fj6cH92mjeju5+xf+YDP9r+Tsq6ih5y+1eORMixz+VKveiDE3enaqnM3pZZzvBW6Ts12dr4l0DlJwQGPr4PR3DT3zG1NNaDg09cZTQDtayTxU1ehpN2cmuKYjn42xZeWr/W/Z1WK83clVmvoey/wvsU8PBD7WxXLo5qVvN66lH4Pgm8MUFRfu2cep6s3nfmlejB7J+PrmLrFp209Wn+gjVW/uqa3WFC7X/bfPWu2ugR9nm6trTH+L3Fwb3YV4oV9CPKrRtY666Pg0dy67T33bplarvwbzeKTbt5i0zLQAAAAC0Li0UMCvk/cpebAT3pon+++5GLVsQ6F0MVval/npaz0E04XX5NK0+YgLi5JrhVYrUFQk36IafVL36atS0msMW3Yfs++dqK9mgjFsGaP6BWI16Zo127FujUfamMyNacYnB1zJI419cqYGX25vrEB4WYi81hkuu08ll5jfha2xXZ1OYSjXlKlpC5I+7BX0PN6jv3TO0cuwN9Qw/BgAAAM5dLRQwoxXT1bwVlQZNelM396YMDZiaq6SnlmjS94Zo+pS95HG913uBNj1r9STOUmaNoaR1OJCrLPPWKzbav+rb94KmveLW0GdnqG8nf1FAzNW6WR4dDY31D1UMflUPWyzO1KxF0vjX1vt7UR9fkl0dNvM2Pq3sjuM1Z9pQ/xDg0OAeR6fVuqbarEATLbcqftj1e9cSW3XNlb4TM5r6r13auLtxj4QJHL9QuYVBCbGyUHnvmfd+XWtM0qNv7HfDZ855gkuX/Niqv1vuJvznQ/1idXVv87a7UMVBvzFv3m7l1u5tPVXBbdYogTp5joRUD82ufiVEN6q3GAAAADiXtFDAdOmGm1MVWrJYk+dlm0DhlefABr3wcs1JftxvTVTa1Gy5/n2ShnZ2K/ePuYFXvtsffHy5L2j2+mjdd09fxd48Xo/3zNPsX9uzuFbLVebyTOUd8sp7KFuzn1gsd9hQDb3VBIzyXL3w+GoVXT9SSW3zAsfeVySPNWmPq5fu+mWssuc8rMV/dPuHxfqOFCl7qz2TqjWL7bzZKuz3gIZeE6eRU0Ypcv1EzbdnsPUr2a/9xea8X5m6L3lWmXbx6WvgmiydY2Tdzer+3LST1RZxAzW+t0erpz+tDQc8/mvxHsrThverBq9ak/T0VGLy9MBkQva1+347W09vKpTH/n7mr7EDZ53HD1XWjMnKtI5vrjd7wVS9VBKrMcN6BXrmomLUy7xlrslU4RGPirbO18Pzcq0t1eJ6DjIRLEvTplr7WNeWq8XPn2qrudRr2BjF1viNZWra01kK7T1eA62ZdBor8grFhplWf2+Xiqzj+B/DUqvNGsWu0+6n9fCSXFMn85sqN23x/hblVYXqOs8FAAAAOKRDJwX3qzW3FgqY5k/tW2dozcQkHf1thvr1Tla/6flKGDvGP4NmQJ4yp2T5w5znrdnK+GW60qteyz+Ut7JQr85a7Z9YZ6T1IWtW2UeeUNf82Zq/KfiRHTHqFrZfD6clK/nfMrSxPFVPrJ2kXuaPeM/vV2u19aiOfSs0serYowYoZbn1iItQdR27UivvCVXmL/v5HyGSeMsQTduSqyJTKc/vF+vp3V01aWxgWG1o0gN6Is0EqJkvKNcE1K6Dn9agGBP+Bpnz9k7TSx3Ga8YAqz5OqP+a/DrH64YYKWvqNPuZoZFKfeZ1Tf9JgZ6+K8V/Lcn/Nk4bswvl9ueXMnn8C8elf1jr1rUv0YI0l96dmqYU8/2k3DVffzbXVWFtru/4/Y5qvnX83v2U8VaoBj67ROOrJj3q/HPd90vzRb0/W2m3pGjEpkg9tXa6P3RWixujJc8OUsweax9zbcNfUvvRk1Rzmp/GC00Yr5UrxytyS+A3Zl3D/q6TtOaZ2hNBnUTbrho62dT0/ekaYB1nYa4J2rXbrHECdbpPoa+nmzqZ39SNKRoy8x3lfmGn1DrPBQAAADjEJL7mHFxZ2wXfGfayCgoKFB8fb681XnFxsWJiGjlTi88rb3mIXJ2cHyBoPZcwZao0/d0lGhTps+ZRObXzVFqfNdEqrOn3Gfq+MsEh3Lkhso2+JrvOIbXP7W9vfb/c2t8XKldVSK1S33EaPH4D32e52V5ptjfUkPUd+zRY30PFKXx/NdRuu/rarJH8dfqnetqivu8JAAAA56wm5aQqR3P02sYDQU9mcOmagXcp+dg2vbSz3ucU1i88QWlDb1RHe7U5BOfIlg+YzahGGKt6tMk5rjVeEwAAAHA+cCZgSh27pSktyaXyUrcOHfaqsdOChEVeps4/dKlJc3meguAc2WJDZAEAAAAATXds/yZt2PUXeUM6KfpfLtNldb5i9OP4a3TNtSdeMRc3f7isrVX1YLbKYYYMnQQAAADOSU71YDaOPZT2Qnu1BbXeHsxQl1ydWlkQa43XBAAAAKBVal09mAAAAABwlji1nFSuTz/YpU+b2oXpulI39bhSpzgf5WkJzpEETAAAAABoBudLTmq9Q2QBAAAAAGcMARMAAAAA4AgCJgAAAADAEQRMAAAAAIAjCJgAAAAAAEcQMAEAAAAAjnAkYLZv315lZWX2GgAAAACc36x8ZOWk840jz8GsqKhQaWmpjh8/bpcAAAAAwPnLCpcREREKCQmxS1qv4BzpSMAEAAAAAJyfgnMk92ACAAAAABxBwAQAAAAAOIKACQAAAABwBAETAAAAAOAIAiYAAAAAwBEETAAAAACAIwiYAAAAAABHEDABAAAAAI4gYAIAAAAAHEHABAAAAAA4goAJAAAAAHAEARMAAAAA4AgCJgAAAADAEQRMAAAAAIAjCJgAAAAAAEcQMAEAAAAAjiBgAgAAAAAcQcAEAAAAADiCgAkAAAAAcAQBEwAAAADgCAImAAAAAMARBEwAAAAAgCNqBMywsDCVlZXZawAAAAAA1M/Kj1aOrFIjYEZERKikpISQCQAAAABokJUbrfxo5cgqF3xn2Mt+Xq9XpaWlKi8vt0sAAAAAAKjJ6rm0wqXL5bJL6giYAAAAAACcCib5AQAAAAA4goAJAAAAAHCA9P8BRh4TMfzKA/EAAAAASUVORK5CYII=);
}
.img-container-1 .img-2,
.img-container-2 .img-2,
.img-container-3 .img-2,
.img-container-4 .img-2 {
  background-image: url(/471046dd136ed31e7d21.png);
}
.img-container-1 .img-3,
.img-container-2 .img-3,
.img-container-3 .img-3,
.img-container-4 .img-3 {
  background-image: url(/a369fbb2b5dd3e9f0abc.png);
}
.img-container-1 .img-4,
.img-container-2 .img-4,
.img-container-3 .img-4,
.img-container-4 .img-4 {
  background-image: url(/b635efb22203fb8ec557.png);
}
.cd-instruction-modal .modal-header .close {
  position: relative;
  z-index: 1000;
}
@media screen and (min-width: 992px) {
  .cd-instruction-modal .modal-dialog {
    width: 950px;
  }
}
@media screen and (max-width: 767px) and (min-width: 1px), screen and (min-width: 768px) and (max-width: 991px) {
  .cd-instruction-modal .modal-dialog {
    width: auto;
  }
}
@media screen and (max-width: 767px) and (min-width: 1px), screen and (min-width: 768px) and (max-width: 991px) {
  .cd-instruction-modal {
    padding: 0px !important;
  }
}
.file-input-wrap {
  border: 1px solid #d5d5d5;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.file-input-wrap .file-input {
  flex: 1;
}
.file-input-wrap .file-name {
  display: inline-block;
  margin: 7px 0 0 6px;
  color: #dedede;
  width: 165px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.file-input-wrap .browse-btn {
  float: none;
  line-height: 1.8rem;
}
.image-preview {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dedede;
  margin: 20px 0 0;
}
.image-preview img {
  max-width: 100%;
  max-height: 100%;
}
.image-dimensions {
  font-weight: 600;
  text-align: center;
}
.color-picker input[type="radio"] {
  display: none;
}
.color-picker input[type="radio"]:checked + .color-bubble {
  position: relative;
}
.color-picker input[type="radio"]:checked + .color-bubble:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
  transform: rotate(-35deg);
  position: absolute;
  top: 9px;
  left: 8px;
}
.color-picker input[type="radio"]:checked + .color-bubble:before {
  content: "";
  display: block;
  width: 80%;
  height: 80%;
  border: 1.5px solid #fff;
  border-radius: 50%;
  position: absolute;
  margin: 10%;
}
.color-picker .color-bubble {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 13px;
  border-radius: 50%;
  cursor: pointer;
}
.color-picker .color-bubble.theme1-bg {
  background-color: #2541a3;
}
.color-picker .color-bubble.theme2-bg {
  background-color: #ff6363;
}
.color-picker .color-bubble.theme3-bg {
  background-color: #87d0b2;
}
.color-picker .color-bubble.theme4-bg {
  background-color: #008cd0;
}
.color-picker .color-bubble.theme5-bg {
  background-color: #20bf5a;
}
.readOnly-text {
  width: 100%;
  display: inline-block;
  padding: 4px 6px;
  font-size: 13px;
  height: 35px;
  color: #2d2d2d;
  font-weight: 600;
}
.custom-theme-picker .color-picker-col {
  position: relative;
}
.custom-theme-picker .color-picker-col .sketch-picker {
  position: absolute;
  z-index: 100000;
}
.custom-theme-picker .color-picker-col .sketch-picker .flexbox-fix:last-child {
  display: none !important;
}
.custom-theme-picker .picker-hue {
  cursor: pointer;
  min-width: 50px;
}
.custom-theme-picker .picker-tint {
  min-width: 50px;
}
.code-snippet {
  height: 175px;
}
.sliderModal {
  display: none;
}
#contentPages .nav-item button {
  margin-bottom: -1px;
}
#contentPages .custom-tab.nav-tabs {
  border-bottom: none;
}
#contentPages .custom-tab.nav-tabs .nav-item {
  min-width: 140px;
}
#contentPages .custom-tab.nav-tabs .nav-item .nav-link {
  background-color: #f1f1f1;
  border-radius: 5px;
  margin-bottom: 5px;
  padding: 1px 6px 2px 6px;
  font-size: 13px;
  border: none;
  cursor: pointer;
}
#contentPages .custom-tab.nav-tabs .nav-item .nav-link:focus {
  outline: 0;
}
#contentPages .custom-tab.nav-tabs .nav-item .nav-link.active {
  background-color: #337ab7;
  color: white;
  font-weight: bold;
  border: none;
}
#contentPages .custom-tab.nav-tabs .nav-item .nav-link:hover {
  background-color: #337ab7;
  color: white;
  border: none;
}
#contentPages .custom-tab.nav-tabs .nav-item:first-child {
  display: block;
  width: 100%;
}
#contentPages .custom-tab.nav-tabs .nav-item:first-child .nav-link {
  width: fit-content;
  padding: 5px 8px;
}
#contentPages .custom-tab.nav-tabs .nav-item:last-child {
  margin-right: 0.5em;
}
#contentPages .custom-tab.nav-tabs .nav-item.add-sub .nav-link {
  background-color: white;
  border: none;
}
#contentPages .custom-tab.nav-tabs .nav-item.add-sub .nav-link:hover {
  background-color: #337ab7;
  color: white;
  border: none;
}
#contentPages .icon-Plus {
  margin-left: 5px;
  margin-top: -2px;
  font-size: 0.7em;
  line-height: 1.1em;
  padding: 0.3em;
}
#contentPages .icon-move {
  vertical-align: middle;
  font-size: 0.9em;
  padding-left: 0.2em;
}
.custom-tab.nav-tabs .nav-item:not(:first-child):not(:last-child) .nav-link.dragging {
  cursor: move;
  opacity: 0.75;
  position: relative;
}
.custom-tab.nav-tabs .nav-item:not(:first-child):not(:last-child) .nav-link.droppable {
  transition: box-shadow 0.2s;
  outline: 2px dashed #cecece;
  outline-offset: -2px;
  box-sizing: border-box;
}
.custom-tab.nav-tabs .nav-item:not(:first-child):not(:last-child) .nav-link.dragover {
  box-shadow: 0 0 4px 2px #cecece, 0 0 8px 4px #cecece;
  transition: box-shadow 0.2s;
  outline: 2px dashed #cecece;
  outline-offset: -2px;
  box-sizing: border-box;
}
.initial-content-info {
  margin: 20px 0;
}
.initial-content-info .info-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.initial-content-info .info-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.2em;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
}
.initial-content-info .info-content {
  color: #495057;
  line-height: 1.6;
}
.initial-content-info .info-content p {
  margin-bottom: 15px;
}
.initial-content-info .feature-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}
.initial-content-info .feature-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}
.initial-content-info .feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2em;
}
.initial-content-info .feature-list li strong {
  color: #2c3e50;
}
.initial-content-info .info-note {
  background: #fff;
  border-left: 4px solid #3498db;
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
}
.initial-content-info .info-note strong {
  color: #3498db;
}
.create-website-card {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.create-website-card .card-body {
  padding: 40px;
}
.create-website-card .create-website-header {
  text-align: center;
  margin-bottom: 40px;
}
.create-website-card .create-website-header h2 {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.create-website-card .create-website-header .lead-text {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.create-website-card .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
.create-website-card .features-grid .feature-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 10px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.create-website-card .features-grid .feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #3498db;
}
.create-website-card .features-grid .feature-item .feature-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.create-website-card .features-grid .feature-item strong {
  display: block;
  color: #2c3e50;
  font-size: 1rem;
  margin-bottom: 5px;
}
.create-website-card .features-grid .feature-item p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}
.create-website-card .field-wrapper {
  margin-top: 10px;
}
.create-website-card .field-wrapper .website-title-input {
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 20px 24px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.create-website-card .field-wrapper .website-title-input:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
  outline: none;
}
.create-website-card .field-wrapper .website-title-input::placeholder {
  color: #adb5bd;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
.create-website-card .field-wrapper .custom-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}
.create-website-card .field-wrapper .save-btn {
  padding: 12px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.create-website-card .field-wrapper .save-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.hidden {
  display: none;
}
.xs-modal .modal-dialog {
  width: 360px;
}
.md-modal .modal-dialog {
  width: 500px;
}
.lg-modal .modal-dialog {
  width: 900px;
}
@keyframes modalSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-28px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalSlideOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-28px);
  }
}
.modal.fade .modal-dialog {
  /* initial state */
  animation: modalSlideIn 260ms cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
.modal.show .modal-dialog {
  animation: modalSlideIn 260ms cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
.modal.closing .modal-dialog {
  animation: modalSlideOut 260ms cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes modalBackdropFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.35;
  }
}
@keyframes modalBackdropFadeOut {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 0;
  }
}
.modal-backdrop.fade {
  animation: modalBackdropFadeIn 260ms ease both;
}
.modal-backdrop.closing {
  animation: modalBackdropFadeOut 160ms ease both;
}
.modal-content {
  border-radius: 20px;
}
.modal-header {
  padding: var(--bs-modal-padding);
  border-bottom: 0;
}
.modal-header .btn-close {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 99;
}
.modal-header .modal-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  width: 100%;
}
.modal-header .modal-subtitle {
  font-size: 14px;
  line-height: 20px;
  color: #6c757d;
  margin-top: 6px;
}
.modal-btns {
  clear: both;
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
  gap: 10px;
}
.submit-loader {
  position: relative;
}
.submit-loader .loader-div {
  position: absolute;
  height: 60px;
  top: 0;
}
.submit-loader .loader-div .circular {
  width: 40px;
  height: 40px;
}
.submit-audio-loader .loader-div {
  height: 0;
}
.submit-audio-loader .loader-div .circular {
  top: 100px;
  width: 40px;
}
.submit-modal .modal-content {
  position: relative;
  min-width: 400px;
}
.submit-modal .modal-content .loader-div {
  height: 100%;
  position: absolute;
}
.submit-modal.properties-form .modal-dialog {
  max-width: 545px;
}
.submit-modal.addOrganizations .modal-dialog {
  max-width: 425px;
}
.submit-modal.importSuccess .modal-body {
  overflow: auto;
  padding: 0 30px 30px;
}
.submit-modal h4 {
  font-size: 17px;
}
.submit-modal .errors-list {
  padding-left: 17px;
}
.submit-modal .progress {
  margin-bottom: 0;
  height: 5px;
  box-shadow: none;
  background-color: #dedede;
  border-radius: 0;
}
.submit-modal .progress-wrapper {
  position: relative;
}
.submit-modal .progress-wrapper::after {
  content: "";
  clear: both;
  display: table;
}
.submit-modal .progress-icon {
  position: absolute;
  top: 10px;
  left: -25px;
}
.submit-modal .progress .progress-bar-success {
  background-color: #159d47;
}
.submit-modal .modal-title {
  width: 100%;
  position: relative;
  pointer-events: none;
}
.submit-modal .submit-heading {
  display: block;
  text-align: center;
  margin: 10px;
  font-size: 24px;
  font-weight: 400;
}
.submit-modal .success-heading {
  color: #5ad888;
}
.submit-modal .error-heading,
.submit-modal .error-text {
  color: #771821;
}
.submit-modal p {
  font-size: 14px;
}
.submit-modal .progress-error {
  margin: 10px 0;
}
.submit-modal .upload-status h5 {
  font-weight: 600;
  float: left;
}
.submit-modal .upload-status pre {
  max-height: 250px;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  overflow-x: hidden;
}
.submit-modal .upload-status .progress-percent {
  float: right;
}
.submit-modal .modal-dialog {
  max-width: 400px;
}
.submit-modal .top-margin {
  display: flex;
  justify-content: center;
}
.submit-modal .property-status {
  top: 0px;
  left: 0px;
}
.submit-modal .property-status .panel-title {
  vertical-align: middle;
}
.submit-modal .property-status .primary-btn {
  cursor: default;
}
.submit-modal .generated-content-preview {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.submit-modal .generated-content-preview .preview-section .carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.submit-modal .generated-content-preview .preview-section .carousel-header .preview-title {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin: 0;
}
.submit-modal .generated-content-preview .preview-section .carousel-header .carousel-counter {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}
.submit-modal .generated-content-preview .preview-section .carousel-container {
  position: relative;
  min-height: 200px;
}
.submit-modal .generated-content-preview .preview-section .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}
.submit-modal .generated-content-preview .preview-section .carousel-nav:hover {
  background: white;
  border-color: #999;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.submit-modal .generated-content-preview .preview-section .carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}
.submit-modal .generated-content-preview .preview-section .carousel-nav.carousel-nav-prev {
  left: -20px;
}
.submit-modal .generated-content-preview .preview-section .carousel-nav.carousel-nav-next {
  right: -20px;
}
.submit-modal .generated-content-preview .preview-section .carousel-slide {
  animation: fadeIn 0.3s ease-in-out;
  padding: 6px 20px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.submit-modal .generated-content-preview .preview-section .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}
.submit-modal .generated-content-preview .preview-section .carousel-dots .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.submit-modal .generated-content-preview .preview-section .carousel-dots .carousel-dot:hover {
  background: #999;
  transform: scale(1.2);
}
.submit-modal .generated-content-preview .preview-section .carousel-dots .carousel-dot.active {
  background: #5ad888;
  width: 24px;
  border-radius: 4px;
}
.submit-modal .generated-content-preview .preview-section .preview-images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.submit-modal .generated-content-preview .preview-section .preview-images .preview-image-item {
  text-align: center;
}
.submit-modal .generated-content-preview .preview-section .preview-images .preview-image-item label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}
.submit-modal .generated-content-preview .preview-section .preview-images .preview-image-item img {
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: white;
}
.submit-modal .generated-content-preview .preview-section .preview-images .preview-image-item .preview-logo {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
}
.submit-modal .generated-content-preview .preview-section .preview-images .preview-image-item .preview-favicon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.submit-modal .generated-content-preview .preview-section .preview-images .preview-hero-container {
  flex-basis: 100%;
}
.submit-modal .generated-content-preview .preview-section .preview-images .preview-hero-container .preview-hero {
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
}
.submit-modal .generated-content-preview .preview-section .preview-html {
  margin-top: 15px;
}
.submit-modal .generated-content-preview .preview-section .preview-html label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
  text-align: center;
}
.submit-modal .generated-content-preview .preview-section .preview-html .html-preview {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 15px;
  max-height: 200px;
  overflow-y: auto;
  font-size: 13px;
  line-height: 1.6;
}
.submit-modal .generated-content-preview .preview-section .preview-html .html-preview h1,
.submit-modal .generated-content-preview .preview-section .preview-html .html-preview h2,
.submit-modal .generated-content-preview .preview-section .preview-html .html-preview h3,
.submit-modal .generated-content-preview .preview-section .preview-html .html-preview h4,
.submit-modal .generated-content-preview .preview-section .preview-html .html-preview h5,
.submit-modal .generated-content-preview .preview-section .preview-html .html-preview h6 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}
.submit-modal .generated-content-preview .preview-section .preview-html .html-preview p {
  margin-bottom: 10px;
  font-size: 13px;
}
.submit-modal .generated-content-preview .preview-section .preview-html .html-preview ul,
.submit-modal .generated-content-preview .preview-section .preview-html .html-preview ol {
  margin-left: 20px;
  margin-bottom: 10px;
}
.expandable-image-modal {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.expandable-image-modal .modal-dialog {
  width: fit-content;
  height: auto;
  margin: auto;
}
.expandable-image-modal .expandable-image-fullsize {
  width: 100%;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
}
.image-caption-modal .modal-dialog {
  max-width: 650px;
}
.image-caption-modal .caption-image-col {
  text-align: center;
}
.image-caption-modal .caption-image-col .caption-img-wrap {
  border: 1px solid #f5f5f5;
}
.image-caption-modal .caption-image-col img {
  max-width: 100%;
}
.image-caption-modal .caption-save-btn {
  float: right;
  margin-top: 5px;
}
.image-caption-modal .rotate-container {
  text-align: center;
  font-size: 25px;
  padding: 10px 0px;
}
.image-caption-modal .rotate-container span {
  margin: 0px 10px;
}
.image-caption-modal .rotate-container .icon-move,
.image-caption-modal .rotate-container .icon-crop,
.image-caption-modal .rotate-container .icon-rotate-left,
.image-caption-modal .rotate-container .icon-rotate-right,
.image-caption-modal .rotate-container .icon-zoom-in,
.image-caption-modal .rotate-container .icon-zoom-out,
.image-caption-modal .rotate-container .icon-cancel,
.image-caption-modal .rotate-container .icon-checkbox_check,
.image-caption-modal .rotate-container .icon-x,
.image-caption-modal .rotate-container .icon-wrong {
  cursor: pointer;
}
.calendar-modal .tab-container {
  width: 100%;
}
.calendar-modal .center-text {
  text-align: center;
}
.calendar-modal .btn-delete {
  width: 120px;
}
.calendar-modal .btn-delete:focus {
  outline: 0;
}
.calendar-modal .parallel-radio-container {
  display: flex;
  justify-content: center;
}
.calendar-modal.mobile .nav-tabs {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.validation-modal .panel .panel-body {
  padding: 15px;
}
.validation-modal .messages-panel {
  margin-bottom: 0;
}
.validation-modal .messages-panel .error-category {
  font-size: 14px;
  font-weight: 600;
  margin: 15px 0 3px;
}
.validation-modal .messages-panel ul {
  list-style: none;
  margin: 0;
}
.validation-modal .messages-panel ul li {
  padding-left: 20px;
  position: relative;
}
.validation-modal .messages-panel ul li::before {
  content: "";
  padding: 2px;
  background-color: #000;
  position: absolute;
  transform: rotate(45deg);
  top: 9px;
  left: 5px;
}
.import-modal .modal-dialog {
  max-width: 450px;
}
.import-modal .form-label {
  font-weight: 700;
}
.import-modal .parallel-radio-container {
  display: flex;
}
.import-modal .col-md-6 {
  padding: 0;
}
.import-modal .file-type-bulletin {
  list-style: none;
}
.import-modal .file-type-bulletin li {
  padding-left: 6px;
}
.import-modal .file-type-bulletin li:before {
  content: "\25C6";
  position: relative;
  left: -7px;
  font-size: 12px;
}
#pricingModal .loader-div {
  height: 100%;
  position: absolute;
}
#availabilityModal .loader-div {
  height: 100%;
  position: absolute;
}
#availabilityModal .SingleDatePickerInput_clearDate {
  right: -15px;
}
#availabilityModal .clickable-text {
  text-decoration: none;
  font-size: 12px;
}
#availabilityModal .text-area {
  height: 100px;
}
#availabilityModal h4 {
  font-size: 18px;
}
.calendar-mobile-expires .SingleDatePickerInput__showClearDate {
  padding-right: 0px;
}
.calendar-mobile-expires .SingleDatePickerInput_clearDate {
  right: 16%;
  top: 38%;
}
.calendar-mobile-expires .DateInput_fang {
  display: none;
}
.calendar-mobile-expires .SingleDatePicker_picker__directionLeft {
  top: 50px !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.avail-notes-header-container {
  border: 1px solid #dedede;
  padding: 0px;
  border-bottom: none;
  display: flex;
}
.avail-notes-header-container select.form-field {
  border: 1px solid #ffffff;
}
.avail-notes-header-container span {
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.avail-notes-header-container span .icon-delete {
  font-size: 16px;
  color: #ac2c64;
  cursor: pointer;
}
.mobile-avail-notes-container {
  text-align: center;
}
.mobile-avail-notes-container .avail-notes-main-container {
  padding-right: 100px;
  padding-left: 100px;
}
.mobile-avail-notes-container .form-field-select .caret {
  right: 12px !important;
}
.mobile-avail-notes-container .avail-notes-header-container .icon-delete {
  left: 0px;
}
.mobile-avail-notes-container .clickable-text {
  font-size: 12px;
  text-decoration: none;
}
.navigation-prompt-modal .modal-dialog {
  width: 500px;
  margin: 30px auto;
}
.navigation-prompt-modal .modal-dialog .modal-body {
  padding: 50px 30px 30px 30px;
}
.prompt-modal .modal-dialog {
  margin: 30px auto;
}
.prompt-modal .modal-dialog .modal-body {
  padding: 50px 30px 30px 30px;
}
.clear-cache-modal .modal-dialog {
  width: 400px;
  margin: 30px auto;
}
.clear-cache-modal .modal-dialog .modal-body {
  padding: 50px 30px 30px 30px;
}
.cleaning-modal .modal-dialog .modal-body {
  padding: 0px 30px 30px 30px;
}
.add-a-fee-modal .type-select {
  padding-right: 50px;
}
.center-content {
  text-align: center;
}
.error-modal .modal-dialog {
  max-width: 550px;
}
.error-modal .modal-header {
  padding: 20px;
}
.error-modal .modal-body {
  padding-top: 15px;
}
.close-case-modal-backdrop {
  z-index: 1055 !important;
}
.close-case-modal .loader-div {
  height: 100%;
  position: absolute;
}
.close-case-modal .support-tickets-empty {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
  margin-top: 10px;
}
.close-case-modal .close-case-button-row {
  margin-bottom: 15px;
}
.close-case-modal .case-details-box {
  margin-top: 10px;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.close-case-modal .close-case-error {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .modal-dialog {
    margin: 30px auto;
  }
}
.image-group {
  overflow-x: auto;
  white-space: nowrap;
}
.image-group > .col-xs-2 .col-sm-2 .col-md-2 {
  display: inline-block;
  float: none;
}
.upload-img-wrap {
  aspect-ratio: 1 / 1;
  width: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.image-dimensions-overlay {
  position: absolute;
  bottom: 3px;
  left: 3px;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  padding: 0px 3px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
}
.upload-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.upload-img.loading {
  opacity: 0.4;
}
.img-add-box {
  background-color: #ededed;
  font-size: 38px;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 3px;
}
.img-add-box .plus-sign {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 38px;
}
.image-upload-section .panel-body {
  padding-top: 0;
}
.image-upload-section .image-group {
  padding: 0;
}
.image-upload-section .image-group .image-col {
  position: relative;
}
.image-upload-section .image-group .image-col .photo-star-container {
  position: absolute;
  left: 24px;
  font-size: 25px;
  top: 4px;
  color: #ffd700;
}
.image-upload-section .image-group .image-col .photo-star-container .photo-count {
  position: absolute;
  left: 9.5px;
  top: 10px;
  font-size: 12px;
  color: #000;
}
.image-upload-section .image-group .image-col .priority-border {
  border: none;
  box-shadow: none;
}
.image-upload-section .image-group .image-col .no-priority-border {
  border: none;
}
.image-upload-section .image-group .image-col .count {
  position: absolute;
  left: 25px;
  top: 10px;
  background-color: #fff;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  line-height: 17px;
  cursor: pointer;
}
.image-upload-section .image-group .image-col .locks {
  position: absolute;
  right: 25px;
  top: 10px;
  background-color: #fff;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  line-height: 17px;
  cursor: pointer;
}
.image-upload-section .image-group .image-col .dimensions {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
.image-upload-section .image-group .image-col.is-selected {
  position: relative;
}
.image-upload-section .image-group .image-col.is-selected .photo-star-container {
  color: #337ab7;
}
.image-upload-section .image-group .image-col.is-selected .photo-count {
  color: #fff;
}
.image-upload-section .image-group .image-col.is-selected .count {
  border-color: #fff;
  background-color: #337ab7;
  color: #fff;
}
.image-upload-section .image-options {
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 15px;
}
.image-upload-section .image-options .image-btns-wrap {
  float: right;
}
.image-upload-section .image-upload-bulletin {
  list-style: none;
}
.image-upload-section .image-upload-bulletin .icon-star-full {
  color: #ffd700;
}
.image-upload-section .image-upload-bulletin li {
  padding-left: 6px;
}
.image-upload-section .image-upload-bulletin li:before {
  content: "\25C6";
  position: relative;
  left: -7px;
  font-size: 12px;
}
[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}
[draggable].drag-hover .upload-img-wrap {
  outline: 3px solid #337ab7;
  opacity: 0.6;
}
[draggable].is-dragging .upload-img-wrap {
  outline: 3px solid #337ab7;
  opacity: 0.2;
}
.dropzone-wrap {
  position: relative;
  border: 2px dashed #cccccc;
  padding: 0px 10px;
  width: 100%;
}
.dropzone-wrap .loader-div {
  position: absolute;
  height: 100%;
}
.dropzone-wrap .dropzone-box {
  position: absolute !important;
  width: calc(100% - 32px);
  height: 100%;
  cursor: pointer;
  z-index: 4;
}
.dropzone-wrap .dropzone-box.dropzone-active {
  z-index: 9;
  background: #337ab7;
  outline: 3px solid #337ab7;
}
.dropzone-wrap .dropzone-box.dropzone-image-processing {
  opacity: 0.5;
  z-index: 8;
  cursor: default;
}
.dropzone-wrap .image-col {
  z-index: 7;
}
.dropzone-wrap .image-col.add-btn-wrap {
  z-index: 2;
}
.photo-loader .loader-div {
  height: 0px;
  position: absolute;
}
.photo-loader .loader-div .circular {
  top: 108px;
  width: 40px;
}
.reports__title {
  font-size: 15px;
  padding-right: 10px;
}
.reports__price {
  font-size: 24px;
  font-weight: 700;
  padding-right: 15px;
}
.reports .recharts-tooltip-content {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px;
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.2s ease-in-out;
}
.reports .chart-container .recharts-cartesian-axis-tick-value {
  font-size: 12px;
}
.reports .ReactTable .rt-table .rt-tbody .rt-tr-group .rt-tr {
  background-color: #f5f5f5;
}
.reports .ReactTable.-highlight .rt-table .rt-tbody .rt-tr-group .rt-tr:hover {
  background-color: #f5f5f5;
}
.reports-channels .channel-block-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  font-family: "Assistant", Arial, sans-serif;
}
.reports-channels .channel-block-container .channel-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.reports-channels .channel-block-container .channel-block-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.reports-channels .channel-block-container .channel-block-id {
  font-size: 13px;
  font-weight: 600;
  color: #2d2d2d;
  letter-spacing: -0.01em;
}
.reports-channels .channel-block-container .channel-block-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.reports-channels .channel-block-container .channel-block-badge--open {
  background: #ecfdf5;
  color: #065f46;
}
.reports-channels .channel-block-container .channel-block-badge--out {
  background: #fef2f2;
  color: #991b1b;
}
.reports-channels .channel-block-container .channel-block-badge--other {
  background: #f5f5f5;
  color: #666;
}
.reports-channels .channel-block-container .channel-block-body {
  flex: 1;
  font-size: 12px;
  line-height: 1.45;
  color: #2d2d2d;
  word-break: break-word;
}
.reports-channels .channel-block-container .channel-block-body a.clickable-text {
  color: #337ab7;
  text-decoration: none;
  word-break: break-word;
}
.reports-channels .channel-block-container .channel-block-body a.clickable-text:hover {
  text-decoration: underline;
}
.reports-channels .channel-block-container .channel-block-body .small-text {
  font-size: 11px;
  color: #bbb;
  margin-top: 4px;
}
.reports-channels .channel-block-container .channel-block-footer {
  display: none;
}
.reports-channels .channel-block-container .channel-block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 4px 7px;
  border-radius: 5px;
  border: 1px solid transparent;
  color: #666;
  font-size: 12px;
  line-height: 1;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.reports-channels .channel-block-container .channel-block-icon:hover {
  background: #f5f5f5;
  border-color: #d5d5d5;
  color: #2d2d2d;
}
.reports-channels .channel-block-container .channel-block-icon .icon-info {
  color: #bbb;
}
.reports-validations .ReactTable table,
.reports-performance .ReactTable table,
.reports-channels .ReactTable table,
.reports-availability .ReactTable table,
.reports-taxes .ReactTable table {
  border-collapse: collapse;
}
.reports-validations .ReactTable table td,
.reports-performance .ReactTable table td,
.reports-channels .ReactTable table td,
.reports-availability .ReactTable table td,
.reports-taxes .ReactTable table td,
.reports-validations .ReactTable table th,
.reports-performance .ReactTable table th,
.reports-channels .ReactTable table th,
.reports-availability .ReactTable table th,
.reports-taxes .ReactTable table th {
  border: 1px solid #dcdcdc !important;
  border-bottom: 1px solid #dcdcdc !important;
}
.reports-channels-modal .loader-div {
  height: 100%;
}
.reports-channels-modal .modal-body {
  padding-top: 0px;
}
.reports-channels-modal .col-md-12 {
  margin: 10px 0px;
}
.reports-channels-modal .msg-container {
  margin-bottom: 0px;
}
.reports-availability .avail-column {
  display: flex;
  align-items: center;
}
.reports-availability .avail-column .pie-chart {
  font-size: 20px;
  margin-left: 15px;
  cursor: pointer;
  color: #999999;
}
.pie-chart-modal .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pie-chart-modal .chart-wrap {
  display: inline-block;
  position: relative;
  width: min(360px, 90vw);
  aspect-ratio: 1 / 1;
}
.pie-chart-modal .simple-pie-svg {
  width: 100%;
  height: 100%;
}
.pie-chart-modal .simple-pie-svg.no-data .nd-circle {
  stroke: #eef0f2;
}
.pie-chart-modal .simple-pie-svg.no-data .nd-text {
  fill: #9aa0a6;
}
.pie-chart-modal .legend-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 16px;
  width: 100%;
  margin-top: 8px;
}
.pie-chart-modal .legend-container .legend-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 8px;
}
.pie-chart-modal .legend-container .legend-text {
  font-size: 13px;
  color: #333;
  font-weight: 600;
}
.pie-chart-modal .legend-container .legend {
  padding: 6px 8px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
}
.pie-chart-modal .legend-container .legend .value {
  font-weight: 700;
  color: #111;
}
.rv-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1.4;
}
.rv-badge i {
  font-size: 13px;
}
.rv-badge--verified {
  background: #e6f7ec;
  color: #1a7a3e;
  border: 1px solid #a3d9b4;
}
.rv-badge--unverified {
  background: #fdecea;
  color: #ac2431;
  border: 1px solid rgba(172, 36, 49, 0.3);
}
.rv-badge--pending {
  background: #fff8e6;
  color: #8a6200;
  border: 1px solid #f0cc6e;
}
.rv-badge--pending::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e6a817;
  flex-shrink: 0;
  animation: rv-pulse 1.6s ease-in-out infinite;
}
@keyframes rv-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}
.rv-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #337ab7;
  background: transparent;
  border: 1px solid #337ab7;
  border-radius: 20px;
  padding: 4px 11px;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.4;
  transition: background 0.15s ease, color 0.15s ease;
}
.rv-btn i {
  font-size: 12px;
}
.rv-btn:hover {
  background: #337ab7;
  color: #fff;
}
.reservation-details .scheduled-actions-table {
  position: relative;
}
.reservation-details .scheduled-actions-table .loader-div {
  height: 100%;
  position: absolute;
}
.reservation-details .scheduled-actions-table .ReactTable table {
  border-collapse: collapse !important;
  border-spacing: 0 !important;
}
.reservation-details .scheduled-actions-table .ReactTable tbody tr:hover {
  box-shadow: none !important;
}
.reservation-details .scheduled-actions-table table tbody tr > td:first-child {
  padding: 0 !important;
  border: 0 !important;
}
.reservation-details .scheduled-actions-table .rt-row > .rt-cell:first-child {
  padding: 0 !important;
  border: 0 !important;
}
.reservation-details .scheduled-actions-table .logs-icon-container {
  font-size: 17px;
  cursor: pointer;
}
.reservation-details .scheduled-actions-table .time-line-container {
  display: flex;
  justify-content: center;
  position: relative;
  height: 63px;
}
.reservation-details .scheduled-actions-table .time-line-container .top-vertical-line,
.reservation-details .scheduled-actions-table .time-line-container .bottom-vertical-line {
  position: absolute;
  height: 50%;
  width: 5px;
  background-color: #999;
  left: 50%;
  transform: translateX(-50%);
}
.reservation-details .scheduled-actions-table .time-line-container .top-vertical-line.success,
.reservation-details .scheduled-actions-table .time-line-container .bottom-vertical-line.success {
  background-color: #159d47;
}
.reservation-details .scheduled-actions-table .time-line-container .top-vertical-line.failed,
.reservation-details .scheduled-actions-table .time-line-container .bottom-vertical-line.failed {
  background-color: #ac2431;
}
.reservation-details .scheduled-actions-table .time-line-container .top-vertical-line {
  top: 0px;
}
.reservation-details .scheduled-actions-table .time-line-container .bottom-vertical-line {
  bottom: 0px;
}
.reservation-details .scheduled-actions-table .time-line-container .circle {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #999;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: 35%;
  border: none;
}
.reservation-details .scheduled-actions-table .time-line-container .circle.success {
  background-color: #159d47;
}
.reservation-details .scheduled-actions-table .time-line-container .circle.failed {
  background-color: #ac2431;
}
.reservation-details .scheduled-actions-table .time-line-container .circle .inner-circle {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}
.reservation-details .sa-action-btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #374151;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.reservation-details .sa-action-btn:hover {
  border-color: #337ab7;
  color: #337ab7;
  background: rgba(51, 122, 183, 0.1);
}
.reservation-details .sa-action-btn--cancel {
  color: #6b7280;
}
.reservation-details .sa-action-btn--cancel:hover {
  border-color: #ac2431;
  color: #ac2431;
  background: rgba(172, 36, 49, 0.1);
}
.reservation-details .sa-action-btn--delete {
  border-color: rgba(172, 36, 49, 0.5);
  color: #ac2431;
  background: rgba(172, 36, 49, 0.06);
}
.reservation-details .sa-action-btn--delete:hover {
  border-color: #ac2431;
  color: #fff;
  background: #ac2431;
}
.reservation-details .reservation-notes-container {
  position: relative;
  margin-bottom: 15px;
}
.reservation-details .reservation-notes-container select.form-field:disabled,
.reservation-details .reservation-notes-container textarea.form-field:disabled {
  color: black !important;
  background-color: #f5f5f5;
}
.reservation-details .reservation-notes-container .loader-div {
  height: 100%;
  position: absolute;
}
.reservation-details .reservation-notes-container--saved textarea.form-field:disabled {
  background-color: #fff;
  border-color: transparent;
  resize: none;
}
.reservation-details .reservation-notes-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.reservation-details .reservation-notes-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
}
.reservation-details .reservation-notes-container .fe-card__header {
  gap: 8px;
}
.reservation-details .reservation-notes-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: none;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}
.reservation-details .reservation-notes-edit-btn:hover {
  border-color: #337ab7;
  color: #337ab7;
}
.reservation-details .reservation-notes-edit-btn > i {
  font-size: 13px;
}
.reservation-details .reservation-notes-header {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}
.reservation-details .reservation-notes-header .form-field-select {
  flex: 1 1 auto;
  min-width: 0;
}
.reservation-details .reservation-notes-header select.form-field {
  border: none;
}
.reservation-details .reservation-notes-header .icon-edit,
.reservation-details .reservation-notes-header .icon-delete {
  font-size: 18px;
  flex: 0 0 auto;
  padding: 6px 8px;
  cursor: pointer;
  line-height: 1;
  color: #666;
}
.reservation-details .reservation-notes-header .icon-edit:hover,
.reservation-details .reservation-notes-header .icon-delete:hover {
  color: #337ab7;
}
.reservation-details .reservation-notes-header .icon-delete {
  color: #ac2431;
}
.reservation-details .reservation-notes-header .icon-delete:hover {
  color: #821b25;
}
.reservation-details .reservation-notes-body textarea {
  height: 100px;
}
.reservation-details .reservation-notes-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
}
.reservation-details .reservation-title {
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0px;
}
.reservation-details .reservation-title .small-text {
  font-size: 13px;
  font-weight: normal;
  padding: 0px 5px;
}
.reservation-details .guest-notes {
  padding: 10px 0px 30px 0px;
}
.reservation-details .reservation-billing .small-text {
  margin-left: 10px;
}
.reservation-details .property-item .panel-heading {
  padding-bottom: 0px;
}
.reservation-details .property-item .panel-title a {
  cursor: default;
  padding-bottom: 0px;
}
.reservation-details .identification-status-container {
  font-weight: bold;
  padding: 0px 15px;
  display: flex;
  gap: 6px;
}
.reservation-details .identification-status-container.pending {
  color: orange;
}
.reservation-details .identification-status-container.verified {
  color: green;
}
.reservation-details .identification-status-container.unverified {
  color: #ac2431;
}
.reservation-details .vcc-container {
  position: relative;
}
.reservation-details .vcc-container .loader-div {
  height: 100%;
  position: absolute;
}
.reservation-details .vcc-container .vcc-card {
  background: #fff;
  border: 1px solid #e3e6e8;
  border-radius: 8px;
  padding: 16px 20px 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 12px;
}
.reservation-details .vcc-container .vcc-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.reservation-details .vcc-container .vcc-limit {
  flex: 1 1 auto;
  min-width: 160px;
}
.reservation-details .vcc-container .vcc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c757d;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.reservation-details .vcc-container .vcc-value {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reservation-details .vcc-container .vcc-value.amount span {
  font-family: "Roboto Mono", monospace;
}
.reservation-details .vcc-container .vcc-status-badge {
  background: #adb5bd;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  align-self: flex-start;
}
.reservation-details .vcc-container .vcc-status-badge.active {
  background: #28a745;
}
.reservation-details .vcc-container .vcc-status-badge.inactive {
  background: #dc3545;
}
.reservation-details .vcc-container .vcc-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.reservation-details .vcc-container .vcc-btn {
  background: #f1f3f5;
  border: 1px solid #d0d5d9;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.reservation-details .vcc-container .vcc-btn:hover {
  background: #e9ecef;
}
.reservation-details .vcc-container .vcc-btn:active {
  background: #dee2e6;
}
.reservation-details .vcc-container .vcc-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.35);
}
.reservation-details .vcc-container .vcc-btn.small {
  padding: 4px 6px;
  font-size: 11px;
}
.reservation-details .vcc-container .vcc-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px 24px;
  padding: 4px 4px 8px;
}
.reservation-details .vcc-container .vcc-field {
  min-width: 140px;
}
.reservation-details .vcc-container .masked {
  letter-spacing: 2px;
  font-family: "Roboto Mono", monospace;
}
.reservation-details .vcc-container .card-number {
  font-family: "Roboto Mono", monospace;
  font-size: 16px;
}
.reservation-details .vcc-container .vcc-transactions {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .reservation-details .vcc-container .vcc-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .reservation-details .vcc-container .vcc-actions {
    margin-left: 0;
  }
  .reservation-details .vcc-container .vcc-fields {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
.reservation-details .invoice-container {
  position: relative;
}
.reservation-details .invoice-container .loader-div {
  height: 100%;
  position: absolute;
}
.reservation-details .gi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 767px) {
  .reservation-details .gi-grid {
    grid-template-columns: 1fr;
  }
}
.reservation-details .gi-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 0 0;
}
.reservation-details .gi-item:not(:first-child) {
  padding-left: 20px;
  border-left: 1px solid #e3e6e8;
}
@media (max-width: 767px) {
  .reservation-details .gi-item:not(:first-child) {
    border-left: none;
    border-top: 1px solid #e3e6e8;
    padding-left: 0;
    padding-top: 12px;
    margin-top: 12px;
  }
}
.reservation-details .gi-item:last-child {
  padding-right: 0;
}
.reservation-details .gi-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(51, 122, 183, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reservation-details .gi-icon-badge i {
  font-size: 17px;
  color: #337ab7;
}
.reservation-details .gi-body {
  min-width: 0;
  flex: 1;
}
.reservation-details .gi-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 2px;
}
.reservation-details .gi-value {
  font-size: 12px;
  font-weight: 500;
  color: #2d2d2d;
  word-break: break-word;
}
.reservation-details .gi-value a {
  color: #337ab7;
  text-decoration: none;
}
.reservation-details .gi-value a:hover {
  text-decoration: underline;
}
.reservation-details .gi-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
}
.reservation-details .gi-notice i {
  font-size: 15px;
  color: #9ca3af;
  flex-shrink: 0;
}
.preview-modal .modal-dialog {
  min-width: 70%;
}
.add-a-fee-modal .loader-div,
.schedule-modal .loader-div,
.cancel-modal .loader-div,
.guest-verification-modal .loader-div {
  height: 100%;
  position: absolute;
}
.add-a-fee-modal .modal-header,
.schedule-modal .modal-header,
.cancel-modal .modal-header,
.guest-verification-modal .modal-header {
  justify-content: center;
}
.reservation-details .reservation-item {
  padding: 10px 0px;
}
.reservation-details .reservation-item a {
  color: #337ab7;
  overflow-wrap: break-word;
}
.reservation-details .detail-label {
  margin-bottom: 6px;
  display: block;
}
.reservation-details .sub-text {
  font-size: 12px;
  margin: 0 0 0 10px;
}
.reservation-details .renter-contact {
  color: #337ab7;
  display: inline-block;
  margin-bottom: 10px;
}
.reservation-billing {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.reservation-billing .icon-question-mark {
  color: #337ab7;
}
.reservation-billing:last-child {
  margin-top: 10px;
}
.reservation-billing-border {
  border-top: 1px solid #dedede;
  flex: auto;
  margin: 10px 10px 0;
}
.logs-modal .modal-dialog {
  max-width: 700px;
}
.logs-modal .delivery-status-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logs-modal .delivery-status-error-icon {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.ri-layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 8px;
}
.ri-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 767px) {
  .ri-columns {
    grid-template-columns: 1fr;
  }
}
.ri-card {
  background: #fff;
  border: 1px solid #e3e6e8;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 16px;
}
.ri-card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e3e6e8;
}
.ri-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e3e6e8;
}
.ri-card-header .ri-card-title {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.ri-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
@media (max-width: 767px) {
  .ri-field-grid {
    grid-template-columns: 1fr;
  }
}
.ri-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ri-label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ri-value {
  font-size: 14px;
  color: #2d2d2d;
  font-weight: 500;
}
.ri-value-sub {
  font-size: 12px;
  color: #6b7280;
}
.ri-billing-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ri-billing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #2d2d2d;
}
.ri-billing-row span:last-child {
  font-weight: 500;
}
.ri-billing-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #2d2d2d;
  border-top: 1px solid #e3e6e8;
  margin-top: 6px;
  padding-top: 10px;
}
.ri-billing-adj {
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
  line-height: 1.5;
}
.ri-promo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #ac2431;
  margin-top: 4px;
}
.ri-promo span:last-child {
  font-weight: 600;
}
.sd-dates {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e3e6e8;
}
.sd-date-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sd-date-block--right {
  align-items: flex-end;
}
.sd-date-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 2px;
}
.sd-date-day {
  font-size: 20px;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.1;
}
.sd-date-year {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 1px;
}
.sd-duration {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sd-duration__line {
  flex: 1;
  height: 1px;
  background: #d1d5db;
}
.sd-duration__pill {
  font-size: 11px;
  font-weight: 600;
  color: #337ab7;
  background: rgba(51, 122, 183, 0.1);
  border: 1px solid rgba(51, 122, 183, 0.25);
  border-radius: 20px;
  padding: 2px 9px;
  white-space: nowrap;
}
.sd-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sd-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #f0f1f3;
}
.sd-meta-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sd-meta-row--cancelled .sd-meta-label,
.sd-meta-row--cancelled .sd-meta-value {
  color: #ac2431;
}
.sd-meta-label {
  font-size: 12px;
  color: #6b7280;
}
.sd-meta-value {
  font-size: 13px;
  font-weight: 500;
  color: #2d2d2d;
  text-align: right;
}
.sd-meta-sub {
  font-size: 11px;
  font-weight: 400;
  color: #9ca3af;
}
.pb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e6e8;
}
.pb-header .pb-header__title {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.pb-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pb-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: #2d2d2d;
  padding: 7px 0;
  border-bottom: 1px solid #f0f1f3;
}
.pb-row:last-child {
  border-bottom: none;
}
.pb-row span:first-child {
  color: #6b7280;
}
.pb-row span:last-child {
  font-weight: 500;
}
.pb-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  font-weight: 700;
  color: #2d2d2d;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 9px 10px;
  margin-top: 8px;
}
.pb-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 8px;
}
.pb-adj {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e3e6e8;
}
.pb-adj__note {
  font-size: 11px;
  color: #9ca3af;
  margin: 0 0 8px;
  font-style: italic;
}
.pb-promo {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e3e6e8;
}
.pb-promo__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: #2d2d2d;
  margin-bottom: 4px;
}
.pb-promo__code {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
}
.pb-promo__amount {
  font-weight: 600;
  color: #ac2431;
}
.rd-hero__report-bar {
  display: flex;
  justify-content: flex-end;
}
.rd-hero__report-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: #337ab7;
  cursor: pointer;
  text-decoration: underline;
}
.rd-hero__report-link:hover {
  color: #285f8f;
}
.rd-hero {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  background: #1a1a2e;
}
.rd-hero__image {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
}
.rd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.rd-hero__content {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 60px;
}
.rd-hero__name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.25;
}
.rd-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.rd-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.rd-chip--type {
  background: rgba(172, 36, 49, 0.75);
  border-color: rgba(172, 36, 49, 0.9);
}
.rd-hero__rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.rd-hero__property-id {
  position: absolute;
  bottom: 10px;
  right: 12px;
}
.rd-hero__property-id a,
.page-container .main-container .rd-hero__property-id a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
}
.rd-hero__property-id a:hover,
.page-container .main-container .rd-hero__property-id a:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.rd-hero__ref-id {
  opacity: 0.8;
  font-weight: 400;
}
.rd-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #fff;
  border-top: 1px solid #e3e6e8;
}
.rd-hero__location {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 5px;
}
.rd-hero__org-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 2;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rd-hero__link {
  font-size: 13px;
  font-weight: 600;
  color: #337ab7;
  text-decoration: none;
}
.rd-hero__link:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .fe-select-wrap.actions-select {
    width: auto;
    min-width: 140px;
  }
}
.rd-dashboard-header {
  max-width: 860px;
  margin: 0 auto 12px;
  text-align: center;
}
.rd-dashboard-header .page-header__back {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.reservations-listing .page-body {
  padding: 0 24px;
}
.reservations-listing .reservation-listing-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}
.reservations-listing .reservation-listing-actions .fe-checkbox,
.reservations-listing .reservation-listing-actions .picky,
.reservations-listing .reservation-listing-actions .date-picker-wrap,
.reservations-listing .reservation-listing-actions .reset-filter {
  flex-shrink: 0;
}
.reservations-listing .reservation-listing-actions .search-inp {
  flex: 1;
  min-width: 140px;
}
.reservations-listing .reservation-listing-actions .search-inp input.form-field {
  width: 100%;
}
@media (max-width: 1280px) {
  .reservations-listing .reservation-listing-actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .reservations-listing .reservation-listing-actions .date-picker-wrap {
    width: 100%;
  }
}
.reservations-listing.mobile-view .ReactTable .rt-noData {
  z-index: 0;
}
.reservations-listing.mobile-view .search-inp input.form-field {
  height: 34px;
}
.reservations-listing.mobile-view .DayPickerNavigation_prevButton__verticalDefault {
  height: 35px;
  top: -526px;
  width: 100%;
}
.reservations-listing.mobile-view .DayPickerNavigation_nextButton__verticalDefault {
  width: 100%;
  height: 35px;
  bottom: 67px;
}
.reservations-listing.mobile-view .DayPickerNavigation_svg__vertical {
  position: relative;
  left: 123px;
  top: -10px;
}
.reservations-listing.mobile-view .DayPickerNavigation__verticalDefault {
  height: 0px;
}
.reservations-listing.mobile-view .CalendarMonth_caption:nth-child(1) {
  padding-top: 35px;
}
.reservations-listing .DateRangePicker {
  width: auto;
  margin-left: 15px;
}
.reservations-listing .DateRangePicker_picker {
  left: -50px !important;
}
.reservations-listing .DateRangePickerInput {
  background-color: #f5f5f5;
}
.reservations-listing .CalendarDay__hovered_span {
  background-color: rgba(172, 36, 49, 0.15);
}
.reservations-listing .CalendarDay__selected_span {
  background-color: rgba(172, 36, 49, 0.15) !important;
}
.reservations-listing .CalendarDay__selected_start {
  background-color: #AC2431 !important;
}
.reservations-listing .CalendarDay__selected_end {
  background-color: #AC2431 !important;
}
.reservations-listing .payout-timing-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}
.reservations-listing .payout-timing-note i {
  font-size: 15px;
  color: #999;
  flex-shrink: 0;
}
.reservations-listing .payout-timing-note a {
  font-weight: 600;
}
@media (max-width: 767px) {
  .reservations-listing .payout-timing-note {
    display: none;
  }
}
.reservations-listing .col-header-abbr {
  display: none;
}
@media (max-width: 1024px) {
  .reservations-listing .col-header-full {
    display: none;
  }
  .reservations-listing .col-header-abbr {
    display: inline;
  }
}
.reservations-listing .picky {
  width: 130px;
  margin-left: 5px;
  white-space: nowrap;
}
.reservations-listing .picky .picky__dropdown {
  overflow-y: hidden !important;
}
.reservations-listing .pagination-container .mobile-link {
  z-index: 0;
}
.reservations-listing .content-right {
  display: flex;
  justify-content: flex-end;
}
.reservations-listing .reset-filter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservations-listing .reservations-listing-simple-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.react-autosuggest__container {
  position: relative;
}
.react-autosuggest__input {
  width: 100%;
  height: 36px;
  padding: 10px;
  border: 1px solid lightblue;
  border-radius: 4px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.react-autosuggest__input--focused {
  outline: none;
}
.react-autosuggest__input--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.react-autosuggest__suggestions-container {
  display: none;
}
.react-autosuggest__suggestions-container--open {
  display: block;
  position: absolute;
  top: 33px;
  width: 100%;
  min-width: 160px;
  margin-left: 1px;
  background-color: #ffffff;
  border-radius: 0 0 4px 4px;
  z-index: 2;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.react-autosuggest__suggestion {
  cursor: pointer;
  padding: 10px 20px;
}
.react-autosuggest__suggestion--highlighted {
  color: #ac2431;
  background-color: rgba(172, 36, 49, 0.15);
}
.auto-suggest-loader .loader-div {
  height: 0;
}
.auto-suggest-loader .loader-div .circular {
  top: 105px;
  bottom: unset;
  left: unset;
  right: 40px;
  width: 20px;
}
.importing-loader {
  padding-top: 20px;
  text-align: center;
}
.importing-loader .loader-div {
  height: 0;
}
.importing-loader .loader-div .circular {
  top: 115px;
  width: 40px;
}
.importing-loader .progress-wrapper {
  margin-top: 50px;
}
.importing-loader .progress-wrapper p {
  margin-bottom: 10px;
}
.importing {
  height: 245px;
  padding-top: 25px;
}
.importing p {
  font-size: 21px;
}
.new-importing {
  float: left !important;
  background-color: white !important;
}
.auto-height-import {
  height: auto !important;
}
.import-btns {
  margin-top: 15px;
}
.import-btns .primary-btn {
  padding: 5px 20px;
  font-size: 12px;
  width: 145px;
}
.available-room-modal .modal-content {
  float: left;
  width: 100%;
}
.available-room-modal .modal-body {
  float: left;
  background-color: #fff;
  width: 100%;
}
.available-room-modal .modal-body .unavailable-title {
  margin-bottom: 20px;
}
.available-room-modal .modal-body .unavailable-title .update-txt {
  color: #337ab7;
  cursor: pointer;
  font-size: 17px;
}
.available-room-modal .modal-body ol {
  display: inline-block;
}
.available-room-modal .modal-body ol li {
  list-style: none;
  position: relative;
  font-size: 19px;
  padding: 5px 0;
}
.available-room-modal .modal-body ol li::before {
  font-weight: 800;
  position: absolute;
  left: 0;
  margin-left: -18px;
}
.no-collection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 24px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  border: 1.5px dashed #d1d5db;
  border-radius: 10px;
  background: #fafafa;
  margin: 16px 0;
}
.no-collection::before {
  content: "\e94d";
  font-family: 'redawning';
  font-size: 36px;
  color: #d1d5db;
  line-height: 1;
  display: block;
  speak: never;
}
.no-collection--custom-icon::before {
  display: none;
}
.no-collection--custom-icon .no-collection__icon {
  font-size: 36px;
  color: #d1d5db;
  line-height: 1;
}
.no-collection--custom-icon .no-collection__sub {
  font-size: 12px;
  color: #9ca3af;
}
.collections-error {
  pointer-events: all;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 24px;
  text-align: center;
  border: 1.5px solid rgba(172, 36, 49, 0.25);
  border-radius: 10px;
  background: rgba(172, 36, 49, 0.04);
  margin: 16px 0;
}
.collections-error i {
  font-size: 36px;
  color: #ac2431;
}
.collections-error strong {
  font-size: 15px;
  color: #ac2431;
}
.collections-error__detail {
  font-size: 13px;
  color: #6b7280;
  max-width: 400px;
}
.collections-error__retry {
  pointer-events: all;
  margin-top: 8px;
}
.collections-container .accordion {
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
}
.collections-container .accordion-item {
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
}
.collections-container .accordion-item:first-of-type,
.collections-container .accordion-item:last-of-type {
  border-radius: 0 !important;
}
.collections-container .accordion-item:first-of-type .accordion-button {
  border-radius: 0 !important;
}
.collections-container .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0 !important;
}
.collections-container .accordion-button {
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 12px;
}
.collections-container .accordion-button::after {
  margin-left: 0;
  margin-right: 0;
  flex-shrink: 0;
  transform: rotate(-90deg);
}
.collections-container .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}
.collections-container .pagination-container {
  margin-right: 40px;
}
.collections-container .pagination-container .pagination {
  margin: 0px;
}
.collections {
  margin-bottom: 8px;
}
.collections .panel {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
.collections .newClass:after {
  top: 10px;
  right: unset;
  content: "\E938" !important;
  left: -25px;
}
.collections .panel-title:after {
  content: "\276F";
  top: 10px;
  right: unset;
  left: -25px;
}
.collections .collection-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-right: 20px;
}
.collections .collection-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.collections .collection-name {
  font-size: 15px;
  color: #2d2d2d;
  line-height: 1.2;
}
.collections .collection-suborg {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}
.collections .col-desc {
  font-size: 13px;
  color: #666;
  margin: 4px 0 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.collections .accordion-header-wrap {
  display: flex;
  align-items: center;
}
.collections .accordion-header-wrap .accordion-header {
  flex: 1;
  min-width: 0;
  border-bottom: none;
}
.collections .accordion-header-wrap .accordion-header .accordion-button {
  padding: 15px;
  min-height: 65px;
  cursor: pointer;
  background-color: transparent;
}
.collections .accordion-header-wrap .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.collections .accordion-header-wrap .accordion-header .accordion-button:hover {
  box-shadow: none;
}
.collections .accordion-header-wrap:hover {
  box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.18), inset 0 -2px 3px -1px rgba(0, 0, 0, 0.18);
}
.collections .accordion-header-wrap > .actions-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.collections .accordion-button {
  padding: 10px 45px;
  min-height: 65px;
  cursor: pointer;
  background-color: transparent;
}
.collections .accordion-button:focus {
  box-shadow: none;
}
.collections .accordion-button:hover {
  box-shadow: 0 0px 3px 1px rgba(0, 0, 0, 0.2);
}
.collections .panel-heading {
  padding: 10px 45px;
  height: 65px;
  cursor: pointer;
}
.collections .panel-heading:hover {
  box-shadow: 0 0px 3px 1px rgba(0, 0, 0, 0.2);
}
.collections .no-of-rooms {
  text-align: center;
  font-weight: bold;
  width: 75px;
}
.collections .t-header {
  border-bottom: 1px solid #d5d5d5;
}
.collections .pagination {
  float: right;
}
.collections .dropdown .dropdown-toggle::after {
  display: none;
}
.collection-panel .row .bottom {
  margin-bottom: 20px;
}
.error {
  position: absolute;
  left: 15px;
  color: red;
  top: 59px;
}
@media (max-width: 767px) {
  .actions-container {
    margin: 0;
  }
}
.actions-container .icon-plus {
  color: #337ab7;
}
.actions-container .fe-dropdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.actions-container .fe-dropdown__trigger {
  width: 32px;
  height: 32px;
  padding: 6px;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 6px;
  gap: 0;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transition: all 0.2s ease;
}
.actions-container .fe-dropdown__trigger:not(:hover):not(:focus-visible):not(.actions-container .fe-dropdown__trigger--open) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.actions-container .fe-dropdown__trigger:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.05) !important;
  border: none !important;
  color: #85bee8;
  transform: translateY(-1px);
}
.actions-container .fe-dropdown__trigger:active {
  transform: translateY(0);
}
.actions-container .fe-dropdown__trigger--open {
  background: rgba(0, 0, 0, 0.05) !important;
  border: none !important;
}
.actions-container .fe-dropdown__caret {
  display: none;
}
.rooms .rooms-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 0 15px 12px;
}
.rooms .rooms-actions .loader-div {
  height: 25px;
  position: relative;
  float: right;
  width: 168px;
  z-index: 85;
}
.rooms .rooms-actions .loader-div .circular {
  width: 25px;
}
.rooms .room-list {
  padding: 0 15px;
}
.rooms .room-list .ReactTable .status-loader .loader-div {
  position: relative;
  left: 10px;
}
.rooms .room-list .ReactTable .status-loader .loader-div .circular {
  height: 30px;
  top: 23px;
}
.rooms .room-list .ReactTable .rt-table::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.rooms .room-list .ReactTable .rt-table .rt-tbody .rt-tr-group {
  transition: height 10s;
}
.rooms .room-list .ReactTable .rt-table .rt-tbody .rt-tr-group .rt-tr .rt-td:nth-child(2) {
  padding: 11px;
}
.rooms .room-list .ReactTable .rt-table .rt-tbody .rt-tr-group .rt-tr .rt-td .delete-row-loader .loader-div {
  position: relative;
}
.rooms .room-list .ReactTable .rt-table .rt-tbody .rt-tr-group .rt-tr .rt-td .delete-row-loader .loader-div .circular {
  top: 16px;
  bottom: 0;
  left: -10px;
  width: 25px;
}
.rooms .room-list .ReactTable .rt-table .rt-tbody .rt-tr-group .rt-tr-loader {
  height: 25.86px;
  width: 100%;
}
.rooms .room-list .ReactTable .rt-table .rt-tbody .rt-tr-group .rt-tr-loader .loader-div {
  position: relative;
  background-color: white;
  z-index: 90;
  left: unset;
  width: 100%;
  top: unset;
}
.rooms .room-list .ReactTable .rt-table .rt-tbody .rt-tr-group .rt-tr-loader .loader-div .circular {
  margin: unset;
  width: 20px;
  height: 49px;
  left: 72%;
  top: -10px;
}
.rooms .room-list .ReactTable .loader-div {
  position: absolute;
  width: 10%;
  left: 42%;
  z-index: 101;
  top: 65%;
  height: unset;
}
.rooms .input-room-name {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.rooms .input-room-name .action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #dedede;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  color: #337ab7;
  transition: all 0.2s ease;
}
.rooms .input-room-name .action:hover {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.rooms .input-room-name input {
  border: 1px solid #d5d5d5;
  padding: 3px;
  padding-left: 10px;
  flex-grow: 1;
  float: left;
}
.rooms .input-room-name a {
  padding-top: 2px;
  padding-bottom: 2px;
}
.rooms .input-room-name button {
  padding-top: 3px;
  padding-bottom: 3px;
}
.rooms .room-editable {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  width: 100%;
  padding: 5px 8px 5px 10px;
  cursor: pointer;
  gap: 6px;
  min-width: 0;
}
.rooms .room-editable .elipsis-wrapper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rooms .room-editable i {
  font-size: 12px;
  flex-shrink: 0;
}
.rooms .room-editable .loader-div {
  position: relative !important;
  width: 100% !important;
  z-index: 101;
  top: 65%;
  height: unset;
}
.rooms .room-editable .loader-div .circular {
  animation: rotate 2s linear infinite;
  transform-origin: center center;
  width: 20px;
  position: absolute;
  top: -20px;
  right: 0px;
  margin: auto;
}
.rooms .cico {
  margin-top: 15px;
  width: 100%;
}
.rooms .cico div {
  padding: 0;
}
.rooms .cico i {
  margin-right: 10px;
}
.rooms-calendar-view .rooms-calendar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.rooms-calendar-view .rooms-calendar-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 13px;
  color: #337ab7;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.rooms-calendar-view .rooms-calendar-back:hover {
  background: #f5f5f5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.rooms-calendar-view .rooms-calendar-back i {
  font-size: 11px;
}
.rooms-calendar-view .rooms-calendar-title {
  font-size: 15px;
  font-weight: 600;
  color: #2d2d2d;
}
.animation-delete {
  animation: app 1s;
  animation-iteration-count: 1;
  animation-fill-mode: backwards;
}
@-webkit-keyframes app {
  from {
    transform: initial;
  }
  to {
    transform: translateX(200%);
  }
}
.room-actions {
  margin-top: 6px;
}
.room-actions [class^="icon-"],
.room-actions [class*=" icon-"] {
  font-size: 16px;
}
.room-status .modal-dialog {
  width: 450px;
}
.room-status .modal-dialog .modal-body {
  padding: 20px;
  height: 170px;
  text-align: center;
}
.room-status .modal-dialog .modal-body h1 {
  margin-top: 70px;
}
.room-status .modal-dialog .modal-body .loader-div {
  height: unset;
  margin-top: 50px;
}
.room-delete .modal-dialog {
  max-width: 450px;
}
.room-delete .modal-dialog .fix-height {
  height: 80px;
}
.room-delete .modal-dialog .modal-body {
  padding: 20px;
  height: 180px;
  text-align: center;
}
.room-delete .modal-dialog .modal-body .icon-delete {
  font-size: 52px;
  color: #ff4f5f;
}
.room-delete .modal-dialog .modal-body h1 {
  margin-top: 20px;
}
.room-delete .modal-dialog .modal-body .loader-div {
  height: unset;
  margin-top: 50px;
}
.room-delete .modal-dialog .modal-body .pri-btn {
  display: inline-block;
  margin-top: 20px;
  width: 50%;
}
.room-modal .modal-dialog {
  width: 450px !important;
}
.room-modal .modal-dialog .modal-body {
  height: 170px;
}
.room-modal .modal-dialog .pri-btn {
  margin-top: 20px;
}
.promotionsform .channels-container,
.promotionsform .exclude-date-container {
  margin-bottom: 15px;
}
.promotionsform .channels-content {
  padding: 15px;
  border: 1px solid #dedede;
  border-radius: 5px;
}
.promotionsform .channels-content.form-validation {
  border: 3px solid #ac2431;
}
.promotionsform .channels-actions,
.promotionsform .exclude-date-actions {
  display: flex;
  align-items: center;
}
.promotionsform .exclude-date-content {
  padding: 15px;
  border: 1px solid #dedede;
  border-radius: 5px;
}
#content.promotionsform .promotion-status {
  position: relative;
  top: 5px;
  left: 5px;
  font-weight: 600;
  color: #666;
}
#content.promotionsform .promotion-status .live-btn {
  margin-left: 10px;
  cursor: pointer;
  padding: 2px 20px 3px 6px;
  font-size: 12px;
  width: 80px;
  text-align: left;
  position: relative;
}
#content.promotionsform .promotion-status .live-btn.not-live {
  border-color: #ac2431;
  color: #ac2431;
}
#content.promotionsform .promotion-status .caret {
  position: absolute;
  top: 12px;
  left: 110px;
  font-size: 8px;
}
#content.promotionsform .checkbox-wrap.checkbox-input input[type="checkbox"] + .checkbox-label {
  font-weight: 500;
}
#content.promotionsform .property-loader {
  width: 0px;
  height: 0px;
  position: absolute;
  top: 0;
  right: 0px;
  display: block;
  float: right;
  background-color: black;
}
#content.promotionsform .property-loader .loader-div {
  height: 0;
  width: 0;
  position: relative;
}
#content.promotionsform .property-loader .loader-div .circular {
  top: 18px;
  bottom: unset;
  left: -45px;
  right: unset;
  width: 20px;
}
.muted {
  opacity: 0.5;
  color: #666;
  cursor: progress;
}
.lg-modal .modal-dialog {
  width: 900px;
}
.submit-loader .loader-div {
  height: 0;
}
.submit-loader .loader-div .circular {
  top: 115px;
  width: 40px;
}
.DateRangePickerInput__disabled {
  background-color: #fff;
}
#content.promotionsform .info-popover {
  position: relative;
  top: 2px;
}
#content.promotionsform .channels-div {
  border: 1px solid #dedede;
  width: 80%;
  padding: 15px 0;
  margin: 0 5px 25px 0;
}
#content.promotionsform .exclude-div {
  border: 1px solid #dedede;
  width: 80%;
  padding: 15px 0;
  margin: 0 5px 25px 0;
}
#content.promotionsform .icon-delete {
  margin-top: 5px;
  font-size: 20px;
  color: #ac2431;
}
#content.promotionsform label {
  font-weight: bold;
}
#content .badge-checkbox.checkbox-disabled input:checked + label {
  background: #dedede;
}
#content .checkbox-wrap.checkbox-input.checkbox-disabled input[type="checkbox"] + .checkbox-label,
#content .radio-wrap.radio-input.radio-disabled input[type="radio"] + .radio-label,
#content .badge-checkbox.checkbox-disabled input:not(:checked) + label,
#content .badge-checkbox.checkbox-disabled input:checked + label,
#content input[type="text"].form-field:disabled,
#content html input[disabled],
#content select.form-field:disabled {
  cursor: not-allowed;
  color: #999;
}
#content.promotionsform .checkbox-disabled,
#content.promotionsform .radio-wrap.radio-input.radio-disabled input[type="radio"] + .radio-label {
  color: #dedede;
}
.promotions-list .DateRangePicker {
  width: auto;
  margin-left: 15px;
}
.promotions-list .DateRangePickerInput {
  background-color: #f5f5f5;
}
.promotions-list .CalendarDay__hovered_span {
  background-color: rgba(172, 36, 49, 0.15);
}
.promotions-list .CalendarDay__selected_span {
  background-color: rgba(172, 36, 49, 0.15) !important;
}
.promotions-list .CalendarDay__selected_start {
  background-color: #ac2431 !important;
}
.promotions-list .CalendarDay__selected_end {
  background-color: #ac2431 !important;
}
.promo-bulletin {
  list-style: none;
}
.promo-bulletin li {
  padding-left: 6px;
}
.promo-bulletin li:before {
  content: "\25C6";
  position: relative;
  left: -7px;
  font-size: 12px;
}
.promotions .promo-skeleton {
  padding: 4px 0;
}
.promotions .promo-skeleton .promo-skeleton__title {
  width: 140px;
  height: 20px;
  margin-bottom: 20px;
  display: block;
}
.promotions .promo-skeleton .promo-skeleton__row {
  display: grid;
  grid-template-columns: 3fr 150px 50px 50px 25px;
  align-items: start;
  gap: 16px;
  padding: 8px 0;
  border-top: 1px solid #f0f0f0;
}
.promotions .promo-skeleton .promo-skeleton__row:first-of-type {
  border-top: none;
}
.promotions .promo-skeleton .promo-skeleton__col {
  display: flex;
  flex-direction: column;
}
.promotions .promo-skeleton .promo-skeleton__col .skeleton-line {
  margin-bottom: 0;
}
.promotions .promo-skeleton .promo-skeleton__icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px !important;
}
.promotions .promo-skeleton .promo-skeleton__switch {
  width: 44px;
  height: 24px;
  border-radius: 12px !important;
}
.promotions.read-only input,
.promotions.read-only .picky,
.promotions.read-only .manage-device-icon,
.promotions.read-only .file-input-wrap,
.promotions.read-only .react-switch-bg,
.promotions.read-only .DateRangePickerInput_clearDates,
.promotions.read-only .react-switch-handle {
  pointer-events: none;
}
.promotions .custom-container {
  min-height: 100px;
}
.promotions .custom-container .loader-div {
  height: 100%;
  position: absolute;
}
.promotions .promo-fields-row {
  display: grid;
  grid-template-columns: 3fr 150px 50px 50px 25px;
  align-items: start;
  gap: 16px;
  padding: 8px 0;
}
.promotions .promo-fields-row .promo-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.promotions .promo-fields-row .promo-col--title .promo-label-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.promotions .promo-fields-row .promo-col--title .promo-label-wrap .form-label {
  font-size: 15px;
  margin-bottom: 0;
}
.promotions .promo-fields-row .promo-col--discount .promo-discount-group {
  display: flex;
  align-items: center;
}
.promotions .promo-fields-row .promo-col--settings {
  align-items: center;
}
.promotions .promo-fields-row .promo-col--settings .promo-settings-btn {
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #dedede;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d2d2d;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.promotions .promo-fields-row .promo-col--settings .promo-settings-btn .icon-selection-tip {
  font-size: 14px;
  transition: transform 0.2s;
  display: block;
}
.promotions .promo-fields-row .promo-col--settings .promo-settings-btn.is-open {
  background: #2d2d2d;
  border-color: #2d2d2d;
  color: #fff;
}
.promotions .promo-fields-row .promo-col--settings .promo-settings-btn.is-open .icon-selection-tip {
  transform: rotate(180deg);
}
.promotions .promo-fields-row .promo-col--settings .promo-settings-btn:hover:not(.is-open) {
  border-color: #b8b8b8;
  background: #f5f5f5;
}
.promotions .promo-fields-row .promo-col--switch {
  align-items: center;
}
.promotions .promo-fields-row .promo-col--actions {
  align-items: center;
}
.promotions .promo-fields-row .promo-col--actions .promo-clone-btn {
  cursor: pointer;
  font-size: 22px;
  color: #337ab7;
  display: flex;
  align-items: center;
}
.promotions .promo-fields-row .promo-col--actions .promo-clone-btn:hover {
  opacity: 0.75;
}
.promotions .promo-panel {
  position: relative;
  margin-top: 4px;
  padding: 20px 24px 24px;
}
.promotions .promo-panel > .row {
  margin-bottom: 20px;
}
.promotions .promo-panel > .row:last-child {
  margin-bottom: 0;
}
.promotions .promo-panel .form-label {
  font-weight: 600;
  font-size: 13px;
  color: #2d2d2d;
  margin-bottom: 10px;
  display: block;
}
.promotions .promo-panel .promo-date-mode {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}
.promotions .promo-panel .promo-date-mode .radio-wrap {
  margin: 0;
}
.promotions .promo-panel .promo-date-row,
.promotions .promo-panel .promo-blocked-range {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  background: #f5f5f5;
  border: 1px solid #dedede;
  border-radius: 4px;
  margin-bottom: 6px;
}
.promotions .promo-panel .promo-date-row .promo-date-icon,
.promotions .promo-panel .promo-blocked-range .promo-date-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}
.promotions .promo-panel .promo-date-row .DateRangePicker,
.promotions .promo-panel .promo-blocked-range .DateRangePicker,
.promotions .promo-panel .promo-date-row .single-date-picker,
.promotions .promo-panel .promo-blocked-range .single-date-picker {
  flex: 1 1 auto;
  min-width: 0;
}
.promotions .promo-panel .promo-date-row [role="button"],
.promotions .promo-panel .promo-blocked-range [role="button"] {
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.promotions .promo-panel .promo-date-row [role="button"]:hover,
.promotions .promo-panel .promo-blocked-range [role="button"]:hover {
  opacity: 1;
}
.promotions .promo-panel .promo-date-row [role="button"] .icon-delete,
.promotions .promo-panel .promo-blocked-range [role="button"] .icon-delete {
  font-size: 18px;
  color: #ac2431;
}
.promotions .promo-panel .promo-date-row:has(.form-validation),
.promotions .promo-panel .promo-blocked-range:has(.form-validation) {
  border-color: #ac2431;
}
.promotions .promo-panel .promo-date-row .form-validation .DateRangePickerInput .DateInput_input,
.promotions .promo-panel .promo-blocked-range .form-validation .DateRangePickerInput .DateInput_input {
  border: 2px solid #ac2431;
}
.promotions .promo-panel .promo-date-row .form-validation .single-date-picker .sdp-input-wrapper input.form-control,
.promotions .promo-panel .promo-blocked-range .form-validation .single-date-picker .sdp-input-wrapper input.form-control {
  border: 2px solid #ac2431;
}
.promotions .promo-panel .icon-calendar-checkmark.promo-date-icon {
  color: #5ad888;
}
.promotions .promo-panel .icon-calendar-cross.promo-date-icon {
  color: #ac2431;
}
.promotions .promo-panel .DateRangePicker .DateRangePickerInput {
  background: transparent;
  border: none;
}
.promotions .promo-panel .DateRangePicker .DateRangePickerInput .DateInput {
  width: 88px;
  background: transparent;
}
.promotions .promo-panel .DateRangePicker .DateRangePickerInput .DateInput::after {
  content: none;
}
.promotions .promo-panel .DateRangePicker .DateRangePickerInput .DateInput_input {
  background: transparent;
  border: none;
  padding: 4px 6px;
  font-size: 13px;
}
.promotions .promo-panel .DateRangePicker .DateRangePickerInput .DateRangePickerInput_arrow {
  padding: 0 4px;
}
.promotions .promo-panel .DateRangePicker .DateRangePickerInput .DateRangePickerInput_clearDates {
  margin: 0;
  display: none;
}
.promotions .promo-panel .show-clear-dates .DateRangePicker .DateRangePickerInput .DateRangePickerInput_clearDates {
  display: flex;
  align-items: center;
}
.promotions .promo-panel .promo-add-range {
  margin-top: 10px;
}
.promotions .promo-panel .promo-add-range .primary-btn {
  font-size: 13px;
  padding: 4px 12px;
}
.promotions .promo-panel .error-msg {
  font-size: 12px;
  color: #ac2431;
  margin-top: 4px;
}
.promotions .promo-panel .picky {
  width: 100%;
}
.promotions .promo-panel .picky .picky__input {
  padding-right: 35px;
}
.promotions .promo-panel .picky .picky__input span:first-of-type {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.promotions .promo-panel .promo-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.promo-modal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.promo-modal-list li {
  display: flex;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid #f3f3f3;
  font-size: 14px;
  color: #333;
  break-inside: avoid;
}
.promo-modal-list li:last-child {
  border-bottom: none;
}
.promo-modal-list.two-col {
  column-count: 2;
  column-gap: 24px;
}
.fs-list-view-criteria span {
  display: block;
}
.fs .icon-delete {
  color: #ac2431;
  font-size: 18px;
  padding: 0 5px;
}
.fsf__back-row {
  margin-bottom: 16px;
}
.fsf--readonly {
  pointer-events: none;
  opacity: 0.85;
}
.fsf__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.fsf__toolbar-status {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fsf__status-label {
  font-weight: 600;
  font-size: 14px;
  color: #2f2f32;
}
.fsf__toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fsf__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fsf__section--constrained {
  width: 75%;
}
.fsf__section-title {
  font-size: 14px;
  font-weight: bold;
  margin: 20px 0 10px;
}
.fsf__criteria-wrap {
  width: 100%;
  margin-top: 15px;
}
.fsf__criteria {
  position: relative;
  padding: 16px;
  background-color: #f8f9fa;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.fsf__criteria + .fsf__criteria {
  margin-top: 12px;
}
.fsf__criteria--invalid {
  border-color: #dc3545;
  background-color: #fff5f5;
}
.fsf__remove-criteria {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px;
  cursor: pointer;
  line-height: 1;
  color: #dc3545;
  transition: color 0.2s;
}
.fsf__remove-criteria:hover {
  color: #bd2130;
}
.fsf__remove-criteria i {
  font-size: 16px;
}
.fsf__criteria-errors {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
}
.fsf__dates-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}
.fsf__dates-picker {
  flex: 1 1 auto;
}
.fsf__dates-add {
  flex: 0 0 auto;
  width: 200px;
}
.fsf__note {
  font-size: 0.875em;
  color: #6c757d;
  margin: 0;
}
@media (max-width: 767px) {
  .fsf__body {
    gap: 16px;
  }
  .fsf__section--constrained {
    width: 100%;
  }
  .fsf__section .col-xs-12 + .col-xs-12,
  .fsf__section--constrained .col-xs-12 + .col-xs-12,
  .fsf__section [class*="col-"] + [class*="col-"],
  .fsf__section--constrained [class*="col-"] + [class*="col-"] {
    margin-top: 12px;
  }
  .fsf__toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .fsf__toolbar-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .fsf__dates-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .fsf__dates-add {
    width: 100%;
  }
  .fsf__criteria {
    padding: 12px;
  }
  .fsf__remove-criteria {
    top: 8px;
    right: 8px;
  }
}
.cleaning__listings-table {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cleaning__listings-table {
    border-radius: 6px;
  }
}
.cleaning__listings-table .ReactTable table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .cleaning__listings-table .ReactTable table {
    min-width: 360px;
  }
}
.cleaning__listings-table .ReactTable thead th {
  background-color: #f8fafc;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .cleaning__listings-table .ReactTable thead th {
    padding: 10px 10px;
    font-size: 10px;
  }
}
.cleaning__listings-table .ReactTable tbody tr {
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.cleaning__listings-table .ReactTable tbody tr:not(:last-child) > td {
  border-bottom: 1px solid #f1f5f9;
}
.cleaning__listings-table .ReactTable tbody tr:hover > td {
  background-color: #f8fafc;
}
.cleaning__listings-table .ReactTable tbody tr td {
  padding: 14px 16px !important;
  font-size: 14px;
  color: #1e293b;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .cleaning__listings-table .ReactTable tbody tr td {
    padding: 10px 10px !important;
    font-size: 13px;
  }
}
.ReactTable.cleaning__schedule-table {
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ReactTable.cleaning__schedule-table table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .ReactTable.cleaning__schedule-table table {
    min-width: 480px;
  }
}
.ReactTable.cleaning__schedule-table thead th {
  background-color: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-bottom: 1px solid #e2e8f0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .ReactTable.cleaning__schedule-table thead th {
    padding: 8px 10px;
    font-size: 10px;
  }
}
.ReactTable.cleaning__schedule-table tbody tr:not(:last-child) > td {
  border-bottom: 1px solid #e9ecef;
}
.ReactTable.cleaning__schedule-table tbody tr td {
  padding: 10px 16px !important;
  font-size: 13px;
  color: #334155;
  vertical-align: middle;
  background-color: #f8fafc;
}
@media screen and (max-width: 767px) {
  .ReactTable.cleaning__schedule-table tbody tr td {
    padding: 8px 10px !important;
    font-size: 12px;
  }
}
.ReactTable.cleaning__schedule-table .rt-no-data {
  background-color: #f8fafc;
  border: 1px dashed #cbd5e1;
  font-size: 13px;
  color: #94a3b8;
  padding: 24px 20px;
}
.cleaning h1 {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
}
.cleaning h2 {
  font-size: 20px;
  font-weight: bold;
}
.cleaning p {
  font-size: 15px;
}
.cleaning .primary-btn {
  font-size: 17px;
  line-height: 30px;
}
.cleaning .image-container {
  height: 300px;
  background-color: #36ffe654;
  margin-bottom: 15px;
  border-radius: 10px;
  padding: 30px;
}
.cleaning .channels-link {
  white-space: break-spaces;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cleaning .channels-link .clickable-text {
  display: inline;
  word-break: break-all;
}
.tbnb-image {
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  background-position: center;
}
.tbnb-image.tbnb-scheduling {
  background-image: url(/b32ac8d64fdb951bbd63.svg);
}
.tbnb-image.how-marketplace-works {
  background-image: url(/f55778c8ebf6694adf62.png);
}
.tbnb-image.tbnb-badage {
  background-image: url(/74ee82dfc8aadca8ebd8.png);
}
.payments {
  position: relative;
}
.payments .loader-div {
  height: 100%;
  position: absolute;
}
.payments .fs-warning a {
  padding-bottom: 0px;
}
.payments .content-right {
  display: flex;
  justify-content: end;
}
.payments .ReactTable .rt-table .rt-th,
.payments .ReactTable .rt-table .rt-td {
  border: 1px solid #e2e2e2;
}
.payments .ReactTable .rt-noData {
  border: 1px solid #e2e2e2;
  border-top: 0px;
  z-index: 0;
}
.payments .DateRangePicker_picker {
  left: -70px !important;
}
.payments .DateRangePicker {
  width: auto;
  margin-left: 15px;
}
.payments .CalendarDay__hovered_span {
  background-color: rgba(172, 36, 49, 0.15);
}
.payments .CalendarDay__selected_span {
  background-color: rgba(172, 36, 49, 0.15) !important;
}
.payments .CalendarDay__selected_start {
  background-color: #ac2431 !important;
}
.payments .CalendarDay__selected_end {
  background-color: #ac2431 !important;
}
.transaction-description {
  white-space: break-spaces;
  overflow: hidden;
  text-overflow: ellipsis;
}
.transaction-pagination-btn {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.transaction-pagination-btn:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.transaction-pagination-btn:focus {
  outline: 0;
}
.payments-csv-action {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  gap: 10px;
}
.payments-csv-action .picky {
  width: 200px;
}
.reports-taxes .ReactTable .rt-thead .rt-tr {
  font-size: 13px;
}
.reports-taxes .ReactTable .rt-table .rt-th {
  padding: 14px 5px;
}
.tax-date-picker {
  display: contents;
}
#download-csv {
  display: none;
}
.total-summary-modal-info {
  position: relative;
  right: 25px;
}
.total-summary-modal-info.total-tax {
  bottom: 95px;
}
.total-summary-modal-info.tax-paid {
  bottom: 83px;
}
.tax-total-container {
  display: flex;
  justify-content: space-evenly;
  padding: 30px;
}
.tax-total-container .tax-total-currency {
  margin-right: 10px;
}
.tax-total-container .tax-total-values {
  display: flex;
}
.tax-total-container .tax-total-values h4 {
  display: flex;
  Flex-direction: row-reverse;
}
.tax-total-modal h1 {
  text-align: center;
}
.tax-total-modal .modal-dialog {
  max-width: 450px;
}
.tax-total-modal .modal-body {
  padding: 0px 30px 30px 30px;
}
.org-image-preview {
  max-height: 275px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
.org-image-preview .image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 275px;
}
.org-image-preview .image-wrapper img {
  max-width: 100%;
}
.organizations .org-dropdown .checkbox-wrap {
  display: contents;
}
.organizations .org-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0px 10px;
}
.organizations .org-status span {
  font-weight: 600;
}
.organizations .org-status .status-select {
  max-width: 120px;
  font-weight: 600;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
.organizations .org-status .status-select.is-live {
  color: #5ad888;
  border-color: #5ad888;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%235ad888%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e");
}
.organizations .org-status .status-select.not-live {
  color: #ac2431;
  border-color: #ac2431;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%23ac2431%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e");
}
.organizations .org-status .status-select.is-pending {
  color: #f0ad4e;
  border-color: #f0ad4e;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%23f0ad4e%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e");
}
.organizations .org-status .status-select option[value="Distribute to RA and Channels"] {
  color: #5ad888;
  font-weight: 600;
}
.organizations .org-status .status-select option[value="Delisted"] {
  color: #ac2431;
  font-weight: 600;
}
.organizations .org-status .status-select option[value="Pending"] {
  color: #999;
  font-weight: 600;
  background-color: #f5f5f5;
}
.organizations .org-status .status-select option[value="Pending"]:disabled {
  color: #999;
  background-color: #f5f5f5;
}
.organizations .icon-star-full {
  padding-right: 2px;
  color: #dedede;
}
.organizations .icon-star-full.fill {
  color: #ffd700;
}
.organizations .input-question-mark {
  top: 3px;
  font-size: 18px;
  margin-left: 3px;
}
.organizations input[type="text"].form-field:disabled {
  color: #999;
}
.organizations .exclude-channels-list {
  padding: 5px 0px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  margin-right: 8px;
  margin-bottom: 8px;
  background: #e6f4ff;
  border: 1px solid #b5dfff;
  border-radius: 16px;
  padding: 2px 10px;
}
.organizations .exclude-channels-list div {
  color: #333;
  font-weight: 500;
  padding-right: 6px;
}
.organizations .exclude-channels-list .btn {
  background: none;
  border: none;
  padding: 0;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.organizations .exclude-channels-list .btn:hover {
  color: #ac2431;
}
.organizations .exclude-channels-input-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.organizations .exclude-channels-input-wrapper input,
.organizations .exclude-channels-input-wrapper input.form-field,
.organizations .exclude-channels-input-wrapper .form-control {
  flex: 1 1 auto;
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right-width: 0;
}
.organizations .exclude-channels-input-wrapper .btn.dropdown-toggle,
.organizations .exclude-channels-input-wrapper .dropdown-toggle {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
  display: inline-flex;
  align-items: center;
}
.organizations .exclude-channels-input-wrapper .btn.dropdown-toggle:not(:disabled):not(.disabled):hover,
.organizations .exclude-channels-input-wrapper .dropdown-toggle:not(:disabled):not(.disabled):hover,
.organizations .exclude-channels-input-wrapper .btn.dropdown-toggle:not(:disabled):not(.disabled):active,
.organizations .exclude-channels-input-wrapper .dropdown-toggle:not(:disabled):not(.disabled):active {
  background-color: #0262ef;
  border-color: #0260e9;
  color: #fff;
}
.organizations .icon-exclamation-triangle {
  font-size: 30px;
  color: #ac2431;
}
.organizations .checkbox-wrap.checkbox-input input[type="checkbox"] + .checkbox-label {
  font-weight: 500;
}
.organizations .integration-fee-icon-delete-container {
  display: flex;
  justify-content: flex-end;
}
.organizations .integration-fee-icon-delete-container span {
  cursor: pointer;
}
.organizations .integration-fee-icon-delete-container span .icon-delete {
  color: #ac2431;
  font-size: 20px;
}
.channelMarkupHeader {
  display: flex;
  justify-content: flex-end;
}
.channelMarkupHeader .checkbox-wrap {
  margin-right: 10px;
}
.bookinPal-modal.bookinPal-error .modal-dialog {
  width: 600px;
  margin: 30px auto;
}
.bookinPal-modal.bookinPal-error .modal-body {
  text-align: center;
  padding: 0 30px 30px;
}
.bookinPal-modal .modal-dialog {
  width: auto;
  margin: 10px;
}
.bookinPal-modal .modal-body {
  padding: 0 15px 15px;
}
.edit-rental-policy-container {
  border: 1px solid #dedede;
  padding: 15px;
  border-radius: 2px;
}
.shutdown-org-modal h2 {
  font-weight: 700;
}
.shutdown-org-modal .modal-body {
  padding: 0px 30px 30px 30px;
}
.shutdown-org-modal .form-label {
  font-weight: 700;
}
.shutdown-org-modal .col-md-12 {
  margin-bottom: 15px;
}
.shutdown-org-modal textarea {
  height: 150px;
  resize: none;
}
.addOrganization .switch {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.org-team-members {
  position: relative;
}
.org-team-members .loader-div {
  height: 100%;
  position: absolute;
  z-index: 90;
}
.sespol-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 16px 0 20px;
}
.org-sespol-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 20px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e9f0;
}
.org-sespol-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.org-sespol-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.org-sespol-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin-bottom: 0;
  line-height: 1.25;
  min-height: 2.5em;
  display: flex;
  align-items: flex-end;
}
.org-sespol-col--dates {
  flex: 2 1 320px;
  min-width: 260px;
}
.org-sespol-col--policy {
  flex: 1 1 220px;
  max-width: 260px;
}
.org-sespol-col--actions {
  flex: 0 0 auto;
  min-width: 120px;
}
.org-sespol-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
}
.org-sespol-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.org-sespol-delete .icon-delete {
  font-size: 18px;
  line-height: 1;
}
.org-sespol-delete:hover,
.org-sespol-delete:focus-visible {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.08);
  outline: none;
}
@media (max-width: 991px) {
  .org-sespol-col--dates,
  .org-sespol-col--policy,
  .org-sespol-col--actions {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.faq-component {
  padding: 0 0 40px;
}
.faq-component .container-fluid {
  max-width: 900px;
}
.faq-sections > .fe-accordion__item {
  margin-bottom: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.faq-sections > .fe-accordion__item > .fe-accordion__header {
  padding: 16px 20px;
  background: #f9f9f9;
}
.faq-sections > .fe-accordion__item > .fe-accordion__header:hover {
  background: #f1f1f1;
}
.faq-sections > .fe-accordion__item.fe-accordion__item--open > .fe-accordion__header {
  background: #f1f1f1;
  border-bottom: 1px solid #e0e0e0;
}
.faq-sections > .fe-accordion__item > .fe-accordion__body {
  padding: 0;
}
.faq-section__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #ac2431;
  display: flex;
  align-items: center;
  gap: 6px;
}
.faq-items > .fe-accordion__item {
  border-top: 1px solid #eee;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
}
.faq-items > .fe-accordion__item:first-child {
  border-top: none;
}
.faq-items > .fe-accordion__item > .fe-accordion__header {
  padding: 13px 20px 13px 28px;
  background: transparent;
}
.faq-items > .fe-accordion__item > .fe-accordion__header:hover {
  background: #fafafa;
}
.faq-items > .fe-accordion__item.fe-accordion__item--open > .fe-accordion__header {
  background: #fafafa;
}
.faq-items > .fe-accordion__item > .fe-accordion__body {
  padding: 12px 20px 16px 28px;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  border-top: 1px solid #f0f0f0;
}
.faq-items > .fe-accordion__item > .fe-accordion__body ol {
  padding: revert;
  margin-bottom: 0;
}
.faq-items > .fe-accordion__item > .fe-accordion__body p {
  margin-bottom: 8px;
}
.faq-items > .fe-accordion__item > .fe-accordion__body p:last-child {
  margin-bottom: 0;
}
.faq-items > .fe-accordion__item > .fe-accordion__body a,
.faq-items > .fe-accordion__item > .fe-accordion__body a:hover,
.faq-items > .fe-accordion__item > .fe-accordion__body a:focus {
  color: #337ab7;
}
.faq-items > .fe-accordion__item > .fe-accordion__body .expandable-image-preview {
  width: 500px;
  max-width: 100%;
}
.faq-item__title {
  font-size: 14px;
  font-weight: 600;
  color: #337ab7;
  display: flex;
  align-items: center;
  gap: 5px;
}
.faq-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #333;
  line-height: 1;
}
.faq-play-btn .icon-play {
  font-size: 18px;
  transition: color 0.15s;
}
.faq-play-btn:hover .icon-play {
  color: #ac2431;
}
.faq-play-btn--sm .icon-play {
  font-size: 15px;
}
.faq-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.faq-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.dashboard .hide-view {
  display: none;
}
.dashboard h2 > a {
  float: right;
  font-size: 14px;
  color: blue;
  cursor: pointer;
}
.dashboard .db-quick-links-container {
  display: flex;
  padding-bottom: 15px;
}
.dashboard .db-quick-links-container .quick-link {
  font-size: 18px;
  margin-right: 15px;
  cursor: pointer;
}
.dashboard .db-custom-container {
  padding: 15px;
  margin-bottom: 30px;
  position: relative;
}
.dashboard .db-custom-container .main-container {
  padding: 10px;
}
.dashboard .db-custom-container .loader-div {
  height: 100%;
  position: absolute;
}
.dashboard .db-custom-container .db-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
.dashboard .stripe-connect-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.dashboard .stripe-connect-container .stripe-connect-logo {
  background-image: url(/5c6b074e385de101b626.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 65px;
  background-position: center;
  margin: 10px 0px;
}
.dashboard .stripe-connect-container .stripe-logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard .stripe-connect-container .stripe-logo-container h3 {
  margin: 0px;
  font-weight: 600;
}
.dashboard .stripe-connect-container .stripe-logo-container .stripe-logo {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNjAgMjUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjYwIiBoZWlnaHQ9IjI1IiBjbGFzcz0iVXNlckxvZ28gdmFyaWFudC0tICI+PHRpdGxlPlN0cmlwZSBsb2dvPC90aXRsZT48cGF0aCBmaWxsPSJ2YXIoLS11c2VyTG9nb0NvbG9yLCAjMEEyNTQwKSIgZD0iTTU5LjY0IDE0LjI4aC04LjA2Yy4xOSAxLjkzIDEuNiAyLjU1IDMuMiAyLjU1IDEuNjQgMCAyLjk2LS4zNyA0LjA1LS45NXYzLjMyYTguMzMgOC4zMyAwIDAgMS00LjU2IDEuMWMtNC4wMSAwLTYuODMtMi41LTYuODMtNy40OCAwLTQuMTkgMi4zOS03LjUyIDYuMy03LjUyIDMuOTIgMCA1Ljk2IDMuMjggNS45NiA3LjUgMCAuNC0uMDQgMS4yNi0uMDYgMS40OHptLTUuOTItNS42MmMtMS4wMyAwLTIuMTcuNzMtMi4xNyAyLjU4aDQuMjVjMC0xLjg1LTEuMDctMi41OC0yLjA4LTIuNTh6TTQwLjk1IDIwLjNjLTEuNDQgMC0yLjMyLS42LTIuOS0xLjA0bC0uMDIgNC42My00LjEyLjg3VjUuNTdoMy43NmwuMDggMS4wMmE0LjcgNC43IDAgMCAxIDMuMjMtMS4yOWMyLjkgMCA1LjYyIDIuNiA1LjYyIDcuNCAwIDUuMjMtMi43IDcuNi01LjY1IDcuNnpNNDAgOC45NWMtLjk1IDAtMS41NC4zNC0xLjk3LjgxbC4wMiA2LjEyYy40LjQ0Ljk4Ljc4IDEuOTUuNzggMS41MiAwIDIuNTQtMS42NSAyLjU0LTMuODcgMC0yLjE1LTEuMDQtMy44NC0yLjU0LTMuODR6TTI4LjI0IDUuNTdoNC4xM3YxNC40NGgtNC4xM1Y1LjU3em0wLTQuN0wzMi4zNyAwdjMuMzZsLTQuMTMuODhWLjg4em0tNC4zMiA5LjM1djkuNzlIMTkuOFY1LjU3aDMuN2wuMTIgMS4yMmMxLTEuNzcgMy4wNy0xLjQxIDMuNjItMS4yMnYzLjc5Yy0uNTItLjE3LTIuMjktLjQzLTMuMzIuODZ6bS04LjU1IDQuNzJjMCAyLjQzIDIuNiAxLjY4IDMuMTIgMS40NnYzLjM2Yy0uNTUuMy0xLjU0LjU0LTIuODkuNTRhNC4xNSA0LjE1IDAgMCAxLTQuMjctNC4yNGwuMDEtMTMuMTcgNC4wMi0uODZ2My41NGgzLjE0VjkuMWgtMy4xM3Y1Ljg1em0tNC45MS43YzAgMi45Ny0yLjMxIDQuNjYtNS43MyA0LjY2YTExLjIgMTEuMiAwIDAgMS00LjQ2LS45M3YtMy45M2MxLjM4Ljc1IDMuMSAxLjMxIDQuNDYgMS4zMS45MiAwIDEuNTMtLjI0IDEuNTMtMUM2LjI2IDEzLjc3IDAgMTQuNTEgMCA5Ljk1IDAgNy4wNCAyLjI4IDUuMyA1LjYyIDUuM2MxLjM2IDAgMi43Mi4yIDQuMDkuNzV2My44OGE5LjIzIDkuMjMgMCAwIDAtNC4xLTEuMDZjLS44NiAwLTEuNDQuMjUtMS40NC45IDAgMS44NSA2LjI5Ljk3IDYuMjkgNS44OHoiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PC9wYXRoPjwvc3ZnPg==);
  height: 50px;
  width: 90px;
}
.dashboard .stripe-connect-container .stripe-logo-container .connect-logo {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iUHJvZHVjdEljb24gUHJvZHVjdEljb24tLUNvbm5lY3QgUHJvZHVjdE5hdl9faWNvbiIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiB2aWV3Qm94PSIwIDAgNDAgNDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICAgIDx0aXRsZT5Db25uZWN0PC90aXRsZT4KICAgIDxwYXRoIGQ9Ik0xMi40Ny4wMWExMy4wMSAxMy4wMSAwIDAgMCAuNSAyNS45OWgxMC41NWMxLjM3IDAgMi40OC0xLjEgMi40OC0yLjQ4VjEzLjAxYTEyLjk5IDEyLjk5IDAgMCAwLTEzLjUzLTEzeiIgZmlsbD0idXJsKCNwcm9kdWN0LWljb24tY29ubmVjdC1Qcm9kdWN0TmF2LWEpIj48L3BhdGg+PHBhdGggZD0iTTI3LjUzIDM5Ljk5YTEzLjAxIDEzLjAxIDAgMCAwLS41LTI1Ljk5SDE2LjQ4QTIuNDggMi40OCAwIDAgMCAxNCAxNi40OHYxMC41MWExMi45OSAxMi45OSAwIDAgMCAxMy41MyAxM3oiIGZpbGw9IiMwMDczRTYiPjwvcGF0aD48cGF0aCBkPSJNMjYgMTR2OS41MkEyLjQ4IDIuNDggMCAwIDEgMjMuNTIgMjZIMTR2LTkuNTJBMi40OCAyLjQ4IDAgMCAxIDE2LjMyIDE0bC4xNi0uMDFIMjZ6IiBmaWxsPSJ1cmwoI3Byb2R1Y3QtaWNvbi1jb25uZWN0LVByb2R1Y3ROYXYtYikiPjwvcGF0aD48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9InByb2R1Y3QtaWNvbi1jb25uZWN0LVByb2R1Y3ROYXYtYSIgeDE9IjEzIiB5MT0iMS43MSIgeDI9IjEzIiB5Mj0iMTUuMjUiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjMTFFRkUzIj48L3N0b3A+PHN0b3Agb2Zmc2V0PSIuMzMiIHN0b3AtY29sb3I9IiMxNUU4RTIiPjwvc3RvcD48c3RvcCBvZmZzZXQ9Ii43NCIgc3RvcC1jb2xvcj0iIzFGRDNFMCI+PC9zdG9wPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzIxQ0ZFMCI+PC9zdG9wPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJwcm9kdWN0LWljb24tY29ubmVjdC1Qcm9kdWN0TmF2LWIiIHgxPSIyMCIgeTE9IjE1LjcyIiB4Mj0iMjAiIHkyPSIyNy4yNCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIHN0b3AtY29sb3I9IiMwMDI5OUMiPjwvc3RvcD48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDczRTYiPjwvc3RvcD48L2xpbmVhckdyYWRpZW50PjwvZGVmcz4KPC9zdmc+);
  height: 50px;
  width: 50px;
}
.dashboard .stripe-connect-container .stripe-logo-container .stripe-logo,
.dashboard .stripe-connect-container .stripe-logo-container .connect-logo {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.dashboard .stripe-connect-container .stripe-actions-container .getting-started-btn {
  margin: 0px;
}
.dashboard .earnings .loader-div,
.dashboard .revenue .loader-div,
.dashboard .db-reservations .loader-div,
.dashboard .db-organizations .loader-div {
  height: 100%;
  position: absolute;
}
.dashboard .reservations-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.dashboard .reservations-header .db-title {
  margin-bottom: 0;
}
.dashboard .reservations-header .reservations-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dashboard .reservations-header .reservations-header-actions .filters-wrap {
  margin: 0;
}
.dashboard .reservations-header .db-reserve-link {
  font-size: 13px;
  font-weight: 600;
  color: #337ab7;
  text-decoration: none;
  white-space: nowrap;
}
.dashboard .reservations-header .db-reserve-link:hover {
  text-decoration: underline;
}
@media (max-width: 575px) {
  .dashboard .reservations-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.dashboard .earnings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dashboard .earnings-header .db-title {
  margin-bottom: 0;
}
.dashboard .earnings-chart {
  height: 280px;
  position: relative;
}
.dashboard .earnings-no-data {
  color: #888;
  font-size: 14px;
  text-align: center;
  padding: 40px 0;
}
.dashboard .revenue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dashboard .revenue-header .db-title {
  margin-bottom: 0;
}
.dashboard .revenue-stats {
  display: flex;
  gap: 12px;
}
.dashboard .revenue-stats .revenue-stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f7f8fa;
  border-radius: 8px;
  padding: 16px;
}
.dashboard .revenue-stats .revenue-stat-card .revenue-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dashboard .revenue-stats .revenue-stat-card .revenue-stat-label .icon-question-mark {
  color: #337ab7;
  font-size: 13px;
}
.dashboard .revenue-stats .revenue-stat-card .revenue-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #2f2f32;
  line-height: 1;
}
.dashboard .revenue-stats .revenue-stat-card .revenue-stat-value .revenue-stat-currency {
  font-size: 14px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 1px;
}
@media (max-width: 767px) {
  .dashboard .revenue-stats {
    flex-direction: column;
  }
}
.dashboard .earnings-revenue {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.dashboard .earnings-revenue > .db-custom-container {
  flex: 1 1 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .dashboard .earnings-revenue {
    flex-direction: column;
  }
  .dashboard .earnings-revenue > .db-custom-container {
    margin-bottom: 30px;
  }
}
.connectors-modal .modal-body {
  padding: 0px 30px 30px 30px;
}
.template-status-container {
  display: flex;
}
.template-status-container .status-text {
  margin-right: 7px;
  font-weight: bold;
}
.trigger-time-radio-container {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.comm-properties-modal .modal-body {
  padding: 0px 30px 30px 30px;
}
.comm-properties-modal .picky__dropdown {
  position: static !important;
}
.comm-properties-modal .loader-div {
  height: 100%;
  position: absolute;
}
.comm-properties-modal .picky__input span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 480px;
}
.comm-properties-modal select:required:invalid {
  color: #b4b4b4;
}
.comm-properties-modal option {
  color: #2d2d2d;
}
.comm-properties-modal .form-label {
  font-weight: bold;
}
.validation-overlay-container {
  position: relative;
  overflow: auto;
}
.validation-overlay {
  position: absolute;
  background-color: gray;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  opacity: 30%;
  cursor: not-allowed;
}
.modal.ask-question-modal button.picky__input {
  font-size: 12px;
  line-height: 22px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #d5d5d5;
}
.db-tab-title {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.db-tab-title .pending-count {
  margin-left: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #ac2431;
  border-radius: 50%;
  line-height: 1;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.db-tab-title .icon-exclamation-mark {
  margin-left: 5px;
  color: #ac2431;
  font-size: 17px;
  vertical-align: text-bottom;
}
.db-tab-title .icon-exclamation-mark.severity-warning {
  color: #f0ad4e;
}
.manage-device-modal .btn-default {
  background-color: #f5f5f5;
}
.manage-device-modal .btn-default.active,
.manage-device-modal .btn-default:active,
.manage-device-modal .open > .dropdown-toggle.btn-default {
  color: #fff;
  background-color: #337ab7;
}
@media screen and (max-width: 767px) {
  .manage-device-modal .modal-dialog {
    width: auto;
  }
}
@media only screen and (max-width: 600px) {
  .thread-info .thread-reservation-box-container .col-sm-4 {
    border: none;
  }
}
.dashboard-calendar__month-wrap {
  display: flex;
  flex-direction: column;
}
.dc-paginating-wrap {
  position: relative;
}
@keyframes dc-shimmer {
  0% {
    background-position: -600px 0;
  }
  100% {
    background-position: 600px 0;
  }
}
.dc-skel {
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 1200px 100%;
  animation: dc-shimmer 1.4s infinite linear;
  border-radius: 4px;
  flex-shrink: 0;
}
.dc-skel--circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.dc-skel--title {
  width: 180px;
  height: 18px;
}
.dc-skel--btn {
  width: 90px;
  height: 32px;
  border-radius: 6px;
}
.dc-skel--day-name {
  width: 28px;
  height: 12px;
  margin: 0 auto 4px;
}
.dc-skel--day-num {
  width: 20px;
  height: 16px;
  margin: 0 auto;
}
.dc-skel--prop-id {
  width: 60px;
  height: 13px;
  margin-bottom: 6px;
}
.dc-skel--prop-title {
  width: 110px;
  height: 12px;
}
.dc-skeleton {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
}
.dc-skeleton__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-bottom: 1px solid #e0e0e0;
  background: #fafafa;
}
.dc-skeleton__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dc-skeleton__date-row {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
  background: #f7f7f7;
}
.dc-skeleton__prop-col {
  width: 160px;
  flex-shrink: 0;
  border-right: 1px solid #e0e0e0;
}
.dc-skeleton__day-cell {
  flex: 1;
  padding: 8px 4px;
  text-align: center;
  border-right: 1px solid #e0e0e0;
}
.dc-skeleton__day-cell:last-child {
  border-right: none;
}
.dc-skeleton__prop-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  min-height: 64px;
}
.dc-skeleton__prop-row:last-child {
  border-bottom: none;
}
.dc-skeleton__prop-label {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 12px;
  border-right: 1px solid #e0e0e0;
  background: #fafafa;
}
.dc-skeleton__cell {
  flex: 1;
  border-right: 1px solid #f0f0f0;
  background: linear-gradient(90deg, #f0f0f0 25%, #f9f9f9 50%, #f0f0f0 75%);
  background-size: 1200px 100%;
  animation: dc-shimmer 1.4s infinite linear;
}
.dc-skeleton__cell:last-child {
  border-right: none;
}
.mcmv-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  color: #555;
}
.mcmv-error__icon {
  font-size: 48px;
  color: #e6a817;
  line-height: 1;
  margin-bottom: 16px;
}
.mcmv-error__title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.mcmv-error__message {
  font-size: 14px;
  color: #666;
  max-width: 480px;
  margin-bottom: 24px;
}
.mcmv-error__back-btn {
  background: none;
  border: 1px solid #1e7ebb;
  color: #1e7ebb;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.mcmv-error__back-btn:hover {
  background: #1e7ebb;
  color: #fff;
}
.dashboard-calendar__month-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 8px 12px;
  border-bottom: 1px solid #e0e0e0;
}
.dashboard-calendar__month-header .fe-search-wrap {
  width: 220px;
}
.dashboard-calendar__month-header--split {
  justify-content: space-between;
}
.dashboard-calendar__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.dashboard-calendar__back-btn:hover {
  color: #85bee8;
}
.stripe-skeleton {
  padding: 4px 0;
}
.stripe-skeleton .stripe-skeleton__title {
  display: block;
  width: 180px;
  height: 22px;
  margin-bottom: 10px;
}
.stripe-skeleton .stripe-skeleton__subtitle {
  display: block;
  width: 300px;
  height: 14px;
  margin-bottom: 24px;
}
.stripe-skeleton .stripe-skeleton__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.stripe-skeleton .stripe-skeleton__logos {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stripe-skeleton .stripe-skeleton__logo {
  display: block;
  width: 80px;
  height: 40px;
  border-radius: 4px;
  margin-bottom: 0;
}
.stripe-skeleton .stripe-skeleton__logo--sm {
  width: 40px;
}
.stripe-skeleton .stripe-skeleton__msg {
  display: block;
  flex: 1;
  height: 14px;
  min-width: 120px;
  margin-bottom: 0;
}
.stripe-skeleton .stripe-skeleton__btn {
  display: block;
  width: 140px;
  height: 44px;
  border-radius: 30px !important;
  margin-bottom: 0;
}
.stripe-skeleton .stripe-skeleton__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px 20px;
}
.stripe-skeleton .stripe-skeleton__card-header {
  display: block;
  width: 140px;
  height: 16px;
  margin-bottom: 16px;
}
.stripe-skeleton .stripe-skeleton__card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}
.stripe-skeleton .stripe-skeleton__card-row:last-child {
  border-bottom: none;
}
.stripe-skeleton .stripe-skeleton__card-row .skeleton-line {
  margin-bottom: 0;
}
.stripe-section {
  padding: 24px 0;
}
.stripe-section .getting-started-btn {
  background: #ac2431;
  border: none;
  color: white;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(172, 36, 49, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.stripe-section .getting-started-btn:hover {
  background: #8b1d26;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(172, 36, 49, 0.4);
}
.stripe-section .getting-started-btn:active {
  transform: translateY(0);
}
.stripe-section .getting-started-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.stripe-onboarding {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 40px 24px;
  max-width: 520px;
  margin: 0 auto;
}
.stripe-onboarding .stripe-connect-logo {
  background-image: url(/5c6b074e385de101b626.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 220px;
  height: 60px;
}
.stripe-onboarding__headline {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}
.stripe-onboarding__video-link {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}
.stripe-status-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  flex-wrap: wrap;
}
.stripe-status-bar__logos {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stripe-status-bar__logos .stripe-logo {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNjAgMjUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjYwIiBoZWlnaHQ9IjI1IiBjbGFzcz0iVXNlckxvZ28gdmFyaWFudC0tICI+PHRpdGxlPlN0cmlwZSBsb2dvPC90aXRsZT48cGF0aCBmaWxsPSJ2YXIoLS11c2VyTG9nb0NvbG9yLCAjMEEyNTQwKSIgZD0iTTU5LjY0IDE0LjI4aC04LjA2Yy4xOSAxLjkzIDEuNiAyLjU1IDMuMiAyLjU1IDEuNjQgMCAyLjk2LS4zNyA0LjA1LS45NXYzLjMyYTguMzMgOC4zMyAwIDAgMS00LjU2IDEuMWMtNC4wMSAwLTYuODMtMi41LTYuODMtNy40OCAwLTQuMTkgMi4zOS03LjUyIDYuMy03LjUyIDMuOTIgMCA1Ljk2IDMuMjggNS45NiA3LjUgMCAuNC0uMDQgMS4yNi0uMDYgMS40OHptLTUuOTItNS42MmMtMS4wMyAwLTIuMTcuNzMtMi4xNyAyLjU4aDQuMjVjMC0xLjg1LTEuMDctMi41OC0yLjA4LTIuNTh6TTQwLjk1IDIwLjNjLTEuNDQgMC0yLjMyLS42LTIuOS0xLjA0bC0uMDIgNC42My00LjEyLjg3VjUuNTdoMy43NmwuMDggMS4wMmE0LjcgNC43IDAgMCAxIDMuMjMtMS4yOWMyLjkgMCA1LjYyIDIuNiA1LjYyIDcuNCAwIDUuMjMtMi43IDcuNi01LjY1IDcuNnpNNDAgOC45NWMtLjk1IDAtMS41NC4zNC0xLjk3LjgxbC4wMiA2LjEyYy40LjQ0Ljk4Ljc4IDEuOTUuNzggMS41MiAwIDIuNTQtMS42NSAyLjU0LTMuODcgMC0yLjE1LTEuMDQtMy44NC0yLjU0LTMuODR6TTI4LjI0IDUuNTdoNC4xM3YxNC40NGgtNC4xM1Y1LjU3em0wLTQuN0wzMi4zNyAwdjMuMzZsLTQuMTMuODhWLjg4em0tNC4zMiA5LjM1djkuNzlIMTkuOFY1LjU3aDMuN2wuMTIgMS4yMmMxLTEuNzcgMy4wNy0xLjQxIDMuNjItMS4yMnYzLjc5Yy0uNTItLjE3LTIuMjktLjQzLTMuMzIuODZ6bS04LjU1IDQuNzJjMCAyLjQzIDIuNiAxLjY4IDMuMTIgMS40NnYzLjM2Yy0uNTUuMy0xLjU0LjU0LTIuODkuNTRhNC4xNSA0LjE1IDAgMCAxLTQuMjctNC4yNGwuMDEtMTMuMTcgNC4wMi0uODZ2My41NGgzLjE0VjkuMWgtMy4xM3Y1Ljg1em0tNC45MS43YzAgMi45Ny0yLjMxIDQuNjYtNS43MyA0LjY2YTExLjIgMTEuMiAwIDAgMS00LjQ2LS45M3YtMy45M2MxLjM4Ljc1IDMuMSAxLjMxIDQuNDYgMS4zMS45MiAwIDEuNTMtLjI0IDEuNTMtMUM2LjI2IDEzLjc3IDAgMTQuNTEgMCA5Ljk1IDAgNy4wNCAyLjI4IDUuMyA1LjYyIDUuM2MxLjM2IDAgMi43Mi4yIDQuMDkuNzV2My44OGE5LjIzIDkuMjMgMCAwIDAtNC4xLTEuMDZjLS44NiAwLTEuNDQuMjUtMS40NC45IDAgMS44NSA2LjI5Ljk3IDYuMjkgNS44OHoiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PC9wYXRoPjwvc3ZnPg==);
  width: 80px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.stripe-status-bar__logos .connect-logo {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iUHJvZHVjdEljb24gUHJvZHVjdEljb24tLUNvbm5lY3QgUHJvZHVjdE5hdl9faWNvbiIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiB2aWV3Qm94PSIwIDAgNDAgNDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICAgIDx0aXRsZT5Db25uZWN0PC90aXRsZT4KICAgIDxwYXRoIGQ9Ik0xMi40Ny4wMWExMy4wMSAxMy4wMSAwIDAgMCAuNSAyNS45OWgxMC41NWMxLjM3IDAgMi40OC0xLjEgMi40OC0yLjQ4VjEzLjAxYTEyLjk5IDEyLjk5IDAgMCAwLTEzLjUzLTEzeiIgZmlsbD0idXJsKCNwcm9kdWN0LWljb24tY29ubmVjdC1Qcm9kdWN0TmF2LWEpIj48L3BhdGg+PHBhdGggZD0iTTI3LjUzIDM5Ljk5YTEzLjAxIDEzLjAxIDAgMCAwLS41LTI1Ljk5SDE2LjQ4QTIuNDggMi40OCAwIDAgMCAxNCAxNi40OHYxMC41MWExMi45OSAxMi45OSAwIDAgMCAxMy41MyAxM3oiIGZpbGw9IiMwMDczRTYiPjwvcGF0aD48cGF0aCBkPSJNMjYgMTR2OS41MkEyLjQ4IDIuNDggMCAwIDEgMjMuNTIgMjZIMTR2LTkuNTJBMi40OCAyLjQ4IDAgMCAxIDE2LjMyIDE0bC4xNi0uMDFIMjZ6IiBmaWxsPSJ1cmwoI3Byb2R1Y3QtaWNvbi1jb25uZWN0LVByb2R1Y3ROYXYtYikiPjwvcGF0aD48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9InByb2R1Y3QtaWNvbi1jb25uZWN0LVByb2R1Y3ROYXYtYSIgeDE9IjEzIiB5MT0iMS43MSIgeDI9IjEzIiB5Mj0iMTUuMjUiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjMTFFRkUzIj48L3N0b3A+PHN0b3Agb2Zmc2V0PSIuMzMiIHN0b3AtY29sb3I9IiMxNUU4RTIiPjwvc3RvcD48c3RvcCBvZmZzZXQ9Ii43NCIgc3RvcC1jb2xvcj0iIzFGRDNFMCI+PC9zdG9wPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzIxQ0ZFMCI+PC9zdG9wPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJwcm9kdWN0LWljb24tY29ubmVjdC1Qcm9kdWN0TmF2LWIiIHgxPSIyMCIgeTE9IjE1LjcyIiB4Mj0iMjAiIHkyPSIyNy4yNCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIHN0b3AtY29sb3I9IiMwMDI5OUMiPjwvc3RvcD48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDczRTYiPjwvc3RvcD48L2xpbmVhckdyYWRpZW50PjwvZGVmcz4KPC9zdmc+);
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.stripe-status-bar__msg {
  flex: 1;
  font-size: 14px;
  color: #374151;
  margin: 0;
}
.stripe-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.stripe-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}
.stripe-detail-row:last-child {
  border-bottom: none;
}
.stripe-detail-row__label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}
.stripe-detail-row__value {
  font-size: 13px;
  color: #111827;
  font-weight: 600;
}
.stripe-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
}
.stripe-status--success {
  color: #16a34a;
}
.stripe-status--error {
  color: #dc2626;
}
.stripe-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
}
.stripe-alert__icon {
  margin-top: 2px;
  flex-shrink: 0;
}
.stripe-alert--danger {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}
.stripe-requirements-header {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stripe-req-group {
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}
.stripe-req-group:last-child {
  border-bottom: none;
}
.stripe-req-group__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.stripe-req-group--danger .stripe-req-group__label {
  color: #dc2626;
}
.stripe-req-group--warning .stripe-req-group__label {
  color: #d97706;
}
.stripe-req-group--muted .stripe-req-group__label {
  color: #6b7280;
}
.stripe-req-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: #374151;
  line-height: 1.7;
  list-style: none;
}
.stripe-req-list li {
  position: relative;
  padding-left: 14px;
}
.stripe-req-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9ca3af;
}
.stripe-req-group--danger .stripe-req-list li::before {
  background: #dc2626;
}
.stripe-req-group--warning .stripe-req-list li::before {
  background: #d97706;
}
.stripe-req-group--muted .stripe-req-list li::before {
  background: #9ca3af;
}
.segmented-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.segmented-tabs.justify-content-center,
.segmented-tabs--center {
  justify-content: center;
}
.segmented-tabs--spacing {
  margin-top: 16px;
  margin-bottom: 16px;
}
.segmented-tabs::-webkit-scrollbar {
  display: none;
}
.segmented-tabs__item {
  border: 0;
  background-color: #e7e7e7;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #2f2f32;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.segmented-tabs__item.is-active {
  background-color: #3c3d41;
  color: #ffffff;
}
.segmented-tabs__item:focus,
.segmented-tabs__item:focus-visible {
  outline: none;
  box-shadow: none;
}
.segmented-tabs__item:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.segmented-tabs__item .icon-dashboard {
  font-size: 16px;
}
@media (max-width: 767px) {
  .segmented-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .segmented-tabs__item {
    flex: 1 1 auto;
    text-align: center;
    min-width: 80px;
    padding: 10px 14px;
  }
}
@media (max-width: 575px) {
  .segmented-tabs {
    gap: 6px;
  }
  .segmented-tabs__item {
    font-size: 13px;
    padding: 9px 12px;
    min-width: 70px;
  }
}
@media (max-width: 400px) {
  .segmented-tabs__item {
    flex: 1 1 100%;
  }
}
.segmented-tabs--underline {
  gap: 0;
}
.segmented-tabs--underline.segmented-tabs--spacing {
  margin-bottom: 24px;
}
.segmented-tabs--underline .segmented-tabs__item {
  background: transparent;
  border-radius: 0;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #888;
  border-bottom: 3px solid transparent;
  margin-bottom: 0;
}
.segmented-tabs--underline .segmented-tabs__item.is-active {
  background: transparent;
  color: #3c3d41;
  border-bottom-color: #3c3d41;
}
.segmented-tabs--underline .segmented-tabs__item:hover:not(.is-active):not(:disabled) {
  color: #555;
  background: transparent;
}
.org-modal .app-modal__header,
.org-tree-modal .app-modal__header {
  border-bottom: none;
  margin-bottom: 0;
}
.org-modal {
  z-index: 40000;
}
.org-modal .org-dropdown .form-field {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
  margin-bottom: 3px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.org-modal .org-dropdown .form-field:focus {
  box-shadow: none;
}
.org-modal .org-dropdown .org-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 600px;
  overflow-y: auto;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.org-modal .org-dropdown .org-dropdown-list::-webkit-scrollbar {
  width: 5px;
}
.org-modal .org-dropdown .org-dropdown-list::-webkit-scrollbar-track {
  background: transparent;
}
.org-modal .org-dropdown .org-dropdown-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.org-modal .org-dropdown .org-dropdown-list li.showListItem {
  border-bottom: 1px solid #f3f3f3;
}
.org-modal .org-dropdown .org-dropdown-list li.showListItem:last-child {
  border-bottom: 0;
}
.org-modal .org-dropdown .org-dropdown-list li.showListItem > button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  color: #2f2f32;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.org-modal .org-dropdown .org-dropdown-list li.showListItem > button:hover:not(:disabled) {
  background: rgba(172, 36, 49, 0.08);
  color: #ac2431;
}
.org-modal .org-dropdown .org-dropdown-list li.showListItem > button.active,
.org-modal .org-dropdown .org-dropdown-list li.showListItem > button.active.bold {
  background: #ac2431;
  color: #fff;
  font-weight: 600;
  cursor: default;
}
.org-modal .org-dropdown .org-dropdown-list li.showListItem > button.active:hover,
.org-modal .org-dropdown .org-dropdown-list li.showListItem > button.active.bold:hover {
  background: #ac2431;
}
.org-modal .org-dropdown .org-dropdown-list .org-nested-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.org-modal .org-dropdown .org-dropdown-list .org-nested-list li.showListItem > button {
  padding-left: 48px;
  border-top: 1px solid #f0f0f0;
}
.org-modal .org-dropdown .org-dropdown-list .org-nested-list .org-nested-list li.showListItem > button {
  padding-left: 64px;
}
.org-modal .org-dropdown .org-dropdown-list .org-show-more {
  border-top: 1px solid #f0f0f0;
}
.org-modal .org-dropdown .org-dropdown-list .org-show-more button {
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #337ab7;
  text-align: left;
  cursor: pointer;
}
.org-modal .org-dropdown .org-dropdown-list .org-show-more button:hover {
  background: #f5f7fa;
  text-decoration: underline;
}
.org-modal .org-dropdown .org-dropdown-list .org-show-more button .org-show-more-count {
  font-weight: 400;
  color: #888;
}
.org-modal__tooltip {
  font-family: "Assistant", Arial, sans-serif;
  white-space: nowrap;
}
.org-modal__tooltip .tooltip-inner {
  max-width: none;
}
.org-tree {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.org-tree > div:last-child > li {
  border-bottom: 0;
}
.org-tree li {
  padding: 10px 16px;
  color: #2f2f32;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
  transition: background 0.15s ease;
}
.org-tree li:hover {
  background: rgba(172, 36, 49, 0.08);
  color: #ac2431;
}
.org-tree .highlight {
  background: #ac2431;
  color: #fff;
  font-weight: 600;
  cursor: default;
}
.org-tree .highlight:hover {
  background: #ac2431;
  color: #fff;
}
.org-tree .child {
  list-style: none;
  padding: 0;
  background: #fafafa;
}
.org-tree .child > div > li {
  padding-left: 32px;
}
.org-tree .child .child > div > li {
  padding-left: 48px;
}
.create-reservation .ReactTable .rt-noData {
  z-index: 0;
}
.create-reservation .ReactTable .rt-table .rt-th,
.create-reservation .ReactTable .rt-table .rt-td {
  border: 1px solid #e2e2e2;
}
.create-reservation .ReactTable .rt-noData {
  border: 1px solid #e2e2e2;
  border-top: 0;
}
.create-reservation .channels-link {
  white-space: break-spaces;
  overflow: hidden;
  text-overflow: ellipsis;
}
.create-reservation .channels-link .clickable-text {
  display: inline;
  word-break: break-all;
}
.create-reservation .DateRangePickerInput .DateInput .DateInput_fang {
  display: none;
}
.start-date {
  padding-left: 0;
}
.check-box-container {
  display: flex;
  flex-direction: unset;
}
.no-pad-left {
  padding-left: 0px;
}
.no-pad-right {
  padding-right: 0px;
}
.rates-summary {
  padding: 15px;
  border: 1px solid #dedede;
  overflow: auto;
  border-radius: 5px;
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
}
.rates-summary .discount-title {
  margin-left: 10px;
  font-size: 15px;
}
.rates-summary .discount-price {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.rates-summary .line-through {
  text-decoration: line-through;
  color: #999;
}
.rates-summary.isLoading {
  background-color: rgba(245, 245, 245, 0.5);
}
.rates-summary .loader-div {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
}
.rates-summary .bold {
  font-weight: bold;
}
.rates-summary .icon-delete {
  position: relative;
  font-size: 18px;
  left: 5px;
  top: -7px;
  color: #ac2c64;
  cursor: pointer;
}
.reservation-summary {
  padding: 15px;
  border: 1px solid #dedede;
  overflow: auto;
  border-radius: 5px;
  margin-top: 15px;
  position: relative;
}
.reservation-summary .listing-id {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 700;
}
.reservation-summary .summary-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  align-items: start;
}
.reservation-summary .summary-details .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reservation-summary .summary-details .label {
  font-weight: 600;
  color: #555;
}
.reservation-summary .summary-details .value {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .reservation-summary .summary-details {
    grid-template-columns: 1fr;
  }
}
.msg-container {
  padding: 15px;
  overflow: auto;
  border-radius: 5px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
  width: 100%;
}
.msg-container._error {
  border: 3px solid #AC2431;
  color: #AC2431;
}
.msg-container._success {
  border: 3px solid #5ad888;
  color: #5ad888;
}
.property-details {
  margin-bottom: 10px;
}
.property-details .property-details-container {
  padding: 5px;
  border: 1px solid #dedede;
  overflow: auto;
  border-radius: 5px;
  position: relative;
}
.property-details .property-details-container .icon-map_locator_icon {
  margin-right: 5px;
}
.property-details .property-details-container.isLoading {
  background-color: rgba(245, 245, 245, 0.5);
}
.property-details .loader-div {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.property-details p {
  font-size: 14px;
}
.property-details .img-wrapper {
  padding: 0;
}
.property-details .img-wrapper .property-img {
  width: 100%;
  height: auto;
}
.property-details .property-amenities {
  display: flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: space-between;
}
.property-details .property-amenities .amenity {
  padding: 20px;
}
.property-details .property-amenities .amenity i {
  font-size: 30px;
  margin-right: 5px;
}
#reservation-panel .form-label {
  font-weight: 700;
}
#reservation-panel .panel {
  border-radius: 5px;
  border-color: #ddd;
  box-shadow: none;
}
#reservation-panel .panel-body {
  border-top: 1px solid #ddd;
}
.success-msg-container {
  border: 1px solid #dedede;
  text-align: center;
  overflow: auto;
  padding: 15px;
  border-radius: 5px;
}
.success-msg-container .title {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.success-msg-container .title h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}
.success-msg-container .title svg,
.success-msg-container .title i {
  color: #5ad888;
}
.success-msg-container .title {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.success-msg-container .content {
  padding: 15px;
  max-width: 640px;
  margin: 0 auto;
}
.success-msg-container .content h2 {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .success-msg-container .content {
    text-align: center;
  }
}
.success-msg-container .content .reservation-id {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.success-msg-container .content .reservation-id .label {
  font-weight: 600;
  color: #555;
}
.success-msg-container .content .dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  align-items: center;
  justify-items: center;
}
.success-msg-container .content .dates-grid .label {
  font-weight: 600;
  color: #555;
}
@media screen and (max-width: 767px) {
  .success-msg-container .content .dates-grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: left;
  }
}
.reservation-modal .modal-dialog {
  min-width: 750px;
}
.reservation-modal .modal-header .close {
  position: relative;
  bottom: 20px;
}
.reservation-modal .modal-body {
  padding: 15px;
}
.reservation-modal .loader-div {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .reservation-modal.mobile .modal-dialog {
    margin: 0px;
  }
}
@media screen and (max-width: 767px) {
  .reservation-modal .modal-dialog {
    min-width: auto;
  }
}
.reservation-modal .reservation-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.reservation-modal .reservation-actions .btn {
  min-width: 220px;
}
.required-quote-data span {
  display: block;
  margin-bottom: 4px;
}
.reserv-container {
  padding: 15px;
  border: 1px solid #dedede;
  border-radius: 2px;
}
.report-problem-reservation .description {
  font-size: 16px;
  padding-bottom: 20px;
}
.report-problem-reservation .emphasize {
  font-weight: bold;
  text-decoration: underline;
  display: inline;
}
.report-problem-reservation .radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.report-problem-reservation .form-actions {
  display: flex;
  justify-content: flex-end;
}
.notification-settings {
  margin-top: 20px;
}
.notification-settings .pe-page-inner {
  max-width: 860px;
  margin: 0 auto;
}
.notification-settings .ns-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.notification-settings .ns-section {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
}
.notification-settings .ns-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fdfdfd;
  border-bottom: 1px solid #eaeaea;
}
.notification-settings .ns-header h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
.notification-settings .ns-header h2 svg {
  flex-shrink: 0;
  color: #6b7280;
}
.notification-settings .ns-header .add-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #d1d5db;
  color: #374151;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.notification-settings .ns-header .add-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}
.notification-settings .ns-header .add-btn .icon {
  font-size: 14px;
  color: #6b7280;
}
.notification-settings .ns-list {
  display: flex;
  flex-direction: column;
}
.notification-settings .ns-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.notification-settings .ns-item:last-child {
  border-bottom: none;
}
.notification-settings .ns-item .ns-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.notification-settings .ns-item .ns-info .ns-name {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
}
.notification-settings .ns-item .ns-info .ns-address {
  font-size: 0.9rem;
  color: #666;
}
.notification-settings .ns-item .ns-actions {
  display: flex;
  align-items: center;
}
.notification-settings .ns-item .ns-actions .delete-btn {
  background: none;
  border: 1px solid #f5c2c7;
  color: #ac2431;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: background 0.2s, border-color 0.2s;
}
.notification-settings .ns-item .ns-actions .delete-btn:hover {
  background: #fff1f2;
  border-color: #ac2431;
}
.kb-shell {
  display: flex;
  height: calc(100vh - 190px);
  min-height: 500px;
  border: 1px solid #dedede;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 24px;
}
.kb-shell .kb-sidebar {
  width: 256px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #f7f8fa;
  border-right: 1px solid #dedede;
  overflow: hidden;
}
.kb-shell .kb-new-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 12px 10px;
  padding: 10px 16px;
  background: #ac2431;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.kb-shell .kb-new-chat-btn i {
  font-size: 11px;
}
.kb-shell .kb-new-chat-btn:hover {
  background: #771821;
}
.kb-shell .kb-new-chat-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.kb-shell .kb-sidebar-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #aaa;
  padding: 4px 16px 6px;
  margin: 0;
}
.kb-shell .kb-thread-list {
  flex: 1;
  overflow-y: auto;
  padding: 0 8px 16px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.kb-shell .kb-thread-list::-webkit-scrollbar {
  width: 4px;
}
.kb-shell .kb-thread-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}
.kb-shell .kb-thread-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  text-align: left;
  font-size: 13px;
  color: #2d2d2d;
  cursor: pointer;
  transition: background 0.15s;
}
.kb-shell .kb-thread-item span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kb-shell .kb-thread-item:hover {
  background: #e8eaed;
}
.kb-shell .kb-thread-item.active {
  background: #e0ecf8;
  color: #337ab7;
  font-weight: 600;
}
.kb-shell .kb-thread-item:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.kb-shell .kb-thread-loading,
.kb-shell .kb-no-threads {
  padding: 20px 16px;
  font-size: 13px;
  color: #bbb;
  text-align: center;
  margin: 0;
}
.kb-shell .kb-chat-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.kb-shell .kb-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.kb-shell .kb-messages::-webkit-scrollbar {
  width: 6px;
}
.kb-shell .kb-messages::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.kb-shell .kb-welcome {
  margin: auto;
  max-width: 460px;
  text-align: center;
  padding: 40px 24px;
}
.kb-shell .kb-welcome .kb-welcome-icon {
  font-size: 44px;
  display: block;
  margin-bottom: 14px;
}
.kb-shell .kb-welcome h3 {
  font-size: 18px;
  color: #2d2d2d;
  font-weight: 600;
  margin-bottom: 10px;
}
.kb-shell .kb-welcome p {
  font-size: 14px;
  color: #999;
  line-height: 1.65;
  margin: 0;
}
.kb-shell .kb-message {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  max-width: 82%;
}
.kb-shell .kb-message--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.kb-shell .kb-message--user .kb-bubble {
  background: #d9e5f1;
  border-bottom-right-radius: 4px;
  border: none;
}
.kb-shell .kb-message--bot {
  align-self: flex-start;
}
.kb-shell .kb-message--bot .kb-bubble {
  background: #fff;
  border: 1px solid #dedede;
  border-bottom-left-radius: 4px;
}
.kb-shell .kb-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ac2431;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.kb-shell .kb-bubble {
  border-radius: 16px;
  padding: 11px 15px;
  font-size: 14px;
  line-height: 1.55;
  color: #2d2d2d;
  word-break: break-word;
}
.kb-shell .kb-bubble p {
  margin: 0 0 8px;
}
.kb-shell .kb-bubble p:last-child {
  margin-bottom: 0;
}
.kb-shell .kb-bubble ol,
.kb-shell .kb-bubble ul {
  margin: 0;
  padding: 6px 20px;
}
.kb-shell .kb-bubble ol li:not(:last-child),
.kb-shell .kb-bubble ul li:not(:last-child) {
  padding-bottom: 5px;
}
.kb-shell .kb-bubble img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
  margin-top: 8px;
}
.kb-shell .kb-bubble pre {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 10px 12px;
  overflow-x: auto;
  font-size: 12px;
  margin: 8px 0 0;
}
.kb-shell .kb-bubble code {
  background: #f0f0f0;
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 12px;
}
.kb-shell .kb-status-msg {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #aaa;
  font-style: italic;
}
.kb-shell .kb-thread-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
}
.kb-shell .kb-input-bar {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 14px 12px;
  border-top: 1px solid #dedede;
  background: #fff;
}
.kb-shell .kb-textarea {
  flex: 1;
  resize: none;
  border: 1px solid #dedede;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: "Assistant", Arial, sans-serif;
  line-height: 1.5;
  min-height: 44px;
  max-height: 160px;
  overflow-y: auto;
  outline: none;
  transition: border-color 0.2s;
}
.kb-shell .kb-textarea:focus {
  border-color: #85bee8;
}
.kb-shell .kb-textarea:disabled {
  background: #fafafa;
  cursor: not-allowed;
}
.kb-shell .kb-textarea::placeholder {
  color: #bbb;
}
.kb-shell .kb-send-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  background: #ac2431;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.kb-shell .kb-send-btn:hover:not(:disabled) {
  background: #771821;
}
.kb-shell .kb-send-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.kb-shell .kb-error {
  margin: 0 14px 8px;
  padding: 10px 14px;
  background: #fff0f0;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  font-size: 13px;
  color: #ac2431;
}
.kb-shell .kb-no-permissions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.kb-shell .kb-no-permissions .kb-no-permissions-inner {
  max-width: 400px;
  font-size: 14px;
  color: #2d2d2d;
  line-height: 1.6;
}
.kb-shell .kb-no-permissions .kb-no-permissions-inner p {
  margin: 0 0 10px;
}
.kb-shell .kb-no-permissions .kb-no-permissions-inner ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
.kb-shell .typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 20px;
}
.kb-shell .typing .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69c;
  animation: kbTyping 1.8s infinite ease-in-out;
}
.kb-shell .typing .dot:nth-child(1) {
  animation-delay: 200ms;
}
.kb-shell .typing .dot:nth-child(2) {
  animation-delay: 300ms;
}
.kb-shell .typing .dot:nth-child(3) {
  animation-delay: 400ms;
}
@media screen and (max-width: 767px) {
  .kb-shell {
    flex-direction: column;
    height: auto;
    min-height: 0;
    border-radius: 8px;
  }
  .kb-shell .kb-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #dedede;
    max-height: 220px;
  }
  .kb-shell .kb-chat-area {
    height: calc(100vh - 360px);
    min-height: 300px;
  }
}
@keyframes kbTyping {
  0% {
    transform: translateY(0px);
    background-color: #69c;
  }
  28% {
    transform: translateY(-7px);
    background-color: #84add6;
  }
  44% {
    transform: translateY(0px);
    background-color: #84add6;
  }
}
@keyframes spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinner-dash {
  0% {
    stroke-dasharray: 1, 126;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100, 126;
    stroke-dashoffset: -30;
  }
  100% {
    stroke-dasharray: 100, 126;
    stroke-dashoffset: -126;
  }
}
.loading-spinner {
  display: inline-flex;
}
.loading-spinner__inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.loading-spinner__svg {
  animation: spinner-rotate 1.4s linear infinite;
}
.loading-spinner__track {
  stroke: transparent;
}
.loading-spinner__arc {
  stroke: #ac2431;
  stroke-dasharray: 80, 126;
  stroke-dashoffset: 0;
  animation: spinner-dash 1.4s ease-in-out infinite;
}
.loading-spinner__message {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 600;
}
.loading-spinner--center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.loading-spinner--overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.loading-spinner--full-screen {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loading-spinner--backdrop:not(.loading-spinner--overlay):not(.loading-spinner--full-screen) {
  background-color: rgba(0, 0, 0, 0.8);
}
.btn-spinner {
  animation: spinner-rotate 1.4s linear infinite;
}
.btn-spinner .loading-spinner__arc {
  stroke-dasharray: 80, 126;
  stroke-dashoffset: 0;
  animation: spinner-dash 1.4s ease-in-out infinite;
}
.loading-dots--center {
  display: flex;
  justify-content: center;
}
.adjustments-payouts {
  /* Description (left) */
  /* Amount (right) */
  /* Styling for the new Payment Breakdown layout */
  /* Base container for a payout settlement in the expanded row */
  /* Section headers (Payment Breakdown, Adjustment Details) */
  /* Containment block for rows within a section */
  /* The dotted line layout row */
  /* The left side description label */
  /* The space filling dotted element */
  /* The right side amount */
  /* Special styling for the main Total Payment row */
  /* Red text for negative currency */
}
.adjustments-payouts .adjustments-section {
  position: relative;
  margin-top: 15px;
}
.adjustments-payouts .adjustments-section .loader-div {
  height: 100%;
  position: absolute;
}
.adjustments-payouts .attachments-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}
.adjustments-payouts .attachments-cell .no-attachments-text {
  color: #d0d0d0;
  font-size: 14px;
}
.adjustments-payouts .attachments-cell .attachment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #4a90e2 0%, #337ab7 100%);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(51, 122, 183, 0.2);
}
.adjustments-payouts .attachments-cell .attachment-badge.empty {
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.adjustments-payouts .attachments-cell .attachment-badge.empty .attachment-icon {
  color: #666;
}
.adjustments-payouts .attachments-cell .attachment-badge.empty:hover {
  background: linear-gradient(135deg, #4a90e2 0%, #337ab7 100%);
  box-shadow: 0 4px 8px rgba(51, 122, 183, 0.35);
}
.adjustments-payouts .attachments-cell .attachment-badge.empty:hover .attachment-icon {
  color: #ffffff;
}
.adjustments-payouts .attachments-cell .attachment-badge.empty:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(51, 122, 183, 0.2);
}
.adjustments-payouts .attachments-cell .attachment-badge .attachment-icon {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}
.adjustments-payouts .attachments-cell .attachment-badge .attachment-count {
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  min-width: 16px;
  text-align: center;
}
.adjustments-payouts .attachments-cell .attachment-badge:hover {
  background: linear-gradient(135deg, #3a80d2 0%, #2a6a9f 100%);
  box-shadow: 0 4px 8px rgba(51, 122, 183, 0.35);
  transform: translateY(-1px);
}
.adjustments-payouts .attachments-cell .attachment-badge:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(51, 122, 183, 0.2);
}
.adjustments-payouts .rt-pagination {
  justify-content: center;
}
.adjustments-payouts .adjustments-amount {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  /* Grow entries & amount to fill remaining space */
  /* Validation styling alignment */
}
.adjustments-payouts .adjustments-amount > * {
  margin: 0;
}
.adjustments-payouts .adjustments-amount .adjustments-amount__entries {
  flex: 1 1 0;
  min-width: 150px;
  margin-right: 0;
}
.adjustments-payouts .adjustments-amount .adjustments-amount__entries .react-picky-container {
  width: 100%;
}
.adjustments-payouts .adjustments-amount .adjustments-amount__entries .react-picky-input {
  border-radius: 4px 0 0 4px !important;
  padding-right: 25px !important;
}
.adjustments-payouts .adjustments-amount .adjustments-amount__value {
  flex: 1 1 0;
  min-width: 120px;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  text-align: right;
  padding-right: 6px;
  height: 35px;
}
.adjustments-payouts .adjustments-amount .adjustments-amount__currency {
  flex: 0 0 110px;
  border-left: 0;
  border-radius: 0 4px 4px 0;
}
.adjustments-payouts .adjustments-amount .adjustments-amount__currency select {
  width: 100%;
  height: 35px;
  padding-right: 25px;
}
.adjustments-payouts .adjustments-amount .form-validation .react-picky-input,
.adjustments-payouts .adjustments-amount .form-validation.adjustments-amount__currency,
.adjustments-payouts .adjustments-amount .form-validation.adjustments-amount__value {
  border-color: #ac2431 !important;
}
.adjustments-payouts .adjustments-amount .react-picky-input:focus-within,
.adjustments-payouts .adjustments-amount .adjustments-amount__value:focus,
.adjustments-payouts .adjustments-amount .adjustments-amount__currency:focus-within {
  z-index: 2;
}
.adjustments-payouts .adjustments-amount__category {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.adjustments-payouts .adjustments-table-actions {
  display: flex;
  align-content: center;
  justify-content: flex-end;
}
.adjustments-payouts .adjustments-table-actions .icon-magnifying-glass {
  font-size: 17px;
}
.adjustments-payouts .adjustments-table-actions .icon-cancel {
  color: #ac2431;
}
.adjustments-payouts .adjustments-table-actions .icon-thumbs_up,
.adjustments-payouts .adjustments-table-actions .icon-cancel,
.adjustments-payouts .adjustments-table-actions .icon-wrong,
.adjustments-payouts .adjustments-table-actions .icon-magnifying-glass {
  padding: 0px 6px;
  cursor: pointer;
}
.adjustments-payouts .adjustments-table-actions .icon-thumbs_up {
  font-size: 16px;
  color: #5ad888;
}
.adjustments-payouts .adjustments-table-actions .icon-wrong {
  color: #ac2431;
}
.adjustments-payouts .adjustments-filters {
  margin: 10px 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.adjustments-payouts .adjustments-filters .filters-wrap {
  display: flex;
  align-items: center;
}
.adjustments-payouts .adjustments-filters .checkbox-wrap {
  padding: unset;
  margin: 0;
}
.adjustments-payouts .adjustments-pdf,
.adjustments-payouts .adjustments-csv {
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  background: #fff;
  color: #333;
  transition: background 0.15s, border-color 0.15s;
}
.adjustments-payouts .adjustments-pdf:hover:not(:disabled),
.adjustments-payouts .adjustments-csv:hover:not(:disabled) {
  background: #f0f0f0;
  border-color: #bbb;
}
.adjustments-payouts .adjustments-pdf:disabled,
.adjustments-payouts .adjustments-csv:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.adjustments-payouts .adjustments-pdf .icon-folder-download,
.adjustments-payouts .adjustments-csv .icon-folder-download {
  font-size: 16px;
  color: #666;
}
.adjustments-payouts .form-label {
  margin-top: 10px;
}
.adjustments-payouts .payouts-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.adjustments-payouts .payouts-actions .right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.adjustments-payouts .payouts-column-date {
  display: flex;
  gap: 20px;
}
.adjustments-payouts .payouts-column-actions {
  display: flex;
  gap: 40px;
}
.adjustments-payouts .payouts-line-items-wrapper {
  padding: 0 12px;
}
.adjustments-payouts .payouts-line-items-wrapper .payouts-line-item-description {
  display: flex;
  gap: 10px;
}
.adjustments-payouts .payouts-line-items-empty {
  font-style: italic;
  color: #666;
}
.adjustments-payouts .payouts-line-items-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.adjustments-payouts .payouts-line-item-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* Push amount to the right */
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}
.adjustments-payouts .payouts-line-item-row:last-child {
  border-bottom: none;
}
.adjustments-payouts .payouts-line-item-description {
  flex: 1 1 auto;
  min-width: 0;
  /* allow text truncation/wrap properly */
  padding-right: 12px;
  word-break: break-word;
}
.adjustments-payouts .payouts-line-item-details {
  min-width: 325px;
  text-align: left;
}
.adjustments-payouts .payouts-line-item-amount {
  flex: 0 0 auto;
  text-align: right;
  min-width: 138px;
  font-weight: bold;
  text-align: left;
}
.adjustments-payouts .payouts-no-data {
  padding: 10px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
}
.adjustments-payouts .payouts-sort-container {
  padding: 13px 15px;
  border-radius: 5px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}
.adjustments-payouts .payouts-sort-container .table-sort-container {
  cursor: pointer;
  display: inline-block;
}
.adjustments-payouts .payouts-sort-container .table-sort-container .sort-container {
  font-size: 10px;
  margin-left: 5px;
  color: #d5d5d5;
}
.adjustments-payouts .payouts-sort-container .table-sort-container .sort-container .icon-up-arrow {
  position: absolute;
  top: 14px;
}
.adjustments-payouts .payouts-sort-container .table-sort-container .sort-container .icon-dwon_arrow {
  position: absolute;
  bottom: 14px;
}
.adjustments-payouts .payouts-sort-container .table-sort-container.-sort-asc {
  box-shadow: none;
}
.adjustments-payouts .payouts-sort-container .table-sort-container.-sort-asc .icon-up-arrow {
  color: black;
}
.adjustments-payouts .payouts-sort-container .table-sort-container.-sort-desc {
  box-shadow: none;
}
.adjustments-payouts .payouts-sort-container .table-sort-container.-sort-desc .icon-dwon_arrow {
  color: black;
}
.adjustments-payouts .payouts-payout-settlement {
  padding: 15px;
  border-bottom: 1px solid #eee;
  flex: 0 0 50%;
  max-width: 50%;
  box-sizing: border-box;
}
.adjustments-payouts .payouts-payout-settlement:last-child {
  border-bottom: none;
}
.adjustments-payouts .payouts-breakdown-section-header {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.adjustments-payouts .payouts-breakdown-block {
  margin-left: 5px;
}
.adjustments-payouts .payouts-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 1.05em;
  color: #555;
}
.adjustments-payouts .payouts-breakdown-row strong {
  color: #000;
}
.adjustments-payouts .payouts-breakdown-label {
  flex-shrink: 0;
}
.adjustments-payouts .payouts-breakdown-dots {
  flex-grow: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 10px;
  height: 12px;
}
.adjustments-payouts .payouts-breakdown-amount {
  flex-shrink: 0;
  text-align: right;
  min-width: 80px;
  color: #000;
}
.adjustments-payouts .payouts-breakdown-total .payouts-breakdown-amount strong {
  font-size: 1.15em;
}
.adjustments-payouts .negative-amount,
.adjustments-payouts .negative-amount strong {
  color: #d9534f !important;
  /* Bootstrap "danger" red */
}
.adjustments-payouts .pagination-container {
  justify-content: center;
}
.custom-error-msg-container {
  text-align: center;
  padding: 25px;
  border: 1px solid #ac2431;
  border-radius: 5px;
  color: #ac2431;
}
.custom-modal .modal-header {
  padding: 20px 25px;
}
.custom-modal button {
  font-size: 25px;
  padding: 5px;
  position: unset;
}
.adjustments-payouts-modal .modal-dialog {
  min-width: 700px;
}
.adjustments-payouts-modal .fe-accordion__item {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  overflow: hidden;
}
.adjustments-payouts-modal .fe-accordion__header {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #e2e2e2;
  cursor: pointer;
  user-select: none;
}
.adjustments-payouts-modal .fe-accordion__header:hover {
  background: #f0f2f5;
}
.adjustments-payouts-modal .fe-accordion__header .fe-accordion__chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 8px;
}
.adjustments-payouts-modal .fe-accordion__item--open .fe-accordion__header .fe-accordion__chevron {
  transform: rotate(-135deg);
}
.adjustments-payouts-modal .fe-accordion__body {
  padding: 16px;
  background: #fff;
}
.adjustments-payouts-modal .panel-payouts-title {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}
.adjustments-payouts-modal .panel-payouts-left {
  flex: 1 1 auto;
  min-width: 0;
}
.adjustments-payouts-modal .panel-date {
  font-size: 13px;
  color: #444;
}
.adjustments-payouts-modal .panel-payouts-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.adjustments-payouts-modal .adjustments-pdf,
.adjustments-payouts-modal .adjustments-csv {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #fff;
  transition: background 0.15s, border-color 0.15s;
}
.adjustments-payouts-modal .adjustments-pdf:hover,
.adjustments-payouts-modal .adjustments-csv:hover {
  background: #f0f2f5;
  border-color: #bbb;
}
.adjustments-payouts-modal .adjustments-pdf .icon-folder-download,
.adjustments-payouts-modal .adjustments-csv .icon-folder-download {
  font-size: 16px;
  color: #888;
}
.adjustments-payouts-modal .panel-amount {
  font-size: 14px;
  color: #222;
  flex-shrink: 0;
}
.adjustments-payouts-modal .panel-amount.negative-amount {
  color: #ac2431;
}
.adjustments-payouts-modal .ReactTable .rt-thead .rt-tr {
  display: none;
}
.adjustments-payouts-modal .column-payout-amount {
  display: flex;
  justify-content: flex-end;
}
.adjustments-prompt-modal .loader-div {
  height: 100%;
  position: absolute;
}
.adjustments-prompt-modal .icon-thumbs_up,
.adjustments-prompt-modal .icon-cancel,
.adjustments-prompt-modal .icon-wrong {
  padding: 10px;
  font-size: 30px;
}
.adjustments-prompt-modal .icon-thumbs_up {
  color: #5ad888;
}
.adjustments-prompt-modal .icon-cancel,
.adjustments-prompt-modal .icon-wrong {
  color: #ac2431;
}
.payment-account-title {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.payment-account-title h2 {
  margin: 0px;
}
.payment-account-title .icon-exclamation-mark {
  font-size: 18px;
}
.payment-account-title .icon-exclamation-mark.severity-critical {
  color: #ac2431;
}
.payment-account-title .icon-exclamation-mark.severity-warning {
  color: #f0ad4e;
}
.adjustments-actions {
  display: flex;
  justify-content: flex-end;
  margin: 25px 0px;
}
.payment-account-details {
  overflow: hidden;
}
.payment-account-details .row {
  margin-left: 0;
  margin-right: 0;
}
.payment-account-details .payment-info-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.payment-account-details .detail-row {
  margin-bottom: 12px;
  word-break: break-word;
}
.payment-account-details .detail-row strong {
  color: #333;
  margin-right: 8px;
}
.payment-account-details .detail-row .status-success {
  color: #5ad888;
  font-weight: bold;
}
.payment-account-details .detail-row .status-success .icon-green-check {
  color: #5ad888;
  margin-right: 4px;
}
.payment-account-details .detail-row .status-error {
  color: #ac2431;
  font-weight: bold;
}
.payment-account-details .detail-row .status-error .icon-wrong {
  color: #ac2431;
  margin-right: 4px;
}
.payment-account-details .detail-row .status-warning {
  color: #f0ad4e;
  font-weight: bold;
}
.payment-account-details .detail-row .status-warning .icon-warning-sign {
  color: #f0ad4e;
  margin-right: 4px;
}
.payment-account-details .requirements-section {
  padding: 15px;
  background-color: #fff9e6;
  border: 1px solid #f0ad4e;
  border-radius: 5px;
  word-break: break-word;
}
.payment-account-details .requirements-section .title-section {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 15px;
}
.payment-account-details .requirements-section h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.payment-account-details .requirements-section h4 .requirements-info-icon {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease;
}
.payment-account-details .requirements-section h4 .requirements-info-icon:hover {
  color: #333;
}
.payment-account-details .requirements-section .requirement-group {
  margin-bottom: 15px;
}
.payment-account-details .requirements-section .requirement-group:last-child {
  margin-bottom: 0;
}
.payment-account-details .requirements-section .requirement-group strong {
  display: block;
  margin-bottom: 8px;
}
.payment-account-details .requirements-section .requirement-group ul {
  margin: 0;
  padding-left: 20px;
}
.payment-account-details .requirements-section .requirement-group ul li {
  margin-bottom: 5px;
  word-break: break-word;
}
.payment-account-details .alert {
  padding: 15px;
  border-radius: 5px;
}
.payment-account-details .alert.alert-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.attachments-modal .loader-div {
  height: 100%;
  position: absolute;
}
.attachments-modal .attachments-modal-header {
  width: 100%;
}
.attachments-modal .attachments-modal-header .modal-title {
  margin-bottom: 12px;
}
.attachments-modal .attachments-modal-header .attachments-modal-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.attachments-modal .attachments-modal-header .attachments-modal-details .detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.attachments-modal .attachments-modal-header .attachments-modal-details .detail-item .detail-label {
  color: #666;
  font-weight: 500;
}
.attachments-modal .attachments-modal-header .attachments-modal-details .detail-item .detail-value {
  color: #333;
  font-weight: 600;
  background: #f0f7ff;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #d0e7ff;
}
.attachments-modal .dropzone-area {
  border: 2px dashed #d0d0d0;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fafafa;
}
.attachments-modal .dropzone-area:hover {
  border-color: #1a73e8;
  background: #f0f7ff;
}
.attachments-modal .dropzone-area .dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.attachments-modal .dropzone-area .dropzone-content i {
  color: #666;
}
.attachments-modal .dropzone-area .dropzone-content p {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}
.attachments-modal .dropzone-area .dropzone-content small {
  color: #666;
  font-size: 12px;
}
.delete-attachment-backdrop {
  z-index: 1055 !important;
}
.reviews .reviews-summary {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 16px 20px;
  border-radius: 8px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}
.reviews .loader-div {
  height: 100%;
  position: absolute;
}
.reviews .panel-reviews .ReactTable tbody tr td:last-child {
  background-color: transparent !important;
}
.reviews .panel-reviews .reviews-tr-custom {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  padding: 24px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.reviews .panel-reviews .reviews-tr-custom .reviews-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews .panel-reviews .reviews-tr-custom .reviews-col .small-text {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.reviews .panel-reviews .reviews-tr-custom .reviews-col > div:not(.small-text) {
  font-size: 14px;
  color: #111827;
  font-weight: 500;
  word-break: break-word;
}
.reviews .panel-reviews .reviews-tr-custom .reviews-col .flex-gap-5 {
  display: flex;
  align-items: center;
  gap: 5px;
}
.reviews .panel-reviews .reviews-tr-custom .reviews-col .clickable-text {
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s ease;
}
.reviews .panel-reviews .reviews-tr-custom .reviews-col .icon-open-new-tab {
  color: #9ca3af;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.15s ease;
}
.reviews .panel-reviews .reviews-tr-custom .reviews-col .icon-open-new-tab:hover {
  color: #4b5563;
}
.reviews .panel-reviews .reviews-bubble {
  padding: 16px 20px;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  border-radius: 0 16px 16px 16px;
  margin-top: 4px;
  margin-bottom: 24px;
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  white-space: pre-wrap;
  position: relative;
  display: inline-block;
  max-width: 85%;
}
.reviews .panel-reviews .reviews-reply {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.reviews .panel-reviews .reviews-reply .reviews-reply-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.reviews .panel-reviews .reviews-reply .reviews-reply-title.no_pad {
  padding: 0 0 8px 0;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  color: #111827;
}
.reviews .panel-reviews .reviews-reply .reviews-reply-title.w-100 {
  width: 100%;
  max-width: 800px;
}
.reviews .panel-reviews .reviews-reply .reviews-reply-title .btn {
  font-size: 12px;
  padding: 4px 10px;
  margin-left: 10px;
}
.reviews .panel-reviews .reviews-reply .fe-field-wrap {
  width: 100%;
  max-width: 800px;
}
.reviews .panel-reviews .reviews-reply.full-width,
.reviews .panel-reviews .reviews-reply.host-reply {
  align-items: flex-end;
}
.reviews .panel-reviews .reviews-reply.full-width .reviews-reply-title,
.reviews .panel-reviews .reviews-reply.host-reply .reviews-reply-title {
  color: #337ab7;
}
.reviews .panel-reviews .reviews-reply.full-width .reviews-bubble,
.reviews .panel-reviews .reviews-reply.host-reply .reviews-bubble {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  color: #337ab7;
  border-radius: 16px 0 16px 16px;
}
.reviews .icon-star-full {
  padding-right: 2px;
  color: #dedede;
}
.reviews .icon-star-full.fill {
  color: #ffd700;
}
.reviews .reviews-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.reviews .reviews-header .average-rating-container,
.reviews .reviews-header .reviews-total-container,
.reviews .reviews-header .reviews-total-open-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px 18px;
  min-width: 90px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.reviews .reviews-header .average-rating-container .total,
.reviews .reviews-header .reviews-total-container .total,
.reviews .reviews-header .reviews-total-open-container .total {
  font-size: 32px;
  font-weight: 700;
  color: #1a2233;
  line-height: 1.1;
  display: block;
  justify-content: unset;
}
.reviews .reviews-header .average-rating-container .total.highlight,
.reviews .reviews-header .reviews-total-container .total.highlight,
.reviews .reviews-header .reviews-total-open-container .total.highlight {
  color: #ac2431;
}
.reviews .reviews-header .ratings-container {
  display: flex;
  align-items: center;
  margin: 0;
}
.reviews .reviews-header .status-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}
.reviews .reviews-header .status-container .status-label {
  font-weight: 700;
  font-size: 13px;
  color: #374151;
  margin-right: 4px;
  white-space: nowrap;
}
.reviews .reviews-header .fe-search-wrap {
  flex: 1;
  min-width: 200px;
}
@media screen and (max-width: 991px) {
  .reviews .reviews-header {
    gap: 8px;
    padding: 12px 14px;
  }
  .reviews .reviews-header .fe-search-wrap {
    margin-left: 0;
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .reviews .reviews-header {
    flex-direction: row;
    align-items: flex-start;
  }
  .reviews .reviews-header .average-rating-container,
  .reviews .reviews-header .reviews-total-container,
  .reviews .reviews-header .reviews-total-open-container {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }
  .reviews .reviews-header .status-container {
    width: 100%;
  }
  .reviews .reviews-header .ratings-container {
    width: 100%;
  }
  .reviews .reviews-header .fe-search-wrap {
    flex-basis: 100%;
    width: 100%;
  }
}
.create-support-ticket-modal .loader-div {
  height: 100%;
  position: absolute;
}
.create-support-ticket-modal textarea.form-field {
  resize: none;
  min-height: 100px;
  border-radius: 5px;
}
.support-ticket-modal .loader-div {
  height: 100%;
  position: absolute;
}
.property-room-info {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dedede;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.property-room-info .property-info {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.property-room-info .property-info .img-wrapper {
  flex-shrink: 0;
  width: 220px;
  min-height: 180px;
  background-position: center;
  background-size: cover;
  background-color: #f5f5f5;
}
.property-room-info .property-info .property-details {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.property-room-info .property-info .property-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  color: #494949;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.property-room-info .property-info .property-address .icon-map_locator_icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: #ac2431;
}
.property-room-info .property-info .cico-container {
  display: flex;
  gap: 24px;
}
.property-room-info .property-info .cico-container .cico-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #494949;
  font-weight: 500;
}
.property-room-info .property-info .cico-container .cico-time .icon-Calender {
  color: #ac2431;
  font-size: 14px;
}
.property-room-info .property-info .property-features-container {
  display: flex;
  gap: 16px;
}
.property-room-info .property-info .property-features-container .property-features {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 8px 12px;
}
.property-room-info .property-info .property-features-container .property-features .feature-img img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.property-room-info .property-info .property-features-container .property-features .feature-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.3;
}
.property-room-info .property-info .property-features-container .property-features .feature-text div:first-child {
  font-size: 15px;
  font-weight: 700;
  color: #2d2d2d;
}
.property-room-info .property-info .property-features-container .property-features .feature-text div:last-child {
  color: #888;
  font-weight: 400;
}
.property-room-info .property-info .feature-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid #dedede;
}
.property-room-info .property-info .feature-container .feature-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  color: #494949;
  font-weight: 500;
}
.property-room-info .property-info .feature-container .feature-box .svg-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.support-tickets-list .tickets-loader {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}
.support-tickets-list .ticket-skeleton {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  overflow: hidden;
}
.support-tickets-list .ticket-skeleton__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid #dee2e6;
}
.support-tickets-list .ticket-skeleton__row:last-child {
  border-bottom: none;
}
.support-tickets-list .ticket-skeleton__row .skeleton-line {
  display: block;
  margin-bottom: 0;
}
.support-tickets-list .ticket-skeleton__subject {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.support-tickets-list .ticket-skeleton__meta {
  flex-shrink: 0;
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support-tickets-list .ticket-skeleton__chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 3px !important;
}
.support-tickets-list .ticket-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.support-tickets-list .ticket-header-subject {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 1rem;
  text-align: left;
}
.support-tickets-list .ticket-subject-title {
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.support-tickets-list .ticket-header-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.85rem;
  color: #6c757d;
}
.support-tickets-list .ticket-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.support-tickets-list .ticket-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
}
.support-tickets-list .ticket-meta-label {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  color: #6c757d;
}
.support-tickets-list .ticket-meta-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: #2c3e50;
  gap: 6px;
}
.support-tickets-list .ticket-meta-priority {
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-tickets-list .support-tickets-empty {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
  margin-top: 10px;
}
.support-tickets-list .ticket-body {
  padding: 20px;
}
.support-tickets-list .ticket-body-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.support-tickets-list .ticket-body-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.support-tickets-list .ticket-body-details {
  flex: 0 0 340px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.support-tickets-list .ticket-body-right {
  flex: 1 1 auto;
  min-width: 0;
  border-left: 1px solid #e0e0e0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.support-tickets-list .ticket-detail-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.support-tickets-list .ticket-detail-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.support-tickets-list .ticket-detail-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 0;
}
.support-tickets-list .ticket-detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #6c757d;
  white-space: nowrap;
  min-width: 120px;
}
.support-tickets-list .ticket-detail-value {
  font-size: 0.92rem;
  color: #2c3e50;
  word-break: break-word;
}
.support-tickets-list .ticket-section-header {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #6c757d;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 4px;
  margin-bottom: 8px;
  margin-top: 4px;
}
.support-tickets-list .ticket-description-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 12px;
  font-size: 0.9rem;
  min-height: 60px;
  max-height: 480px;
  overflow-y: auto;
  color: #2c3e50;
}
.support-tickets-list .ticket-description-box img {
  max-width: 100%;
  height: auto;
}
.support-tickets-list .ticket-cc-list {
  margin: 0;
  padding-left: 20px;
}
.support-tickets-list .ticket-cc-list li {
  padding: 2px 0;
}
.support-tickets-list .ticket-empty-state {
  color: #6c757d;
  font-size: 0.88rem;
  margin: 0;
}
@media (max-width: 768px) {
  .support-tickets-list .ticket-body-layout {
    flex-direction: column;
  }
  .support-tickets-list .ticket-body-details {
    flex: none;
    width: 100%;
  }
  .support-tickets-list .ticket-body-right {
    border-left: none;
    border-top: 1px solid #e0e0e0;
    padding-left: 0;
    padding-top: 16px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .support-tickets-list .ticket-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .support-tickets-list .ticket-header-subject {
    padding-right: 0;
    width: 100%;
  }
  .support-tickets-list .ticket-subject-title {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .support-tickets-list .ticket-header-meta {
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
  }
  .support-tickets-list .ticket-meta-item {
    align-items: flex-start;
    width: auto;
  }
}
.support-tickets-list .status-flags {
  font-size: 15px;
  font-weight: 600;
}
.support-tickets-list .status-flags i {
  padding-right: 5px;
}
.support-tickets-list .status-flags div {
  display: flex;
  align-items: center;
  padding: 5px 0px;
}
.support-tickets-list .status-flags .icon-x {
  color: #ac2431;
}
.support-tickets-list .status-flags .icon-checkbox_check {
  color: #5ad888;
}
.support-tickets .support-loader {
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 20px;
  position: relative;
}
.support-tickets .support-loader .loader-div {
  height: 100%;
  position: absolute;
  z-index: 1000;
}
.support-tickets textarea.form-field {
  resize: none;
  min-height: 175px;
}
.support-tickets .unauthorize {
  border: 1px solid #ac2431;
  border-radius: 5px;
  padding: 20px;
  position: relative;
  color: #ac2431;
}
.support-tickets .support-tickets-container {
  padding: 15px;
  margin-bottom: 20px;
}
.support-tickets .support-tickets-container .search-grid {
  margin-left: -10px;
  margin-right: -10px;
}
.support-tickets .support-tickets-container .search-grid > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 15px;
}
.support-tickets .support-tickets-container .loader-div {
  height: 100%;
  position: absolute;
}
.support-tickets .input-loader-container {
  position: relative;
}
.support-tickets .input-loader-container .loader-div .circular {
  height: 25px;
}
.support-tickets label.form-label {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
}
.support-tickets .picky__input {
  padding-right: 60px;
  white-space: nowrap;
  text-transform: capitalize;
}
.support-tickets .picky__input span {
  overflow: hidden;
  display: block;
}
.support-tickets .custom-picky {
  position: relative;
}
.support-tickets .custom-picky .picky-clear-search {
  position: absolute;
  z-index: 1;
  right: 30px;
  top: 3px;
}
.support-tickets .custom-picky .picky-clear-search .btn {
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
  border-radius: 50%;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.picky-priority {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
}
.priority-circle {
  display: inline-block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.priority-circle.urgent {
  background-color: #c91918;
}
.priority-circle.high {
  background-color: #e68e35;
}
.priority-circle.medium {
  background-color: #7eae42;
}
.priority-circle.low {
  background-color: #5874b8;
}
@keyframes users-modal-check-draw {
  from {
    stroke-dashoffset: 44;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.users-modal input,
.users-modal .picky {
  margin-bottom: 15px;
}
.users-modal__feedback {
  padding: 32px 16px 0px 24px;
}
.users-modal__feedback svg {
  display: block;
  margin: 0 auto 16px;
}
.users-modal__feedback .ag-success-check {
  animation: users-modal-check-draw 0.5s 0.3s ease forwards;
}
.users-modal__feedback-msg {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 20px 0px !important;
}
.users-modal__feedback-actions {
  text-align: right;
}
.users-modal__feedback-close {
  background: #fff !important;
  color: #374151 !important;
  border: 1px solid #d1d5db !important;
}
.users-modal__feedback-close:hover {
  background: #f3f4f6 !important;
}
.users-modal .form-label {
  font-weight: 700;
}
.users-modal .modal-dialog {
  max-width: 400px;
}
.role-permissions-badge {
  display: inline-flex;
  align-items: center;
  background: #e7f0f8;
  border: 1px solid #87b5de;
  border-radius: 12px;
  color: #337ab7;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  padding: 2px 6px;
  margin-left: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.role-permissions-badge:hover {
  background: #bfd8ed;
  border-color: #5798d0;
}
.permissions-modal__grid {
  column-gap: 24px;
  font-size: 13px;
  color: #374151;
}
.permissions-modal__grid--2col {
  columns: 2;
}
.permissions-modal__grid--3col {
  columns: 3;
}
.permissions-modal__item {
  break-inside: avoid;
  padding: 4px 0;
  border-bottom: 1px solid #f3f4f6;
}
.users .role-container,
.users-modal .role-container {
  display: flex;
  align-items: center;
}
.users .role-container .icon-info,
.users-modal .role-container .icon-info {
  color: #999;
  font-size: 13px;
}
.org-roles-row {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
}
.org-roles-row + .org-roles-row {
  border-top: 1px solid #dedede;
  margin-top: 4px;
}
.org-roles-row__name {
  font-weight: 600;
  font-size: 13px;
  color: #333;
}
.org-roles-row__roles {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}
.org-roles-row__role {
  display: block;
}
.tab-content-body {
  margin-top: 1.5rem;
}
.users-table__name {
  color: #111827;
  font-size: 13px;
  font-weight: 700;
}
.users-table__email {
  display: block;
  max-width: 220px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  color: #4b5563;
  text-decoration: none;
}
.users-table__email:hover {
  color: #85bee8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.roles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: flex-start;
}
.roles-list__item {
  display: inline-block;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  color: #475569;
  white-space: nowrap;
}
.roles-list__toggle {
  display: inline-block;
  margin-top: 4px;
  padding: 0;
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 600;
  color: #85bee8;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.roles-list__toggle:hover {
  opacity: 0.75;
}
.edit-devices {
  position: relative;
}
.edit-devices .loader-div {
  position: absolute;
  height: 100%;
}
.edit-devices .btn-default {
  background-color: #f5f5f5;
}
.edit-devices .btn-default.active,
.edit-devices .btn-default:active,
.edit-devices .open > .dropdown-toggle.btn-default {
  color: #fff;
  background-color: #337ab7;
}
.device-icon-container {
  width: 60px;
  text-align: center;
  font-size: 25px;
}
.device-icon-container .icon-battery {
  position: relative;
  height: 22px;
  color: #999;
}
.device-icon-container .icon-battery .battery-level {
  position: absolute;
  width: 100%;
  background-color: #5ad888;
  left: 0px;
  bottom: -3px;
}
.device-icon-container .icon-lock-unknown,
.device-icon-container .icon-wifi-unknown {
  color: #999;
}
.device-icon-container .icon-lock {
  color: #5ad888;
}
.device-icon-container .icon-unlock {
  color: #ac2431;
}
.device-icon-container .icon-thermostat {
  font-size: 30px;
}
.device-icon-container .device-status {
  display: block;
  font-size: 13px;
}
.tooltip-err-msg {
  padding: 10px;
}
.no-devices-found {
  border: 1px solid #dedede;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 10px;
  padding: 10px;
}
.remove-device-modal .loader-div {
  height: 100%;
}
.delete-additional-config-modal .loader-div {
  height: 100%;
}
.device-container {
  padding: 30px 0px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
}
.manage-devices table td {
  vertical-align: middle !important;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .manage-devices .rt-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .manage-devices table {
    min-width: 560px;
  }
  .manage-devices th[data-colid="property"],
  .manage-devices td[data-colid="property"] {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .manage-devices .rt-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .manage-devices table {
    min-width: 420px;
  }
  .manage-devices th[data-colid="status"],
  .manage-devices td[data-colid="status"],
  .manage-devices th[data-colid="property"],
  .manage-devices td[data-colid="property"] {
    display: none;
  }
  .manage-devices .dc-device .dc-device-name {
    font-size: 13px;
  }
  .manage-devices .dc-device .dc-device-sub {
    display: none;
  }
  .manage-devices .dc-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .manage-devices .dc-remove,
  .manage-devices .dc-remove-btn,
  .manage-devices .dc-manage-btn {
    font-size: 11px;
    padding: 2px 6px;
  }
}
.manage-devices .radio-wrap {
  padding: 5px 0px;
}
.manage-devices .react-datetime-picker {
  display: block;
}
.manage-devices .react-calendar__navigation {
  height: 25px;
  display: flex;
}
.manage-devices .react-calendar__tile:disabled {
  background-color: #f2dede;
  color: #ac2431;
  cursor: not-allowed;
}
.manage-devices .react-calendar__tile--active {
  background-color: #ac2431;
  color: white !important;
}
.manage-devices .react-calendar__navigation button[disabled] {
  background-color: #f2dede;
  cursor: not-allowed;
}
.manage-devices .react-calendar__month-view__days__day--weekend {
  color: #333;
}
.manage-devices .react-datetime-picker__wrapper {
  padding: 3px;
  border-radius: 2px;
  border: 1px solid #dedede;
}
.manage-devices .loader-div {
  height: 100%;
}
.manage-devices .connected-devices {
  font-size: 14px;
  font-weight: unset;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
}
.manage-devices .connected-devices .device-name,
.manage-devices .connected-devices .device-chevron,
.manage-devices .connected-devices .device-manage,
.manage-devices .connected-devices .device-assign,
.manage-devices .connected-devices .device-remove {
  width: 150px;
  display: flex;
  align-items: center;
}
.manage-devices .connected-devices .device-chevron {
  width: 75px;
}
.manage-devices .door-code-lead-time {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.manage-devices .door-code-lead-time .lead-time-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f7fa;
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: #444;
  flex-wrap: wrap;
}
.manage-devices .door-code-lead-time .lead-time-row .lead-time-label {
  font-weight: 500;
  color: #555;
  white-space: nowrap;
}
.manage-devices .door-code-lead-time .lead-time-row .lead-time-suffix {
  font-weight: 500;
  color: #555;
  white-space: nowrap;
}
.manage-devices .door-code-lead-time .lead-time-row .form-field-select {
  display: inline;
}
.manage-devices .door-code-lead-time .lead-time-row select.form-field {
  width: auto;
  min-width: 90px;
  border: 1px solid #d0d7e3;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #337ab7;
  padding: 3px 8px;
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2710%27 height=%276%27%3E%3Cpath d=%27M0 0l5 6 5-6z%27 fill=%27%23337ab7%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 7px center;
  padding-right: 22px;
}
.manage-devices .door-code-lead-time .lead-time-row select.form-field option {
  color: #2d2d2d;
}
.manage-devices .door-code-lead-time .lead-time-row select.form-field:focus {
  outline: none;
  border-color: #337ab7;
  box-shadow: 0 0 0 2px #cfe1f2;
}
.manage-devices .icon-edit {
  font-size: 16px;
  margin-left: 5px;
  padding: 3px;
  cursor: pointer;
}
.manage-devices .manage-device-actions {
  display: flex;
}
.manage-devices .manage-device-actions .toggle-lock-btn {
  cursor: pointer;
  border: 1px solid #dedede;
  border-radius: 5px;
}
.manage-devices .manage-device-actions > * {
  margin-right: 12px;
}
.manage-devices .manage-device-actions > *:last-child {
  margin-right: 0;
}
.manage-devices .multi-range-slider-black {
  background-color: transparent;
  border-radius: 5px;
  border: 1px solid #dedede;
}
.manage-devices .multi-range-slider-black .thumb .caption * {
  background-color: #337ab7;
}
.manage-devices .multi-range-slider-black .bar-inner {
  background-color: #5ad888;
}
.manage-devices .multi-range-slider-black.single-slider .thumb.thumb-left {
  display: none;
}
.manage-devices .multi-range-slider-black.single-slider .bar-left {
  border: solid 1px #fff;
}
.manage-devices .flex-col {
  margin-top: 5px;
}
.manage-devices .flex-col:first-child {
  max-width: 100px;
}
.manage-devices .flex-col:nth-child(3) {
  max-width: 30px;
}
.mfr-container {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 8px;
}
.mfr-container .mfr-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background 0.15s, opacity 0.2s;
  font-size: 16px;
  color: #444;
}
.mfr-container .mfr-arrow:hover {
  background: #f0f0f0;
}
.mfr-container .mfr-arrow:focus-visible {
  outline: 2px solid #0078d4;
  outline-offset: 2px;
}
.mfr-container .mfr-arrow.mfr-arrow-hidden {
  opacity: 0;
  pointer-events: none;
}
.mfr-container .mfr-card-container {
  overflow: hidden;
  display: flex;
  gap: 12px;
  scroll-behavior: smooth;
  flex: 1;
}
.mfr-container .mfr-card-container .mfr-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  width: 140px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.mfr-container .mfr-card-container .mfr-card:hover {
  border-color: #0078d4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #f5f9ff;
}
.mfr-container .mfr-card-container .mfr-card:focus-visible {
  outline: 2px solid #0078d4;
  outline-offset: 2px;
}
.mfr-container .mfr-card-container .mfr-card .mfr-card-img-wrap {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mfr-container .mfr-card-container .mfr-card .mfr-card-img-wrap img {
  max-height: 56px;
  max-width: 108px;
  object-fit: contain;
}
.mfr-container .mfr-card-container .mfr-card .mfr-title {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #333;
}
.mfr-container .mfr-card-container .mfr-card-skeleton {
  cursor: default;
  pointer-events: none;
  flex: 1;
  min-width: 110px;
}
.mfr-container .mfr-card-container .mfr-card-skeleton:hover {
  border-color: #e2e2e2;
  box-shadow: none;
  background: #fff;
}
.mfr-container .mfr-card-container .mfr-card-skeleton .mfr-skeleton-img {
  width: 72px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(90deg, #efefef 25%, #e0e0e0 50%, #efefef 75%);
  background-size: 200% 100%;
  animation: mfr-shimmer 1.4s infinite;
}
.mfr-container .mfr-card-container .mfr-card-skeleton .mfr-skeleton-title {
  width: 80px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, #efefef 25%, #e0e0e0 50%, #efefef 75%);
  background-size: 200% 100%;
  animation: mfr-shimmer 1.4s infinite;
}
@keyframes mfr-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.device-error-modal .icon-exclamation-triangle {
  color: #ac2431;
}
.comm-properties-modal .modal-body {
  padding: 0px 30px 30px 30px;
}
.comm-properties-modal .picky__dropdown {
  position: static !important;
}
.comm-properties-modal .loader-div {
  height: 100%;
  position: absolute;
}
.comm-properties-modal .picky__input span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 480px;
}
.comm-properties-modal select:required:invalid {
  color: #b4b4b4;
}
.comm-properties-modal option {
  color: #2d2d2d;
}
.comm-properties-modal .form-label {
  font-weight: bold;
}
.manage-device-icon-container i {
  color: #ac2431;
  margin-right: 8px;
}
.dc-device {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dc-device .dc-device-name {
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
}
.dc-device .dc-device-sub {
  font-size: 12px;
  color: #888;
}
.dc-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.dc-status i {
  font-size: 14px;
}
.dc-status.dc-status--locked {
  background: #e6f9f0;
  color: #1a7a45;
}
.dc-status.dc-status--locked i {
  color: #1a7a45;
}
.dc-status.dc-status--unlocked {
  background: #fde8ea;
  color: #ac2431;
}
.dc-status.dc-status--unlocked i {
  color: #ac2431;
}
.dc-status.dc-status--unknown {
  background: #f2f2f2;
  color: #888;
}
.dc-status.dc-status--unknown i {
  color: #aaa;
}
.dc-status.dc-status--neutral {
  background: #eef3fb;
  color: #2a5298;
}
.dc-status.dc-status--neutral i {
  color: #2a5298;
  font-size: 18px;
}
.dc-property {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dc-property .dc-property-name {
  font-weight: 600;
  font-size: 13px;
  color: #1a1a1a;
}
.dc-property .dc-property-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}
.dc-property .dc-property-id {
  font-family: monospace;
  font-size: 11px;
  background: #f0f0f0;
  border-radius: 3px;
  padding: 1px 5px;
  color: #444;
}
.dc-property .dc-property-loc {
  font-size: 12px;
  color: #888;
}
.dc-property .dc-property-loc::before {
  content: "·";
  margin-right: 6px;
  color: #ccc;
}
.dc-property .dc-property-unassigned {
  font-size: 12px;
  color: #aaa;
  font-style: italic;
}
.dc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dc-actions .dc-badge-error {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #ac2431;
  background: #fde8ea;
  border: 1px solid #f5b8be;
  border-radius: 20px;
  padding: 2px 8px;
  cursor: default;
  white-space: nowrap;
}
.dc-actions .dc-badge-error i {
  font-size: 12px;
}
.dc-remove {
  display: flex;
  align-items: center;
}
.dc-remove .dc-remove-btn {
  font-size: 12px;
  font-weight: 600;
  color: #ac2431;
  cursor: pointer;
  padding: 3px 8px;
  border: 1px solid #f5b8be;
  border-radius: 4px;
  background: transparent;
  transition: background 0.15s;
  white-space: nowrap;
}
.dc-remove .dc-remove-btn:hover {
  background: #fde8ea;
}
.dc-remove .dc-manage-btn {
  color: #337ab7;
  border-color: #87b5de;
}
.dc-remove .dc-manage-btn:hover {
  background: #e7f0f8;
}
.de-panel {
  padding: 20px 24px;
  background: #fafafa;
}
.de-panel .de-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}
@media screen and (max-width: 767px) {
  .de-panel .de-header {
    flex-direction: column;
  }
}
.de-panel .de-header .de-header-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.de-panel .de-header .de-header-info .de-header-manufacturer {
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
}
.de-panel .de-header .de-header-info .de-header-desc {
  font-size: 13px;
  color: #888;
}
.de-panel .de-header .de-status-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.de-panel .de-header .de-status-bar .de-status-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #dde3ec;
  background: #f7f9fc;
  white-space: nowrap;
  line-height: 1;
}
.de-panel .de-header .de-status-bar .de-status-item i {
  font-size: 14px;
  vertical-align: middle;
}
.de-panel .de-header .de-status-bar .de-status-item svg {
  vertical-align: middle;
  flex-shrink: 0;
}
.de-panel .de-header .de-status-bar .de-status-item .de-status-label {
  font-size: 12px;
  font-weight: 600;
  color: #3a3a3a;
  vertical-align: middle;
}
.de-panel .de-header .de-status-bar .de-status-item--clickable {
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.de-panel .de-header .de-status-bar .de-status-item--clickable:hover {
  border-color: #b0bacc;
  background: #edf1f7;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.de-panel .de-header .de-status-bar .de-status-item--error {
  color: #ac2431;
  border-color: #eca6ac;
  background: #f9e1e3;
}
.de-panel .de-header .de-status-bar .de-status-item--error .de-status-label {
  color: #ac2431;
}
.de-panel .de-header .de-status-bar .de-status-item--error:hover {
  background: #f3c7cb;
}
.de-panel .de-header .de-status-bar .de-status-item.toggle-lock-btn {
  border-color: #337ab7;
  background: #e7f0f8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  user-select: none;
}
.de-panel .de-header .de-status-bar .de-status-item.toggle-lock-btn .de-status-label {
  color: #2a6597;
}
.de-panel .de-header .de-status-bar .de-status-item.toggle-lock-btn:hover {
  background: #cfe1f2;
  border-color: #2d6da3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.de-panel .de-header .de-status-bar .de-status-item.toggle-lock-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.de-panel .de-section + .de-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #ebebeb;
}
.de-panel .de-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #aaa;
  margin-bottom: 12px;
}
.de-panel .de-subsection {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed #e8e8e8;
}
.de-panel .de-field {
  margin-bottom: 16px;
}
.de-panel .de-form-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  margin-top: 4px;
}
.de-panel .de-code-form {
  background: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  padding: 16px;
}
.de-panel .de-code-form .de-form-footer {
  border-top: none;
  padding-top: 8px;
  margin-top: 12px;
}
.de-panel .de-messages {
  margin-top: 12px;
}
.de-panel .de-codes-table {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.de-panel .de-codes-table .ReactTable table {
  width: 100%;
  border-collapse: collapse;
}
.de-panel .de-codes-table .ReactTable thead th {
  background-color: #f8fafc;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}
.de-panel .de-codes-table .ReactTable tbody tr:not(:last-child) > td {
  border-bottom: 1px solid #f1f5f9;
}
.de-panel .de-codes-table .ReactTable tbody tr:hover > td {
  background-color: #f8fafc;
}
.de-panel .de-codes-table .ReactTable tbody tr td {
  padding: 10px 16px !important;
  font-size: 13px;
  color: #334155;
  vertical-align: middle;
}
.db-comm-center .dbo-activity-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}
.db-comm-center .thread-guest-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}
.thread-reservation-box-container {
  margin: 30px 0px;
}
.thread-reservation-box-container .col-sm-4 {
  text-align: center;
  padding: 20px;
  border: 1px solid #dedede;
  display: flow-root;
  border-radius: 3px;
}
.db-comm-center {
  position: relative;
}
.db-comm-center .filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 0;
  margin-bottom: 8px;
}
.db-comm-center .filter-row.no-wrap {
  flex-wrap: nowrap;
}
.db-comm-center .filter-row .filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.db-comm-center .filter-row .filter-group + .filter-group {
  padding-left: 12px;
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .db-comm-center .filter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .db-comm-center .filter-row .filter-group {
    width: 100%;
  }
  .db-comm-center .filter-row .filter-group + .filter-group {
    padding-left: 0;
    border-left: none;
    padding-top: 8px;
    border-top: 1px solid #eee;
  }
}
.db-comm-center .search-filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .db-comm-center .search-filter-row {
    flex-direction: column;
    align-items: stretch;
  }
}
.db-comm-center .loader-div {
  height: 100%;
  position: absolute;
}
.db-comm-center .picky {
  width: 200px;
}
.db-comm-center .comm-center-filter {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
}
.db-comm-center .comm-center-filter > .col-lg-12,
.db-comm-center .comm-center-filter > .col-md-12,
.db-comm-center .comm-center-filter > .col-sm-12 {
  padding-left: 0;
  padding-right: 0;
}
.db-comm-center .comm-center-filter .filter-row {
  margin-bottom: 0;
}
.db-comm-center .comm-center-filter .priority-label {
  padding-right: 8px;
  font-weight: bold;
  color: #223043;
  white-space: nowrap;
}
.db-comm-center .comm-center-filter .splitter {
  display: inline-block;
  height: 20px;
  border-left: 1px solid #d5dce6;
  margin: 0 8px;
}
.db-comm-center .comm-center-filter .filters-wrap {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.db-comm-center .comm-center-filter .filters-wrap .checkbox-wrap.checkbox-input {
  padding: 4px 10px;
  border: 1px solid #d4dbe5;
  border-radius: 999px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.db-comm-center .comm-center-filter .filters-wrap .checkbox-wrap.checkbox-input:hover {
  border-color: #b7c3d3;
}
.db-comm-center .comm-center-filter .filters-wrap .checkbox-wrap.checkbox-input input[type="checkbox"] + .checkbox-label {
  margin-left: 24px;
  font-weight: 500;
  line-height: 18px;
  color: #26384c;
}
.db-comm-center .comm-center-filter .filters-wrap .checkbox-wrap.checkbox-input input[type="checkbox"] + .checkbox-label:before {
  width: 16px;
  height: 16px;
  top: 1px;
  left: -24px;
}
.db-comm-center .comm-center-filter .filters-wrap .checkbox-wrap.checkbox-input input[type="checkbox"]:checked + .checkbox-label {
  font-weight: 700;
}
.db-comm-center .comm-center-filter .filters-wrap .checkbox-wrap.checkbox-input input[type="checkbox"]:checked + .checkbox-label:after {
  top: 6px;
  left: -20px;
  width: 8px;
  height: 5px;
  border-left-width: 2px;
  border-bottom-width: 2px;
}
.db-comm-center .search-box {
  width: 100%;
  margin: 0;
}
.db-comm-center .search-box .search-box-container .form-field {
  height: 42px;
  border-radius: 21px;
}
.db-comm-center .thread-date-range .DateRangePickerInput {
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 21px;
  padding: 3px 10px;
}
.db-comm-center .msg-icon {
  position: relative;
  display: inline-block;
  top: -11px;
}
.db-comm-center .msg-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(1.3);
  width: 20px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIyLjg4IiBoZWlnaHQ9Ijg1LjU3IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0iTGF5ZXIgMSI+CgogPHRpdGxlPnJlZC1tYWlsPC90aXRsZT4KIDxnPgogIDx0aXRsZT5MYXllciAxPC90aXRsZT4KICA8cGF0aCBpZD0ic3ZnXzEiIGZpbGw9IiNhYzI0MzEiIGQ9Im0zLjgsMGw1OC42OCw0Ny44NWw1Ni4xNywtNDcuODVsLTExNC44NSwwem0tMy44LDgwLjUybDQxLjgsLTQxLjkxbC00MS44LC0zNC4wOGwwLDc2bDAsLTAuMDF6bTQ2LjQxLC0zOC4xNWwtNDMuMSw0My4ybDExNS45LDBsLTQxLjIxLC00My4ybC0xMy41NSwxMS41N2wwLDBhMywzIDAgMCAxIC0zLjc5LDAuMDVsLTE0LjI1LC0xMS42MnptMzYuMTIsLTMuODRsNDAuMzUsNDIuMzNsMCwtNzYuN2wtNDAuMzUsMzQuMzd6IiBjbGFzcz0iY2xzLTEiLz4KIDwvZz4KPC9zdmc+) no-repeat;
  background-size: contain;
}
.db-comm-center .msg-count {
  position: absolute;
  top: -10px;
  right: -30px;
  width: 15px;
  height: 15px;
  background: #ac2431;
  border-radius: 50%;
  text-align: center;
  line-height: 13px;
  color: #fff;
  font-size: 11px;
  border: 1px solid #fff;
}
.db-comm-center .thread-msg-priority-icon {
  display: flex;
  justify-content: center;
  font-size: 25px;
}
.db-comm-center .thread-msg-priority-icon.critical {
  color: #c91918;
}
.db-comm-center .thread-msg-priority-icon.high {
  color: #e68e35;
}
.db-comm-center .thread-msg-priority-icon.medium {
  color: #7eae42;
}
.db-comm-center .thread-msg-priority-icon.low {
  color: #5874b8;
}
.db-comm-center .thread-id-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.db-comm-center .comm-center-actions {
  display: flex;
  justify-content: space-evenly;
  font-size: 20px;
}
.db-comm-center .comm-center-actions .icon-reply,
.db-comm-center .comm-center-actions .icon-Reservations {
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .db-comm-center .filter-row.no-wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .db-comm-center .comm-center-filter {
    padding: 10px;
  }
  .db-comm-center .comm-center-filter .priority-label {
    width: 100%;
    padding-right: 0;
    margin-top: 2px;
  }
  .db-comm-center .comm-center-filter .splitter {
    display: none;
  }
  .db-comm-center .comm-center-filter .filters-wrap {
    width: auto;
    max-width: 100%;
  }
  .db-comm-center .comm-center-filter .filters-wrap .checkbox-wrap.checkbox-input {
    width: auto;
    max-width: 100%;
    border-radius: 10px;
  }
}
.app-modal.ask-question-modal {
  padding: 0;
}
@media screen and (max-width: 991px) {
  .app-modal-overlay--right:has(.ask-question-modal) {
    padding: 0;
  }
}
.widget-error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60vh;
  gap: 12px;
  text-align: center;
  padding: 0 24px;
}
.widget-error-state h2 {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin: 0;
}
.widget-error-state p {
  font-size: 14px;
  color: #6b7280;
  max-width: 400px;
  margin: 0;
}
.widget-error-state__back-link {
  margin-top: 4px;
  font-size: 14px;
  color: #337ab7;
  text-decoration: none;
}
.widget-error-state__back-link:hover {
  text-decoration: underline;
}
.ask-question-modal .app-modal__header {
  padding: 12px 20px;
  border-bottom: none;
  margin-bottom: 0;
  background: #fff;
  flex-shrink: 0;
}
.ask-question-modal .thread-modal-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ask-question-modal .thread-modal-header__primary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ask-question-modal .thread-modal-header__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2333;
  line-height: 1.3;
}
.ask-question-modal .thread-modal-header__priority {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
}
.ask-question-modal .thread-modal-header__priority--critical {
  background: #fde8ea;
  color: #ac2431;
}
.ask-question-modal .thread-modal-header__priority--high {
  background: #fef3e2;
  color: #b45309;
}
.ask-question-modal .thread-modal-header__priority--medium {
  background: #e8f4fd;
  color: #1a5f99;
}
.ask-question-modal .thread-modal-header__priority--low {
  background: #f0fdf4;
  color: #166534;
}
.ask-question-modal .thread-modal-header__status {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  background: #f3f4f6;
  color: #6b7280;
}
.ask-question-modal .thread-modal-header__secondary {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ask-question-modal .thread-modal-header__meta {
  font-size: 12px;
  color: #9aa0ab;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ask-question-modal .thread-modal-header__meta i {
  font-size: 11px;
}
.ask-question-modal .thread-msg {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0px 4px;
}
.ask-question-modal .thread-msg .chat-window {
  flex: 1 1 0;
  min-height: 0;
}
@media screen and (max-width: 991px) {
  .ask-question-modal .thread-msg {
    min-height: 400px;
  }
}
.ask-question-modal .thread-content-row {
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 0;
}
.ask-question-modal .thread-content-row__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .ask-question-modal .thread-content-row {
    height: auto;
    flex: 1 1 auto;
    flex-direction: column;
  }
  .ask-question-modal .thread-content-row__col {
    height: auto;
  }
  .ask-question-modal .thread-content-row__col--hidden {
    display: none;
  }
}
.ask-question-modal .thread-tabs {
  display: none;
}
@media screen and (max-width: 991px) {
  .ask-question-modal .thread-tabs {
    display: flex;
    flex-shrink: 0;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e8ed;
    padding: 6px;
    gap: 4px;
  }
}
.ask-question-modal .thread-tabs__btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ask-question-modal .thread-tabs__btn i {
  font-size: 13px;
}
.ask-question-modal .thread-tabs__btn--active {
  background: #fff;
  color: #1a5f99;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ask-question-modal .thread-tabs__btn:not(.ask-question-modal .thread-tabs__btn--active):hover {
  background: #e9eaec;
  color: #374151;
}
.ask-question-modal .loader-div {
  height: 100%;
  z-index: 1001;
}
.ask-question-modal .identification-status {
  font-weight: bold;
}
.ask-question-modal .identification-status.pending {
  color: orange;
}
.ask-question-modal .identification-status.verified {
  color: green;
}
.ask-question-modal .identification-status.unverified {
  color: #ac2431;
}
.ask-question-modal .host-notes-container {
  margin-top: 10px;
}
.ask-question-modal .host-notes-container pre {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  margin: 0px;
  font-family: inherit;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 9.5px;
}
.ask-question-modal .rd-hero .rd-hero__meta {
  flex-wrap: wrap;
  gap: 8px;
}
.ask-question-modal .rd-hero .rd-hero__meta-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .ask-question-modal .rd-hero .rd-hero__image {
    height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .ask-question-modal .rd-hero .rd-hero__image {
    height: 130px;
  }
  .ask-question-modal .rd-hero .rd-hero__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.ask-question-modal .thread-info {
  overflow-y: auto;
  padding: 0px 12px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .ask-question-modal .thread-info {
    padding: 0px 4px;
  }
}
.ask-question-modal .thread-info__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.ask-question-modal .thread-info__card-header .icon-edit {
  font-size: 15px;
  cursor: pointer;
  color: #337ab7;
}
.ask-question-modal .thread-info__card-header .icon-edit:hover {
  color: #265a87;
}
.ask-question-modal .thread-info__section {
  border-radius: 6px;
  padding: 14px 6px;
}
.ask-question-modal .thread-info .rd-hero {
  box-shadow: none;
  background: none;
  border: 1px solid #e5e8ed;
}
.ask-question-modal .thread-info__section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.ask-question-modal .thread-info__section-header .icon-edit {
  font-size: 15px;
  cursor: pointer;
  color: #337ab7;
  flex-shrink: 0;
  padding-top: 2px;
}
.ask-question-modal .thread-info__section-header .icon-edit:hover {
  color: #265a87;
}
.ask-question-modal .thread-info__section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9aa0ab;
  margin-bottom: 10px;
}
.ask-question-modal .thread-info__prop-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2333;
  line-height: 1.3;
}
.ask-question-modal .thread-info__prop-id {
  font-size: 12px;
  color: #9aa0ab;
  white-space: nowrap;
  flex-shrink: 0;
}
.ask-question-modal .thread-info__prop-id i {
  margin-right: 3px;
}
.ask-question-modal .thread-info__guest {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 13px;
}
.ask-question-modal .thread-info__guest a {
  font-size: 12px;
  color: #337ab7;
}
.ask-question-modal .thread-info__sep {
  color: #d0d4dc;
}
.ask-question-modal .thread-info__data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .ask-question-modal .thread-info__data-grid {
    grid-template-columns: 1fr;
  }
}
.ask-question-modal .thread-info__data-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ask-question-modal .thread-info__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b0b7c3;
}
.ask-question-modal .thread-info__value {
  font-size: 13px;
  color: #1a2333;
}
.ask-question-modal .thread-info__policies {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #f5f8fc;
  border-radius: 4px;
  border-left: 3px solid #85bee8;
  font-size: 11px;
  color: #666;
  line-height: 1.5;
}
.ask-question-modal .thread-info__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.ask-question-modal .thread-info__actions--right {
  justify-content: flex-end;
}
.ask-question-modal .app-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f8fc;
  padding: 14px 20px;
  margin-top: 0;
  border-top: 1px solid #dce6f0;
  flex-wrap: nowrap;
  gap: 12px;
}
.ask-question-modal .thread-footer__left,
.ask-question-modal .thread-footer__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-right: 50px;
}
.ask-question-modal .thread-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  border: 1px solid #c4d5e8;
  background: #edf2f8;
  color: #4a6b8a;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.ask-question-modal .thread-footer__btn:hover {
  background: #dce6f0;
  border-color: #a8bfd4;
}
.ask-question-modal .thread-footer__btn--icon {
  width: 36px;
  padding: 0;
  font-size: 15px;
}
.ask-question-modal .thread-footer__btn--close {
  background: #e2eaf4;
}
.ask-question-modal .thread-footer__btn--close:hover {
  background: #d0dceb;
}
.ask-question-modal .thread-footer__unread-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  border: 1px solid #c4d5e8;
  background: #edf2f8;
  color: #4a6b8a;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.ask-question-modal .thread-footer__unread-btn:hover {
  background: #dce6f0;
}
.ask-question-modal .thread-footer__unread-btn--active {
  background: #ac2431;
  border-color: #ac2431;
  color: #fff;
}
.ask-question-modal .thread-footer__unread-btn--active:hover {
  background: #8a1d27;
}
.ask-question-modal .thread-footer__left .fe-select-wrap {
  width: auto;
  min-width: 120px;
  flex-shrink: 0;
}
.ask-question-modal .thread-footer__left .fe-select-wrap .fe-select {
  height: 36px;
  border-radius: 4px;
  border: 1px solid #c4d5e8;
  background: #edf2f8;
  color: #4a6b8a;
  font-size: 13px;
  font-weight: 600;
  padding: 0 28px 0 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.ask-question-modal .thread-footer__left .fe-select-wrap .fe-select:hover {
  background: #dce6f0;
}
.ask-question-modal .thread-footer__left .fe-select-wrap .fe-select option {
  background: #f5f8fc;
  color: #4a6b8a;
}
.ask-question-modal .thread-footer__left .fe-select-wrap .fe-select-arrow {
  border-top-color: #7a9bb8;
}
#messageResponse,
#hostNotes {
  height: 100px;
  resize: none;
}
.guest-verification-backdrop {
  z-index: 1055 !important;
}
.chat-window {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  font-family: "Assistant", Arial, sans-serif;
  font-size: 14px;
}
.chat-window__messages {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 200px;
}
.chat-window__empty {
  padding: 32px 0;
  text-align: center;
  color: #666;
  font-style: italic;
}
.chat-window__unread-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0;
}
.chat-window__unread-divider::before,
.chat-window__unread-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ac2431;
  opacity: 0.4;
}
.chat-window__unread-divider span {
  font-size: 11px;
  font-weight: 600;
  color: #ac2431;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.chat-window__row {
  display: flex;
  flex-direction: column;
  max-width: 70%;
}
.chat-window__row--own {
  align-self: flex-end;
  align-items: flex-end;
}
.chat-window__row--other {
  align-self: flex-start;
  align-items: flex-start;
}
.chat-window__row--html {
  max-width: 100%;
  align-self: stretch;
  align-items: stretch;
}
.chat-window__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.chat-window__sender {
  font-size: 13px;
  font-weight: 600;
  color: #2d2d2d;
}
.chat-window__timestamp {
  font-size: 11px;
  color: #666;
  white-space: nowrap;
}
.chat-window__bubble {
  position: relative;
  padding: 10px 14px;
  line-height: 1.55;
  word-break: break-word;
  max-width: 100%;
}
.chat-window__row--other .chat-window__bubble {
  background: #f0f2f5;
  color: #2d2d2d;
  border-radius: 0 18px 18px 18px;
}
.chat-window__row--own .chat-window__bubble {
  background: #f5f8fc;
  color: #2d2d2d;
  border-radius: 18px 0 18px 18px;
}
.chat-window__bubble .loading-dots {
  gap: 5px;
  padding: 2px 0;
}
.chat-window__bubble .loading-dots span {
  width: 8px;
  height: 8px;
}
.chat-window__bubble--html {
  background: #fff !important;
  border: 1px solid #d5d5d5 !important;
  color: #2d2d2d !important;
  border-radius: 6px !important;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.chat-window__text {
  margin: 0;
  white-space: pre-wrap;
}
.chat-window__text--html {
  white-space: normal;
  max-width: 100%;
}
.chat-window__text--html img {
  max-width: 100%;
  height: auto;
}
.chat-window__text--html table {
  max-width: 100%;
}
.chat-window__attach-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.chat-window__attach-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #337ab7;
  text-decoration: underline;
  cursor: pointer;
}
.chat-window__attach-link:hover {
  color: #285f8f;
}
.chat-window__compose {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px 10px;
  background: #fff;
}
.chat-window__compose-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-window__subject {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chat-window__subject .fe-label {
  margin: 0;
}
.chat-window__subject .fe-input {
  width: 100%;
}
.chat-window__subject .fe-input::placeholder {
  color: #bbb;
}
.chat-window__compose-label {
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
}
.chat-window__generate-btn {
  border: none;
  border-radius: 20px;
  padding: 6px 18px;
  background: #337ab7;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: "Assistant", Arial, sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}
.chat-window__generate-btn:hover:not(:disabled) {
  background: #2a6597;
}
.chat-window__generate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.chat-window__textarea {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 14px;
  font-family: "Assistant", Arial, sans-serif;
  color: #2d2d2d;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.15s;
}
.chat-window__textarea::placeholder {
  color: #bbb;
}
.chat-window__textarea:focus {
  border-color: #85bee8;
}
.chat-window__pending-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chat-window__pending-attach {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px 2px 10px;
  background: #f5f5f5;
  border: 1px solid #d5d5d5;
  border-radius: 12px;
  font-size: 12px;
  color: #2d2d2d;
}
.chat-window__remove-attach {
  display: inline-flex;
  align-items: center;
  border: none;
  background: none;
  padding: 0 0 0 4px;
  font-size: 11px;
  line-height: 1;
  color: #666;
  cursor: pointer;
}
.chat-window__remove-attach:hover {
  color: #ac2431;
}
.chat-window__compose-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.chat-window__compose-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-window__attach-btn {
  border: none;
  background: none;
  padding: 4px 6px;
  font-size: 20px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  transition: color 0.15s;
}
.chat-window__attach-btn:hover {
  color: #2d2d2d;
}
.chat-window__send-btn {
  border: none;
  border-radius: 20px;
  padding: 7px 22px;
  background: #ac2431;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: "Assistant", Arial, sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}
.chat-window__send-btn:hover:not(:disabled) {
  background: #771821;
}
.chat-window__send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  .chat-window__row {
    max-width: 90%;
  }
}
.team-members {
  position: relative;
}
.team-members .loader-div {
  height: 100%;
  position: absolute;
}
.sub-cat {
  margin-top: 20px;
  padding-bottom: 10px;
}
.sub-cat.form-validation {
  border: 3px solid #ac2431;
  border-radius: 5px;
  overflow: auto;
}
.sub-cat-body-container {
  display: none;
}
.sub-cat-body-container.open {
  display: block;
}
.sub-cat-body-container.open .sub-cat-avail {
  padding: 15px 15px 30px 15px;
}
.sub-cat-body-container.open .sub-cat-title {
  font-weight: bold;
  padding: 20px 15px;
  text-transform: capitalize;
}
.sub-cat-body-container.open .sub-cat-title.second {
  border-top: 1px solid #dedede;
}
.sub-cat-body-container.open .sub-cat-container {
  padding: 10px 15px;
}
.sub-cat-body-container.open .sub-cat-container .form-field-select {
  min-width: 100px;
}
.sub-cat-body-container.open .sub-cat-container .form-field-select .form-field[name="timeZone"] {
  min-width: 200px;
}
.sub-cat-body-container.open .sub-cat-container .sub-cat-week-container {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sub-cat-body-container.open .sub-cat-container .sub-cat-week-container .sub-cat-week {
  display: flex;
  gap: 6px;
}
.sub-cat-body-container.open .sub-cat-container .sub-cat-week-container .sub-cat-week .checkbox-wrap {
  padding: 0px;
}
.sub-cat-body-container.open .sub-cat-container .sub-cat-week-container .sub-cat-week .checkbox-wrap.checkbox-input input[type="checkbox"] + .checkbox-label {
  margin-left: 5px;
  margin-right: 15px;
  margin-bottom: 15px;
  font-weight: bold;
}
.sub-cat-body-container.open .sub-cat-container .sub-cat-week-container .sub-cat-week .checkbox-wrap.checkbox-input input[type="checkbox"] + .checkbox-label:before {
  left: -3px;
  top: 30px;
}
.sub-cat-body-container.open .sub-cat-container .sub-cat-week-container .sub-cat-week .checkbox-wrap.checkbox-input input[type="checkbox"]:checked + .checkbox-label:after {
  top: 35px;
  left: 2px;
}
.sub-cat-body-container.open .sub-cat-check-box-container {
  padding: 10px 15px;
  display: flex;
  gap: 30px;
}
.sub-cat-body-container.open .sub-cat-switch-custom {
  display: flex;
  gap: 20px;
}
.sub-cat-grid {
  width: 100%;
}
.sub-cat-row {
  display: flex;
}
.sub-cat-switch {
  min-width: 100px;
}
.sub-cat-row,
.sub-cat-cell,
.sub-cat-tab,
.sub-cat-tab * {
  text-align: left;
}
.sub-cat-grid .flex-align-items-center i.icon-green-check,
.sub-cat-grid .flex-align-items-center i.icon-green-check {
  font-size: 20px;
  margin-right: 8px;
  color: #999;
  line-height: 1;
  display: inline-block;
  transition: color 0.2s ease;
}
.sub-cat-grid .flex-align-items-center i.icon-green-check.checked,
.sub-cat-grid .flex-align-items-center i.icon-green-check.checked {
  color: #5ad888;
}
.sub-cat-cell {
  flex: 1;
  padding: 10px;
  user-select: none;
}
.sub-cat-cell.has-item {
  cursor: pointer;
}
.sub-cat-cell.active {
  border: 1px solid #dedede;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}
.sub-cat-expansion {
  padding: 10px;
  border-radius: 0 0 5px 5px;
  border: 1px solid #dedede;
  width: 100%;
  box-sizing: border-box;
}
.sub-cat-cell.active + .sub-cat-expansion {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}
.react-picky-container {
  box-sizing: border-box;
  height: 35px;
}
.react-picky-container.form-validation .react-picky-input {
  border: 3px solid #ac2431 !important;
}
.react-picky-container.react-picky-up .react-picky-dropdown {
  border-radius: 6px 6px 0 0;
}
.react-picky-container.react-picky-down .react-picky-dropdown {
  border-radius: 0 0 6px 6px;
}
.react-picky-container .react-picky-input {
  height: 35px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-wrap: nowrap !important;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding-right: 25px;
  border: 1px solid #dedede !important;
  border-radius: 8px !important;
}
.react-picky-container .react-picky-input > span {
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.react-picky-container .react-picky-input > span:first-child {
  max-width: calc(100% + 18px);
  display: inline-block;
  vertical-align: middle;
}
.react-picky-container .react-picky-input > span.picky-tag .picky-label {
  display: inline-block;
  max-width: calc(100% - 18px);
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.react-picky-container .react-picky-input > span.picky-tag > .picky-close {
  flex: none;
  margin-left: 4px;
}
.react-picky-container .react-picky-input > span[aria-label="Clear selected"],
.react-picky-container .react-picky-input > span[aria-label="Clear all selected"] {
  flex: 0 0 auto;
  margin-left: 6px;
}
.react-picky-container .react-picky-dropdown {
  left: 0;
  right: 0;
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
}
.react-picky-container .react-picky-dropdown.drop-up {
  border-radius: 8px;
}
.react-picky-container .react-picky-dropdown.drop-down {
  border-radius: 8px;
}
.react-picky-container .react-picky-dropdown input[type="text"] {
  width: 100%;
  box-sizing: border-box;
}
.react-picky-container .react-picky-dropdown ul,
.react-picky-container .react-picky-dropdown li {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.react-picky-container.disabled .react-picky-input {
  cursor: not-allowed;
}
.react-picky-container .react-picky-input .fe-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.login-container {
  max-width: 500px;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .login-container {
    width: 100%;
    max-width: 100%;
  }
}
.login-container h3 {
  margin-top: 0;
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.login-container p {
  color: #666;
  margin-bottom: 1.5rem;
}
.login-container .disclaimer {
  max-width: 360px;
  margin: 0 auto;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  position: relative;
  margin-bottom: 0.5rem;
}
.form-group label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  font-weight: 500;
  font-size: 1rem;
  color: #666;
  pointer-events: none;
  transition: all 0.2s ease;
  background-color: #fff;
  padding: 0 0.25rem;
  z-index: 1;
}
.form-group label.static-label {
  position: static;
  display: block;
  font-size: 0.75rem;
  color: #0066cc;
  font-weight: 600;
  padding: 0;
  margin: 0 0 0.25rem 0.75rem;
}
.form-group label.floating {
  top: -0.5rem;
  font-size: 0.75rem;
  color: #0066cc;
  font-weight: 600;
}
.form-group input {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background-color: transparent;
  width: 100%;
}
.form-group select {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background-color: transparent;
  width: 100%;
}
.form-group select:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}
.form-group select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.form-group input:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -0.5rem;
  font-size: 0.75rem;
  color: #0066cc;
  font-weight: 600;
}
.form-group input:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
/* Autofill detection using animation */
@keyframes autofillStart {
  from {
    background-color: transparent;
  }
  to {
    background-color: transparent;
  }
}
/* Autofill styles to override browser defaults */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: #333 !important;
  background-color: transparent !important;
  transition: background-color 5000s ease-in-out 0s;
  animation: autofillStart 0.001s;
}
/* Force label positioning for autofilled login inputs only */
#login-email:-webkit-autofill ~ label,
#login-password:-webkit-autofill ~ label {
  top: -0.5rem !important;
  font-size: 0.75rem !important;
  color: #0066cc !important;
  font-weight: 600 !important;
}
/* Firefox autofill */
#login-email:-moz-autofill,
#login-password:-moz-autofill {
  background-color: transparent !important;
  box-shadow: 0 0 0 30px white inset !important;
}
#login-email:-moz-autofill ~ label,
#login-password:-moz-autofill ~ label {
  top: -0.5rem !important;
  font-size: 0.75rem !important;
  color: #0066cc !important;
  font-weight: 600 !important;
}
/* Modern browsers autofill */
#login-email:autofill,
#login-password:autofill {
  background-color: transparent !important;
  box-shadow: 0 0 0 30px white inset !important;
}
#login-email:autofill ~ label,
#login-password:autofill ~ label {
  top: -0.5rem !important;
  font-size: 0.75rem !important;
  color: #0066cc !important;
  font-weight: 600 !important;
}
.field-error {
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  position: relative;
  z-index: 0;
}
.field-hint {
  color: #666;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  position: relative;
  z-index: 0;
}
.error-message {
  background-color: #ffebee;
  border: 1px solid #ffcdd2;
  color: #d32f2f;
  padding: 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.success-message {
  background-color: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #2e7d32;
  padding: 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.submit-button,
.cancel-button {
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}
.cancel-button {
  background-color: #cccccc;
  color: #333333;
}
.submit-button:hover:not(:disabled) {
  background-color: #0055aa;
}
.submit-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}
.form-links {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}
.form-text-link {
  color: #0066cc;
  text-decoration: none;
  font-size: 0.9rem;
}
.form-text-link:hover {
  text-decoration: underline;
}
.form-text-link.disabled {
  color: #999;
  cursor: not-allowed;
  pointer-events: none;
}
/* Social Login Styles */
.social-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  text-align: center;
}
.social-divider::before,
.social-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
}
.social-divider span {
  padding: 0 1rem;
  color: #666;
  font-size: 0.9rem;
}
.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}
.social-button:hover:not(:disabled) {
  border-color: #bbb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.social-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.social-button .social-icon {
  flex-shrink: 0;
}
.redawning-login-logo {
  max-width: 200px;
  margin-bottom: 2rem;
}
.form-row {
  display: flex;
  gap: 1rem;
}
.form-row .form-group {
  flex: 1;
}
.verification-code-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0;
}
.code-input {
  width: 3.5rem;
  height: 4.8rem;
  font-size: 2rem;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (min-width: 768px) {
  .code-input {
    width: 4.8rem;
  }
}
.code-input:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}
.code-input:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}
.no-org-message p {
  font-size: 1em;
}
.attachment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  transition: all 0.2s ease;
  margin-bottom: 8px;
  min-height: 72px;
}
.attachment-card:hover {
  border-color: #d0d0d0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.attachment-card--clickable {
  cursor: pointer;
}
.attachment-card--clickable:hover {
  border-color: #1a73e8;
  box-shadow: 0 1px 3px rgba(26, 115, 232, 0.12);
}
.attachment-card--compact {
  min-height: 56px;
  padding: 8px 12px;
}
.attachment-card-content {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 12px;
}
.attachment-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #f8f9fa;
}
.attachment-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.attachment-card--compact .attachment-card-icon {
  width: 32px;
  height: 32px;
}
.attachment-card--compact .attachment-card-icon img {
  width: 24px;
  height: 24px;
}
.attachment-card-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.attachment-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #202124;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
}
.attachment-card--compact .attachment-card-title {
  font-size: 13px;
}
.attachment-card-size {
  font-size: 12px;
  color: #5f6368;
  line-height: 16px;
}
.attachment-card--compact .attachment-card-size {
  font-size: 11px;
}
.attachment-card-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: 8px;
}
.attachment-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: #5f6368;
  transition: all 0.2s ease;
  padding: 0;
}
.attachment-card-action:hover {
  background: rgba(95, 99, 104, 0.08);
  color: #202124;
}
.attachment-card-action:active {
  background: rgba(95, 99, 104, 0.16);
}
.attachment-card-action--remove:hover {
  background: rgba(234, 67, 53, 0.08);
  color: #ea4335;
}
.attachment-card-action--remove:active {
  background: rgba(234, 67, 53, 0.16);
}
.attachment-card-action svg {
  pointer-events: none;
}
.attachment-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.attachment-card-grid .attachment-card {
  margin-bottom: 0;
}
.attachment-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
  width: 100%;
}
.attachment-card-list .attachment-card {
  margin-bottom: 0;
  min-width: 0;
}
@keyframes skeleton-shimmer {
  0% {
    background-position: -600px 0;
  }
  100% {
    background-position: 600px 0;
  }
}
.skeleton-line {
  background: linear-gradient(90deg, #dedede 25%, #ededed 50%, #dedede 75%);
  background-size: 600px 100%;
  animation: skeleton-shimmer 1.4s infinite linear;
  border-radius: 4px;
  display: block;
  margin-bottom: 8px;
}
.skeleton-line:last-child {
  margin-bottom: 0;
}
.skeleton-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}
.skeleton-card__image {
  background: linear-gradient(90deg, #dedede 25%, #ededed 50%, #dedede 75%);
  background-size: 600px 100%;
  animation: skeleton-shimmer 1.4s infinite linear;
  border-radius: 4px;
  display: block;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.skeleton-card__body {
  padding: 16px;
}
.skeleton-card__title {
  margin-bottom: 12px !important;
}
.skeleton-card__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.skeleton-card__avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.skeleton-card__avatar {
  background: linear-gradient(90deg, #dedede 25%, #ededed 50%, #dedede 75%);
  background-size: 600px 100%;
  animation: skeleton-shimmer 1.4s infinite linear;
  border-radius: 4px;
  display: block;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50% !important;
  margin-bottom: 0;
}
.skeleton-card__avatar-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.skeleton-card__actions {
  margin-top: 16px;
}
.skeleton-card__btn {
  border-radius: 4px !important;
}
.skeleton-card--list-row {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  margin-bottom: 0;
}
.skeleton-card--list-row .skeleton-card__body {
  padding: 12px 16px;
}
.skeleton-card--inline {
  border: none;
  border-radius: 0;
  background: transparent;
  margin-bottom: 0;
  box-shadow: none;
}
.skeleton-card--inline .skeleton-card__body {
  padding: 0;
}
.page-header {
  display: flex;
  flex-direction: column;
  background: #fff;
  flex-shrink: 0;
}
.page-header__bar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 0 24px;
  min-height: 52px;
}
.page-header--with-breadcrumbs .page-header__bar {
  min-height: 44px;
}
@media screen and (max-width: 767px) {
  .page-header__bar {
    padding: 8px 16px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .page-header__spacer {
    display: none;
  }
  .page-header__actions {
    flex-basis: 100%;
    flex-wrap: wrap !important;
    justify-content: flex-end;
    gap: 8px;
    align-items: center;
  }
  .page-header__actions .fe-search-wrap {
    order: 99;
    flex-basis: 100%;
    width: auto;
    min-width: 0;
  }
  .page-header__actions .date-range-picker {
    flex-basis: 100%;
  }
}
.page-header__breadcrumbs {
  margin: 0;
  padding: 6px 24px 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.page-header__breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #888;
  font-weight: 500;
}
.page-header__breadcrumb-item + .page-header__breadcrumb-item::before {
  content: "›";
  margin: 0 6px;
  color: #d0d0d0;
  font-size: 15px;
  font-weight: 300;
}
.page-header__breadcrumb-item--last {
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.page-header__breadcrumb-item--org a {
  display: inline-flex;
  align-items: center;
  background: #fdf0f1;
  color: #ac2431;
  border: 1px solid rgba(172, 36, 49, 0.2);
  border-radius: 20px;
  padding: 1px 10px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.page-header__breadcrumb-item--org a:hover {
  background: rgba(172, 36, 49, 0.1);
  border-color: rgba(172, 36, 49, 0.4);
}
.page-header__breadcrumb-item a {
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
}
.page-header__breadcrumb-item a:hover {
  color: #85bee8;
}
.page-header__divider {
  width: 1px;
  height: 18px;
  background: #e5e9f0;
  flex-shrink: 0;
}
.page-header__title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 300px;
}
.page-header__spacer {
  flex: 1;
}
.page-header__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.page-header__back:hover {
  color: #85bee8;
}
.page-header__back-arrow {
  font-size: 14px;
}
.page-header__actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  flex-shrink: 1;
  min-width: 0;
}
.page-header__actions .fe-search-wrap {
  width: 220px;
  min-width: 120px;
  flex-shrink: 1;
}
.page-header__actions .btn-group,
.page-header__actions .dropdown {
  flex-shrink: 0;
}
.page-header__actions .primary-btn,
.page-header__actions .secondary-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
.pe-header-validation-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: 1px solid #e5e9f0;
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.pe-header-validation-btn:hover:not(:disabled) {
  color: #85bee8;
  border-color: #85bee8;
  background: rgba(133, 190, 232, 0.05);
}
.pe-header-validation-btn:disabled {
  opacity: 0.5;
  cursor: default;
}
.pe-header-validation-btn--has-issues {
  color: #ac2431;
  border-color: rgba(172, 36, 49, 0.3);
  background: rgba(172, 36, 49, 0.05);
}
.pe-header-validation-btn--has-issues:hover:not(:disabled) {
  color: #771821;
  border-color: #771821;
  background: rgba(119, 24, 33, 0.05);
}
.pe-header-validation-btn__badge {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.pe-header-validation-btn__spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: pe-validation-spin 0.7s linear infinite;
}
@keyframes pe-validation-spin {
  to {
    transform: rotate(360deg);
  }
}
.page-body {
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
}
.page-body--no-top-padding {
  padding-top: 0;
}
.page-body--full-height {
  padding: 0;
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
}
.page-body--full-height .page-body__content {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.page-body--full-height .ask-question-modal {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.page-body--full-height .ask-question-modal .thread-content-row {
  flex: 1 1 0;
  min-height: 0;
}
.page-body--full-height .ask-question-modal .thread-footer__left {
  padding: 8px 12px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.page-body--full-height .ask-question-modal .thread-footer__left .fe-select-wrap .fe-select {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
}
.page-body--full-height .ask-question-modal .thread-footer__left .fe-select-wrap .fe-select option {
  background: #fff;
  color: #374151;
}
.page-body--full-height .ask-question-modal .thread-footer__left .fe-select-wrap .fe-select-arrow {
  border-top-color: #6b7280;
}
@media screen and (max-width: 767px) {
  .page-body {
    padding: 15px;
  }
  .page-body--no-top-padding {
    padding-top: 0;
  }
}
.page-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  gap: 12px;
  min-height: 40vh;
}
.page-error__code {
  display: block;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: #ac2431;
  letter-spacing: -2px;
  opacity: 0.15;
}
.page-error__title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.page-error__message {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 440px;
  margin: 0;
}
.page-error__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #85bee8;
  text-decoration: none;
  transition: opacity 0.15s;
}
.page-error__link i {
  font-size: 12px;
}
.page-error__link:hover {
  opacity: 0.75;
  text-decoration: none;
  color: #85bee8;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
}
.status-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-badge--success {
  background-color: rgba(21, 157, 71, 0.12);
  color: #12873d;
  border-color: rgba(21, 157, 71, 0.3);
}
.status-badge--success::before {
  background-color: #159d47;
}
.status-badge--error {
  background-color: rgba(172, 36, 49, 0.1);
  color: #97202b;
  border-color: rgba(172, 36, 49, 0.25);
}
.status-badge--error::before {
  background-color: #ac2431;
}
.status-badge--warning {
  background-color: rgba(217, 119, 6, 0.12);
  color: #a75c05;
  border-color: rgba(217, 119, 6, 0.3);
}
.status-badge--warning::before {
  background-color: #d97706;
}
.status-badge--neutral {
  background-color: #f3f4f6;
  color: #6b7280;
  border-color: #d1d5db;
}
.status-badge--neutral::before {
  background-color: #6b7280;
}
.suggest-reply__generate-btn {
  float: right;
  margin-bottom: 10px;
  padding: 5px 20px;
}
.suggest-reply__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  float: right;
  margin-bottom: 10px;
}
.suggest-reply__nav-btn {
  padding: 5px 14px;
}
.co-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}
.co-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  width: min(800px, calc(100vw - 32px));
  text-align: center;
}
.co-dialog__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
}
.co-dialog__close:hover {
  color: #333;
}
.co-dialog__check-icon {
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: co-success-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.co-dialog__check-icon .ag-success-check {
  animation: co-success-draw 0.5s 0.3s ease forwards;
}
@keyframes co-success-pop {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes co-success-draw {
  from {
    stroke-dashoffset: 44;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.co-dialog__title {
  margin-bottom: 10px;
  color: #333;
}
.co-dialog__message {
  margin: 0 0 20px;
  padding: 12px 16px;
  background: #f0f7ff;
  border-left: 3px solid #337ab7;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: #1e3a5f;
  line-height: 1.5;
  text-align: left;
}
.co-progress-wrap {
  margin: 0 20px 20px 20px;
}
.co-progress-wrap .progress {
  height: 8px;
}
.current-operations-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 2px 12px rgba(51, 122, 183, 0.25);
}
.current-operations-banner--primary {
  background: linear-gradient(135deg, #337ab7 0%, #1a5a96 100%);
}
.current-operations-banner--success {
  background: linear-gradient(135deg, #2e9fd8 0%, #1e6fa8 100%);
}
.current-operations-banner__check-icon {
  font-size: 15px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.current-operations-banner__spinner {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
}
.current-operations-banner__content {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.current-operations-banner__expand-btn,
.current-operations-banner__close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  opacity: 0.7;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  transition: opacity 0.15s ease;
}
.current-operations-banner__expand-btn:hover,
.current-operations-banner__close-btn:hover {
  opacity: 1;
}
.current-operations-banner__expand-btn {
  font-size: 16px;
}
.current-operations-banner__close-btn {
  font-size: 20px;
}
.co-tasks-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px 0 10px;
  border-radius: 17px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #337ab7 0%, #1a5a96 100%);
  box-shadow: 0 1px 6px rgba(51, 122, 183, 0.3);
  transition: opacity 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.co-tasks-indicator:hover {
  opacity: 0.9;
  box-shadow: 0 2px 10px rgba(51, 122, 183, 0.45);
}
.co-tasks-indicator__icon {
  font-size: 14px;
  opacity: 0.9;
}
.co-tasks-indicator__label {
  letter-spacing: 0.02em;
}
.co-tasks-indicator__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.top-header .current-operations-banner {
  margin-bottom: 0;
  height: 34px;
  padding: 0 12px 0 10px;
  border-radius: 17px;
  max-width: 380px;
  box-shadow: 0 1px 6px rgba(51, 122, 183, 0.3);
}
.co-welcome-wrap {
  margin: 0 0 24px;
}
.co-welcome-title {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  text-align: center;
}
.co-welcome-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
  border: 1px solid #dbeafe;
}
.co-welcome-card__content {
  padding: 20px 20px 0;
}
.co-welcome-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.co-welcome-card__slide-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #1e3a5f;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.co-welcome-card__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.co-welcome-card__slide-text {
  margin: 0;
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
}
.co-welcome-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 14px 0 16px;
}
.co-welcome-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: #bfdbfe;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.co-welcome-dot--active {
  background: #337ab7;
  transform: scale(1.5);
}
.co-welcome-dot:hover:not(.co-welcome-dot--active) {
  background: #93c5fd;
}
.co-tasks-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}
.co-tasks-title {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.co-tasks-list {
  margin: 0;
}
.co-remind-later {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
.co-task-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.co-task-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #337ab7;
  border-radius: 12px 0 0 12px;
}
.co-task-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 0 20px;
  gap: 8px;
}
.co-task-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.co-task-card__counter {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #337ab7;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.02em;
}
.co-task-card__desc {
  padding: 10px 16px 0 20px;
}
.co-task-card__desc-text {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
}
.co-task-card__action {
  display: block;
  width: calc(100% - 36px);
  margin: 14px 16px 16px 20px;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  background-color: #337ab7;
  border-color: #337ab7;
  color: #fff;
}
.co-task-card__action:hover,
.co-task-card__action:focus {
  background-color: #286090;
  border-color: #204d74;
  color: #fff;
}
.co-task-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: background 0.12s, border-color 0.12s;
  padding-bottom: 2px;
  z-index: 1;
}
.co-task-nav-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.co-task-nav-btn--prev {
  left: -13px;
}
.co-task-nav-btn--next {
  right: -13px;
}
.co-task-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0 16px 14px;
}
.co-task-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, transform 0.15s;
}
.co-task-dot--active {
  background: #337ab7;
  transform: scale(1.4);
}
.co-task-dot:hover:not(.co-task-dot--active) {
  background: #9ca3af;
}
.co-dot-label {
  display: none;
}
.co-stripe-view {
  text-align: left;
  position: relative;
}
.co-stripe-view__loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 8px;
}
.co-stripe-view__spinner {
  width: 40px;
  height: 40px;
  color: #337ab7;
}
.co-stripe-view__title {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}
.co-stripe-view__country {
  margin-bottom: 20px;
}
.co-stripe-view__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.co-stripe-view__error {
  margin-top: 15px;
}
.co-video-view {
  text-align: left;
}
.co-video-view__title {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}
.co-video-view__wrap {
  margin-bottom: 20px;
}
.co-video-view__iframe {
  width: 100%;
  height: 315px;
  border: none;
  border-radius: 8px;
}
.co-video-view__actions {
  display: flex;
  justify-content: flex-end;
}
.co-review-view {
  text-align: left;
}


/*# sourceMappingURL=transformed.1777579821616.css.map*/