/**
 * Ski Rental Integration - Main SCSS File
 * 
 * CRITICAL: All styles are wrapped with body.ski-rental-page to prevent conflicts
 * with WordPress theme styles
 */
/**
 * Scoped Bootstrap 5 Grid & Components
 * 
 * This file includes only the essential Bootstrap 5 components needed for ski rental
 * All styles are scoped to body.ski-rental-page to prevent WordPress theme conflicts
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-border-width: 1px;
  --bs-border-color: #dee2e6;
  --bs-body-color: #212529;
  --bs-tertiary-bg: #f8f9fa;
}

body.ski-rental-page input {
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
}
body.ski-rental-page *,
body.ski-rental-page *::before,
body.ski-rental-page *::after {
  box-sizing: border-box;
}
body.ski-rental-page .container,
body.ski-rental-page .container-fluid,
body.ski-rental-page .container-xxl,
body.ski-rental-page .container-xl,
body.ski-rental-page .container-lg,
body.ski-rental-page .container-md,
body.ski-rental-page .container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
body.ski-rental-page .container {
  max-width: 1320px;
}
@media (max-width: 575.98px) {
  body.ski-rental-page .container {
    max-width: 540px;
  }
}
@media (max-width: 767.98px) {
  body.ski-rental-page .container {
    max-width: 720px;
  }
}
@media (max-width: 991.98px) {
  body.ski-rental-page .container {
    max-width: 960px;
  }
}
@media (max-width: 1199.98px) {
  body.ski-rental-page .container {
    max-width: 1140px;
  }
}
@media (max-width: 1399.98px) {
  body.ski-rental-page .container {
    max-width: 1320px;
  }
}
body.ski-rental-page .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
body.ski-rental-page .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
body.ski-rental-page .col {
  flex: 1 0 0%;
}
body.ski-rental-page .col-auto {
  flex: 0 0 auto;
  width: auto;
}
body.ski-rental-page .col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
body.ski-rental-page .col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
body.ski-rental-page .col-3 {
  flex: 0 0 auto;
  width: 25%;
}
body.ski-rental-page .col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
body.ski-rental-page .col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
body.ski-rental-page .col-6 {
  flex: 0 0 auto;
  width: 50%;
}
body.ski-rental-page .col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
body.ski-rental-page .col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
body.ski-rental-page .col-9 {
  flex: 0 0 auto;
  width: 75%;
}
body.ski-rental-page .col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
body.ski-rental-page .col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
body.ski-rental-page .col-12 {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  body.ski-rental-page .col-sm {
    flex: 1 0 0%;
  }
  body.ski-rental-page .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.ski-rental-page .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.ski-rental-page .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.ski-rental-page .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.ski-rental-page .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.ski-rental-page .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.ski-rental-page .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.ski-rental-page .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.ski-rental-page .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.ski-rental-page .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.ski-rental-page .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.ski-rental-page .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.ski-rental-page .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  body.ski-rental-page .col-md {
    flex: 1 0 0%;
  }
  body.ski-rental-page .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.ski-rental-page .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.ski-rental-page .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.ski-rental-page .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.ski-rental-page .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.ski-rental-page .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.ski-rental-page .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.ski-rental-page .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.ski-rental-page .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.ski-rental-page .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.ski-rental-page .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.ski-rental-page .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.ski-rental-page .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  body.ski-rental-page .col-lg {
    flex: 1 0 0%;
  }
  body.ski-rental-page .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.ski-rental-page .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.ski-rental-page .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.ski-rental-page .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.ski-rental-page .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.ski-rental-page .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.ski-rental-page .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.ski-rental-page .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.ski-rental-page .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.ski-rental-page .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.ski-rental-page .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.ski-rental-page .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.ski-rental-page .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  body.ski-rental-page .col-xl {
    flex: 1 0 0%;
  }
  body.ski-rental-page .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.ski-rental-page .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.ski-rental-page .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.ski-rental-page .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.ski-rental-page .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.ski-rental-page .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.ski-rental-page .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.ski-rental-page .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.ski-rental-page .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.ski-rental-page .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.ski-rental-page .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.ski-rental-page .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.ski-rental-page .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
body.ski-rental-page .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
body.ski-rental-page .form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
body.ski-rental-page .form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}
body.ski-rental-page .form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  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='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
body.ski-rental-page .form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
body.ski-rental-page .form-select:disabled {
  background-color: #e9ecef;
}
body.ski-rental-page .btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
body.ski-rental-page .btn:hover {
  color: #212529;
}
body.ski-rental-page .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
body.ski-rental-page .btn:disabled, body.ski-rental-page .btn.disabled {
  pointer-events: none;
  opacity: 0.65;
}
body.ski-rental-page .btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
body.ski-rental-page .btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
body.ski-rental-page .btn-primary:focus {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
body.ski-rental-page .btn-primary:active, body.ski-rental-page .btn-primary.active {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a53be;
}
body.ski-rental-page .btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
body.ski-rental-page .btn-secondary:hover {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}
body.ski-rental-page .btn-secondary:focus {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
body.ski-rental-page .btn-secondary:active, body.ski-rental-page .btn-secondary.active {
  color: #fff;
  background-color: #565e64;
  border-color: #51585e;
}
body.ski-rental-page .btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
body.ski-rental-page .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
body.ski-rental-page .d-none {
  display: none !important;
}
body.ski-rental-page .d-inline {
  display: inline !important;
}
body.ski-rental-page .d-inline-block {
  display: inline-block !important;
}
body.ski-rental-page .d-block {
  display: block !important;
}
body.ski-rental-page .d-flex {
  display: flex !important;
}
body.ski-rental-page .d-inline-flex {
  display: inline-flex !important;
}
body.ski-rental-page .d-grid {
  display: grid !important;
}
body.ski-rental-page .d-table {
  display: table !important;
}
body.ski-rental-page .d-table-row {
  display: table-row !important;
}
body.ski-rental-page .d-table-cell {
  display: table-cell !important;
}
@media (min-width: 576px) {
  body.ski-rental-page .d-sm-none {
    display: none !important;
  }
  body.ski-rental-page .d-sm-inline {
    display: inline !important;
  }
  body.ski-rental-page .d-sm-inline-block {
    display: inline-block !important;
  }
  body.ski-rental-page .d-sm-block {
    display: block !important;
  }
  body.ski-rental-page .d-sm-flex {
    display: flex !important;
  }
  body.ski-rental-page .d-sm-inline-flex {
    display: inline-flex !important;
  }
  body.ski-rental-page .d-sm-grid {
    display: grid !important;
  }
}
@media (min-width: 768px) {
  body.ski-rental-page .d-md-none {
    display: none !important;
  }
  body.ski-rental-page .d-md-inline {
    display: inline !important;
  }
  body.ski-rental-page .d-md-inline-block {
    display: inline-block !important;
  }
  body.ski-rental-page .d-md-block {
    display: block !important;
  }
  body.ski-rental-page .d-md-flex {
    display: flex !important;
  }
  body.ski-rental-page .d-md-inline-flex {
    display: inline-flex !important;
  }
  body.ski-rental-page .d-md-grid {
    display: grid !important;
  }
}
@media (min-width: 992px) {
  body.ski-rental-page .d-lg-none {
    display: none !important;
  }
  body.ski-rental-page .d-lg-inline {
    display: inline !important;
  }
  body.ski-rental-page .d-lg-inline-block {
    display: inline-block !important;
  }
  body.ski-rental-page .d-lg-block {
    display: block !important;
  }
  body.ski-rental-page .d-lg-flex {
    display: flex !important;
  }
  body.ski-rental-page .d-lg-inline-flex {
    display: inline-flex !important;
  }
  body.ski-rental-page .d-lg-grid {
    display: grid !important;
  }
}
body.ski-rental-page .justify-content-start {
  justify-content: flex-start !important;
}
body.ski-rental-page .justify-content-end {
  justify-content: flex-end !important;
}
body.ski-rental-page .justify-content-center {
  justify-content: center !important;
}
body.ski-rental-page .justify-content-between {
  justify-content: space-between !important;
}
body.ski-rental-page .justify-content-around {
  justify-content: space-around !important;
}
body.ski-rental-page .align-items-start {
  align-items: flex-start !important;
}
body.ski-rental-page .align-items-end {
  align-items: flex-end !important;
}
body.ski-rental-page .align-items-center {
  align-items: center !important;
}
body.ski-rental-page .align-items-baseline {
  align-items: baseline !important;
}
body.ski-rental-page .align-items-stretch {
  align-items: stretch !important;
}
body.ski-rental-page .flex-row {
  flex-direction: row !important;
}
body.ski-rental-page .flex-column {
  flex-direction: column !important;
}
body.ski-rental-page .flex-wrap {
  flex-wrap: wrap !important;
}
body.ski-rental-page .flex-nowrap {
  flex-wrap: nowrap !important;
}
body.ski-rental-page .flex-fill {
  flex: 1 1 auto !important;
}
body.ski-rental-page .flex-grow-0 {
  flex-grow: 0 !important;
}
body.ski-rental-page .flex-grow-1 {
  flex-grow: 1 !important;
}
body.ski-rental-page .gap-0 {
  gap: 0 !important;
}
body.ski-rental-page .gap-1 {
  gap: 0.25rem !important;
}
body.ski-rental-page .gap-2 {
  gap: 0.5rem !important;
}
body.ski-rental-page .gap-3 {
  gap: 1rem !important;
}
body.ski-rental-page .gap-4 {
  gap: 1.5rem !important;
}
body.ski-rental-page .gap-5 {
  gap: 3rem !important;
}
body.ski-rental-page .w-25 {
  width: 25% !important;
}
body.ski-rental-page .w-50 {
  width: 50% !important;
}
body.ski-rental-page .w-75 {
  width: 75% !important;
}
body.ski-rental-page .w-100 {
  width: 100% !important;
}
body.ski-rental-page .w-auto {
  width: auto !important;
}
body.ski-rental-page .h-25 {
  height: 25% !important;
}
body.ski-rental-page .h-50 {
  height: 50% !important;
}
body.ski-rental-page .h-75 {
  height: 75% !important;
}
body.ski-rental-page .h-100 {
  height: 100% !important;
}
body.ski-rental-page .h-auto {
  height: auto !important;
}
body.ski-rental-page .m-0 {
  margin: 0 !important;
}
body.ski-rental-page .m-1 {
  margin: 0.25rem !important;
}
body.ski-rental-page .m-2 {
  margin: 0.5rem !important;
}
body.ski-rental-page .m-3 {
  margin: 1rem !important;
}
body.ski-rental-page .m-4 {
  margin: 1.5rem !important;
}
body.ski-rental-page .m-5 {
  margin: 3rem !important;
}
body.ski-rental-page .mt-0 {
  margin-top: 0 !important;
}
body.ski-rental-page .mt-1 {
  margin-top: 0.25rem !important;
}
body.ski-rental-page .mt-2 {
  margin-top: 0.5rem !important;
}
body.ski-rental-page .mt-3 {
  margin-top: 1rem !important;
}
body.ski-rental-page .mt-4 {
  margin-top: 1.5rem !important;
}
body.ski-rental-page .mt-5 {
  margin-top: 3rem !important;
}
body.ski-rental-page .mb-0 {
  margin-bottom: 0 !important;
}
body.ski-rental-page .mb-1 {
  margin-bottom: 0.25rem !important;
}
body.ski-rental-page .mb-2 {
  margin-bottom: 0.5rem !important;
}
body.ski-rental-page .mb-3 {
  margin-bottom: 1rem !important;
}
body.ski-rental-page .mb-4 {
  margin-bottom: 1.5rem !important;
}
body.ski-rental-page .mb-5 {
  margin-bottom: 3rem !important;
}
body.ski-rental-page .p-0 {
  padding: 0 !important;
}
body.ski-rental-page .p-1 {
  padding: 0.25rem !important;
}
body.ski-rental-page .p-2 {
  padding: 0.5rem !important;
}
body.ski-rental-page .p-3 {
  padding: 1rem !important;
}
body.ski-rental-page .p-4 {
  padding: 1.5rem !important;
}
body.ski-rental-page .p-5 {
  padding: 3rem !important;
}
body.ski-rental-page .pt-0 {
  padding-top: 0 !important;
}
body.ski-rental-page .pt-1 {
  padding-top: 0.25rem !important;
}
body.ski-rental-page .pt-2 {
  padding-top: 0.5rem !important;
}
body.ski-rental-page .pt-3 {
  padding-top: 1rem !important;
}
body.ski-rental-page .pt-4 {
  padding-top: 1.5rem !important;
}
body.ski-rental-page .pt-5 {
  padding-top: 3rem !important;
}
body.ski-rental-page .pb-0 {
  padding-bottom: 0 !important;
}
body.ski-rental-page .pb-1 {
  padding-bottom: 0.25rem !important;
}
body.ski-rental-page .pb-2 {
  padding-bottom: 0.5rem !important;
}
body.ski-rental-page .pb-3 {
  padding-bottom: 1rem !important;
}
body.ski-rental-page .pb-4 {
  padding-bottom: 1.5rem !important;
}
body.ski-rental-page .pb-5 {
  padding-bottom: 3rem !important;
}
body.ski-rental-page .ps-0 {
  padding-left: 0 !important;
}
body.ski-rental-page .ps-1 {
  padding-left: 0.25rem !important;
}
body.ski-rental-page .ps-2 {
  padding-left: 0.5rem !important;
}
body.ski-rental-page .ps-3 {
  padding-left: 1rem !important;
}
body.ski-rental-page .ps-4 {
  padding-left: 1.5rem !important;
}
body.ski-rental-page .ps-5 {
  padding-left: 3rem !important;
}
body.ski-rental-page .pe-0 {
  padding-right: 0 !important;
}
body.ski-rental-page .pe-1 {
  padding-right: 0.25rem !important;
}
body.ski-rental-page .pe-2 {
  padding-right: 0.5rem !important;
}
body.ski-rental-page .pe-3 {
  padding-right: 1rem !important;
}
body.ski-rental-page .pe-4 {
  padding-right: 1.5rem !important;
}
body.ski-rental-page .pe-5 {
  padding-right: 3rem !important;
}
body.ski-rental-page .px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.ski-rental-page .px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
body.ski-rental-page .px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
body.ski-rental-page .px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
body.ski-rental-page .px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
body.ski-rental-page .px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
body.ski-rental-page .py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.ski-rental-page .py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
body.ski-rental-page .py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
body.ski-rental-page .py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
body.ski-rental-page .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
body.ski-rental-page .py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
body.ski-rental-page .ms-0 {
  margin-left: 0 !important;
}
body.ski-rental-page .ms-1 {
  margin-left: 0.25rem !important;
}
body.ski-rental-page .ms-2 {
  margin-left: 0.5rem !important;
}
body.ski-rental-page .ms-3 {
  margin-left: 1rem !important;
}
body.ski-rental-page .ms-4 {
  margin-left: 1.5rem !important;
}
body.ski-rental-page .ms-5 {
  margin-left: 3rem !important;
}
body.ski-rental-page .me-0 {
  margin-right: 0 !important;
}
body.ski-rental-page .me-1 {
  margin-right: 0.25rem !important;
}
body.ski-rental-page .me-2 {
  margin-right: 0.5rem !important;
}
body.ski-rental-page .me-3 {
  margin-right: 1rem !important;
}
body.ski-rental-page .me-4 {
  margin-right: 1.5rem !important;
}
body.ski-rental-page .me-5 {
  margin-right: 3rem !important;
}
body.ski-rental-page .mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body.ski-rental-page .mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
body.ski-rental-page .mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
body.ski-rental-page .mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
body.ski-rental-page .mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
body.ski-rental-page .mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}
body.ski-rental-page .my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.ski-rental-page .my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
body.ski-rental-page .my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
body.ski-rental-page .my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
body.ski-rental-page .my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
body.ski-rental-page .my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
body.ski-rental-page .g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
body.ski-rental-page .g-1 {
  --bs-gutter-x: 0.25rem;
  --bs-gutter-y: 0.25rem;
}
body.ski-rental-page .g-2 {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
}
body.ski-rental-page .g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}
body.ski-rental-page .g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}
body.ski-rental-page .g-5 {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}
body.ski-rental-page .gx-0 {
  --bs-gutter-x: 0;
}
body.ski-rental-page .gx-1 {
  --bs-gutter-x: 0.25rem;
}
body.ski-rental-page .gx-2 {
  --bs-gutter-x: 0.5rem;
}
body.ski-rental-page .gx-3 {
  --bs-gutter-x: 1rem;
}
body.ski-rental-page .gx-4 {
  --bs-gutter-x: 1.5rem;
}
body.ski-rental-page .gx-5 {
  --bs-gutter-x: 3rem;
}
body.ski-rental-page .gy-0 {
  --bs-gutter-y: 0;
}
body.ski-rental-page .gy-1 {
  --bs-gutter-y: 0.25rem;
}
body.ski-rental-page .gy-2 {
  --bs-gutter-y: 0.5rem;
}
body.ski-rental-page .gy-3 {
  --bs-gutter-y: 1rem;
}
body.ski-rental-page .gy-4 {
  --bs-gutter-y: 1.5rem;
}
body.ski-rental-page .gy-5 {
  --bs-gutter-y: 3rem;
}
body.ski-rental-page .text-center {
  text-align: center !important;
}
body.ski-rental-page .text-left {
  text-align: left !important;
}
body.ski-rental-page .text-right {
  text-align: right !important;
}
body.ski-rental-page .text-primary {
  color: var(--bs-primary) !important;
}
body.ski-rental-page .text-secondary {
  color: var(--bs-secondary) !important;
}
body.ski-rental-page .text-success {
  color: var(--bs-success) !important;
}
body.ski-rental-page .text-danger {
  color: var(--bs-danger) !important;
}
body.ski-rental-page .text-warning {
  color: var(--bs-warning) !important;
}
body.ski-rental-page .text-info {
  color: var(--bs-info) !important;
}
body.ski-rental-page .text-light {
  color: var(--bs-light) !important;
}
body.ski-rental-page .text-dark {
  color: var(--bs-dark) !important;
}
body.ski-rental-page .text-white {
  color: var(--bs-white) !important;
}
body.ski-rental-page .alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0.375rem;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}
body.ski-rental-page .alert-heading {
  color: inherit;
}
body.ski-rental-page .alert-link {
  font-weight: 700;
}
body.ski-rental-page .alert-dismissible {
  padding-right: 3rem;
}
body.ski-rental-page .alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}
body.ski-rental-page .alert-primary {
  --bs-alert-color: #084298;
  --bs-alert-bg: #cfe2ff;
  --bs-alert-border-color: #9ec5fe;
}
body.ski-rental-page .alert-secondary {
  --bs-alert-color: #41464b;
  --bs-alert-bg: #e2e3e5;
  --bs-alert-border-color: #c4c8cb;
}
body.ski-rental-page .alert-success {
  --bs-alert-color: #0f5132;
  --bs-alert-bg: #d1e7dd;
  --bs-alert-border-color: #a3cfbb;
}
body.ski-rental-page .alert-info {
  --bs-alert-color: #055160;
  --bs-alert-bg: #cff4fc;
  --bs-alert-border-color: #9eeaf9;
}
body.ski-rental-page .alert-warning {
  --bs-alert-color: #664d03;
  --bs-alert-bg: #fff3cd;
  --bs-alert-border-color: #ffecb5;
}
body.ski-rental-page .alert-danger {
  --bs-alert-color: #842029;
  --bs-alert-bg: #f8d7da;
  --bs-alert-border-color: #f1aeb5;
}
body.ski-rental-page .alert-light {
  --bs-alert-color: #636464;
  --bs-alert-bg: #fefefe;
  --bs-alert-border-color: #fdfdfe;
}
body.ski-rental-page .alert-dark {
  --bs-alert-color: #141619;
  --bs-alert-bg: #d3d3d4;
  --bs-alert-border-color: #bcbebf;
}
body.ski-rental-page .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='m.235.227 15.312 15.312a.5.5 0 0 1-.708.708L.227.935a.5.5 0 1 1 .708-.708Z'/%3e%3cpath d='m15.547.227-15.312 15.312a.5.5 0 0 0 .708.708L15.953.935a.5.5 0 0 0-.708-.708Z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
}
body.ski-rental-page .btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
body.ski-rental-page .btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
body.ski-rental-page .btn-close:disabled,
body.ski-rental-page .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}
body.ski-rental-page .btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}
body.ski-rental-page .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
body.ski-rental-page .input-group > .form-control,
body.ski-rental-page .input-group > .form-select,
body.ski-rental-page .input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
body.ski-rental-page .input-group > .form-control:focus,
body.ski-rental-page .input-group > .form-select:focus,
body.ski-rental-page .input-group > .form-floating:focus-within {
  z-index: 5;
}
body.ski-rental-page .input-group .btn {
  position: relative;
  z-index: 2;
}
body.ski-rental-page .input-group .btn:focus {
  z-index: 5;
}
body.ski-rental-page .input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}
body.ski-rental-page .input-group-lg > .form-control,
body.ski-rental-page .input-group-lg > .form-select,
body.ski-rental-page .input-group-lg > .input-group-text,
body.ski-rental-page .input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
body.ski-rental-page .input-group-sm > .form-control,
body.ski-rental-page .input-group-sm > .form-select,
body.ski-rental-page .input-group-sm > .input-group-text,
body.ski-rental-page .input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
body.ski-rental-page .input-group-lg > .form-select,
body.ski-rental-page .input-group-sm > .form-select {
  padding-right: 3rem;
}
body.ski-rental-page .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
body.ski-rental-page .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body.ski-rental-page .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
body.ski-rental-page .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body.ski-rental-page .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(var(--bs-border-width) * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
body.ski-rental-page .input-group > .form-floating:not(:first-child) > .form-control,
body.ski-rental-page .input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
body.ski-rental-page .form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
body.ski-rental-page .form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}
body.ski-rental-page .form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
body.ski-rental-page .form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}
body.ski-rental-page .form-check-input {
  --bs-form-check-bg: #fff;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  print-color-adjust: exact;
}
body.ski-rental-page .form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
body.ski-rental-page .form-check-input[type=radio] {
  border-radius: 50%;
}
body.ski-rental-page .form-check-input:active {
  filter: brightness(90%);
}
body.ski-rental-page .form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
body.ski-rental-page .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
body.ski-rental-page .form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
body.ski-rental-page .form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
body.ski-rental-page .form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
body.ski-rental-page .form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
body.ski-rental-page .form-check-input[disabled] ~ .form-check-label,
body.ski-rental-page .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}
body.ski-rental-page .form-check-label {
  color: var(--bs-body-color);
  cursor: pointer;
}
body.ski-rental-page .form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}
body.ski-rental-page .btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
body.ski-rental-page .btn-check[disabled] + .btn,
body.ski-rental-page .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}
body.ski-rental-page .rounded {
  border-radius: var(--bs-border-radius) !important;
}
body.ski-rental-page .rounded-0 {
  border-radius: 0 !important;
}
body.ski-rental-page .rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}
body.ski-rental-page .rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}
body.ski-rental-page .rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}
body.ski-rental-page .rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}
body.ski-rental-page .rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}
body.ski-rental-page .rounded-circle {
  border-radius: 50% !important;
}
body.ski-rental-page .rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}
body.ski-rental-page .rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
body.ski-rental-page .rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}
body.ski-rental-page .rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}
body.ski-rental-page .rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}
body.ski-rental-page .rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
body.ski-rental-page .rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
body.ski-rental-page .rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
body.ski-rental-page .rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

/**
 * Ski Rental Reference Styles - Wrapped with Namespace
 * 
 * This file wraps all the reference SCSS imports with body.ski-rental-page
 * to prevent conflicts with WordPress theme styles
 */
body.ski-rental-page {
  /* xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px */
  /* cyrillic-ext */
  /* cyrillic */
  /* greek-ext */
  /* greek */
  /* vietnamese */
  /* latin-ext */
  /* latin */
  /* cyrillic-ext */
  /* cyrillic */
  /* greek-ext */
  /* greek */
  /* vietnamese */
  /* latin-ext */
  /* latin */
  /* cyrillic-ext */
  /* cyrillic */
  /* greek-ext */
  /* greek */
  /* vietnamese */
  /* latin-ext */
  /* latin */
  /* cyrillic-ext */
  /* cyrillic */
  /* greek-ext */
  /* greek */
  /* vietnamese */
  /* latin-ext */
  /* latin */
  /* cyrillic-ext */
  /* cyrillic */
  /* greek-ext */
  /* greek */
  /* vietnamese */
  /* latin-ext */
  /* latin */
  /* cyrillic-ext */
  /* cyrillic */
  /* greek-ext */
  /* greek */
  /* vietnamese */
  /* latin-ext */
  /* latin */
  /* .text-shadow (@string: 0 1px 3px rgba(0, 0, 0, 0.25)) {
  	text-shadow: @string;
  }
  .box-shadow (@string) {
  	-webkit-box-shadow: @string;
  	-moz-box-shadow:    @string;
  	box-shadow:         @string;
  }
  .drop-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) {
  	-webkit-box-shadow:	@x @y @blur @spread rgba(0, 0, 0, @alpha);
  	-moz-box-shadow:	@x @y @blur @spread rgba(0, 0, 0, @alpha);
  	box-shadow:		@x @y @blur @spread rgba(0, 0, 0, @alpha);
  }
  .inner-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) {
  	-webkit-box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha);
  	-moz-box-shadow:    inset @x @y @blur @spread rgba(0, 0, 0, @alpha);
  	box-shadow:         inset @x @y @blur @spread rgba(0, 0, 0, @alpha);
  }

  .box-sizing (@type: border-box) {
  	-webkit-box-sizing: @type;
  	-moz-box-sizing:    @type;
  	box-sizing:         @type;
  }

  .border-radius (@radius: 5px) {
  	-webkit-border-radius: @radius;
  	-moz-border-radius:    @radius;
  	border-radius:         @radius;

  	-moz-background-clip:    padding;
  	-webkit-background-clip: padding-box;
  	background-clip:         padding-box;
  }
  .border-radiuses (@topright: 0, @bottomright: 0, @bottomleft: 0, @topleft: 0) {
  	-webkit-border-top-right-radius:    @topright;
  	-webkit-border-bottom-right-radius: @bottomright;
  	-webkit-border-bottom-left-radius:  @bottomleft;
  	-webkit-border-top-left-radius:     @topleft;

  	-moz-border-radius-topright:        @topright;
  	-moz-border-radius-bottomright:     @bottomright;
  	-moz-border-radius-bottomleft:      @bottomleft;
  	-moz-border-radius-topleft:         @topleft;

  	border-top-right-radius:            @topright;
  	border-bottom-right-radius:         @bottomright;
  	border-bottom-left-radius:          @bottomleft;
  	border-top-left-radius:             @topleft;

  	-moz-background-clip:    padding; 
  	-webkit-background-clip: padding-box; 
  	background-clip:         padding-box; 
  }

  .opacity (@opacity: 0.5) {
  	-webkit-opacity: 	@opacity;
  	-moz-opacity: 		@opacity;
  	opacity: 		@opacity;
  }

  .gradient (@startColor: #eee, @endColor: white, @startColorPercents: 100%, @endColorPercents: 100%) {
  	background-color: @startColor;
  	background: -webkit-gradient(linear, left top, left bottom, color-stop(@startColorPercents, @startColor), color-stop(@endColorPercents, @endColor));
  	background: -webkit-linear-gradient(top, @startColor @startColorPercents, @endColor @endColorPercents);
  	background: -moz-linear-gradient(top, @startColor @startColorPercents, @endColor @endColorPercents);
  	background: -ms-linear-gradient(top, @startColor @startColorPercents, @endColor @endColorPercents);
  	background: -o-linear-gradient(top, @startColor @startColorPercents, @endColor @endColorPercents);
  	background: linear-gradient(to bottom, @startColor @startColorPercents, @endColor @endColorPercents);
  	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@startColor', endColorstr='@endColor',GradientType=0);
  }

  .horizontal-gradient (@startColor: #eee, @endColor: white) {
   	background-color: @startColor;
  	background-image: -webkit-gradient(linear, left top, right top, from(@startColor), to(@endColor));
  	background-image: -webkit-linear-gradient(left, @startColor, @endColor);
  	background-image: -moz-linear-gradient(left, @startColor, @endColor);
  	background-image: -ms-linear-gradient(left, @startColor, @endColor);
  	background-image: -o-linear-gradient(left, @startColor, @endColor);
  }

  .bg-image-with-gradient (@color: #eee, @url) {
      background-image: linear-gradient(to bottom, @color, @color), url(@url);
      background-image: -moz-linear-gradient(top, @color, @color), url(@url);
      background-image: -o-linear-gradient(top, @color, @color), url(@url);
      background-image: -ms-linear-gradient(top, @color, @color), url(@url);
      background-image: -webkit-gradient(linear, left top, left bottom, from(@color), to(@color)), url(@url);
      background-image: -webkit-linear-gradient(top, @color, @color), url(@url);
  }

  .animation (@name, @duration: 300ms, @delay: 0, @ease: ease) {
  	-webkit-animation: @name @duration @delay @ease;
  	-moz-animation:    @name @duration @delay @ease;
  	-ms-animation:     @name @duration @delay @ease;
  }

  .transition (@transition) {
  	-webkit-transition: @transition;  
  	-moz-transition:    @transition;
  	-ms-transition:     @transition; 
  	-o-transition:      @transition;
  	transition: @transition;
  }
  .transform(@string){
  	-webkit-transform: @string;
  	-moz-transform: 	 @string;
  	-ms-transform: 		 @string;
  	-o-transform: 		 @string;
  	transform: @string;
  }
  .scale (@factor) {
  	-webkit-transform: scale(@factor);
  	-moz-transform: 	 scale(@factor);
  	-ms-transform: 		 scale(@factor);
  	-o-transform: 		 scale(@factor);
  }
  .rotate (@deg) {
  	-webkit-transform: rotate(@deg);
  	-moz-transform: 	 rotate(@deg);
  	-ms-transform: 		 rotate(@deg);
  	-o-transform: 		 rotate(@deg);
  }
  .skew (@deg, @deg2) {
  	-webkit-transform:       skew(@deg, @deg2);
  	-moz-transform: 	 skew(@deg, @deg2);
  	-ms-transform: 		 skew(@deg, @deg2);
  	-o-transform: 		 skew(@deg, @deg2);
  }
  .translate (@x, @y:0) {
  	-webkit-transform:       translate(@x, @y);
  	-moz-transform: 	 translate(@x, @y);
  	-ms-transform: 		 translate(@x, @y);
  	-o-transform: 		 translate(@x, @y);
  }
  .translate3d (@x, @y: 0, @z: 0) {
  	-webkit-transform:       translate3d(@x, @y, @z);
  	-moz-transform: 	 translate3d(@x, @y, @z);
  	-ms-transform: 		 translate3d(@x, @y, @z);
  	-o-transform: 		 translate3d(@x, @y, @z);
  }
  .perspective (@value: 1000) {
  	-webkit-perspective: 	@value;
  	-moz-perspective: 	@value;
  	-ms-perspective: 	@value;
  	perspective: 		@value;
  }
  .transform-origin (@x:center, @y:center) {
  	-webkit-transform-origin: @x @y;
  	-moz-transform-origin:    @x @y;
  	-ms-transform-origin:     @x @y;
  	-o-transform-origin:      @x @y;
  }
  .hyphens (@val) {
      -webkit-hyphens:    @val;
      -moz-hyphens:       @val;
      -ms-hyphens:        @val;
      hyphens:            @val;

  }
   */
  /* Show element only on screens smaller than 992px */
  /* BREADCRUMBS NAVIGATION */
}
@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2?24e3eb84d0bcaf83d77f904c78ac1f47") format("woff2"), url("../fonts/bootstrap-icons.woff?24e3eb84d0bcaf83d77f904c78ac1f47") format("woff");
}
body.ski-rental-page .bi::before,
body.ski-rental-page [class^=bi-]::before,
body.ski-rental-page [class*=" bi-"]::before {
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.ski-rental-page .bi-123::before {
  content: "\f67f";
}
body.ski-rental-page .bi-alarm-fill::before {
  content: "\f101";
}
body.ski-rental-page .bi-alarm::before {
  content: "\f102";
}
body.ski-rental-page .bi-align-bottom::before {
  content: "\f103";
}
body.ski-rental-page .bi-align-center::before {
  content: "\f104";
}
body.ski-rental-page .bi-align-end::before {
  content: "\f105";
}
body.ski-rental-page .bi-align-middle::before {
  content: "\f106";
}
body.ski-rental-page .bi-align-start::before {
  content: "\f107";
}
body.ski-rental-page .bi-align-top::before {
  content: "\f108";
}
body.ski-rental-page .bi-alt::before {
  content: "\f109";
}
body.ski-rental-page .bi-app-indicator::before {
  content: "\f10a";
}
body.ski-rental-page .bi-app::before {
  content: "\f10b";
}
body.ski-rental-page .bi-archive-fill::before {
  content: "\f10c";
}
body.ski-rental-page .bi-archive::before {
  content: "\f10d";
}
body.ski-rental-page .bi-arrow-90deg-down::before {
  content: "\f10e";
}
body.ski-rental-page .bi-arrow-90deg-left::before {
  content: "\f10f";
}
body.ski-rental-page .bi-arrow-90deg-right::before {
  content: "\f110";
}
body.ski-rental-page .bi-arrow-90deg-up::before {
  content: "\f111";
}
body.ski-rental-page .bi-arrow-bar-down::before {
  content: "\f112";
}
body.ski-rental-page .bi-arrow-bar-left::before {
  content: "\f113";
}
body.ski-rental-page .bi-arrow-bar-right::before {
  content: "\f114";
}
body.ski-rental-page .bi-arrow-bar-up::before {
  content: "\f115";
}
body.ski-rental-page .bi-arrow-clockwise::before {
  content: "\f116";
}
body.ski-rental-page .bi-arrow-counterclockwise::before {
  content: "\f117";
}
body.ski-rental-page .bi-arrow-down-circle-fill::before {
  content: "\f118";
}
body.ski-rental-page .bi-arrow-down-circle::before {
  content: "\f119";
}
body.ski-rental-page .bi-arrow-down-left-circle-fill::before {
  content: "\f11a";
}
body.ski-rental-page .bi-arrow-down-left-circle::before {
  content: "\f11b";
}
body.ski-rental-page .bi-arrow-down-left-square-fill::before {
  content: "\f11c";
}
body.ski-rental-page .bi-arrow-down-left-square::before {
  content: "\f11d";
}
body.ski-rental-page .bi-arrow-down-left::before {
  content: "\f11e";
}
body.ski-rental-page .bi-arrow-down-right-circle-fill::before {
  content: "\f11f";
}
body.ski-rental-page .bi-arrow-down-right-circle::before {
  content: "\f120";
}
body.ski-rental-page .bi-arrow-down-right-square-fill::before {
  content: "\f121";
}
body.ski-rental-page .bi-arrow-down-right-square::before {
  content: "\f122";
}
body.ski-rental-page .bi-arrow-down-right::before {
  content: "\f123";
}
body.ski-rental-page .bi-arrow-down-short::before {
  content: "\f124";
}
body.ski-rental-page .bi-arrow-down-square-fill::before {
  content: "\f125";
}
body.ski-rental-page .bi-arrow-down-square::before {
  content: "\f126";
}
body.ski-rental-page .bi-arrow-down-up::before {
  content: "\f127";
}
body.ski-rental-page .bi-arrow-down::before {
  content: "\f128";
}
body.ski-rental-page .bi-arrow-left-circle-fill::before {
  content: "\f129";
}
body.ski-rental-page .bi-arrow-left-circle::before {
  content: "\f12a";
}
body.ski-rental-page .bi-arrow-left-right::before {
  content: "\f12b";
}
body.ski-rental-page .bi-arrow-left-short::before {
  content: "\f12c";
}
body.ski-rental-page .bi-arrow-left-square-fill::before {
  content: "\f12d";
}
body.ski-rental-page .bi-arrow-left-square::before {
  content: "\f12e";
}
body.ski-rental-page .bi-arrow-left::before {
  content: "\f12f";
}
body.ski-rental-page .bi-arrow-repeat::before {
  content: "\f130";
}
body.ski-rental-page .bi-arrow-return-left::before {
  content: "\f131";
}
body.ski-rental-page .bi-arrow-return-right::before {
  content: "\f132";
}
body.ski-rental-page .bi-arrow-right-circle-fill::before {
  content: "\f133";
}
body.ski-rental-page .bi-arrow-right-circle::before {
  content: "\f134";
}
body.ski-rental-page .bi-arrow-right-short::before {
  content: "\f135";
}
body.ski-rental-page .bi-arrow-right-square-fill::before {
  content: "\f136";
}
body.ski-rental-page .bi-arrow-right-square::before {
  content: "\f137";
}
body.ski-rental-page .bi-arrow-right::before {
  content: "\f138";
}
body.ski-rental-page .bi-arrow-up-circle-fill::before {
  content: "\f139";
}
body.ski-rental-page .bi-arrow-up-circle::before {
  content: "\f13a";
}
body.ski-rental-page .bi-arrow-up-left-circle-fill::before {
  content: "\f13b";
}
body.ski-rental-page .bi-arrow-up-left-circle::before {
  content: "\f13c";
}
body.ski-rental-page .bi-arrow-up-left-square-fill::before {
  content: "\f13d";
}
body.ski-rental-page .bi-arrow-up-left-square::before {
  content: "\f13e";
}
body.ski-rental-page .bi-arrow-up-left::before {
  content: "\f13f";
}
body.ski-rental-page .bi-arrow-up-right-circle-fill::before {
  content: "\f140";
}
body.ski-rental-page .bi-arrow-up-right-circle::before {
  content: "\f141";
}
body.ski-rental-page .bi-arrow-up-right-square-fill::before {
  content: "\f142";
}
body.ski-rental-page .bi-arrow-up-right-square::before {
  content: "\f143";
}
body.ski-rental-page .bi-arrow-up-right::before {
  content: "\f144";
}
body.ski-rental-page .bi-arrow-up-short::before {
  content: "\f145";
}
body.ski-rental-page .bi-arrow-up-square-fill::before {
  content: "\f146";
}
body.ski-rental-page .bi-arrow-up-square::before {
  content: "\f147";
}
body.ski-rental-page .bi-arrow-up::before {
  content: "\f148";
}
body.ski-rental-page .bi-arrows-angle-contract::before {
  content: "\f149";
}
body.ski-rental-page .bi-arrows-angle-expand::before {
  content: "\f14a";
}
body.ski-rental-page .bi-arrows-collapse::before {
  content: "\f14b";
}
body.ski-rental-page .bi-arrows-expand::before {
  content: "\f14c";
}
body.ski-rental-page .bi-arrows-fullscreen::before {
  content: "\f14d";
}
body.ski-rental-page .bi-arrows-move::before {
  content: "\f14e";
}
body.ski-rental-page .bi-aspect-ratio-fill::before {
  content: "\f14f";
}
body.ski-rental-page .bi-aspect-ratio::before {
  content: "\f150";
}
body.ski-rental-page .bi-asterisk::before {
  content: "\f151";
}
body.ski-rental-page .bi-at::before {
  content: "\f152";
}
body.ski-rental-page .bi-award-fill::before {
  content: "\f153";
}
body.ski-rental-page .bi-award::before {
  content: "\f154";
}
body.ski-rental-page .bi-back::before {
  content: "\f155";
}
body.ski-rental-page .bi-backspace-fill::before {
  content: "\f156";
}
body.ski-rental-page .bi-backspace-reverse-fill::before {
  content: "\f157";
}
body.ski-rental-page .bi-backspace-reverse::before {
  content: "\f158";
}
body.ski-rental-page .bi-backspace::before {
  content: "\f159";
}
body.ski-rental-page .bi-badge-3d-fill::before {
  content: "\f15a";
}
body.ski-rental-page .bi-badge-3d::before {
  content: "\f15b";
}
body.ski-rental-page .bi-badge-4k-fill::before {
  content: "\f15c";
}
body.ski-rental-page .bi-badge-4k::before {
  content: "\f15d";
}
body.ski-rental-page .bi-badge-8k-fill::before {
  content: "\f15e";
}
body.ski-rental-page .bi-badge-8k::before {
  content: "\f15f";
}
body.ski-rental-page .bi-badge-ad-fill::before {
  content: "\f160";
}
body.ski-rental-page .bi-badge-ad::before {
  content: "\f161";
}
body.ski-rental-page .bi-badge-ar-fill::before {
  content: "\f162";
}
body.ski-rental-page .bi-badge-ar::before {
  content: "\f163";
}
body.ski-rental-page .bi-badge-cc-fill::before {
  content: "\f164";
}
body.ski-rental-page .bi-badge-cc::before {
  content: "\f165";
}
body.ski-rental-page .bi-badge-hd-fill::before {
  content: "\f166";
}
body.ski-rental-page .bi-badge-hd::before {
  content: "\f167";
}
body.ski-rental-page .bi-badge-tm-fill::before {
  content: "\f168";
}
body.ski-rental-page .bi-badge-tm::before {
  content: "\f169";
}
body.ski-rental-page .bi-badge-vo-fill::before {
  content: "\f16a";
}
body.ski-rental-page .bi-badge-vo::before {
  content: "\f16b";
}
body.ski-rental-page .bi-badge-vr-fill::before {
  content: "\f16c";
}
body.ski-rental-page .bi-badge-vr::before {
  content: "\f16d";
}
body.ski-rental-page .bi-badge-wc-fill::before {
  content: "\f16e";
}
body.ski-rental-page .bi-badge-wc::before {
  content: "\f16f";
}
body.ski-rental-page .bi-bag-check-fill::before {
  content: "\f170";
}
body.ski-rental-page .bi-bag-check::before {
  content: "\f171";
}
body.ski-rental-page .bi-bag-dash-fill::before {
  content: "\f172";
}
body.ski-rental-page .bi-bag-dash::before {
  content: "\f173";
}
body.ski-rental-page .bi-bag-fill::before {
  content: "\f174";
}
body.ski-rental-page .bi-bag-plus-fill::before {
  content: "\f175";
}
body.ski-rental-page .bi-bag-plus::before {
  content: "\f176";
}
body.ski-rental-page .bi-bag-x-fill::before {
  content: "\f177";
}
body.ski-rental-page .bi-bag-x::before {
  content: "\f178";
}
body.ski-rental-page .bi-bag::before {
  content: "\f179";
}
body.ski-rental-page .bi-bar-chart-fill::before {
  content: "\f17a";
}
body.ski-rental-page .bi-bar-chart-line-fill::before {
  content: "\f17b";
}
body.ski-rental-page .bi-bar-chart-line::before {
  content: "\f17c";
}
body.ski-rental-page .bi-bar-chart-steps::before {
  content: "\f17d";
}
body.ski-rental-page .bi-bar-chart::before {
  content: "\f17e";
}
body.ski-rental-page .bi-basket-fill::before {
  content: "\f17f";
}
body.ski-rental-page .bi-basket::before {
  content: "\f180";
}
body.ski-rental-page .bi-basket2-fill::before {
  content: "\f181";
}
body.ski-rental-page .bi-basket2::before {
  content: "\f182";
}
body.ski-rental-page .bi-basket3-fill::before {
  content: "\f183";
}
body.ski-rental-page .bi-basket3::before {
  content: "\f184";
}
body.ski-rental-page .bi-battery-charging::before {
  content: "\f185";
}
body.ski-rental-page .bi-battery-full::before {
  content: "\f186";
}
body.ski-rental-page .bi-battery-half::before {
  content: "\f187";
}
body.ski-rental-page .bi-battery::before {
  content: "\f188";
}
body.ski-rental-page .bi-bell-fill::before {
  content: "\f189";
}
body.ski-rental-page .bi-bell::before {
  content: "\f18a";
}
body.ski-rental-page .bi-bezier::before {
  content: "\f18b";
}
body.ski-rental-page .bi-bezier2::before {
  content: "\f18c";
}
body.ski-rental-page .bi-bicycle::before {
  content: "\f18d";
}
body.ski-rental-page .bi-binoculars-fill::before {
  content: "\f18e";
}
body.ski-rental-page .bi-binoculars::before {
  content: "\f18f";
}
body.ski-rental-page .bi-blockquote-left::before {
  content: "\f190";
}
body.ski-rental-page .bi-blockquote-right::before {
  content: "\f191";
}
body.ski-rental-page .bi-book-fill::before {
  content: "\f192";
}
body.ski-rental-page .bi-book-half::before {
  content: "\f193";
}
body.ski-rental-page .bi-book::before {
  content: "\f194";
}
body.ski-rental-page .bi-bookmark-check-fill::before {
  content: "\f195";
}
body.ski-rental-page .bi-bookmark-check::before {
  content: "\f196";
}
body.ski-rental-page .bi-bookmark-dash-fill::before {
  content: "\f197";
}
body.ski-rental-page .bi-bookmark-dash::before {
  content: "\f198";
}
body.ski-rental-page .bi-bookmark-fill::before {
  content: "\f199";
}
body.ski-rental-page .bi-bookmark-heart-fill::before {
  content: "\f19a";
}
body.ski-rental-page .bi-bookmark-heart::before {
  content: "\f19b";
}
body.ski-rental-page .bi-bookmark-plus-fill::before {
  content: "\f19c";
}
body.ski-rental-page .bi-bookmark-plus::before {
  content: "\f19d";
}
body.ski-rental-page .bi-bookmark-star-fill::before {
  content: "\f19e";
}
body.ski-rental-page .bi-bookmark-star::before {
  content: "\f19f";
}
body.ski-rental-page .bi-bookmark-x-fill::before {
  content: "\f1a0";
}
body.ski-rental-page .bi-bookmark-x::before {
  content: "\f1a1";
}
body.ski-rental-page .bi-bookmark::before {
  content: "\f1a2";
}
body.ski-rental-page .bi-bookmarks-fill::before {
  content: "\f1a3";
}
body.ski-rental-page .bi-bookmarks::before {
  content: "\f1a4";
}
body.ski-rental-page .bi-bookshelf::before {
  content: "\f1a5";
}
body.ski-rental-page .bi-bootstrap-fill::before {
  content: "\f1a6";
}
body.ski-rental-page .bi-bootstrap-reboot::before {
  content: "\f1a7";
}
body.ski-rental-page .bi-bootstrap::before {
  content: "\f1a8";
}
body.ski-rental-page .bi-border-all::before {
  content: "\f1a9";
}
body.ski-rental-page .bi-border-bottom::before {
  content: "\f1aa";
}
body.ski-rental-page .bi-border-center::before {
  content: "\f1ab";
}
body.ski-rental-page .bi-border-inner::before {
  content: "\f1ac";
}
body.ski-rental-page .bi-border-left::before {
  content: "\f1ad";
}
body.ski-rental-page .bi-border-middle::before {
  content: "\f1ae";
}
body.ski-rental-page .bi-border-outer::before {
  content: "\f1af";
}
body.ski-rental-page .bi-border-right::before {
  content: "\f1b0";
}
body.ski-rental-page .bi-border-style::before {
  content: "\f1b1";
}
body.ski-rental-page .bi-border-top::before {
  content: "\f1b2";
}
body.ski-rental-page .bi-border-width::before {
  content: "\f1b3";
}
body.ski-rental-page .bi-border::before {
  content: "\f1b4";
}
body.ski-rental-page .bi-bounding-box-circles::before {
  content: "\f1b5";
}
body.ski-rental-page .bi-bounding-box::before {
  content: "\f1b6";
}
body.ski-rental-page .bi-box-arrow-down-left::before {
  content: "\f1b7";
}
body.ski-rental-page .bi-box-arrow-down-right::before {
  content: "\f1b8";
}
body.ski-rental-page .bi-box-arrow-down::before {
  content: "\f1b9";
}
body.ski-rental-page .bi-box-arrow-in-down-left::before {
  content: "\f1ba";
}
body.ski-rental-page .bi-box-arrow-in-down-right::before {
  content: "\f1bb";
}
body.ski-rental-page .bi-box-arrow-in-down::before {
  content: "\f1bc";
}
body.ski-rental-page .bi-box-arrow-in-left::before {
  content: "\f1bd";
}
body.ski-rental-page .bi-box-arrow-in-right::before {
  content: "\f1be";
}
body.ski-rental-page .bi-box-arrow-in-up-left::before {
  content: "\f1bf";
}
body.ski-rental-page .bi-box-arrow-in-up-right::before {
  content: "\f1c0";
}
body.ski-rental-page .bi-box-arrow-in-up::before {
  content: "\f1c1";
}
body.ski-rental-page .bi-box-arrow-left::before {
  content: "\f1c2";
}
body.ski-rental-page .bi-box-arrow-right::before {
  content: "\f1c3";
}
body.ski-rental-page .bi-box-arrow-up-left::before {
  content: "\f1c4";
}
body.ski-rental-page .bi-box-arrow-up-right::before {
  content: "\f1c5";
}
body.ski-rental-page .bi-box-arrow-up::before {
  content: "\f1c6";
}
body.ski-rental-page .bi-box-seam::before {
  content: "\f1c7";
}
body.ski-rental-page .bi-box::before {
  content: "\f1c8";
}
body.ski-rental-page .bi-braces::before {
  content: "\f1c9";
}
body.ski-rental-page .bi-bricks::before {
  content: "\f1ca";
}
body.ski-rental-page .bi-briefcase-fill::before {
  content: "\f1cb";
}
body.ski-rental-page .bi-briefcase::before {
  content: "\f1cc";
}
body.ski-rental-page .bi-brightness-alt-high-fill::before {
  content: "\f1cd";
}
body.ski-rental-page .bi-brightness-alt-high::before {
  content: "\f1ce";
}
body.ski-rental-page .bi-brightness-alt-low-fill::before {
  content: "\f1cf";
}
body.ski-rental-page .bi-brightness-alt-low::before {
  content: "\f1d0";
}
body.ski-rental-page .bi-brightness-high-fill::before {
  content: "\f1d1";
}
body.ski-rental-page .bi-brightness-high::before {
  content: "\f1d2";
}
body.ski-rental-page .bi-brightness-low-fill::before {
  content: "\f1d3";
}
body.ski-rental-page .bi-brightness-low::before {
  content: "\f1d4";
}
body.ski-rental-page .bi-broadcast-pin::before {
  content: "\f1d5";
}
body.ski-rental-page .bi-broadcast::before {
  content: "\f1d6";
}
body.ski-rental-page .bi-brush-fill::before {
  content: "\f1d7";
}
body.ski-rental-page .bi-brush::before {
  content: "\f1d8";
}
body.ski-rental-page .bi-bucket-fill::before {
  content: "\f1d9";
}
body.ski-rental-page .bi-bucket::before {
  content: "\f1da";
}
body.ski-rental-page .bi-bug-fill::before {
  content: "\f1db";
}
body.ski-rental-page .bi-bug::before {
  content: "\f1dc";
}
body.ski-rental-page .bi-building::before {
  content: "\f1dd";
}
body.ski-rental-page .bi-bullseye::before {
  content: "\f1de";
}
body.ski-rental-page .bi-calculator-fill::before {
  content: "\f1df";
}
body.ski-rental-page .bi-calculator::before {
  content: "\f1e0";
}
body.ski-rental-page .bi-calendar-check-fill::before {
  content: "\f1e1";
}
body.ski-rental-page .bi-calendar-check::before {
  content: "\f1e2";
}
body.ski-rental-page .bi-calendar-date-fill::before {
  content: "\f1e3";
}
body.ski-rental-page .bi-calendar-date::before {
  content: "\f1e4";
}
body.ski-rental-page .bi-calendar-day-fill::before {
  content: "\f1e5";
}
body.ski-rental-page .bi-calendar-day::before {
  content: "\f1e6";
}
body.ski-rental-page .bi-calendar-event-fill::before {
  content: "\f1e7";
}
body.ski-rental-page .bi-calendar-event::before {
  content: "\f1e8";
}
body.ski-rental-page .bi-calendar-fill::before {
  content: "\f1e9";
}
body.ski-rental-page .bi-calendar-minus-fill::before {
  content: "\f1ea";
}
body.ski-rental-page .bi-calendar-minus::before {
  content: "\f1eb";
}
body.ski-rental-page .bi-calendar-month-fill::before {
  content: "\f1ec";
}
body.ski-rental-page .bi-calendar-month::before {
  content: "\f1ed";
}
body.ski-rental-page .bi-calendar-plus-fill::before {
  content: "\f1ee";
}
body.ski-rental-page .bi-calendar-plus::before {
  content: "\f1ef";
}
body.ski-rental-page .bi-calendar-range-fill::before {
  content: "\f1f0";
}
body.ski-rental-page .bi-calendar-range::before {
  content: "\f1f1";
}
body.ski-rental-page .bi-calendar-week-fill::before {
  content: "\f1f2";
}
body.ski-rental-page .bi-calendar-week::before {
  content: "\f1f3";
}
body.ski-rental-page .bi-calendar-x-fill::before {
  content: "\f1f4";
}
body.ski-rental-page .bi-calendar-x::before {
  content: "\f1f5";
}
body.ski-rental-page .bi-calendar::before {
  content: "\f1f6";
}
body.ski-rental-page .bi-calendar2-check-fill::before {
  content: "\f1f7";
}
body.ski-rental-page .bi-calendar2-check::before {
  content: "\f1f8";
}
body.ski-rental-page .bi-calendar2-date-fill::before {
  content: "\f1f9";
}
body.ski-rental-page .bi-calendar2-date::before {
  content: "\f1fa";
}
body.ski-rental-page .bi-calendar2-day-fill::before {
  content: "\f1fb";
}
body.ski-rental-page .bi-calendar2-day::before {
  content: "\f1fc";
}
body.ski-rental-page .bi-calendar2-event-fill::before {
  content: "\f1fd";
}
body.ski-rental-page .bi-calendar2-event::before {
  content: "\f1fe";
}
body.ski-rental-page .bi-calendar2-fill::before {
  content: "\f1ff";
}
body.ski-rental-page .bi-calendar2-minus-fill::before {
  content: "\f200";
}
body.ski-rental-page .bi-calendar2-minus::before {
  content: "\f201";
}
body.ski-rental-page .bi-calendar2-month-fill::before {
  content: "\f202";
}
body.ski-rental-page .bi-calendar2-month::before {
  content: "\f203";
}
body.ski-rental-page .bi-calendar2-plus-fill::before {
  content: "\f204";
}
body.ski-rental-page .bi-calendar2-plus::before {
  content: "\f205";
}
body.ski-rental-page .bi-calendar2-range-fill::before {
  content: "\f206";
}
body.ski-rental-page .bi-calendar2-range::before {
  content: "\f207";
}
body.ski-rental-page .bi-calendar2-week-fill::before {
  content: "\f208";
}
body.ski-rental-page .bi-calendar2-week::before {
  content: "\f209";
}
body.ski-rental-page .bi-calendar2-x-fill::before {
  content: "\f20a";
}
body.ski-rental-page .bi-calendar2-x::before {
  content: "\f20b";
}
body.ski-rental-page .bi-calendar2::before {
  content: "\f20c";
}
body.ski-rental-page .bi-calendar3-event-fill::before {
  content: "\f20d";
}
body.ski-rental-page .bi-calendar3-event::before {
  content: "\f20e";
}
body.ski-rental-page .bi-calendar3-fill::before {
  content: "\f20f";
}
body.ski-rental-page .bi-calendar3-range-fill::before {
  content: "\f210";
}
body.ski-rental-page .bi-calendar3-range::before {
  content: "\f211";
}
body.ski-rental-page .bi-calendar3-week-fill::before {
  content: "\f212";
}
body.ski-rental-page .bi-calendar3-week::before {
  content: "\f213";
}
body.ski-rental-page .bi-calendar3::before {
  content: "\f214";
}
body.ski-rental-page .bi-calendar4-event::before {
  content: "\f215";
}
body.ski-rental-page .bi-calendar4-range::before {
  content: "\f216";
}
body.ski-rental-page .bi-calendar4-week::before {
  content: "\f217";
}
body.ski-rental-page .bi-calendar4::before {
  content: "\f218";
}
body.ski-rental-page .bi-camera-fill::before {
  content: "\f219";
}
body.ski-rental-page .bi-camera-reels-fill::before {
  content: "\f21a";
}
body.ski-rental-page .bi-camera-reels::before {
  content: "\f21b";
}
body.ski-rental-page .bi-camera-video-fill::before {
  content: "\f21c";
}
body.ski-rental-page .bi-camera-video-off-fill::before {
  content: "\f21d";
}
body.ski-rental-page .bi-camera-video-off::before {
  content: "\f21e";
}
body.ski-rental-page .bi-camera-video::before {
  content: "\f21f";
}
body.ski-rental-page .bi-camera::before {
  content: "\f220";
}
body.ski-rental-page .bi-camera2::before {
  content: "\f221";
}
body.ski-rental-page .bi-capslock-fill::before {
  content: "\f222";
}
body.ski-rental-page .bi-capslock::before {
  content: "\f223";
}
body.ski-rental-page .bi-card-checklist::before {
  content: "\f224";
}
body.ski-rental-page .bi-card-heading::before {
  content: "\f225";
}
body.ski-rental-page .bi-card-image::before {
  content: "\f226";
}
body.ski-rental-page .bi-card-list::before {
  content: "\f227";
}
body.ski-rental-page .bi-card-text::before {
  content: "\f228";
}
body.ski-rental-page .bi-caret-down-fill::before {
  content: "\f229";
}
body.ski-rental-page .bi-caret-down-square-fill::before {
  content: "\f22a";
}
body.ski-rental-page .bi-caret-down-square::before {
  content: "\f22b";
}
body.ski-rental-page .bi-caret-down::before {
  content: "\f22c";
}
body.ski-rental-page .bi-caret-left-fill::before {
  content: "\f22d";
}
body.ski-rental-page .bi-caret-left-square-fill::before {
  content: "\f22e";
}
body.ski-rental-page .bi-caret-left-square::before {
  content: "\f22f";
}
body.ski-rental-page .bi-caret-left::before {
  content: "\f230";
}
body.ski-rental-page .bi-caret-right-fill::before {
  content: "\f231";
}
body.ski-rental-page .bi-caret-right-square-fill::before {
  content: "\f232";
}
body.ski-rental-page .bi-caret-right-square::before {
  content: "\f233";
}
body.ski-rental-page .bi-caret-right::before {
  content: "\f234";
}
body.ski-rental-page .bi-caret-up-fill::before {
  content: "\f235";
}
body.ski-rental-page .bi-caret-up-square-fill::before {
  content: "\f236";
}
body.ski-rental-page .bi-caret-up-square::before {
  content: "\f237";
}
body.ski-rental-page .bi-caret-up::before {
  content: "\f238";
}
body.ski-rental-page .bi-cart-check-fill::before {
  content: "\f239";
}
body.ski-rental-page .bi-cart-check::before {
  content: "\f23a";
}
body.ski-rental-page .bi-cart-dash-fill::before {
  content: "\f23b";
}
body.ski-rental-page .bi-cart-dash::before {
  content: "\f23c";
}
body.ski-rental-page .bi-cart-fill::before {
  content: "\f23d";
}
body.ski-rental-page .bi-cart-plus-fill::before {
  content: "\f23e";
}
body.ski-rental-page .bi-cart-plus::before {
  content: "\f23f";
}
body.ski-rental-page .bi-cart-x-fill::before {
  content: "\f240";
}
body.ski-rental-page .bi-cart-x::before {
  content: "\f241";
}
body.ski-rental-page .bi-cart::before {
  content: "\f242";
}
body.ski-rental-page .bi-cart2::before {
  content: "\f243";
}
body.ski-rental-page .bi-cart3::before {
  content: "\f244";
}
body.ski-rental-page .bi-cart4::before {
  content: "\f245";
}
body.ski-rental-page .bi-cash-stack::before {
  content: "\f246";
}
body.ski-rental-page .bi-cash::before {
  content: "\f247";
}
body.ski-rental-page .bi-cast::before {
  content: "\f248";
}
body.ski-rental-page .bi-chat-dots-fill::before {
  content: "\f249";
}
body.ski-rental-page .bi-chat-dots::before {
  content: "\f24a";
}
body.ski-rental-page .bi-chat-fill::before {
  content: "\f24b";
}
body.ski-rental-page .bi-chat-left-dots-fill::before {
  content: "\f24c";
}
body.ski-rental-page .bi-chat-left-dots::before {
  content: "\f24d";
}
body.ski-rental-page .bi-chat-left-fill::before {
  content: "\f24e";
}
body.ski-rental-page .bi-chat-left-quote-fill::before {
  content: "\f24f";
}
body.ski-rental-page .bi-chat-left-quote::before {
  content: "\f250";
}
body.ski-rental-page .bi-chat-left-text-fill::before {
  content: "\f251";
}
body.ski-rental-page .bi-chat-left-text::before {
  content: "\f252";
}
body.ski-rental-page .bi-chat-left::before {
  content: "\f253";
}
body.ski-rental-page .bi-chat-quote-fill::before {
  content: "\f254";
}
body.ski-rental-page .bi-chat-quote::before {
  content: "\f255";
}
body.ski-rental-page .bi-chat-right-dots-fill::before {
  content: "\f256";
}
body.ski-rental-page .bi-chat-right-dots::before {
  content: "\f257";
}
body.ski-rental-page .bi-chat-right-fill::before {
  content: "\f258";
}
body.ski-rental-page .bi-chat-right-quote-fill::before {
  content: "\f259";
}
body.ski-rental-page .bi-chat-right-quote::before {
  content: "\f25a";
}
body.ski-rental-page .bi-chat-right-text-fill::before {
  content: "\f25b";
}
body.ski-rental-page .bi-chat-right-text::before {
  content: "\f25c";
}
body.ski-rental-page .bi-chat-right::before {
  content: "\f25d";
}
body.ski-rental-page .bi-chat-square-dots-fill::before {
  content: "\f25e";
}
body.ski-rental-page .bi-chat-square-dots::before {
  content: "\f25f";
}
body.ski-rental-page .bi-chat-square-fill::before {
  content: "\f260";
}
body.ski-rental-page .bi-chat-square-quote-fill::before {
  content: "\f261";
}
body.ski-rental-page .bi-chat-square-quote::before {
  content: "\f262";
}
body.ski-rental-page .bi-chat-square-text-fill::before {
  content: "\f263";
}
body.ski-rental-page .bi-chat-square-text::before {
  content: "\f264";
}
body.ski-rental-page .bi-chat-square::before {
  content: "\f265";
}
body.ski-rental-page .bi-chat-text-fill::before {
  content: "\f266";
}
body.ski-rental-page .bi-chat-text::before {
  content: "\f267";
}
body.ski-rental-page .bi-chat::before {
  content: "\f268";
}
body.ski-rental-page .bi-check-all::before {
  content: "\f269";
}
body.ski-rental-page .bi-check-circle-fill::before {
  content: "\f26a";
}
body.ski-rental-page .bi-check-circle::before {
  content: "\f26b";
}
body.ski-rental-page .bi-check-square-fill::before {
  content: "\f26c";
}
body.ski-rental-page .bi-check-square::before {
  content: "\f26d";
}
body.ski-rental-page .bi-check::before {
  content: "\f26e";
}
body.ski-rental-page .bi-check2-all::before {
  content: "\f26f";
}
body.ski-rental-page .bi-check2-circle::before {
  content: "\f270";
}
body.ski-rental-page .bi-check2-square::before {
  content: "\f271";
}
body.ski-rental-page .bi-check2::before {
  content: "\f272";
}
body.ski-rental-page .bi-chevron-bar-contract::before {
  content: "\f273";
}
body.ski-rental-page .bi-chevron-bar-down::before {
  content: "\f274";
}
body.ski-rental-page .bi-chevron-bar-expand::before {
  content: "\f275";
}
body.ski-rental-page .bi-chevron-bar-left::before {
  content: "\f276";
}
body.ski-rental-page .bi-chevron-bar-right::before {
  content: "\f277";
}
body.ski-rental-page .bi-chevron-bar-up::before {
  content: "\f278";
}
body.ski-rental-page .bi-chevron-compact-down::before {
  content: "\f279";
}
body.ski-rental-page .bi-chevron-compact-left::before {
  content: "\f27a";
}
body.ski-rental-page .bi-chevron-compact-right::before {
  content: "\f27b";
}
body.ski-rental-page .bi-chevron-compact-up::before {
  content: "\f27c";
}
body.ski-rental-page .bi-chevron-contract::before {
  content: "\f27d";
}
body.ski-rental-page .bi-chevron-double-down::before {
  content: "\f27e";
}
body.ski-rental-page .bi-chevron-double-left::before {
  content: "\f27f";
}
body.ski-rental-page .bi-chevron-double-right::before {
  content: "\f280";
}
body.ski-rental-page .bi-chevron-double-up::before {
  content: "\f281";
}
body.ski-rental-page .bi-chevron-down::before {
  content: "\f282";
}
body.ski-rental-page .bi-chevron-expand::before {
  content: "\f283";
}
body.ski-rental-page .bi-chevron-left::before {
  content: "\f284";
}
body.ski-rental-page .bi-chevron-right::before {
  content: "\f285";
}
body.ski-rental-page .bi-chevron-up::before {
  content: "\f286";
}
body.ski-rental-page .bi-circle-fill::before {
  content: "\f287";
}
body.ski-rental-page .bi-circle-half::before {
  content: "\f288";
}
body.ski-rental-page .bi-circle-square::before {
  content: "\f289";
}
body.ski-rental-page .bi-circle::before {
  content: "\f28a";
}
body.ski-rental-page .bi-clipboard-check::before {
  content: "\f28b";
}
body.ski-rental-page .bi-clipboard-data::before {
  content: "\f28c";
}
body.ski-rental-page .bi-clipboard-minus::before {
  content: "\f28d";
}
body.ski-rental-page .bi-clipboard-plus::before {
  content: "\f28e";
}
body.ski-rental-page .bi-clipboard-x::before {
  content: "\f28f";
}
body.ski-rental-page .bi-clipboard::before {
  content: "\f290";
}
body.ski-rental-page .bi-clock-fill::before {
  content: "\f291";
}
body.ski-rental-page .bi-clock-history::before {
  content: "\f292";
}
body.ski-rental-page .bi-clock::before {
  content: "\f293";
}
body.ski-rental-page .bi-cloud-arrow-down-fill::before {
  content: "\f294";
}
body.ski-rental-page .bi-cloud-arrow-down::before {
  content: "\f295";
}
body.ski-rental-page .bi-cloud-arrow-up-fill::before {
  content: "\f296";
}
body.ski-rental-page .bi-cloud-arrow-up::before {
  content: "\f297";
}
body.ski-rental-page .bi-cloud-check-fill::before {
  content: "\f298";
}
body.ski-rental-page .bi-cloud-check::before {
  content: "\f299";
}
body.ski-rental-page .bi-cloud-download-fill::before {
  content: "\f29a";
}
body.ski-rental-page .bi-cloud-download::before {
  content: "\f29b";
}
body.ski-rental-page .bi-cloud-drizzle-fill::before {
  content: "\f29c";
}
body.ski-rental-page .bi-cloud-drizzle::before {
  content: "\f29d";
}
body.ski-rental-page .bi-cloud-fill::before {
  content: "\f29e";
}
body.ski-rental-page .bi-cloud-fog-fill::before {
  content: "\f29f";
}
body.ski-rental-page .bi-cloud-fog::before {
  content: "\f2a0";
}
body.ski-rental-page .bi-cloud-fog2-fill::before {
  content: "\f2a1";
}
body.ski-rental-page .bi-cloud-fog2::before {
  content: "\f2a2";
}
body.ski-rental-page .bi-cloud-hail-fill::before {
  content: "\f2a3";
}
body.ski-rental-page .bi-cloud-hail::before {
  content: "\f2a4";
}
body.ski-rental-page .bi-cloud-haze-1::before {
  content: "\f2a5";
}
body.ski-rental-page .bi-cloud-haze-fill::before {
  content: "\f2a6";
}
body.ski-rental-page .bi-cloud-haze::before {
  content: "\f2a7";
}
body.ski-rental-page .bi-cloud-haze2-fill::before {
  content: "\f2a8";
}
body.ski-rental-page .bi-cloud-lightning-fill::before {
  content: "\f2a9";
}
body.ski-rental-page .bi-cloud-lightning-rain-fill::before {
  content: "\f2aa";
}
body.ski-rental-page .bi-cloud-lightning-rain::before {
  content: "\f2ab";
}
body.ski-rental-page .bi-cloud-lightning::before {
  content: "\f2ac";
}
body.ski-rental-page .bi-cloud-minus-fill::before {
  content: "\f2ad";
}
body.ski-rental-page .bi-cloud-minus::before {
  content: "\f2ae";
}
body.ski-rental-page .bi-cloud-moon-fill::before {
  content: "\f2af";
}
body.ski-rental-page .bi-cloud-moon::before {
  content: "\f2b0";
}
body.ski-rental-page .bi-cloud-plus-fill::before {
  content: "\f2b1";
}
body.ski-rental-page .bi-cloud-plus::before {
  content: "\f2b2";
}
body.ski-rental-page .bi-cloud-rain-fill::before {
  content: "\f2b3";
}
body.ski-rental-page .bi-cloud-rain-heavy-fill::before {
  content: "\f2b4";
}
body.ski-rental-page .bi-cloud-rain-heavy::before {
  content: "\f2b5";
}
body.ski-rental-page .bi-cloud-rain::before {
  content: "\f2b6";
}
body.ski-rental-page .bi-cloud-slash-fill::before {
  content: "\f2b7";
}
body.ski-rental-page .bi-cloud-slash::before {
  content: "\f2b8";
}
body.ski-rental-page .bi-cloud-sleet-fill::before {
  content: "\f2b9";
}
body.ski-rental-page .bi-cloud-sleet::before {
  content: "\f2ba";
}
body.ski-rental-page .bi-cloud-snow-fill::before {
  content: "\f2bb";
}
body.ski-rental-page .bi-cloud-snow::before {
  content: "\f2bc";
}
body.ski-rental-page .bi-cloud-sun-fill::before {
  content: "\f2bd";
}
body.ski-rental-page .bi-cloud-sun::before {
  content: "\f2be";
}
body.ski-rental-page .bi-cloud-upload-fill::before {
  content: "\f2bf";
}
body.ski-rental-page .bi-cloud-upload::before {
  content: "\f2c0";
}
body.ski-rental-page .bi-cloud::before {
  content: "\f2c1";
}
body.ski-rental-page .bi-clouds-fill::before {
  content: "\f2c2";
}
body.ski-rental-page .bi-clouds::before {
  content: "\f2c3";
}
body.ski-rental-page .bi-cloudy-fill::before {
  content: "\f2c4";
}
body.ski-rental-page .bi-cloudy::before {
  content: "\f2c5";
}
body.ski-rental-page .bi-code-slash::before {
  content: "\f2c6";
}
body.ski-rental-page .bi-code-square::before {
  content: "\f2c7";
}
body.ski-rental-page .bi-code::before {
  content: "\f2c8";
}
body.ski-rental-page .bi-collection-fill::before {
  content: "\f2c9";
}
body.ski-rental-page .bi-collection-play-fill::before {
  content: "\f2ca";
}
body.ski-rental-page .bi-collection-play::before {
  content: "\f2cb";
}
body.ski-rental-page .bi-collection::before {
  content: "\f2cc";
}
body.ski-rental-page .bi-columns-gap::before {
  content: "\f2cd";
}
body.ski-rental-page .bi-columns::before {
  content: "\f2ce";
}
body.ski-rental-page .bi-command::before {
  content: "\f2cf";
}
body.ski-rental-page .bi-compass-fill::before {
  content: "\f2d0";
}
body.ski-rental-page .bi-compass::before {
  content: "\f2d1";
}
body.ski-rental-page .bi-cone-striped::before {
  content: "\f2d2";
}
body.ski-rental-page .bi-cone::before {
  content: "\f2d3";
}
body.ski-rental-page .bi-controller::before {
  content: "\f2d4";
}
body.ski-rental-page .bi-cpu-fill::before {
  content: "\f2d5";
}
body.ski-rental-page .bi-cpu::before {
  content: "\f2d6";
}
body.ski-rental-page .bi-credit-card-2-back-fill::before {
  content: "\f2d7";
}
body.ski-rental-page .bi-credit-card-2-back::before {
  content: "\f2d8";
}
body.ski-rental-page .bi-credit-card-2-front-fill::before {
  content: "\f2d9";
}
body.ski-rental-page .bi-credit-card-2-front::before {
  content: "\f2da";
}
body.ski-rental-page .bi-credit-card-fill::before {
  content: "\f2db";
}
body.ski-rental-page .bi-credit-card::before {
  content: "\f2dc";
}
body.ski-rental-page .bi-crop::before {
  content: "\f2dd";
}
body.ski-rental-page .bi-cup-fill::before {
  content: "\f2de";
}
body.ski-rental-page .bi-cup-straw::before {
  content: "\f2df";
}
body.ski-rental-page .bi-cup::before {
  content: "\f2e0";
}
body.ski-rental-page .bi-cursor-fill::before {
  content: "\f2e1";
}
body.ski-rental-page .bi-cursor-text::before {
  content: "\f2e2";
}
body.ski-rental-page .bi-cursor::before {
  content: "\f2e3";
}
body.ski-rental-page .bi-dash-circle-dotted::before {
  content: "\f2e4";
}
body.ski-rental-page .bi-dash-circle-fill::before {
  content: "\f2e5";
}
body.ski-rental-page .bi-dash-circle::before {
  content: "\f2e6";
}
body.ski-rental-page .bi-dash-square-dotted::before {
  content: "\f2e7";
}
body.ski-rental-page .bi-dash-square-fill::before {
  content: "\f2e8";
}
body.ski-rental-page .bi-dash-square::before {
  content: "\f2e9";
}
body.ski-rental-page .bi-dash::before {
  content: "\f2ea";
}
body.ski-rental-page .bi-diagram-2-fill::before {
  content: "\f2eb";
}
body.ski-rental-page .bi-diagram-2::before {
  content: "\f2ec";
}
body.ski-rental-page .bi-diagram-3-fill::before {
  content: "\f2ed";
}
body.ski-rental-page .bi-diagram-3::before {
  content: "\f2ee";
}
body.ski-rental-page .bi-diamond-fill::before {
  content: "\f2ef";
}
body.ski-rental-page .bi-diamond-half::before {
  content: "\f2f0";
}
body.ski-rental-page .bi-diamond::before {
  content: "\f2f1";
}
body.ski-rental-page .bi-dice-1-fill::before {
  content: "\f2f2";
}
body.ski-rental-page .bi-dice-1::before {
  content: "\f2f3";
}
body.ski-rental-page .bi-dice-2-fill::before {
  content: "\f2f4";
}
body.ski-rental-page .bi-dice-2::before {
  content: "\f2f5";
}
body.ski-rental-page .bi-dice-3-fill::before {
  content: "\f2f6";
}
body.ski-rental-page .bi-dice-3::before {
  content: "\f2f7";
}
body.ski-rental-page .bi-dice-4-fill::before {
  content: "\f2f8";
}
body.ski-rental-page .bi-dice-4::before {
  content: "\f2f9";
}
body.ski-rental-page .bi-dice-5-fill::before {
  content: "\f2fa";
}
body.ski-rental-page .bi-dice-5::before {
  content: "\f2fb";
}
body.ski-rental-page .bi-dice-6-fill::before {
  content: "\f2fc";
}
body.ski-rental-page .bi-dice-6::before {
  content: "\f2fd";
}
body.ski-rental-page .bi-disc-fill::before {
  content: "\f2fe";
}
body.ski-rental-page .bi-disc::before {
  content: "\f2ff";
}
body.ski-rental-page .bi-discord::before {
  content: "\f300";
}
body.ski-rental-page .bi-display-fill::before {
  content: "\f301";
}
body.ski-rental-page .bi-display::before {
  content: "\f302";
}
body.ski-rental-page .bi-distribute-horizontal::before {
  content: "\f303";
}
body.ski-rental-page .bi-distribute-vertical::before {
  content: "\f304";
}
body.ski-rental-page .bi-door-closed-fill::before {
  content: "\f305";
}
body.ski-rental-page .bi-door-closed::before {
  content: "\f306";
}
body.ski-rental-page .bi-door-open-fill::before {
  content: "\f307";
}
body.ski-rental-page .bi-door-open::before {
  content: "\f308";
}
body.ski-rental-page .bi-dot::before {
  content: "\f309";
}
body.ski-rental-page .bi-download::before {
  content: "\f30a";
}
body.ski-rental-page .bi-droplet-fill::before {
  content: "\f30b";
}
body.ski-rental-page .bi-droplet-half::before {
  content: "\f30c";
}
body.ski-rental-page .bi-droplet::before {
  content: "\f30d";
}
body.ski-rental-page .bi-earbuds::before {
  content: "\f30e";
}
body.ski-rental-page .bi-easel-fill::before {
  content: "\f30f";
}
body.ski-rental-page .bi-easel::before {
  content: "\f310";
}
body.ski-rental-page .bi-egg-fill::before {
  content: "\f311";
}
body.ski-rental-page .bi-egg-fried::before {
  content: "\f312";
}
body.ski-rental-page .bi-egg::before {
  content: "\f313";
}
body.ski-rental-page .bi-eject-fill::before {
  content: "\f314";
}
body.ski-rental-page .bi-eject::before {
  content: "\f315";
}
body.ski-rental-page .bi-emoji-angry-fill::before {
  content: "\f316";
}
body.ski-rental-page .bi-emoji-angry::before {
  content: "\f317";
}
body.ski-rental-page .bi-emoji-dizzy-fill::before {
  content: "\f318";
}
body.ski-rental-page .bi-emoji-dizzy::before {
  content: "\f319";
}
body.ski-rental-page .bi-emoji-expressionless-fill::before {
  content: "\f31a";
}
body.ski-rental-page .bi-emoji-expressionless::before {
  content: "\f31b";
}
body.ski-rental-page .bi-emoji-frown-fill::before {
  content: "\f31c";
}
body.ski-rental-page .bi-emoji-frown::before {
  content: "\f31d";
}
body.ski-rental-page .bi-emoji-heart-eyes-fill::before {
  content: "\f31e";
}
body.ski-rental-page .bi-emoji-heart-eyes::before {
  content: "\f31f";
}
body.ski-rental-page .bi-emoji-laughing-fill::before {
  content: "\f320";
}
body.ski-rental-page .bi-emoji-laughing::before {
  content: "\f321";
}
body.ski-rental-page .bi-emoji-neutral-fill::before {
  content: "\f322";
}
body.ski-rental-page .bi-emoji-neutral::before {
  content: "\f323";
}
body.ski-rental-page .bi-emoji-smile-fill::before {
  content: "\f324";
}
body.ski-rental-page .bi-emoji-smile-upside-down-fill::before {
  content: "\f325";
}
body.ski-rental-page .bi-emoji-smile-upside-down::before {
  content: "\f326";
}
body.ski-rental-page .bi-emoji-smile::before {
  content: "\f327";
}
body.ski-rental-page .bi-emoji-sunglasses-fill::before {
  content: "\f328";
}
body.ski-rental-page .bi-emoji-sunglasses::before {
  content: "\f329";
}
body.ski-rental-page .bi-emoji-wink-fill::before {
  content: "\f32a";
}
body.ski-rental-page .bi-emoji-wink::before {
  content: "\f32b";
}
body.ski-rental-page .bi-envelope-fill::before {
  content: "\f32c";
}
body.ski-rental-page .bi-envelope-open-fill::before {
  content: "\f32d";
}
body.ski-rental-page .bi-envelope-open::before {
  content: "\f32e";
}
body.ski-rental-page .bi-envelope::before {
  content: "\f32f";
}
body.ski-rental-page .bi-eraser-fill::before {
  content: "\f330";
}
body.ski-rental-page .bi-eraser::before {
  content: "\f331";
}
body.ski-rental-page .bi-exclamation-circle-fill::before {
  content: "\f332";
}
body.ski-rental-page .bi-exclamation-circle::before {
  content: "\f333";
}
body.ski-rental-page .bi-exclamation-diamond-fill::before {
  content: "\f334";
}
body.ski-rental-page .bi-exclamation-diamond::before {
  content: "\f335";
}
body.ski-rental-page .bi-exclamation-octagon-fill::before {
  content: "\f336";
}
body.ski-rental-page .bi-exclamation-octagon::before {
  content: "\f337";
}
body.ski-rental-page .bi-exclamation-square-fill::before {
  content: "\f338";
}
body.ski-rental-page .bi-exclamation-square::before {
  content: "\f339";
}
body.ski-rental-page .bi-exclamation-triangle-fill::before {
  content: "\f33a";
}
body.ski-rental-page .bi-exclamation-triangle::before {
  content: "\f33b";
}
body.ski-rental-page .bi-exclamation::before {
  content: "\f33c";
}
body.ski-rental-page .bi-exclude::before {
  content: "\f33d";
}
body.ski-rental-page .bi-eye-fill::before {
  content: "\f33e";
}
body.ski-rental-page .bi-eye-slash-fill::before {
  content: "\f33f";
}
body.ski-rental-page .bi-eye-slash::before {
  content: "\f340";
}
body.ski-rental-page .bi-eye::before {
  content: "\f341";
}
body.ski-rental-page .bi-eyedropper::before {
  content: "\f342";
}
body.ski-rental-page .bi-eyeglasses::before {
  content: "\f343";
}
body.ski-rental-page .bi-facebook::before {
  content: "\f344";
}
body.ski-rental-page .bi-file-arrow-down-fill::before {
  content: "\f345";
}
body.ski-rental-page .bi-file-arrow-down::before {
  content: "\f346";
}
body.ski-rental-page .bi-file-arrow-up-fill::before {
  content: "\f347";
}
body.ski-rental-page .bi-file-arrow-up::before {
  content: "\f348";
}
body.ski-rental-page .bi-file-bar-graph-fill::before {
  content: "\f349";
}
body.ski-rental-page .bi-file-bar-graph::before {
  content: "\f34a";
}
body.ski-rental-page .bi-file-binary-fill::before {
  content: "\f34b";
}
body.ski-rental-page .bi-file-binary::before {
  content: "\f34c";
}
body.ski-rental-page .bi-file-break-fill::before {
  content: "\f34d";
}
body.ski-rental-page .bi-file-break::before {
  content: "\f34e";
}
body.ski-rental-page .bi-file-check-fill::before {
  content: "\f34f";
}
body.ski-rental-page .bi-file-check::before {
  content: "\f350";
}
body.ski-rental-page .bi-file-code-fill::before {
  content: "\f351";
}
body.ski-rental-page .bi-file-code::before {
  content: "\f352";
}
body.ski-rental-page .bi-file-diff-fill::before {
  content: "\f353";
}
body.ski-rental-page .bi-file-diff::before {
  content: "\f354";
}
body.ski-rental-page .bi-file-earmark-arrow-down-fill::before {
  content: "\f355";
}
body.ski-rental-page .bi-file-earmark-arrow-down::before {
  content: "\f356";
}
body.ski-rental-page .bi-file-earmark-arrow-up-fill::before {
  content: "\f357";
}
body.ski-rental-page .bi-file-earmark-arrow-up::before {
  content: "\f358";
}
body.ski-rental-page .bi-file-earmark-bar-graph-fill::before {
  content: "\f359";
}
body.ski-rental-page .bi-file-earmark-bar-graph::before {
  content: "\f35a";
}
body.ski-rental-page .bi-file-earmark-binary-fill::before {
  content: "\f35b";
}
body.ski-rental-page .bi-file-earmark-binary::before {
  content: "\f35c";
}
body.ski-rental-page .bi-file-earmark-break-fill::before {
  content: "\f35d";
}
body.ski-rental-page .bi-file-earmark-break::before {
  content: "\f35e";
}
body.ski-rental-page .bi-file-earmark-check-fill::before {
  content: "\f35f";
}
body.ski-rental-page .bi-file-earmark-check::before {
  content: "\f360";
}
body.ski-rental-page .bi-file-earmark-code-fill::before {
  content: "\f361";
}
body.ski-rental-page .bi-file-earmark-code::before {
  content: "\f362";
}
body.ski-rental-page .bi-file-earmark-diff-fill::before {
  content: "\f363";
}
body.ski-rental-page .bi-file-earmark-diff::before {
  content: "\f364";
}
body.ski-rental-page .bi-file-earmark-easel-fill::before {
  content: "\f365";
}
body.ski-rental-page .bi-file-earmark-easel::before {
  content: "\f366";
}
body.ski-rental-page .bi-file-earmark-excel-fill::before {
  content: "\f367";
}
body.ski-rental-page .bi-file-earmark-excel::before {
  content: "\f368";
}
body.ski-rental-page .bi-file-earmark-fill::before {
  content: "\f369";
}
body.ski-rental-page .bi-file-earmark-font-fill::before {
  content: "\f36a";
}
body.ski-rental-page .bi-file-earmark-font::before {
  content: "\f36b";
}
body.ski-rental-page .bi-file-earmark-image-fill::before {
  content: "\f36c";
}
body.ski-rental-page .bi-file-earmark-image::before {
  content: "\f36d";
}
body.ski-rental-page .bi-file-earmark-lock-fill::before {
  content: "\f36e";
}
body.ski-rental-page .bi-file-earmark-lock::before {
  content: "\f36f";
}
body.ski-rental-page .bi-file-earmark-lock2-fill::before {
  content: "\f370";
}
body.ski-rental-page .bi-file-earmark-lock2::before {
  content: "\f371";
}
body.ski-rental-page .bi-file-earmark-medical-fill::before {
  content: "\f372";
}
body.ski-rental-page .bi-file-earmark-medical::before {
  content: "\f373";
}
body.ski-rental-page .bi-file-earmark-minus-fill::before {
  content: "\f374";
}
body.ski-rental-page .bi-file-earmark-minus::before {
  content: "\f375";
}
body.ski-rental-page .bi-file-earmark-music-fill::before {
  content: "\f376";
}
body.ski-rental-page .bi-file-earmark-music::before {
  content: "\f377";
}
body.ski-rental-page .bi-file-earmark-person-fill::before {
  content: "\f378";
}
body.ski-rental-page .bi-file-earmark-person::before {
  content: "\f379";
}
body.ski-rental-page .bi-file-earmark-play-fill::before {
  content: "\f37a";
}
body.ski-rental-page .bi-file-earmark-play::before {
  content: "\f37b";
}
body.ski-rental-page .bi-file-earmark-plus-fill::before {
  content: "\f37c";
}
body.ski-rental-page .bi-file-earmark-plus::before {
  content: "\f37d";
}
body.ski-rental-page .bi-file-earmark-post-fill::before {
  content: "\f37e";
}
body.ski-rental-page .bi-file-earmark-post::before {
  content: "\f37f";
}
body.ski-rental-page .bi-file-earmark-ppt-fill::before {
  content: "\f380";
}
body.ski-rental-page .bi-file-earmark-ppt::before {
  content: "\f381";
}
body.ski-rental-page .bi-file-earmark-richtext-fill::before {
  content: "\f382";
}
body.ski-rental-page .bi-file-earmark-richtext::before {
  content: "\f383";
}
body.ski-rental-page .bi-file-earmark-ruled-fill::before {
  content: "\f384";
}
body.ski-rental-page .bi-file-earmark-ruled::before {
  content: "\f385";
}
body.ski-rental-page .bi-file-earmark-slides-fill::before {
  content: "\f386";
}
body.ski-rental-page .bi-file-earmark-slides::before {
  content: "\f387";
}
body.ski-rental-page .bi-file-earmark-spreadsheet-fill::before {
  content: "\f388";
}
body.ski-rental-page .bi-file-earmark-spreadsheet::before {
  content: "\f389";
}
body.ski-rental-page .bi-file-earmark-text-fill::before {
  content: "\f38a";
}
body.ski-rental-page .bi-file-earmark-text::before {
  content: "\f38b";
}
body.ski-rental-page .bi-file-earmark-word-fill::before {
  content: "\f38c";
}
body.ski-rental-page .bi-file-earmark-word::before {
  content: "\f38d";
}
body.ski-rental-page .bi-file-earmark-x-fill::before {
  content: "\f38e";
}
body.ski-rental-page .bi-file-earmark-x::before {
  content: "\f38f";
}
body.ski-rental-page .bi-file-earmark-zip-fill::before {
  content: "\f390";
}
body.ski-rental-page .bi-file-earmark-zip::before {
  content: "\f391";
}
body.ski-rental-page .bi-file-earmark::before {
  content: "\f392";
}
body.ski-rental-page .bi-file-easel-fill::before {
  content: "\f393";
}
body.ski-rental-page .bi-file-easel::before {
  content: "\f394";
}
body.ski-rental-page .bi-file-excel-fill::before {
  content: "\f395";
}
body.ski-rental-page .bi-file-excel::before {
  content: "\f396";
}
body.ski-rental-page .bi-file-fill::before {
  content: "\f397";
}
body.ski-rental-page .bi-file-font-fill::before {
  content: "\f398";
}
body.ski-rental-page .bi-file-font::before {
  content: "\f399";
}
body.ski-rental-page .bi-file-image-fill::before {
  content: "\f39a";
}
body.ski-rental-page .bi-file-image::before {
  content: "\f39b";
}
body.ski-rental-page .bi-file-lock-fill::before {
  content: "\f39c";
}
body.ski-rental-page .bi-file-lock::before {
  content: "\f39d";
}
body.ski-rental-page .bi-file-lock2-fill::before {
  content: "\f39e";
}
body.ski-rental-page .bi-file-lock2::before {
  content: "\f39f";
}
body.ski-rental-page .bi-file-medical-fill::before {
  content: "\f3a0";
}
body.ski-rental-page .bi-file-medical::before {
  content: "\f3a1";
}
body.ski-rental-page .bi-file-minus-fill::before {
  content: "\f3a2";
}
body.ski-rental-page .bi-file-minus::before {
  content: "\f3a3";
}
body.ski-rental-page .bi-file-music-fill::before {
  content: "\f3a4";
}
body.ski-rental-page .bi-file-music::before {
  content: "\f3a5";
}
body.ski-rental-page .bi-file-person-fill::before {
  content: "\f3a6";
}
body.ski-rental-page .bi-file-person::before {
  content: "\f3a7";
}
body.ski-rental-page .bi-file-play-fill::before {
  content: "\f3a8";
}
body.ski-rental-page .bi-file-play::before {
  content: "\f3a9";
}
body.ski-rental-page .bi-file-plus-fill::before {
  content: "\f3aa";
}
body.ski-rental-page .bi-file-plus::before {
  content: "\f3ab";
}
body.ski-rental-page .bi-file-post-fill::before {
  content: "\f3ac";
}
body.ski-rental-page .bi-file-post::before {
  content: "\f3ad";
}
body.ski-rental-page .bi-file-ppt-fill::before {
  content: "\f3ae";
}
body.ski-rental-page .bi-file-ppt::before {
  content: "\f3af";
}
body.ski-rental-page .bi-file-richtext-fill::before {
  content: "\f3b0";
}
body.ski-rental-page .bi-file-richtext::before {
  content: "\f3b1";
}
body.ski-rental-page .bi-file-ruled-fill::before {
  content: "\f3b2";
}
body.ski-rental-page .bi-file-ruled::before {
  content: "\f3b3";
}
body.ski-rental-page .bi-file-slides-fill::before {
  content: "\f3b4";
}
body.ski-rental-page .bi-file-slides::before {
  content: "\f3b5";
}
body.ski-rental-page .bi-file-spreadsheet-fill::before {
  content: "\f3b6";
}
body.ski-rental-page .bi-file-spreadsheet::before {
  content: "\f3b7";
}
body.ski-rental-page .bi-file-text-fill::before {
  content: "\f3b8";
}
body.ski-rental-page .bi-file-text::before {
  content: "\f3b9";
}
body.ski-rental-page .bi-file-word-fill::before {
  content: "\f3ba";
}
body.ski-rental-page .bi-file-word::before {
  content: "\f3bb";
}
body.ski-rental-page .bi-file-x-fill::before {
  content: "\f3bc";
}
body.ski-rental-page .bi-file-x::before {
  content: "\f3bd";
}
body.ski-rental-page .bi-file-zip-fill::before {
  content: "\f3be";
}
body.ski-rental-page .bi-file-zip::before {
  content: "\f3bf";
}
body.ski-rental-page .bi-file::before {
  content: "\f3c0";
}
body.ski-rental-page .bi-files-alt::before {
  content: "\f3c1";
}
body.ski-rental-page .bi-files::before {
  content: "\f3c2";
}
body.ski-rental-page .bi-film::before {
  content: "\f3c3";
}
body.ski-rental-page .bi-filter-circle-fill::before {
  content: "\f3c4";
}
body.ski-rental-page .bi-filter-circle::before {
  content: "\f3c5";
}
body.ski-rental-page .bi-filter-left::before {
  content: "\f3c6";
}
body.ski-rental-page .bi-filter-right::before {
  content: "\f3c7";
}
body.ski-rental-page .bi-filter-square-fill::before {
  content: "\f3c8";
}
body.ski-rental-page .bi-filter-square::before {
  content: "\f3c9";
}
body.ski-rental-page .bi-filter::before {
  content: "\f3ca";
}
body.ski-rental-page .bi-flag-fill::before {
  content: "\f3cb";
}
body.ski-rental-page .bi-flag::before {
  content: "\f3cc";
}
body.ski-rental-page .bi-flower1::before {
  content: "\f3cd";
}
body.ski-rental-page .bi-flower2::before {
  content: "\f3ce";
}
body.ski-rental-page .bi-flower3::before {
  content: "\f3cf";
}
body.ski-rental-page .bi-folder-check::before {
  content: "\f3d0";
}
body.ski-rental-page .bi-folder-fill::before {
  content: "\f3d1";
}
body.ski-rental-page .bi-folder-minus::before {
  content: "\f3d2";
}
body.ski-rental-page .bi-folder-plus::before {
  content: "\f3d3";
}
body.ski-rental-page .bi-folder-symlink-fill::before {
  content: "\f3d4";
}
body.ski-rental-page .bi-folder-symlink::before {
  content: "\f3d5";
}
body.ski-rental-page .bi-folder-x::before {
  content: "\f3d6";
}
body.ski-rental-page .bi-folder::before {
  content: "\f3d7";
}
body.ski-rental-page .bi-folder2-open::before {
  content: "\f3d8";
}
body.ski-rental-page .bi-folder2::before {
  content: "\f3d9";
}
body.ski-rental-page .bi-fonts::before {
  content: "\f3da";
}
body.ski-rental-page .bi-forward-fill::before {
  content: "\f3db";
}
body.ski-rental-page .bi-forward::before {
  content: "\f3dc";
}
body.ski-rental-page .bi-front::before {
  content: "\f3dd";
}
body.ski-rental-page .bi-fullscreen-exit::before {
  content: "\f3de";
}
body.ski-rental-page .bi-fullscreen::before {
  content: "\f3df";
}
body.ski-rental-page .bi-funnel-fill::before {
  content: "\f3e0";
}
body.ski-rental-page .bi-funnel::before {
  content: "\f3e1";
}
body.ski-rental-page .bi-gear-fill::before {
  content: "\f3e2";
}
body.ski-rental-page .bi-gear-wide-connected::before {
  content: "\f3e3";
}
body.ski-rental-page .bi-gear-wide::before {
  content: "\f3e4";
}
body.ski-rental-page .bi-gear::before {
  content: "\f3e5";
}
body.ski-rental-page .bi-gem::before {
  content: "\f3e6";
}
body.ski-rental-page .bi-geo-alt-fill::before {
  content: "\f3e7";
}
body.ski-rental-page .bi-geo-alt::before {
  content: "\f3e8";
}
body.ski-rental-page .bi-geo-fill::before {
  content: "\f3e9";
}
body.ski-rental-page .bi-geo::before {
  content: "\f3ea";
}
body.ski-rental-page .bi-gift-fill::before {
  content: "\f3eb";
}
body.ski-rental-page .bi-gift::before {
  content: "\f3ec";
}
body.ski-rental-page .bi-github::before {
  content: "\f3ed";
}
body.ski-rental-page .bi-globe::before {
  content: "\f3ee";
}
body.ski-rental-page .bi-globe2::before {
  content: "\f3ef";
}
body.ski-rental-page .bi-google::before {
  content: "\f3f0";
}
body.ski-rental-page .bi-graph-down::before {
  content: "\f3f1";
}
body.ski-rental-page .bi-graph-up::before {
  content: "\f3f2";
}
body.ski-rental-page .bi-grid-1x2-fill::before {
  content: "\f3f3";
}
body.ski-rental-page .bi-grid-1x2::before {
  content: "\f3f4";
}
body.ski-rental-page .bi-grid-3x2-gap-fill::before {
  content: "\f3f5";
}
body.ski-rental-page .bi-grid-3x2-gap::before {
  content: "\f3f6";
}
body.ski-rental-page .bi-grid-3x2::before {
  content: "\f3f7";
}
body.ski-rental-page .bi-grid-3x3-gap-fill::before {
  content: "\f3f8";
}
body.ski-rental-page .bi-grid-3x3-gap::before {
  content: "\f3f9";
}
body.ski-rental-page .bi-grid-3x3::before {
  content: "\f3fa";
}
body.ski-rental-page .bi-grid-fill::before {
  content: "\f3fb";
}
body.ski-rental-page .bi-grid::before {
  content: "\f3fc";
}
body.ski-rental-page .bi-grip-horizontal::before {
  content: "\f3fd";
}
body.ski-rental-page .bi-grip-vertical::before {
  content: "\f3fe";
}
body.ski-rental-page .bi-hammer::before {
  content: "\f3ff";
}
body.ski-rental-page .bi-hand-index-fill::before {
  content: "\f400";
}
body.ski-rental-page .bi-hand-index-thumb-fill::before {
  content: "\f401";
}
body.ski-rental-page .bi-hand-index-thumb::before {
  content: "\f402";
}
body.ski-rental-page .bi-hand-index::before {
  content: "\f403";
}
body.ski-rental-page .bi-hand-thumbs-down-fill::before {
  content: "\f404";
}
body.ski-rental-page .bi-hand-thumbs-down::before {
  content: "\f405";
}
body.ski-rental-page .bi-hand-thumbs-up-fill::before {
  content: "\f406";
}
body.ski-rental-page .bi-hand-thumbs-up::before {
  content: "\f407";
}
body.ski-rental-page .bi-handbag-fill::before {
  content: "\f408";
}
body.ski-rental-page .bi-handbag::before {
  content: "\f409";
}
body.ski-rental-page .bi-hash::before {
  content: "\f40a";
}
body.ski-rental-page .bi-hdd-fill::before {
  content: "\f40b";
}
body.ski-rental-page .bi-hdd-network-fill::before {
  content: "\f40c";
}
body.ski-rental-page .bi-hdd-network::before {
  content: "\f40d";
}
body.ski-rental-page .bi-hdd-rack-fill::before {
  content: "\f40e";
}
body.ski-rental-page .bi-hdd-rack::before {
  content: "\f40f";
}
body.ski-rental-page .bi-hdd-stack-fill::before {
  content: "\f410";
}
body.ski-rental-page .bi-hdd-stack::before {
  content: "\f411";
}
body.ski-rental-page .bi-hdd::before {
  content: "\f412";
}
body.ski-rental-page .bi-headphones::before {
  content: "\f413";
}
body.ski-rental-page .bi-headset::before {
  content: "\f414";
}
body.ski-rental-page .bi-heart-fill::before {
  content: "\f415";
}
body.ski-rental-page .bi-heart-half::before {
  content: "\f416";
}
body.ski-rental-page .bi-heart::before {
  content: "\f417";
}
body.ski-rental-page .bi-heptagon-fill::before {
  content: "\f418";
}
body.ski-rental-page .bi-heptagon-half::before {
  content: "\f419";
}
body.ski-rental-page .bi-heptagon::before {
  content: "\f41a";
}
body.ski-rental-page .bi-hexagon-fill::before {
  content: "\f41b";
}
body.ski-rental-page .bi-hexagon-half::before {
  content: "\f41c";
}
body.ski-rental-page .bi-hexagon::before {
  content: "\f41d";
}
body.ski-rental-page .bi-hourglass-bottom::before {
  content: "\f41e";
}
body.ski-rental-page .bi-hourglass-split::before {
  content: "\f41f";
}
body.ski-rental-page .bi-hourglass-top::before {
  content: "\f420";
}
body.ski-rental-page .bi-hourglass::before {
  content: "\f421";
}
body.ski-rental-page .bi-house-door-fill::before {
  content: "\f422";
}
body.ski-rental-page .bi-house-door::before {
  content: "\f423";
}
body.ski-rental-page .bi-house-fill::before {
  content: "\f424";
}
body.ski-rental-page .bi-house::before {
  content: "\f425";
}
body.ski-rental-page .bi-hr::before {
  content: "\f426";
}
body.ski-rental-page .bi-hurricane::before {
  content: "\f427";
}
body.ski-rental-page .bi-image-alt::before {
  content: "\f428";
}
body.ski-rental-page .bi-image-fill::before {
  content: "\f429";
}
body.ski-rental-page .bi-image::before {
  content: "\f42a";
}
body.ski-rental-page .bi-images::before {
  content: "\f42b";
}
body.ski-rental-page .bi-inbox-fill::before {
  content: "\f42c";
}
body.ski-rental-page .bi-inbox::before {
  content: "\f42d";
}
body.ski-rental-page .bi-inboxes-fill::before {
  content: "\f42e";
}
body.ski-rental-page .bi-inboxes::before {
  content: "\f42f";
}
body.ski-rental-page .bi-info-circle-fill::before {
  content: "\f430";
}
body.ski-rental-page .bi-info-circle::before {
  content: "\f431";
}
body.ski-rental-page .bi-info-square-fill::before {
  content: "\f432";
}
body.ski-rental-page .bi-info-square::before {
  content: "\f433";
}
body.ski-rental-page .bi-info::before {
  content: "\f434";
}
body.ski-rental-page .bi-input-cursor-text::before {
  content: "\f435";
}
body.ski-rental-page .bi-input-cursor::before {
  content: "\f436";
}
body.ski-rental-page .bi-instagram::before {
  content: "\f437";
}
body.ski-rental-page .bi-intersect::before {
  content: "\f438";
}
body.ski-rental-page .bi-journal-album::before {
  content: "\f439";
}
body.ski-rental-page .bi-journal-arrow-down::before {
  content: "\f43a";
}
body.ski-rental-page .bi-journal-arrow-up::before {
  content: "\f43b";
}
body.ski-rental-page .bi-journal-bookmark-fill::before {
  content: "\f43c";
}
body.ski-rental-page .bi-journal-bookmark::before {
  content: "\f43d";
}
body.ski-rental-page .bi-journal-check::before {
  content: "\f43e";
}
body.ski-rental-page .bi-journal-code::before {
  content: "\f43f";
}
body.ski-rental-page .bi-journal-medical::before {
  content: "\f440";
}
body.ski-rental-page .bi-journal-minus::before {
  content: "\f441";
}
body.ski-rental-page .bi-journal-plus::before {
  content: "\f442";
}
body.ski-rental-page .bi-journal-richtext::before {
  content: "\f443";
}
body.ski-rental-page .bi-journal-text::before {
  content: "\f444";
}
body.ski-rental-page .bi-journal-x::before {
  content: "\f445";
}
body.ski-rental-page .bi-journal::before {
  content: "\f446";
}
body.ski-rental-page .bi-journals::before {
  content: "\f447";
}
body.ski-rental-page .bi-joystick::before {
  content: "\f448";
}
body.ski-rental-page .bi-justify-left::before {
  content: "\f449";
}
body.ski-rental-page .bi-justify-right::before {
  content: "\f44a";
}
body.ski-rental-page .bi-justify::before {
  content: "\f44b";
}
body.ski-rental-page .bi-kanban-fill::before {
  content: "\f44c";
}
body.ski-rental-page .bi-kanban::before {
  content: "\f44d";
}
body.ski-rental-page .bi-key-fill::before {
  content: "\f44e";
}
body.ski-rental-page .bi-key::before {
  content: "\f44f";
}
body.ski-rental-page .bi-keyboard-fill::before {
  content: "\f450";
}
body.ski-rental-page .bi-keyboard::before {
  content: "\f451";
}
body.ski-rental-page .bi-ladder::before {
  content: "\f452";
}
body.ski-rental-page .bi-lamp-fill::before {
  content: "\f453";
}
body.ski-rental-page .bi-lamp::before {
  content: "\f454";
}
body.ski-rental-page .bi-laptop-fill::before {
  content: "\f455";
}
body.ski-rental-page .bi-laptop::before {
  content: "\f456";
}
body.ski-rental-page .bi-layer-backward::before {
  content: "\f457";
}
body.ski-rental-page .bi-layer-forward::before {
  content: "\f458";
}
body.ski-rental-page .bi-layers-fill::before {
  content: "\f459";
}
body.ski-rental-page .bi-layers-half::before {
  content: "\f45a";
}
body.ski-rental-page .bi-layers::before {
  content: "\f45b";
}
body.ski-rental-page .bi-layout-sidebar-inset-reverse::before {
  content: "\f45c";
}
body.ski-rental-page .bi-layout-sidebar-inset::before {
  content: "\f45d";
}
body.ski-rental-page .bi-layout-sidebar-reverse::before {
  content: "\f45e";
}
body.ski-rental-page .bi-layout-sidebar::before {
  content: "\f45f";
}
body.ski-rental-page .bi-layout-split::before {
  content: "\f460";
}
body.ski-rental-page .bi-layout-text-sidebar-reverse::before {
  content: "\f461";
}
body.ski-rental-page .bi-layout-text-sidebar::before {
  content: "\f462";
}
body.ski-rental-page .bi-layout-text-window-reverse::before {
  content: "\f463";
}
body.ski-rental-page .bi-layout-text-window::before {
  content: "\f464";
}
body.ski-rental-page .bi-layout-three-columns::before {
  content: "\f465";
}
body.ski-rental-page .bi-layout-wtf::before {
  content: "\f466";
}
body.ski-rental-page .bi-life-preserver::before {
  content: "\f467";
}
body.ski-rental-page .bi-lightbulb-fill::before {
  content: "\f468";
}
body.ski-rental-page .bi-lightbulb-off-fill::before {
  content: "\f469";
}
body.ski-rental-page .bi-lightbulb-off::before {
  content: "\f46a";
}
body.ski-rental-page .bi-lightbulb::before {
  content: "\f46b";
}
body.ski-rental-page .bi-lightning-charge-fill::before {
  content: "\f46c";
}
body.ski-rental-page .bi-lightning-charge::before {
  content: "\f46d";
}
body.ski-rental-page .bi-lightning-fill::before {
  content: "\f46e";
}
body.ski-rental-page .bi-lightning::before {
  content: "\f46f";
}
body.ski-rental-page .bi-link-45deg::before {
  content: "\f470";
}
body.ski-rental-page .bi-link::before {
  content: "\f471";
}
body.ski-rental-page .bi-linkedin::before {
  content: "\f472";
}
body.ski-rental-page .bi-list-check::before {
  content: "\f473";
}
body.ski-rental-page .bi-list-nested::before {
  content: "\f474";
}
body.ski-rental-page .bi-list-ol::before {
  content: "\f475";
}
body.ski-rental-page .bi-list-stars::before {
  content: "\f476";
}
body.ski-rental-page .bi-list-task::before {
  content: "\f477";
}
body.ski-rental-page .bi-list-ul::before {
  content: "\f478";
}
body.ski-rental-page .bi-list::before {
  content: "\f479";
}
body.ski-rental-page .bi-lock-fill::before {
  content: "\f47a";
}
body.ski-rental-page .bi-lock::before {
  content: "\f47b";
}
body.ski-rental-page .bi-mailbox::before {
  content: "\f47c";
}
body.ski-rental-page .bi-mailbox2::before {
  content: "\f47d";
}
body.ski-rental-page .bi-map-fill::before {
  content: "\f47e";
}
body.ski-rental-page .bi-map::before {
  content: "\f47f";
}
body.ski-rental-page .bi-markdown-fill::before {
  content: "\f480";
}
body.ski-rental-page .bi-markdown::before {
  content: "\f481";
}
body.ski-rental-page .bi-mask::before {
  content: "\f482";
}
body.ski-rental-page .bi-megaphone-fill::before {
  content: "\f483";
}
body.ski-rental-page .bi-megaphone::before {
  content: "\f484";
}
body.ski-rental-page .bi-menu-app-fill::before {
  content: "\f485";
}
body.ski-rental-page .bi-menu-app::before {
  content: "\f486";
}
body.ski-rental-page .bi-menu-button-fill::before {
  content: "\f487";
}
body.ski-rental-page .bi-menu-button-wide-fill::before {
  content: "\f488";
}
body.ski-rental-page .bi-menu-button-wide::before {
  content: "\f489";
}
body.ski-rental-page .bi-menu-button::before {
  content: "\f48a";
}
body.ski-rental-page .bi-menu-down::before {
  content: "\f48b";
}
body.ski-rental-page .bi-menu-up::before {
  content: "\f48c";
}
body.ski-rental-page .bi-mic-fill::before {
  content: "\f48d";
}
body.ski-rental-page .bi-mic-mute-fill::before {
  content: "\f48e";
}
body.ski-rental-page .bi-mic-mute::before {
  content: "\f48f";
}
body.ski-rental-page .bi-mic::before {
  content: "\f490";
}
body.ski-rental-page .bi-minecart-loaded::before {
  content: "\f491";
}
body.ski-rental-page .bi-minecart::before {
  content: "\f492";
}
body.ski-rental-page .bi-moisture::before {
  content: "\f493";
}
body.ski-rental-page .bi-moon-fill::before {
  content: "\f494";
}
body.ski-rental-page .bi-moon-stars-fill::before {
  content: "\f495";
}
body.ski-rental-page .bi-moon-stars::before {
  content: "\f496";
}
body.ski-rental-page .bi-moon::before {
  content: "\f497";
}
body.ski-rental-page .bi-mouse-fill::before {
  content: "\f498";
}
body.ski-rental-page .bi-mouse::before {
  content: "\f499";
}
body.ski-rental-page .bi-mouse2-fill::before {
  content: "\f49a";
}
body.ski-rental-page .bi-mouse2::before {
  content: "\f49b";
}
body.ski-rental-page .bi-mouse3-fill::before {
  content: "\f49c";
}
body.ski-rental-page .bi-mouse3::before {
  content: "\f49d";
}
body.ski-rental-page .bi-music-note-beamed::before {
  content: "\f49e";
}
body.ski-rental-page .bi-music-note-list::before {
  content: "\f49f";
}
body.ski-rental-page .bi-music-note::before {
  content: "\f4a0";
}
body.ski-rental-page .bi-music-player-fill::before {
  content: "\f4a1";
}
body.ski-rental-page .bi-music-player::before {
  content: "\f4a2";
}
body.ski-rental-page .bi-newspaper::before {
  content: "\f4a3";
}
body.ski-rental-page .bi-node-minus-fill::before {
  content: "\f4a4";
}
body.ski-rental-page .bi-node-minus::before {
  content: "\f4a5";
}
body.ski-rental-page .bi-node-plus-fill::before {
  content: "\f4a6";
}
body.ski-rental-page .bi-node-plus::before {
  content: "\f4a7";
}
body.ski-rental-page .bi-nut-fill::before {
  content: "\f4a8";
}
body.ski-rental-page .bi-nut::before {
  content: "\f4a9";
}
body.ski-rental-page .bi-octagon-fill::before {
  content: "\f4aa";
}
body.ski-rental-page .bi-octagon-half::before {
  content: "\f4ab";
}
body.ski-rental-page .bi-octagon::before {
  content: "\f4ac";
}
body.ski-rental-page .bi-option::before {
  content: "\f4ad";
}
body.ski-rental-page .bi-outlet::before {
  content: "\f4ae";
}
body.ski-rental-page .bi-paint-bucket::before {
  content: "\f4af";
}
body.ski-rental-page .bi-palette-fill::before {
  content: "\f4b0";
}
body.ski-rental-page .bi-palette::before {
  content: "\f4b1";
}
body.ski-rental-page .bi-palette2::before {
  content: "\f4b2";
}
body.ski-rental-page .bi-paperclip::before {
  content: "\f4b3";
}
body.ski-rental-page .bi-paragraph::before {
  content: "\f4b4";
}
body.ski-rental-page .bi-patch-check-fill::before {
  content: "\f4b5";
}
body.ski-rental-page .bi-patch-check::before {
  content: "\f4b6";
}
body.ski-rental-page .bi-patch-exclamation-fill::before {
  content: "\f4b7";
}
body.ski-rental-page .bi-patch-exclamation::before {
  content: "\f4b8";
}
body.ski-rental-page .bi-patch-minus-fill::before {
  content: "\f4b9";
}
body.ski-rental-page .bi-patch-minus::before {
  content: "\f4ba";
}
body.ski-rental-page .bi-patch-plus-fill::before {
  content: "\f4bb";
}
body.ski-rental-page .bi-patch-plus::before {
  content: "\f4bc";
}
body.ski-rental-page .bi-patch-question-fill::before {
  content: "\f4bd";
}
body.ski-rental-page .bi-patch-question::before {
  content: "\f4be";
}
body.ski-rental-page .bi-pause-btn-fill::before {
  content: "\f4bf";
}
body.ski-rental-page .bi-pause-btn::before {
  content: "\f4c0";
}
body.ski-rental-page .bi-pause-circle-fill::before {
  content: "\f4c1";
}
body.ski-rental-page .bi-pause-circle::before {
  content: "\f4c2";
}
body.ski-rental-page .bi-pause-fill::before {
  content: "\f4c3";
}
body.ski-rental-page .bi-pause::before {
  content: "\f4c4";
}
body.ski-rental-page .bi-peace-fill::before {
  content: "\f4c5";
}
body.ski-rental-page .bi-peace::before {
  content: "\f4c6";
}
body.ski-rental-page .bi-pen-fill::before {
  content: "\f4c7";
}
body.ski-rental-page .bi-pen::before {
  content: "\f4c8";
}
body.ski-rental-page .bi-pencil-fill::before {
  content: "\f4c9";
}
body.ski-rental-page .bi-pencil-square::before {
  content: "\f4ca";
}
body.ski-rental-page .bi-pencil::before {
  content: "\f4cb";
}
body.ski-rental-page .bi-pentagon-fill::before {
  content: "\f4cc";
}
body.ski-rental-page .bi-pentagon-half::before {
  content: "\f4cd";
}
body.ski-rental-page .bi-pentagon::before {
  content: "\f4ce";
}
body.ski-rental-page .bi-people-fill::before {
  content: "\f4cf";
}
body.ski-rental-page .bi-people::before {
  content: "\f4d0";
}
body.ski-rental-page .bi-percent::before {
  content: "\f4d1";
}
body.ski-rental-page .bi-person-badge-fill::before {
  content: "\f4d2";
}
body.ski-rental-page .bi-person-badge::before {
  content: "\f4d3";
}
body.ski-rental-page .bi-person-bounding-box::before {
  content: "\f4d4";
}
body.ski-rental-page .bi-person-check-fill::before {
  content: "\f4d5";
}
body.ski-rental-page .bi-person-check::before {
  content: "\f4d6";
}
body.ski-rental-page .bi-person-circle::before {
  content: "\f4d7";
}
body.ski-rental-page .bi-person-dash-fill::before {
  content: "\f4d8";
}
body.ski-rental-page .bi-person-dash::before {
  content: "\f4d9";
}
body.ski-rental-page .bi-person-fill::before {
  content: "\f4da";
}
body.ski-rental-page .bi-person-lines-fill::before {
  content: "\f4db";
}
body.ski-rental-page .bi-person-plus-fill::before {
  content: "\f4dc";
}
body.ski-rental-page .bi-person-plus::before {
  content: "\f4dd";
}
body.ski-rental-page .bi-person-square::before {
  content: "\f4de";
}
body.ski-rental-page .bi-person-x-fill::before {
  content: "\f4df";
}
body.ski-rental-page .bi-person-x::before {
  content: "\f4e0";
}
body.ski-rental-page .bi-person::before {
  content: "\f4e1";
}
body.ski-rental-page .bi-phone-fill::before {
  content: "\f4e2";
}
body.ski-rental-page .bi-phone-landscape-fill::before {
  content: "\f4e3";
}
body.ski-rental-page .bi-phone-landscape::before {
  content: "\f4e4";
}
body.ski-rental-page .bi-phone-vibrate-fill::before {
  content: "\f4e5";
}
body.ski-rental-page .bi-phone-vibrate::before {
  content: "\f4e6";
}
body.ski-rental-page .bi-phone::before {
  content: "\f4e7";
}
body.ski-rental-page .bi-pie-chart-fill::before {
  content: "\f4e8";
}
body.ski-rental-page .bi-pie-chart::before {
  content: "\f4e9";
}
body.ski-rental-page .bi-pin-angle-fill::before {
  content: "\f4ea";
}
body.ski-rental-page .bi-pin-angle::before {
  content: "\f4eb";
}
body.ski-rental-page .bi-pin-fill::before {
  content: "\f4ec";
}
body.ski-rental-page .bi-pin::before {
  content: "\f4ed";
}
body.ski-rental-page .bi-pip-fill::before {
  content: "\f4ee";
}
body.ski-rental-page .bi-pip::before {
  content: "\f4ef";
}
body.ski-rental-page .bi-play-btn-fill::before {
  content: "\f4f0";
}
body.ski-rental-page .bi-play-btn::before {
  content: "\f4f1";
}
body.ski-rental-page .bi-play-circle-fill::before {
  content: "\f4f2";
}
body.ski-rental-page .bi-play-circle::before {
  content: "\f4f3";
}
body.ski-rental-page .bi-play-fill::before {
  content: "\f4f4";
}
body.ski-rental-page .bi-play::before {
  content: "\f4f5";
}
body.ski-rental-page .bi-plug-fill::before {
  content: "\f4f6";
}
body.ski-rental-page .bi-plug::before {
  content: "\f4f7";
}
body.ski-rental-page .bi-plus-circle-dotted::before {
  content: "\f4f8";
}
body.ski-rental-page .bi-plus-circle-fill::before {
  content: "\f4f9";
}
body.ski-rental-page .bi-plus-circle::before {
  content: "\f4fa";
}
body.ski-rental-page .bi-plus-square-dotted::before {
  content: "\f4fb";
}
body.ski-rental-page .bi-plus-square-fill::before {
  content: "\f4fc";
}
body.ski-rental-page .bi-plus-square::before {
  content: "\f4fd";
}
body.ski-rental-page .bi-plus::before {
  content: "\f4fe";
}
body.ski-rental-page .bi-power::before {
  content: "\f4ff";
}
body.ski-rental-page .bi-printer-fill::before {
  content: "\f500";
}
body.ski-rental-page .bi-printer::before {
  content: "\f501";
}
body.ski-rental-page .bi-puzzle-fill::before {
  content: "\f502";
}
body.ski-rental-page .bi-puzzle::before {
  content: "\f503";
}
body.ski-rental-page .bi-question-circle-fill::before {
  content: "\f504";
}
body.ski-rental-page .bi-question-circle::before {
  content: "\f505";
}
body.ski-rental-page .bi-question-diamond-fill::before {
  content: "\f506";
}
body.ski-rental-page .bi-question-diamond::before {
  content: "\f507";
}
body.ski-rental-page .bi-question-octagon-fill::before {
  content: "\f508";
}
body.ski-rental-page .bi-question-octagon::before {
  content: "\f509";
}
body.ski-rental-page .bi-question-square-fill::before {
  content: "\f50a";
}
body.ski-rental-page .bi-question-square::before {
  content: "\f50b";
}
body.ski-rental-page .bi-question::before {
  content: "\f50c";
}
body.ski-rental-page .bi-rainbow::before {
  content: "\f50d";
}
body.ski-rental-page .bi-receipt-cutoff::before {
  content: "\f50e";
}
body.ski-rental-page .bi-receipt::before {
  content: "\f50f";
}
body.ski-rental-page .bi-reception-0::before {
  content: "\f510";
}
body.ski-rental-page .bi-reception-1::before {
  content: "\f511";
}
body.ski-rental-page .bi-reception-2::before {
  content: "\f512";
}
body.ski-rental-page .bi-reception-3::before {
  content: "\f513";
}
body.ski-rental-page .bi-reception-4::before {
  content: "\f514";
}
body.ski-rental-page .bi-record-btn-fill::before {
  content: "\f515";
}
body.ski-rental-page .bi-record-btn::before {
  content: "\f516";
}
body.ski-rental-page .bi-record-circle-fill::before {
  content: "\f517";
}
body.ski-rental-page .bi-record-circle::before {
  content: "\f518";
}
body.ski-rental-page .bi-record-fill::before {
  content: "\f519";
}
body.ski-rental-page .bi-record::before {
  content: "\f51a";
}
body.ski-rental-page .bi-record2-fill::before {
  content: "\f51b";
}
body.ski-rental-page .bi-record2::before {
  content: "\f51c";
}
body.ski-rental-page .bi-reply-all-fill::before {
  content: "\f51d";
}
body.ski-rental-page .bi-reply-all::before {
  content: "\f51e";
}
body.ski-rental-page .bi-reply-fill::before {
  content: "\f51f";
}
body.ski-rental-page .bi-reply::before {
  content: "\f520";
}
body.ski-rental-page .bi-rss-fill::before {
  content: "\f521";
}
body.ski-rental-page .bi-rss::before {
  content: "\f522";
}
body.ski-rental-page .bi-rulers::before {
  content: "\f523";
}
body.ski-rental-page .bi-save-fill::before {
  content: "\f524";
}
body.ski-rental-page .bi-save::before {
  content: "\f525";
}
body.ski-rental-page .bi-save2-fill::before {
  content: "\f526";
}
body.ski-rental-page .bi-save2::before {
  content: "\f527";
}
body.ski-rental-page .bi-scissors::before {
  content: "\f528";
}
body.ski-rental-page .bi-screwdriver::before {
  content: "\f529";
}
body.ski-rental-page .bi-search::before {
  content: "\f52a";
}
body.ski-rental-page .bi-segmented-nav::before {
  content: "\f52b";
}
body.ski-rental-page .bi-server::before {
  content: "\f52c";
}
body.ski-rental-page .bi-share-fill::before {
  content: "\f52d";
}
body.ski-rental-page .bi-share::before {
  content: "\f52e";
}
body.ski-rental-page .bi-shield-check::before {
  content: "\f52f";
}
body.ski-rental-page .bi-shield-exclamation::before {
  content: "\f530";
}
body.ski-rental-page .bi-shield-fill-check::before {
  content: "\f531";
}
body.ski-rental-page .bi-shield-fill-exclamation::before {
  content: "\f532";
}
body.ski-rental-page .bi-shield-fill-minus::before {
  content: "\f533";
}
body.ski-rental-page .bi-shield-fill-plus::before {
  content: "\f534";
}
body.ski-rental-page .bi-shield-fill-x::before {
  content: "\f535";
}
body.ski-rental-page .bi-shield-fill::before {
  content: "\f536";
}
body.ski-rental-page .bi-shield-lock-fill::before {
  content: "\f537";
}
body.ski-rental-page .bi-shield-lock::before {
  content: "\f538";
}
body.ski-rental-page .bi-shield-minus::before {
  content: "\f539";
}
body.ski-rental-page .bi-shield-plus::before {
  content: "\f53a";
}
body.ski-rental-page .bi-shield-shaded::before {
  content: "\f53b";
}
body.ski-rental-page .bi-shield-slash-fill::before {
  content: "\f53c";
}
body.ski-rental-page .bi-shield-slash::before {
  content: "\f53d";
}
body.ski-rental-page .bi-shield-x::before {
  content: "\f53e";
}
body.ski-rental-page .bi-shield::before {
  content: "\f53f";
}
body.ski-rental-page .bi-shift-fill::before {
  content: "\f540";
}
body.ski-rental-page .bi-shift::before {
  content: "\f541";
}
body.ski-rental-page .bi-shop-window::before {
  content: "\f542";
}
body.ski-rental-page .bi-shop::before {
  content: "\f543";
}
body.ski-rental-page .bi-shuffle::before {
  content: "\f544";
}
body.ski-rental-page .bi-signpost-2-fill::before {
  content: "\f545";
}
body.ski-rental-page .bi-signpost-2::before {
  content: "\f546";
}
body.ski-rental-page .bi-signpost-fill::before {
  content: "\f547";
}
body.ski-rental-page .bi-signpost-split-fill::before {
  content: "\f548";
}
body.ski-rental-page .bi-signpost-split::before {
  content: "\f549";
}
body.ski-rental-page .bi-signpost::before {
  content: "\f54a";
}
body.ski-rental-page .bi-sim-fill::before {
  content: "\f54b";
}
body.ski-rental-page .bi-sim::before {
  content: "\f54c";
}
body.ski-rental-page .bi-skip-backward-btn-fill::before {
  content: "\f54d";
}
body.ski-rental-page .bi-skip-backward-btn::before {
  content: "\f54e";
}
body.ski-rental-page .bi-skip-backward-circle-fill::before {
  content: "\f54f";
}
body.ski-rental-page .bi-skip-backward-circle::before {
  content: "\f550";
}
body.ski-rental-page .bi-skip-backward-fill::before {
  content: "\f551";
}
body.ski-rental-page .bi-skip-backward::before {
  content: "\f552";
}
body.ski-rental-page .bi-skip-end-btn-fill::before {
  content: "\f553";
}
body.ski-rental-page .bi-skip-end-btn::before {
  content: "\f554";
}
body.ski-rental-page .bi-skip-end-circle-fill::before {
  content: "\f555";
}
body.ski-rental-page .bi-skip-end-circle::before {
  content: "\f556";
}
body.ski-rental-page .bi-skip-end-fill::before {
  content: "\f557";
}
body.ski-rental-page .bi-skip-end::before {
  content: "\f558";
}
body.ski-rental-page .bi-skip-forward-btn-fill::before {
  content: "\f559";
}
body.ski-rental-page .bi-skip-forward-btn::before {
  content: "\f55a";
}
body.ski-rental-page .bi-skip-forward-circle-fill::before {
  content: "\f55b";
}
body.ski-rental-page .bi-skip-forward-circle::before {
  content: "\f55c";
}
body.ski-rental-page .bi-skip-forward-fill::before {
  content: "\f55d";
}
body.ski-rental-page .bi-skip-forward::before {
  content: "\f55e";
}
body.ski-rental-page .bi-skip-start-btn-fill::before {
  content: "\f55f";
}
body.ski-rental-page .bi-skip-start-btn::before {
  content: "\f560";
}
body.ski-rental-page .bi-skip-start-circle-fill::before {
  content: "\f561";
}
body.ski-rental-page .bi-skip-start-circle::before {
  content: "\f562";
}
body.ski-rental-page .bi-skip-start-fill::before {
  content: "\f563";
}
body.ski-rental-page .bi-skip-start::before {
  content: "\f564";
}
body.ski-rental-page .bi-slack::before {
  content: "\f565";
}
body.ski-rental-page .bi-slash-circle-fill::before {
  content: "\f566";
}
body.ski-rental-page .bi-slash-circle::before {
  content: "\f567";
}
body.ski-rental-page .bi-slash-square-fill::before {
  content: "\f568";
}
body.ski-rental-page .bi-slash-square::before {
  content: "\f569";
}
body.ski-rental-page .bi-slash::before {
  content: "\f56a";
}
body.ski-rental-page .bi-sliders::before {
  content: "\f56b";
}
body.ski-rental-page .bi-smartwatch::before {
  content: "\f56c";
}
body.ski-rental-page .bi-snow::before {
  content: "\f56d";
}
body.ski-rental-page .bi-snow2::before {
  content: "\f56e";
}
body.ski-rental-page .bi-snow3::before {
  content: "\f56f";
}
body.ski-rental-page .bi-sort-alpha-down-alt::before {
  content: "\f570";
}
body.ski-rental-page .bi-sort-alpha-down::before {
  content: "\f571";
}
body.ski-rental-page .bi-sort-alpha-up-alt::before {
  content: "\f572";
}
body.ski-rental-page .bi-sort-alpha-up::before {
  content: "\f573";
}
body.ski-rental-page .bi-sort-down-alt::before {
  content: "\f574";
}
body.ski-rental-page .bi-sort-down::before {
  content: "\f575";
}
body.ski-rental-page .bi-sort-numeric-down-alt::before {
  content: "\f576";
}
body.ski-rental-page .bi-sort-numeric-down::before {
  content: "\f577";
}
body.ski-rental-page .bi-sort-numeric-up-alt::before {
  content: "\f578";
}
body.ski-rental-page .bi-sort-numeric-up::before {
  content: "\f579";
}
body.ski-rental-page .bi-sort-up-alt::before {
  content: "\f57a";
}
body.ski-rental-page .bi-sort-up::before {
  content: "\f57b";
}
body.ski-rental-page .bi-soundwave::before {
  content: "\f57c";
}
body.ski-rental-page .bi-speaker-fill::before {
  content: "\f57d";
}
body.ski-rental-page .bi-speaker::before {
  content: "\f57e";
}
body.ski-rental-page .bi-speedometer::before {
  content: "\f57f";
}
body.ski-rental-page .bi-speedometer2::before {
  content: "\f580";
}
body.ski-rental-page .bi-spellcheck::before {
  content: "\f581";
}
body.ski-rental-page .bi-square-fill::before {
  content: "\f582";
}
body.ski-rental-page .bi-square-half::before {
  content: "\f583";
}
body.ski-rental-page .bi-square::before {
  content: "\f584";
}
body.ski-rental-page .bi-stack::before {
  content: "\f585";
}
body.ski-rental-page .bi-star-fill::before {
  content: "\f586";
}
body.ski-rental-page .bi-star-half::before {
  content: "\f587";
}
body.ski-rental-page .bi-star::before {
  content: "\f588";
}
body.ski-rental-page .bi-stars::before {
  content: "\f589";
}
body.ski-rental-page .bi-stickies-fill::before {
  content: "\f58a";
}
body.ski-rental-page .bi-stickies::before {
  content: "\f58b";
}
body.ski-rental-page .bi-sticky-fill::before {
  content: "\f58c";
}
body.ski-rental-page .bi-sticky::before {
  content: "\f58d";
}
body.ski-rental-page .bi-stop-btn-fill::before {
  content: "\f58e";
}
body.ski-rental-page .bi-stop-btn::before {
  content: "\f58f";
}
body.ski-rental-page .bi-stop-circle-fill::before {
  content: "\f590";
}
body.ski-rental-page .bi-stop-circle::before {
  content: "\f591";
}
body.ski-rental-page .bi-stop-fill::before {
  content: "\f592";
}
body.ski-rental-page .bi-stop::before {
  content: "\f593";
}
body.ski-rental-page .bi-stoplights-fill::before {
  content: "\f594";
}
body.ski-rental-page .bi-stoplights::before {
  content: "\f595";
}
body.ski-rental-page .bi-stopwatch-fill::before {
  content: "\f596";
}
body.ski-rental-page .bi-stopwatch::before {
  content: "\f597";
}
body.ski-rental-page .bi-subtract::before {
  content: "\f598";
}
body.ski-rental-page .bi-suit-club-fill::before {
  content: "\f599";
}
body.ski-rental-page .bi-suit-club::before {
  content: "\f59a";
}
body.ski-rental-page .bi-suit-diamond-fill::before {
  content: "\f59b";
}
body.ski-rental-page .bi-suit-diamond::before {
  content: "\f59c";
}
body.ski-rental-page .bi-suit-heart-fill::before {
  content: "\f59d";
}
body.ski-rental-page .bi-suit-heart::before {
  content: "\f59e";
}
body.ski-rental-page .bi-suit-spade-fill::before {
  content: "\f59f";
}
body.ski-rental-page .bi-suit-spade::before {
  content: "\f5a0";
}
body.ski-rental-page .bi-sun-fill::before {
  content: "\f5a1";
}
body.ski-rental-page .bi-sun::before {
  content: "\f5a2";
}
body.ski-rental-page .bi-sunglasses::before {
  content: "\f5a3";
}
body.ski-rental-page .bi-sunrise-fill::before {
  content: "\f5a4";
}
body.ski-rental-page .bi-sunrise::before {
  content: "\f5a5";
}
body.ski-rental-page .bi-sunset-fill::before {
  content: "\f5a6";
}
body.ski-rental-page .bi-sunset::before {
  content: "\f5a7";
}
body.ski-rental-page .bi-symmetry-horizontal::before {
  content: "\f5a8";
}
body.ski-rental-page .bi-symmetry-vertical::before {
  content: "\f5a9";
}
body.ski-rental-page .bi-table::before {
  content: "\f5aa";
}
body.ski-rental-page .bi-tablet-fill::before {
  content: "\f5ab";
}
body.ski-rental-page .bi-tablet-landscape-fill::before {
  content: "\f5ac";
}
body.ski-rental-page .bi-tablet-landscape::before {
  content: "\f5ad";
}
body.ski-rental-page .bi-tablet::before {
  content: "\f5ae";
}
body.ski-rental-page .bi-tag-fill::before {
  content: "\f5af";
}
body.ski-rental-page .bi-tag::before {
  content: "\f5b0";
}
body.ski-rental-page .bi-tags-fill::before {
  content: "\f5b1";
}
body.ski-rental-page .bi-tags::before {
  content: "\f5b2";
}
body.ski-rental-page .bi-telegram::before {
  content: "\f5b3";
}
body.ski-rental-page .bi-telephone-fill::before {
  content: "\f5b4";
}
body.ski-rental-page .bi-telephone-forward-fill::before {
  content: "\f5b5";
}
body.ski-rental-page .bi-telephone-forward::before {
  content: "\f5b6";
}
body.ski-rental-page .bi-telephone-inbound-fill::before {
  content: "\f5b7";
}
body.ski-rental-page .bi-telephone-inbound::before {
  content: "\f5b8";
}
body.ski-rental-page .bi-telephone-minus-fill::before {
  content: "\f5b9";
}
body.ski-rental-page .bi-telephone-minus::before {
  content: "\f5ba";
}
body.ski-rental-page .bi-telephone-outbound-fill::before {
  content: "\f5bb";
}
body.ski-rental-page .bi-telephone-outbound::before {
  content: "\f5bc";
}
body.ski-rental-page .bi-telephone-plus-fill::before {
  content: "\f5bd";
}
body.ski-rental-page .bi-telephone-plus::before {
  content: "\f5be";
}
body.ski-rental-page .bi-telephone-x-fill::before {
  content: "\f5bf";
}
body.ski-rental-page .bi-telephone-x::before {
  content: "\f5c0";
}
body.ski-rental-page .bi-telephone::before {
  content: "\f5c1";
}
body.ski-rental-page .bi-terminal-fill::before {
  content: "\f5c2";
}
body.ski-rental-page .bi-terminal::before {
  content: "\f5c3";
}
body.ski-rental-page .bi-text-center::before {
  content: "\f5c4";
}
body.ski-rental-page .bi-text-indent-left::before {
  content: "\f5c5";
}
body.ski-rental-page .bi-text-indent-right::before {
  content: "\f5c6";
}
body.ski-rental-page .bi-text-left::before {
  content: "\f5c7";
}
body.ski-rental-page .bi-text-paragraph::before {
  content: "\f5c8";
}
body.ski-rental-page .bi-text-right::before {
  content: "\f5c9";
}
body.ski-rental-page .bi-textarea-resize::before {
  content: "\f5ca";
}
body.ski-rental-page .bi-textarea-t::before {
  content: "\f5cb";
}
body.ski-rental-page .bi-textarea::before {
  content: "\f5cc";
}
body.ski-rental-page .bi-thermometer-half::before {
  content: "\f5cd";
}
body.ski-rental-page .bi-thermometer-high::before {
  content: "\f5ce";
}
body.ski-rental-page .bi-thermometer-low::before {
  content: "\f5cf";
}
body.ski-rental-page .bi-thermometer-snow::before {
  content: "\f5d0";
}
body.ski-rental-page .bi-thermometer-sun::before {
  content: "\f5d1";
}
body.ski-rental-page .bi-thermometer::before {
  content: "\f5d2";
}
body.ski-rental-page .bi-three-dots-vertical::before {
  content: "\f5d3";
}
body.ski-rental-page .bi-three-dots::before {
  content: "\f5d4";
}
body.ski-rental-page .bi-toggle-off::before {
  content: "\f5d5";
}
body.ski-rental-page .bi-toggle-on::before {
  content: "\f5d6";
}
body.ski-rental-page .bi-toggle2-off::before {
  content: "\f5d7";
}
body.ski-rental-page .bi-toggle2-on::before {
  content: "\f5d8";
}
body.ski-rental-page .bi-toggles::before {
  content: "\f5d9";
}
body.ski-rental-page .bi-toggles2::before {
  content: "\f5da";
}
body.ski-rental-page .bi-tools::before {
  content: "\f5db";
}
body.ski-rental-page .bi-tornado::before {
  content: "\f5dc";
}
body.ski-rental-page .bi-trash-fill::before {
  content: "\f5dd";
}
body.ski-rental-page .bi-trash::before {
  content: "\f5de";
}
body.ski-rental-page .bi-trash2-fill::before {
  content: "\f5df";
}
body.ski-rental-page .bi-trash2::before {
  content: "\f5e0";
}
body.ski-rental-page .bi-tree-fill::before {
  content: "\f5e1";
}
body.ski-rental-page .bi-tree::before {
  content: "\f5e2";
}
body.ski-rental-page .bi-triangle-fill::before {
  content: "\f5e3";
}
body.ski-rental-page .bi-triangle-half::before {
  content: "\f5e4";
}
body.ski-rental-page .bi-triangle::before {
  content: "\f5e5";
}
body.ski-rental-page .bi-trophy-fill::before {
  content: "\f5e6";
}
body.ski-rental-page .bi-trophy::before {
  content: "\f5e7";
}
body.ski-rental-page .bi-tropical-storm::before {
  content: "\f5e8";
}
body.ski-rental-page .bi-truck-flatbed::before {
  content: "\f5e9";
}
body.ski-rental-page .bi-truck::before {
  content: "\f5ea";
}
body.ski-rental-page .bi-tsunami::before {
  content: "\f5eb";
}
body.ski-rental-page .bi-tv-fill::before {
  content: "\f5ec";
}
body.ski-rental-page .bi-tv::before {
  content: "\f5ed";
}
body.ski-rental-page .bi-twitch::before {
  content: "\f5ee";
}
body.ski-rental-page .bi-twitter::before {
  content: "\f5ef";
}
body.ski-rental-page .bi-type-bold::before {
  content: "\f5f0";
}
body.ski-rental-page .bi-type-h1::before {
  content: "\f5f1";
}
body.ski-rental-page .bi-type-h2::before {
  content: "\f5f2";
}
body.ski-rental-page .bi-type-h3::before {
  content: "\f5f3";
}
body.ski-rental-page .bi-type-italic::before {
  content: "\f5f4";
}
body.ski-rental-page .bi-type-strikethrough::before {
  content: "\f5f5";
}
body.ski-rental-page .bi-type-underline::before {
  content: "\f5f6";
}
body.ski-rental-page .bi-type::before {
  content: "\f5f7";
}
body.ski-rental-page .bi-ui-checks-grid::before {
  content: "\f5f8";
}
body.ski-rental-page .bi-ui-checks::before {
  content: "\f5f9";
}
body.ski-rental-page .bi-ui-radios-grid::before {
  content: "\f5fa";
}
body.ski-rental-page .bi-ui-radios::before {
  content: "\f5fb";
}
body.ski-rental-page .bi-umbrella-fill::before {
  content: "\f5fc";
}
body.ski-rental-page .bi-umbrella::before {
  content: "\f5fd";
}
body.ski-rental-page .bi-union::before {
  content: "\f5fe";
}
body.ski-rental-page .bi-unlock-fill::before {
  content: "\f5ff";
}
body.ski-rental-page .bi-unlock::before {
  content: "\f600";
}
body.ski-rental-page .bi-upc-scan::before {
  content: "\f601";
}
body.ski-rental-page .bi-upc::before {
  content: "\f602";
}
body.ski-rental-page .bi-upload::before {
  content: "\f603";
}
body.ski-rental-page .bi-vector-pen::before {
  content: "\f604";
}
body.ski-rental-page .bi-view-list::before {
  content: "\f605";
}
body.ski-rental-page .bi-view-stacked::before {
  content: "\f606";
}
body.ski-rental-page .bi-vinyl-fill::before {
  content: "\f607";
}
body.ski-rental-page .bi-vinyl::before {
  content: "\f608";
}
body.ski-rental-page .bi-voicemail::before {
  content: "\f609";
}
body.ski-rental-page .bi-volume-down-fill::before {
  content: "\f60a";
}
body.ski-rental-page .bi-volume-down::before {
  content: "\f60b";
}
body.ski-rental-page .bi-volume-mute-fill::before {
  content: "\f60c";
}
body.ski-rental-page .bi-volume-mute::before {
  content: "\f60d";
}
body.ski-rental-page .bi-volume-off-fill::before {
  content: "\f60e";
}
body.ski-rental-page .bi-volume-off::before {
  content: "\f60f";
}
body.ski-rental-page .bi-volume-up-fill::before {
  content: "\f610";
}
body.ski-rental-page .bi-volume-up::before {
  content: "\f611";
}
body.ski-rental-page .bi-vr::before {
  content: "\f612";
}
body.ski-rental-page .bi-wallet-fill::before {
  content: "\f613";
}
body.ski-rental-page .bi-wallet::before {
  content: "\f614";
}
body.ski-rental-page .bi-wallet2::before {
  content: "\f615";
}
body.ski-rental-page .bi-watch::before {
  content: "\f616";
}
body.ski-rental-page .bi-water::before {
  content: "\f617";
}
body.ski-rental-page .bi-whatsapp::before {
  content: "\f618";
}
body.ski-rental-page .bi-wifi-1::before {
  content: "\f619";
}
body.ski-rental-page .bi-wifi-2::before {
  content: "\f61a";
}
body.ski-rental-page .bi-wifi-off::before {
  content: "\f61b";
}
body.ski-rental-page .bi-wifi::before {
  content: "\f61c";
}
body.ski-rental-page .bi-wind::before {
  content: "\f61d";
}
body.ski-rental-page .bi-window-dock::before {
  content: "\f61e";
}
body.ski-rental-page .bi-window-sidebar::before {
  content: "\f61f";
}
body.ski-rental-page .bi-window::before {
  content: "\f620";
}
body.ski-rental-page .bi-wrench::before {
  content: "\f621";
}
body.ski-rental-page .bi-x-circle-fill::before {
  content: "\f622";
}
body.ski-rental-page .bi-x-circle::before {
  content: "\f623";
}
body.ski-rental-page .bi-x-diamond-fill::before {
  content: "\f624";
}
body.ski-rental-page .bi-x-diamond::before {
  content: "\f625";
}
body.ski-rental-page .bi-x-octagon-fill::before {
  content: "\f626";
}
body.ski-rental-page .bi-x-octagon::before {
  content: "\f627";
}
body.ski-rental-page .bi-x-square-fill::before {
  content: "\f628";
}
body.ski-rental-page .bi-x-square::before {
  content: "\f629";
}
body.ski-rental-page .bi-x::before {
  content: "\f62a";
}
body.ski-rental-page .bi-youtube::before {
  content: "\f62b";
}
body.ski-rental-page .bi-zoom-in::before {
  content: "\f62c";
}
body.ski-rental-page .bi-zoom-out::before {
  content: "\f62d";
}
body.ski-rental-page .bi-bank::before {
  content: "\f62e";
}
body.ski-rental-page .bi-bank2::before {
  content: "\f62f";
}
body.ski-rental-page .bi-bell-slash-fill::before {
  content: "\f630";
}
body.ski-rental-page .bi-bell-slash::before {
  content: "\f631";
}
body.ski-rental-page .bi-cash-coin::before {
  content: "\f632";
}
body.ski-rental-page .bi-check-lg::before {
  content: "\f633";
}
body.ski-rental-page .bi-coin::before {
  content: "\f634";
}
body.ski-rental-page .bi-currency-bitcoin::before {
  content: "\f635";
}
body.ski-rental-page .bi-currency-dollar::before {
  content: "\f636";
}
body.ski-rental-page .bi-currency-euro::before {
  content: "\f637";
}
body.ski-rental-page .bi-currency-exchange::before {
  content: "\f638";
}
body.ski-rental-page .bi-currency-pound::before {
  content: "\f639";
}
body.ski-rental-page .bi-currency-yen::before {
  content: "\f63a";
}
body.ski-rental-page .bi-dash-lg::before {
  content: "\f63b";
}
body.ski-rental-page .bi-exclamation-lg::before {
  content: "\f63c";
}
body.ski-rental-page .bi-file-earmark-pdf-fill::before {
  content: "\f63d";
}
body.ski-rental-page .bi-file-earmark-pdf::before {
  content: "\f63e";
}
body.ski-rental-page .bi-file-pdf-fill::before {
  content: "\f63f";
}
body.ski-rental-page .bi-file-pdf::before {
  content: "\f640";
}
body.ski-rental-page .bi-gender-ambiguous::before {
  content: "\f641";
}
body.ski-rental-page .bi-gender-female::before {
  content: "\f642";
}
body.ski-rental-page .bi-gender-male::before {
  content: "\f643";
}
body.ski-rental-page .bi-gender-trans::before {
  content: "\f644";
}
body.ski-rental-page .bi-headset-vr::before {
  content: "\f645";
}
body.ski-rental-page .bi-info-lg::before {
  content: "\f646";
}
body.ski-rental-page .bi-mastodon::before {
  content: "\f647";
}
body.ski-rental-page .bi-messenger::before {
  content: "\f648";
}
body.ski-rental-page .bi-piggy-bank-fill::before {
  content: "\f649";
}
body.ski-rental-page .bi-piggy-bank::before {
  content: "\f64a";
}
body.ski-rental-page .bi-pin-map-fill::before {
  content: "\f64b";
}
body.ski-rental-page .bi-pin-map::before {
  content: "\f64c";
}
body.ski-rental-page .bi-plus-lg::before {
  content: "\f64d";
}
body.ski-rental-page .bi-question-lg::before {
  content: "\f64e";
}
body.ski-rental-page .bi-recycle::before {
  content: "\f64f";
}
body.ski-rental-page .bi-reddit::before {
  content: "\f650";
}
body.ski-rental-page .bi-safe-fill::before {
  content: "\f651";
}
body.ski-rental-page .bi-safe2-fill::before {
  content: "\f652";
}
body.ski-rental-page .bi-safe2::before {
  content: "\f653";
}
body.ski-rental-page .bi-sd-card-fill::before {
  content: "\f654";
}
body.ski-rental-page .bi-sd-card::before {
  content: "\f655";
}
body.ski-rental-page .bi-skype::before {
  content: "\f656";
}
body.ski-rental-page .bi-slash-lg::before {
  content: "\f657";
}
body.ski-rental-page .bi-translate::before {
  content: "\f658";
}
body.ski-rental-page .bi-x-lg::before {
  content: "\f659";
}
body.ski-rental-page .bi-safe::before {
  content: "\f65a";
}
body.ski-rental-page .bi-apple::before {
  content: "\f65b";
}
body.ski-rental-page .bi-microsoft::before {
  content: "\f65d";
}
body.ski-rental-page .bi-windows::before {
  content: "\f65e";
}
body.ski-rental-page .bi-behance::before {
  content: "\f65c";
}
body.ski-rental-page .bi-dribbble::before {
  content: "\f65f";
}
body.ski-rental-page .bi-line::before {
  content: "\f660";
}
body.ski-rental-page .bi-medium::before {
  content: "\f661";
}
body.ski-rental-page .bi-paypal::before {
  content: "\f662";
}
body.ski-rental-page .bi-pinterest::before {
  content: "\f663";
}
body.ski-rental-page .bi-signal::before {
  content: "\f664";
}
body.ski-rental-page .bi-snapchat::before {
  content: "\f665";
}
body.ski-rental-page .bi-spotify::before {
  content: "\f666";
}
body.ski-rental-page .bi-stack-overflow::before {
  content: "\f667";
}
body.ski-rental-page .bi-strava::before {
  content: "\f668";
}
body.ski-rental-page .bi-wordpress::before {
  content: "\f669";
}
body.ski-rental-page .bi-vimeo::before {
  content: "\f66a";
}
body.ski-rental-page .bi-activity::before {
  content: "\f66b";
}
body.ski-rental-page .bi-easel2-fill::before {
  content: "\f66c";
}
body.ski-rental-page .bi-easel2::before {
  content: "\f66d";
}
body.ski-rental-page .bi-easel3-fill::before {
  content: "\f66e";
}
body.ski-rental-page .bi-easel3::before {
  content: "\f66f";
}
body.ski-rental-page .bi-fan::before {
  content: "\f670";
}
body.ski-rental-page .bi-fingerprint::before {
  content: "\f671";
}
body.ski-rental-page .bi-graph-down-arrow::before {
  content: "\f672";
}
body.ski-rental-page .bi-graph-up-arrow::before {
  content: "\f673";
}
body.ski-rental-page .bi-hypnotize::before {
  content: "\f674";
}
body.ski-rental-page .bi-magic::before {
  content: "\f675";
}
body.ski-rental-page .bi-person-rolodex::before {
  content: "\f676";
}
body.ski-rental-page .bi-person-video::before {
  content: "\f677";
}
body.ski-rental-page .bi-person-video2::before {
  content: "\f678";
}
body.ski-rental-page .bi-person-video3::before {
  content: "\f679";
}
body.ski-rental-page .bi-person-workspace::before {
  content: "\f67a";
}
body.ski-rental-page .bi-radioactive::before {
  content: "\f67b";
}
body.ski-rental-page .bi-webcam-fill::before {
  content: "\f67c";
}
body.ski-rental-page .bi-webcam::before {
  content: "\f67d";
}
body.ski-rental-page .bi-yin-yang::before {
  content: "\f67e";
}
body.ski-rental-page .bi-bandaid-fill::before {
  content: "\f680";
}
body.ski-rental-page .bi-bandaid::before {
  content: "\f681";
}
body.ski-rental-page .bi-bluetooth::before {
  content: "\f682";
}
body.ski-rental-page .bi-body-text::before {
  content: "\f683";
}
body.ski-rental-page .bi-boombox::before {
  content: "\f684";
}
body.ski-rental-page .bi-boxes::before {
  content: "\f685";
}
body.ski-rental-page .bi-dpad-fill::before {
  content: "\f686";
}
body.ski-rental-page .bi-dpad::before {
  content: "\f687";
}
body.ski-rental-page .bi-ear-fill::before {
  content: "\f688";
}
body.ski-rental-page .bi-ear::before {
  content: "\f689";
}
body.ski-rental-page .bi-envelope-check-1::before {
  content: "\f68a";
}
body.ski-rental-page .bi-envelope-check-fill::before {
  content: "\f68b";
}
body.ski-rental-page .bi-envelope-check::before {
  content: "\f68c";
}
body.ski-rental-page .bi-envelope-dash-1::before {
  content: "\f68d";
}
body.ski-rental-page .bi-envelope-dash-fill::before {
  content: "\f68e";
}
body.ski-rental-page .bi-envelope-dash::before {
  content: "\f68f";
}
body.ski-rental-page .bi-envelope-exclamation-1::before {
  content: "\f690";
}
body.ski-rental-page .bi-envelope-exclamation-fill::before {
  content: "\f691";
}
body.ski-rental-page .bi-envelope-exclamation::before {
  content: "\f692";
}
body.ski-rental-page .bi-envelope-plus-fill::before {
  content: "\f693";
}
body.ski-rental-page .bi-envelope-plus::before {
  content: "\f694";
}
body.ski-rental-page .bi-envelope-slash-1::before {
  content: "\f695";
}
body.ski-rental-page .bi-envelope-slash-fill::before {
  content: "\f696";
}
body.ski-rental-page .bi-envelope-slash::before {
  content: "\f697";
}
body.ski-rental-page .bi-envelope-x-1::before {
  content: "\f698";
}
body.ski-rental-page .bi-envelope-x-fill::before {
  content: "\f699";
}
body.ski-rental-page .bi-envelope-x::before {
  content: "\f69a";
}
body.ski-rental-page .bi-explicit-fill::before {
  content: "\f69b";
}
body.ski-rental-page .bi-explicit::before {
  content: "\f69c";
}
body.ski-rental-page .bi-git::before {
  content: "\f69d";
}
body.ski-rental-page .bi-infinity::before {
  content: "\f69e";
}
body.ski-rental-page .bi-list-columns-reverse::before {
  content: "\f69f";
}
body.ski-rental-page .bi-list-columns::before {
  content: "\f6a0";
}
body.ski-rental-page .bi-meta::before {
  content: "\f6a1";
}
body.ski-rental-page .bi-mortorboard-fill::before {
  content: "\f6a2";
}
body.ski-rental-page .bi-mortorboard::before {
  content: "\f6a3";
}
body.ski-rental-page .bi-nintendo-switch::before {
  content: "\f6a4";
}
body.ski-rental-page .bi-pc-display-horizontal::before {
  content: "\f6a5";
}
body.ski-rental-page .bi-pc-display::before {
  content: "\f6a6";
}
body.ski-rental-page .bi-pc-horizontal::before {
  content: "\f6a7";
}
body.ski-rental-page .bi-pc::before {
  content: "\f6a8";
}
body.ski-rental-page .bi-playstation::before {
  content: "\f6a9";
}
body.ski-rental-page .bi-plus-slash-minus::before {
  content: "\f6aa";
}
body.ski-rental-page .bi-projector-fill::before {
  content: "\f6ab";
}
body.ski-rental-page .bi-projector::before {
  content: "\f6ac";
}
body.ski-rental-page .bi-qr-code-scan::before {
  content: "\f6ad";
}
body.ski-rental-page .bi-qr-code::before {
  content: "\f6ae";
}
body.ski-rental-page .bi-quora::before {
  content: "\f6af";
}
body.ski-rental-page .bi-quote::before {
  content: "\f6b0";
}
body.ski-rental-page .bi-robot::before {
  content: "\f6b1";
}
body.ski-rental-page .bi-send-check-fill::before {
  content: "\f6b2";
}
body.ski-rental-page .bi-send-check::before {
  content: "\f6b3";
}
body.ski-rental-page .bi-send-dash-fill::before {
  content: "\f6b4";
}
body.ski-rental-page .bi-send-dash::before {
  content: "\f6b5";
}
body.ski-rental-page .bi-send-exclamation-1::before {
  content: "\f6b6";
}
body.ski-rental-page .bi-send-exclamation-fill::before {
  content: "\f6b7";
}
body.ski-rental-page .bi-send-exclamation::before {
  content: "\f6b8";
}
body.ski-rental-page .bi-send-fill::before {
  content: "\f6b9";
}
body.ski-rental-page .bi-send-plus-fill::before {
  content: "\f6ba";
}
body.ski-rental-page .bi-send-plus::before {
  content: "\f6bb";
}
body.ski-rental-page .bi-send-slash-fill::before {
  content: "\f6bc";
}
body.ski-rental-page .bi-send-slash::before {
  content: "\f6bd";
}
body.ski-rental-page .bi-send-x-fill::before {
  content: "\f6be";
}
body.ski-rental-page .bi-send-x::before {
  content: "\f6bf";
}
body.ski-rental-page .bi-send::before {
  content: "\f6c0";
}
body.ski-rental-page .bi-steam::before {
  content: "\f6c1";
}
body.ski-rental-page .bi-terminal-dash-1::before {
  content: "\f6c2";
}
body.ski-rental-page .bi-terminal-dash::before {
  content: "\f6c3";
}
body.ski-rental-page .bi-terminal-plus::before {
  content: "\f6c4";
}
body.ski-rental-page .bi-terminal-split::before {
  content: "\f6c5";
}
body.ski-rental-page .bi-ticket-detailed-fill::before {
  content: "\f6c6";
}
body.ski-rental-page .bi-ticket-detailed::before {
  content: "\f6c7";
}
body.ski-rental-page .bi-ticket-fill::before {
  content: "\f6c8";
}
body.ski-rental-page .bi-ticket-perforated-fill::before {
  content: "\f6c9";
}
body.ski-rental-page .bi-ticket-perforated::before {
  content: "\f6ca";
}
body.ski-rental-page .bi-ticket::before {
  content: "\f6cb";
}
body.ski-rental-page .bi-tiktok::before {
  content: "\f6cc";
}
body.ski-rental-page .bi-window-dash::before {
  content: "\f6cd";
}
body.ski-rental-page .bi-window-desktop::before {
  content: "\f6ce";
}
body.ski-rental-page .bi-window-fullscreen::before {
  content: "\f6cf";
}
body.ski-rental-page .bi-window-plus::before {
  content: "\f6d0";
}
body.ski-rental-page .bi-window-split::before {
  content: "\f6d1";
}
body.ski-rental-page .bi-window-stack::before {
  content: "\f6d2";
}
body.ski-rental-page .bi-window-x::before {
  content: "\f6d3";
}
body.ski-rental-page .bi-xbox::before {
  content: "\f6d4";
}
body.ski-rental-page .bi-ethernet::before {
  content: "\f6d5";
}
body.ski-rental-page .bi-hdmi-fill::before {
  content: "\f6d6";
}
body.ski-rental-page .bi-hdmi::before {
  content: "\f6d7";
}
body.ski-rental-page .bi-usb-c-fill::before {
  content: "\f6d8";
}
body.ski-rental-page .bi-usb-c::before {
  content: "\f6d9";
}
body.ski-rental-page .bi-usb-fill::before {
  content: "\f6da";
}
body.ski-rental-page .bi-usb-plug-fill::before {
  content: "\f6db";
}
body.ski-rental-page .bi-usb-plug::before {
  content: "\f6dc";
}
body.ski-rental-page .bi-usb-symbol::before {
  content: "\f6dd";
}
body.ski-rental-page .bi-usb::before {
  content: "\f6de";
}
body.ski-rental-page .bi-boombox-fill::before {
  content: "\f6df";
}
body.ski-rental-page .bi-displayport-1::before {
  content: "\f6e0";
}
body.ski-rental-page .bi-displayport::before {
  content: "\f6e1";
}
body.ski-rental-page .bi-gpu-card::before {
  content: "\f6e2";
}
body.ski-rental-page .bi-memory::before {
  content: "\f6e3";
}
body.ski-rental-page .bi-modem-fill::before {
  content: "\f6e4";
}
body.ski-rental-page .bi-modem::before {
  content: "\f6e5";
}
body.ski-rental-page .bi-motherboard-fill::before {
  content: "\f6e6";
}
body.ski-rental-page .bi-motherboard::before {
  content: "\f6e7";
}
body.ski-rental-page .bi-optical-audio-fill::before {
  content: "\f6e8";
}
body.ski-rental-page .bi-optical-audio::before {
  content: "\f6e9";
}
body.ski-rental-page .bi-pci-card::before {
  content: "\f6ea";
}
body.ski-rental-page .bi-router-fill::before {
  content: "\f6eb";
}
body.ski-rental-page .bi-router::before {
  content: "\f6ec";
}
body.ski-rental-page .bi-ssd-fill::before {
  content: "\f6ed";
}
body.ski-rental-page .bi-ssd::before {
  content: "\f6ee";
}
body.ski-rental-page .bi-thunderbolt-fill::before {
  content: "\f6ef";
}
body.ski-rental-page .bi-thunderbolt::before {
  content: "\f6f0";
}
body.ski-rental-page .bi-usb-drive-fill::before {
  content: "\f6f1";
}
body.ski-rental-page .bi-usb-drive::before {
  content: "\f6f2";
}
body.ski-rental-page .bi-usb-micro-fill::before {
  content: "\f6f3";
}
body.ski-rental-page .bi-usb-micro::before {
  content: "\f6f4";
}
body.ski-rental-page .bi-usb-mini-fill::before {
  content: "\f6f5";
}
body.ski-rental-page .bi-usb-mini::before {
  content: "\f6f6";
}
body.ski-rental-page .bi-cloud-haze2::before {
  content: "\f6f7";
}
body.ski-rental-page .bi-device-hdd-fill::before {
  content: "\f6f8";
}
body.ski-rental-page .bi-device-hdd::before {
  content: "\f6f9";
}
body.ski-rental-page .bi-device-ssd-fill::before {
  content: "\f6fa";
}
body.ski-rental-page .bi-device-ssd::before {
  content: "\f6fb";
}
body.ski-rental-page .bi-displayport-fill::before {
  content: "\f6fc";
}
body.ski-rental-page .bi-mortarboard-fill::before {
  content: "\f6fd";
}
body.ski-rental-page .bi-mortarboard::before {
  content: "\f6fe";
}
body.ski-rental-page .bi-terminal-x::before {
  content: "\f6ff";
}
body.ski-rental-page .bi-arrow-through-heart-fill::before {
  content: "\f700";
}
body.ski-rental-page .bi-arrow-through-heart::before {
  content: "\f701";
}
body.ski-rental-page .bi-badge-sd-fill::before {
  content: "\f702";
}
body.ski-rental-page .bi-badge-sd::before {
  content: "\f703";
}
body.ski-rental-page .bi-bag-heart-fill::before {
  content: "\f704";
}
body.ski-rental-page .bi-bag-heart::before {
  content: "\f705";
}
body.ski-rental-page .bi-balloon-fill::before {
  content: "\f706";
}
body.ski-rental-page .bi-balloon-heart-fill::before {
  content: "\f707";
}
body.ski-rental-page .bi-balloon-heart::before {
  content: "\f708";
}
body.ski-rental-page .bi-balloon::before {
  content: "\f709";
}
body.ski-rental-page .bi-box2-fill::before {
  content: "\f70a";
}
body.ski-rental-page .bi-box2-heart-fill::before {
  content: "\f70b";
}
body.ski-rental-page .bi-box2-heart::before {
  content: "\f70c";
}
body.ski-rental-page .bi-box2::before {
  content: "\f70d";
}
body.ski-rental-page .bi-braces-asterisk::before {
  content: "\f70e";
}
body.ski-rental-page .bi-calendar-heart-fill::before {
  content: "\f70f";
}
body.ski-rental-page .bi-calendar-heart::before {
  content: "\f710";
}
body.ski-rental-page .bi-calendar2-heart-fill::before {
  content: "\f711";
}
body.ski-rental-page .bi-calendar2-heart::before {
  content: "\f712";
}
body.ski-rental-page .bi-chat-heart-fill::before {
  content: "\f713";
}
body.ski-rental-page .bi-chat-heart::before {
  content: "\f714";
}
body.ski-rental-page .bi-chat-left-heart-fill::before {
  content: "\f715";
}
body.ski-rental-page .bi-chat-left-heart::before {
  content: "\f716";
}
body.ski-rental-page .bi-chat-right-heart-fill::before {
  content: "\f717";
}
body.ski-rental-page .bi-chat-right-heart::before {
  content: "\f718";
}
body.ski-rental-page .bi-chat-square-heart-fill::before {
  content: "\f719";
}
body.ski-rental-page .bi-chat-square-heart::before {
  content: "\f71a";
}
body.ski-rental-page .bi-clipboard-check-fill::before {
  content: "\f71b";
}
body.ski-rental-page .bi-clipboard-data-fill::before {
  content: "\f71c";
}
body.ski-rental-page .bi-clipboard-fill::before {
  content: "\f71d";
}
body.ski-rental-page .bi-clipboard-heart-fill::before {
  content: "\f71e";
}
body.ski-rental-page .bi-clipboard-heart::before {
  content: "\f71f";
}
body.ski-rental-page .bi-clipboard-minus-fill::before {
  content: "\f720";
}
body.ski-rental-page .bi-clipboard-plus-fill::before {
  content: "\f721";
}
body.ski-rental-page .bi-clipboard-pulse::before {
  content: "\f722";
}
body.ski-rental-page .bi-clipboard-x-fill::before {
  content: "\f723";
}
body.ski-rental-page .bi-clipboard2-check-fill::before {
  content: "\f724";
}
body.ski-rental-page .bi-clipboard2-check::before {
  content: "\f725";
}
body.ski-rental-page .bi-clipboard2-data-fill::before {
  content: "\f726";
}
body.ski-rental-page .bi-clipboard2-data::before {
  content: "\f727";
}
body.ski-rental-page .bi-clipboard2-fill::before {
  content: "\f728";
}
body.ski-rental-page .bi-clipboard2-heart-fill::before {
  content: "\f729";
}
body.ski-rental-page .bi-clipboard2-heart::before {
  content: "\f72a";
}
body.ski-rental-page .bi-clipboard2-minus-fill::before {
  content: "\f72b";
}
body.ski-rental-page .bi-clipboard2-minus::before {
  content: "\f72c";
}
body.ski-rental-page .bi-clipboard2-plus-fill::before {
  content: "\f72d";
}
body.ski-rental-page .bi-clipboard2-plus::before {
  content: "\f72e";
}
body.ski-rental-page .bi-clipboard2-pulse-fill::before {
  content: "\f72f";
}
body.ski-rental-page .bi-clipboard2-pulse::before {
  content: "\f730";
}
body.ski-rental-page .bi-clipboard2-x-fill::before {
  content: "\f731";
}
body.ski-rental-page .bi-clipboard2-x::before {
  content: "\f732";
}
body.ski-rental-page .bi-clipboard2::before {
  content: "\f733";
}
body.ski-rental-page .bi-emoji-kiss-fill::before {
  content: "\f734";
}
body.ski-rental-page .bi-emoji-kiss::before {
  content: "\f735";
}
body.ski-rental-page .bi-envelope-heart-fill::before {
  content: "\f736";
}
body.ski-rental-page .bi-envelope-heart::before {
  content: "\f737";
}
body.ski-rental-page .bi-envelope-open-heart-fill::before {
  content: "\f738";
}
body.ski-rental-page .bi-envelope-open-heart::before {
  content: "\f739";
}
body.ski-rental-page .bi-envelope-paper-fill::before {
  content: "\f73a";
}
body.ski-rental-page .bi-envelope-paper-heart-fill::before {
  content: "\f73b";
}
body.ski-rental-page .bi-envelope-paper-heart::before {
  content: "\f73c";
}
body.ski-rental-page .bi-envelope-paper::before {
  content: "\f73d";
}
body.ski-rental-page .bi-filetype-aac::before {
  content: "\f73e";
}
body.ski-rental-page .bi-filetype-ai::before {
  content: "\f73f";
}
body.ski-rental-page .bi-filetype-bmp::before {
  content: "\f740";
}
body.ski-rental-page .bi-filetype-cs::before {
  content: "\f741";
}
body.ski-rental-page .bi-filetype-css::before {
  content: "\f742";
}
body.ski-rental-page .bi-filetype-csv::before {
  content: "\f743";
}
body.ski-rental-page .bi-filetype-doc::before {
  content: "\f744";
}
body.ski-rental-page .bi-filetype-docx::before {
  content: "\f745";
}
body.ski-rental-page .bi-filetype-exe::before {
  content: "\f746";
}
body.ski-rental-page .bi-filetype-gif::before {
  content: "\f747";
}
body.ski-rental-page .bi-filetype-heic::before {
  content: "\f748";
}
body.ski-rental-page .bi-filetype-html::before {
  content: "\f749";
}
body.ski-rental-page .bi-filetype-java::before {
  content: "\f74a";
}
body.ski-rental-page .bi-filetype-jpg::before {
  content: "\f74b";
}
body.ski-rental-page .bi-filetype-js::before {
  content: "\f74c";
}
body.ski-rental-page .bi-filetype-jsx::before {
  content: "\f74d";
}
body.ski-rental-page .bi-filetype-key::before {
  content: "\f74e";
}
body.ski-rental-page .bi-filetype-m4p::before {
  content: "\f74f";
}
body.ski-rental-page .bi-filetype-md::before {
  content: "\f750";
}
body.ski-rental-page .bi-filetype-mdx::before {
  content: "\f751";
}
body.ski-rental-page .bi-filetype-mov::before {
  content: "\f752";
}
body.ski-rental-page .bi-filetype-mp3::before {
  content: "\f753";
}
body.ski-rental-page .bi-filetype-mp4::before {
  content: "\f754";
}
body.ski-rental-page .bi-filetype-otf::before {
  content: "\f755";
}
body.ski-rental-page .bi-filetype-pdf::before {
  content: "\f756";
}
body.ski-rental-page .bi-filetype-php::before {
  content: "\f757";
}
body.ski-rental-page .bi-filetype-png::before {
  content: "\f758";
}
body.ski-rental-page .bi-filetype-ppt-1::before {
  content: "\f759";
}
body.ski-rental-page .bi-filetype-ppt::before {
  content: "\f75a";
}
body.ski-rental-page .bi-filetype-psd::before {
  content: "\f75b";
}
body.ski-rental-page .bi-filetype-py::before {
  content: "\f75c";
}
body.ski-rental-page .bi-filetype-raw::before {
  content: "\f75d";
}
body.ski-rental-page .bi-filetype-rb::before {
  content: "\f75e";
}
body.ski-rental-page .bi-filetype-sass::before {
  content: "\f75f";
}
body.ski-rental-page .bi-filetype-scss::before {
  content: "\f760";
}
body.ski-rental-page .bi-filetype-sh::before {
  content: "\f761";
}
body.ski-rental-page .bi-filetype-svg::before {
  content: "\f762";
}
body.ski-rental-page .bi-filetype-tiff::before {
  content: "\f763";
}
body.ski-rental-page .bi-filetype-tsx::before {
  content: "\f764";
}
body.ski-rental-page .bi-filetype-ttf::before {
  content: "\f765";
}
body.ski-rental-page .bi-filetype-txt::before {
  content: "\f766";
}
body.ski-rental-page .bi-filetype-wav::before {
  content: "\f767";
}
body.ski-rental-page .bi-filetype-woff::before {
  content: "\f768";
}
body.ski-rental-page .bi-filetype-xls-1::before {
  content: "\f769";
}
body.ski-rental-page .bi-filetype-xls::before {
  content: "\f76a";
}
body.ski-rental-page .bi-filetype-xml::before {
  content: "\f76b";
}
body.ski-rental-page .bi-filetype-yml::before {
  content: "\f76c";
}
body.ski-rental-page .bi-heart-arrow::before {
  content: "\f76d";
}
body.ski-rental-page .bi-heart-pulse-fill::before {
  content: "\f76e";
}
body.ski-rental-page .bi-heart-pulse::before {
  content: "\f76f";
}
body.ski-rental-page .bi-heartbreak-fill::before {
  content: "\f770";
}
body.ski-rental-page .bi-heartbreak::before {
  content: "\f771";
}
body.ski-rental-page .bi-hearts::before {
  content: "\f772";
}
body.ski-rental-page .bi-hospital-fill::before {
  content: "\f773";
}
body.ski-rental-page .bi-hospital::before {
  content: "\f774";
}
body.ski-rental-page .bi-house-heart-fill::before {
  content: "\f775";
}
body.ski-rental-page .bi-house-heart::before {
  content: "\f776";
}
body.ski-rental-page .bi-incognito::before {
  content: "\f777";
}
body.ski-rental-page .bi-magnet-fill::before {
  content: "\f778";
}
body.ski-rental-page .bi-magnet::before {
  content: "\f779";
}
body.ski-rental-page .bi-person-heart::before {
  content: "\f77a";
}
body.ski-rental-page .bi-person-hearts::before {
  content: "\f77b";
}
body.ski-rental-page .bi-phone-flip::before {
  content: "\f77c";
}
body.ski-rental-page .bi-plugin::before {
  content: "\f77d";
}
body.ski-rental-page .bi-postage-fill::before {
  content: "\f77e";
}
body.ski-rental-page .bi-postage-heart-fill::before {
  content: "\f77f";
}
body.ski-rental-page .bi-postage-heart::before {
  content: "\f780";
}
body.ski-rental-page .bi-postage::before {
  content: "\f781";
}
body.ski-rental-page .bi-postcard-fill::before {
  content: "\f782";
}
body.ski-rental-page .bi-postcard-heart-fill::before {
  content: "\f783";
}
body.ski-rental-page .bi-postcard-heart::before {
  content: "\f784";
}
body.ski-rental-page .bi-postcard::before {
  content: "\f785";
}
body.ski-rental-page .bi-search-heart-fill::before {
  content: "\f786";
}
body.ski-rental-page .bi-search-heart::before {
  content: "\f787";
}
body.ski-rental-page .bi-sliders2-vertical::before {
  content: "\f788";
}
body.ski-rental-page .bi-sliders2::before {
  content: "\f789";
}
body.ski-rental-page .bi-trash3-fill::before {
  content: "\f78a";
}
body.ski-rental-page .bi-trash3::before {
  content: "\f78b";
}
body.ski-rental-page .bi-valentine::before {
  content: "\f78c";
}
body.ski-rental-page .bi-valentine2::before {
  content: "\f78d";
}
body.ski-rental-page .bi-wrench-adjustable-circle-fill::before {
  content: "\f78e";
}
body.ski-rental-page .bi-wrench-adjustable-circle::before {
  content: "\f78f";
}
body.ski-rental-page .bi-wrench-adjustable::before {
  content: "\f790";
}
body.ski-rental-page .bi-filetype-json::before {
  content: "\f791";
}
body.ski-rental-page .bi-filetype-pptx::before {
  content: "\f792";
}
body.ski-rental-page .bi-filetype-xlsx::before {
  content: "\f793";
}
body.ski-rental-page .bi-1-circle-1::before {
  content: "\f794";
}
body.ski-rental-page .bi-1-circle-fill-1::before {
  content: "\f795";
}
body.ski-rental-page .bi-1-circle-fill::before {
  content: "\f796";
}
body.ski-rental-page .bi-1-circle::before {
  content: "\f797";
}
body.ski-rental-page .bi-1-square-fill::before {
  content: "\f798";
}
body.ski-rental-page .bi-1-square::before {
  content: "\f799";
}
body.ski-rental-page .bi-2-circle-1::before {
  content: "\f79a";
}
body.ski-rental-page .bi-2-circle-fill-1::before {
  content: "\f79b";
}
body.ski-rental-page .bi-2-circle-fill::before {
  content: "\f79c";
}
body.ski-rental-page .bi-2-circle::before {
  content: "\f79d";
}
body.ski-rental-page .bi-2-square-fill::before {
  content: "\f79e";
}
body.ski-rental-page .bi-2-square::before {
  content: "\f79f";
}
body.ski-rental-page .bi-3-circle-1::before {
  content: "\f7a0";
}
body.ski-rental-page .bi-3-circle-fill-1::before {
  content: "\f7a1";
}
body.ski-rental-page .bi-3-circle-fill::before {
  content: "\f7a2";
}
body.ski-rental-page .bi-3-circle::before {
  content: "\f7a3";
}
body.ski-rental-page .bi-3-square-fill::before {
  content: "\f7a4";
}
body.ski-rental-page .bi-3-square::before {
  content: "\f7a5";
}
body.ski-rental-page .bi-4-circle-1::before {
  content: "\f7a6";
}
body.ski-rental-page .bi-4-circle-fill-1::before {
  content: "\f7a7";
}
body.ski-rental-page .bi-4-circle-fill::before {
  content: "\f7a8";
}
body.ski-rental-page .bi-4-circle::before {
  content: "\f7a9";
}
body.ski-rental-page .bi-4-square-fill::before {
  content: "\f7aa";
}
body.ski-rental-page .bi-4-square::before {
  content: "\f7ab";
}
body.ski-rental-page .bi-5-circle-1::before {
  content: "\f7ac";
}
body.ski-rental-page .bi-5-circle-fill-1::before {
  content: "\f7ad";
}
body.ski-rental-page .bi-5-circle-fill::before {
  content: "\f7ae";
}
body.ski-rental-page .bi-5-circle::before {
  content: "\f7af";
}
body.ski-rental-page .bi-5-square-fill::before {
  content: "\f7b0";
}
body.ski-rental-page .bi-5-square::before {
  content: "\f7b1";
}
body.ski-rental-page .bi-6-circle-1::before {
  content: "\f7b2";
}
body.ski-rental-page .bi-6-circle-fill-1::before {
  content: "\f7b3";
}
body.ski-rental-page .bi-6-circle-fill::before {
  content: "\f7b4";
}
body.ski-rental-page .bi-6-circle::before {
  content: "\f7b5";
}
body.ski-rental-page .bi-6-square-fill::before {
  content: "\f7b6";
}
body.ski-rental-page .bi-6-square::before {
  content: "\f7b7";
}
body.ski-rental-page .bi-7-circle-1::before {
  content: "\f7b8";
}
body.ski-rental-page .bi-7-circle-fill-1::before {
  content: "\f7b9";
}
body.ski-rental-page .bi-7-circle-fill::before {
  content: "\f7ba";
}
body.ski-rental-page .bi-7-circle::before {
  content: "\f7bb";
}
body.ski-rental-page .bi-7-square-fill::before {
  content: "\f7bc";
}
body.ski-rental-page .bi-7-square::before {
  content: "\f7bd";
}
body.ski-rental-page .bi-8-circle-1::before {
  content: "\f7be";
}
body.ski-rental-page .bi-8-circle-fill-1::before {
  content: "\f7bf";
}
body.ski-rental-page .bi-8-circle-fill::before {
  content: "\f7c0";
}
body.ski-rental-page .bi-8-circle::before {
  content: "\f7c1";
}
body.ski-rental-page .bi-8-square-fill::before {
  content: "\f7c2";
}
body.ski-rental-page .bi-8-square::before {
  content: "\f7c3";
}
body.ski-rental-page .bi-9-circle-1::before {
  content: "\f7c4";
}
body.ski-rental-page .bi-9-circle-fill-1::before {
  content: "\f7c5";
}
body.ski-rental-page .bi-9-circle-fill::before {
  content: "\f7c6";
}
body.ski-rental-page .bi-9-circle::before {
  content: "\f7c7";
}
body.ski-rental-page .bi-9-square-fill::before {
  content: "\f7c8";
}
body.ski-rental-page .bi-9-square::before {
  content: "\f7c9";
}
body.ski-rental-page .bi-airplane-engines-fill::before {
  content: "\f7ca";
}
body.ski-rental-page .bi-airplane-engines::before {
  content: "\f7cb";
}
body.ski-rental-page .bi-airplane-fill::before {
  content: "\f7cc";
}
body.ski-rental-page .bi-airplane::before {
  content: "\f7cd";
}
body.ski-rental-page .bi-alexa::before {
  content: "\f7ce";
}
body.ski-rental-page .bi-alipay::before {
  content: "\f7cf";
}
body.ski-rental-page .bi-android::before {
  content: "\f7d0";
}
body.ski-rental-page .bi-android2::before {
  content: "\f7d1";
}
body.ski-rental-page .bi-box-fill::before {
  content: "\f7d2";
}
body.ski-rental-page .bi-box-seam-fill::before {
  content: "\f7d3";
}
body.ski-rental-page .bi-browser-chrome::before {
  content: "\f7d4";
}
body.ski-rental-page .bi-browser-edge::before {
  content: "\f7d5";
}
body.ski-rental-page .bi-browser-firefox::before {
  content: "\f7d6";
}
body.ski-rental-page .bi-browser-safari::before {
  content: "\f7d7";
}
body.ski-rental-page .bi-c-circle-1::before {
  content: "\f7d8";
}
body.ski-rental-page .bi-c-circle-fill-1::before {
  content: "\f7d9";
}
body.ski-rental-page .bi-c-circle-fill::before {
  content: "\f7da";
}
body.ski-rental-page .bi-c-circle::before {
  content: "\f7db";
}
body.ski-rental-page .bi-c-square-fill::before {
  content: "\f7dc";
}
body.ski-rental-page .bi-c-square::before {
  content: "\f7dd";
}
body.ski-rental-page .bi-capsule-pill::before {
  content: "\f7de";
}
body.ski-rental-page .bi-capsule::before {
  content: "\f7df";
}
body.ski-rental-page .bi-car-front-fill::before {
  content: "\f7e0";
}
body.ski-rental-page .bi-car-front::before {
  content: "\f7e1";
}
body.ski-rental-page .bi-cassette-fill::before {
  content: "\f7e2";
}
body.ski-rental-page .bi-cassette::before {
  content: "\f7e3";
}
body.ski-rental-page .bi-cc-circle-1::before {
  content: "\f7e4";
}
body.ski-rental-page .bi-cc-circle-fill-1::before {
  content: "\f7e5";
}
body.ski-rental-page .bi-cc-circle-fill::before {
  content: "\f7e6";
}
body.ski-rental-page .bi-cc-circle::before {
  content: "\f7e7";
}
body.ski-rental-page .bi-cc-square-fill::before {
  content: "\f7e8";
}
body.ski-rental-page .bi-cc-square::before {
  content: "\f7e9";
}
body.ski-rental-page .bi-cup-hot-fill::before {
  content: "\f7ea";
}
body.ski-rental-page .bi-cup-hot::before {
  content: "\f7eb";
}
body.ski-rental-page .bi-currency-rupee::before {
  content: "\f7ec";
}
body.ski-rental-page .bi-dropbox::before {
  content: "\f7ed";
}
body.ski-rental-page .bi-escape::before {
  content: "\f7ee";
}
body.ski-rental-page .bi-fast-forward-btn-fill::before {
  content: "\f7ef";
}
body.ski-rental-page .bi-fast-forward-btn::before {
  content: "\f7f0";
}
body.ski-rental-page .bi-fast-forward-circle-fill::before {
  content: "\f7f1";
}
body.ski-rental-page .bi-fast-forward-circle::before {
  content: "\f7f2";
}
body.ski-rental-page .bi-fast-forward-fill::before {
  content: "\f7f3";
}
body.ski-rental-page .bi-fast-forward::before {
  content: "\f7f4";
}
body.ski-rental-page .bi-filetype-sql::before {
  content: "\f7f5";
}
body.ski-rental-page .bi-fire::before {
  content: "\f7f6";
}
body.ski-rental-page .bi-google-play::before {
  content: "\f7f7";
}
body.ski-rental-page .bi-h-circle-1::before {
  content: "\f7f8";
}
body.ski-rental-page .bi-h-circle-fill-1::before {
  content: "\f7f9";
}
body.ski-rental-page .bi-h-circle-fill::before {
  content: "\f7fa";
}
body.ski-rental-page .bi-h-circle::before {
  content: "\f7fb";
}
body.ski-rental-page .bi-h-square-fill::before {
  content: "\f7fc";
}
body.ski-rental-page .bi-h-square::before {
  content: "\f7fd";
}
body.ski-rental-page .bi-indent::before {
  content: "\f7fe";
}
body.ski-rental-page .bi-lungs-fill::before {
  content: "\f7ff";
}
body.ski-rental-page .bi-lungs::before {
  content: "\f800";
}
body.ski-rental-page .bi-microsoft-teams::before {
  content: "\f801";
}
body.ski-rental-page .bi-p-circle-1::before {
  content: "\f802";
}
body.ski-rental-page .bi-p-circle-fill-1::before {
  content: "\f803";
}
body.ski-rental-page .bi-p-circle-fill::before {
  content: "\f804";
}
body.ski-rental-page .bi-p-circle::before {
  content: "\f805";
}
body.ski-rental-page .bi-p-square-fill::before {
  content: "\f806";
}
body.ski-rental-page .bi-p-square::before {
  content: "\f807";
}
body.ski-rental-page .bi-pass-fill::before {
  content: "\f808";
}
body.ski-rental-page .bi-pass::before {
  content: "\f809";
}
body.ski-rental-page .bi-prescription::before {
  content: "\f80a";
}
body.ski-rental-page .bi-prescription2::before {
  content: "\f80b";
}
body.ski-rental-page .bi-r-circle-1::before {
  content: "\f80c";
}
body.ski-rental-page .bi-r-circle-fill-1::before {
  content: "\f80d";
}
body.ski-rental-page .bi-r-circle-fill::before {
  content: "\f80e";
}
body.ski-rental-page .bi-r-circle::before {
  content: "\f80f";
}
body.ski-rental-page .bi-r-square-fill::before {
  content: "\f810";
}
body.ski-rental-page .bi-r-square::before {
  content: "\f811";
}
body.ski-rental-page .bi-repeat-1::before {
  content: "\f812";
}
body.ski-rental-page .bi-repeat::before {
  content: "\f813";
}
body.ski-rental-page .bi-rewind-btn-fill::before {
  content: "\f814";
}
body.ski-rental-page .bi-rewind-btn::before {
  content: "\f815";
}
body.ski-rental-page .bi-rewind-circle-fill::before {
  content: "\f816";
}
body.ski-rental-page .bi-rewind-circle::before {
  content: "\f817";
}
body.ski-rental-page .bi-rewind-fill::before {
  content: "\f818";
}
body.ski-rental-page .bi-rewind::before {
  content: "\f819";
}
body.ski-rental-page .bi-train-freight-front-fill::before {
  content: "\f81a";
}
body.ski-rental-page .bi-train-freight-front::before {
  content: "\f81b";
}
body.ski-rental-page .bi-train-front-fill::before {
  content: "\f81c";
}
body.ski-rental-page .bi-train-front::before {
  content: "\f81d";
}
body.ski-rental-page .bi-train-lightrail-front-fill::before {
  content: "\f81e";
}
body.ski-rental-page .bi-train-lightrail-front::before {
  content: "\f81f";
}
body.ski-rental-page .bi-truck-front-fill::before {
  content: "\f820";
}
body.ski-rental-page .bi-truck-front::before {
  content: "\f821";
}
body.ski-rental-page .bi-ubuntu::before {
  content: "\f822";
}
body.ski-rental-page .bi-unindent::before {
  content: "\f823";
}
body.ski-rental-page .bi-unity::before {
  content: "\f824";
}
body.ski-rental-page .bi-universal-access-circle::before {
  content: "\f825";
}
body.ski-rental-page .bi-universal-access::before {
  content: "\f826";
}
body.ski-rental-page .bi-virus::before {
  content: "\f827";
}
body.ski-rental-page .bi-virus2::before {
  content: "\f828";
}
body.ski-rental-page .bi-wechat::before {
  content: "\f829";
}
body.ski-rental-page .bi-yelp::before {
  content: "\f82a";
}
body.ski-rental-page .bi-sign-stop-fill::before {
  content: "\f82b";
}
body.ski-rental-page .bi-sign-stop-lights-fill::before {
  content: "\f82c";
}
body.ski-rental-page .bi-sign-stop-lights::before {
  content: "\f82d";
}
body.ski-rental-page .bi-sign-stop::before {
  content: "\f82e";
}
body.ski-rental-page .bi-sign-turn-left-fill::before {
  content: "\f82f";
}
body.ski-rental-page .bi-sign-turn-left::before {
  content: "\f830";
}
body.ski-rental-page .bi-sign-turn-right-fill::before {
  content: "\f831";
}
body.ski-rental-page .bi-sign-turn-right::before {
  content: "\f832";
}
body.ski-rental-page .bi-sign-turn-slight-left-fill::before {
  content: "\f833";
}
body.ski-rental-page .bi-sign-turn-slight-left::before {
  content: "\f834";
}
body.ski-rental-page .bi-sign-turn-slight-right-fill::before {
  content: "\f835";
}
body.ski-rental-page .bi-sign-turn-slight-right::before {
  content: "\f836";
}
body.ski-rental-page .bi-sign-yield-fill::before {
  content: "\f837";
}
body.ski-rental-page .bi-sign-yield::before {
  content: "\f838";
}
body.ski-rental-page .bi-ev-station-fill::before {
  content: "\f839";
}
body.ski-rental-page .bi-ev-station::before {
  content: "\f83a";
}
body.ski-rental-page .bi-fuel-pump-diesel-fill::before {
  content: "\f83b";
}
body.ski-rental-page .bi-fuel-pump-diesel::before {
  content: "\f83c";
}
body.ski-rental-page .bi-fuel-pump-fill::before {
  content: "\f83d";
}
body.ski-rental-page .bi-fuel-pump::before {
  content: "\f83e";
}
body.ski-rental-page .bi-0-circle-fill::before {
  content: "\f83f";
}
body.ski-rental-page .bi-0-circle::before {
  content: "\f840";
}
body.ski-rental-page .bi-0-square-fill::before {
  content: "\f841";
}
body.ski-rental-page .bi-0-square::before {
  content: "\f842";
}
body.ski-rental-page .bi-rocket-fill::before {
  content: "\f843";
}
body.ski-rental-page .bi-rocket-takeoff-fill::before {
  content: "\f844";
}
body.ski-rental-page .bi-rocket-takeoff::before {
  content: "\f845";
}
body.ski-rental-page .bi-rocket::before {
  content: "\f846";
}
body.ski-rental-page .bi-stripe::before {
  content: "\f847";
}
body.ski-rental-page .bi-subscript::before {
  content: "\f848";
}
body.ski-rental-page .bi-superscript::before {
  content: "\f849";
}
body.ski-rental-page .bi-trello::before {
  content: "\f84a";
}
body.ski-rental-page .bi-envelope-at-fill::before {
  content: "\f84b";
}
body.ski-rental-page .bi-envelope-at::before {
  content: "\f84c";
}
body.ski-rental-page .bi-regex::before {
  content: "\f84d";
}
body.ski-rental-page .bi-text-wrap::before {
  content: "\f84e";
}
body.ski-rental-page .bi-sign-dead-end-fill::before {
  content: "\f84f";
}
body.ski-rental-page .bi-sign-dead-end::before {
  content: "\f850";
}
body.ski-rental-page .bi-sign-do-not-enter-fill::before {
  content: "\f851";
}
body.ski-rental-page .bi-sign-do-not-enter::before {
  content: "\f852";
}
body.ski-rental-page .bi-sign-intersection-fill::before {
  content: "\f853";
}
body.ski-rental-page .bi-sign-intersection-side-fill::before {
  content: "\f854";
}
body.ski-rental-page .bi-sign-intersection-side::before {
  content: "\f855";
}
body.ski-rental-page .bi-sign-intersection-t-fill::before {
  content: "\f856";
}
body.ski-rental-page .bi-sign-intersection-t::before {
  content: "\f857";
}
body.ski-rental-page .bi-sign-intersection-y-fill::before {
  content: "\f858";
}
body.ski-rental-page .bi-sign-intersection-y::before {
  content: "\f859";
}
body.ski-rental-page .bi-sign-intersection::before {
  content: "\f85a";
}
body.ski-rental-page .bi-sign-merge-left-fill::before {
  content: "\f85b";
}
body.ski-rental-page .bi-sign-merge-left::before {
  content: "\f85c";
}
body.ski-rental-page .bi-sign-merge-right-fill::before {
  content: "\f85d";
}
body.ski-rental-page .bi-sign-merge-right::before {
  content: "\f85e";
}
body.ski-rental-page .bi-sign-no-left-turn-fill::before {
  content: "\f85f";
}
body.ski-rental-page .bi-sign-no-left-turn::before {
  content: "\f860";
}
body.ski-rental-page .bi-sign-no-parking-fill::before {
  content: "\f861";
}
body.ski-rental-page .bi-sign-no-parking::before {
  content: "\f862";
}
body.ski-rental-page .bi-sign-no-right-turn-fill::before {
  content: "\f863";
}
body.ski-rental-page .bi-sign-no-right-turn::before {
  content: "\f864";
}
body.ski-rental-page .bi-sign-railroad-fill::before {
  content: "\f865";
}
body.ski-rental-page .bi-sign-railroad::before {
  content: "\f866";
}
body.ski-rental-page .bi-building-add::before {
  content: "\f867";
}
body.ski-rental-page .bi-building-check::before {
  content: "\f868";
}
body.ski-rental-page .bi-building-dash::before {
  content: "\f869";
}
body.ski-rental-page .bi-building-down::before {
  content: "\f86a";
}
body.ski-rental-page .bi-building-exclamation::before {
  content: "\f86b";
}
body.ski-rental-page .bi-building-fill-add::before {
  content: "\f86c";
}
body.ski-rental-page .bi-building-fill-check::before {
  content: "\f86d";
}
body.ski-rental-page .bi-building-fill-dash::before {
  content: "\f86e";
}
body.ski-rental-page .bi-building-fill-down::before {
  content: "\f86f";
}
body.ski-rental-page .bi-building-fill-exclamation::before {
  content: "\f870";
}
body.ski-rental-page .bi-building-fill-gear::before {
  content: "\f871";
}
body.ski-rental-page .bi-building-fill-lock::before {
  content: "\f872";
}
body.ski-rental-page .bi-building-fill-slash::before {
  content: "\f873";
}
body.ski-rental-page .bi-building-fill-up::before {
  content: "\f874";
}
body.ski-rental-page .bi-building-fill-x::before {
  content: "\f875";
}
body.ski-rental-page .bi-building-fill::before {
  content: "\f876";
}
body.ski-rental-page .bi-building-gear::before {
  content: "\f877";
}
body.ski-rental-page .bi-building-lock::before {
  content: "\f878";
}
body.ski-rental-page .bi-building-slash::before {
  content: "\f879";
}
body.ski-rental-page .bi-building-up::before {
  content: "\f87a";
}
body.ski-rental-page .bi-building-x::before {
  content: "\f87b";
}
body.ski-rental-page .bi-buildings-fill::before {
  content: "\f87c";
}
body.ski-rental-page .bi-buildings::before {
  content: "\f87d";
}
body.ski-rental-page .bi-bus-front-fill::before {
  content: "\f87e";
}
body.ski-rental-page .bi-bus-front::before {
  content: "\f87f";
}
body.ski-rental-page .bi-ev-front-fill::before {
  content: "\f880";
}
body.ski-rental-page .bi-ev-front::before {
  content: "\f881";
}
body.ski-rental-page .bi-globe-americas::before {
  content: "\f882";
}
body.ski-rental-page .bi-globe-asia-australia::before {
  content: "\f883";
}
body.ski-rental-page .bi-globe-central-south-asia::before {
  content: "\f884";
}
body.ski-rental-page .bi-globe-europe-africa::before {
  content: "\f885";
}
body.ski-rental-page .bi-house-add-fill::before {
  content: "\f886";
}
body.ski-rental-page .bi-house-add::before {
  content: "\f887";
}
body.ski-rental-page .bi-house-check-fill::before {
  content: "\f888";
}
body.ski-rental-page .bi-house-check::before {
  content: "\f889";
}
body.ski-rental-page .bi-house-dash-fill::before {
  content: "\f88a";
}
body.ski-rental-page .bi-house-dash::before {
  content: "\f88b";
}
body.ski-rental-page .bi-house-down-fill::before {
  content: "\f88c";
}
body.ski-rental-page .bi-house-down::before {
  content: "\f88d";
}
body.ski-rental-page .bi-house-exclamation-fill::before {
  content: "\f88e";
}
body.ski-rental-page .bi-house-exclamation::before {
  content: "\f88f";
}
body.ski-rental-page .bi-house-gear-fill::before {
  content: "\f890";
}
body.ski-rental-page .bi-house-gear::before {
  content: "\f891";
}
body.ski-rental-page .bi-house-lock-fill::before {
  content: "\f892";
}
body.ski-rental-page .bi-house-lock::before {
  content: "\f893";
}
body.ski-rental-page .bi-house-slash-fill::before {
  content: "\f894";
}
body.ski-rental-page .bi-house-slash::before {
  content: "\f895";
}
body.ski-rental-page .bi-house-up-fill::before {
  content: "\f896";
}
body.ski-rental-page .bi-house-up::before {
  content: "\f897";
}
body.ski-rental-page .bi-house-x-fill::before {
  content: "\f898";
}
body.ski-rental-page .bi-house-x::before {
  content: "\f899";
}
body.ski-rental-page .bi-person-add::before {
  content: "\f89a";
}
body.ski-rental-page .bi-person-down::before {
  content: "\f89b";
}
body.ski-rental-page .bi-person-exclamation::before {
  content: "\f89c";
}
body.ski-rental-page .bi-person-fill-add::before {
  content: "\f89d";
}
body.ski-rental-page .bi-person-fill-check::before {
  content: "\f89e";
}
body.ski-rental-page .bi-person-fill-dash::before {
  content: "\f89f";
}
body.ski-rental-page .bi-person-fill-down::before {
  content: "\f8a0";
}
body.ski-rental-page .bi-person-fill-exclamation::before {
  content: "\f8a1";
}
body.ski-rental-page .bi-person-fill-gear::before {
  content: "\f8a2";
}
body.ski-rental-page .bi-person-fill-lock::before {
  content: "\f8a3";
}
body.ski-rental-page .bi-person-fill-slash::before {
  content: "\f8a4";
}
body.ski-rental-page .bi-person-fill-up::before {
  content: "\f8a5";
}
body.ski-rental-page .bi-person-fill-x::before {
  content: "\f8a6";
}
body.ski-rental-page .bi-person-gear::before {
  content: "\f8a7";
}
body.ski-rental-page .bi-person-lock::before {
  content: "\f8a8";
}
body.ski-rental-page .bi-person-slash::before {
  content: "\f8a9";
}
body.ski-rental-page .bi-person-up::before {
  content: "\f8aa";
}
body.ski-rental-page .bi-scooter::before {
  content: "\f8ab";
}
body.ski-rental-page .bi-taxi-front-fill::before {
  content: "\f8ac";
}
body.ski-rental-page .bi-taxi-front::before {
  content: "\f8ad";
}
body.ski-rental-page .bi-amd::before {
  content: "\f8ae";
}
body.ski-rental-page .bi-database-add::before {
  content: "\f8af";
}
body.ski-rental-page .bi-database-check::before {
  content: "\f8b0";
}
body.ski-rental-page .bi-database-dash::before {
  content: "\f8b1";
}
body.ski-rental-page .bi-database-down::before {
  content: "\f8b2";
}
body.ski-rental-page .bi-database-exclamation::before {
  content: "\f8b3";
}
body.ski-rental-page .bi-database-fill-add::before {
  content: "\f8b4";
}
body.ski-rental-page .bi-database-fill-check::before {
  content: "\f8b5";
}
body.ski-rental-page .bi-database-fill-dash::before {
  content: "\f8b6";
}
body.ski-rental-page .bi-database-fill-down::before {
  content: "\f8b7";
}
body.ski-rental-page .bi-database-fill-exclamation::before {
  content: "\f8b8";
}
body.ski-rental-page .bi-database-fill-gear::before {
  content: "\f8b9";
}
body.ski-rental-page .bi-database-fill-lock::before {
  content: "\f8ba";
}
body.ski-rental-page .bi-database-fill-slash::before {
  content: "\f8bb";
}
body.ski-rental-page .bi-database-fill-up::before {
  content: "\f8bc";
}
body.ski-rental-page .bi-database-fill-x::before {
  content: "\f8bd";
}
body.ski-rental-page .bi-database-fill::before {
  content: "\f8be";
}
body.ski-rental-page .bi-database-gear::before {
  content: "\f8bf";
}
body.ski-rental-page .bi-database-lock::before {
  content: "\f8c0";
}
body.ski-rental-page .bi-database-slash::before {
  content: "\f8c1";
}
body.ski-rental-page .bi-database-up::before {
  content: "\f8c2";
}
body.ski-rental-page .bi-database-x::before {
  content: "\f8c3";
}
body.ski-rental-page .bi-database::before {
  content: "\f8c4";
}
body.ski-rental-page .bi-houses-fill::before {
  content: "\f8c5";
}
body.ski-rental-page .bi-houses::before {
  content: "\f8c6";
}
body.ski-rental-page .bi-nvidia::before {
  content: "\f8c7";
}
body.ski-rental-page .bi-person-vcard-fill::before {
  content: "\f8c8";
}
body.ski-rental-page .bi-person-vcard::before {
  content: "\f8c9";
}
body.ski-rental-page .bi-sina-weibo::before {
  content: "\f8ca";
}
body.ski-rental-page .bi-tencent-qq::before {
  content: "\f8cb";
}
body.ski-rental-page .bi-wikipedia::before {
  content: "\f8cc";
}
@font-face {
  font-family: "OpenSansExtraBold";
  src: url(../fonts/OpenSans/OpenSans-ExtraBold.ttf);
  font-display: swap;
}
@font-face {
  font-family: "OpenSansBold";
  src: url(../fonts/OpenSans/OpenSans-Bold.ttf);
  font-display: swap;
}
@font-face {
  font-family: "OpenSansSemiBold";
  src: url(../fonts/OpenSans/OpenSans-Semibold.ttf);
  font-display: swap;
}
@font-face {
  font-family: "OpenSansRegular";
  src: url(../fonts/OpenSans/OpenSans-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: "OpenSansLight";
  src: url(../fonts/OpenSans/OpenSans-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: "icomoon";
  src: url("/fonts/icomoon/fonts/icomoon.eot?ppgwma");
  src: url("/fonts/icomoon/fonts/icomoon.eot?ppgwma#iefix") format("embedded-opentype"), url("/fonts/icomoon/fonts/icomoon.ttf?ppgwma") format("truetype"), url("/fonts/icomoon/fonts/icomoon.woff?ppgwma") format("woff"), url("/fonts/icomoon/fonts/icomoon.svg?ppgwma#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBBc4.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xIIzI.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc3CsTKlA.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc-CsTKlA.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc2CsTKlA.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc5CsTKlA.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc1CsTKlA.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc0CsTKlA.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc6CsQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxK.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBBc4.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body.ski-rental-page .icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.ski-rental-page .icon-quotes-left:before {
  content: "\e900";
}
body.ski-rental-page .icon-quotes-right:before {
  content: "\e901";
}
body.ski-rental-page body {
  font-family: "Roboto", sans-serif;
}
body.ski-rental-page input, body.ski-rental-page select {
  font-size: 16px;
}
@media (min-width: 1200px) {
  body.ski-rental-page input, body.ski-rental-page select {
    font-size: 14px;
  }
}
body.ski-rental-page .h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00468c;
}
body.ski-rental-page .h2 {
  font-size: 18px;
  margin: 10px 0;
  line-height: 1.1;
}
body.ski-rental-page h2 {
  font-size: 30px;
}
body.ski-rental-page h4 {
  font-size: 19px;
}
body.ski-rental-page h5 {
  font-size: 15px;
}
body.ski-rental-page .form-control {
  font-size: 16px;
  border-color: #000;
  color: #000;
  font-weight: 500;
}
@media (min-width: 1200px) {
  body.ski-rental-page .form-control {
    font-size: 14px;
    border-color: #ccc;
    color: #555;
    font-weight: 400;
  }
  .add-details body.ski-rental-page .form-control {
    font-size: 16px;
    border-color: #000;
    color: #000;
    font-weight: 500;
  }
}
body.ski-rental-page .form-control:focus {
  border-color: #1754a5;
}
body.ski-rental-page .select2 {
  font-size: 16px;
}
@media (min-width: 1200px) {
  body.ski-rental-page .select2 {
    font-size: 14px;
  }
}
@media (min-width: 576px) {
  body.ski-rental-page .btn-booking-next-container {
    float: right;
  }
}
body.ski-rental-page .twitter-typeahead {
  width: 100%;
}
body.ski-rental-page .tt-suggestion {
  height: auto;
  min-height: 34px;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
}
body.ski-rental-page .tt-suggestion:hover {
  background-color: #ec1b23;
  color: #fff;
}
body.ski-rental-page .tt-cursor {
  background-color: #ec1b23;
  color: #fff;
}
body.ski-rental-page .tt-menu {
  width: 100%;
  overflow: auto;
  max-height: 340px;
}
body.ski-rental-page .test-base-alert {
  background-color: #ec1b23;
  color: #fff;
  text-align: center;
  font-size: 22px;
  padding: 12px 15px;
}
body.ski-rental-page .btn-red, body.ski-rental-page .btn-red:focus, body.ski-rental-page .btn-red:active:focus {
  color: #fff;
  background-color: #ec1b23;
  border-color: rgb(195.6923076923, 16.3076923077, 23.1740890688);
}
body.ski-rental-page .btn-red:hover, body.ski-rental-page .btn-red:hover:focus {
  color: #fff;
  background-color: rgb(195.6923076923, 16.3076923077, 23.1740890688);
  border-color: rgb(148.6153846154, 12.3846153846, 17.5991902834);
}
body.ski-rental-page .btn-blue, body.ski-rental-page .btn-blue:focus, body.ski-rental-page .btn-blue:active:focus {
  color: #fff;
  background-color: #1754a5;
  border-color: rgb(16.7606382979, 61.2127659574, 120.2393617021);
}
body.ski-rental-page .btn-blue:hover, body.ski-rental-page .btn-blue:hover:focus {
  color: #fff;
  background-color: rgb(16.7606382979, 61.2127659574, 120.2393617021);
  border-color: rgb(10.5212765957, 38.4255319149, 75.4787234043);
}
body.ski-rental-page .btn-currency, body.ski-rental-page .btn-currency:focus, body.ski-rental-page .btn-currency:active:focus {
  color: #1754a5;
  background-color: #fff;
  border-color: #1754a5;
}
@media (min-width: 1200px) {
  body.ski-rental-page .btn-currency, body.ski-rental-page .btn-currency:focus, body.ski-rental-page .btn-currency:active:focus {
    color: #005da3;
    border-color: #005da3;
  }
}
body.ski-rental-page .btn-currency:hover, body.ski-rental-page .btn-currency:hover:focus {
  color: #1754a5;
  background-color: rgb(229.5, 229.5, 229.5);
  border-color: rgb(16.7606382979, 61.2127659574, 120.2393617021);
}
@media (min-width: 1200px) {
  body.ski-rental-page .btn-currency:hover, body.ski-rental-page .btn-currency:hover:focus {
    color: #005da3;
    border-color: rgb(0, 63.9018404908, 112);
  }
}
body.ski-rental-page .btn-currency-active, body.ski-rental-page .btn-currency-active:focus, body.ski-rental-page .btn-currency-active:active:focus {
  color: #fff;
  background-color: #1754a5;
  border-color: rgb(16.7606382979, 61.2127659574, 120.2393617021);
}
@media (min-width: 1200px) {
  body.ski-rental-page .btn-currency-active, body.ski-rental-page .btn-currency-active:focus, body.ski-rental-page .btn-currency-active:active:focus {
    background-color: #005da3;
    border-color: rgb(0, 63.9018404908, 112);
  }
}
body.ski-rental-page .btn-currency-active:hover, body.ski-rental-page .btn-currency-active:hover:focus {
  color: #fff;
  background-color: rgb(16.7606382979, 61.2127659574, 120.2393617021);
  border-color: rgb(10.5212765957, 38.4255319149, 75.4787234043);
}
@media (min-width: 1200px) {
  body.ski-rental-page .btn-currency-active:hover, body.ski-rental-page .btn-currency-active:hover:focus {
    background-color: rgb(0, 63.9018404908, 112);
    border-color: rgb(0, 34.8036809816, 61);
  }
}
body.ski-rental-page .btn-book {
  text-transform: uppercase;
  padding: 12px 16px;
  font-weight: 500;
  border-radius: 12px;
  white-space: normal;
}
body.ski-rental-page .btn-book, body.ski-rental-page .btn-book:focus, body.ski-rental-page .btn-book:active:focus {
  color: #fff;
  background: #ec1b23;
  border-color: rgb(195.6923076923, 16.3076923077, 23.1740890688);
}
body.ski-rental-page .btn-book:hover, body.ski-rental-page .btn-book:hover:focus {
  color: #fff;
  background-color: rgb(195.6923076923, 16.3076923077, 23.1740890688);
  border-color: rgb(148.6153846154, 12.3846153846, 17.5991902834);
}
body.ski-rental-page .btn-payment {
  padding: 12px 16px;
  font-weight: 500;
  border-radius: 10px;
  border-color: color-blue;
  white-space: normal;
}
body.ski-rental-page .btn-payment, body.ski-rental-page .btn-payment:focus, body.ski-rental-page .btn-payment:active:focus {
  color: #1754a5;
  background: #fff;
  border-color: #1754a5;
}
body.ski-rental-page .btn-payment:hover, body.ski-rental-page .btn-payment:hover:focus {
  color: #1754a5;
  background-color: rgb(242.25, 242.25, 242.25);
  border-color: rgb(16.7606382979, 61.2127659574, 120.2393617021);
}
body.ski-rental-page .color-red {
  color: #ec1b23 !important;
}
body.ski-rental-page .color-blue {
  color: #1754a5 !important;
}
body.ski-rental-page .col-no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 576px) {
  body.ski-rental-page .col-no-padding-sm {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 992px) {
  body.ski-rental-page .col-no-padding-lg {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
body.ski-rental-page .col-no-padding-l {
  padding-left: 0 !important;
}
@media (min-width: 576px) {
  body.ski-rental-page .col-no-padding-l-sm {
    padding-left: 0 !important;
  }
}
@media (min-width: 992px) {
  body.ski-rental-page .col-no-padding-l-lg {
    padding-left: 0 !important;
  }
}
body.ski-rental-page .col-no-padding-r {
  padding-right: 0 !important;
}
@media (min-width: 576px) {
  body.ski-rental-page .col-no-padding-r-sm {
    padding-right: 0 !important;
  }
}
body.ski-rental-page .x-padding-md-mob {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1200px) {
  body.ski-rental-page .x-padding-md-mob {
    padding-left: 15px;
    padding-right: 15px;
  }
}
body.ski-rental-page .mob-slogan {
  text-align: center;
  color: #1754a5;
  font-size: 24px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 2px #ffffff;
}
@media (min-width: 1200px) {
  body.ski-rental-page .mob-screen-only {
    display: none;
  }
}
body.ski-rental-page .pc-screen-only {
  display: none;
}
@media (min-width: 1200px) {
  body.ski-rental-page .pc-screen-only {
    display: block;
  }
}
body.ski-rental-page .small-text {
  font-weight: 700;
  font-size: 10px;
}
body.ski-rental-page .small-text-red {
  color: #ec1b23;
}
body.ski-rental-page .medium-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 1200px) {
  body.ski-rental-page .medium-text {
    font-size: unset;
    font-weight: unset;
    line-height: unset;
  }
}
body.ski-rental-page .padding-small {
  padding: 10px;
}
body.ski-rental-page .padding-medium {
  padding: 15px;
}
body.ski-rental-page .padding-xlarge {
  padding: 30px;
}
body.ski-rental-page .padding-top-small {
  padding-top: 10px;
}
body.ski-rental-page .padding-vertical-xsmall {
  padding-top: 5px;
  padding-bottom: 5px;
}
body.ski-rental-page .padding-vertical-small {
  padding-top: 10px;
  padding-bottom: 10px;
}
body.ski-rental-page .padding-vertical-large {
  padding-top: 20px;
  padding-bottom: 20px;
}
body.ski-rental-page .padding-left-none {
  padding-left: 0;
}
body.ski-rental-page .padding-left-large {
  padding-left: 20px;
}
body.ski-rental-page .margin-top-xsmall {
  margin-top: 5px;
}
body.ski-rental-page .margin-bottom-small {
  margin-bottom: 10px;
}
body.ski-rental-page .margin-bottom-medium {
  margin-bottom: 15px;
}
body.ski-rental-page .margin-vertical-xsmall {
  margin-top: 5px;
  margin-bottom: 5px;
}
body.ski-rental-page .margin-vertical-small {
  margin-top: 10px;
  margin-bottom: 10px;
}
body.ski-rental-page .margin-vertical-large {
  margin-top: 20px;
  margin-bottom: 20px;
}
body.ski-rental-page .margin-vertical-xlarge {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
body.ski-rental-page .margin-horizontal-small {
  margin-left: 10px;
  margin-right: 10px;
}
body.ski-rental-page .margin-horizontal-xsmall {
  margin-left: 5px;
  margin-right: 5px;
}
body.ski-rental-page .margin-horizontal-xxsmall {
  margin-left: 3px;
  margin-right: 3px;
}
body.ski-rental-page .color-blue {
  color: #1754a5;
}
body.ski-rental-page .color-white {
  color: #fff;
}
body.ski-rental-page .border-top {
  border-top: solid #ccc 1px;
}
body.ski-rental-page .row-no-margin {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body.ski-rental-page .justify-space-evenly {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
body.ski-rental-page .border-black {
  border: solid #000 1px;
}
@media (min-width: 1200px) {
  body.ski-rental-page .border-black {
    border: none;
  }
}
body.ski-rental-page .border-transparent {
  border: solid transparent 1px;
}
body.ski-rental-page .border-right-black {
  border-right: solid #000 1px;
}
body.ski-rental-page .border-right-white {
  border-right: solid #fff 1px;
}
body.ski-rental-page .border-bottom-white {
  border-bottom: solid #fff 1px;
}
body.ski-rental-page .border-bottom-black {
  border-bottom: solid #000 1px;
}
body.ski-rental-page .background-white {
  background-color: #fff;
}
body.ski-rental-page .caret-left {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-right: 6px dashed;
  border-right: 6px solid \9 ;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
body.ski-rental-page .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 6px dashed !important;
  border-top: 6px solid \9  !important;
  border-right: 4px solid transparent !important;
  border-left: 4px solid transparent !important;
}
body.ski-rental-page .word-break-word {
  word-break: break-word;
}
body.ski-rental-page .text-light {
  font-weight: lighter;
}
body.ski-rental-page .text-bold {
  font-weight: bold;
}
body.ski-rental-page .text-100 {
  font-weight: 100;
}
body.ski-rental-page .flex {
  display: flex;
}
body.ski-rental-page .flex-direction-column {
  flex-direction: column;
}
body.ski-rental-page .flex-justify-center {
  justify-content: center;
}
body.ski-rental-page .h-25 {
  height: 25%;
}
body.ski-rental-page .h-50 {
  height: 50%;
}
body.ski-rental-page .h-75 {
  height: 75%;
}
body.ski-rental-page .h-100 {
  height: 100%;
}
body.ski-rental-page .w-25 {
  width: 25%;
}
body.ski-rental-page .w-50 {
  width: 50%;
}
body.ski-rental-page .w-75 {
  width: 75%;
}
body.ski-rental-page .w-100 {
  width: 100%;
}
body.ski-rental-page .has-error label {
  color: inherit !important;
  font-weight: inherit !important;
}
body.ski-rental-page .has-error.form-label {
  color: inherit !important;
  font-weight: inherit !important;
}
@media (max-width: 1200px) {
  body.ski-rental-page .alert-warning, body.ski-rental-page .alert-danger {
    background-color: #8ca9d1;
    border-color: #8ca9d1;
    color: white;
  }
  body.ski-rental-page .alert-warning h3, body.ski-rental-page .alert-danger h3 {
    font-size: 14px;
  }
  body.ski-rental-page .alert-warning .btn-warning, body.ski-rental-page .alert-warning .btn-warning:hover, body.ski-rental-page .alert-danger .btn-warning, body.ski-rental-page .alert-danger .btn-warning:hover {
    background-color: #1754a5;
    border-color: #1754a5;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
  }
  body.ski-rental-page .alert-dismissable .close {
    opacity: 1;
  }
  body.ski-rental-page .alert-expired {
    padding-right: 15px;
  }
  body.ski-rental-page .alert-expired .close {
    top: -5px;
    right: -2px;
  }
}
body.ski-rental-page .img-fluid {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  body.ski-rental-page .pull-right-md {
    float: right;
  }
}
@media (max-width: 575px) {
  body.ski-rental-page .pr-xs-0 {
    padding-right: 0;
  }
}
body.ski-rental-page .d-inline-block {
  display: inline-block;
}
body.ski-rental-page .cursor-pointer {
  cursor: pointer !important;
}
body.ski-rental-page .html {
  position: relative;
}
body.ski-rental-page .html::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  background-color: #2756a0;
  z-index: -1;
}
@media (max-width: 992px) {
  body.ski-rental-page .html::before {
    height: 56px;
  }
}
body.ski-rental-page .html_atf_container {
  height: 100%;
}
body.ski-rental-page #header {
  background-color: #1754a5;
  display: flex;
}
body.ski-rental-page #header .header-wrapper iframe {
  width: 100%;
  height: 112px;
  border: none;
  overflow: hidden;
  background: #2357A0;
}
@media (max-width: 992px) {
  body.ski-rental-page #header .header-wrapper iframe {
    height: 56px;
  }
}
body.ski-rental-page .hidden {
  display: none;
}
body.ski-rental-page .html_w_header {
  background-position: center 56px;
}
@media (min-width: 991px) {
  body.ski-rental-page .html_w_header {
    background-position: center 100px;
  }
}
body.ski-rental-page .body, body.ski-rental-page body {
  margin: 56px 0 0 0;
}
@media (min-width: 992px) {
  body.ski-rental-page .body, body.ski-rental-page body {
    margin-top: 112px;
  }
}
body.ski-rental-page .body {
  background-color: transparent;
  line-height: 1.2;
  font-size: 15px;
  color: #000;
}
@media (min-width: 1200px) {
  body.ski-rental-page .body {
    color: #333;
  }
}
@media (max-width: 576px) {
  body.ski-rental-page .body_navbar-main {
    padding-top: 0px;
  }
}
@media (min-width: 1200px) {
  body.ski-rental-page .body_atf_footer {
    height: 100%;
  }
}
@media (min-width: 576px) {
  body.ski-rental-page #main {
    background: linear-gradient(to bottom, transparent 60%, rgb(255, 255, 255) 80%);
    height: 100%;
  }
}
body.ski-rental-page body .cky-revisit-bottom-left {
  left: 12px;
}
body.ski-rental-page body .cky-btn {
  border-radius: 3px;
  border-width: 1px;
}
@media screen and (max-width: 767px) {
  body.ski-rental-page .cky-notice-des > p:nth-of-type(2) {
    display: none;
  }
  body.ski-rental-page .cky-notice-des > p:nth-of-type(2).d-flex {
    display: flex !important;
  }
  body.ski-rental-page .cky-notice-des > p > a:not(.cky-policy) {
    color: #1F4580;
    text-decoration: underline;
  }
  body.ski-rental-page body .cky-consent-container .cky-preference-wrapper {
    height: 92dvh;
  }
}
@media screen and (min-width: 768px) {
  body.ski-rental-page .cky-notice-des > p > a:not(.cky-policy) {
    display: none;
  }
  body.ski-rental-page .cky-notice-des .cky-policy {
    margin-left: -6px;
  }
}
body.ski-rental-page .content-block {
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  body.ski-rental-page .content-block {
    margin-bottom: 40px;
  }
}
body.ski-rental-page .section-heading-holder {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  body.ski-rental-page .section-heading-holder {
    margin-bottom: 24px;
  }
}
body.ski-rental-page .section-heading-holder h2 {
  font-weight: 400;
  font-size: 45px;
  line-height: 52px;
  color: #142C52;
  width: auto;
  transition: width 2s ease-in-out;
  white-space: normal;
  display: block;
}
body.ski-rental-page .section-heading-holder h2 span {
  font-weight: 500;
}
body.ski-rental-page .section-heading-holder h2 span + br {
  display: none;
}
@media screen and (max-width: 992px) {
  body.ski-rental-page .section-heading-holder h2 {
    font-style: normal;
    font-size: 24px;
    line-height: 32px;
  }
  body.ski-rental-page .section-heading-holder h2 br {
    display: inline !important;
  }
}
body.ski-rental-page .section-heading-holder__subheading {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #142C52;
}
@media screen and (max-width: 992px) {
  body.ski-rental-page .section-heading-holder__subheading {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }
}
body.ski-rental-page .section-heading-holder__heading-description {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #142C52;
}
@media screen and (max-width: 992px) {
  body.ski-rental-page .section-heading-holder__heading-description {
    font-size: 14px;
    line-height: 20px;
    width: 78%;
    margin-left: auto;
    margin-right: auto;
  }
}
body.ski-rental-page .section-heading-holder > *:not(:last-child) {
  margin-bottom: 8px;
}
body.ski-rental-page .section-heading-holder > span {
  display: inline-block;
}
@media screen and (min-width: 991px) {
  body.ski-rental-page .section-heading-holder__heading-description.has-max-width {
    max-width: 615px;
    margin: 0 auto;
  }
}
body.ski-rental-page .d-block-sm {
  display: block !important;
}
body.ski-rental-page .d-block-sm.row {
  display: flex !important;
}
body.ski-rental-page .d-none-sm {
  display: none !important;
}
@media (min-width: 992px) {
  body.ski-rental-page {
    /* Hide element on screens 992px and larger */
  }
  body.ski-rental-page .d-block-sm {
    display: none !important;
  }
  body.ski-rental-page .d-none-sm.row {
    display: flex !important;
  }
  body.ski-rental-page .d-none-sm {
    display: block !important;
  }
}
body.ski-rental-page .form2 {
  background-color: #F5F9FF;
}
@media (max-width: 768px) {
  body.ski-rental-page .form2 {
    padding-top: calc(56px + 20px);
  }
}
body.ski-rental-page .btn-submit {
  background-color: #E42727;
  color: #fff;
  font-weight: 500;
  border-radius: 2px;
  font-size: 15px;
}
body.ski-rental-page .btn-submit:focus {
  outline: none !important;
}
body.ski-rental-page .btn-submit:active:focus {
  color: #fff;
  background: #ec1b23;
  border-color: #ec1b23, 10%;
}
body.ski-rental-page .btn-submit:hover, body.ski-rental-page .btn-submit:hover:focus {
  color: #fff;
  background-color: rgb(195.6923076923, 16.3076923077, 23.1740890688);
  border-color: rgb(195.6923076923, 16.3076923077, 23.1740890688);
}
body.ski-rental-page .btn-add {
  background-color: #1754a5;
  color: #fff;
  font-weight: bold;
  border-radius: 2px;
  font-size: 16px;
  height: 50px;
  outline: none !important;
}
body.ski-rental-page .btn-add:focus {
  outline: none !important;
}
body.ski-rental-page .btn-add:active:focus {
  color: #fff;
  background: #245daa;
  border-color: #245daa, 10%;
  outline: none !important;
}
body.ski-rental-page .btn-add:hover {
  background-color: #245daa;
  color: #fff;
}
body.ski-rental-page .btn-add:hover:focus {
  color: #fff;
  background-color: rgb(32.2590114068, 83.3357794677, 152.3342205323);
  border-color: rgb(28.6590114068, 74.0357794677, 135.3342205323);
  outline: none !important;
}
body.ski-rental-page .btn-round {
  border-radius: 12px;
}
body.ski-rental-page .btn-promocode {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 1px solid #ccc;
}
body.ski-rental-page .btn-arrow-r {
  position: absolute;
  top: 140%;
  left: 30px;
  opacity: 0.3;
  width: 58px;
  height: 136px;
  background: #1754a5;
  border: none;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
body.ski-rental-page .btn-arrow-l {
  position: absolute;
  top: 140%;
  right: 30px;
  opacity: 0.3;
  width: 58px;
  height: 136px;
  background: #1754a5;
  border: none;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
body.ski-rental-page .form-custom label {
  color: #444;
  font-weight: 400;
}
body.ski-rental-page .form-custom input {
  height: 50px;
  border-color: #b2b2b2;
}
body.ski-rental-page .form-custom select {
  height: 50px;
  border-color: #b2b2b2;
}
body.ski-rental-page .form-custom button {
  height: 50px;
}
body.ski-rental-page .form-custom .select2-selection {
  height: 50px !important;
  border-color: #b2b2b2 !important;
  background-color: transparent !important;
}
body.ski-rental-page .form-custom .select2-selection__arrow {
  border-left: none !important;
  top: 2px !important;
  right: 10px !important;
}
body.ski-rental-page .form-custom .select2-selection__arrow b {
  border-color: #00468c transparent transparent transparent !important;
  border-width: 7px 5px 0 5px !important;
}
body.ski-rental-page .form-custom .select2-selection__rendered {
  padding-top: 10px !important;
}
body.ski-rental-page .form-custom .invalid-feedback {
  color: #E42727;
  padding-top: 5px;
}
body.ski-rental-page .form-custom .is-invalid {
  border: 1px solid #E42727;
}
body.ski-rental-page .price-line {
  position: relative;
}
body.ski-rental-page .price-line-product:after {
  display: block;
  content: "";
  top: 50%;
  height: 2px;
  background: black;
  position: absolute;
  left: 0%;
  right: 30%;
}
@media (max-width: 992px) {
  body.ski-rental-page .price-line-product:after {
    left: 42%;
    right: 40%;
  }
}
body.ski-rental-page .price-line-grey:after {
  display: block;
  content: "";
  top: 50%;
  height: 2px;
  background: grey;
  position: absolute;
  left: 20%;
  top: 50%;
  right: 0;
}
body.ski-rental-page .price-line-cart:after {
  display: block;
  content: "";
  top: 50%;
  height: 2px;
  background: black;
  position: absolute;
  left: 20%;
  top: 50%;
  right: 0;
}
body.ski-rental-page .price-line-cart-sum:after {
  display: block;
  content: "";
  top: 50%;
  height: 2px;
  background: black;
  position: absolute;
  left: 0;
  right: 60%;
}
body.ski-rental-page .price-line-checkout:after {
  display: block;
  content: "";
  top: 50%;
  height: 2px;
  background: black;
  position: absolute;
  left: 0;
  right: 30%;
  max-width: 100px;
}
@media (max-width: 992px) {
  body.ski-rental-page .price-line-checkout:after {
    left: 42%;
    right: 40%;
  }
}
body.ski-rental-page .price-line-edit:after {
  display: block;
  content: "";
  top: 50%;
  height: 2px;
  background: black;
  position: absolute;
  left: 0;
  right: 30%;
}
@media (max-width: 992px) {
  body.ski-rental-page .price-line-edit:after {
    left: 42%;
    right: 40%;
  }
}
body.ski-rental-page .price-line-payment:after {
  display: block;
  content: "";
  top: 50%;
  height: 2px;
  background: black;
  position: absolute;
  left: 0;
  right: 50%;
}
@media (max-width: 992px) {
  body.ski-rental-page .price-line-payment:after {
    left: 40%;
    right: 40%;
  }
}
body.ski-rental-page .invalid-feedback {
  color: #E42727;
}
body.ski-rental-page .has-error {
  border: 2px solid #E42727 !important;
}
body.ski-rental-page .price__block-title {
  margin: 0px;
}
body.ski-rental-page .price__block-precent {
  color: #0D9C4F;
  font-weight: bolder;
}
body.ski-rental-page .price__block-bold {
  font-weight: bold;
  margin-top: 0px;
  padding-top: 5px;
  font-size: 24px;
}
body.ski-rental-page .price__block-bold .currency {
  font-size: 24px;
}
body.ski-rental-page .price__block-bold .before_dp {
  font-size: 40px;
}
body.ski-rental-page .price__block-normal {
  font-weight: 200;
  padding-right: 20px;
  padding-top: 3px;
}
body.ski-rental-page .price__block-normal .currency {
  font-size: 30px;
}
body.ski-rental-page .price__block-normal .before_dp {
  font-size: 30px;
}
body.ski-rental-page #booking_reference-promocode::placeholder {
  color: black;
  font-size: 13px;
  font-weight: normal;
  opacity: 1;
}
body.ski-rental-page .promo-input {
  font-weight: bold;
}
body.ski-rental-page .promo-input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
body.ski-rental-page .promo-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 16px;
}
body.ski-rental-page .toggle-switch {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 18px;
  margin-bottom: 0;
}
body.ski-rental-page .toggle-switch__checkbox {
  display: none;
}
body.ski-rental-page .toggle-switch__slider {
  position: absolute;
  cursor: pointer;
  border: 1px solid gray;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
body.ski-rental-page .toggle-switch__slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 1px;
  bottom: 1px;
  background-color: #ffffff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
body.ski-rental-page .toggle-switch__slider.reverse:before {
  left: "calc(100% - 15px)";
}
body.ski-rental-page .toggle-switch__slider_round {
  border-radius: 32px;
}
body.ski-rental-page .toggle-switch__slider_round:before {
  border-radius: 50%;
}
body.ski-rental-page .toggle-switch__checkbox + body.ski-rental-page .toggle-switch__slider {
  background-color: #A7A7A7;
  border-color: #A7A7A7;
}
body.ski-rental-page .toggle-switch__checkbox:checked + body.ski-rental-page .toggle-switch__slider {
  background-color: #2756A0;
  border-color: #2756A0;
}
body.ski-rental-page .toggle-switch__checkbox:checked + body.ski-rental-page .toggle-switch__slider::before {
  left: calc(100% - 15px);
  background-color: #ffffff;
}
body.ski-rental-page .toggle-switch__checkbox:checked + body.ski-rental-page .toggle-switch__slider.reverse::before {
  left: 1px;
}
body.ski-rental-page .toggle-switch__checkbox:disabled + body.ski-rental-page .toggle-switch__slider::before {
  background-color: #7F7F7F;
}
body.ski-rental-page .modal-content {
  padding: 18px;
  border-radius: 18px;
}
body.ski-rental-page .container-auth .auth-services {
  display: none;
}
body.ski-rental-page .container-auth .separator {
  position: relative;
  margin: 0 0 29px 0;
  text-align: center;
}
body.ski-rental-page .container-auth .separator > span {
  position: relative;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 0 8px;
}
body.ski-rental-page .container-auth .separator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
}
body.ski-rental-page .container-auth .field-default-username input,
body.ski-rental-page .container-auth .field-default-password input {
  height: 52px;
}
body.ski-rental-page .container-auth .field-default-username label,
body.ski-rental-page .container-auth .field-default-password label {
  display: none;
}
body.ski-rental-page .container-auth .form-check-input:checked {
  background-color: #2357a0;
  border-color: #2357a0;
}
body.ski-rental-page .container-auth a {
  color: #2357a0;
}
body.ski-rental-page .container-auth .form-group {
  margin-bottom: 1rem;
}
body.ski-rental-page .container-auth .loyalty-btn-proceed {
  border-color: #2357a0 !important;
  background-color: #2357a0 !important;
}
body.ski-rental-page .hero-gradient {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0px;
  background-image: url("/img/base/bg.jpg");
  margin-bottom: 160px;
}
@media (max-width: 992px) {
  body.ski-rental-page .hero-gradient {
    /* Zoom in on the top-right corner */
    background-position: 30%;
    margin-bottom: 220px;
  }
}
body.ski-rental-page .hero__container {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ski-rental-page .hero__left-side {
  padding-top: 80px;
}
@media (max-width: 992px) {
  body.ski-rental-page .hero__left-side {
    padding-top: 24px;
  }
}
@media (max-width: 992px) {
  body.ski-rental-page .hero__left-side-header .logo {
    display: flex;
    justify-content: center;
  }
}
body.ski-rental-page .hero__left-side-header .logo img {
  width: 300px;
}
body.ski-rental-page .hero__left-side-header .slogan {
  display: none;
}
body.ski-rental-page .hero__right-side {
  margin-top: 50px;
  min-height: 500px;
}
@media (max-width: 992px) {
  body.ski-rental-page .hero__right-side {
    margin-top: 20px;
    margin-bottom: -136px;
  }
}
body.ski-rental-page .hero-bottom {
  padding: 25px;
  position: relative;
  z-index: 0;
  bottom: -80px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  body.ski-rental-page .hero-bottom {
    margin-top: 0px;
    bottom: -170px;
  }
}
body.ski-rental-page .hero-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  z-index: -1;
  border-radius: inherit;
}
@media (max-width: 992px) {
  body.ski-rental-page .hero-bottom .row {
    gap: 24px;
  }
}
body.ski-rental-page .hero-bottom .col-lg-3 {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
@media (max-width: 992px) {
  body.ski-rental-page .hero-bottom .col-lg-3 {
    gap: 14px;
  }
}
@media (max-width: 992px) {
  body.ski-rental-page .hero-bottom .col-lg-3 .img-side img {
    width: 26px;
    height: 26px;
  }
}
body.ski-rental-page .hero-bottom .col-lg-3 .content-side span {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #142C52;
  display: inline-block;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  body.ski-rental-page .hero-bottom .col-lg-3 .content-side span {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 4px;
  }
}
body.ski-rental-page .hero-bottom .col-lg-3 .content-side p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #414A58;
  margin-bottom: 0px;
  margin-top: 0px;
}
@media (max-width: 992px) {
  body.ski-rental-page .hero-bottom .col-lg-3 .content-side p {
    font-size: 14px;
    line-height: 21px;
  }
}
body.ski-rental-page .booking-steps-descriptive {
  background-image: url("../imgs/base/booking-steps-descriptive-block/booking-steps-descriptive-bg.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  body.ski-rental-page .booking-steps-descriptive {
    background-image: unset;
  }
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  gap: 24px;
  padding-bottom: 10px;
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps .swiper-slide {
  width: auto; /* Adjust as needed */
}
@media (max-width: 991px) {
  body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps .swiper-pagination {
    position: relative;
    margin-top: 24px;
  }
  body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgb(39, 86, 160) !important;
    width: 32px !important;
    border-radius: 40px !important;
    transition: width 0.2s;
  }
  body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps .swiper-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: rgba(39, 86, 160, 0.3) !important;
    transition: width 0.2s;
  }
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps__step {
  min-height: 440px;
  padding: 24px;
  border: 1px solid #fff;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps__step:nth-child(1) {
  background-image: url("../imgs/base/booking-steps-descriptive-block/step-1-bg.webp");
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps__step:nth-child(2) {
  background-image: url("../imgs/base/booking-steps-descriptive-block/step-2-bg.webp");
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps__step:nth-child(3) {
  background-image: url("../imgs/base/booking-steps-descriptive-block/step-3-bg.webp");
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps__step:nth-child(4) {
  background-image: url("../imgs/base/booking-steps-descriptive-block/step-4-bg.webp");
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps__step-number {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps__step-number img {
  height: 64px;
  width: fit-content;
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps__step-number span {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: rgb(255, 255, 255);
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps__step-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: rgb(255, 255, 255);
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps.d-none-sm {
  flex-wrap: nowrap;
  overflow: visible;
}
body.ski-rental-page .booking-steps-descriptive .cta-a2a-steps.d-none-sm .cta-a2a-steps__step {
  width: 23%;
}
body.ski-rental-page .statistics-section {
  background-color: rgb(39, 86, 160);
  padding-top: 80px;
  padding-bottom: 80px;
}
body.ski-rental-page .statistics-section__number {
  font-weight: 600;
  font-size: 64px;
  line-height: 72px;
  text-align: center;
  color: rgb(255, 255, 255);
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  body.ski-rental-page .statistics-section__number {
    font-size: 40px;
    line-height: 56px;
  }
}
body.ski-rental-page .statistics-section .col p {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 44px;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  body.ski-rental-page .statistics-section .col p {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
  }
}
body.ski-rental-page .statistics-section .col p + span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  align-items: center;
  text-align: center;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  width: 80%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 991px) {
  body.ski-rental-page .statistics-section .col p + span {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}
body.ski-rental-page .statistics-section .row {
  gap: 24px;
}
@media (max-width: 991px) {
  body.ski-rental-page .statistics-section .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  body.ski-rental-page .statistics-section .row .col {
    width: 100%;
  }
}
body.ski-rental-page .faq-section {
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #F5F9FF;
}
@media (max-width: 991px) {
  body.ski-rental-page .faq-section {
    padding-top: 40px;
    padding-bottom: 24px;
  }
}
body.ski-rental-page .faq-section__title {
  margin-bottom: 40px;
}
body.ski-rental-page .faq-section__title h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 52px;
  text-align: center;
  color: #142C52;
}
@media (max-width: 991px) {
  body.ski-rental-page .faq-section__title h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}
body.ski-rental-page .faq-section .accordion .accordion-item {
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
  transition: all 0.3s ease;
}
body.ski-rental-page .faq-section .accordion .accordion-item:not(:last-child) {
  margin-bottom: 16px;
}
body.ski-rental-page .faq-section .accordion .accordion-item.opened {
  border: 1px solid #C3C3C3;
  transition: all 0.3s ease;
}
body.ski-rental-page .faq-section .accordion .accordion-item .accordion-button {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: #142C52;
  padding: 24px;
  gap: 20vw;
  padding-right: 300px;
}
body.ski-rental-page .faq-section .accordion .accordion-item .accordion-button:not(.collapsed), body.ski-rental-page .faq-section .accordion .accordion-item .accordion-button:focus {
  color: var(--bs-accordion-btn-color);
  background-color: unset;
  box-shadow: none;
  border-color: transparent;
  outline: none;
}
@media (max-width: 991px) {
  body.ski-rental-page .faq-section .accordion .accordion-item .accordion-button {
    gap: 24px;
    font-size: 18px;
    line-height: 28px;
    padding-right: 20%;
  }
}
body.ski-rental-page .faq-section .accordion .accordion-item .accordion-collapse .accordion-body {
  padding-top: 0;
  padding-bottom: 24px;
  padding-right: 22vw;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #142C52;
}
@media (max-width: 991px) {
  body.ski-rental-page .faq-section .accordion .accordion-item .accordion-collapse .accordion-body {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    padding-right: 24px;
  }
}
body.ski-rental-page .custom_form-modal {
  position: fixed;
  top: 30%;
  left: 30%;
  gap: 0.4rem;
  width: 450px;
  padding: 1.3rem;
  min-height: 250px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  z-index: 20;
}
@media (max-width: 768px) {
  body.ski-rental-page .custom_form-modal {
    width: 90vw;
    left: 5%;
    right: 5%;
  }
}
body.ski-rental-page .custom_form-modal__button {
  cursor: pointer;
  border: none;
  font-weight: 600;
}
body.ski-rental-page .custom_form-modal__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.ski-rental-page .custom_form-modal p {
  color: #777;
}
body.ski-rental-page .custom_form-modal__content {
  text-align: center;
}
body.ski-rental-page .custom_form-modal__content h1 {
  margin-bottom: 30px;
}
body.ski-rental-page .custom_form-modal__content .modal_content-text h1 {
  margin-bottom: 30px;
}
body.ski-rental-page .custom_form-modal__content .modal_content-text p {
  margin-bottom: 30px;
}
body.ski-rental-page .custom_form-modal__content .modal_text-danger {
  color: #fd442c;
}
body.ski-rental-page .custom_form-modal__content p {
  margin-bottom: 30px;
}
body.ski-rental-page .custom_form-modal__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 4;
}
body.ski-rental-page .booking-form {
  max-width: 424px;
  background-color: #F5F5F7;
  border-radius: 20px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 992px) {
  body.ski-rental-page .booking-form {
    margin-left: auto;
    margin-right: auto;
  }
}
body.ski-rental-page .booking-form .form-wrapper .form-inner {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
body.ski-rental-page .booking-form .form-wrapper .form-inner_heading {
  font-size: 17px;
}
body.ski-rental-page .booking-form__input-container {
  position: relative;
  margin-bottom: 10px;
  background-color: #fff;
}
body.ski-rental-page .booking-form__input-container .select2-selection__placeholder {
  color: black !important;
  font-weight: 700;
}
body.ski-rental-page .booking-form__input-container .select2-container .select2-selection--single {
  height: 52px !important;
}
body.ski-rental-page .booking-form__input-container .select2-selection__rendered {
  margin-top: 5px;
  margin-left: 5px;
  font-weight: 700;
}
body.ski-rental-page .booking-form__input-container select {
  padding: 5px 10px 5px;
  line-height: 52px;
}
body.ski-rental-page .booking-form__booking-label {
  position: absolute;
  top: 4px;
  left: 12px;
  font-size: 12px;
  color: #999 !important;
}
@media screen and (max-width: 380px) {
  body.ski-rental-page .booking-form__booking-label-hide {
    display: none;
  }
}
body.ski-rental-page .booking-form__booking-pc-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  color: #999 !important;
}
body.ski-rental-page .booking-form__country-label {
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 12px;
  color: #999 !important;
}
body.ski-rental-page .booking-form__country-label-required {
  color: red;
}
body.ski-rental-page .booking-form .info-text {
  font-size: 11px;
  color: #999;
}
body.ski-rental-page .booking-form .tooltip-container {
  position: relative;
  display: inline-block;
}
body.ski-rental-page .booking-form .tooltip-trigger {
  cursor: pointer;
}
body.ski-rental-page .booking-form .tooltip {
  visibility: hidden;
  width: 290px;
  background-color: #F5F5F7;
  font-size: 13px;
  color: black;
  border-radius: 15px;
  border: 1px solid #b2b2b2;
  padding: 15px;
  position: absolute;
  z-index: 9999;
  bottom: -100px;
  left: -145px;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 550px) {
  body.ski-rental-page .booking-form .tooltip {
    left: -250px;
  }
}
@media (min-width: 992px) {
  body.ski-rental-page .booking-form .tooltip {
    bottom: 40px;
  }
}
body.ski-rental-page .booking-form .tooltip::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 56%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #b2b2b2;
}
@media (max-width: 992px) {
  body.ski-rental-page .booking-form .tooltip::before {
    display: none;
  }
}
body.ski-rental-page .booking-form .tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
body.ski-rental-page .booking-form .separatorr {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  font-weight: bold;
}
body.ski-rental-page .booking-form .separatorr::before,
body.ski-rental-page .booking-form .separatorr::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #999;
  margin: 0 10px;
}
body.ski-rental-page .booking-form .separatorr-1 {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 8px 0 14px;
  font-weight: bold;
}
body.ski-rental-page .booking-form .separatorr-1::before {
  content: "";
  flex: 1;
  border-bottom: 1px solid #999;
  margin: 0 10px;
}
body.ski-rental-page .booking-form .select2-selection__rendered {
  line-height: 31px !important;
}
body.ski-rental-page .booking-map {
  max-width: 600px;
  background-color: #F5F5F7;
  border-radius: 20px;
}
@media screen and (max-width: 992px) {
  body.ski-rental-page .booking-map {
    padding: 0 !important;
  }
}
body.ski-rental-page .booking-map .form-wrapper .form-inner_heading {
  font-size: 17px;
}
body.ski-rental-page .booking-map #rental-date_range {
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 5px;
  height: 52px;
  cursor: pointer;
  background-color: #fff;
}
body.ski-rental-page .booking-map #rental-date_range[readonly] {
  background-color: #fff;
  opacity: 1;
  pointer-events: auto;
}
body.ski-rental-page .booking-map #map.expanded {
  width: 100% !important;
}
body.ski-rental-page .booking-map .marker-label {
  background: white;
  background: rgba(255, 255, 255, 0.85);
  left: -40px;
  color: black;
  font-size: 11px;
  padding: 2px 3px 2px 13px;
  border-radius: 2px;
  border: 1px solid #333;
  margin-top: -34px !important;
  min-width: 34px;
  max-height: 34px;
  white-space: nowrap;
}
body.ski-rental-page .booking-map #rental-date_range {
  padding-top: 20px;
  padding-bottom: 5px;
  height: 52px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  cursor: pointer;
  background-color: #fff;
}
body.ski-rental-page .booking-map #rental-date_range[readonly] {
  background-color: #fff;
  opacity: 1;
  pointer-events: auto;
}
body.ski-rental-page .booking-map #map.expanded {
  width: 100% !important;
}
body.ski-rental-page .booking-map .marker-label {
  background: white;
  background: rgba(255, 255, 255, 0.85);
  left: -40px;
  color: black;
  font-size: 11px;
  padding: 2px 3px 2px 13px;
  border-radius: 2px;
  border: 1px solid #333;
  margin-top: -34px !important;
  min-width: 34px;
  max-height: 34px;
  white-space: nowrap;
}
body.ski-rental-page .booking-map #map_container {
  position: relative;
  min-height: 650px;
}
@media screen and (max-width: 992px) {
  body.ski-rental-page .booking-map #map_container {
    min-height: 280px;
    max-height: 280px;
  }
}
body.ski-rental-page .booking-map .btn-close-map {
  position: absolute;
  top: -10px;
  right: 30px;
  z-index: 1;
}
body.ski-rental-page .booking-map #map {
  border-radius: 8px;
}
@media screen and (max-width: 992px) {
  body.ski-rental-page .booking-map #map {
    border-radius: 16px 16px 0 0;
  }
}
body.ski-rental-page .booking-map #map_form_container {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (max-width: 768px) {
  body.ski-rental-page .booking-map #map_form_container {
    padding: 16px 26px;
  }
}
body.ski-rental-page .booking-map #map_form_container .map-title {
  font-size: 18px;
  line-height: 27px;
}
body.ski-rental-page .booking-map #map_form_container .map-info-title,
body.ski-rental-page .booking-map #map_form_container .walk-info-holder {
  display: flex;
  align-items: center;
  gap: 10px;
}
body.ski-rental-page .booking-map #map_form_container .map-info-text {
  font-size: 16px;
  line-height: 24px;
}
body.ski-rental-page .booking-map #info {
  position: absolute;
  bottom: 0px;
  left: 10px;
  font-size: 11px;
  background-color: #1754a5;
  color: #fff;
  padding: 10px;
  font-family: Arial, sans-serif;
  z-index: 1;
  border-radius: 8px;
}
body.ski-rental-page #booking_reference.reference-found {
  border: 2px solid #28a745 !important;
  background-color: #f8fff9 !important;
  animation: found-pulse 0.6s ease-in-out;
}
body.ski-rental-page #booking_reference.reference-found:focus {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25) !important;
}
@keyframes found-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0px rgba(40, 167, 69, 0.7);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0px rgba(40, 167, 69, 0);
  }
}
body.ski-rental-page .booking-recovery-form .recovery-message {
  margin-top: 1rem;
}
body.ski-rental-page .booking-recovery-form .recovery-message .alert {
  padding: 0.75rem;
  border-radius: 6px;
  margin-bottom: 0;
}
body.ski-rental-page .booking-recovery-form .recovery-message .alert.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
body.ski-rental-page .booking-recovery-form .recovery-message .alert.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
body.ski-rental-page .booking-recovery-form .recovery-message .alert.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}
body.ski-rental-page .booking-recovery-form #recovery_emal.error-highlight {
  border: 2px solid #dc3545 !important;
  background-color: #fff5f5 !important;
}
body.ski-rental-page .booking-recovery-form #recovery_emal.error-highlight:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25) !important;
}
body.ski-rental-page .booking-recovery-form .recovery-hints {
  margin-top: 10px;
  padding: 10px;
  background-color: #f8f9fa;
  border-left: 4px solid #17a2b8;
  border-radius: 4px;
}
body.ski-rental-page .booking-recovery-form .recovery-hints p {
  margin-bottom: 5px;
  font-weight: 600;
  color: #495057;
}
body.ski-rental-page .booking-recovery-form .recovery-hints ul {
  margin-bottom: 0;
  padding-left: 20px;
}
body.ski-rental-page .booking-recovery-form .recovery-hints ul li {
  color: #6c757d;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  body.ski-rental-page .breadcrumbs-nav + .container {
    padding-top: 96px;
  }
}
body.ski-rental-page .breadcrumbs-nav + .container {
  background-color: #F5F9FF;
}
body.ski-rental-page .breadcrumbs-nav {
  padding: 32px 0 0 0;
  margin-bottom: 20px;
}
body.ski-rental-page .breadcrumbs-nav > .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 24px;
}
@media (max-width: 768px) {
  body.ski-rental-page .breadcrumbs-nav {
    padding: 0;
    background-color: #FFFFFF;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1019607843);
    position: fixed;
    width: 100%;
    z-index: 9;
    top: 55px;
  }
  body.ski-rental-page .breadcrumbs-nav .breadcrumbs-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    background-color: #2756A0;
    border: none;
    cursor: pointer;
    border-top: 1px solid #84A8E1;
  }
  body.ski-rental-page .breadcrumbs-nav .breadcrumbs-toggle.open .breadcrumbs-toggle-arrow {
    transform: rotate(180deg);
  }
  body.ski-rental-page .breadcrumbs-nav .breadcrumbs-toggle .breadcrumbs-toggle-content {
    display: flex;
    align-items: center;
  }
  body.ski-rental-page .breadcrumbs-nav .breadcrumbs-toggle .breadcrumbs-toggle-content .breadcrumbs-step-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #2756A0;
    border: 1px solid #3C60AC;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1019607843);
  }
  body.ski-rental-page .breadcrumbs-nav .breadcrumbs-toggle .breadcrumbs-toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-left: 8px;
  }
  body.ski-rental-page .breadcrumbs-nav .breadcrumbs-toggle .breadcrumbs-toggle-arrow {
    transition: transform 0.3s ease;
  }
  body.ski-rental-page .breadcrumbs-nav > .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  body.ski-rental-page .breadcrumbs-nav > .container.open {
    max-height: 500px; /* Adjust based on your content */
    padding: 16px;
    border-top: 1px solid #E0E0E0;
  }
}
@media (min-width: 769px) {
  body.ski-rental-page .breadcrumbs-toggle {
    display: none;
  }
}
body.ski-rental-page .breadcrumbs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 22px;
}
@media (max-width: 768px) {
  body.ski-rental-page .breadcrumbs-step {
    flex-direction: row;
    align-items: center;
    padding-bottom: 0;
  }
}
body.ski-rental-page .breadcrumbs-step .breadcrumbs-icon-container {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #96999B;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  body.ski-rental-page .breadcrumbs-step .breadcrumbs-icon-container {
    margin-bottom: 0;
    margin-right: 8px;
  }
}
body.ski-rental-page .breadcrumbs-step .breadcrumbs-icon-container .breadcrumbs-icon {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}
body.ski-rental-page .breadcrumbs-step .breadcrumbs-label {
  font-size: 14px;
  color: #8A94A6;
  font-weight: 500;
  transition: color 0.3s ease;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: max-content;
}
@media (max-width: 768px) {
  body.ski-rental-page .breadcrumbs-step .breadcrumbs-label {
    position: unset;
  }
}
body.ski-rental-page .breadcrumbs-step.active .breadcrumbs-icon-container {
  background-color: #3C60AC;
  border-color: #3C60AC;
}
body.ski-rental-page .breadcrumbs-step.active .breadcrumbs-icon {
  filter: brightness(0) invert(1);
}
body.ski-rental-page .breadcrumbs-step.active .breadcrumbs-label {
  color: #0A2C5C;
  font-weight: 600;
}
body.ski-rental-page .breadcrumbs-step.past .breadcrumbs-icon-container {
  background-color: #3C60AC;
  border-color: #3C60AC;
}
body.ski-rental-page .breadcrumbs-step.past .breadcrumbs-icon {
  filter: brightness(0) invert(1);
}
body.ski-rental-page .breadcrumbs-step.past .breadcrumbs-label {
  color: #142C52;
}
body.ski-rental-page .breadcrumbs-line {
  height: 2px;
  background-color: #E0E0E0;
  flex-grow: 1;
  margin: 0 10px;
  position: relative;
  top: -14px;
  z-index: 1;
  max-width: 150px;
  transition: background-color 0.3s ease;
}
body.ski-rental-page .breadcrumbs-line.past {
  background-color: #3C60AC;
}
@media (max-width: 768px) {
  body.ski-rental-page .breadcrumbs-line {
    max-width: 50px;
    margin: 0 5px 0 22px;
    height: 24px;
    width: 2px;
    top: 0;
  }
}
body.ski-rental-page .select-equipment {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0px 2px 8px 0px rgba(39, 86, 160, 0.2);
  margin: 15px;
  padding: 24px;
  /* Shop dropdown specific styles */
}
@media (max-width: 768px) {
  body.ski-rental-page .select-equipment {
    margin: 0 0 24px 0;
    padding: 16px;
  }
}
body.ski-rental-page .select-equipment__heading h2 {
  font-size: 22px;
  color: #142C52;
  font-weight: 400;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  body.ski-rental-page .select-equipment__heading h2 {
    font-size: 18px;
    margin-bottom: 2px;
  }
}
body.ski-rental-page .select-equipment-header {
  padding: 24px;
  box-shadow: 0px 2px 8px 0px rgba(39, 86, 160, 0.2);
  background-color: #fff;
  border-radius: 16px;
  /* DROPDOWN RESORT */
}
body.ski-rental-page .select-equipment-header > .row {
  justify-content: space-between;
}
@media (max-width: 768px) {
  body.ski-rental-page .select-equipment-header > .row .col-xl-12.d-flex.gap-4 {
    flex-direction: column;
    gap: 8px !important;
  }
  body.ski-rental-page .select-equipment-header > .row .col-xl-3.col-md-6.col-sm-6.pt-2 {
    padding-bottom: 8px !important;
  }
}
@media (min-width: 1200px) {
  body.ski-rental-page .select-equipment-header .col-xl-3 {
    width: 21%;
  }
  body.ski-rental-page .select-equipment-header .col-xl-2 {
    width: auto;
  }
}
@media (min-width: 992px) {
  body.ski-rental-page .select-equipment-header {
    margin: 32px 0 0px 0;
  }
}
@media (max-width: 991px) {
  body.ski-rental-page .select-equipment-header {
    margin-bottom: 24px;
    padding: 16px;
  }
  body.ski-rental-page .select-equipment-header > .row {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
body.ski-rental-page .select-equipment-header .check-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #3C60AC;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1.1%;
}
body.ski-rental-page .select-equipment-header .header__text {
  font-weight: normal;
  font-size: 16px;
  color: #142C52;
}
body.ski-rental-page .select-equipment-header .rental-dates-btn {
  border: 1px solid #DADADA;
  border-radius: 8px;
  padding: 4px 15px;
  width: 100%;
  max-width: 300px;
  text-align: left;
  font-size: 14px;
  position: relative;
  background-color: #fff;
}
@media (max-width: 768px) {
  body.ski-rental-page .select-equipment-header .rental-dates-btn {
    max-width: 100%;
  }
}
body.ski-rental-page .select-equipment-header .rental-dates-btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../imgs/cart/dropdown-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  body.ski-rental-page .select-equipment-header .rental-dates-btn::after {
    right: 29px;
  }
}
@media (max-width: 576px) {
  body.ski-rental-page .select-equipment-header .rental-dates-btn::after {
    right: 21px;
  }
}
body.ski-rental-page .select-equipment-header .rental-dates-btn__header {
  font-size: 12px;
  color: #888;
}
body.ski-rental-page .select-equipment-header .rental-dates-btn__dates {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
}
body.ski-rental-page .select-equipment-header .rental-resort-dropdown {
  position: relative;
}
body.ski-rental-page .select-equipment-header .rental-resort-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  list-style: none;
  padding: 10px;
  margin: 0px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  z-index: 10;
  cursor: pointer;
}
body.ski-rental-page .select-equipment-header .rental-resort-options li {
  padding: 5px;
}
body.ski-rental-page .select-equipment-header .rental-resort-select {
  outline: none;
  border: 1px solid #DADADA;
  border-radius: 8px;
  padding: 0px 15px;
  width: 100%;
  max-width: 300px;
  height: 52px;
  text-align: left;
  font-size: 14px;
  position: relative;
  background-color: #fff;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
}
@media (max-width: 768px) {
  body.ski-rental-page .select-equipment-header .rental-resort-select {
    max-width: 100%;
  }
}
body.ski-rental-page .select-equipment-header .rental-resort-selected {
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.ski-rental-page .select-equipment-header .rental-resort-select::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../imgs/cart/dropdown-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
}
body.ski-rental-page .select-equipment-header .rental-resort-label {
  position: absolute;
  top: 2px;
  left: 16px;
  font-size: 12px;
  color: #888;
  z-index: 1;
}
@media (min-width: 992px) {
  body.ski-rental-page .select-equipment {
    margin: 25px 0 60px 0;
  }
}
body.ski-rental-page .select-equipment__breadcrumbs {
  padding-bottom: 10px;
}
body.ski-rental-page .select-equipment__breadcrumbs h5 {
  font-weight: normal;
}
body.ski-rental-page .select-equipment__filters {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
}
body.ski-rental-page .select-equipment__filters-buttons {
  height: 50px;
  background-color: #fff;
  border: 1px solid #2756A0;
  border-radius: 14px;
  padding-left: 0px;
  padding-right: 5px;
}
@media (max-width: 768px) {
  body.ski-rental-page .select-equipment__filters-buttons {
    margin-top: 1rem;
    width: 100%;
  }
}
body.ski-rental-page .select-equipment__filters-buttons .btn-group > .btn {
  width: 128px;
  border-radius: 11px;
  transition: 0s;
  flex: 1 1 auto;
}
body.ski-rental-page .select-equipment__filters-buttons .btn-group > .btn:not(.btn-active) {
  color: #3C60AC;
}
@media (min-width: 768px) {
  body.ski-rental-page .select-equipment__filters-buttons-gender {
    margin-left: 30px;
  }
}
body.ski-rental-page .select-equipment__filters-buttons-gender .btn.no-border {
  border-right: none;
}
body.ski-rental-page .select-equipment__filters-buttons .btn-active {
  background-color: #1754a5;
  color: #fff;
  border-top-right-radius: 11px !important;
  border-bottom-right-radius: 11px !important;
  border-top-left-radius: 11px !important;
  border-bottom-left-radius: 11px !important;
}
body.ski-rental-page .select-equipment__filters-buttons .btn-active:hover {
  background-color: #245daa;
}
body.ski-rental-page .select-equipment__filters-btn {
  height: 40px;
  margin-top: 4px;
  margin-left: 5px;
  font-weight: bold;
  border: none;
}
body.ski-rental-page .select-equipment__filters-btn:focus {
  outline: none !important;
}
body.ski-rental-page .select-equipment__filters-btn-gender:is(.btn-active) {
  margin-top: 4px;
  margin-left: 5px;
}
body.ski-rental-page .select-equipment__filters-btn-gender:not(.btn-active) {
  height: 40px;
  margin-left: 5px;
  font-weight: bold;
  border: none;
  border-right: 1px solid #D6E2F5;
  margin: 4px;
  padding: 0;
  height: 40px;
}
body.ski-rental-page .select-equipment__filters-btn-gender:not(.btn-active):active {
  border-right: 1px solid #D6E2F5;
}
body.ski-rental-page .select-equipment__filters-btn-gender.no-right-border {
  border-right: none;
}
body.ski-rental-page .select-equipment__filters-btn-gender:not(.btn-active) + .btn-active {
  margin-left: 0;
}
body.ski-rental-page .select-equipment__filters-btn-gender:not(.btn-active) + .btn-active:before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: transparent;
}
body.ski-rental-page .select-equipment__filters-btn-gender:focus {
  outline: none !important;
}
body.ski-rental-page .select-equipment__filters .btn-active {
  height: 40px;
  font-weight: bold;
}
body.ski-rental-page .select-equipment .products-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 768px) {
  body.ski-rental-page .select-equipment .products-archive {
    margin-left: 0.1rem;
  }
  body.ski-rental-page .select-equipment .products-archive .product__card.col-lg-6 {
    width: 48%;
    box-shadow: 0px 1px 8px 0px rgba(39, 86, 160, 0.2);
    border-radius: 12px;
    padding: 16px;
  }
}
@media (max-width: 768px) {
  body.ski-rental-page .select-equipment .products-archive {
    gap: 16px;
  }
}
body.ski-rental-page .select-equipment .cart-container {
  float: right;
  top: -20px;
  left: 30px;
  position: relative;
}
@media (max-width: 768px) {
  body.ski-rental-page .select-equipment .cart-container {
    display: none;
  }
}
body.ski-rental-page .select-equipment .cart-container .cart-heder-icon {
  position: relative;
}
body.ski-rental-page .select-equipment .cart-container .cart-heder-icon .circle {
  width: 40px;
  position: absolute;
  height: 40px;
  left: 35px;
  top: -20px;
  background-color: #56da13;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
body.ski-rental-page .select-equipment .product__card {
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  body.ski-rental-page .select-equipment .product__card {
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0px 1px 8px 0px rgba(39, 86, 160, 0.2);
  }
}
@media (max-width: 768px) {
  body.ski-rental-page .select-equipment .product__card-mobile-add-to-cart {
    margin-top: 16px;
  }
}
body.ski-rental-page .select-equipment .product__card-mobile-add-to-cart button {
  border-radius: 11px;
}
body.ski-rental-page .select-equipment .product__card-main {
  display: flex;
  flex-direction: column;
}
body.ski-rental-page .select-equipment .product__card-main .btn-add {
  height: 40px;
  border-radius: 11px;
  font-weight: 500;
}
body.ski-rental-page .select-equipment .product__card-prices {
  margin-top: auto;
}
body.ski-rental-page .select-equipment .product__card-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #142C52;
  transition: height 1.4s ease-in-out;
}
body.ski-rental-page .select-equipment .product__card-description {
  height: auto;
  min-height: 50px;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  transition: height 1.4s ease-in-out;
}
body.ski-rental-page .select-equipment .product__card-img {
  display: flex;
  justify-content: center;
}
body.ski-rental-page .select-equipment .product__card-header {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #142C52;
}
body.ski-rental-page .select-equipment .product__card-prices-title {
  margin: 0px;
  padding-bottom: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: #142C52;
}
body.ski-rental-page .select-equipment .product__card-prices-title + .product__card-prices-title {
  margin-top: -5px;
}
body.ski-rental-page .select-equipment .product__card-prices-precent {
  color: #0d9c4f;
  font-weight: bolder;
}
body.ski-rental-page .select-equipment .product__card-price1 {
  font-weight: bold;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-bottom: 5px;
  font-size: 24px;
  color: #142C52;
}
body.ski-rental-page .select-equipment .product__card-price2 {
  margin-top: 0px;
  padding-left: 10px;
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-decoration: line-through;
}
body.ski-rental-page .select-equipment .product__card-switches {
  padding-top: 12px;
  padding-bottom: 22px;
}
body.ski-rental-page .select-equipment .product__card-switch {
  padding-top: 10px;
  display: flex;
}
body.ski-rental-page .select-equipment .product__card-switch .toggle-switch {
  width: 34px;
}
body.ski-rental-page .select-equipment .product__card-switch-label {
  padding-left: 10px;
}
body.ski-rental-page .select-equipment .products-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem;
  margin: 0 0;
}
body.ski-rental-page .select-equipment .products-scroll::-webkit-scrollbar {
  display: none;
}
body.ski-rental-page .select-equipment .card-wrapper {
  flex: 0 0 auto;
  width: 85vw;
  max-width: 300px;
}
body.ski-rental-page .select-equipment .card-wrapper:last-child .card {
  margin-right: 1rem;
}
body.ski-rental-page .select-equipment .shop-dropdown .rental-resort-selected {
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.ski-rental-page .form-details.edit-form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
}
body.ski-rental-page .form-details.edit-form-modal .edit-form-modal-holder {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  display: block;
}
@media (max-width: 768px) {
  body.ski-rental-page .form-details.edit-form-modal .edit-form-modal-holder {
    padding-left: 0;
    padding-right: 0;
  }
  body.ski-rental-page .form-details.edit-form-modal .edit-form-modal-holder .details {
    margin: 50px 0 0 0;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    height: 100%;
  }
  body.ski-rental-page .form-details.edit-form-modal .edit-form-modal-holder .details__header {
    align-items: center;
    position: relative;
    padding-bottom: 14px;
  }
  body.ski-rental-page .form-details.edit-form-modal .edit-form-modal-holder .details__header::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100vw;
    left: -16px;
    background-color: #D6E2F5;
    bottom: 0;
    display: flex;
  }
  body.ski-rental-page .form-details.edit-form-modal .edit-form-modal-holder .details__header-title {
    font-size: 18px;
  }
}
body.ski-rental-page .details {
  background-color: #FFFFFF;
  box-shadow: 0px 2px 8px 0px rgba(39, 86, 160, 0.2);
  border-radius: 16px;
  margin: 60px;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 40px;
}
body.ski-rental-page .details__form-title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 16px;
  color: #142C52;
}
body.ski-rental-page .details .edit-form-modal-info-box {
  background-color: #F7F9FD;
  border-radius: 12px;
  border: 1px solid #3C60AC;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  body.ski-rental-page .details__main {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
  body.ski-rental-page .details__main .form-control {
    font-weight: 400;
  }
  body.ski-rental-page .details__main label {
    font-weight: 500;
  }
}
body.ski-rental-page .details__main .col-lg-4 {
  padding-top: 0px;
}
@media (max-width: 768px) {
  body.ski-rental-page .details__main .col-lg-4 {
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-bottom: 16px;
    border-bottom: 1px solid #D6E2F5;
    box-shadow: 0px 10px 17px -14px rgba(0, 0, 0, 0.1490196078);
    z-index: 9999999;
  }
}
body.ski-rental-page .details__main .col-lg-4 .details__card > .row {
  border-right: 1px solid #D6E2F5;
}
@media (max-width: 768px) {
  body.ski-rental-page .details__main .col-lg-4 .details__card > .row {
    border-right: unset;
    display: grid;
    grid-template-columns: 1fr 8fr;
  }
}
@media (max-width: 768px) {
  body.ski-rental-page .details__main .col-lg-8 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 768px) {
  body.ski-rental-page .details__main .col-lg-8 .form-custom {
    max-height: 400px;
    overflow-y: auto;
  }
  body.ski-rental-page .details__main .col-lg-8 .form-custom .row.details__main-r-l4 {
    position: fixed;
    bottom: 0px;
    padding-bottom: 12px;
    width: 100%;
    left: 12px;
    box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.1490196078);
    background-color: #FFFFFF;
  }
  body.ski-rental-page .details__main .col-lg-8 .form-custom .row.details__main-r-l4 .col-md-4.col-lg-12 {
    padding-top: 12px;
  }
}
body.ski-rental-page .details__main .col-lg-8 .form-custom input, body.ski-rental-page .details__main .col-lg-8 .form-custom select {
  border-color: #DADADA;
}
body.ski-rental-page .details__main .col-lg-8 .form-custom .btn-submit {
  border-radius: 8px;
  width: fit-content !important;
  padding-left: 34px;
  padding-right: 34px;
  float: right;
}
@media (max-width: 768px) {
  body.ski-rental-page .details__main .col-lg-8 .form-custom .btn-submit {
    width: 100% !important;
  }
}
body.ski-rental-page .details__main .col-lg-8 .form-custom .select-wrapper {
  position: relative;
}
body.ski-rental-page .details__main .col-lg-8 .form-custom .select-wrapper.is-invalid {
  border: unset;
}
body.ski-rental-page .details__main .col-lg-8 .form-custom .select-wrapper.is-invalid .invalid-feedback {
  display: block;
}
body.ski-rental-page .details__main .col-lg-8 .form-custom .select-wrapper:has(select.is-invalid)::after {
  content: unset;
  display: none;
}
body.ski-rental-page .details__main .col-lg-8 .form-custom .select-wrapper::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../imgs/cart/dropdown-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
}
body.ski-rental-page .details__main .col-lg-8 .form-custom select {
  padding-right: 30px;
}
body.ski-rental-page .details__main .col-lg-8 .form-custom label {
  margin-bottom: 4px;
}
body.ski-rental-page .details__main .col-lg-8 .form-custom label .required {
  color: #FF0000;
}
body.ski-rental-page .details__card {
  padding-left: 10px;
  padding-bottom: 40px;
  padding-right: 40px;
}
@media (min-width: 1000px) {
  body.ski-rental-page .details__card-img {
    display: flex;
  }
}
body.ski-rental-page .details__card-main {
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #142C52;
}
@media (max-width: 768px) {
  body.ski-rental-page .details__card-main {
    flex-direction: row;
    flex-wrap: wrap;
    padding-right: 0px !important;
  }
  body.ski-rental-page .details__card-main-content {
    width: 100%;
    order: 1;
  }
}
body.ski-rental-page .details__card-description {
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  body.ski-rental-page .details__card-description {
    display: none;
  }
}
@media (max-width: 1480px) {
  body.ski-rental-page .details__card {
    padding-right: 10px;
  }
}
@media (max-width: 992px) {
  body.ski-rental-page .details__card {
    text-align: left;
  }
}
@media (max-width: 768px) {
  body.ski-rental-page .details__card {
    padding-bottom: 0px;
  }
}
body.ski-rental-page .details__card-header {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (max-width: 1480px) {
  body.ski-rental-page .details__card-header {
    font-size: 16px;
  }
}
@media (max-width: 1340px) {
  body.ski-rental-page .details__card-header {
    font-size: 16px;
  }
}
body.ski-rental-page .details__card-mobile-price {
  display: flex;
  flex-direction: row;
  align-items: center;
}
body.ski-rental-page .details__card-mobile-price .details__card-price2 {
  margin-bottom: 0px;
  text-decoration: line-through;
  color: #A7A7A7;
}
body.ski-rental-page .details__card-mobile-price .details__card-price1 {
  font-size: 16px;
  margin-bottom: 0px;
  margin-left: 8px;
}
body.ski-rental-page .details__card-prices {
  padding-top: 20px;
}
@media (max-width: 768px) {
  body.ski-rental-page .details__card-prices {
    order: 3;
    margin-top: auto;
    padding-top: 0px;
  }
}
body.ski-rental-page .details__card-prices h2 {
  font-weight: 900;
  padding-bottom: 10px;
}
body.ski-rental-page .details__card-prices-title {
  margin: 0px 4px 4px 0px;
  font-size: 14px;
  font-weight: 400;
}
body.ski-rental-page .details__card-prices-precent {
  color: #0D9C4F;
  font-weight: bolder;
}
body.ski-rental-page .details__card-prices-in-store-price-holder {
  display: flex;
  flex-direction: row;
  align-items: center;
}
body.ski-rental-page .details__card-price1 {
  font-weight: 700;
  font-size: 24px;
  margin-top: 0px;
}
body.ski-rental-page .details__card-price1 .price-per-day {
  font-size: 16px;
  font-weight: normal;
  margin-left: 5px;
}
body.ski-rental-page .details__card-price2 {
  font-weight: 400;
  margin-top: 0px;
  font-size: 16px;
}
body.ski-rental-page .details__card-includes {
  padding-top: 10px;
}
@media (min-width: 992px) {
  body.ski-rental-page .details__card-includes {
    padding-top: 40px;
  }
}
body.ski-rental-page .details__card-includes h5 {
  font-weight: bold;
}
body.ski-rental-page .details__card .product__card-switches {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 768px) {
  body.ski-rental-page .details__card .product__card-switches {
    order: 2;
    margin-top: auto;
    gap: 8px;
  }
}
body.ski-rental-page .details__card .product__card-switches .product__card-switch {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  body.ski-rental-page .details__card .product__card-switches .product__card-switch {
    margin-bottom: 0px;
  }
}
body.ski-rental-page .details__card .product__card-switches .product__card-switch .toggle-switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
  margin-right: 10px;
}
body.ski-rental-page .details__card .product__card-switches .product__card-switch .toggle-switch__checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}
body.ski-rental-page .details__card .product__card-switches .product__card-switch .toggle-switch__checkbox:checked + .toggle-switch__slider {
  background-color: #2756A0;
}
body.ski-rental-page .details__card .product__card-switches .product__card-switch .toggle-switch__checkbox:disabled + .toggle-switch__slider {
  background-color: #A7A7A7;
  cursor: not-allowed;
}
body.ski-rental-page .details__card .product__card-switches .product__card-switch .toggle-switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #A7A7A7;
  transition: 0.4s;
}
body.ski-rental-page .details__card .product__card-switches .product__card-switch .toggle-switch__slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
}
body.ski-rental-page .details__card .product__card-switches .product__card-switch .toggle-switch__slider_round {
  border-radius: 34px;
}
body.ski-rental-page .details__card .product__card-switches .product__card-switch .toggle-switch__slider_round:before {
  border-radius: 50%;
}
body.ski-rental-page .details__card .product__card-switches .product__card-switch-label {
  font-size: 14px;
  font-weight: 500;
}
body.ski-rental-page .details__breadcrumbs {
  padding-bottom: 10px;
}
body.ski-rental-page .details__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
body.ski-rental-page .details__header-title {
  font-weight: 400;
  font-size: 22px;
}
body.ski-rental-page .details__header-breadcrumbs {
  padding-bottom: 10px;
}
body.ski-rental-page .details__header-breadcrumbs h5 {
  font-weight: normal;
}
body.ski-rental-page .details__main-r-l2 .col-md-12 {
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  body.ski-rental-page .details__main-r-l2 .col-md-12 {
    padding-bottom: 0px;
  }
  body.ski-rental-page .details__main-r-l2 .col-md-12 .details__form-title {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  body.ski-rental-page .details__main-r-l1 > div.col-md-12 {
    padding-top: 16px !important;
  }
  body.ski-rental-page .details__main-r-l1 > div.col-md-12 .details__form-title {
    margin-bottom: 0px;
  }
  body.ski-rental-page .details__main-r-l1 > div.col-md-4 {
    padding-top: 16px !important;
  }
  body.ski-rental-page .details__main-r-l1 div {
    padding-top: 0px !important;
  }
}
@media (min-width: 992px) {
  body.ski-rental-page .details__main-r-l1 {
    padding-bottom: 30px;
  }
  body.ski-rental-page .details__main-r-l3 {
    padding-bottom: 24px;
  }
  body.ski-rental-page .details__main-r-l3 > div {
    padding-bottom: 16px;
  }
}
@media (max-width: 992px) {
  body.ski-rental-page .details__main-r-l1 div {
    padding-top: 20px;
  }
  body.ski-rental-page .details__main-r-l2 div {
    padding-top: 20px;
  }
  body.ski-rental-page .details__main-r-l3 > div {
    padding-top: 20px;
  }
  body.ski-rental-page .details__main-r-l4 div {
    padding-top: 20px;
  }
}
body.ski-rental-page .form2 .cart {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 2px 8px 0px rgba(39, 86, 160, 0.2);
}
@media (min-width: 992px) {
  body.ski-rental-page .form2 .cart {
    margin: 25px 0 60px 0;
  }
}
body.ski-rental-page .form2 .cart_header {
  padding: 16px 0;
  border-bottom: 1px solid #D6E2F5;
}
@media (max-width: 768px) {
  body.ski-rental-page .form2 .cart_header {
    padding: 6px 0;
  }
}
body.ski-rental-page .form2 .cart_header h2 {
  font-size: 22px;
  color: #142C52;
  font-weight: 400;
  margin-bottom: 0;
  padding: 0 16px;
}
@media (max-width: 768px) {
  body.ski-rental-page .form2 .cart_header h2 {
    font-size: 18px;
  }
}
body.ski-rental-page .form2 .cart__container {
  padding: 0 16px 16px;
}
@media (max-width: 768px) {
  body.ski-rental-page .form2 .cart__container {
    padding: 0;
  }
}
body.ski-rental-page .form2 .cart .cards {
  margin-top: 16px;
}
body.ski-rental-page .form2 .cart__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0px 1px 8px 0px rgba(39, 86, 160, 0.2);
  padding: 16px;
}
@media (max-width: 576px) {
  body.ski-rental-page .form2 .cart__item {
    margin: 0 0 16px 0;
  }
}
body.ski-rental-page .form2 .cart__item.empty-cart-item {
  margin-top: 8px;
}
body.ski-rental-page .form2 .cart__item-r {
  padding-left: 5px;
  width: 100%;
}
@media (min-width: 992px) {
  body.ski-rental-page .form2 .cart__item-r {
    padding-left: 16px;
  }
}
@media (min-width: 502px) and (max-width: 576px) {
  body.ski-rental-page .form2 .cart__item-r {
    padding-left: 20%;
  }
}
@media (max-width: 768px) {
  body.ski-rental-page .form2 .cart__item-r {
    padding-left: 16px;
  }
}
body.ski-rental-page .form2 .cart__item-r-discounts .price__block-title:not(.price__block-precent) {
  font-weight: 400;
  font-size: 14px;
}
body.ski-rental-page .form2 .cart__item-r-header {
  position: relative;
}
body.ski-rental-page .form2 .cart__item-r-header h3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #142C52;
  width: 90%;
}
body.ski-rental-page .form2 .cart__item-r-header h4 {
  margin-top: 1px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #142C52;
}
body.ski-rental-page .form2 .cart__item-r-header h4 .cart__item-r-header-name {
  font-weight: 700;
}
body.ski-rental-page .form2 .cart__item-r-header h4 img {
  margin-left: 8px;
}
body.ski-rental-page .form2 .cart__item-r-header .cart__item-r-header-cart-item-delete {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: 20px;
}
body.ski-rental-page .form2 .cart__item-r-body {
  display: flex;
  justify-content: space-between;
}
body.ski-rental-page .form2 .cart__item-r-switches {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
}
body.ski-rental-page .form2 .cart__item-r-switch {
  display: flex;
  padding-right: 14px;
}
body.ski-rental-page .form2 .cart__item-r-switch .toggle-switch {
  width: 34px;
}
body.ski-rental-page .form2 .cart__item-r-switch-label {
  padding-left: 8px;
}
body.ski-rental-page .form2 .cart__item-r-prices {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
body.ski-rental-page .form2 .cart__item-r-prices-price {
  padding-top: 6px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
body.ski-rental-page .form2 .cart__item-r-prices-price-in-store {
  font-size: 16px;
  text-decoration: line-through;
  color: #A7A7A7;
}
body.ski-rental-page .form2 .cart__item-r-prices-price-online {
  font-size: 16px;
  color: #142C52;
  font-weight: 700;
  margin-left: 6px;
}
body.ski-rental-page .form2 .cart__item-r-prices-pub-price {
  padding-top: 25px;
  padding-left: 30px;
}
body.ski-rental-page .form2 .cart__item-r-promocode {
  padding-top: 10px;
}
body.ski-rental-page .form2 .cart__item-r-edit {
  padding-top: 15px;
}
body.ski-rental-page .form2 .cart__item-r-edit img {
  padding-left: 5px;
}
body.ski-rental-page .form2 .cart_item-l-img {
  display: flex;
}
body.ski-rental-page .form2 .cart__main-r-cart-total-price-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #142C52;
}
@media (max-width: 992px) {
  body.ski-rental-page .form2 .cart__main-r {
    padding: 20px;
    padding-top: 20px;
    border-top: 2px solid #d6e2f5;
    box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.1490196078);
  }
}
body.ski-rental-page .form2 .cart__main-r-header {
  color: #142C52;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}
body.ski-rental-page .form2 .cart__main-r-dates {
  display: flex;
}
body.ski-rental-page .form2 .cart__main-r-dates h5 {
  margin-top: 8px;
}
@media (min-width: 992px) {
  body.ski-rental-page .form2 .cart__main-r-dates img {
    padding-left: 20px;
  }
}
@media (max-width: 992px) {
  body.ski-rental-page .form2 .cart__main-r-dates img {
    padding-left: 10px;
  }
}
body.ski-rental-page .form2 .cart__main-r-price {
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #D6E2F5;
}
@media (max-width: 768px) {
  body.ski-rental-page .form2 .cart__main-r-price {
    margin-top: 0;
    border-top: none;
    padding-top: 8px;
    padding-bottom: 0;
  }
}
body.ski-rental-page .form2 .cart__main-r-price .cart__main-r-cart-total-price-title {
  display: block;
}
body.ski-rental-page .form2 .cart__main-r-price .price__block {
  display: flex;
  align-items: center;
  padding-top: 0 !important;
}
body.ski-rental-page .form2 .cart__main-r-price .price__block .price-line {
  text-decoration: line-through;
  color: #A7A7A7;
  margin-top: auto;
}
body.ski-rental-page .form2 .cart__main-r-price .price__block-normal, body.ski-rental-page .form2 .cart__main-r-price .price__block .price-line-cart-sum {
  font-size: 16px;
  text-decoration: line-through;
  color: #A7A7A7;
  margin: 0;
  padding-right: 6px;
  font-weight: 400;
  display: inline;
}
body.ski-rental-page .form2 .cart__main-r-price .price__block-bold {
  font-size: 18px;
  color: #142C52;
  font-weight: 700;
  margin: 0;
  display: inline;
}
body.ski-rental-page .form2 .cart__main-r-price .price__block .before_dp {
  font-size: 16px;
}
body.ski-rental-page .form2 .cart__main-r-price .price__block .after_dp {
  font-size: 16px;
}
body.ski-rental-page .form2 .cart__main-r-includes {
  padding-top: 20px;
}
body.ski-rental-page .form2 .cart__main-r-includes h5 {
  font-weight: bold;
}
body.ski-rental-page .form2 .cart__main-r-includes p {
  max-width: 100px;
}
body.ski-rental-page .form2 .cart__main-r-yourprice h3 {
  margin-bottom: 1px;
}
body.ski-rental-page .form2 .cart__main-r-yourprice .price {
  margin-top: 0px;
  font-weight: bold;
  padding-bottom: 5px;
}
body.ski-rental-page .form2 .cart__main-r-yourprice .price .before_dp {
  font-size: 40px;
}
body.ski-rental-page .form2 .cart__main-r-promocode label {
  padding-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
body.ski-rental-page .form2 .cart__main-r-promocode .invalid-feedback {
  color: #E42727;
  padding-top: 5px;
  max-width: 200px;
}
body.ski-rental-page .form2 .cart__main-r-promocode .valid-feedback {
  color: #56da13;
  font-weight: bold;
}
body.ski-rental-page .form2 .cart__main-r-promocode input {
  padding: 14px 12px 14px 44px;
  border-color: #3C60AC;
  border-radius: 12px;
}
body.ski-rental-page .form2 .cart__main-r-promocode .is-invalid {
  border: 1px solid #E42727;
}
body.ski-rental-page .form2 .cart__main-r-promocode .is-valid {
  border: 1px solid #0D9C4F;
}
body.ski-rental-page .form2 .cart__main-r-promocode .input-group #promocode.form-control {
  background-image: url("../imgs/cart/ticket-discount-blue.svg");
  background-repeat: no-repeat;
  background-position: left 12px center;
}
body.ski-rental-page .form2 .cart__main-r-promocode .input-group #promocode.form-control.is-invalid {
  background-image: url("../imgs/cart/ticket-discount-red.svg");
  background-size: unset;
}
body.ski-rental-page .form2 .cart__main-r-promocode .input-group #promocode.form-control.is-valid {
  background-image: url("../imgs/cart/ticket-discount-green.svg");
  background-size: unset;
}
body.ski-rental-page .form2 .cart__main-r-promocode .input-group .input-group-btn .btn {
  padding: 14px 12px;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #3C60AC;
  border-color: #3C60AC;
  border-radius: 12px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  min-width: 84px;
}
body.ski-rental-page .form2 .cart__main-r-terms {
  font-size: 12px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  body.ski-rental-page .form2 .cart__main-r-terms {
    margin-bottom: 0;
  }
}
body.ski-rental-page .form2 .cart__main-r-terms input {
  margin-bottom: 10px;
}
body.ski-rental-page .form2 .cart__main-r-terms p {
  padding-left: 14px;
  margin-bottom: 0px;
  margin-top: 0;
}
body.ski-rental-page .form2 .cart__main-r-term {
  display: flex;
  padding: 7px 4px 0;
  border-radius: 8px;
  border: 2px solid transparent;
}
body.ski-rental-page .form2 .cart__main-r-submit {
  padding-top: 16px;
  border-top: 1px solid #D6E2F5;
}
@media (max-width: 768px) {
  body.ski-rental-page .form2 .cart__main-r-submit {
    padding-top: 14px;
    border-top: none;
  }
}
body.ski-rental-page .form2 .cart__main-r-btn {
  height: 50px;
  font-weight: bold;
  background-color: #E42727;
  color: #fff;
  border-radius: 8px;
}
@media (max-width: 992px) {
  body.ski-rental-page .form2 .cart__main-l {
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  body.ski-rental-page .form2 .cart__main-l {
    max-height: 300px;
    overflow-y: auto;
    padding-bottom: 0;
  }
}
body.ski-rental-page .form2 .cart .img-link {
  cursor: pointer;
}
@media (max-width: 992px) and (min-width: 530px) {
  body.ski-rental-page .form2 .cart__sm-container {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 992px) and (min-width: 530px) {
  body.ski-rental-page .form2 .cart__sm-container > div:nth-child(2) {
    padding-left: 20px;
  }
}
body.ski-rental-page .checkout {
  background-color: rgba(255, 255, 255, 0.8);
  margin: 60px;
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  body.ski-rental-page .checkout {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  body.ski-rental-page .checkout {
    margin: 0;
    padding-top: calc(56px + 20px);
  }
}
body.ski-rental-page .checkout__header-breadcrumbs {
  /* Breadcrumbs styles moved to breadcrumbs.scss */
}
body.ski-rental-page .checkout__header-breadcrumbs h5 {
  font-weight: normal !important;
}
@media (min-width: 992px) {
  body.ski-rental-page .checkout__cart {
    border-right: 2px solid #999;
    padding-top: 30px;
    padding-left: 10px;
    padding-bottom: 50px;
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  body.ski-rental-page .checkout__cart {
    text-align: center;
  }
}
body.ski-rental-page .checkout__cart-header {
  padding-top: 20px;
}
body.ski-rental-page .checkout__cart-header h2 {
  font-weight: 900;
  margin-bottom: 1px;
}
body.ski-rental-page .checkout__cart-prices {
  padding-top: 15px;
}
body.ski-rental-page .checkout__cart-prices h2 {
  font-weight: 900;
  padding-bottom: 10px;
}
body.ski-rental-page .checkout__cart-prices-title {
  margin: 0px;
}
body.ski-rental-page .checkout__cart-prices-precent {
  color: #0D9C4F;
  font-weight: bolder;
}
body.ski-rental-page .checkout__cart-price1 {
  font-weight: bold;
  margin-top: 0px;
}
body.ski-rental-page .checkout__cart-price1 .before_dp {
  font-size: 40px;
}
body.ski-rental-page .checkout__cart-price2 {
  font-weight: 200;
  margin-top: 0px;
}
body.ski-rental-page .checkout__cart-price2 .before_dp {
  font-size: 30px;
}
@media (min-width: 992px) {
  body.ski-rental-page .checkout__cart-includes {
    padding-top: 20px;
  }
}
body.ski-rental-page .checkout__cart-includes h5 {
  font-weight: bold;
  margin-bottom: 0px;
}
@media (min-width: 992px) {
  body.ski-rental-page .checkout__cart-includes p {
    padding-top: 5px;
    max-width: 100px;
  }
}
body.ski-rental-page .checkout__cart-promocode {
  padding-top: 10px;
}
body.ski-rental-page .checkout__cart-promocode label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 0px;
}
body.ski-rental-page .checkout__cart-promocode .valid-feedback {
  color: #56da13;
  font-weight: bold;
}
body.ski-rental-page .checkout__cart-promocode .valid-feedback.valid {
  display: block;
}
body.ski-rental-page .checkout__cart-yourprice {
  font-weight: bold;
  margin-top: 0px;
  padding-top: 30px;
}
body.ski-rental-page .checkout__cart-yourprice h3 {
  margin-bottom: 0px;
  margin-top: 0px;
}
body.ski-rental-page .checkout__cart-yourprice .before_dp {
  font-size: 40px;
}
body.ski-rental-page .checkout__main-r-l1 {
  padding-top: 30px;
  padding-bottom: 30px;
}
body.ski-rental-page .checkout__main-r-l2 {
  padding-bottom: 30px;
}
body.ski-rental-page .checkout__main-r-l3 {
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  body.ski-rental-page .checkout__main-r-l1 div {
    padding-top: 10px;
    padding-bottom: 0px;
  }
  body.ski-rental-page .checkout__main-r-l2 div {
    padding-top: 10px;
    padding-bottom: 0px;
  }
  body.ski-rental-page .checkout__main-r-l3 div {
    padding-top: 10px;
    padding-bottom: 0px;
  }
  body.ski-rental-page .checkout__main-r-l4 div {
    padding-top: 10px;
  }
}
body.ski-rental-page .payment {
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  body.ski-rental-page .payment {
    margin: 60px;
  }
}
@media (max-width: 992px) {
  body.ski-rental-page .payment {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  body.ski-rental-page .payment__cart {
    border-right: 2px solid #999;
    padding-top: 30px;
    padding-left: 10px;
    padding-bottom: 50px;
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  body.ski-rental-page .payment__cart {
    text-align: center;
  }
}
body.ski-rental-page .payment__cart-header {
  padding-top: 20px;
}
body.ski-rental-page .payment__cart-header h2 {
  font-weight: 900;
  margin-bottom: 1px;
}
body.ski-rental-page .payment__cart-prices {
  padding-top: 15px;
}
body.ski-rental-page .payment__cart-store {
  padding-top: 20px;
}
body.ski-rental-page .payment__cart-online {
  padding-top: 10px;
}
@media (min-width: 992px) {
  body.ski-rental-page .payment__cart-includes {
    padding-top: 20px;
  }
}
body.ski-rental-page .payment__cart-includes h5 {
  font-weight: bold;
  margin-bottom: 0px;
}
@media (min-width: 992px) {
  body.ski-rental-page .payment__cart-includes p {
    padding-top: 5px;
    max-width: 100px;
    margin-bottom: 0px;
  }
}
body.ski-rental-page .payment__cart-promocode {
  padding-top: 10px;
}
body.ski-rental-page .payment__cart-promocode label {
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 14px;
}
body.ski-rental-page .payment__cart-promocode h5 {
  margin-bottom: 0px;
}
body.ski-rental-page .payment__cart-promocode .valid-feedback {
  color: #56da13;
  font-weight: bold;
}
body.ski-rental-page .payment__cart-yourprice {
  font-weight: bold;
  margin-top: 0px;
  padding-top: 30px;
}
body.ski-rental-page .payment__cart-yourprice h3 {
  margin-bottom: 0px;
  margin-top: 0px;
}
body.ski-rental-page .payment__cart-yourprice .before_dp {
  font-size: 40px;
}
body.ski-rental-page .payment__main-r-l1 {
  padding-top: 30px;
  padding-bottom: 30px;
}
body.ski-rental-page .payment__main-r-l2 {
  padding-bottom: 30px;
}
body.ski-rental-page .payment__main-r-l3 {
  padding-bottom: 40px;
}
body.ski-rental-page .payment__main-r-bottom {
  padding-top: 70px;
}
body.ski-rental-page .payment__main-r-bottom-mail {
  padding-left: 0px;
  font-size: 12px;
}
body.ski-rental-page .payment__main-r-bottom-mail h5 {
  padding-top: 10px;
  font-weight: 900;
}
body.ski-rental-page .payment__main-r-bottom-phone {
  display: flex;
  font-size: 12px;
}
body.ski-rental-page .payment__main-r-bottom-phone p {
  margin-bottom: 1px;
}
body.ski-rental-page .payment__main-r-bottom-phone p:last-child {
  padding-top: 15px;
}
body.ski-rental-page .payment__main-r-bottom-phone .phones {
  padding-top: 10px;
  padding-left: 20px;
}
body.ski-rental-page .payment__main-r-bottom-btn {
  padding-top: 10px;
}
body.ski-rental-page .payment__main-r-bottom .btn-voucher {
  height: 50px;
  padding-top: 15px;
}
body.ski-rental-page .payment__main-r-paycards {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
body.ski-rental-page .payment__main-r-paycards .active {
  border: 3px solid black;
}
body.ski-rental-page .payment__main-r-heading {
  font-weight: 900;
}
body.ski-rental-page .payment__main-r-confirm {
  padding-left: 70px;
  padding-top: 50px;
}
body.ski-rental-page .payment__main-r-confirm-heading {
  font-weight: 900;
}
body.ski-rental-page .payment__main-r-confirm-body {
  padding-top: 30px;
  font-size: 13px;
}
body.ski-rental-page .payment__main-r-confirm-body p:last-child {
  padding-top: 30px;
}
body.ski-rental-page .payment__main-r-confirm-btn-note {
  padding-top: 15px;
  font-size: 10px;
}
body.ski-rental-page .payment .payment__card-mam img {
  margin-top: 20px;
  margin-left: 20px;
}
body.ski-rental-page .payment__card {
  background-color: white;
  border: 1px solid #999;
  border-radius: 10px;
  margin-right: 15px;
  cursor: pointer;
}
body.ski-rental-page .payment__card-header {
  padding-top: 10px;
  display: flex;
}
body.ski-rental-page .payment__card-header img {
  padding-left: 15px;
  margin-top: 15px;
}
body.ski-rental-page .payment__card-body {
  padding-top: 10px;
  padding-bottom: 12%;
  text-align: center;
}
body.ski-rental-page .payment__card-body p:not(:last-child) {
  font-size: 12px;
  margin-bottom: 0px;
}
body.ski-rental-page .payment__card-body p:last-child {
  font-size: 9px;
  padding-top: 30px;
}
body.ski-rental-page .terms {
  background-color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 991px) {
  body.ski-rental-page {
    padding-top: 0px;
  }
}
body.ski-rental-page .select2-container--default .select2-selection--single {
  height: 52px !important;
  border-radius: 8px !important;
  border: 2px solid #e9ecef !important;
}
body.ski-rental-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 35px !important;
  padding-left: 5px !important;
}
body.ski-rental-page .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px !important;
  right: 16px !important;
}
body.ski-rental-page .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #0d6efd !important;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}
body.ski-rental-page .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb !important;
}
body.ski-rental-page .select2-container.select2-container--default.select2-container--open {
  z-index: 99 !important;
}
body.ski-rental-page .booking-form__input-container .select2-container {
  position: relative;
  z-index: 10;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.ski-rental-page .row.booking-form__input-container {
  margin-right: 0 !important;
  margin-left: 0 !important;
  border-radius: 8px;
}
body.ski-rental-page .row.booking-form__input-container .col-12 {
  padding-left: 0;
  padding-right: 0;
}
body.ski-rental-page .row.booking-form__input-container .booking-form__booking-label {
  left: 0 !important;
}
body.ski-rental-page .booking-map .row.booking-form__input-container .booking-form__booking-label {
  left: 11px !important;
  top: 3px;
}

body.ski-rental-page {
  /* Minimal, exact selectors as final guard (compiled near end) */
}
body.ski-rental-page .toggle-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 18px;
  margin-bottom: 0;
}
body.ski-rental-page .toggle-switch__checkbox {
  display: none;
}
body.ski-rental-page .toggle-switch__slider {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  cursor: pointer;
  border: 1px solid #A7A7A7;
  background-color: #A7A7A7;
  transition: 0.2s ease;
}
body.ski-rental-page .toggle-switch__slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 1px;
  bottom: 1px;
  background-color: #ffffff;
  transition: 0.2s ease;
}
body.ski-rental-page .toggle-switch__slider_round {
  border-radius: 32px;
}
body.ski-rental-page .toggle-switch__slider_round:before {
  border-radius: 50%;
}
body.ski-rental-page .toggle-switch__checkbox + body.ski-rental-page .toggle-switch__slider, body.ski-rental-page .toggle-switch__checkbox ~ body.ski-rental-page .toggle-switch__slider {
  background-color: #A7A7A7;
  border-color: #A7A7A7;
}
body.ski-rental-page .toggle-switch__checkbox:checked + body.ski-rental-page .toggle-switch__slider, body.ski-rental-page .toggle-switch__checkbox:checked ~ body.ski-rental-page .toggle-switch__slider {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
}
body.ski-rental-page .toggle-switch__checkbox:checked + body.ski-rental-page .toggle-switch__slider::before, body.ski-rental-page .toggle-switch__checkbox:checked ~ body.ski-rental-page .toggle-switch__slider::before {
  left: calc(100% - 15px) !important;
  transform: translateX(0);
  background-color: #ffffff;
}
body.ski-rental-page .toggle-switch__checkbox:disabled + body.ski-rental-page .toggle-switch__slider {
  opacity: 0.6;
  cursor: not-allowed;
}
body.ski-rental-page .toggle-switch__checkbox:checked + .toggle-switch__slider {
  background-color: #2756a0 !important;
  border-color: #2756a0 !important;
}
body.ski-rental-page .toggle-switch__checkbox:checked + .toggle-switch__slider::before {
  left: calc(100% - 15px) !important;
  background-color: #fff !important;
}
body.ski-rental-page .form-details .checkout {
  margin: 60px 0;
}
body.ski-rental-page .payment-success-container,
body.ski-rental-page .payment-error-container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
body.ski-rental-page .payment__main-r-confirm {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
body.ski-rental-page .payment__main-r-confirm-heading {
  font-size: 24px;
  color: #28a745;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 900;
}
body.ski-rental-page .payment__main-r-confirm-body {
  margin-bottom: 30px;
}
body.ski-rental-page .payment__main-r-confirm-body p {
  margin-bottom: 15px;
  line-height: 1.6;
}
body.ski-rental-page .payment__main-r-confirm-body b {
  color: #333;
}
body.ski-rental-page .payment__main-r-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
body.ski-rental-page .payment__main-r-bottom-mail, body.ski-rental-page .payment__main-r-bottom-phone {
  text-align: center;
}
body.ski-rental-page .payment__main-r-bottom-mail img, body.ski-rental-page .payment__main-r-bottom-phone img {
  margin-bottom: 10px;
}
body.ski-rental-page .payment__main-r-bottom-mail h5, body.ski-rental-page .payment__main-r-bottom-phone h5 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}
body.ski-rental-page .payment__main-r-bottom-phone {
  display: flex;
  font-size: 12px;
}
body.ski-rental-page .payment__main-r-bottom-phone .phones {
  text-align: left;
  padding-top: 10px;
  padding-left: 20px;
}
body.ski-rental-page .payment__main-r-bottom-phone .phones p {
  margin-bottom: 1px;
}
body.ski-rental-page .payment__main-r-bottom-phone .phones p:last-child {
  padding-top: 15px;
}
body.ski-rental-page .payment__main-r-bottom-phone .phones p b {
  color: #007bff;
}
body.ski-rental-page .payment__main-r-bottom-btn {
  text-align: center;
  padding-top: 10px;
}
body.ski-rental-page .payment__main-r-bottom-btn .btn-voucher {
  background: #28a745;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
  height: 50px;
  padding-top: 15px;
}
body.ski-rental-page .payment__main-r-bottom-btn .btn-voucher:hover {
  background: #218838;
  color: white;
  text-decoration: none;
}
body.ski-rental-page .payment__main-r-bottom-mail {
  padding-left: 0px;
  font-size: 12px;
}
body.ski-rental-page .payment__main-r-bottom-mail h5 {
  padding-top: 10px;
  font-weight: 900;
}
body.ski-rental-page .payment__main-r-confirm-btn-note {
  padding-top: 15px;
  font-size: 10px;
  margin-top: 10px;
  color: #666;
}
body.ski-rental-page .payment-pending {
  padding-top: 60px;
  text-align: center;
}
body.ski-rental-page .payment-pending .spinner-border {
  width: 3rem;
  height: 3rem;
  color: #007bff;
  margin-bottom: 30px;
}
body.ski-rental-page .payment-pending h4 {
  margin-bottom: 15px;
  color: #333;
}
body.ski-rental-page .payment-pending p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}
body.ski-rental-page .payment-error-container {
  text-align: center;
}
body.ski-rental-page .payment-error-container .payment-error-title {
  font-size: 32px;
  color: #dc3545;
  margin-bottom: 20px;
}
body.ski-rental-page .payment-error-container .payment-error-message {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}
body.ski-rental-page .payment-error-container .payment-error-code {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
  font-family: monospace;
}
body.ski-rental-page .payment-error-container .payment-error-actions {
  margin-bottom: 40px;
}
body.ski-rental-page .payment-error-container .payment-error-actions .btn {
  margin: 0 10px;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}
body.ski-rental-page .payment-error-container .payment-error-actions .btn-primary {
  background: #007bff;
  color: white;
}
body.ski-rental-page .payment-error-container .payment-error-actions .btn-primary:hover {
  background: #0056b3;
  color: white;
  text-decoration: none;
}
body.ski-rental-page .payment-error-container .payment-error-actions .btn-secondary {
  background: #6c757d;
  color: white;
}
body.ski-rental-page .payment-error-container .payment-error-actions .btn-secondary:hover {
  background: #545b62;
  color: white;
  text-decoration: none;
}
body.ski-rental-page .payment-error-container .payment-error-contact {
  border-top: 1px solid #eee;
  padding-top: 30px;
}
body.ski-rental-page .payment-error-container .payment-error-contact h5 {
  color: #333;
  margin-bottom: 15px;
}
body.ski-rental-page .payment-error-container .payment-error-contact .contact-details {
  max-width: 400px;
  margin: 0 auto;
}
body.ski-rental-page .payment-error-container .payment-error-contact .contact-details p {
  margin-bottom: 8px;
}
body.ski-rental-page .payment-error-container .payment-error-contact .contact-details p b {
  color: #007bff;
}
body.ski-rental-page .payment-error-container .payment-error-info {
  border-top: 1px solid #eee;
  padding-top: 30px;
  max-width: 500px;
  margin: 0 auto;
}
body.ski-rental-page .payment-error-container .payment-error-info h5 {
  color: #333;
  margin-bottom: 15px;
}
body.ski-rental-page .payment-error-container .payment-error-info ul {
  text-align: left;
  max-width: 300px;
  margin: 0 auto 20px;
}
body.ski-rental-page .payment-error-container .payment-error-info ul li {
  margin-bottom: 5px;
  color: #666;
}
@media (max-width: 768px) {
  body.ski-rental-page .payment__main-r-bottom {
    flex-direction: column;
    text-align: center;
  }
  body.ski-rental-page .payment__main-r-bottom-phone {
    flex-direction: column;
    margin: 20px 0;
  }
  body.ski-rental-page .payment__main-r-bottom-phone .phones {
    padding-left: 0;
    text-align: center;
  }
  body.ski-rental-page .payment__main-r-bottom-mail, body.ski-rental-page .payment__main-r-bottom-btn {
    margin: 20px 0;
  }
  body.ski-rental-page .payment-error-actions .btn {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
}

body.ski-rental-page.modal-open .daterangepicker {
  z-index: 10001 !important;
}

@media (max-width: 768px) {
  body.ski-rental-page .form2 .container {
    width: 100vw !important;
  }
}
body.ski-rental-page .hero-bottom .col-lg-3 .img-side {
  flex: 0 0 32px;
}

body.ski-rental-page .row.booking-form__input-container > div {
  padding-left: 0px;
  padding-right: 0px;
}

body.ski-rental-page #map_form_container .invalid-feedback {
  background-color: #F5F5F7;
}

body.ski-rental-page .daterangepicker {
  z-index: 10001 !important;
}
/*# sourceMappingURL=ski-rental.css.map */
