/* General Styles */
body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
  }
  
  /* Box Options */
 /* Box Options */
.box-option {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .box-option:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  .box-option.active {
    border: 2px solid #0d6efd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .box-option i {
    color: #6c757d;
  }
  
  .box-option.active i {
    color: #0d6efd;
  }
  
  /* Checkbox Icon */
  .check-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: #0d6efd;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
  }
  
  .box-option.active .check-icon {
    opacity: 1;
    transform: scale(1);
  }
  
  /* top progress */
  /* Slider Section */
#gate-length-slider {
    appearance: none;
    width: 100%;
    height: 4px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s ease-in-out;
  }
  
  #gate-length-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #0d6efd;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out;
  }
  
  #gate-length-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #0d6efd;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  #slider-value {
    font-weight: bold;
    color: #000;
  }
  
  #gate-length-slider:focus {
    background: #cde3ff;
  }
  

#main-section {
	margin: auto;
}

#price-box {
	display: none;
}

.postSubmission #price-box {
	display:block;
}

.price-range-divider {
	font-size: 46px !important;
    font-weight: 100;
    line-height: 22px;
    color: #b8b8b8;
}

.option-icon {
	width: 50px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
	margin-left: 8px;
	margin-right: 8px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #0d6efd;
}

input:focus + .slider {
  box-shadow: 0 0 1px #0d6efd;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.toggleContainer {
	display: flex;
}

.toggleLabel {
	line-height: 34px;
}