/*!**************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./node_modules/react-range-slider-input/dist/style.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************/
.range-slider {
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  display: block;
  position: relative;
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 4px;
}
.range-slider[data-vertical] {
  height: 100%;
  width: 8px;
}
.range-slider[data-disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.range-slider .range-slider__thumb {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #2196f3;
}
.range-slider .range-slider__thumb:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 6px rgba(33, 150, 243, 0.5);
}
.range-slider[data-vertical] .range-slider__thumb {
  left: 50%;
}
.range-slider .range-slider__thumb[data-disabled] {
  z-index: 2;
}
.range-slider .range-slider__range {
  position: absolute;
  z-index: 1;
  transform: translate(0, -50%);
  top: 50%;
  width: 100%;
  height: 100%;
  background: #51adf6;
}
.range-slider[data-vertical] .range-slider__range {
  left: 50%;
  transform: translate(-50%, 0);
}
.range-slider input[type="range"] {
  -webkit-appearance: none;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: transparent;
}
.range-slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
}
.range-slider input[type="range"]::-moz-range-thumb {
  width: 0;
  height: 0;
  border: 0;
}
.range-slider input[type="range"]:focus {
  outline: 0;
}

/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./components/Helper/DropDown/style.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************/
/* default select box */
.my-select-box {
  font-weight: normal;
  position: relative;
}
.my-select-box .click-away {
  width: 100%;
  height: 100%;
  z-index: 99;
  position: fixed;
  display: block;
  top: 0;
  left: 0;
}
.my-select-box .my-select-box-btn {
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.my-select-box .my-select-box-section {
  width: 100%;
  background-color: #000;
  border: 1px solid #23262b;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgb(68 68 68 / 11%);
  box-sizing: border-box;
  padding: 0;
  margin-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  overflow-y: auto;
  overflow-x: hidden;
}
.my-select-box .my-select-box-section.left {
  left: 0;
  right: auto;
}
[dir="rtl"] .my-select-box .my-select-box-section.left {
  left: auto;
  right: 0;
}
.my-select-box .my-select-box-section.right {
  left: auto;
  right: 0;
}
[dir="rtl"] .my-select-box .my-select-box-section.right {
  right: auto;
  left: 0;
}
.my-select-box .my-select-box-section.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  visibility: visible;
}
.my-select-box .my-select-box-section ul {
  padding: 0;
}
.my-select-box .my-select-box-section li {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
  color: white;
}
[dir="rtl"] .my-select-box .my-select-box-section li {
  text-align: right;
}
.my-select-box .my-select-box-section li:hover {
  background-color: #23262b;
  font-weight: bold;
}
.my-select-box .my-select-box-section li.selected {
  background-color: #23262b;
  font-weight: bold;
}
/* default select box end =======================*/

