@font-face {
  font-family: "IranSans";
  src: url(../../assets/font/IranSans/Iranian\ Sans.ttf);
}
:root {
  /* Colors */
  --body-color: #f3f3f3;
  --title-text-color: #9e9e9e;
  --box-shadow: -4px -1px 7px 0px rgba(7, 20, 35, 0.2);
  /* Map Stage */
  --stage-border-color: #ccc;
  --stage-background-color: #f6f5f5;
  --stage-default-color: #676e76;
  --stage-clicked-color: rgb(111, 208, 247);
  --stage-explanation-text-color: #676e76;

  /* text_editor */
  --text-editor-background-color: #ffffff;
  --text-editor-active-button: rgba(174, 221, 240, 0.829);
  --text-editor-border-text-color: #2f2f31;
  --text-input-border: #dddddd;

  /* upload */
  --uploaded-file-border: rgb(73, 73, 73);

  /* base Colors */
  --primary-color: rgb(111, 208, 247);
  --white-color: #fff;
  --black-color: black;
  --black-10-color: rgba(0, 0, 0, 0.1);
  --black-20-color: rgba(0, 0, 0, 0.1);
  --black-50-color: rgba(0, 0, 0, 0.5);
  --transition: all 300ms ease-in-out;

  /* validation */
  --error-message-color: red;

  /* stage_one */
  --information-box-border: rgb(154, 200, 254);

  /* capacity */
  --capacity-box-border: rgb(250, 156, 98);
  --capacity-input-border: rgb(255, 145, 77);

  /* age */
  --age-box-border: rgb(41, 207, 225);

  /* hardship */
  --hardship-box-border: rgb(81, 199, 81);
  --counter-border: #dae0cd54;
  --hardship-stars-default: gray;
  --hardship-stars-clicked: rgb(255, 217, 0);
  --hardship-range-input-color: rgb(24, 123, 24);

  /* tour categories */
  --tour-categories-border: rgb(0, 94, 255);
  /* --checkbox-color: #dcf0eb; */
  --checkbox-color-hover: rgb(187, 211, 246);
  --tour-categories-input-border: rgb(32, 113, 253);
  --search-input-border: gray;
  --tour-categories-chip: rgb(163, 199, 254);

  /* stage_two */
  /* services */
  --services-border: rgb(140, 181, 111);
  --select-services-border-bottom: rgb(102, 128, 84);
  --services-checkbox-color-hover: rgba(135, 162, 115, 0.436);
  --services-chip-color: rgb(140, 181, 111);

  /* Necessary Supllies */
  --select-supplies-border-bottom: rgb(127, 102, 22);
  --supplies-border: rgb(157, 226, 232);
  --supplies-checkbox-color-hover: rgba(131, 154, 165, 0.37);
  --supplies-chip-color: rgba(193, 167, 81, 0.37);

  /* cancellation Rules */
  --rules-border: rgb(255, 136, 0);
  --select-rules-border-bottom: rgb(144, 82, 11);
  --rules-checkbox-color-hover: rgba(247, 223, 196, 0.682);
  --rules-chip-color: rgba(252, 184, 106, 0.725);

  /* tour plan */
  --plan-card-border: #9e9e9e;

  /* stage four */
  --image-slider-next-prev-btn: rgb(152, 245, 242);
  --dot-background: #bcc2cb;
}
.container {
  position: relative;
  min-width: 100%;
  min-height: 100vh;
  background: var(--body-color);
  box-sizing: border-box;
  font-family: "IranSans";
  padding: 0;
}

/* number input style */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

button:focus {
  background-color: transparent !important;
}
.create_location {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header {
  width: 90%;
}
/* header map */
.navbar {
  display: none;
}
.map {
  overflow: hidden;
  border-bottom: 1px solid var(--stage-border-color);
}
.map button {
  width: 25%;
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  padding: 0;
}
.map button:hover {
  background-color: var(--stage-background-color);
}
.map button.active {
  background-color: var(--stage-background-color);
}
.maplinks {
  text-align: right;
  height: 160px;
}
.graphical_map {
  display: flex;
  align-items: center;
}
.graphical_map .circle {
  font-size: 25px;
  display: flex;
  color: var(--stage-default-color);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 60px;
  min-height: 60px;
  border: 1px solid var(--stage-default-color);
}
.graphical_map .line {
  height: 1px;
  width: 100%;
  border: 1px solid var(--stage-default-color);
}
#last_stage .line {
  display: none;
}
#last_stage .circle {
  width: 60px;
  height: 60px;
}
.stage_name {
  color: var(--stage-default-color);
  margin: 10px 50px;
  font-size: 15px;
  font-weight: 600;
}
.map button.active .graphical_map .circle {
  color: var(--stage-clicked-color);
  border: 1px solid var(--stage-clicked-color);
}
.map button.active .graphical_map .line {
  border: 1px solid var(--stage-clicked-color);
}
.map button.active .stage_name {
  color: var(--stage-clicked-color);
}
.stage_name .explanation {
  color: var(--stage-explanation-text-color);
  margin-top: 10px;
  width: 50px;
  font-size: 12px;
  font-weight: 500;
}
/* main_content */
/* stage_one */
.mapcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}
.stage_one_content {
  margin: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 40px;
}
.stage_one_content_wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: end;
}
#stage_one_content_wrapper {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
}
.input-field {
  display: flex;
  flex-direction: column;
}
.input-field input {
  border: none;
  border-bottom: var(--primary-color) 2px solid;
  background-color: inherit;
  outline: none;
}
.input-field label {
  color: var(--title-text-color);
}
#startAddress {
  width: 420px;
}
.startAddress {
  height: 80px;
}
#name,
#startAddress {
  display: flex;
  flex-direction: column;
  font-size: 15px;
}
#name {
  font-size: 25px;
}
.name {
  height: 96px;
}
.startCity,
.startProvince {
  margin-bottom: 32px;
}
.startCitySelect,
.startProvinceSelect {
  width: 200px;
  border: none;
  border-bottom: 2px solid var(--primary-color);
  background-color: inherit;
  border-radius: 0;
  outline: none;
}
.startCitySelect:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}
.startProvinceSelect:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}
.startCitySelect option:hover {
  height: 10px;
}
.startProvinceSelect option:hover {
  height: 10px;
}
.timeWrapper {
  display: flex;
  width: 100%;
}
.startTourTime {
  margin-left: 60px;
}
.startTourHour {
  margin-left: 60px;
}
.finishTourTime {
  margin-left: 60px;
}
#startTimeErrorMessage,
#finishTimeErrorMessage,
#priceErrorMessage,
#planCardError,
#finishHourErrorMessage,
#startHourErrorMessage {
  /* display: none; */
  color: var(--error-message-color);
  width: 100%;
  font-size: 13px;
  margin-top: 5px;
  white-space: normal;
}
#name_error_message,
#address_error_message,
#capacity_error_message,
#categories_error_message,
#description_error_message,
#services_error_message,
#supplies_error_message,
#cancellation_error_message,
#image_error_message,
#video_error_message {
  font-size: 13px;
  display: none;
  color: var(--error-message-color);
}
#description_error_message {
  margin-bottom: 10px;
}
.notValidName,
.notValidAddress,
.notValidCapacity {
  border-bottom: 1px solid var(--error-message-color) !important;
}

/* stage_one_content_part2 */
#stage_one_content_part2 {
  margin: 70px 0;
}
.Price_wrapper,
.capacity,
.hardshipLevel,
.age {
  width: 300px;
  height: 210px;
  border: 2px solid var(--information-box-border);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}
/* Price */
.priceWithOutDiscount {
  margin-bottom: 25px;
}
/* Capacity */
.capacity {
  border: 2px solid var(--capacity-box-border);
  position: relative;
}
#capacityInput {
  border-bottom: 2px solid var(--capacity-input-border);
  margin-top: 27px;
  width: 45%;
}
#capacity_text {
  position: absolute;
  top: 41%;
  right: 38%;
}
#counter {
  display: flex;
  align-items: center;
  width: 238px;
  height: 60px;
  padding: 5px;
  border-radius: 5px;
}
#counter span {
  margin-left: 50px;
  white-space: nowrap;
}
.counter_btn {
  display: flex;
  align-items: center;
}
#counter button {
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 10px;
  margin: 6px;
}
#counter p {
  margin-top: 15px;
}
/* HardshipLevel */
.hardshipLevel {
  border: 2px solid var(--hardship-box-border);
}
.hardshipLevel label {
  color: var(--title-text-color);
}
.hardshipLevelBox {
  direction: ltr;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.box-minmax {
  margin-top: 5px;
  width: 250px;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  color: var(--hardship-range-input-color);
  span:first-child {
    margin-left: 10px;
  }
}
.rs-range {
  width: 250px;
  height: 3px;
  -webkit-appearance: none;
  &:focus {
    outline: none;
  }
  &::-webkit-slider-runnable-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    box-shadow: none;
    background: var(--hardship-range-input-color);
  }
  &::-moz-range-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    box-shadow: none;
    border-radius: 0px;
  }

  &::-webkit-slider-thumb {
    box-shadow: none;
    height: 42px;
    width: 22px;
    border-radius: 22px;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -20px;
  }
  &::-moz-range-thumb {
    box-shadow: none;
    height: 42px;
    width: 22px;
    border-radius: 22px;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -20px;
  }
  &::-moz-focus-outer {
    border: 0;
  }
}
.rs-label {
  position: relative;
  transform-origin: center center;
  display: block;
  width: 38px;
  height: 38px;
  background: transparent;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  padding-top: 2px;
  box-sizing: border-box;
  border: 2px solid var(--hardship-range-input-color);
  /* margin-top: 20px; */
  left: attr(value);
  color: var(--hardship-box-border);
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  font-size: 23px;
  &::after {
    /* content: "kg"; */
    display: block;
    font-size: 10px;
    letter-spacing: 0.07em;
  }
}

/* age */
.age {
  border: 2px solid var(--age-box-border);
}
.ageInputs {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
}
#ageRangeError {
  font-size: 13px;
  color: var(--error-message-color);
  display: none;
}
.ageInputs input {
  width: 90px;
  border-bottom: 1px solid var(--age-input-border);
}
.age_icon {
  width: 23px;
  height: 23px;
  color: var(--title-text-color);
}
.age_error_message {
  margin-top: 6px;
  margin-right: 15px;
  font-size: 11px;
  display: none;
  color: var(--error-message-color);
}
/* TourCategories */
.tourCategories {
  margin-bottom: 60px;
  min-height: 270px;
  border: 2px solid var(--tour-categories-border);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}
.multipleSelectionTourCategories {
  margin-bottom: 70px;
  position: relative;
}
.tourCategoriesTitle {
  color: var(--title-text-color);
}
#tourCategoriesCheckBoxes {
  background-color: var(--white-color);
  display: none;
  padding: 5px 0;
  line-height: 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  z-index: 2;
  height: 150px;
  width: 100%;
  overflow-y: scroll;
  margin-bottom: 50px;
  border: 1px solid var(--save-sub-topic-button-close);
  box-shadow: var(--box-shadow);
}
#tourCategoriesCheckBoxes label {
  display: block;
  height: 30px;
  padding: 0 10px;
  cursor: pointer;
}
#tourCategoriesCheckBoxes label:hover {
  background-color: var(--checkbox-color-hover);
}
#tourCategoriesChipContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
#tourCategoriesSearchInput {
  margin-right: 10px;
  border: none;
  border-bottom: 1px solid var(--search-input-border);
  margin-bottom: 10px;
  outline: none;
}
.selectBox select {
  width: 100%;
  font-weight: bold;
  border: none;
  border-bottom: 1px solid var(--tour-categories-input-border);
  background: inherit;
  color: var(--title-text-color);
}
.overSelect {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
}
.chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.chip {
  padding: 2px 7px;
  min-height: 35px;
  white-space: normal;
  display: flex;
  align-items: center;
  background-color: var(--tour-categories-chip);
  border-radius: 25px;
}
.delete-button {
  color: var(--stage-default-color);
  font-size: 21px;
  padding: 2px 5px;
  cursor: pointer;
}
#searchInput {
  margin-right: 10px;
  border: none;
  border-bottom: 1px solid var(--search-input-border);
  margin-bottom: 10px;
  outline: none;
}
/* Upload File */
/* Upload File */
.upload_file {
  margin-top: 60px;
  margin-bottom: 70px;
}
.upload_title {
  color: var(--title-text-color);
  margin: 40px 5px 20px 0;
  margin: 40px 0 20 5px;
}
.upload {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.upload-wrapper {
  text-align: center;
  display: flex;
  margin: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.upload-area-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  height: 120px;
  padding: 20px;
  border: 2px dashed var(--black-20-color);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.upload-area-video {
  width: 150px;
  height: 120px;
  padding: 20px;
  border: 2px dashed var(--black-20-color);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.upload-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 83%;
}
.image-container {
  position: relative;
  margin: 0px 10px 12px 5px;
}
.image-container img {
  border: 2px solid var(--uploaded-file-border);
  border-radius: 10px;
  width: 120px;
  height: 120px;
}
.upload-area-img:hover {
  background-color: var(--uploaded-file-border-hover);
}
.video-container {
  position: relative;
  margin: 0px 10px 12px 5px;
}
.video-container video {
  border: 2px solid var(--uploaded-file-border);
  border-radius: 10px;
  width: 120px;
  height: 120px;
}
.upload-video {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 83%;
}
.uploaded-video {
  position: relative;
  margin: 0px 10px 12px 5px;
  width: 387px;
  height: 360px;
  border-radius: 15px;
}
.uploaded-video video {
  border: 2px solid var(--uploaded-file-border);
  border-radius: 10px;
  width: 120px;
  height: 120px;
}
.upload-area-video:hover {
  background-color: var(--uploaded-file-border-hover);
}
.upload-area video {
  max-width: 80px;
}
.upload-area-text {
  display: flex;
  font-weight: 700;
  color: var(--black-50-color);
  white-space: nowrap;
}
.visually-hidden {
  visibility: hidden;
  opacity: 0;
}
/* remove image button */
.remove-btn {
  width: 22px;
  height: 22px;
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5px;
  right: -8px;
  cursor: pointer;
  transition: var(--transition);
}
.remove-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.image-limit-text,
.video-limit-text {
  color: var(--primary-color);
  margin-top: 10px;
  font-size: 13px;
}

/* stage_two */
.stage_two_content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-wrap: wrap;
  padding: 20px;
  border-radius: 10px;
}
.tourDescriptionTitle {
  color: var(--title-text-color);
  margin: 15px 5px;
}
/* text_editor */
.text_editor {
  max-width: 100%;
  text-align: right;
  background-color: var(--text-editor-background-color);
  padding: 30px 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}
#description {
  max-width: 100%;
  margin-top: 10px;
  border: 1px solid var(--text-input-border);
  padding: 20px;
  height: 50vh;
  white-space: normal;
  overflow-y: scroll;
}
.options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.options button {
  height: 28px;
  width: 28px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  border: none;
  background-color: var(--text-editor-background-color);
  outline: none;
  color: var(--text-editor-border-text-color);
}
.options button.active {
  background-color: var(--text-editor-active-button) !important;
}
.options button:visited {
  background-color: var(--text-editor-active-button) !important;
}
.options select {
  width: 100px;
  display: block;
  padding: 7px;
  border: 1px solid var(--text-editor-border-text-color);
  border-radius: 3px;
}
.options label,
.options select {
  font-family: "Poppins", sans-serif;
}
.input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
input[type="color"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  width: 40px;
  height: 28px;
  border: none;
  cursor: pointer;
}
input[type="color"]::-webkit-color-swatch {
  border-radius: 15px;
  box-shadow: 0 0 0 2px var(--text-editor-background-color),
    0 0 0 3px var(--text-editor-border-text-color);
}
input[type="color"]::-moz-color-swatch {
  border-radius: 15px;
  box-shadow: 0 0 0 2px var(--text-editor-background-color),
    0 0 0 3px var(--text-editor-border-text-color);
}
#description {
  max-width: 100%;
  margin-top: 10px;
  border: 1px solid var(--text-input-border);
  padding: 20px;
  height: 50vh;
  white-space: normal;
  overflow-y: scroll;
}
ul:not(.browser-default) > li {
  list-style-type: disc !important;
}
ul:not(.browser-default) {
  padding-right: 3rem !important;
}

.servicesAndSuppliesWrapper {
  display: flex;
  justify-content: space-between;
}
/* Services */
.services {
  width: 45%;
  margin-bottom: 60px;
  min-height: 270px;
  border: 2px solid var(--services-border);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}
.services .chip {
  background-color: var(--services-chip-color);
}
.multipleSelectionTourServices {
  margin-bottom: 70px;
  position: relative;
}
.tourServicesTitle {
  color: var(--title-text-color);
}
#tourServicesCheckBoxes {
  background-color: var(--white-color);
  display: none;
  padding: 5px 0;
  line-height: 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  z-index: 2;
  height: 150px;
  width: 100%;
  overflow-y: scroll;
  margin-bottom: 50px;
  border: 1px solid var(--save-sub-topic-button-close);
  box-shadow: var(--box-shadow);
}
#tourServicesCheckBoxes label {
  display: block;
  min-height: 30px;
  white-space: normal;
  padding: 0 10px;
  cursor: pointer;
}
#tourServicesCheckBoxes label:hover {
  background-color: var(--services-checkbox-color-hover);
}
#tourServicesChipContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
#tourServicesSearchInput {
  margin-right: 10px;
  border: none;
  border-bottom: 1px solid var(--search-input-border);
  margin-bottom: 10px;
  outline: none;
}
#selectServices {
  border-bottom: 1px solid var(--select-services-border-bottom);
}
/* Necessary Supplies */
.necessarySupplies {
  position: relative;
  width: 45%;
  margin-bottom: 60px;
  min-height: 325px;
  border: 2px solid var(--supplies-border);
  border-radius: 15px;
  padding: 22px;
  box-shadow: var(--box-shadow);
}
.necessarySupplies .chip {
  padding: 2px 7px;
  /* min-height: 35px; */
  white-space: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid var(--black-20-color);
  border-radius: 5px;
  width: 80%;
  margin-bottom: 6px;
  background: inherit;
}
.multipleSelectionTourSupplies {
  margin-bottom: 5px;
  position: relative;
}
.tourSuppliesTitle {
  color: var(--title-text-color);
}
#tourSuppliesCheckBoxes {
  background-color: var(--white-color);
  display: none;
  padding: 5px 0;
  line-height: 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  z-index: 2;
  height: 150px;
  width: 100%;
  overflow-y: scroll;
  margin-bottom: 50px;
  border: 1px solid var(--save-sub-topic-button-close);
  box-shadow: var(--box-shadow);
}
#tourSuppliesCheckBoxes label {
  display: block;
  min-height: 30px;
  white-space: normal;
  padding: 0 10px;
  cursor: pointer;
}
#tourSuppliesCheckBoxes label:hover {
  background-color: var(--supplies-checkbox-color-hover);
}
#tourSuppliesChipCont {
  display: flex;
}

#tourSuppliesChipCont {
  display: flex;
  justify-content: space-between;
  margin: 7px;
  margin-bottom: 35px;
}
#tourSuppliesChipCont span {
  margin-bottom: 10px;
}
#tourSuppliesChipContainer {
  border-left: 2px solid var(--black-50-color);
}
#tourNecessarySuppliesChipContainer,
#tourSuppliesChipContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#tourNecessarySuppliesChipContainer .chip {
  border: 2px solid var(--error-message-color);
}
.dropzone {
  width: 50%;
}
.draggable {
  + .draggable {
    margin-top: 1.5ch;
  }

  &.is-dragging {
    opacity: 0.5;
  }
}
#tourSuppliesChipGuide {
  position: absolute;
  bottom: 5px;
  font-size: 12px;
  right: 10px;
  white-space: normal;
  color: var(--error-message-color);
}

#tourSuppliesSearchInput {
  margin-right: 10px;
  border: none;
  border-bottom: 1px solid var(--search-input-border);
  outline: none;
}
#selectSupplies {
  border-bottom: 1px solid var(--select-supplies-border-bottom);
}
/* cancellation Rules */
.cancellationRules {
  width: 100%;
  margin-bottom: 60px;
  min-height: 370px;
  border: 2px solid var(--rules-border);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}
.cancellationRules .chip {
  background-color: var(--rules-chip-color);
}
.multipleSelectionTourRules {
  margin-bottom: 70px;
  position: relative;
}
.tourRulesTitle {
  color: var(--title-text-color);
}
#tourRulesCheckBoxes {
  background-color: var(--white-color);
  display: none;
  padding: 5px 0;
  line-height: 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  z-index: 2;
  height: 250px;
  width: 100%;
  overflow-y: scroll;
  margin-bottom: 50px;
  border: 1px solid var(--save-sub-topic-button-close);
  box-shadow: var(--box-shadow);
}
#tourRulesCheckBoxes label {
  display: block;
  min-height: 30px;
  white-space: normal;
  padding: 0 10px;
  cursor: pointer;
}
#tourRulesCheckBoxes label:hover {
  background-color: var(--rules-checkbox-color-hover);
}
#tourRulesChipContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
#tourRulesSearchInput {
  margin-right: 10px;
  border: none;
  border-bottom: 1px solid var(--search-input-border);
  margin-bottom: 10px;
  outline: none;
}
#selectRules {
  border-bottom: 1px solid var(--select-rules-border-bottom);
}

/* stage_three */
.stage_three_content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-wrap: wrap;
  border-radius: 10px;
}
#tourPlanCardContainer {
  display: flex;
  flex-direction: column;
}
.planCardSectionContainer {
  margin: 46px 0;
  height: 319px;
  border-radius: 10px;
  margin-bottom: 40px;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.planCard {
  position: relative;
  background: var(--white-color);
  margin: 20px 0;
  width: 1333px;
  height: 365px;
  border-radius: 10px;
  margin-bottom: 40px;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.planCardAddSectionButton {
  position: absolute;
  top: 8px;
  right: 59px;
  border: 2px solid var(--primary-color);
  outline: none;
  background: none;
  border-radius: 50%;
  font-size: 19px;
  width: 33px;
  height: 33px;
}
.planCardTitle {
  position: absolute;
  top: 0;
  right: 0;
  width: 41px;
  height: 34px;
  margin: 10px;
  font-weight: 600;
  font-size: 18px;
}
.eachPlanCardSection {
  position: relative;
  width: 300px;
  border: 2px solid var(--plan-card-border);
  flex: 0 0 auto;
  border-radius: 10px;
}
.eachPlanCardSectionDateAndName {
  display: flex;
  justify-content: space-between;
  padding: 7px;
}
.eachPlanCardSectionName {
  font-size: 19px;
  font-weight: 600;
}
.eachPlanCardSectionImage {
  width: 100%;
  height: 60%;
}
.eachPlanCardSectionImageDisplay {
  width: 100%;
  height: 155px;
  border-bottom: 2px solid var(--plan-card-border);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.eachPlanCardSectionDes {
  width: 295px;
  overflow: auto;
  white-space: normal;
}
.eachPlanCardSectionOpenModalButton {
  position: absolute;
  right: 266px;
  bottom: 0px;
  border: none;
  outline: none;
  background: inherit;
  font-size: 20px;
}
.eachPlanCardSectionDeleteButton {
  position: absolute;
  right: 0px;
  bottom: 0px;
  border: none;
  outline: none;
  background: inherit;
  font-size: 20px;
}
.section-image-input {
  width: 275px !important;
  border: none !important;
  background: inherit;
  border-bottom-right-radius: 10px;
}
.planTimePeriod {
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.restContainer {
  width: 90px;
  margin-right: 30px;
}
#rest {
  width: 20px;
  outline: none;
  font-size: 20px;
}
.startTime {
  margin-bottom: 50px;
}
.timeWrapper .startTime {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.timeWrapper select {
  width: 60px;
  margin-top: 6px;
  border: none;
  background: inherit;
  border-bottom: 2px solid var(--primary-color);
}
.endTime {
  /* margin-bottom: 50px; */
}
.planTimePeriod label {
  margin-left: 20px;
}
.StartTimeTp {
  margin-left: 30px;
}
.FinishTimeTp {
  margin-left: 30px;
}
#reserveButton {
  width: 120px;
  background: none;
  outline: none;
  border: 2px solid var(--stage-explanation-text-color);
  border-radius: 5px;
  color: var(--black-color);
}
#reservationList {
  display: none;
}
.plan_name_des {
  display: flex;
  padding: 0 1px 0 65px;
}
.planName {
  display: flex;
  height: 215px;
  flex-direction: column;
}
.planLocationName {
  margin: 34px;
  margin-bottom: 40px;
}
#locationName {
  font-size: 15px;
  margin-top: 10px;
}
#planLocationNameSearchSelectOptions {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.planDescription {
  width: 100%;
  color: var(--title-text-color);
  display: flex;
  flex-direction: column;
  margin: 34px;
}
#LocationDesTp {
  border: 2px solid var(--primary-color);
  min-height: 166px;
  height: 46px;
  font-size: 15px;
  margin-top: 30px;
  resize: none;
}
.planImage {
  padding: 20px;
}
.uploadTp {
  background-color: var(--white-color);
  border-radius: 10px;
  width: 41%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--black-color);
}
.upload-Tp-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 25px;
  position: relative;
}
.upload-Tp-image img {
  border: 2px solid var(--uploaded-file-border);
  border-radius: 10px;
  width: 190px;
  height: 135px;
}
.uploaded-tp-area-img {
  width: 190px;
  height: 135px;
}
.delete-button-tp-image {
  position: absolute;
  border: 1px solid var(--primary-color);
  right: -10px;
  top: -10px;
  outline: none;
  background: var(--white-color);
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
}
.modal-body {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.modal-header {
  padding: 10px;
}
.modal-footer {
  min-height: 60px;
}
.modal-body input {
  border: none;
  outline: none;
  border-bottom: 1px solid var(--primary-color);
  width: 150px;
}
.modal-body input[type="color"] {
  width: 45px;
}
.modal-dialog {
  max-width: 730px;
  height: 300px;
}
.modal-content {
  min-height: 760px;
}
.planTimePeriod select {
  width: 160px;
  border: none;
  border-bottom: 2px solid var(--primary-color);
}
.selectBox {
  color: var(--primary-color);
}
/* stage Four */
.stage_four_content {
}
.imageAndSliderContainer {
  display: flex;
}
.image-slider {
  position: relative;
  width: 430px;
  height: 430px;
  padding: 15px;
  border-radius: 15px;
  background: var(--white-color);
  box-shadow: var(--box-shadow);
}
.slideshow-container {
  width: 400px;
  height: 360px;
  position: relative;
  margin: auto;
}
.eachSlide {
  display: none;
  animation-name: fade;
  animation-duration: 1.5s;
}
.eachSlide img {
  width: 400px !important;
  height: 360px;
  border-radius: 15px;
}
.prev,
.next {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  bottom: 8px;
  right: 16px;
  width: 35px;
  height: 35px;
  padding: 16px;
  color: var(--black-50-color);
  background: var(--image-slider-next-prev-btn);
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: var(--box-shadow);
}
.next {
  right: 58px;
}
.dot-container {
  position: absolute;
  bottom: 40px;
  right: 170px;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--dot-background);
  transition: background-color 0.6s ease;
  border: 2px solid var(--image-slider-next-prev-btn);
}
.active,
.dot:hover {
  background-color: var(--image-slider-next-prev-btn);
}
@keyframes mySlides {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* information output */
.imageAndSliderContainer {
  margin-bottom: 10px;
}
.main_information_output {
  background: var(--white-color);
  width: 80%;
  margin-right: 10px;
  border-radius: 15px;
  padding: 20px;
  font-size: 14px;
}
.main_information_output i {
  color: var(--title-text-color);
  margin-left: 5px;
}
#name_output_container {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}
#startAddress_output_container,
#startCity_output_container,
#finishTime_output_container,
#startTime_output_container,
#priceWithOutDiscount_output_container,
#startTourHour_output_container,
#priceWithDiscount_output_container,
#capacity_output_container,
#hardshipLevel_output_container {
  margin-bottom: 15px;
}
.detail_information_output {
  width: 100%;
  background: var(--white-color);
  border-radius: 15px;
  font-size: 15px;
  padding: 20px;
}
.information_title_map {
  display: flex;
  margin-bottom: 40px;
}
.information_title_map div {
  margin: 5px 20px;
  cursor: pointer;
  height: 38px;
}
.information_title_map div a {
  text-decoration: none;
  color: var(--black-color);
}
.information_title_map {
  position: sticky;
  top: 0px;
  background-color: inherit; /* Add a background color if needed */
  z-index: 100; /* Add a z-index to ensure it's above other elements */
  border-bottom: 2px solid var(--image-slider-next-prev-btn);
  border-radius: 10px;
  height: 50px;
  line-height: 41px;
  box-shadow: var(--box-shadow);
}

/* Style for the active navigation item */
.active-item {
  border-bottom: 3px solid var(--primary-color);
}
/* Other CSS styles for your navigation items */
.information_title_map_item {
  margin-right: 10px;
  display: inline-block;
}

#categories_output_container,
#services_output_container,
#supplies_output_container,
#cancellationRules_output_container,
#description_output_container {
  margin: 15px;
  border-bottom: 1px solid var(--black-20-color);
}
.categories_output_title,
.services_output_title,
.supplies_output_title,
.cancellationRules_output_title,
.description_output_title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
}
#categories_output_content,
#services_output_content,
#supllies_output_content,
#cancellationRules_output_content,
#description_output_content {
  display: flex;
  flex-direction: column;
}
.each_categories_chip_item_container,
.each_services_chip_item_container,
.each_supplies_chip_item_container,
.each_rules_chip_item_container {
  margin-bottom: 10px;
}
.each_categories_chip_item_check,
.each_services_chip_item_check,
.each_supplies_chip_item_check,
.each_rules_chip_item_check {
  color: var(--primary-color);
  margin-left: 10px;
  font-size: 16px;
}
.each_categories_chip_item_text,
.each_services_chip_item_text,
.each_supplies_chip_item_text,
.each_rules_chip_item_text {
  white-space: normal;
}
/*slider*/
.eachPlanSwiper {
  padding: 31px 17px;
}
#tourPlanSwiper {
  padding: 15px;
}
.TourPlanTitle {
  font-size: 17px;
  font-weight: 600;
}
#tourPlanSwiper .eachPlanCardSectionOpenModalButton {
  display: none;
}
#tourPlanSwiper .eachPlanCardSectionDeleteButton {
  display: none;
}
.swiper-slide {
  height: 366px !important;
  border-radius: 10px;
}
.tourPlanSwiperTitle {
  font-size: 17px;
  font-weight: 500;
}
#submit-btn {
  margin-right: 17px;
  border-radius: 13px;
  outline: none;
  border: 3px solid var(--primary-color);
  background: inherit;
  padding: 5px 17px;
  margin: 20px 0;
}
