/**
Layout stlyes
 */
body {
  background-color: #F5F5F5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
  margin: 0;
  padding: 0;
}
body a {
  text-decoration: none;
  color: #115f93;
  transition: brightness 0.3s ease-in-out;
}
body a:hover {
  filter: brightness(50%);
}
body .font-weight-bold {
  font-weight: 600;
}
body.popup-open {
  overflow: hidden;
}
body.popup-open:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
body.popup {
  background-color: #ffffff !important;
}

.main {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

section {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 992px) {
  section {
    max-width: 1110px;
  }
}

.d-none {
  display: none !important;
}

.cart-logo img {
  height: 50px;
}

.order-head, .order-head-mobile {
  padding-top: 20px;
  padding-bottom: 20px;
  display: none;
}
@media (min-width: 992px) {
  .order-head, .order-head-mobile {
    display: block;
    padding-left: 38px;
    padding-bottom: 0;
    padding-top: 38px;
  }
}
.order-head section, .order-head-mobile section {
  text-align: left;
}
.order-head .cart-button, .order-head-mobile .cart-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.order-head .cart-button .back-to-cart svg, .order-head-mobile .cart-button .back-to-cart svg {
  width: 24px;
}
@media (min-width: 992px) {
  .order-head .cart-button, .order-head-mobile .cart-button {
    right: 38px;
  }
}
.order-head.order-head-align-left, .order-head-align-left.order-head-mobile {
  border-bottom: 1px solid #dedede;
}
@media (min-width: 992px) {
  .order-head.order-head-align-left, .order-head-align-left.order-head-mobile {
    border-bottom: none;
  }
}
.order-head.order-head-align-left section, .order-head-align-left.order-head-mobile section {
  text-align: left;
  max-width: 538px;
  margin: auto;
  width: 100%;
}
@media (min-width: 992px) {
  .order-head.order-head-align-left section, .order-head-align-left.order-head-mobile section {
    max-width: 580px;
  }
}
.order-head.order-head-align-right section, .order-head-align-right.order-head-mobile section {
  text-align: right;
}
.order-head.order-head-align-right .cart-button, .order-head-align-right.order-head-mobile .cart-button {
  left: 0;
  right: auto;
}
.order-head.order-head-align-center section, .order-head-align-center.order-head-mobile section {
  text-align: center;
}

.order-head-mobile {
  display: block;
  background-color: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 585px) {
  .order-head-mobile {
    padding-left: 21px;
    padding-right: 21px;
  }
}
@media (min-width: 992px) {
  .order-head-mobile {
    display: none;
  }
}

.order-container {
  border: none;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .order-container {
    flex-direction: row;
    justify-content: center;
  }
}

.order-left-side {
  background: white;
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  order: 1;
  max-width: 538px;
  margin: auto;
}
.order-left-side:after {
  content: "";
  position: absolute;
  left: calc((100vw - 538px) / 2 * -1);
  top: -1px;
  width: 100vw;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  border-top: 1px solid #dedede;
}
@media (max-width: 585px) {
  .order-left-side:after {
    display: none;
  }
}
@media (min-width: 992px) {
  .order-left-side {
    order: 0;
    flex: 1;
    height: 100%;
    margin: 0;
    max-width: 580px;
  }
  .order-left-side:after {
    display: none;
  }
  .order-left-side:before {
    content: "";
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: block;
    pointer-events: none;
    top: 0;
  }
}
.order-left-side .head-with-link {
  position: relative;
}
@media (min-width: 576px) {
  .order-left-side .head-with-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.order-left-side .head-with-link .login-btn {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  right: 17px;
}
@media (min-width: 576px) {
  .order-left-side .head-with-link .login-btn {
    margin-top: 8px;
    margin-bottom: 0;
  }
}
.order-left-side h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 14px;
}
.order-left-side h2 span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin-top: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  opacity: 0.6;
}
.order-left-side h2.contact-details-title {
  margin-top: 10px;
}
.order-left-side h3 {
  font-size: 16px;
  font-weight: 600;
}
.order-left-side .inner {
  padding-top: 15px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 60px;
}
@media (max-width: 585px) {
  .order-left-side .inner {
    padding-left: 21px;
    padding-right: 21px;
  }
}
@media (min-width: 992px) {
  .order-left-side .inner {
    padding-left: 38px;
    padding-top: 0;
    padding-right: 24px;
  }
}
.order-left-side .logged-in-user h2 {
  font-size: 14px;
  color: #666;
  font-weight: normal;
}
.order-left-side .logged-in-user .data-row {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dedede;
}
@media (max-width: 585px) {
  .order-left-side #mobile-cart .loadercontainer {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .order-left-side #mobile-cart {
    display: none;
  }
}
.order-left-side #mobile-cart .cart-summary-inner {
  padding-bottom: 20px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .order-left-side #mobile-cart .cart-summary-inner {
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.order-right-side {
  position: relative;
  flex: 1;
  order: 0;
  width: 100%;
  border-top: 1px solid #dedede;
}
@media (min-width: 992px) {
  .order-right-side {
    max-width: 480px;
    flex: 0 0 54%;
    order: 1;
    border-left: 1px solid #dedede;
    border-bottom: none;
    border-top: none;
  }
}

.cart-collapse-button {
  display: flex;
  padding: 15px 0 15px 0;
  align-items: center;
  height: 64px;
  margin: auto;
  width: 100%;
  max-width: 538px;
}
@media (max-width: 585px) {
  .cart-collapse-button {
    padding-left: 21px;
    padding-right: 21px;
  }
}
@media (min-width: 992px) {
  .cart-collapse-button {
    display: none;
  }
}
.cart-collapse-button div {
  display: flex;
}
.cart-collapse-button div:first-of-type {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cart-collapse-button div:last-of-type {
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cart-collapse-button #expand-mobile-cart {
  display: flex;
  justify-content: center;
  align-items: anchor-center;
}
.cart-collapse-button #car-total-mobile {
  font-size: 19px;
}
.cart-collapse-button svg {
  width: 10px;
  margin-left: 10px;
  margin-top: 4px;
}
.cart-collapse-button.expanded svg {
  transform: rotate(180deg);
}

.cart-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  will-change: max-height;
}
@media (min-width: 992px) {
  .cart-collapse {
    max-height: none;
    overflow: visible;
  }
}
.cart-collapse.expanded {
  max-height: 2000px; /* Large enough to contain your content */
  transition: max-height 0.6s ease-in-out;
}

.cart-summary {
  position: sticky;
  top: 0;
  max-width: 538px;
  margin: auto;
}
@media (min-width: 992px) {
  .cart-summary {
    width: 100%;
    max-width: 100%;
  }
}
.cart-summary .inner {
  padding: 0;
}
@media (min-width: 992px) {
  .cart-summary .inner {
    padding: 32px 38px 38px 38px;
  }
}
.cart-summary .inner .cart-summary-inner {
  padding-bottom: 20px;
  padding-top: 15px;
  padding-left: 21px;
  padding-right: 21px;
}
@media (min-width: 992px) {
  .cart-summary .inner .cart-summary-inner {
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.cart-summary .inner .line-item {
  margin-bottom: 11px;
}
.cart-summary .inner .line-item:first-of-type {
  margin-top: 15px;
}
.cart-summary .inner .line-item .align-self-top {
  align-self: flex-start;
}
.cart-summary .inner .line-item .image {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 64px;
}
.cart-summary .inner .line-item .image .image-holder {
  border: 1px solid #dedede;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.cart-summary .inner .line-item .image .image-holder img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cart-summary .inner .line-item .image .image-holder .no-image {
  background-color: #EDEDED;
  width: 100%;
  height: 100%;
}
.cart-summary .inner .line-item .variant-name {
  color: #666;
  font-size: 12px;
  margin-top: 5px;
}
.cart-summary .inner .line-item .qty {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #666;
  line-height: 22px;
  text-align: center;
  color: #ffffff;
  top: -5px;
  right: -5px;
}
.cart-summary .inner .line-item .old-price {
  text-decoration: line-through;
  color: #666;
  font-size: 0.9em;
  display: block;
}
.cart-summary .inner .line-item .coupon {
  color: #666;
  font-size: 0.9em;
  text-transform: uppercase;
}
.cart-summary .inner .line-item .coupon svg {
  width: 10px;
  margin-right: 5px;
}
.cart-summary .inner .line-item .coupon span {
  text-transform: none;
}
.cart-summary .inner .line-item .bundle-components .bundle-toggle {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}
.cart-summary .inner .line-item .bundle-components .bundle-items {
  font-size: 12px;
  margin-top: 10px;
  gap: 10px;
}
.cart-summary .inner .line-item .bundle-components .bundle-items .bundle-component {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}
.cart-summary .inner .line-item .bundle-components .bundle-items .bundle-component .img {
  align-self: flex-start;
  width: 40px;
  height: 40px;
  border: 1px solid #dedede;
  border-radius: 3px;
}
.cart-summary .inner .line-item .bundle-components .bundle-items .bundle-component .img .no-image {
  background-color: #EDEDED;
  width: 100%;
  height: 100%;
}
.cart-summary .inner .line-item .bundle-components .bundle-items .bundle-component .title {
  font-size: 12px;
  margin-left: 8px;
}
.cart-summary .inner .line-item .bundle-components .bundle-items .bundle-component .title .variant-name {
  color: #666;
}
.cart-summary .inner .summary {
  font-size: 1.3em;
  margin-top: 21px;
}
.cart-summary .inner .tax {
  color: #666;
  font-size: 0.9em;
}
.cart-summary .inner .total {
  font-size: 1.3em;
  font-weight: 600;
}
.cart-summary .inner .discount-holder {
  margin-bottom: 15px;
  padding-top: 15px;
}
.cart-summary .inner .discount-holder .coupon-btn {
  background-color: #EDEDED;
  color: #666 !important;
  border: 1px solid #dedede;
  padding: 6px 15px 7px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  height: 34px;
  line-height: 34px;
  transition: all 0.1s ease-in-out;
}
.cart-summary .inner .discount-holder .coupon-btn:hover {
  filter: brightness(90%) !important;
}
.cart-summary .inner .discount-holder .col-auto {
  padding-left: 0;
}

/**
  * From styles
 */
.form-group {
  margin-bottom: 14px;
  width: 100%;
}
.form-group .form-floating {
  position: relative;
  width: 100%;
}
.form-group .form-floating label {
  position: absolute;
  top: 50%;
  left: 0.65rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform: translateY(-50%);
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  color: #707070;
  z-index: 1;
}
.form-group .form-floating input, .form-group .form-floating select, .form-group .form-floating textarea {
  width: 100%;
  box-sizing: border-box;
  height: 49px;
  line-height: 49px;
  border: 1px solid #dedede;
  background-color: #ffffff;
  background-clip: padding-box;
  border-radius: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-weight: 400;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  padding: 0.75rem;
  font-size: 14px;
}
.form-group .form-floating input:focus, .form-group .form-floating input:not(:placeholder-shown), .form-group .form-floating select:focus, .form-group .form-floating select:not(:placeholder-shown), .form-group .form-floating textarea:focus, .form-group .form-floating textarea:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  height: 49px;
}
.form-group .form-floating input:focus, .form-group .form-floating select:focus, .form-group .form-floating textarea:focus {
  border-color: #115f93 !important;
}
.form-group .form-floating input:focus-visible, .form-group .form-floating select:focus-visible, .form-group .form-floating textarea:focus-visible {
  outline: 1px solid #115f93;
}
.form-group .form-floating input:focus ~ label, .form-group .form-floating input:not(:placeholder-shown) ~ label, .form-group .form-floating select:focus ~ label, .form-group .form-floating select:not(:placeholder-shown) ~ label, .form-group .form-floating textarea:focus ~ label, .form-group .form-floating textarea:not(:placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-100%) translateX(0.15rem);
}
.form-group .form-floating input:placeholder-shown ~ label :focus, .form-group .form-floating select:placeholder-shown ~ label :focus, .form-group .form-floating textarea:placeholder-shown ~ label :focus {
  transform: scale(1) translateY(0) translateX(0);
}
.form-group .form-floating select {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
.form-group .form-floating select:focus, .form-group .form-floating select:not([size]):not([multiple]) {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.form-group .form-floating select option {
  padding: 0.5rem;
  font-size: 1rem;
}
.form-group .form-floating textarea {
  height: 100px !important;
  padding-top: 0.625rem !important;
  min-height: 100px;
  line-height: 1.2em;
}
.form-group.checkbox .input {
  position: relative;
}
.form-group.checkbox .input input {
  position: absolute;
  left: 0;
  top: 0;
}
.form-group.checkbox .error-messages {
  margin-left: 30px;
}
.form-group.checkbox label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  display: block;
}
.form-group.checkbox label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 18px;
  width: 18px;
  background-color: white;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  -webkit-transition: border-color 150ms ease;
  -moz-transition: border-color 150ms ease;
  transition: border-color 150ms ease;
}
.form-group.checkbox label:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 150ms ease;
}
.form-group.checkbox input:checked + label:before {
  border-color: #115f93;
  background-color: #115f93;
}
.form-group.checkbox input:checked + label:after {
  opacity: 1;
}

.has-error input, .has-error select, .has-error .selected-point {
  border-color: #dd1d1d !important;
  box-shadow: 0 0 0 1px #dd1d1d;
}
.has-error .form-control {
  border-color: #dd1d1d !important; /* Red border color */
  box-shadow: 0 0 0 1px #dd1d1d;
}
.has-error .checkbox-input-holder label:before {
  border-color: #dd1d1d !important;
}

.error-messages, .error-message {
  color: #dd1d1d; /* Red text color */
  margin-top: 5px;
}

::-webkit-input-placeholder {
  opacity: 0;
  transition: inherit;
}

kezd sz :-moz-placeholder {
  opacity: 0;
  transition: inherit;
}

::-moz-placeholder {
  opacity: 0;
  transition: inherit;
}

:-ms-input-placeholder {
  opacity: 0;
  transition: inherit;
}

button {
  display: block;
  background-color: #1773b0;
  color: #ffffff;
  width: 100%;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
}
button#submit-button {
  font-size: 15px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 32px;
  font-weight: 600;
}
button#submit-button:disabled {
  background-color: #bebebe;
  position: relative;
  color: transparent;
}
button#submit-button:disabled::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
button.close-popup-btn {
  background-color: transparent;
  color: #666 !important;
  border: 1px solid #dedede;
  padding: 15px 15px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.alert {
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}
.alert.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.fatal-error {
  margin: 30px;
  text-align: center;
}

.accordion {
  border: 1px solid #dedede;
  border-radius: 8px;
}
.accordion .loading {
  padding: 15px 15px 15px 15px;
}
.accordion .accordion-item {
  position: relative;
  padding: 15px 15px 15px 15px;
  cursor: pointer !important;
}
.accordion .accordion-item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #dedede;
  width: 100%;
}
.accordion .accordion-item:last-of-type:after {
  display: none;
}
.accordion .accordion-item .selector {
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 15px;
  top: 15px;
  border-radius: 50%;
  border: 1px solid #dedede;
  z-index: 0;
}
.accordion .accordion-item .selector:before {
  content: "";
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease-in-out;
}
.accordion .accordion-item .accordion-item-title {
  padding-left: 35px;
  position: relative;
  z-index: 1;
  display: flex;
}
.accordion .accordion-item .accordion-item-title .accordion-item-title-name {
  flex: 1;
}
.accordion .accordion-item .accordion-item-title .accordion-item-title-price {
  flex: 0 0 auto;
}
.accordion .accordion-item .accordion-item-title .accordion-item-title-price .price {
  float: right;
  font-weight: 600;
}
.accordion .accordion-item .accordion-item-inner {
  padding-left: 35px;
  transition: height 0.3s ease;
  color: #666;
}
.accordion .accordion-item .accordion-item-inner p {
  margin: 0;
}
.accordion .accordion-item .error-messages {
  margin-top: 0;
}
.accordion .accordion-item.selected {
  cursor: default;
  box-shadow: 0 0 0 1px #115f93;
  border-bottom: 0;
  pointer-events: none;
}
.accordion .accordion-item.selected:after {
  display: none !important;
}
.accordion .accordion-item.selected .selector {
  background-color: #115f93;
}
.accordion .accordion-item.selected .selector:before {
  width: 5px;
  height: 5px;
}
.accordion .accordion-item.selected .show-modal {
  display: block;
}
.accordion .accordion-item.selected .accordion-item-inner {
  pointer-events: all;
}
.accordion .accordion-item.selected .selected-point-holder {
  display: flex;
}
.accordion .accordion-item.selected .error-messages {
  margin-top: 5px;
}
.accordion .accordion-item:first-of-type {
  border-radius: 8px 8px 0px 0px;
}
.accordion .accordion-item:last-of-type {
  border-radius: 0 0 8px 8px;
  border-bottom: 0px;
}
.accordion .accordion-item:first-of-type:last-of-type {
  border-radius: 8px;
}
.accordion .selected-point-holder {
  flex-direction: column;
  align-items: flex-start;
  display: none;
  flex-wrap: nowrap;
}
@media (min-width: 576px) {
  .accordion .selected-point-holder {
    flex-direction: row;
    align-items: center;
  }
}
.accordion .selected-point-holder .selected-point {
  line-height: 34px;
  border: 1px solid #dedede;
  background-color: #ffffff;
  margin-right: 0;
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  min-width: auto;
  padding: 3px 8px;
  color: #666;
  height: 42px;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 10px;
}
@media (min-width: 576px) {
  .accordion .selected-point-holder .selected-point {
    margin-right: 15px;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .accordion .selected-point-holder .selected-point {
    width: 100%;
  }
}
.accordion .selected-point-holder a:not(.close) {
  background-color: #000;
  color: #FFF !important;
  border: 1px solid #000;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  line-height: 34px;
  transition: all 0.1s ease-in-out;
  padding: 3px 12px;
  height: 42px;
  white-space: nowrap;
  margin-top: 10px;
  font-weight: 600;
}
.accordion .selected-point-holder a:not(.close):hover {
  filter: brightness(90%) !important;
}
.accordion .selected-point-holder .show-modal::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20version%3D%221.1%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20width%3D%22512%22%20height%3D%22512%22%20x%3D%220%22%20y%3D%220%22%20viewBox%3D%220%200%20487.724%20487.724%22%20style%3D%22enable-background%3Anew%200%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%20class%3D%22%22%3E%3Cg%3E%3Cpath%20d%3D%22M236.925.124c-96.9%203.4-177.4%2079-186.7%20175.5-1.9%2019.3-.8%2038%202.6%2055.9%200%200%20.3%202.1%201.3%206.1%203%2013.4%207.5%2026.4%2013.1%2038.6%2019.5%2046.2%2064.6%20123.5%20165.8%20207.6%206.2%205.2%2015.3%205.2%2021.6%200%20101.2-84%20146.3-161.3%20165.9-207.7%205.7-12.2%2010.1-25.1%2013.1-38.6.9-3.9%201.3-6.1%201.3-6.1%202.3-12%203.5-24.3%203.5-36.9%200-109.8-90.9-198.3-201.5-194.4zm6.9%20291.2c-52.2%200-94.5-42.3-94.5-94.5s42.3-94.5%2094.5-94.5%2094.5%2042.3%2094.5%2094.5-42.3%2094.5-94.5%2094.5z%22%20fill%3D%22%23ffffff%22%20opacity%3D%221%22%20data-original%3D%22%23000000%22%20class%3D%22%22%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  display: inline-block;
  width: 10px;
  height: 10px;
  content: "";
  background-size: 100%;
  margin-right: 5px;
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
iframe {
  border: none;
}

/*
Posta map overrides
*/
#ppapidiv {
  height: 100% !important;
}
#ppapidiv #pp-select-container, #ppapidiv #pp-select-button, #ppapidiv #pp-select-button-xs {
  display: none !important;
}
#ppapidiv .pp-map-info a {
  background-color: #BF1E1A;
  color: #ffffff !important;
  border-radius: 5px;
  padding: 5px 10px;
  white-space: nowrap;
  margin-top: 10px;
  display: inline-block;
}
#ppapidiv #postaPontApi-main {
  height: 100% !important;
}
#ppapidiv #postaPontApi-main #postaPontApi-content {
  box-shadow: none !important;
  background-color: transparent !important;
  background-image: none !important;
  height: 100% !important;
}
#ppapidiv #postaPontApi-main #postaPontApi-content #postaPontApi-inner {
  padding: 17px 0 !important;
  height: 100% !important;
}
#ppapidiv #postaPontApi-main #postaPontApi-content #postaPontApi-inner #pp-input-form {
  height: 45px;
}
#ppapidiv #postaPontApi-main #postaPontApi-content #postaPontApi {
  height: 100% !important;
}
#ppapidiv #postaPontApi-main #pp-map-canvas {
  height: calc(100% - 130px) !important;
}

.helpIcon {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: #EDEDED;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  text-align: center;
  font-size: 10px;
  color: #666;
}
.helpIcon:hover {
  background-color: #dedede;
  filter: none;
}
.helpIcon:after {
  display: inline-block;
  content: "?";
}

.help-popup {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000000;
  border: 1px solid #dedede;
  font-size: 12px;
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  z-index: 1000;
  width: 200px;
}
.help-popup:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000000;
}

/**
  * Common styles

 */
.h-100 {
  height: auto;
  min-height: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  column-gap: 15px;
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
}
.row .col-auto {
  flex: 0 1 auto;
  width: auto;
}
.row .col {
  flex: 1 0 0%;
}
.row .col-4, .row .col-6, .row .col-8, .row .col-12 {
  flex: 0 0 100%;
}
@media (min-width: 992px) {
  .row .col-4 {
    flex: 0 0 calc(33.333333% - 15px);
  }
  .row .col-6 {
    flex: 0 0 calc(50% - 15px);
  }
  .row .col-8 {
    flex: 0 0 calc(66.666667% - 15px);
  }
  .row .col-12 {
    flex: 0 0 calc(100% - 15px);
  }
}
.row .no-gutters {
  gap: 0;
}

.mt-2 {
  margin-top: 11px;
}

.text-end {
  text-align: right;
}

.font-weight-bold {
  font-weight: 600;
}

.no-select-alert {
  background-color: #F5F5F5;
  color: #666;
  border-radius: 5px;
  padding: 17px;
}

.align-items-center {
  align-items: center;
}

svg path {
  fill: none;
  stroke: #666;
}

.loadercontainer {
  animation: SkeletonPulse 4000ms ease infinite;
}
@media (max-width: 585px) {
  .loadercontainer {
    padding: 21px;
  }
}

.loadercontainer > div > div, .loadercontainer > div > div > div {
  flex: 1;
  background-color: #e6e6e6;
  border-radius: 5px;
}

.loader1 div {
  width: 20ch;
  height: 19px;
  margin: auto;
  margin-bottom: 14px;
}

.loader2 {
  gap: 11px;
  display: grid;
  padding-bottom: 36px;
  border-bottom: 1px solid #e6e6e6;
  grid-template-columns: repeat(3, 1fr);
}

.loader2 div {
  height: 48px;
}

.loader3 {
  padding: 21px 0;
  border-bottom: 1px solid #e6e6e6;
}

.loader3 div:first-child {
  width: 20ch;
  height: 28px;
  margin-bottom: 14px;
}

.loader3 div {
  width: 100%;
  height: 18px;
  margin-bottom: 7px;
}

.loader4 {
  justify-content: space-between;
  display: flex;
  padding-bottom: 14px;
}

.loader4 div {
  max-width: 65px;
  height: 19px;
}

.loader5 {
  justify-content: space-between;
  display: flex;
  padding-bottom: 14px;
}

.loader5 div {
  max-width: 15ch;
  height: 19px;
  height: 28px;
}

.loader6 {
  justify-content: space-between;
  display: flex;
  padding-bottom: 14px;
  align-items: center;
}

.loader6 > div:nth-child(1) {
  max-width: 65px;
  width: 65px;
  height: 65px;
}

.loader6 > div:nth-child(2) {
  background: none;
  padding-left: 14px;
}

.loader6 > div:nth-child(2) > div {
  max-width: 65px;
  height: 19px;
  margin: 7px 0;
}

.loader6 > div:nth-child(2) > div:nth-child(1) {
  max-width: 130px;
}

.loader6 > div:nth-child(3) {
  max-width: 65px;
  height: 19px;
}

.loader7 {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.loader7 div:nth-child(1) {
  max-width: 130px;
  height: 19px;
  height: 18px;
}

.loader7 div:nth-child(2) {
  max-width: 102px;
  height: 19px;
  height: 18px;
}

@keyframes SkeletonPulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .loader2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .loader2 div:first-child {
    grid-column: 1/-1;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-overlay .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 2;
  text-align: center;
  line-height: 34px;
  border: 2px solid #d5d5d5;
  font-weight: bold;
  color: #000000;
  display: inline-block;
}
.modal-overlay .close:hover {
  background-color: #000000;
  color: #ffffff;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  height: 90vh;
}

.row-container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}/*# sourceMappingURL=frontend.css.map */