* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f6f6f6;
}

body::-webkit-scrollbar {
  width: 0.4em;
  height: 0;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px #000000;
  background: rgba(255, 255, 255, 0.7019607843);
}

body::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 2px;
}

.container {
  max-width: 425px;
  margin: 0 auto;
  padding: 12.5px 25px;
  display: flex;
  flex-direction: column;
  position: relative;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

input, select {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.user_info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.user_info p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
}

.location {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 35px;
  width: 100%;
  position: relative;
}
.location_reverse {
  flex-direction: column-reverse;
}
.location::before {
  content: "";
  position: absolute;
  height: 50px;
  width: 2px;
  border-left: 2px dashed rgb(218, 218, 218);
  top: 45px;
  left: 8px;
}
.location_item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 0;
}
.location label {
  color: rgb(21, 21, 19);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 5px;
}
.location label img {
  width: 16px;
}
.location select {
  color: rgb(21, 21, 19);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
  margin-left: 32px;
  border-width: 0 0 1px 0;
  border-color: #dadada;
  background: none;
  width: 70%;
  padding: 0 10px 10px 0px;
}

.location_change {
  position: absolute;
  top: calc(50% - 24px);
  right: 0;
  border-radius: 50%;
  background: #ededed;
  width: 56px;
  height: 48px;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section_title {
  color: rgb(21, 21, 19);
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: left;
}

.inp_box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  color: rgb(21, 21, 19);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
  position: relative;
}
.inp_box img {
  width: 16px;
}
.inp_box input {
  border-width: 0 0 1px 0;
  background: none;
  border-color: #dadada;
  width: 100%;
  padding: 0 10px 10px 5px;
  color: rgb(21, 21, 19);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
}
.inp_box input::-moz-placeholder {
  color: rgb(21, 21, 19);
}
.inp_box input::placeholder {
  color: rgb(21, 21, 19);
}

.switch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #dadada;
  padding-bottom: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.costum_toggle {
  position: relative;
  display: inline-block;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
  width: 34px;
  height: 18px;
}

.costum_toggle:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

#check:checked + .costum_toggle {
  background-color: #ffdd00;
}

#check:focus + .costum_toggle {
  box-shadow: 0 0 1px #ffdd00;
}

#check:checked + .costum_toggle:before {
  transform: translateX(16px);
}

.checkbox_group {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}
.checkbox_group .checkboxs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-top: 15px;
}
.checkbox_group .checkboxs input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.checkbox_group .checkboxs input[type=checkbox]:checked {
  outline: 1px solid rgb(128, 128, 128);
  border-radius: 5px;
  outline-offset: 2px;
}
.checkbox_group .checkboxs label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  z-index: 1;
}
.submit_btn button {
  border-radius: 16px;
  background: rgb(255, 221, 0);
  height: 56px;
  width: 90%;
  max-width: 425px;
  color: rgb(255, 255, 255);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: left;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  position: fixed;
  bottom: 0;
}

.slider {
  margin-top: 35px;
}

.mySwiper {
  padding: 10px 0;
}

.swiper-slide .car_img {
  position: absolute;
  top: -30px;
  left: 0;
  height: 60px;
  width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.swiper-slide .slider_text1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.swiper-slide .slider_text1 span {
  color: rgb(21, 21, 19);
  font-size: 8.68px;
  font-weight: 500;
  line-height: 10px;
  letter-spacing: 0%;
  text-align: left;
}
.swiper-slide .slider_text2 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.swiper-slide .slider_text2 span {
  color: rgb(146, 146, 146);
  font-size: 8.68px;
  font-weight: 500;
  line-height: 10px;
  letter-spacing: 0%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1px;
}

.form_radio_group-item input[type=radio] {
  display: none;
}

.form_radio_group-item label {
  display: inline-block;
  cursor: pointer;
  min-width: 140px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 30px;
  padding-top: 35px;
  border-radius: 8.68px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  background: rgb(255, 255, 255);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form_radio_group-item label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 90px;
  background: #ccc;
  border-radius: 8.68px 0px 8.68px 0px;
  background: rgb(237, 237, 237);
  transition: 0.1s linear;
}

/* Checked */
.swiper-slide input[type=radio]:checked + label::before {
  background: rgb(255, 221, 0);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition-duration: 1s;
  transition-delay: 1s;
  z-index: 101;
  padding: 5px;
}

.modal_content {
  background: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 35px 25px;
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.3s linear 0s;
  position: relative;
  max-width: 380px;
  width: 100%;
}

.modal__back {
  width: 0;
  height: 6px;
  background: rgba(0, 0, 0, 0.5);
  transition: height 0.3s linear 0s, width 0.3s linear 0.3s;
  cursor: pointer;
  position: absolute;
}

.modal__open {
  width: 100vw;
  height: 100vh;
  transition-duration: 0s;
  transition-delay: 0s;
}

.modal__open .modal__back {
  width: 100%;
  height: 100%;
  transition: width 0.3s linear 0s, height 0.3s linear 0.3s;
}

.modal__open .modal_content {
  transform: scale(1);
  transition: transform 0.3s linear 0.3s;
}

.first_content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.modal_title {
  color: rgb(36, 36, 36);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 40px;
}

.modal_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 40px;
}

.modal_grid_div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal_grid_div:first-child {
  border-right: 2px dashed rgb(218, 218, 218);
}
.modal_grid_div input {
  color: rgb(21, 21, 19);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  padding-left: 30px;
}
.modal_grid_div span {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.modal_grid_div img {
  width: 15px;
  margin-right: 15px;
}

.modal_grid_text {
  color: rgb(146, 146, 146);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: left;
}

.modal_phone {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.modal_phone .phone {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(218, 218, 218);
  width: 100%;
}
.modal_phone .phone span {
  margin-right: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: left;
  color: #000000;
}
.modal_phone img {
  width: 16px;
  margin-right: 15px;
}
.modal_phone input {
  border: none;
  background: none;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: left;
  color: #000000;
}

.modal_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal_btn button {
  border-radius: 10px;
  background: rgb(255, 221, 0);
  color: rgb(255, 255, 255);
  font-size: 13.93px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: left;
  width: 200px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.modal_btn button:disabled {
  background: #dadada;
  cursor: not-allowed;
}

.second_content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(425px);
  padding: 35px 25px;
}
.second_content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 30px;
}
.second_content .input_group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.second_content .input_group input {
  width: 44px;
  height: 60px;
  border-radius: 12px;
  background: rgba(217, 217, 217, 0.5);
  border: none;
  margin: 0 10px;
  color: rgb(0, 0, 0);
  font-size: 13.93px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
}
.second_content .resendCode {
  color: rgb(0, 0, 205);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 30px;
  cursor: pointer;
}
.second_content #resendCode_load {
  color: #dadada;
}

#resendCode {
  display: none;
}

.modal_second_form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal_second_form .back_first {
  color: rgb(0, 39, 243);
  font-weight: 600;
  cursor: pointer;
}

.modal__second__open .first_content {
  transform: translateX(-100%);
  opacity: 0;
}
.modal__second__open .second_content {
  transform: translateX(0px);
  opacity: 1;
}

.swal2-container .swal2-confirm {
  border-radius: 16px !important;
}