/* Root element */
.json-document {
  padding: 1em 2em;
}

/* Syntax highlighting for JSON objects */
ul.json-dict, ol.json-array {
  list-style-type: none;
  margin: 0 0 0 1px;
  border-left: 1px dotted #ccc;
  padding-left: 2em;
}
.json-string {
  color: #0B7500;
}
.json-literal {
  color: #1A01CC;
  font-weight: bold;
}

/* Toggle button */
a.json-toggle {
  position: relative;
  color: inherit;
  text-decoration: none;
}
a.json-toggle:focus {
  outline: none;
}
a.json-toggle:before {
  font-size: 1.1em;
  color: #c0c0c0;
  content: "\25BC"; /* down arrow */
  position: absolute;
  display: inline-block;
  width: 1em;
  text-align: center;
  line-height: 1em;
  left: -1.2em;
}
a.json-toggle:hover:before {
  color: #aaa;
}
a.json-toggle.collapsed:before {
  /* Use rotated down arrow, prevents right arrow appearing smaller than down arrow in some browsers */
  transform: rotate(-90deg);
}

/* Collapsable placeholder links */
a.json-placeholder {
  color: #aaa;
  padding: 0 1em;
  text-decoration: none;
}
a.json-placeholder:hover {
  text-decoration: underline;
}
@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/

@layer base {
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
}

#standort-panel {
  padding-bottom: 10px;
}
#branch-address {
  text-wrap: wrap;
}
/* Container for the steps */
.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Style for step number */
.step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  font-weight: bold;
  color: #fff;
}

/* Active step number styling */
.active-step {
  background-color: #007bff;
  border-color: #007bff;
}

/* Inactive step styling */
.step-number:not(.active-step) {
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}

/* Step label styling */
.step-label {
  font-size: 16px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.7);
}

/* Step dividers */
.step-divider {
  flex-grow: 1;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 0 10px;
}

/* Make the active step label bold */
.step-number.active-step + .step-label {
  color: #007bff;
}

/* end header steps */


  /* New wrapper for both main container and right panel */
  .content-wrapper {
    max-width: 1000px;
    margin: 20px auto; /* Center with a margin */
    padding: 20px;
    background-color: #fff; /* Ensure it has a white background */
  }

  /* Main container styling */
  .main-container {
    border: 1px solid #d3d3d3; /* Grey border */
    border-radius: 5px;
    padding: 15px;
    max-width: 550px;
  }

  /* Right panel styling */
  .right-panel {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #d3d3d3; /* Grey border for right panel */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Apply the same shadow */
    margin-left: 10px;
  }

  /* Small spacer container with fixed width */
  .spacer-container {
    width: 20px;
    height: auto; /* Maintain full height of the row */
  }

  .row_flex {
    display: flex;
    flex-wrap: nowrap; /* Allow independent wrapping and height */
    align-items: flex-start; /* Ensure independent alignment at the top */
    margin-right: -15px;
    margin-left: -15px;
  }

  .termin_p {
    border-bottom: 1px solid rgb(233, 233, 233);
    color: rgb(61, 61, 61);
    color: #007bff;
    margin-bottom: 4px;
    padding-bottom: 4px;
  }



  .product-row {
    display: flex;
    justify-content: space-between; /* Align items to opposite sides */
    width: 100%; /* Full width */
    padding: 1px;
    margin-bottom: 2px; /* Space between rows */
    align-items: baseline;
  }

  .product-name {
    font-size: 16px;
    font-weight: bold;
  }

  .product-price {
    font-size: 16px;
    color: #28a745; /* Optional color for the price */
  }
  .big-price {
    margin: 10px; color:  #a2c613;
    text-wrap: nowrap;
  }
  .price {
    margin: 10px; color:  black;
    text-wrap: nowrap;
    font-size: 20px;
  }
  .hidden {
    display: none;
  }
  .select2-container {
    min-width: 100px !important;
    width: 100% !important;
  }


  .container-flex {
    display: flex;
    align-items: flex-start; /* Align items at the top */
  }

  /* Calendar container to mimic the layout */
  .calendar {
    /* width: 300px;
    border: 1px solid #ddd; */
    padding: 10px;
  }

  /* Time picker scrollable div */
  .time-picker {
    width: 150px;
    max-height: 300px; /* Set a max height to make it scrollable */
    overflow-y: auto; /* Scrollable */
    margin-left: 20px; /* Space between calendar and time picker */
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    padding: 10px;
  }

  /* Styling the time buttons */
  .time-button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #007bff;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* Highlight button with blue border on hover */
  .time-button:hover {
    border-color: #007bff;
    background-color: #e7f3ff;
  }

  /* Highlight selected button */
  .time-button.active {
    border-color: #007bff;
    background-color: #f0f8ff;
  }

  .my-d-flex {
    display: flex;
    justify-content: space-between;
  }
  .form-group label{
    font-size:12px;
  }

  /* On mobile, move the right panel under the main content */
  @media (max-width: 768px) {
    .flatpickr-calendar.inline {
      margin: auto;
    }
    .right-panel {
      margin-top: 20px;
    }
    .row_flex {
      display: flex;
      flex-wrap: wrap;
      margin-right: -15px;
      margin-left: -15px;
    }

    /* Hide spacer on mobile */
    .spacer-container {
      display: none;
    }

    .time-picker{
        width: 95%;
      }
    .container-flex-mobile {
      display: block;
      align-items: flex-start; /* Align items at the top */
    }

  }
#cc-main {
  background: transparent;
  color: var(--cc-primary-color);
  font-family: var(--cc-font-family);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.15;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  position: fixed;
  z-index: var(--cc-z-index)
}

#cc-main :after,#cc-main :before,#cc-main a,#cc-main button,#cc-main div,#cc-main h2,#cc-main input,#cc-main p,#cc-main span {
  all: unset;
  box-sizing: border-box
}

#cc-main .pm__badge,#cc-main button {
  all: initial;
  box-sizing: border-box;
  color: unset;
  visibility: unset
}

#cc-main .pm__badge,#cc-main a,#cc-main button,#cc-main input {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  line-height: normal;
  margin: 0;
  outline: revert;
  outline-offset: 2px;
  overflow: hidden
}

#cc-main table,#cc-main tbody,#cc-main td,#cc-main th,#cc-main thead,#cc-main tr {
  all: revert;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit
}

:root {
  --cc-font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --cc-modal-border-radius: .5rem;
  --cc-btn-border-radius: .4rem;
  --cc-modal-transition-duration: .25s;
  --cc-link-color: var(--cc-btn-primary-bg);
  --cc-modal-margin: 1rem;
  --cc-z-index: 2147483647;
  --cc-bg: #fff;
  --cc-primary-color: #2c2f31;
  --cc-secondary-color: #5e6266;
  --cc-btn-primary-bg: #30363c;
  --cc-btn-primary-color: #fff;
  --cc-btn-primary-border-color: var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg: #000;
  --cc-btn-primary-hover-color: #fff;
  --cc-btn-primary-hover-border-color: var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg: #eaeff2;
  --cc-btn-secondary-color: var(--cc-primary-color);
  --cc-btn-secondary-border-color: var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg: #d4dae0;
  --cc-btn-secondary-hover-color: #000;
  --cc-btn-secondary-hover-border-color: #d4dae0;
  --cc-separator-border-color: #f0f4f7;
  --cc-toggle-on-bg: var(--cc-btn-primary-bg);
  --cc-toggle-off-bg: #667481;
  --cc-toggle-on-knob-bg: #fff;
  --cc-toggle-off-knob-bg: var(--cc-toggle-on-knob-bg);
  --cc-toggle-enabled-icon-color: var(--cc-bg);
  --cc-toggle-disabled-icon-color: var(--cc-bg);
  --cc-toggle-readonly-bg: #d5dee2;
  --cc-toggle-readonly-knob-bg: #fff;
  --cc-toggle-readonly-knob-icon-color: var(--cc-toggle-readonly-bg);
  --cc-section-category-border: var(--cc-cookie-category-block-bg);
  --cc-cookie-category-block-bg: #f0f4f7;
  --cc-cookie-category-block-border: #f0f4f7;
  --cc-cookie-category-block-hover-bg: #e9eff4;
  --cc-cookie-category-block-hover-border: #e9eff4;
  --cc-cookie-category-expanded-block-bg: transparent;
  --cc-cookie-category-expanded-block-hover-bg: #dee4e9;
  --cc-overlay-bg: rgba(0,0,0,.65);
  --cc-webkit-scrollbar-bg: var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg: var(--cc-btn-primary-hover-bg);
  --cc-footer-bg: var(--cc-btn-secondary-bg);
  --cc-footer-color: var(--cc-secondary-color);
  --cc-footer-border-color: #e4eaed;
  --cc-pm-toggle-border-radius: 4em
}

#cc-main.cc--rtl {
  direction: rtl
}

#cc-main .cm__title,#cc-main a,#cc-main b,#cc-main em,#cc-main strong {
  font-weight: 600
}

#cc-main button>span {
  pointer-events: none
}

#cc-main .cc__link,#cc-main a {
  background-image: linear-gradient(currentColor,currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  font-weight: 600;
  position: relative;
  transition: background-size .25s,color .25s ease
}

#cc-main .cc__link:hover,#cc-main a:hover {
  background-size: 100% 1px;
  color: var(--cc-primary-color)
}

#cc-main .cc__link {
  color: var(--cc-link-color)
}

#cc-main .cm__desc,#cc-main .pm__body {
  overscroll-behavior: auto contain;
  scrollbar-width: thin
}

@media screen and (min-width: 640px) {
  #cc-main ::-webkit-scrollbar,#cc-main ::-webkit-scrollbar-thumb,#cc-main ::-webkit-scrollbar-track {
      all:revert
  }

  #cc-main ::-webkit-scrollbar-thumb {
      -webkit-background-clip: padding-box;
      background-clip: padding-box;
      background: var(--cc-toggle-readonly-bg);
      border: .25rem solid var(--cc-bg);
      border-radius: 1rem
  }

  #cc-main ::-webkit-scrollbar-thumb:hover {
      background: var(--cc-toggle-off-bg)
  }

  #cc-main ::-webkit-scrollbar {
      background: transparent;
      width: 12px
  }
}

html.disable--interaction.show--consent,html.disable--interaction.show--consent body {
  height: auto!important;
  overflow: hidden!important
}

@media (prefers-reduced-motion) {
  #cc-main {
      --cc-modal-transition-duration: 0s
  }
}

.cc--darkmode {
  --cc-bg: #161a1c;
  --cc-primary-color: #ebf3f6;
  --cc-secondary-color: #aebbc5;
  --cc-btn-primary-bg: #c2d0e0;
  --cc-btn-primary-color: var(--cc-bg);
  --cc-btn-primary-border-color: var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg: #98a7b6;
  --cc-btn-primary-hover-color: #000;
  --cc-btn-primary-hover-border-color: var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg: #242c31;
  --cc-btn-secondary-color: var(--cc-primary-color);
  --cc-btn-secondary-border-color: var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg: #353d43;
  --cc-btn-secondary-hover-color: #fff;
  --cc-btn-secondary-hover-border-color: var(--cc-btn-secondary-hover-bg);
  --cc-separator-border-color: #222a30;
  --cc-toggle-on-bg: var(--cc-btn-primary-bg);
  --cc-toggle-off-bg: #525f6b;
  --cc-toggle-on-knob-bg: var(--cc-btn-primary-color);
  --cc-toggle-off-knob-bg: var(--cc-btn-primary-color);
  --cc-toggle-enabled-icon-color: var(--cc-btn-primary-color);
  --cc-toggle-disabled-icon-color: var(--cc-btn-primary-color);
  --cc-toggle-readonly-bg: #343e45;
  --cc-toggle-readonly-knob-bg: #5f6b72;
  --cc-toggle-readonly-knob-icon-color: var(--cc-toggle-readonly-bg);
  --cc-section-category-border: #1e2428;
  --cc-cookie-category-block-bg: #1e2428;
  --cc-cookie-category-block-border: var(--cc-section-category-border);
  --cc-cookie-category-block-hover-bg: #242c31;
  --cc-cookie-category-block-hover-border: #232a2f;
  --cc-cookie-category-expanded-block-bg: transparent;
  --cc-cookie-category-expanded-block-hover-bg: var(--cc-toggle-readonly-bg);
  --cc-overlay-bg: rgba(0,0,0,.65);
  --cc-webkit-scrollbar-bg: var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg: var(--cc-btn-primary-hover-bg);
  --cc-footer-bg: #0c0e0f;
  --cc-footer-color: var(--cc-secondary-color);
  --cc-footer-border-color: #060809
}

.cc--darkmode #cc-main {
  color-scheme: dark
}

#cc-main .cm {
  background: var(--cc-bg);
  border-radius: var(--cc-modal-border-radius);
  box-shadow: 0 .625em 1.875em rgba(0,0,2,.3);
  display: flex;
  flex-direction: column;
  max-width: 24rem;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  transform: translateY(1.6em);
  visibility: hidden;
  z-index: 1
}

#cc-main .cm--top {
  top: var(--cc-modal-margin)
}

#cc-main .cm--middle {
  top: 50%;
  transform: translateY(calc(-50% + 1.6em))
}

#cc-main .cm--bottom {
  bottom: var(--cc-modal-margin)
}

#cc-main .cm--center {
  left: var(--cc-modal-margin);
  margin: 0 auto;
  right: var(--cc-modal-margin);
  width: unset
}

#cc-main .cm--left {
  left: var(--cc-modal-margin);
  margin-right: var(--cc-modal-margin)
}

#cc-main .cm--right {
  margin-left: var(--cc-modal-margin);
  right: var(--cc-modal-margin)
}

#cc-main .cm__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative
}

#cc-main .cm__btns,#cc-main .cm__links {
  padding: 1rem 1.3rem;
  width: unset
}

#cc-main .cm__texts {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 0
}

#cc-main .cm__desc,#cc-main .cm__title {
  padding: 0 1.3rem
}

#cc-main .cm__title {
  font-size: 1.05em
}

#cc-main .cm__title+.cm__desc {
  margin-top: 1.1em
}

#cc-main .cm__desc {
  color: var(--cc-secondary-color);
  font-size: .9em;
  line-height: 1.5;
  max-height: 40vh;
  overflow-x: visible;
  overflow-y: auto;
  padding-bottom: 1em
}

#cc-main .cm__btns {
  border-top: 1px solid var(--cc-separator-border-color);
  display: flex;
  flex-direction: column;
  justify-content: center
}

#cc-main .cm__btn-group {
  display: grid;
  grid-auto-columns: minmax(0,1fr)
}

#cc-main .cm__btn+.cm__btn,#cc-main .cm__btn-group+.cm__btn-group {
  margin-top: .375rem
}

#cc-main .cm--flip .cm__btn+.cm__btn,#cc-main .cm--flip .cm__btn-group+.cm__btn-group {
  margin-bottom: .375rem;
  margin-top: 0
}

#cc-main .cm--inline .cm__btn+.cm__btn {
  margin-left: .375rem;
  margin-top: 0
}

#cc-main .cm--inline.cm--flip .cm__btn+.cm__btn {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: .375rem
}

#cc-main .cm--inline.cm--flip .cm__btn-group+.cm__btn-group {
  margin-bottom: .375rem;
  margin-right: 0
}

#cc-main .cm--wide .cm__btn+.cm__btn,#cc-main .cm--wide .cm__btn-group+.cm__btn-group {
  margin-left: .375rem;
  margin-top: 0
}

#cc-main .cm--wide.cm--flip .cm__btn+.cm__btn,#cc-main .cm--wide.cm--flip .cm__btn-group+.cm__btn-group {
  margin-bottom: 0;
  margin-right: .375rem
}

#cc-main .cm--bar:not(.cm--inline) .cm__btn-group--uneven,#cc-main .cm--wide .cm__btn-group--uneven {
  display: flex;
  flex: 1;
  justify-content: space-between
}

#cc-main .cm--bar:not(.cm--inline).cm--flip .cm__btn-group--uneven,#cc-main .cm--wide.cm--flip .cm__btn-group--uneven {
  flex-direction: row-reverse
}

#cc-main .cm__btn {
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  border-radius: var(--cc-btn-border-radius);
  color: var(--cc-btn-primary-color);
  font-size: .82em;
  font-weight: 600;
  min-height: 42px;
  padding: .5em 1em;
  text-align: center
}

#cc-main .cm__btn:hover {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
  color: var(--cc-btn-primary-hover-color)
}

#cc-main .cm__btn--secondary {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color)
}

#cc-main .cm__btn--secondary:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color)
}

#cc-main .cm__btn--close {
  border-radius: 0;
  border-bottom-left-radius: var(--cc-btn-border-radius);
  border-right: none;
  border-top: none;
  display: none;
  font-size: 1em;
  height: 42px;
  min-width: auto!important;
  overflow: hidden;
  padding: 0!important;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px
}

#cc-main .cm__btn--close svg {
  stroke: var(--cc-btn-primary-color);
  transform: scale(.5);
  transition: stroke .15s ease
}

#cc-main .cm__btn--close:hover svg {
  stroke: var(--cc-btn-primary-hover-color)
}

#cc-main .cm__btn--close.cm__btn--secondary svg {
  stroke: var(--cc-btn-secondary-color)
}

#cc-main .cm__btn--close.cm__btn--secondary:hover svg {
  stroke: var(--cc-btn-secondary-hover-color)
}

#cc-main .cm__btn--close+.cm__texts .cm__title {
  padding-right: 3rem
}

#cc-main .cm--inline .cm__btn-group {
  grid-auto-flow: column
}

#cc-main .cm__footer {
  background: var(--cc-footer-bg);
  border-top: 1px solid var(--cc-footer-border-color);
  color: var(--cc-footer-color);
  padding: .4em 0 .5em
}

#cc-main .cm__links {
  display: flex;
  flex-direction: row;
  padding-bottom: 0;
  padding-top: 0
}

#cc-main .cm__link-group {
  display: flex;
  flex-direction: row;
  font-size: .8em;
  width: 100%
}

#cc-main .cm__link-group>*+* {
  margin-left: 1.3rem
}

#cc-main .cm--flip .cm__btn:last-child {
  grid-row: 1
}

#cc-main .cm--inline.cm--flip .cm__btn:last-child {
  grid-column: 1
}

#cc-main .cm--box .cm__btn--close {
  display: block
}

#cc-main .cm--box.cm--flip .cm__btns {
  flex-direction: column-reverse
}

#cc-main .cm--box.cm--wide {
  max-width: 36em
}

#cc-main .cm--box.cm--wide .cm__btns {
  flex-direction: row;
  justify-content: space-between
}

#cc-main .cm--box.cm--wide .cm__btn-group {
  grid-auto-flow: column
}

#cc-main .cm--box.cm--wide .cm__btn {
  min-width: 120px;
  padding-left: 1.8em;
  padding-right: 1.8em
}

#cc-main .cm--box.cm--wide.cm--flip .cm__btns {
  flex-direction: row-reverse
}

#cc-main .cm--box.cm--wide.cm--flip .cm__btn:last-child {
  grid-column: 1
}

#cc-main .cm--cloud {
  max-width: 54em;
  width: unset
}

#cc-main .cm--cloud .cm__body {
  flex-direction: row
}

#cc-main .cm--cloud .cm__texts {
  flex: 1
}

#cc-main .cm--cloud .cm__desc {
  max-height: 9.4em
}

#cc-main .cm--cloud .cm__btns {
  border-left: 1px solid var(--cc-separator-border-color);
  border-top: none;
  max-width: 23em
}

#cc-main .cm--cloud .cm__btn-group {
  flex-direction: column
}

#cc-main .cm--cloud .cm__btn {
  min-width: 19em
}

#cc-main .cm--cloud.cm--flip .cm__btn-group,#cc-main .cm--cloud.cm--flip .cm__btns {
  flex-direction: column-reverse
}

#cc-main .cm--cloud.cm--inline .cm__btn-group {
  flex-direction: row
}

#cc-main .cm--cloud.cm--inline .cm__btn {
  min-width: 10em
}

#cc-main .cm--cloud.cm--inline.cm--flip .cm__btn-group {
  flex-direction: row-reverse
}

#cc-main .cm--bar {
  border-radius: 0;
  left: 0;
  margin: 0;
  max-width: unset;
  opacity: 1;
  right: 0;
  transform: translateY(0);
  width: 100vw;
  --cc-modal-transition-duration: .35s
}

#cc-main .cm--bar.cm--top {
  top: 0;
  transform: translateY(-100%)
}

#cc-main .cm--bar.cm--bottom {
  bottom: 0;
  transform: translateY(100%)
}

#cc-main .cm--bar .cm__body,#cc-main .cm--bar .cm__links {
  margin: 0 auto;
  max-width: 55em;
  width: 100%
}

#cc-main .cm--bar .cm__body {
  padding: .5em 0 .9em
}

#cc-main .cm--bar .cm__btns {
  border-top: none;
  flex-direction: row;
  justify-content: space-between
}

#cc-main .cm--bar .cm__btn-group {
  grid-auto-flow: column
}

#cc-main .cm--bar:not(.cm--inline) .cm__btn+.cm__btn,#cc-main .cm--bar:not(.cm--inline) .cm__btn-group+.cm__btn-group {
  margin-left: .375rem;
  margin-top: 0
}

#cc-main .cm--bar .cm__btn {
  min-width: 120px;
  padding-left: 2em;
  padding-right: 2em
}

#cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn+.cm__btn,#cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn-group+.cm__btn-group {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: .375rem
}

#cc-main .cm--bar.cm--flip .cm__btns {
  flex-direction: row-reverse
}

#cc-main .cm--bar.cm--flip .cm__btn:last-child {
  grid-column: 1
}

#cc-main .cm--bar.cm--inline .cm__body,#cc-main .cm--bar.cm--inline .cm__links {
  max-width: 74em
}

#cc-main .cm--bar.cm--inline .cm__body {
  flex-direction: row;
  padding: 0
}

#cc-main .cm--bar.cm--inline .cm__btns {
  flex-direction: column;
  justify-content: center;
  max-width: 23em
}

#cc-main .cm--bar.cm--inline.cm--flip .cm__btns {
  flex-direction: column-reverse
}

#cc-main .cc--anim .cm,#cc-main .cc--anim.cm-wrapper:before {
  transition: opacity var(--cc-modal-transition-duration) ease,visibility var(--cc-modal-transition-duration) ease,transform var(--cc-modal-transition-duration) ease
}

#cc-main .cc--anim .cm__btn,#cc-main .cc--anim .cm__close {
  transition: background-color .15s ease,border-color .15s ease,color .15s ease
}

.disable--interaction #cc-main .cm-wrapper:before {
  background: var(--cc-overlay-bg);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 0
}

.show--consent #cc-main .cc--anim .cm {
  opacity: 1;
  transform: translateY(0);
  visibility: visible!important
}

.show--consent #cc-main .cc--anim .cm--middle {
  transform: translateY(-50%)
}

.show--consent #cc-main .cc--anim .cm--bar {
  transform: translateY(0)
}

.show--consent #cc-main .cc--anim.cm-wrapper:before {
  opacity: 1;
  visibility: visible
}

#cc-main.cc--rtl .cm__btn--close {
  border-bottom-left-radius: unset;
  border-bottom-right-radius: var(--cc-btn-border-radius);
  left: 0;
  right: unset
}

#cc-main.cc--rtl .cm__btn--close+.cm__texts .cm__title {
  padding-left: 3rem!important;
  padding-right: 1.3rem
}

#cc-main.cc--rtl .cm--inline .cm__btn+.cm__btn {
  margin-left: 0;
  margin-right: .375rem
}

#cc-main.cc--rtl .cm--inline.cm--flip .cm__btn+.cm__btn {
  margin-left: .375rem;
  margin-right: 0
}

#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn+.cm__btn,#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn-group+.cm__btn-group,#cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn+.cm__btn,#cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn-group+.cm__btn-group {
  margin-left: 0;
  margin-right: .375rem
}

#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar.cm--flip .cm__btn+.cm__btn,#cc-main.cc--rtl .cm:not(.cm--inline).cm--wide.cm--flip .cm__btn+.cm__btn {
  margin-left: .375rem;
  margin-right: 0
}

#cc-main.cc--rtl .cm__link-group>*+* {
  margin-left: 0;
  margin-right: 1.3rem
}

@media screen and (max-width: 640px) {
  #cc-main {
      --cc-modal-margin:.5em
  }

  #cc-main .cm {
      max-width: none!important;
      width: auto!important
  }

  #cc-main .cm__body {
      flex-direction: column!important;
      padding: 0!important
  }

  #cc-main .cm__btns,#cc-main .cm__desc,#cc-main .cm__links,#cc-main .cm__title {
      padding-left: 1.1rem!important;
      padding-right: 1.1rem!important
  }

  #cc-main .cm__btns {
      border-left: none!important;
      border-top: 1px solid var(--cc-separator-border-color)!important;
      flex-direction: column!important;
      max-width: none!important;
      min-width: auto!important
  }

  #cc-main .cm__btn+.cm__btn,#cc-main .cm__btn-group+.cm__btn-group {
      margin: .375rem 0 0!important
  }

  #cc-main .cm--flip .cm__btn+.cm__btn,#cc-main .cm--flip .cm__btn-group+.cm__btn-group {
      margin-bottom: .375rem!important;
      margin-top: 0!important
  }

  #cc-main .cm__btn-group {
      display: flex!important;
      flex-direction: column!important;
      min-width: auto!important
  }

  #cc-main .cm__btn {
      flex: auto!important
  }

  #cc-main .cm__link-group {
      justify-content: center!important
  }

  #cc-main .cm--flip .cm__btn-group,#cc-main .cm--flip .cm__btns {
      flex-direction: column-reverse!important
  }
}

#cc-main .pm-wrapper {
  position: relative;
  z-index: 2
}

#cc-main .pm {
  background: var(--cc-bg);
  border-radius: var(--cc-modal-border-radius);
  box-shadow: 0 .625em 1.875em rgba(0,0,2,.3);
  display: flex;
  flex-direction: column;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  visibility: hidden;
  width: 100%;
  width: unset;
  z-index: 1
}

#cc-main svg {
  fill: none;
  width: 100%
}

#cc-main .pm__body,#cc-main .pm__footer,#cc-main .pm__header {
  padding: 1em 1.4em
}

#cc-main .pm__header {
  align-items: center;
  border-bottom: 1px solid var(--cc-separator-border-color);
  display: flex;
  justify-content: space-between
}

#cc-main .pm__title {
  align-items: center;
  display: flex;
  flex: 1;
  font-weight: 600;
  margin-right: 2em
}

#cc-main .pm__close-btn {
  background: var(--cc-btn-secondary-bg);
  border: 1px solid var(--cc-btn-secondary-border-color);
  border-radius: var(--cc-btn-border-radius);
  height: 40px;
  position: relative;
  transition: all .15s ease;
  width: 40px
}

#cc-main .pm__close-btn span {
  display: flex;
  height: 100%;
  width: 100%
}

#cc-main .pm__close-btn svg {
  stroke: var(--cc-btn-secondary-color);
  transform: scale(.5);
  transition: stroke .15s ease
}

#cc-main .pm__close-btn:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color)
}

#cc-main .pm__close-btn:hover svg {
  stroke: var(--cc-btn-secondary-hover-color)
}

#cc-main .pm__body {
  flex: 1;
  overflow-y: auto;
  overflow-y: overlay
}

#cc-main .pm__section,#cc-main .pm__section--toggle {
  border-radius: var(--cc-btn-border-radius);
  display: flex;
  flex-direction: column;
  margin-bottom: .5em
}

#cc-main .pm__section--toggle .pm__section-desc-wrapper {
  border: 1px solid var(--cc-cookie-category-block-border);
  border-radius: var(--cc-btn-border-radius);
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: none;
  margin-top: 0!important;
  overflow: hidden
}

#cc-main .pm__section {
  border: 1px solid var(--cc-separator-border-color);
  padding: 1em;
  transition: background-color .25s ease,border-color .25s ease
}

#cc-main .pm__section:first-child {
  border: none;
  margin-bottom: 2em;
  margin-top: 0;
  padding: 0;
  transition: none
}

#cc-main .pm__section:not(:first-child):hover {
  background: var(--cc-cookie-category-block-bg);
  border-color: var(--cc-cookie-category-block-border)
}

#cc-main .pm__section-toggles+.pm__section {
  margin-top: 2em
}

#cc-main .pm__section--toggle {
  background: var(--cc-cookie-category-block-bg);
  border-top: none;
  margin-bottom: .375rem
}

#cc-main .pm__section--toggle .pm__section-title {
  align-items: center;
  background: var(--cc-cookie-category-block-bg);
  border: 1px solid var(--cc-cookie-category-block-border);
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 1.1em 5.4em 1.1em 1.2em;
  position: relative;
  transition: background-color .25s ease,border-color .25s ease;
  width: 100%
}

#cc-main .pm__section--toggle .pm__section-title:hover {
  background: var(--cc-cookie-category-block-hover-bg);
  border-color: var(--cc-cookie-category-block-hover-border)
}

#cc-main .pm__section--toggle .pm__section-desc {
  margin-top: 0;
  padding: 1em
}

#cc-main .pm__section--toggle.is-expanded {
  --cc-cookie-category-block-bg: var(--cc-cookie-category-expanded-block-bg);
  --cc-cookie-category-block-border: var(--cc-cookie-category-expanded-block-hover-bg)
}

#cc-main .pm__section--toggle.is-expanded .pm__section-title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

#cc-main .pm__section--toggle.is-expanded .pm__section-arrow svg {
  transform: scale(.5) rotate(180deg)
}

#cc-main .pm__section--toggle.is-expanded .pm__section-desc-wrapper {
  display: flex
}

#cc-main .pm__section--expandable .pm__section-title {
  cursor: pointer;
  padding-left: 3.4em
}

#cc-main .pm__section--expandable .pm__section-arrow {
  background: var(--cc-toggle-readonly-bg);
  border-radius: 100%;
  display: flex;
  height: 20px;
  justify-content: center;
  left: 18px;
  pointer-events: none;
  position: absolute;
  width: 20px
}

#cc-main .pm__section--expandable .pm__section-arrow svg {
  stroke: var(--cc-btn-secondary-color);
  transform: scale(.5)
}

#cc-main .pm__section-title-wrapper {
  align-items: center;
  display: flex;
  position: relative
}

#cc-main .pm__section-title-wrapper+.pm__section-desc-wrapper {
  margin-top: .85em
}

#cc-main .pm__section-title {
  border-radius: var(--cc-btn-border-radius);
  font-size: .95em;
  font-weight: 600
}

#cc-main .pm__badge {
  align-items: center;
  background: var(--cc-btn-secondary-bg);
  border-radius: 5em;
  color: var(--cc-secondary-color);
  display: flex;
  flex: none;
  font-size: .8em;
  font-weight: 600;
  height: 23px;
  justify-content: center;
  margin-left: 1em;
  min-width: 23px;
  overflow: hidden;
  padding: 0 .6em 1px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: auto
}

#cc-main .pm__service-counter {
  background: var(--cc-btn-primary-bg);
  color: var(--cc-btn-primary-color);
  padding: 0;
  width: 23px
}

#cc-main .pm__service-counter[data-counterlabel] {
  padding: 0 .6em 1px;
  width: auto
}

#cc-main .section__toggle,#cc-main .section__toggle-wrapper,#cc-main .toggle__icon,#cc-main .toggle__label {
  border-radius: var(--cc-pm-toggle-border-radius);
  height: 23px;
  transform: translateZ(0);
  width: 50px
}

#cc-main .section__toggle-wrapper {
  cursor: pointer;
  position: absolute;
  right: 18px;
  z-index: 1
}

#cc-main .toggle-service {
  height: 19px;
  position: relative;
  right: 0;
  width: 42px
}

#cc-main .toggle-service .section__toggle,#cc-main .toggle-service .toggle__icon,#cc-main .toggle-service .toggle__label {
  height: 19px;
  width: 42px
}

#cc-main .toggle-service .toggle__icon {
  position: relative
}

#cc-main .toggle-service .toggle__icon-circle {
  height: 19px;
  width: 19px
}

#cc-main .toggle-service .section__toggle:checked~.toggle__icon .toggle__icon-circle {
  transform: translateX(23px)
}

#cc-main .pm__section--toggle:nth-child(2) .section__toggle-wrapper:after {
  display: none!important
}

#cc-main .section__toggle {
  border: 0;
  cursor: pointer;
  display: block;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0
}

#cc-main .section__toggle:disabled {
  cursor: not-allowed
}

#cc-main .toggle__icon {
  background: var(--cc-toggle-off-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-off-bg);
  display: flex;
  flex-direction: row;
  pointer-events: none;
  position: absolute;
  transition: all .25s ease
}

#cc-main .toggle__icon-circle {
  background: var(--cc-toggle-off-knob-bg);
  border: none;
  border-radius: var(--cc-pm-toggle-border-radius);
  box-shadow: 0 1px 2px rgba(24,32,3,.36);
  display: block;
  height: 23px;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform .25s ease,background-color .25s ease;
  width: 23px
}

#cc-main .toggle__icon-off,#cc-main .toggle__icon-on {
  height: 100%;
  position: absolute;
  transition: opacity .15s ease;
  width: 100%
}

#cc-main .toggle__icon-on {
  opacity: 0;
  transform: rotate(45deg)
}

#cc-main .toggle__icon-on svg {
  stroke: var(--cc-toggle-on-bg);
  transform: scale(.55) rotate(-45deg)
}

#cc-main .toggle__icon-off {
  opacity: 1
}

#cc-main .toggle__icon-off svg {
  stroke: var(--cc-toggle-off-bg);
  transform: scale(.55)
}

#cc-main .section__toggle:checked~.toggle__icon {
  background: var(--cc-toggle-on-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-on-bg)
}

#cc-main .section__toggle:checked~.toggle__icon .toggle__icon-circle {
  background-color: var(--cc-toggle-on-knob-bg);
  transform: translateX(27px)
}

#cc-main .section__toggle:checked~.toggle__icon .toggle__icon-on {
  opacity: 1
}

#cc-main .section__toggle:checked~.toggle__icon .toggle__icon-off {
  opacity: 0
}

#cc-main .section__toggle:checked:disabled~.toggle__icon {
  background: var(--cc-toggle-readonly-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-readonly-bg)
}

#cc-main .section__toggle:checked:disabled~.toggle__icon .toggle__icon-circle {
  background: var(--cc-toggle-readonly-knob-bg);
  box-shadow: none
}

#cc-main .section__toggle:checked:disabled~.toggle__icon svg {
  stroke: var(--cc-toggle-readonly-knob-icon-color)
}

#cc-main .toggle__label {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1
}

#cc-main .pm__section-desc-wrapper {
  color: var(--cc-secondary-color);
  display: flex;
  flex-direction: column;
  font-size: .9em
}

#cc-main .pm__section-desc-wrapper>:not(:last-child) {
  border-bottom: 1px solid var(--cc-cookie-category-block-border)
}

#cc-main .pm__section-services {
  display: flex;
  flex-direction: column
}

#cc-main .pm__service {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: .4em 1.2em;
  position: relative;
  transition: background-color .15s ease
}

#cc-main .pm__service:hover {
  background-color: var(--cc-cookie-category-block-hover-bg)
}

#cc-main .pm__service-header {
  align-items: center;
  display: flex;
  margin-right: 1em;
  width: 100%
}

#cc-main .pm__service-icon {
  border: 2px solid;
  border-radius: 100%;
  height: 8px;
  margin-left: 6px;
  margin-right: 20px;
  margin-top: 1px;
  min-width: 8px
}

#cc-main .pm__service-title {
  font-size: .95em;
  width: 100%;
  word-break: break-word
}

#cc-main .pm__section-desc {
  line-height: 1.5em
}

#cc-main .pm__section-table {
  border-collapse: collapse;
  font-size: .9em;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%
}

#cc-main .pm__table-caption {
  text-align: left
}

#cc-main .pm__table-caption,#cc-main .pm__table-head>tr {
  border-bottom: 1px dashed var(--cc-separator-border-color);
  color: var(--cc-primary-color);
  font-weight: 600
}

#cc-main .pm__table-tr {
  transition: background-color .15s ease
}

#cc-main .pm__table-tr:hover {
  background: var(--cc-cookie-category-block-hover-bg)
}

#cc-main .pm__table-caption,#cc-main .pm__table-td,#cc-main .pm__table-th {
  padding: .625em .625em .625em 1.2em;
  vertical-align: top
}

#cc-main .pm__footer {
  border-top: 1px solid var(--cc-separator-border-color);
  display: flex;
  justify-content: space-between
}

#cc-main .pm__btn-group {
  display: flex
}

#cc-main .pm__btn+.pm__btn,#cc-main .pm__btn-group+.pm__btn-group {
  margin-left: .375rem
}

#cc-main .pm--flip .pm__btn+.pm__btn,#cc-main .pm--flip .pm__btn-group+.pm__btn-group {
  margin-left: 0;
  margin-right: .375rem
}

#cc-main .pm__btn {
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  border-radius: var(--cc-btn-border-radius);
  color: var(--cc-btn-primary-color);
  flex: auto;
  font-size: .82em;
  font-weight: 600;
  min-height: 42px;
  min-width: 110px;
  padding: .5em 1.5em;
  text-align: center;
  transition: background-color .15s ease,border-color .15s ease,color .15s ease
}

#cc-main .pm__btn:hover {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
  color: var(--cc-btn-primary-hover-color)
}

#cc-main .pm__btn--secondary {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color)
}

#cc-main .pm__btn--secondary:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color)
}

#cc-main .pm--box {
  height: calc(100% - 2em);
  left: var(--cc-modal-margin);
  margin: 0 auto;
  max-height: 37.5em;
  max-width: 43em;
  right: var(--cc-modal-margin);
  top: 50%;
  transform: translateY(calc(-50% + 1.6em))
}

#cc-main .pm--box.pm--flip .pm__btn-group,#cc-main .pm--box.pm--flip .pm__footer {
  flex-direction: row-reverse
}

#cc-main .pm--bar {
  border-radius: 0;
  bottom: 0;
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: 29em;
  opacity: 1;
  top: 0;
  width: 100%;
  --cc-modal-transition-duration: .35s
}

#cc-main .pm--bar .pm__section-table,#cc-main .pm--bar .pm__table-body,#cc-main .pm--bar .pm__table-td,#cc-main .pm--bar .pm__table-th,#cc-main .pm--bar .pm__table-tr {
  display: block
}

#cc-main .pm--bar .pm__table-head {
  display: none
}

#cc-main .pm--bar .pm__table-caption {
  display: block
}

#cc-main .pm--bar .pm__table-tr:not(:last-child) {
  border-bottom: 1px solid var(--cc-separator-border-color)
}

#cc-main .pm--bar .pm__table-td {
  display: flex;
  justify-content: space-between
}

#cc-main .pm--bar .pm__table-td:before {
  color: var(--cc-primary-color);
  content: attr(data-column);
  flex: 1;
  font-weight: 600;
  min-width: 100px;
  overflow: hidden;
  padding-right: 2em;
  text-overflow: ellipsis
}

#cc-main .pm--bar .pm__table-td>div {
  flex: 3
}

#cc-main .pm--bar:not(.pm--wide) .pm__body,#cc-main .pm--bar:not(.pm--wide) .pm__footer,#cc-main .pm--bar:not(.pm--wide) .pm__header {
  padding: 1em 1.3em
}

#cc-main .pm--bar:not(.pm--wide) .pm__btn-group,#cc-main .pm--bar:not(.pm--wide) .pm__footer {
  flex-direction: column
}

#cc-main .pm--bar:not(.pm--wide) .pm__btn+.pm__btn,#cc-main .pm--bar:not(.pm--wide) .pm__btn-group+.pm__btn-group {
  margin: .375rem 0 0
}

#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group,#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__footer {
  flex-direction: column-reverse
}

#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn+.pm__btn,#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group+.pm__btn-group {
  margin-bottom: .375rem;
  margin-top: 0
}

#cc-main .pm--bar:not(.pm--wide) .pm__badge {
  display: none
}

#cc-main .pm--bar.pm--left {
  left: 0;
  transform: translateX(-100%)
}

#cc-main .pm--bar.pm--right {
  right: 0;
  transform: translateX(100%)
}

#cc-main .pm--bar.pm--wide {
  max-width: 35em
}

#cc-main .pm--bar.pm--wide .pm__body,#cc-main .pm--bar.pm--wide .pm__footer,#cc-main .pm--bar.pm--wide .pm__header {
  padding: 1em 1.4em
}

#cc-main .pm--bar.pm--wide.pm--flip .pm__btn-group,#cc-main .pm--bar.pm--wide.pm--flip .pm__footer {
  flex-direction: row-reverse
}

#cc-main .pm-overlay {
  background: var(--cc-overlay-bg);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1
}

#cc-main .cc--anim .pm,#cc-main .cc--anim .pm-overlay {
  transition: opacity var(--cc-modal-transition-duration) ease,visibility var(--cc-modal-transition-duration) ease,transform var(--cc-modal-transition-duration) ease
}

.show--preferences #cc-main .cc--anim .pm {
  opacity: 1;
  visibility: visible!important
}

.show--preferences #cc-main .cc--anim .pm--box {
  transform: translateY(-50%)
}

.show--preferences #cc-main .cc--anim .pm--bar {
  transform: translateX(0)
}

.show--preferences #cc-main .cc--anim .pm-overlay {
  opacity: 1;
  visibility: visible
}

#cc-main.cc--rtl .pm__service-header {
  margin-left: 1em;
  margin-right: 0
}

#cc-main.cc--rtl .pm__section-arrow {
  left: unset;
  right: 18px
}

#cc-main.cc--rtl .section__toggle-wrapper {
  left: 18px;
  right: unset;
  transform-origin: left
}

#cc-main.cc--rtl .toggle-service {
  left: 0
}

#cc-main.cc--rtl .pm__service-icon {
  margin-left: 20px;
  margin-right: 5px
}

#cc-main.cc--rtl .pm__section--toggle .pm__section-title {
  padding-left: 5.4em;
  padding-right: 1.2em
}

#cc-main.cc--rtl .pm__section--expandable .pm__section-title {
  padding-right: 3.4em
}

#cc-main.cc--rtl .pm__badge {
  margin-left: unset;
  margin-right: 1em
}

#cc-main.cc--rtl .toggle__icon-circle {
  transform: translateX(27px)
}

#cc-main.cc--rtl .toggle-service .toggle__icon-circle {
  transform: translateX(23px)
}

#cc-main.cc--rtl .section__toggle:checked~.toggle__icon .toggle__icon-circle {
  transform: translateX(0)
}

#cc-main.cc--rtl .pm__table-td,#cc-main.cc--rtl .pm__table-th {
  padding-left: unset;
  padding-right: 1.2em;
  text-align: right
}

#cc-main.cc--rtl .pm__table-td {
  padding-left: unset;
  padding-right: 1.2em
}

#cc-main.cc--rtl .pm__table-td:before {
  padding-left: 2em;
  padding-right: unset
}

#cc-main.cc--rtl .pm__btn+.pm__btn,#cc-main.cc--rtl .pm__btn-group+.pm__btn-group {
  margin-left: 0;
  margin-right: .375rem
}

#cc-main.cc--rtl .pm--flip .pm__btn+.pm__btn,#cc-main.cc--rtl .pm--flip .pm__btn-group+.pm__btn-group {
  margin-left: .375rem;
  margin-right: 0
}

#cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn+.pm__btn,#cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn-group+.pm__btn-group {
  margin-left: 0
}

@media screen and (max-width: 640px) {
  #cc-main .pm {
      border-radius:0;
      bottom: 0;
      height: auto;
      left: 0;
      max-height: 100%;
      max-width: none!important;
      right: 0;
      top: 0;
      transform: translateY(1.6em)
  }

  #cc-main .pm__body,#cc-main .pm__footer,#cc-main .pm__header {
      padding: .9em!important
  }

  #cc-main .pm__badge {
      display: none
  }

  #cc-main .pm__section-table,#cc-main .pm__table-body,#cc-main .pm__table-caption,#cc-main .pm__table-td,#cc-main .pm__table-th,#cc-main .pm__table-tr {
      display: block
  }

  #cc-main .pm__table-head {
      display: none
  }

  #cc-main .pm__table-tr:not(:last-child) {
      border-bottom: 1px solid var(--cc-separator-border-color)
  }

  #cc-main .pm__table-td {
      display: flex;
      justify-content: space-between
  }

  #cc-main .pm__table-td:before {
      color: var(--cc-primary-color);
      content: attr(data-column);
      flex: 1;
      font-weight: 600;
      min-width: 100px;
      overflow: hidden;
      padding-right: 2em;
      text-overflow: ellipsis
  }

  #cc-main .pm__table-td>div {
      flex: 3
  }

  #cc-main .pm__btn-group,#cc-main .pm__footer {
      flex-direction: column!important
  }

  #cc-main .pm__btn-group {
      display: flex!important
  }

  #cc-main .pm__btn+.pm__btn,#cc-main .pm__btn-group+.pm__btn-group {
      margin: .375rem 0 0!important
  }

  #cc-main .pm--flip .pm__btn+.pm__btn,#cc-main .pm--flip .pm__btn-group+.pm__btn-group {
      margin-bottom: .375rem!important;
      margin-top: 0!important
  }

  #cc-main .pm--flip .pm__btn-group,#cc-main .pm--flip .pm__footer {
      flex-direction: column-reverse!important
  }

  .show--preferences #cc-main .cc--anim .pm {
      transform: translateY(0)!important
  }
}
/*

recloud color :  #0F766E
tailwind bg-teal-600 : #0d9488
  #0d9488

*/

/* custom tailwind overwrite */
:root {
  --recloud-teal-color: #0F766E; /* Define the variable */
}

.uppercase {
  text-transform: none !important;
}



@media (min-width: 768px) {
  .md\:h-14 {
      height: 2.8rem !important;
  }
}

td.py-3 {
  padding-top: 0.55rem !important;
  padding-bottom: 0.55rem !important;
}

/* */

.uuid-button {
  color: rgb(100, 100, 100);
  background: rgb(250, 250, 250);
  font-family: Menlo, Consolas, monospace;
  font-size: 12px;
  border: 1px solid rgb(120,120,120);
}

.uuid-copy-button {
  border: 1px solid #019285;
}

table tr td[data-field-id="uuid"] {
  width: 40px;
}
table tr td[data-field-id="account"] {
  width: 40px;
}

div[data-association="commentable"]{
  display: none;
}


.field_with_errors input {
  border: 1px solid red;
  width: 100%;
}

div.field_with_errors {
  width: 100%;
}

.tox-promotion,.tox-statusbar__branding {
  display: none;
}

.modal-container .modal-body {
  max-height: 90%;
}


/* TRix */


/* Base status badge for both OK and Error */
.textarea-status::after {
  content: attr(data-status); /* Dynamically set content using the data attribute */
  position: absolute;
  top: -22px;
  right: 12px;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  width: 85px;
  height: 30px;
  margin-top: 32px;
  text-align: center;
}

/* OK status (green background) */
.error-status::after {
  background-color: red; /* Tailwind's green-500 */
  border: 2px solid red;
  content: "Fehlerhaft";
}

/* Error status (red background) */
.ok-status::after {
  background-color: #10766e; /* Tailwind's red-500 */
  border: 2px solid #10766e;
  content: "OK";
}

.error-status {
  border: 2px solid red;
}

.ok-status {
  border: 2px solid #10766e;
}


trix-editor.trix-content{
  height: 350px;
  /* border: 2px solid #10766e; */
  border-radius: 6px;
}


.trix-button--icon-strike,
.trix-button--icon-link,
.trix-button--icon-attach,
.trix-button--icon-quote,
.trix-button--icon-code,
.trix-button--icon-decrease-nesting-level,
.trix-button--icon-increase-nesting-level,

.trix-button-group--file-tools,
.trix-button-group--history-tools {
  display: none !important;
}


label[for="comment_body"] {
  display: none;
}

.comment_article {
  position: relative;
  border-top: 1px solid lightgray;

  transition: box-shadow 0.3s ease;
}


.customer_comment{
  background-color: #f6ffc7;
}

.__comment_article:hover {
  border: 1px solid #10766e;
  box-shadow: 0 0 10px 2px rgba(16, 118, 110, 0.5); /* Creates a blurred border effect */
}

.comment_article .ml-auto .controll-buttons {
  display: none;
}

.comment_article:hover .ml-auto .controll-buttons{
  display: flex;
}

@keyframes highlight {
  0% { background-color: #10766e; }
  100% { background-color: transparent; }
}

.highlight {
  animation: highlight 2s ease-out;
}


.inline-comment-textarea{
  max-height: 280px;
  height: 102px;
  display: block;
  width: 100%;
  min-height: 102px;
  line-height: 20px;
  resize: vertical;
  /* Focus state */
  &:focus {

  }

}

/* TODO Patternlock move to some where else */


svg.patternlock g.lock-lines line {
  stroke-width: 1.5;
  stroke: black;
  opacity: 0.5;
}

svg.patternlock g.lock-dots circle {
  stroke: transparent;
  fill: black;
  stroke-width: 13.5;
}

svg.patternlock g.lock-actives circle {
  fill: black;
  opacity: .2;
  animation: lock-activate-dot .15s 0s ease 1;
  transform-origin: center;
}

svg.patternlock g.lock-lines line {
  stroke-width: 1.5;
  stroke-linecap: round;
}

svg.patternlock.success g.lock-actives circle {
  fill: green;
}

svg.patternlock.error g.lock-actives circle {
  fill: red;
}



@keyframes lock-activate-dot {
  0% {
      transform: scale(0);
  }
  75% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1.0);
  }
}


.lock-actives circle:first-of-type {
  fill: blue !important; /* Optional: change the color of the first circle */
  position: relative !important;
}

.lock-actives circle:last-of-type {
  fill: rgb(255, 0, 0) !important; /* Optional: change the color of the first circle */
  position: relative !important;
}


.fill-green-500 {
  fill: #22c55e;
}

.fill-blue-400 {
  fill: #4299e1;
}

.fill-orange-400 {
  fill: #ed8936;
}












/* Calendar css   */


.fc-icon-date-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  background-color: #fff;
  background-image: url(/icons/calendar-month.png);
  background-size: cover; /* Ensures the image covers the entire area */
  background-position: center; /* Centers the image */
}
/*
.fc-icon-date-icon:before {
  content: '';
  display: block;
  width: 100%;
  height: 6px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.fc-icon-date-icon:after {
  content: '15'; /* You can change this to any date
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: bold;
  color: #000;
} */


.fc-icon-add-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #000;
  border-radius: 50%;
  position: relative;
  background-color: #fff;
}

.fc-icon-add-icon:before,
.fc-icon-add-icon:after {
  content: '';
  position: absolute;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fc-icon-add-icon:before {
  width: 12px;
  height: 2px;
}

.fc-icon-add-icon:after {
  width: 2px;
  height: 12px;
}

.fc .fc-non-business {
  background-color: #f5f5f5; /* Base background color */
  background-image: repeating-linear-gradient(
    45deg,            /* Angle of the stripes */
    rgba(0, 0, 0, 0.05), /* Color of the stripe */
    rgba(0, 0, 0, 0.05) 5px, /* Stripe width */
    transparent 6px,    /* Gap between stripes */
    transparent 10px     /* Distance before repeating */
  );
  background-size: 1000px 1000px; /* Size of each "tile" */

}



/* app/assets/stylesheets/custom_avo.css */
.horizontal-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Adjust the gap between fields as needed */
}

.horizontal-fields .field {
  flex: 1; /* Make each field take equal space */
  min-width: 200px; /* Ensure a minimum width */
}


.horizontal-time-fields {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.embedded-issue-calendar {
  height: 900px;
}

.fc .fc-timegrid-slot {
  height: 40px; /* Adjust this value as needed */
}

.calendar-entry {
  border: 1px solid #1ed145;
  background-color: #d1edbc;
}

.confirmed-event {
  border-top: 2px solid green !important;
  font-family: "Nunito Sans","Open Sans",Arial,sans-serif;
  /* font-size: 12px; */
  cursor: pointer;
}


.unconfirmed-event {
  background-color: #d1edbc !important;
  background-image:
    linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0),
    linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0);
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
}

.canceld-event {

  background-color: #ffd9d9 !important;
  background-image:
    linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0),
    linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0);
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;

  border: 1px solid red !important;
  font-family: "Nunito Sans","Open Sans",Arial,sans-serif;
  /* font-size: 12px; */
  font-style: italic;
  color: rgb(157, 156, 156);
  cursor: pointer;
  /* cursor: default !important; */
}



.draft-event {
  background-color: #73aad9 !important;
  border: 2px dashed black;
}

.pre-selected-range {
  background-color: #d1edbc !important;
  border: 1px solid darkgreen;
}


#calendar_entry_color {
  width: 100px;
}


.event-start-label,
.event-end-label {
  position: absolute;
  font-size: 10px;
  font-weight: bold;
}

.event-start-label {
  top: 5px;
  left: 5px;
}

.event-end-label {
  bottom: 5px;
  left: 5px;
}


.fc-event-main {
  overflow: auto;
}
.event-label {
  position: absolute;
  font-size: 9px;
  font-weight: bold;
  background-color: #fff;
  font-family: "Nunito Sans","Open Sans",Arial,sans-serif;
  color: #2d2d2d;
  z-index: 1000;
  pointer-events: none;
}

.event-start-label {
  top: -14px;
  left: 2px;
}

.event-end-label {
  bottom: -14px;
  left: 2px;
}


.fc table {
  font-family: "Nunito Sans","Open Sans",Arial,sans-serif;
  font-size: 12px;
   color: rgb(62, 74, 84);
}

.underline-on-hover {
  /* text-decoration: underline; */
 }


 #calendar {
  max-height: 85vh;
  overflow-y: auto;
}

.calendar-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.55rem !important;
  min-width: 20px;
}

.fc-button.fc-prev-button, .fc-button.fc-next-button, .fc-button.fc-today-button, .fc-button.fc-timeGridDay-button, .fc-button.fc-timeGridWeek-button,
.fc-button.fc-dayGridThreeDays-button,.fc-button.fc-listWeek-button, .fc-button.fc-selectDate-button {
    /* Add styles equivalent to all the classes */
    height: 30px;
    display: inline-flex;
    flex-grow: 0;
    align-items: center;
    font-weight: 600; /* Equivalent to font-semibold */
    line-height: 1.5; /* Equivalent to leading-6 */
    fill: currentColor;
    white-space: nowrap;
    transition: all 0.1s ease; /* Equivalent to transition duration-100 */
    cursor: pointer;
    border: 1px solid; /* Equivalent to border */
    justify-content: center;
    outline: none;
    border-radius: 0.25rem; /* Equivalent to rounded */
    background-color: white !important; /* Equivalent to bg-white */
    color: #3182ce !important; /* Equivalent to text-primary-500 */
    border-color: #3182ce !important; /* Equivalent to border-primary-500 */
    padding: 0.25rem 0.75rem; /* Equivalent to px-3 py-1 */
    font-size: 0.875rem; /* Equivalent to text-sm */

    /* Hover and active states */
    &:hover {
      background-color: #ebf8ff; /* Equivalent to hover:bg-primary-100 */
      color: #2c5282 !important; /* Equivalent to hover:text-primary-700 */
    }

    &:active {
      background-color: #b4e1fa !important; /* Equivalent to active:bg-primary-500 */
      border-color: #3182ce; /* Equivalent to active:border-primary-500 */
      outline: none !important;
    }

    /* Focus state */
    &:focus {
      outline: none !important;
      box-shadow: none !important;

    }

    /* Disabled state */
    &:disabled {
      cursor: not-allowed; /* Equivalent to disabled:cursor-not-allowed */
      opacity: 0.7; /* Equivalent to disabled:opacity-70 */
    }

}

.fc-button.fc-prev-button.fc-button-active, .fc-button.fc-next-button.fc-button-active, .fc-button.fc-today-button.fc-button-active, .fc-button.fc-timeGridDay-button.fc-button-active, .fc-button.fc-timeGridWeek-button.fc-button-active,
.fc-button.fc-dayGridThreeDays-button.fc-button-active, .fc-listWeek-button.fc-button-active  {
  background-color: #b4e1fa !important; /* Equivalent to bg-primary-500 */

}


/* Highlighted event with a glowing border animation */
.highlighted-event {
  background-color: white !important;
  border: 2px solid blue !important;
  box-shadow: 0 0 10px rgba(0, 0, 255, 0.7), 0 0 20px rgba(0, 0, 255, 0.5);
  animation: glowing-border 2s ease-in-out infinite;
}

/* Selected event with a solid border */
.selected-event {
  border: 2px solid blue !important;
  box-shadow: none;
}

.fc-timegrid-event-harness .selected-event {
  z-index: 1000 !important;
}

/* Glowing border keyframes */
@keyframes glowing-border {
  0% {
    box-shadow: 0 0 5px rgba(0, 0, 255, 0.5), 0 0 10px rgba(0, 0, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(0, 0, 255, 0.7), 0 0 30px rgba(0, 0, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 0, 255, 0.5), 0 0 10px rgba(0, 0, 255, 0.3);
  }
}


#calendar-loader {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: flex ;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  opacity: 0.5;
  background-color: #ffffff;
  z-index: 99;
}

#loading-image {
  z-index: 100;
  width: 70px; /* Set size of the loading image */
  height: 70px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* uuid-field*/

.copied-badge {
  position: absolute;
  background-color: rgba(0, 128, 0, 0.6); /* Green background with transparency */
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-10px); /* Initial position for animation */
  pointer-events: none; /* Ensure it doesn't interfere with clicks */
}

.copied-badge.show {
  opacity: 1;
  transform: translateY(0); /* Slide in effect */
}








/* Styled sweet alert */

.custom-confirm-button {
  background-color: rgb(15, 118, 110) !important;
  color: white !important;
}


/* tooltip */

.tippy-box[data-theme~=calendar] {
    position: relative;
    background-color: var(--recloud-teal-color);
    color: #fff;
    border-radius: 5px;
    font-size: 10px;
    line-height: 1.2;
    outline: 0;
    transition-property: transform, visibility, opacity;
}

/* Modern tooltip styling for calendar notes */
.tippy-box[data-theme~=calendar-note] {
  position: relative;
  background-color: var(--recloud-teal-color); /* Main background color */
  color: #ffffff; /* Text color for readability */
  border-radius: 10px; /* Slightly rounded corners for a modern look */
  font-size: 14px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Professional font */
  line-height: 1.5;
  outline: 0;
  padding: 10px 15px; /* Balanced padding for better content layout */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Light shadow for subtle depth */
  max-width: 350px; /* Keeps the content concise and contained */
  border: 2px solid rgb(209, 237, 188); /* Contrasting border */
}


/* Header styling for emphasized content within notes */
.tippy-box[data-theme~=calendar-note] .tooltip-header {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 5px;
}

/* Adjustments for links and interactive elements */
.tippy-box[data-theme~=calendar-note] a {
  color: rgb(209, 237, 188); /* Accent color for links */
  text-decoration: underline;
}

/* Hover state for links */
.tippy-box[data-theme~=calendar-note] a:hover {
  text-decoration: none;
}

/* Optional border icon container */
.tippy-box[data-theme~=calendar-note] .icon-container {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

/* Custom tooltip styling for calendar notes */
.tippy-box[data-theme~=calendar-note] {
  position: relative;
  background-color: var(--recloud-teal-color);
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  padding: 5px ;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
  transition: transform 0.2s ease, visibility 0.2s ease, opacity 0.2s ease;
  max-width: 350px;
}









/* search */


.aa-DetachedCancelButton{
  display: none !important;
}
.aa-InputWrapperPrefix{
}

.aa-Input {

  font-size: 48px !important;
  height: 60px !important;
  color: var(--recloud-teal-color) !important;
  padding: 5px !important;
  padding: 10px !important;
  margin: 8px 0px !important;
}

.aa-InputWrapper, .aa-Input{

}


/* issue_entries */

tr[data-resource-name="issue_entries"] {
display: none;
}

tr[data-resource-name="issue_entries"].show-row {
  display: table-row !important;
}

[contenteditable]:focus {
  outline: 0px solid transparent;
  /* color: var(--recloud-teal-color); */
}


[contenteditable=true] {
  cursor: text;
}

td {
  cursor: default;
}


/* issue entries summary */

#summary {
  margin-top: 0 !important; /* Remove any top spacing applied by the space-y-12 */
}



/* spin loader for purchase pages  */


.loader {
  border-top-color: #3498db;  /* Color of the spinner */
  animation: spin 1s ease-in-out infinite;  /* Spinner animation */
  border-radius: 50%;  /* Make it a circle */
  border-width: 4px;  /* Border width */
  height: 48px;  /* Height of the loader */
  width: 48px;  /* Width of the loader */
  border-style: solid;
  border-color: #f3f3f3 #f3f3f3 #f3f3f3 #3498db; /* Make the top different color */
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* tabs make sure there is some room under the tabs  */

[data-tabs-target="tabPanel"] {
  padding-bottom: 200px;
}





/****************************************************
 *  Specialized styles for filter     *
 ****************************************************/


#avo_filters_trigger_ereignis {
  min-height: 350px;
}



/****************************************************
 *  Specialized styles repair set select input      *
 ****************************************************/

 select[data-resource-edit-target="possibleRepairSetsSelectInput"] {
  min-height: 200px; /* Ensures the height is at least 250px */
  font-size: 16px; /* Makes the text more readable */
  line-height: 1.5; /* Adds spacing between lines */
  padding: 8px; /* Adds padding inside the select box */
  border: 1px solid var(--recloud-teal-color); /* Sets a border color */
  border-radius: 4px; /* Adds rounded corners */
  background-color: #deeef9; /* Light background for better contrast */


}

select[data-resource-edit-target="possibleRepairSetsSelectInput"] option {
  padding: 5px 10px; /* Adds spacing around the options */
}

select[data-resource-edit-target="possibleRepairSetsSelectInput"] option:checked {
  background-color: var(--recloud-teal-color); /* Highlight selected option */
  color: #ffffff; /* Text color for selected option */
}


select[data-resource-edit-target="possibleRepairSetsSelectInput"] option:checked {
  background-color: var(--recloud-teal-color); /* Highlight selected option */
  color: #ffffff; /* Text color for selected option */
}

#issue_possible_repair_sets.no-sets {
  position: relative;

  background-size: 200px 200px; /* Adjust size for a water-like effect */
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #444; /* Default text color */
}

#issue_possible_repair_sets.no-sets::before {
  content: "Keine Sets gefunden";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(0, 0, 0, 0.5); /* Semi-transparent for better readability */
  font-size: 16px;
  pointer-events: none; /* Ensure text does not interfere with interactions */
  z-index: 1;
}

#issue_possible_repair_sets.no-sets:focus::before {
  content: "Keine Sets gefunden"; /* Ensure the message stays visible on focus */
}
.devise-links a {
  color: white;
  font-size: 1.2em;
}

element.style {
  color: white;
  font-size: 1.2em;
}

html,body {
	height: 100%;
}

body.my-login-page {
	background-color: #f7f9fb;
	font-size: 14px;
}

.my-login-page .brand {
	width: 200px;

	overflow: hidden;
	margin: 40px auto;
	position: relative;
	z-index: 1;
}

.my-login-page .brand img {
	width: 100%;
}

.my-login-page .card-wrapper {
	width: 500px;
}

.my-login-page .card {
	border-color: transparent;
	box-shadow: 0 4px 8px rgba(0,0,0,.05);
}

.my-login-page .card.fat {
	padding: 10px;
}

.my-login-page .card .card-title {
	margin-bottom: 30px;
}

.my-login-page .form-control {
	border-width: 2.3px;
}

.my-login-page .form-group label {
	width: 100%;
}

.my-login-page .btn.btn-block {
	padding: 12px 10px;
}

.my-login-page .footer {
	margin: 40px 0;
	color: #888;
	text-align: center;
}

.login-button {
  background-color: #009386 !important;
  border-color: #009386 !important;
}

@media screen and (max-width: 425px) {
	.my-login-page .card-wrapper {
		width: 90%;
		margin: 0 auto;
	}
}

@media screen and (max-width: 320px) {
	.my-login-page .card.fat {
		padding: 0;
	}

	.my-login-page .card.fat .card-body {
		padding: 15px;
	}
}


/* ============ */


.field_with_errors input{
	border: 1px solid red ;
}


.field_with_errors .error {
	color: red;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
@import url(/assets/custom/devise_styles-7e53bee91bb037d062a6ab53825864fa428b8d24211c3974468ccd0c4272361f.css);
/* start landing pages price section */
/* line 21, app/assets/stylesheets/application.scss */
.price-heading {
  min-height: 250px;
}

/* end landing pages price section */
