@charset "UTF-8";
.start_marker,
.finish_marker_map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -170%);
  z-index: 5000;
}
.start_marker .content,
.finish_marker_map .content {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
}
.start_marker .content .img_container,
.finish_marker_map .content .img_container {
  width: clamp(20px, 8vw, 100px);
  height: clamp(20px, 8vw, 100px);
  position: relative;
  background-color: #ffc60a;
  border-radius: 5px;
}
.start_marker .content .img_container img,
.finish_marker_map .content .img_container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 100%;
}
.start_marker .content .start_text_content,
.finish_marker_map .content .start_text_content {
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease; /* Плавное появление */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease; /* Плавное появление */
  gap: 5px;
}
.start_marker .content .start_text_content p,
.finish_marker_map .content .start_text_content p {
  white-space: nowrap;
  font-family: "Nunito";
  color: rgb(31, 31, 31);
}
.start_marker .content .start_text_content .text_price,
.finish_marker_map .content .start_text_content .text_price {
  font-size: clamp(10px, 3.3vw, 22px);
  font-weight: 600;
}
.start_marker .content .start_text_content .start_price,
.finish_marker_map .content .start_text_content .start_price {
  font-size: clamp(10px, 3.5vw, 22px);
  font-weight: 700;
}
.start_marker .content .active,
.finish_marker_map .content .active {
  padding: 0 5px 0px 8px;
  visibility: visible;
  width: auto; /* Или конкретное значение, например width: 100%; */
  height: auto; /* Или нужное значение */
  overflow: visible;
}
.start_marker .line,
.finish_marker_map .line {
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  left: 50%;
  width: 4px;
  height: 70%;
  background-color: #fff;
  border-radius: 0 0 2px 2px;
}

.my_order_address {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: aqua;
  top: 0;
  left: 0;
  z-index: 600;
}
.my_order_address .maps {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
}
.my_order_address .maps .marker {
  width: clamp(35px, 8vw, 100px);
  height: clamp(35px, 8vw, 100px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 355;
}
.my_order_address .maps .marker .marker_animate::after {
  animation: animMarker 0.4s ease-in-out infinite alternate;
}
.my_order_address .maps .marker .location_marker {
  width: 100%;
  height: 100%;
  display: block;
  margin: 20px auto;
  box-sizing: border-box;
  position: relative;
  top: -150%;
  left: 0%;
  transition: all 0.3s ease 0s;
}
.my_order_address .maps .marker .location_marker::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  border-radius: 50% 50% 0;
  border: 12px solid red;
  transform: rotate(45deg) translate(0, 0);
  box-sizing: border-box;
}
.my_order_address .maps .marker .location_marker::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 150%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.842);
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
.my_order_address .destination_container {
  position: absolute;
  bottom: 0%;
  background-color: #fff;
  width: 100%;
  height: 30%;
  border-radius: 30px 30px 0 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding: 15px 4% 25px 4%;
}
.my_order_address .destination_container h2 {
  font-family: "Raleway";
  font-size: clamp(10px, 4.8vw, 22px);
  font-weight: 700;
  color: rgb(12, 12, 12);
  padding: 15px 0px;
}
.my_order_address .destination_container .line {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #a1a1a1;
}
.my_order_address .destination_container .text_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 0px;
  gap: 0px;
}
.my_order_address .destination_container .text_container .img_container {
  width: clamp(20px, 7.5vw, 100px);
  height: clamp(20px, 7.5vw, 100px);
  position: relative;
}
.my_order_address .destination_container .text_container .img_container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  -o-object-fit: cover;
     object-fit: cover;
}
.my_order_address .destination_container .text_container .img_container .right_arrow {
  width: 40%;
}
.my_order_address .destination_container .text_container .destination_text {
  font-family: "Nunito";
  font-size: clamp(10px, 3.9vw, 22px);
  font-weight: 600;
  color: rgb(31, 31, 31);
  margin-left: 10px;
}
.my_order_address .destination_container .ok_destination {
  width: 100%;
  margin: 0 auto;
  height: clamp(50px, 11vw, 120px);
  font-family: "Nunito";
  font-size: clamp(10px, 3.9vw, 22px);
  font-weight: 700;
  color: rgb(31, 31, 31);
  background-color: #41c527;
  border-radius: 15px;
}

.search_address_container {
  display: none;
  flex-direction: column;
  position: absolute;
  width: 100%;
  gap: 20px;
  z-index: 508;
  border-radius: 0 0 10px 10px;
  background: #f3f3f3;
  padding: 15px 10px;
}
.search_address_container .point_one,
.search_address_container .street-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
}
.search_address_container .point_one .location_icon,
.search_address_container .street-item .location_icon {
  width: clamp(20px, 10vw, 80px);
  height: clamp(20px, 10vw, 80px);
  position: relative;
  border: 1px solid #a1a1a1;
  border-radius: 10px;
}
.search_address_container .point_one .location_icon img,
.search_address_container .street-item .location_icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 80%;
}
.search_address_container .point_one .text,
.search_address_container .street-item .text {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.search_address_container .point_one .text h3,
.search_address_container .street-item .text h3 {
  font-family: "Nunito";
  font-size: clamp(10px, 3.9vw, 22px);
  font-weight: 700;
  color: rgb(31, 31, 31);
}
.search_address_container .point_one .text p,
.search_address_container .street-item .text p {
  font-family: "Arial";
  font-size: clamp(10px, 3.5vw, 22px);
  font-weight: 400;
  color: rgb(65, 65, 65);
}
.search_address_container .point_one .time_to_point,
.search_address_container .street-item .time_to_point {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "Arial";
  font-size: clamp(10px, 3.2vw, 22px);
  font-weight: 400;
  color: rgb(65, 65, 65);
}
.search_address_container .street-item .location_icon img {
  width: 60%;
}/*# sourceMappingURL=my_orders_address.css.map */