.accordion-wrapper {
  border-bottom: 1px solid var(--CardBoard);
  padding: 16px 0 16px 0;
}
.accordion-wrapper input {
  display: none;
}
.accordion-wrapper input ~ .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  padding: 16px 0;
}
.accordion-wrapper input ~ .head .title {
  width: calc(100% - 32px);
  color: var(--Raven);
  font-weight: 700;
}
.accordion-wrapper input ~ .head .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border: 2px solid var(--Raven);
  border-radius: 50%;
}
.accordion-wrapper input ~ .head .icon svg {
  width: 16px;
  height: auto;
  transform: rotateX(180deg);
  transition: 0.5s;
}
.accordion-wrapper input ~ .body {
  max-height: 0;
  overflow: hidden;
}
.accordion-wrapper input ~ .body p {
  font-size: 16px;
  line-height: 36px;
}
.accordion-wrapper input:checked ~ .head .icon svg {
  transform: rotateX(0);
}
.accordion-wrapper input:checked ~ .body {
  max-height: 1500px;
  -webkit-transition: max-height 2.5s;
  -moz-transition: max-height 2.5s;
  -ms-transition: max-height 2.5s;
  -o-transition: max-height 2.5s;
  transition: max-height 2.5s;
}

html.dark .accordion-wrapper input ~ .head .icon svg path {
  fill: #F8F8F8;
}

@media (max-width: 768px) {
  .accordion-wrapper input ~ .body p {
    font-size: 12px;
    line-height: 28px;
  }
}
.mtn-textarea {
  margin: 32px 0 0 0;
}
.mtn-textarea-dark .label {
  color: var(--White);
}
.mtn-textarea-light .label {
  color: var(--Raven);
}
.mtn-textarea-field {
  position: relative;
}
.mtn-textarea-field .mtn-textarea_textarea {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 240px;
  background: var(--White);
  border: 1.5px solid var(--Bob);
  border-radius: 16px;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  color: var(--Raven);
  resize: none;
  transition: 0.5s;
  z-index: 25;
  padding: 16px 40px;
  margin: 32px 0 24px 0;
}
.mtn-textarea-field .mtn-textarea_textarea.no-both-icon {
  padding: 16px;
}
.mtn-textarea-field .mtn-textarea_textarea.error {
  border: 1.5px solid var(--Crimson) !important;
}
.mtn-textarea-field .mtn-textarea_textarea.success {
  border: 1.5px solid var(--Reptile) !important;
}
.mtn-textarea-field .mtn-textarea_textarea::placeholder {
  color: var(--Bob);
}
.mtn-textarea-field .mtn-textarea_textarea:hover {
  background: var(--Cloud);
}
.mtn-textarea-field .mtn-textarea_textarea:focus:not(:active) ~ .focus {
  position: absolute;
  bottom: -4px;
  left: -4px;
  right: -4px;
  width: calc(100% + 8px);
  height: 248px;
  background: transparent;
  border: 2px solid var(--Sunshine_Dark);
  border-radius: 16px;
  z-index: 0;
}
.mtn-textarea-field .mtn-textarea_textarea:not(:placeholder-shown) {
  border: 1.5px solid var(--Raven);
}
.mtn-textarea-field .mtn-textarea_textarea:not(:placeholder-shown) ~ .focus {
  display: none;
}
.mtn-textarea-field .mtn-textarea_textarea:not(:placeholder-shown) ~ .start-icon path {
  stroke: var(--Raven);
}
.mtn-textarea-field .mtn-textarea_textarea[disabled] {
  background-color: var(--CardBoard);
  color: var(--Bob);
}
.mtn-textarea-field .mtn-textarea_textarea[disabled] ~ .label {
  color: var(--Iron);
}
.mtn-textarea-field .mtn-textarea_textarea[disabled] ~ .end-icon path {
  stroke: var(--Bob);
}
.mtn-textarea-field .mtn-textarea_textarea ~ .validation {
  position: absolute;
  bottom: -24px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Crimson);
}
.mtn-textarea-field .mtn-textarea_textarea ~ .label {
  position: absolute;
  top: -32px;
  display: block;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  margin: 0 0 8px 0;
}
.mtn-textarea-field .mtn-textarea_textarea ~ .start-icon, .mtn-textarea-field .mtn-textarea_textarea ~ .end-icon {
  position: absolute;
  top: 16px;
}
.mtn-textarea-field .mtn-textarea_textarea ~ .start-icon path {
  stroke: var(--Bob);
}
.mtn-textarea-field .mtn-textarea_textarea ~ .end-icon path {
  stroke: var(--Raven);
}

html[lang=fa-IR] .mtn-textarea-field .mtn-textarea_textarea.no-start-icon {
  padding: 16px 16px 16px 40px;
}
html[lang=fa-IR] .mtn-textarea-field .mtn-textarea_textarea.no-end-icon {
  padding: 16px 40px 16px 16px;
}
html[lang=fa-IR] .mtn-textarea-field .mtn-textarea_textarea ~ .validation svg {
  margin: 0 0 -4px 4px;
}
html[lang=fa-IR] .mtn-textarea-field .mtn-textarea_textarea ~ .start-icon {
  right: 16px;
}
html[lang=fa-IR] .mtn-textarea-field .mtn-textarea_textarea ~ .end-icon {
  left: 16px;
}

html[lang=en-US] .mtn-textarea-field .mtn-textarea_textarea.no-start-icon {
  padding: 16px 40px 16px 16px;
}
html[lang=en-US] .mtn-textarea-field .mtn-textarea_textarea.no-end-icon {
  padding: 16px 16px 16px 40px;
}
html[lang=en-US] .mtn-textarea-field .mtn-textarea_textarea ~ .validation svg {
  margin: 0 4px -4px 0;
}
html[lang=en-US] .mtn-textarea-field .mtn-textarea_textarea ~ .start-icon {
  left: 16px;
}
html[lang=en-US] .mtn-textarea-field .mtn-textarea_textarea ~ .end-icon {
  right: 16px;
}

@media (max-width: 768px) {
  .mtn-textarea-field .mtn-textarea_textarea {
    height: 164px;
  }
  .mtn-textarea-field .mtn-textarea_textarea:focus:not(:active) ~ .focus {
    height: 172px;
  }
  .mtn-textarea-field .mtn-textarea_textarea ~ .validation {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
  }
  .mtn-textarea-field .mtn-textarea_textarea ~ .start-icon, .mtn-textarea-field .mtn-textarea_textarea ~ .end-icon {
    bottom: 12px;
  }
}
.mtn-select {
  display: none;
}
.mtn-select-field {
  position: relative;
  margin: 32px 0;
}
.mtn-select-field .mtn-select ~ .validation {
  position: absolute;
  bottom: -24px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Crimson);
}
.mtn-select-field .mtn-select ~ .label {
  position: absolute;
  top: -32px;
  display: block;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  margin: 0 0 8px 0;
}
.mtn-select-dark .mtn-select ~ .label {
  color: var(--White);
}
.mtn-select-light .mtn-select ~ .label {
  color: var(--Raven);
}
.mtn-select + .custom-mtn-select {
  position: relative;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-label {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 56px;
  background-color: var(--White);
  background-image: url(/wp-content/themes/mtn_personal/assets/images/icons/chevron-down.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position-x: 8px;
  background-position-y: center;
  border: 1px solid var(--Bob);
  border-radius: 12px;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  transition: 0.5s;
  cursor: pointer;
  padding: 16px 16px 16px 56px;
  margin: 32px 0 0 0;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-label.active {
  border-color: var(--Raven);
  color: var(--Raven);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-label:focus:not(:active)::before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  background-color: transparent;
  border: 2px solid var(--Sunshine_Dark);
  border-radius: 12px;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-label span {
  font-size: 14px;
  line-height: 22px;
  color: var(--Raven);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 0;
  background-color: var(--White);
  border-radius: 0 0 16px 16px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: 0.5s;
  z-index: 5000;
  padding: 0 16px 0 8px;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search {
  list-style: none;
  margin: 0 0 8px 0;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search {
  position: relative;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search input {
  width: 100%;
  height: 48px;
  border: none;
  border-bottom: 1px solid var(--CardBoard);
  outline: none;
  background-color: var(--White);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  color: var(--Raven);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search input::placeholder {
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  color: var(--Raven);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search svg path,
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search svg circle {
  stroke: var(--Raven);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list {
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  overflow-x: auto;
  padding: 0 0 0 8px;
  margin: 8px 0;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list::-webkit-scrollbar {
  width: 8px;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list::-webkit-scrollbar-track {
  background-color: var(--White);
  border: 1px solid var(--CardBoard);
  border-radius: 4px;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list::-webkit-scrollbar-thumb {
  background-color: var(--CardBoard);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list::-webkit-scrollbar-thumb:hover {
  background-color: var(--CardBoard);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li {
  display: flex;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  color: var(--Raven);
  transition: 0.5s;
  padding: 0;
  margin: 0;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li::before {
  content: none;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li:hover {
  background-color: var(--Cloud);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li input {
  display: none;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li input:checked + label.box[for^=checkbox] {
  background-color: var(--Sunshine);
  background-image: url(/wp-content/themes/mtn_personal/assets/images/icons/check-dark.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  border: 2px solid var(--Sunshine);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li input:checked + label.box[for^=radio] {
  border: 2px solid var(--Sunshine);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li input:checked + label.box[for^=radio]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--Sunshine);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label {
  cursor: pointer;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label.box {
  margin: 8px 0 8px 8px;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label.box[for^=checkbox] {
  width: 24px;
  height: 24px;
  border: 2px solid var(--Bob);
  border-radius: 4px;
  transition: 0.5s;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label.box[for^=radio] {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid var(--Bob);
  border-radius: 50%;
  transition: 0.5s;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label:not(.box) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 32px);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  padding: 8px 0;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label:not(.box) span {
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}
@supports (-webkit-touch-callout: none) {
  .mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list {
    padding: 0 8px;
  }
}
.mtn-select + .custom-mtn-select:not(.disable) .custom-mtn-select-label:hover, .mtn-select + .custom-mtn-select:not(.disabled) .custom-mtn-select-label:hover {
  background-color: var(--Cloud);
}
.mtn-select + .custom-mtn-select:not(.disable) .custom-mtn-select-input:checked + .custom-mtn-select-main-list, .mtn-select + .custom-mtn-select:not(.disabled) .custom-mtn-select-input:checked + .custom-mtn-select-main-list {
  max-height: 2500px;
}
.mtn-select + .custom-mtn-select:not(.disable) .custom-mtn-select-input:checked + .custom-mtn-select-main-list + .custom-mtn-select-area, .mtn-select + .custom-mtn-select:not(.disabled) .custom-mtn-select-input:checked + .custom-mtn-select-main-list + .custom-mtn-select-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 2500;
}
.mtn-select + .custom-mtn-select.disable .custom-mtn-select-label, .mtn-select + .custom-mtn-select.disabled .custom-mtn-select-label {
  background-color: var(--CardBoard);
  color: var(--Bob);
}
.mtn-select + .custom-mtn-select.disable .custom-mtn-select-label > span, .mtn-select + .custom-mtn-select.disabled .custom-mtn-select-label > span {
  color: var(--Bob);
}
.mtn-select + .custom-mtn-select.disable + label + label, .mtn-select + .custom-mtn-select.disabled + label + label {
  color: var(--Iron);
}
.mtn-select.default-hide + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li:nth-child(1) {
  display: none;
}
.mtn-select.field {
  border: 1px solid var(--Raven);
}
.mtn-select-field .mtn-select.disable + .custom-mtn-select .custom-mtn-select-label, .mtn-select-field .mtn-select.disabled + .custom-mtn-select .custom-mtn-select-label, .mtn-select-field .mtn-select[disabled] + .custom-mtn-select .custom-mtn-select-label {
  background-color: var(--CardBoard);
  color: var(--Bob);
}
.mtn-select-field .mtn-select.disable + .custom-mtn-select .custom-mtn-select-label > span, .mtn-select-field .mtn-select.disabled + .custom-mtn-select .custom-mtn-select-label > span, .mtn-select-field .mtn-select[disabled] + .custom-mtn-select .custom-mtn-select-label > span {
  color: var(--Bob);
}
.mtn-select-field .mtn-select.disable + .custom-mtn-select .custom-mtn-select-label + label + label, .mtn-select-field .mtn-select.disabled + .custom-mtn-select .custom-mtn-select-label + label + label, .mtn-select-field .mtn-select[disabled] + .custom-mtn-select .custom-mtn-select-label + label + label {
  color: var(--Iron);
}
.mtn-select-field .mtn-select.disable ~ .label, .mtn-select-field .mtn-select.disabled ~ .label, .mtn-select-field .mtn-select[disabled] ~ .label {
  color: var(--Iron) !important;
}
.mtn-select-field .mtn-select:not(.disable):not(.disabled):not(:disabled):not([disabled]) + .custom-mtn-select .custom-mtn-select-input:checked + .custom-mtn-select-main-list {
  max-height: 2500px;
}
.mtn-select-field .mtn-select:not(.disable):not(.disabled):not(:disabled):not([disabled]) + .custom-mtn-select .custom-mtn-select-input:checked + .custom-mtn-select-main-list + .custom-mtn-select-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 2500;
}
.mtn-select.error + .custom-mtn-select .custom-mtn-select-label {
  border: 1.5px solid var(--Crimson) !important;
}
.mtn-select.success + .custom-mtn-select .custom-mtn-select-label {
  border: 1.5px solid var(--Reptile) !important;
}

html[lang=fa-IR] .mtn-select-field .mtn-select ~ .validation svg {
  margin: 0 0 -4px 4px;
}
html[lang=fa-IR] .mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search svg {
  left: 16px;
}

html[lang=en-US] .mtn-select-field .mtn-select ~ .validation svg {
  margin: 0 4px -4px 0;
}
html[lang=en-US] .mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search svg {
  right: 16px;
}
html[lang=en-US] .mtn-select + .custom-mtn-select .custom-mtn-select-label {
  padding: 16px 56px 16px 16px;
  background-position-x: right;
}
html[lang=en-US] .mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label.box {
  margin: 8px 8px 8px 0;
}

html.dark .mtn-select + .custom-mtn-select .custom-mtn-select-label {
  background-image: url(/wp-content/themes/mtn_personal/assets/images/icons/chevron-down-light.svg);
}

@media (max-width: 768px) {
  .mtn-select + .custom-mtn-select .custom-mtn-select-label {
    height: 48px;
  }
  .mtn-select + .custom-mtn-select .custom-mtn-select-main-list {
    top: 48px;
  }
}
.mtn-checkbox {
  margin: 0 0 40px 0;
}
.mtn-checkbox-dark .label {
  color: var(--White);
}
.mtn-checkbox-dark .label + label {
  color: var(--White);
}
.mtn-checkbox-dark .mtn-input_checkbox + label + label {
  color: var(--Cloud);
}
.mtn-checkbox-dark .mtn-input_checkbox:hover + label + label {
  color: var(--White);
}
.mtn-checkbox-dark .mtn-input_checkbox:checked + label::after {
  background-image: url(/wp-content/themes/mtn_personal/assets/images/icons/check-light.svg);
}
.mtn-checkbox-light .label {
  color: var(--Raven);
}
.mtn-checkbox-light .mtn-input_checkbox + label + label {
  color: var(--Charcoal);
}
.mtn-checkbox-light .mtn-input_checkbox:hover + label + label {
  color: var(--Raven);
}
.mtn-checkbox-light .mtn-input_checkbox:checked + label::after {
  background-image: url(/wp-content/themes/mtn_personal/assets/images/icons/check-dark.svg);
}
.mtn-checkbox-field {
  position: relative;
}
.mtn-checkbox-field .mtn-input_checkbox {
  display: none;
}
.mtn-checkbox-field .mtn-input_checkbox + label {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--Bob);
  cursor: pointer;
  transition: 0.5s;
  margin: 0 0 -8px 0;
}
.mtn-checkbox-field .mtn-input_checkbox + label + label {
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  cursor: pointer;
  transition: 0.5s;
  margin: 0;
}
.mtn-checkbox-field .mtn-input_checkbox:hover + label {
  border: 1px solid var(--Iron);
}
.mtn-checkbox-field .mtn-input_checkbox:focus:not(:active) + label::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid var(--Sunshine_Dark);
}
.mtn-checkbox-field .mtn-input_checkbox[disabled] + label {
  border: 1px solid var(--CardBoard);
}
.mtn-checkbox-field .mtn-input_checkbox[disabled] + label + label {
  color: var(--Bob);
}
.mtn-checkbox-field .mtn-input_checkbox:checked + label {
  border: 1px solid var(--Sunshine);
}
.mtn-checkbox-field .mtn-input_checkbox:checked + label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
}
.mtn-checkbox-field .mtn-input_checkbox:checked:hover {
  border: 1px solid var(--Sunshine_Dark);
}
.mtn-checkbox-field .mtn-input_checkbox:checked[disabled] + label {
  border: 1px solid var(--CardBoard);
}
.mtn-checkbox-field .validation {
  position: absolute;
  bottom: -24px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Crimson);
}
.mtn-checkbox-field .label {
  display: block;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  margin: 0 0 8px 0;
}

@media (max-width: 768px) {
  .mtn-checkbox-field > div > div {
    margin: 16px 0 0 0;
  }
  .mtn-checkbox-field .label {
    display: block;
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
    margin: 0 0 -8px 0;
  }
}
.mtn-radio {
  margin: 0 0 40px 0;
}
.mtn-radio-dark .label {
  color: var(--White);
}
.mtn-radio-dark .refresh path {
  stroke: var(--White);
}
.mtn-radio-light .label {
  color: var(--Raven);
}
.mtn-radio-light .refresh path {
  stroke: var(--Raven);
}
.mtn-radio-field {
  position: relative;
}
.mtn-radio-field .mtn-input_radio {
  display: none;
}
.mtn-radio-field .mtn-input_radio + label {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  border: 1px solid var(--Bob);
  cursor: pointer;
  transition: 0.5s;
  margin: 0 0 -8px 0;
}
.mtn-radio-field .mtn-input_radio + label + label {
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  color: var(--Charcoal);
  cursor: pointer;
  transition: 0.5s;
  margin: 0 8px;
}
.mtn-radio-field .mtn-input_radio:hover + label {
  border: 1px solid var(--Iron);
}
.mtn-radio-field .mtn-input_radio:hover + label + label {
  color: var(--Raven);
}
.mtn-radio-field .mtn-input_radio:focus:not(:active) + label::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  border: 1px solid var(--Sunshine_Dark);
}
.mtn-radio-field .mtn-input_radio[disabled] + label {
  border: 1px solid var(--CardBoard);
}
.mtn-radio-field .mtn-input_radio[disabled] + label + label {
  color: var(--Bob);
}
.mtn-radio-field .mtn-input_radio:checked + label {
  border: 1px solid var(--Sunshine);
}
.mtn-radio-field .mtn-input_radio:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: var(--Sunshine);
}
.mtn-radio-field .mtn-input_radio:checked:hover {
  border: 1px solid var(--Sunshine_Dark);
}
.mtn-radio-field .mtn-input_radio:checked:hover::after {
  background: var(--Sunshine_Dark);
}
.mtn-radio-field .mtn-input_radio:checked[disabled] + label {
  border: 1px solid var(--CardBoard);
}
.mtn-radio-field .mtn-input_radio:checked[disabled] + label::after {
  background: var(--CardBoard);
}
.mtn-radio-field .validation {
  position: absolute;
  bottom: -24px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Crimson);
}
.mtn-radio-field .label {
  display: block;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  margin: 0 0 22px 0;
}

@media (max-width: 768px) {
  .mtn-input-field > div > div {
    margin: 16px 0 0 0;
  }
  .mtn-input-field .label {
    display: block;
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
    margin: 0 0 -8px 0;
  }
}
@media screen and (min-width: 1450px) {
  .container {
    max-width: 1408px;
  }
}
.bts .main-sections {
  display: none;
}
.bts input[type=radio] {
  display: none;
}
.bts input#main:checked ~ .information-section, .bts input#main:checked ~ .bts-section, .bts input#main:checked ~ .faq-section {
  display: block;
}
.bts input#check-login:checked ~ .information-section, .bts input#check-login:checked ~ .bts-section, .bts input#check-login:checked ~ .faq-section {
  display: block;
}
.bts input#track-section:checked ~ .track-section, .bts input#track-section:checked ~ .faq-section {
  display: block;
}
.bts input#track-result-section:checked ~ .track-result-section {
  display: block;
}
.bts input#pre-request-section:checked ~ .pre-request-section {
  display: block;
}
.bts input#start-request-section:checked ~ .start-request-section {
  display: block;
}
.bts input#request-section:checked ~ .request-section {
  display: block;
}
.bts input#accept-request-section:checked ~ .accept-request-section {
  display: block;
}
.bts input#request-result-section:checked ~ .request-result-section {
  display: block;
}
.bts .information-section {
  padding: 24px 0 120px 0;
}
.bts .information-section .main-title {
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  color: #202020;
  margin: 0 0 32px 0;
}
.bts .information-section .main-imformation {
  margin: 0 0 64px 0;
}
.bts .information-section .main-imformation p {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #202020;
  margin: 0;
}
.bts .information-section .box {
  display: flex;
  flex-wrap: nowrap;
  gap: 120px;
  width: 100%;
  height: auto;
  background: #FFFDEB;
  border-radius: 40px;
  padding: 80px 100px;
}
.bts .information-section .box-content {
  min-width: 568px;
}
.bts .information-section .box-content .information {
  margin: 0 0 24px 0;
}
.bts .information-section .box-content .information h1,
.bts .information-section .box-content .information h2,
.bts .information-section .box-content .information h3,
.bts .information-section .box-content .information h4,
.bts .information-section .box-content .information h5,
.bts .information-section .box-content .information h6 {
  font-weight: 700;
  font-size: 40px;
  color: #202020;
  margin: 0 0 8px 0;
}
.bts .information-section .box-content .information p {
  font-weight: 400;
  font-size: 20px;
  color: #202020;
  margin: 0;
}
.bts .information-section .box-content .mtn-btn {
  width: 216px;
  height: 64px;
}
.bts .information-section .box-content .mtn-btn .btn-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #202020;
}
.bts .information-section .box-image {
  min-width: calc(100% - 688px);
}
.bts .information-section .box-image picture,
.bts .information-section .box-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .bts .information-section {
    padding: 4px 0 64px 0;
  }
  .bts .information-section .main-title {
    font-size: 18px;
    text-align: start;
    color: #000000;
    margin: 0 0 4px 0;
  }
  .bts .information-section .main-imformation {
    margin: 0 0 24px 0;
  }
  .bts .information-section .main-imformation p {
    font-weight: 300;
    font-size: 16px;
    text-align: start;
    color: #000000;
    margin: 0;
  }
  .bts .information-section .box {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    width: 100%;
    height: auto;
    background: #FFFDEB;
    border-radius: 40px;
    padding: 24px 16px;
  }
  .bts .information-section .box-content {
    min-width: 100%;
  }
  .bts .information-section .box-content .information {
    margin: 0 0 24px 0;
  }
  .bts .information-section .box-content .information h1,
  .bts .information-section .box-content .information h2,
  .bts .information-section .box-content .information h3,
  .bts .information-section .box-content .information h4,
  .bts .information-section .box-content .information h5,
  .bts .information-section .box-content .information h6 {
    font-size: 16px;
    color: #000000;
    margin: 0 0 4px 0;
  }
  .bts .information-section .box-content .information p {
    font-size: 14px;
    color: #000000;
    margin: 0;
  }
  .bts .information-section .box-content .mtn-btn {
    width: 100%;
    height: 48px;
  }
  .bts .information-section .box-content .mtn-btn .btn-text {
    font-size: 16px;
    line-height: 26px;
  }
  .bts .information-section .box-image {
    min-width: 100%;
  }
  .bts .information-section .box-image picture,
  .bts .information-section .box-image img {
    margin: 0 auto;
  }
}
.bts .bts-section {
  padding: 0 0 120px 0;
}
.bts .bts-section .main-information {
  margin: 0 0 40px 0;
}
.bts .bts-section .main-information h1,
.bts .bts-section .main-information h2,
.bts .bts-section .main-information h3,
.bts .bts-section .main-information h4,
.bts .bts-section .main-information h5,
.bts .bts-section .main-information h6 {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #000000;
  margin: 0 0 16px 0;
}
.bts .bts-section .main-information p {
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  color: #000000;
  margin: 0;
}
.bts .bts-section .buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.bts .bts-section .buttons .mtn-btn {
  max-width: 100%;
  height: 64px;
}
.bts .bts-section .buttons .mtn-btn:nth-child(1) {
  width: 176px;
}
.bts .bts-section .buttons .mtn-btn:nth-child(2) {
  width: 221px;
}
.bts .bts-section .buttons .mtn-btn .btn-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #202020;
}
@media screen and (max-width: 768px) {
  .bts .bts-section {
    padding: 0 0 34px 0;
  }
  .bts .bts-section .main-information {
    margin: 0 0 24px 0;
  }
  .bts .bts-section .main-information h1,
  .bts .bts-section .main-information h2,
  .bts .bts-section .main-information h3,
  .bts .bts-section .main-information h4,
  .bts .bts-section .main-information h5,
  .bts .bts-section .main-information h6 {
    font-size: 18px;
    text-align: start;
    margin: 0 0 4px 0;
  }
  .bts .bts-section .main-information p {
    font-size: 16px;
    text-align: start;
  }
  .bts .bts-section .buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .bts .bts-section .buttons .mtn-btn {
    height: 48px;
  }
  .bts .bts-section .buttons .mtn-btn:nth-child(1) {
    width: 100%;
  }
  .bts .bts-section .buttons .mtn-btn:nth-child(2) {
    width: 100%;
  }
  .bts .bts-section .buttons .mtn-btn .btn-text {
    font-size: 16px;
    line-height: 26px;
  }
}
.bts .faq-section {
  padding: 0 0 120px 0;
}
.bts .faq-section .main-content {
  margin: 0 0 32px 0;
}
.bts .faq-section .main-content h1,
.bts .faq-section .main-content h2,
.bts .faq-section .main-content h3,
.bts .faq-section .main-content h4,
.bts .faq-section .main-content h5,
.bts .faq-section .main-content h6 {
  font-weight: 700;
  font-size: 42px;
  line-height: 62px;
  text-align: center;
  color: #000000;
  margin: 0;
}
.bts .faq-section .accordion-wrapper .head .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #404040;
}
.bts .faq-section .accordion-wrapper .body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: #404040;
}
@media screen and (max-width: 768px) {
  .bts .faq-section {
    padding: 0 0 64px 0;
  }
  .bts .faq-section .main-content {
    margin: 0 0 16px 0;
  }
  .bts .faq-section .main-content h1,
  .bts .faq-section .main-content h2,
  .bts .faq-section .main-content h3,
  .bts .faq-section .main-content h4,
  .bts .faq-section .main-content h5,
  .bts .faq-section .main-content h6 {
    font-size: 18px;
    line-height: 30px;
  }
  .bts .faq-section .accordion-wrapper .head .title {
    font-size: 16px;
    line-height: 26px;
  }
  .bts .faq-section .accordion-wrapper .body p {
    font-size: 14px;
    line-height: 28px;
  }
}
.bts .track-section {
  padding: 24px 0 120px 0;
}
.bts .track-section .box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  padding: 48px 40px;
  background: #F8F8F8;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.0705882353);
}
.bts .track-section .box .mtn-form .information {
  margin: 0 0 24px 0;
}
.bts .track-section .box .mtn-form .information p {
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #000000;
  margin: 0;
}
.bts .track-section .box .mtn-form .main-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.bts .track-section .box .mtn-form .main-body .mtn-input-field {
  width: 100%;
  max-width: 544px;
  margin: 0;
}
.bts .track-section .box .mtn-form .main-body .mtn-input-field .mtn-field {
  margin: 0;
}
.bts .track-section .box .mtn-form .main-body .mtn-input-field .mtn-field.track-code {
  text-align: center;
}
.bts .track-section .box .mtn-form .main-body .mtn-input-field .mtn-field.phone-num {
  text-align: center;
}
.bts .track-section .box .mtn-form .main-body .button-wrapper {
  width: 100%;
  max-width: 544px;
}
.bts .track-section .box .mtn-form .main-body .button-wrapper .mtn-btn {
  width: 100%;
}
.bts .track-section .box .mtn-form .main-body .button-wrapper .mtn-btn .btn-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #202020;
}
@media screen and (max-width: 768px) {
  .bts .track-section {
    padding: 0 0 120px 0;
    margin: -24px 0 0 0;
  }
  .bts .track-section .box .mtn-form .information {
    margin: 0 0 32px 0;
  }
  .bts .track-section .box .mtn-form .information p {
    font-size: 18px;
  }
  .bts .track-section .box .mtn-form .main-body .button-wrapper .mtn-btn .btn-text {
    font-size: 16px;
  }
}
.bts .track-result-section {
  padding: 24px 0 120px 0;
}
.bts .track-result-section .box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: #F8F8F8;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.0705882353);
  padding: 48px 40px;
}
.bts .track-result-section .box .result {
  max-width: 420px;
  margin: 0;
}
.bts .track-result-section .box .result p {
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #000000;
  margin: 0;
}
.bts .track-result-section .box .result p span {
  font-weight: 700;
  font-size: 22px;
  color: #FFCB05;
}
@media screen and (max-width: 768px) {
  .bts .track-result-section {
    padding: 0 0 40px 0;
  }
  .bts .track-result-section .box {
    gap: 40px;
    padding: 24px 16px;
  }
  .bts .track-result-section .box .result {
    max-width: 320px;
    margin: 0;
  }
  .bts .track-result-section .box .result p {
    font-size: 18px;
  }
  .bts .track-result-section .box .result p span {
    font-weight: 400;
    font-size: 18px;
  }
}
.bts .pre-request-section {
  padding: 24px 0 70px 0;
}
.bts .pre-request-section .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  padding: 48px 40px;
  background: #F8F8F8;
}
.bts .pre-request-section .box .pre-information {
  margin: 0 0 24px 0;
}
.bts .pre-request-section .box .pre-information h1,
.bts .pre-request-section .box .pre-information h2,
.bts .pre-request-section .box .pre-information h3,
.bts .pre-request-section .box .pre-information h4,
.bts .pre-request-section .box .pre-information h5,
.bts .pre-request-section .box .pre-information h6 {
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  margin: 0 0 16px 0;
}
.bts .pre-request-section .box .pre-information p {
  font-weight: 300;
  font-size: 20px;
  color: #000000;
  margin: 0;
}
.bts .pre-request-section .box .inner-box {
  width: 100%;
  max-height: 230px;
  border-radius: 24px;
  background: #FFFFFF;
  overflow-y: auto;
  padding: 16px;
}
.bts .pre-request-section .box .inner-box .inner-pre-information p {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  margin: 0;
}
.bts .pre-request-section .box .inner-box .inner-pre-information ul {
  padding: 0;
  margin: 0;
}
.bts .pre-request-section .box .inner-box .inner-pre-information ul li {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  margin: 0;
}
.bts .pre-request-section .box .accept {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.bts .pre-request-section .box .accept input ~ .checkbox {
  margin: 0;
}
.bts .pre-request-section .box .accept input ~ .text {
  font-weight: 400;
  font-size: 16px;
  color: #404040;
}
.bts .pre-request-section .box .mtn-btn {
  width: 100%;
  max-width: 544px;
  height: 64px;
}
.bts .pre-request-section .box .mtn-btn .btn-text {
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .bts .pre-request-section {
    padding: 4px 0 64px 0;
  }
  .bts .pre-request-section .box {
    padding: 24px 12px;
  }
  .bts .pre-request-section .box .pre-information p {
    font-size: 16px;
  }
  .bts .pre-request-section .box .inner-box {
    max-height: 386px;
  }
  .bts .pre-request-section .box .inner-box .inner-pre-information p {
    font-size: 16px;
  }
  .bts .pre-request-section .box .inner-box .inner-pre-information ul li {
    font-size: 16px;
  }
  .bts .pre-request-section .box .accept input ~ .text {
    font-weight: 700;
    font-size: 14px;
  }
  .bts .pre-request-section .box .mtn-btn {
    height: 48px;
  }
  .bts .pre-request-section .box .mtn-btn .btn-text {
    font-size: 16px;
  }
}
.bts .start-request-section {
  padding: 4px 0 240px 0;
}
.bts .start-request-section .box {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 24px;
  padding: 48px 96px;
  background: #F8F8F8;
  overflow: hidden;
}
.bts .start-request-section .box .mtn-form .information {
  margin: 0 0 24px 0;
}
.bts .start-request-section .box .mtn-form .information h1,
.bts .start-request-section .box .mtn-form .information h2,
.bts .start-request-section .box .mtn-form .information h3,
.bts .start-request-section .box .mtn-form .information h4,
.bts .start-request-section .box .mtn-form .information h5,
.bts .start-request-section .box .mtn-form .information h6 {
  font-weight: 700;
  font-size: 22px;
  color: #202020;
  text-align: center;
  margin: 0 0 40px 0;
}
.bts .start-request-section .box .mtn-form .information p {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  margin: 0;
}
.bts .start-request-section .box .mtn-form .mtn-input-field {
  margin: 0;
}
.bts .start-request-section .box .mtn-form .mtn-input-field .mtn-field {
  margin: 0 0 24px 0;
}
.bts .start-request-section .box .mtn-form .button-wrapper {
  display: flex;
  justify-content: center;
  margin: 16px 0 0 0;
}
.bts .start-request-section .box .mtn-form .button-wrapper .mtn-btn {
  width: 100%;
  max-width: 573px;
  height: 64px;
}
.bts .start-request-section .box .mtn-form .button-wrapper .mtn-btn .btn-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #202020;
}
.bts .start-request-section .box .message {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(178, 178, 178, 0.3019607843);
  backdrop-filter: blur(10px);
  padding: 24px;
  z-index: 999;
}
.bts .start-request-section .box .message .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 918px;
  max-width: 100%;
  height: 98px;
  border-radius: 24px;
  padding: 29px 32px;
  background: #FFF2E9;
  border: 1px solid #FF7C23;
}
.bts .start-request-section .box .message .content .response {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bts .start-request-section .box .message .content .response svg {
  width: 32px;
  height: auto;
}
.bts .start-request-section .box .message .content .response span {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #202020;
}
.bts .start-request-section .box .message .content .mtn-btn {
  width: max-content;
  max-width: 100%;
  height: 40px;
  padding: 0 24px;
}
.bts .start-request-section .box .message .content .mtn-btn .btn-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #202020;
}
@media screen and (max-width: 768px) {
  .bts .start-request-section {
    padding: 0 0 16px 0;
    margin: -4px 0 0 0;
  }
  .bts .start-request-section .box {
    padding: 24px 16px;
  }
  .bts .start-request-section .box .mtn-form .information p {
    font-size: 16px;
  }
  .bts .start-request-section .box .mtn-form .mtn-input-field {
    margin: 0;
  }
  .bts .start-request-section .box .mtn-form .mtn-input-field .mtn-field {
    margin: 0 0 16px 0;
  }
  .bts .start-request-section .box .mtn-form .button-wrapper {
    margin: 24px 0 0 0;
  }
  .bts .start-request-section .box .mtn-form .button-wrapper .mtn-btn {
    height: 48px;
  }
  .bts .start-request-section .box .mtn-form .button-wrapper .mtn-btn .btn-text {
    font-size: 16px;
    line-height: 26px;
  }
  .bts .start-request-section .box .message {
    padding: 12px;
  }
  .bts .start-request-section .box .message .content {
    flex-direction: column;
    justify-content: center;
    width: 304px;
    height: 150px;
    border-radius: 16px;
    padding: 18px 12px;
  }
  .bts .start-request-section .box .message .content .response {
    align-items: flex-start;
  }
  .bts .start-request-section .box .message .content .response svg {
    min-width: 32px;
  }
  .bts .start-request-section .box .message .content .response span {
    font-size: 14px;
    line-height: 22px;
  }
  .bts .start-request-section .box .message .content .mtn-btn {
    height: 32px;
    padding: 0 20px;
    margin: 16px 0 0 0;
  }
  .bts .start-request-section .box .message .content .mtn-btn .btn-text {
    font-size: 12px;
    line-height: 20px;
  }
}
.bts .request-section {
  overflow: revert;
  padding: 24px 0 120px 0;
}
.bts .request-section .main-information {
  margin: 0 0 64px 0;
}
.bts .request-section .main-information h2 {
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  color: #202020;
  margin: 0;
}
.bts .request-section .box {
  width: 100%;
  height: auto;
  border-radius: 24px;
  padding: 48px 96px;
  background: #F8F8F8;
}
.bts .request-section .box .mtn-form .step-one-information {
  margin: 0 0 24px 0;
}
.bts .request-section .box .mtn-form .step-one-information h1,
.bts .request-section .box .mtn-form .step-one-information h2,
.bts .request-section .box .mtn-form .step-one-information h3,
.bts .request-section .box .mtn-form .step-one-information h4,
.bts .request-section .box .mtn-form .step-one-information h5,
.bts .request-section .box .mtn-form .step-one-information h6 {
  font-weight: 700;
  font-size: 22px;
  color: #202020;
  text-align: center;
  margin: 0 0 40px 0;
}
.bts .request-section .box .mtn-form .step-one-information p {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  margin: 0;
}
.bts .request-section .box .mtn-form .step-two-information {
  margin: 0 0 24px 0;
}
.bts .request-section .box .mtn-form .step-two-information h1,
.bts .request-section .box .mtn-form .step-two-information h2,
.bts .request-section .box .mtn-form .step-two-information h3,
.bts .request-section .box .mtn-form .step-two-information h4,
.bts .request-section .box .mtn-form .step-two-information h5,
.bts .request-section .box .mtn-form .step-two-information h6 {
  font-weight: 700;
  font-size: 22px;
  color: #202020;
  text-align: start;
  margin: 0 0 32px 0;
}
.bts .request-section .box .mtn-form .step-two-information p {
  font-weight: 400;
  font-size: 24px;
  color: #6A6A6A;
  margin: 0;
}
.bts .request-section .box .mtn-form .step-three-information {
  margin: 80px 0 40px 0;
}
.bts .request-section .box .mtn-form .step-three-information h1,
.bts .request-section .box .mtn-form .step-three-information h2,
.bts .request-section .box .mtn-form .step-three-information h3,
.bts .request-section .box .mtn-form .step-three-information h4,
.bts .request-section .box .mtn-form .step-three-information h5,
.bts .request-section .box .mtn-form .step-three-information h6 {
  font-weight: 700;
  font-size: 22px;
  color: #202020;
  text-align: center;
  margin: 0;
}
.bts .request-section .box .mtn-form .map {
  position: relative;
  width: 100%;
  height: 428px;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 0 56px 0;
}
.bts .request-section .box .mtn-form .map .leaflet-control-zoom {
  display: none;
}
.bts .request-section .box .mtn-form .map .map-search-wrapper {
  width: 100%;
  height: 100%;
}
.bts .request-section .box .mtn-form .map .map-search-wrapper .map-search {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  z-index: 999;
  margin: 0;
}
.bts .request-section .box .mtn-form .map .map-search-wrapper .map-search .mtn-field {
  font-family: "MTNIrancell", tahoma, serif;
  margin: 0;
}
.bts .request-section .box .mtn-form .map .map-search-wrapper .map-search .mtn-field::placeholder {
  font-family: "MTNIrancell", tahoma, serif;
}
.bts .request-section .box .mtn-form .map + .validation {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Crimson);
  margin: -48px 0 48px 0;
}
.bts .request-section .box .mtn-form .mtn-input-field {
  margin: 0;
}
.bts .request-section .box .mtn-form .mtn-input-field .mtn-field {
  margin: 0 0 24px 0;
}
.bts .request-section .box .mtn-form .mtn-input-field .label {
  top: -24px;
  margin: 0 0 4px 0;
}
.bts .request-section .box .mtn-form .mtn-select-field .label {
  top: -24px;
  margin: 0 0 4px 0;
}
.bts .request-section .box .mtn-form .choose {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E8E8E8;
  padding: 16px 0;
  margin: 32px 0 0 0;
}
.bts .request-section .box .mtn-form .choose p {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  margin: 0;
}
.bts .request-section .box .mtn-form .choose .mtn-radio-field {
  min-width: 260px;
}
.bts .request-section .box .mtn-form .choose .mtn-select-field {
  min-width: 340px;
  margin: 0;
}
.bts .request-section .box .mtn-form .choose .mtn-select-field .custom-mtn-select-label {
  margin: 0;
}
.bts .request-section .box .mtn-form .choose ~ .sub {
  display: none;
  padding: 0 80px;
}
.bts .request-section .box .mtn-form .choose ~ .sub .choose {
  border: none;
}
.bts .request-section .box .mtn-form .button-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0 0 0;
}
.bts .request-section .box .mtn-form .button-wrapper .mtn-btn {
  width: 100%;
  max-width: 573px;
  height: 64px;
}
.bts .request-section .box .mtn-form .button-wrapper .mtn-btn .btn-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #202020;
}
@media screen and (max-width: 768px) {
  .bts .request-section {
    padding: 12px 0 64px 0;
  }
  .bts .request-section .main-information {
    margin: 0 0 32px 0;
  }
  .bts .request-section .main-information h2 {
    font-size: 18px;
  }
  .bts .request-section .box {
    padding: 24px 16px;
  }
  .bts .request-section .box .mtn-form .step-one-information {
    margin: 0 0 16px 0;
  }
  .bts .request-section .box .mtn-form .step-one-information h1,
  .bts .request-section .box .mtn-form .step-one-information h2,
  .bts .request-section .box .mtn-form .step-one-information h3,
  .bts .request-section .box .mtn-form .step-one-information h4,
  .bts .request-section .box .mtn-form .step-one-information h5,
  .bts .request-section .box .mtn-form .step-one-information h6 {
    margin: 0 0 24px 0;
  }
  .bts .request-section .box .mtn-form .step-one-information p {
    font-size: 16px;
  }
  .bts .request-section .box .mtn-form .step-two-information {
    margin: 0 0 16px 0;
  }
  .bts .request-section .box .mtn-form .step-two-information h1,
  .bts .request-section .box .mtn-form .step-two-information h2,
  .bts .request-section .box .mtn-form .step-two-information h3,
  .bts .request-section .box .mtn-form .step-two-information h4,
  .bts .request-section .box .mtn-form .step-two-information h5,
  .bts .request-section .box .mtn-form .step-two-information h6 {
    font-size: 18px;
    text-align: center;
    margin: 0 0 24px 0;
  }
  .bts .request-section .box .mtn-form .step-two-information p {
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin: 0;
  }
  .bts .request-section .box .mtn-form .step-three-information {
    margin: 48px 0 40px 0;
  }
  .bts .request-section .box .mtn-form .map {
    margin: 0 0 32px 0;
  }
  .bts .request-section .box .mtn-form .map .map-search-wrapper .map-search {
    top: 28px;
    width: calc(100% - 34px);
  }
  .bts .request-section .box .mtn-form .map .map-search-wrapper .map-search .mtn-field {
    font-family: "MTNIrancell", tahoma, serif;
    margin: 0;
  }
  .bts .request-section .box .mtn-form .map .map-search-wrapper .map-search .mtn-field::placeholder {
    font-family: "MTNIrancell", tahoma, serif;
  }
  .bts .request-section .box .mtn-form .mtn-input-field {
    margin: 0;
  }
  .bts .request-section .box .mtn-form .mtn-input-field .mtn-field {
    margin: 0 0 24px 0;
  }
  .bts .request-section .box .mtn-form .mtn-select-field {
    margin: 0 0 24px 0;
  }
  .bts .request-section .box .mtn-form .mtn-select-field .custom-mtn-select-label {
    margin: 24px 0 0 0;
  }
  .bts .request-section .box .mtn-form .choose {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .bts .request-section .box .mtn-form .choose p {
    font-weight: 400;
    font-size: 18px;
    margin: 0 0 16px 0;
  }
  .bts .request-section .box .mtn-form .choose .mtn-radio-field {
    min-width: revert;
    width: 100%;
  }
  .bts .request-section .box .mtn-form .choose .mtn-select-field {
    min-width: revert;
    width: 100%;
  }
  .bts .request-section .box .mtn-form .choose ~ .sub {
    padding: 0;
  }
  .bts .request-section .box .mtn-form .button-wrapper .mtn-btn {
    width: 100%;
    height: 56px;
  }
  .bts .request-section .box .mtn-form .button-wrapper .mtn-btn .btn-text {
    font-size: 18px;
    line-height: 28px;
  }
}
.bts .accept-request-section {
  overflow: revert;
  padding: 24px 0 120px 0;
}
.bts .accept-request-section .main-information {
  margin: 0 0 64px 0;
}
.bts .accept-request-section .main-information h2 {
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  color: #202020;
  margin: 0;
}
.bts .accept-request-section .box {
  width: 100%;
  height: auto;
  border-radius: 24px;
  padding: 48px 96px;
  background: #F8F8F8;
}
.bts .accept-request-section .box .mtn-form .step-one-information {
  margin: 0 0 24px 0;
}
.bts .accept-request-section .box .mtn-form .step-one-information h1,
.bts .accept-request-section .box .mtn-form .step-one-information h2,
.bts .accept-request-section .box .mtn-form .step-one-information h3,
.bts .accept-request-section .box .mtn-form .step-one-information h4,
.bts .accept-request-section .box .mtn-form .step-one-information h5,
.bts .accept-request-section .box .mtn-form .step-one-information h6 {
  font-weight: 700;
  font-size: 22px;
  color: #202020;
  text-align: start;
  margin: 0;
}
.bts .accept-request-section .box .mtn-form .step-two-information {
  margin: 24px 0 32px 0;
}
.bts .accept-request-section .box .mtn-form .step-two-information h1,
.bts .accept-request-section .box .mtn-form .step-two-information h2,
.bts .accept-request-section .box .mtn-form .step-two-information h3,
.bts .accept-request-section .box .mtn-form .step-two-information h4,
.bts .accept-request-section .box .mtn-form .step-two-information h5,
.bts .accept-request-section .box .mtn-form .step-two-information h6 {
  font-weight: 700;
  font-size: 22px;
  color: #202020;
  text-align: start;
  margin: 0;
}
.bts .accept-request-section .box .mtn-form .step-three-information {
  margin: 48px 0;
}
.bts .accept-request-section .box .mtn-form .step-three-information h1,
.bts .accept-request-section .box .mtn-form .step-three-information h2,
.bts .accept-request-section .box .mtn-form .step-three-information h3,
.bts .accept-request-section .box .mtn-form .step-three-information h4,
.bts .accept-request-section .box .mtn-form .step-three-information h5,
.bts .accept-request-section .box .mtn-form .step-three-information h6 {
  font-weight: 700;
  font-size: 22px;
  color: #202020;
  text-align: center;
  margin: 0;
}
.bts .accept-request-section .box .mtn-form .mtn-input-field {
  margin: 0;
}
.bts .accept-request-section .box .mtn-form .mtn-input-field .mtn-field {
  margin: 0 0 24px 0;
}
.bts .accept-request-section .box .mtn-form .mtn-input-field .label {
  top: -24px;
  margin: 0 0 4px 0;
}
.bts .accept-request-section .box .mtn-form .mtn-input-field:not(.captcha-request) svg {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 999;
}
.bts .accept-request-section .box .mtn-form .mtn-input-field.captcha-request {
  margin: 32px 0 0 0;
}
.bts .accept-request-section .box .mtn-form .mtn-select-field .custom-mtn-select {
  width: calc(100% - 0px);
}
.bts .accept-request-section .box .mtn-form .mtn-select-field .label {
  top: -24px;
  margin: 0 0 4px 0;
}
.bts .accept-request-section .box .mtn-form .mtn-select-field svg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 999;
}
.bts .accept-request-section .box .mtn-form .mtn-select-field .addres-edit-icon {
  left: -28px;
}
.bts .accept-request-section .box .mtn-form .mtn-textarea-field svg {
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 999;
}
.bts .accept-request-section .box .mtn-form .mtn-radio-field {
  margin: 0 0 0 40px;
}
.bts .accept-request-section .box .mtn-form .mtn-radio-field svg {
  position: absolute;
  top: 50%;
  left: -40px;
  cursor: pointer;
  z-index: 999;
}
.bts .accept-request-section .box .mtn-form .choose {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E8E8E8;
  padding: 16px 0;
  margin: 32px 0 0 0;
}
.bts .accept-request-section .box .mtn-form .choose p {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  margin: 0;
}
.bts .accept-request-section .box .mtn-form .choose .mtn-radio-field {
  min-width: 260px;
}
.bts .accept-request-section .box .mtn-form .choose .mtn-select-field {
  min-width: 340px;
  margin: 0;
}
.bts .accept-request-section .box .mtn-form .choose .mtn-select-field .custom-mtn-select {
  width: calc(100% - 72px);
}
.bts .accept-request-section .box .mtn-form .choose .mtn-select-field .custom-mtn-select-label {
  margin: 0;
}
.bts .accept-request-section .box .mtn-form .choose ~ .sub {
  display: none;
  padding: 0 80px;
}
.bts .accept-request-section .box .mtn-form .choose ~ .sub .choose {
  border: none;
}
.bts .accept-request-section .box .mtn-form .button-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0 0 0;
}
.bts .accept-request-section .box .mtn-form .button-wrapper .mtn-btn {
  width: 100%;
  max-width: 573px;
  height: 64px;
}
.bts .accept-request-section .box .mtn-form .button-wrapper .mtn-btn .btn-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #202020;
}
@media screen and (max-width: 768px) {
  .bts .accept-request-section {
    padding: 12px 0 64px 0;
  }
  .bts .accept-request-section .main-information {
    margin: 0 0 48px 0;
  }
  .bts .accept-request-section .main-information h2 {
    font-size: 18px;
  }
  .bts .accept-request-section .box {
    padding: 24px 16px;
  }
  .bts .accept-request-section .box .mtn-form .step-one-information {
    margin: 0 0 40px 0;
  }
  .bts .accept-request-section .box .mtn-form .step-one-information h1,
  .bts .accept-request-section .box .mtn-form .step-one-information h2,
  .bts .accept-request-section .box .mtn-form .step-one-information h3,
  .bts .accept-request-section .box .mtn-form .step-one-information h4,
  .bts .accept-request-section .box .mtn-form .step-one-information h5,
  .bts .accept-request-section .box .mtn-form .step-one-information h6 {
    font-size: 18px;
    text-align: center;
    margin: 0;
  }
  .bts .accept-request-section .box .mtn-form .step-two-information {
    margin: 24px 0 20px 0;
  }
  .bts .accept-request-section .box .mtn-form .step-two-information h1,
  .bts .accept-request-section .box .mtn-form .step-two-information h2,
  .bts .accept-request-section .box .mtn-form .step-two-information h3,
  .bts .accept-request-section .box .mtn-form .step-two-information h4,
  .bts .accept-request-section .box .mtn-form .step-two-information h5,
  .bts .accept-request-section .box .mtn-form .step-two-information h6 {
    font-size: 18px;
    text-align: center;
    margin: 0;
  }
  .bts .accept-request-section .box .mtn-form .step-three-information {
    margin: 48px 0 16px 0;
  }
  .bts .accept-request-section .box .mtn-form .step-three-information h1,
  .bts .accept-request-section .box .mtn-form .step-three-information h2,
  .bts .accept-request-section .box .mtn-form .step-three-information h3,
  .bts .accept-request-section .box .mtn-form .step-three-information h4,
  .bts .accept-request-section .box .mtn-form .step-three-information h5,
  .bts .accept-request-section .box .mtn-form .step-three-information h6 {
    font-size: 18px;
    text-align: center;
    margin: 0;
  }
  .bts .accept-request-section .box .mtn-form .mtn-input-field {
    margin: 0;
  }
  .bts .accept-request-section .box .mtn-form .mtn-input-field .mtn-field {
    margin: 0 0 24px 0;
  }
  .bts .accept-request-section .box .mtn-form .mtn-select-field {
    margin: 0 0 24px 0;
  }
  .bts .accept-request-section .box .mtn-form .mtn-select-field .custom-mtn-select-label {
    margin: 24px 0 0 0;
  }
  .bts .accept-request-section .box .mtn-form .choose {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .bts .accept-request-section .box .mtn-form .choose p {
    font-weight: 400;
    font-size: 16px;
    margin: 0 0 16px 0;
  }
  .bts .accept-request-section .box .mtn-form .choose .mtn-radio-field {
    min-width: revert;
    width: calc(100% - 40px);
  }
  .bts .accept-request-section .box .mtn-form .choose .mtn-select-field {
    min-width: revert;
    width: 100%;
  }
  .bts .accept-request-section .box .mtn-form .choose ~ .sub {
    padding: 0;
  }
  .bts .accept-request-section .box .mtn-form .button-wrapper .mtn-btn {
    width: 100%;
    height: 56px;
  }
  .bts .accept-request-section .box .mtn-form .button-wrapper .mtn-btn .btn-text {
    font-size: 18px;
    line-height: 28px;
  }
}
.bts .request-result-section {
  padding: 24px 0 120px 0;
}
.bts .request-result-section .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  border-radius: 24px;
  padding: 48px 96px;
  background: #F8F8F8;
}
.bts .request-result-section .box .message {
  margin: 48px 0 40px 0;
}
.bts .request-result-section .box .message p {
  font-weight: 400;
  font-size: 20px;
  color: #202020;
  text-align: center;
  margin: 0;
}
.bts .request-result-section .box .mtn-btn {
  justify-content: center;
  width: 100%;
  max-width: 544px;
  height: 64px;
}
.bts .request-result-section .box .mtn-btn .btn-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #202020;
}
.bts .request-result-section .box .mtn-btn .btn-icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .bts .request-result-section {
    padding: 0 0 64px 0;
    margin: -4px 0 0 0;
  }
  .bts .request-result-section .box {
    padding: 24px 16px;
  }
  .bts .request-result-section .box .message {
    margin: 40px 0 24px 0;
  }
  .bts .request-result-section .box .message p {
    font-size: 18px;
  }
  .bts .request-result-section .box .mtn-btn {
    flex-direction: row-reverse;
    gap: 12px;
    width: 100%;
    height: 48px;
  }
  .bts .request-result-section .box .mtn-btn .btn-text {
    font-size: 16px;
    line-height: 28px;
  }
  .bts .request-result-section .box .mtn-btn .btn-icon {
    display: block;
    width: 22px;
    height: 22px;
  }
  .bts .request-result-section .box .mtn-btn .btn-icon svg path {
    fill: none;
  }
}