:root {
  --config-primary: #1e2a47;
  /* Sophisticated Midnight Blue */
  --config-secondary: #00d2ff;
  /* Electric Blue Accent */
  --config-accent: #ff9f43;
  /* Warm Orange for contrast */
  --config-bg-light: #f8fafc;
  --config-bg-white: #ffffff;
  --config-border: #e2e8f0;
  --config-text: #2d3748;
  --config-text-muted: #718096;
  --config-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --config-shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --config-radius: 12px;
  --config-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



.ps-configurator-container {
  margin-top: 2rem;
  margin-bottom: 4rem;
  font-family:
    "Outfit",
    "Inter",
    -apple-system,
    sans-serif;
  color: var(--config-text);
  line-height: 1.5;
}

/* Header */
.config-header {
  margin-bottom: 58px !important;
}

.config-header h2 {
  color: #000000;
  font-family: Unbounded;
  font-weight: 800;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  /*text-transform: capitalize;*/
  padding: 5px;
  width: fit-content;
  border: 1.67px solid #c5c5c5;
  border-radius: 13px;
}

.config-header .text-muted {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.configurator-main-sec ul.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
}

.steps-dropdown-content {
  max-height: 1000px;
  opacity: 1;
}

.steps-dropdown-content.collapsed {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  gap: 0;
}

.steps-header {
  background: #f89200;
  color: #000000;
  padding: 32px 30px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  font-family: Unbounded;
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  /*text-transform: capitalize;*/
  align-items: center;
  gap: 13px;
  margin-bottom: 7px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.steps-header:hover {
  background: #e88200;
}

.steps-header .dropdown-arrow {
  height: 19px;
  width: 19px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.steps-header.collapsed .dropdown-arrow {
  transform: rotate(180deg);
}

.configurator-main-sec ul.steps-list .step-menu-item span.step-name {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  color: #111111;
}

.configurator-main-sec ul.steps-list .step-menu-item {
  padding: 32px 31px;
  margin: 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--config-transition);
  color: var(--config-text-muted);
  font-family: Unbounded;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  border: 2px solid #dadada;
  background: #ffffff;
}

.step-options h4 {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #000000;
  text-align: left;
}

.step-menu-item:hover {
  background: #f1f5f9;
  color: var(--config-primary);
}

.configurator-main-sec ul.steps-list .step-menu-item.active {
  background: #0e3960;
  border-color: #0e3960;
}

.configurator-main-sec ul.steps-list .step-menu-item.active span.step-name {
  color: #fff;
}

.configurator-main-sec ul.steps-list .step-menu-item.active svg path {
  stroke: #fff;
  fill: #fff;
}

.step-menu-item i {
  font-size: 1.25rem;
  opacity: 0.5;
}

#wrapper {
  background: #ffffff;
}

.step-menu-item.active i {
  color: var(--config-secondary);
  opacity: 1;
}

/* Main Panel */

/* Range Slider */
.range-slider-input {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
  -webkit-appearance: none;
}

.range-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2fb5d2;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.range-slider-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2fb5d2;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.range-value-display {
  font-size: 1.2em;
  color: #2fb5d2;
}

/* Progress Bar */
.progress-container {
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.progress {
  height: 8px;
  background-color: var(--config-bg-light);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--config-secondary), #00ff87);
  transition: width 0.5s ease-in-out;
}

/* Option Cards */
.option-wrapper {
  perspective: 1000px;
}

.option-card {
  position: relative;
  border: 1.67px solid #c5c5c5;
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--config-transition);
  background: var(--config-bg-white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.option-card:hover,
.option-card.selected {
  border: 1.67px solid #0e3960;
  transform: translateY(-8px);
}

.option-image-wrapper {
  padding: 1.5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border-bottom: unset;
}

.step-options .step-subtitles {
  margin-bottom: 30px !important;
}

.option-image-wrapper img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: var(--config-transition);
}

.option-card:hover .option-image-wrapper img {
  transform: scale(1.05);
}

.option-label-container {
  padding: 1.25rem;
  text-align: center;
  flex-grow: 1;
  justify-content: center;
}
.option-label {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--config-primary);
}

.option-description {
  line-height: 1.4;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.option-price-display {
  color: var(--config-accent);
  font-weight: 800;
  font-size: 1rem;
}

.option-card.selected {
  border: 1.67px solid #0e3960;
  transform: translateY(-8px);
}

.radio-indicator {
  width: 22px;
  height: 22px;
  border: 2px solid #c5c5c5;
  border-radius: 50%;
  position: relative;
  transition: var(--config-transition);
  flex-shrink: 0;
}

.radio-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background-color: #0e3960;
  border-radius: 50%;
  transition: var(--config-transition);
}

.option-card.selected .radio-indicator,
.brand-option-wrapper.selected .radio-indicator,
.toggle-option-wrapper.selected .radio-indicator {
  border-color: #0e3960;
}

.option-card.selected .radio-indicator::after,
.brand-option-wrapper.selected .radio-indicator::after,
.toggle-option-wrapper.selected .radio-indicator::after {
  transform: translate(-50%, -50%) scale(1);
}

/* .config-step[data-step="2"] .option-label-container {
    padding: 16px;
    background: #0e3960;
    justify-content: center;
} */

.config-step[data-step="2"] .option-label {
  margin-bottom: 0;
  font-family: Unbounded;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
}

.range-slider-input {
  padding: 2px;
  border: none;
  background: #dfdfdf;
  height: 0;
  outline: unset;
  width: calc(100% - 70px);
}
.input-range-sec {
  position: absolute;
  top: 8px;
  right: 0;
  border: 1.67px solid #c5c5c5;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  margin: 0 !important;
}
.input-range-sec span.range-value-display {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #1e1e1e !important;
  font-weight: 500;
}

.form-control:focus {
  outline: unset;
  box-shadow: unset;
  padding: 2px;
  border: none;
  background: #dfdfdf;
}

.range-slider-input::-webkit-slider-thumb {
  background: #0e3960;
  border: none;
}

/* .slider-label-text{

} */

/* Summary Sidebar */
.config-summary-sidebar {
  position: sticky;
  top: 20px;
}

.summary-card {
  border: none;
  border-radius: var(--config-radius);
  background: var(--config-bg-white);
  box-shadow: var(--config-shadow-lg);
  overflow: hidden;
}

.summary-card .card-header {
  background: var(--config-primary) !important;
  color: #fff;
  padding: 1.25rem;
  border: none;
}

.summary-card .card-header h4 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  transition: var(--config-transition);
}

.summary-item:hover {
  background: #f8fafc;
}

.summary-item i {
  color: var(--config-secondary);
  margin-top: 2px;
}

.summary-item .option-info {
  flex-grow: 1;
  margin-left: 10px;
}

.summary-total {
  background: var(--config-bg-light);
  padding: 1.5rem;
  border-top: 2px dashed var(--config-border);
}

.total-label {
  font-weight: 600;
  color: var(--config-text-muted);
}

.total-value {
  color: var(--config-primary);
  font-size: 1.75rem;
  font-weight: 900 !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--config-secondary);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  padding: 14px 40px;
  transition: var(--config-transition);
  box-shadow: 0 4px 14px 0 rgba(0, 210, 255, 0.39);
}

.btn-primary:hover {
  background-color: #00bef5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.23);
}

.btn-outline-secondary {
  border: 2px solid var(--config-border);
  color: var(--config-text);
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 30px;
}

/* RAL Picker */
.ral-interface-container {
  background: #fff;
}

.ral-interface-container input.ral-manual-input-field {
  width: 150px;
  border: 1.25px solid #00000040;
  background: #f5f4f5;
  text-align: left !important;
}

.ral-category-btn,
.ral-category-tab {
  transition: all 0.2s ease;
}

/* Dynamic category tab styling - no active state indication */

/* Ensure 2 categories per row layout */
.ral-categories .row {
  margin-left: -10px;
  margin-right: -10px;
}

.ral-categories .row > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  overflow: visible;
}

/* Inline color bars below categories */

/* No active state styling - colors just appear/disappear */

.ral-category-colors-container::-webkit-scrollbar {
  height: 8px;
}

.ral-category-colors-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.ral-category-colors-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.ral-category-colors-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* No selected state styling for colors - selection happens without visual indication */

/* Use data attribute for dynamic color if style attribute not set */
.ral-swatch-item-inline
  .ral-swatch-color[data-hex]:not([style*="background-color"]) {
  background-color: var(--swatch-color);
}

.ral-swatch-item-inline .ral-swatch-code {
  color: #342a21;
  margin-bottom: 2px;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: -0.2px;
}

.ral-swatch-item-inline .ral-swatch-name {
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
  word-wrap: break-word;
  color: #666;
  display: none;
}

.ral-category-palette {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.ral-palette-color {
  transition: all 0.2s ease;
  cursor: pointer;
}

.ral-palette-color:hover {
  transform: scale(1.1);
  z-index: 5;
  position: relative;
}

.ral-selected-categories-wrapper {
  background: #f8f9fa;
  border-radius: 8px;
}

.ral-selected-category-badge {
  display: inline-flex;
  align-items: center;
}

.ral-cat-bar {
  border-radius: 12px;
  font-size: 1.1rem;
  transition: var(--config-transition);
}

.ral-cat-bar:hover {
  filter: brightness(1.1);
}

.ral-swatch-item {
  padding: 10px;
  border-radius: 8px;
  transition: var(--config-transition);
}

.ral-swatch-item:hover {
  background: #f1f5f9;
}

.ral-swatch-color {
  transition: var(--config-transition);
}

/* No selected state styling for colors - selection happens without visual indication */

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.config-step:not(.d-none) {
  animation: fadeIn 0.4s ease-out forwards;
}

/* Cart Configuration Styles */
.configurator-cart-item {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  margin-bottom: 1rem;
}

.configurator-cart-item.config-removed {
  display: none !important;
  opacity: 0;
  transform: translateX(-20px);
}

.configurator-cart-item .panel {
  border: 1px solid var(--config-border);
  border-radius: var(--config-radius);
  box-shadow: var(--config-shadow);
}

.configurator-cart-item .panel-heading {
  background: var(--config-bg-light);
  border-bottom: 2px solid var(--config-border);
}

.configurator-cart-item .panel-body {
  padding: 1.25rem;
}

.configurator-cart-item .config-selections ul,
.configurator-cart-item .config-dimensions ul {
  margin-top: 0.5rem;
  padding-left: 0;
}

.configurator-cart-item .config-selections li,
.configurator-cart-item .config-dimensions li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hide entire configurator container when cart is empty */
.configurator-cart-wrapper:empty,
.configurator-cart-wrapper .config-removed {
  display: none !important;
}

/* Hide wrapper if all items are removed */
.configurator-cart-wrapper:has(
  .configurator-cart-item.config-removed:only-child
),
.configurator-cart-wrapper:has(
  .configurator-cart-item.config-removed:last-child
) {
  display: none !important;
}

/* Toggle Switch Styles */
.toggle-option-wrapper {
  transition: var(--config-transition);
}

.toggle-option-wrapper:hover {
  border-color: var(--config-primary) !important;
  box-shadow: var(--config-shadow);
}

/* Radio Toggle Styles */
.radio-toggle-group {
  display: flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 8px;
}

.radio-toggle-group .custom-control {
  padding-left: 0;
  margin-right: 0;
}

.radio-toggle-group .custom-control-input {
  display: none;
}

.radio-toggle-group .custom-control-label {
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 600;
  margin-bottom: 0;
}

.radio-toggle-group .custom-control-label::before,
.radio-toggle-group .custom-control-label::after {
  display: none;
}

.radio-toggle-group .custom-control-input:checked + .custom-control-label {
  background: #0e3960;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Brand Option Styles */
.brand-option-wrapper {
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.brand-option-wrapper:hover {
  border-color: #0e3960 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brand-option-wrapper.selected {
  border-color: #0e3960 !important;
  border-width: 3px !important;
  background-color: #f0f4f8;
}

.brand-image-wrapper {
  margin-bottom: 10px;
}

.brand-image {
  transition: transform 0.2s ease;
}

.brand-option-wrapper:hover .brand-image {
  transform: scale(1.05);
}

.brand-label {
  font-weight: 600;
}

.brand-description {
  font-size: 0.9em;
  color: #666;
}

.brand-price-display {
  font-weight: 600;
  color: #0e3960;
}

/* Standalone Image Styles */
.standalone-image-wrapper {
  margin: 20px 0;
}

.standalone-image-label {
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
}

.standalone-image-description {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
}

/* Dimension Image Styles */
.dimension-image-wrapper {
  margin-bottom: 15px;
}

.dimension-wrapper .dimension-image-wrapper img {
  height: 300px;
  max-height: unset !important;
  object-fit: cover;
}

.ral-picker-block p {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.2px;
  vertical-align: middle;
  color: #342a21 !important;
  margin: 8px 0 8px 0 !important;
}

.ral-picker-block {
  background: #e5e5e5;
  padding: 15px;
  overflow: visible;
}

.color-main-right {
  padding: 25px 35px;
  background: #e5e5e5;
}

.ral-info-sidebar h5 {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 32px;
  line-height: 38.4px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  color: #232323;
  padding-right: 15px;
  margin-bottom: 10px;
}

.ral-sidebar-content p {
  color: #342a21;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.2px;
  vertical-align: middle;
}

.ral-category-tab span.ral-category-name {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: -0.2px;
  vertical-align: middle;
  color: #342a21;
}

.ral-category-tab {
  position: relative;
  border: unset;
  background: transparent;
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  width: 100%;
}

.ral-category-tab span.ral-category-swatch {
  width: 100%;
  display: inline-flex;
  height: 30px;
}

.ral-category-colors-container {
  border-top: 1px solid #8e8e8e;
  border-bottom: 1px solid #8e8e8e;
  margin: 15px 0;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}

.ral-category-colors-container .ral-swatch-item-inline {
  padding: 8px 0;
  display: flex;
  flex-direction: column-reverse;
  gap: 5px;
  width: calc(20% - 8px);
  min-width: 80px;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Left column: expand right to cover both columns */
.ral-categories .row > .col-md-6:nth-child(odd) > .ral-category-colors-container {
  width: calc(200% + 20px);
  margin-left: -10px;
}

/* Right column: expand left to cover both columns */
.ral-categories .row > .col-md-6:nth-child(even) > .ral-category-colors-container {
  width: calc(200% + 20px);
  margin-left: calc(-100% - 30px);
}


/*.ral-category-colors-container .ral-swatch-item-inline {*/
/*  padding: 12px 0;*/
/*  display: flex;*/
/*  flex-direction: column-reverse;*/
/*  gap: 5px;*/
/*  width: 100%;*/
/*  max-width: 109px;*/
/*}*/
.ral-swatch-item-inline .ral-swatch-color {
  width: 100%;
  height: 30px;
  cursor: pointer;
}

/*.ral-category-colors-container .ral-swatch-item-inline {*/
/*  padding: 12px 0;*/
/*  display: flex;*/
/*  flex-direction: column-reverse;*/
/*  gap: 5px;*/
/*}*/

button#next-step {
  background: #f89200;
  padding-right: 32px;
  padding-left: 32px;
  border-radius: 63px;
  box-shadow: unset;
}

.dimension-wrapper input.dimension-input {
  border: 1.67px solid #c5c5c5;
  background: #ffffff;
  border-radius: 8px;
  height: 52px;
}

.dimension-wrapper {
  position: relative;
}

.dimension-wrapper span.dimension-mm-sec {
  padding: 10px 15px;
  background: #c7c7c7;
  border-radius: 30px;
  width: 63px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 43px;
  right: 30px;
}

.dimension-wrapper small {
  margin-bottom: 15px;
}

.summary-step-container .summary-step-head {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 30px;
}

.summary-step-container textarea.form-control {
  border: 2px solid #b4b4b4;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 31px;
  height: 205px;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #666666;
}

.summary-step-container button#config-request-quote-main {
  width: 100%;
  padding: 0px 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 486px;
  margin: 0 auto;
  border-radius: 63px;
  font-family: Unbounded;
  font-weight: 700;
  font-size: 16px;
  line-height: 56px;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px #00000040;
}

p.text-info {
  margin-top: 12px;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #0ea5e9 !important;
}

p.text-info span {
  color: #525252;
}


.summary-step-container .file-dropzone {
  padding-block: 15px;
  transition: var(--config-transition);
}

.file-dropzone.drag-over {
  border-color: #0e3960 !important;
  background: #f0f7ff !important;
  transform: scale(1.02);
}

.file-name-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.file-name-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.remove-single-file {
  color: #ff4d4d;
  cursor: pointer;
  font-weight: bold;
  padding: 0 5px;
  font-size: 18px;
}

.Quantity-sec-main span {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: -0.2px;
  vertical-align: middle;
  color: #342a21;
  margin-bottom: 8px;
}

.Quantity-sec-main .quantity-main-sec {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 34px;
}

.Quantity-sec-main .quantity-main-sec button {
  padding: 0;
  border: unset;
}

.Quantity-sec-main .quantity-main-sec input {
    margin: 0 !important;
    border: 1.25px solid #00000040;
    background: #f5f4f5;
    width: 45px;
    height: 38px;
    padding: 0 !important;
}
.quote-modal-header h3 {
  font-size: 25px;
}
#quote-request-modal .quote-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
form#quote-request-form .form-group label {
  text-align: left;
}
.configurator-navigation button:hover {
  background: #111;
  color: #fff;
}

.config-steps-sidebar {
    max-height: 600px;
    overflow: auto;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
}

/* Chrome, Edge, Safari */
.config-steps-sidebar::-webkit-scrollbar {
    width: 1px;
}

.config-steps-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
}

/* ==========
media screen start here
========== */
