/* //////////////////////////////////////////// */
/* //////////////////////////////////////////// */
/* DETAILS LOGGED IN */
/* //////////////////////////////////////////// */
/* //////////////////////////////////////////// */

.details_header_title_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.details_header_title_logged_in {
  margin-bottom: 0rem;
}

.details_header_fav_btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details_header_fav_btn_svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: var(--blue);
}

.details_header_grid_bid_user_offer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
}

.details_header_grid_bid_user_offer_none {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--bright-orange);
  font-size: 1.8rem;
}

.details_header_grid_bid_user_offer_none_svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--bright-orange);
}

.details_header_grid_bid_user_offer_price {
  font-size: 2.8rem;
}

.details_header_cta_btn_logged_in:link,
.details_header_cta_btn_logged_in:visited {
  margin-bottom: 1.1rem;
}

.details_header_grid_bid_terms {
  width: 100%;
  border: 0.1rem solid var(--grey-borders);
  padding: 2rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
}

.details_header_grid_bid_terms_bold {
  font-weight: 700;
}

.details_header_grid_bid_terms_red {
  color: var(--red);
}

.details_header_grid_bid_terms_anchor:link,
.details_header_grid_bid_terms_anchor:visited {
  color: var(--blue);
}

.details_header_grid_bid_info_logged_in {
  margin-bottom: 1.3rem;
}

.details_header_grid_bid_details_description {
  background-color: #e1edff;
  padding: 1.1rem 1.3rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  margin-top: 1.3rem;
}

.details_header_grid_bid_details_description_title {
  font-size: 1.4rem;
  color: #a6a6a6;
  margin-bottom: 1rem;
}

.details_header_grid_bid_details_description_text {
  overflow-y: auto;
  max-height: 25rem;
  scroll-behavior: smooth;
}

.details_header_grid_bid_details_description_text::-webkit-scrollbar {
  width: 8px;
}

.details_header_grid_bid_details_description_text::-webkit-scrollbar-track {
  background: transparent;
}

.details_header_grid_bid_details_description_text::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.details_header_grid_bid_details_description_text::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox */
.details_header_grid_bid_details_description_text {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.details_header_grid_bid_details_docs {
  border: 0.1rem solid var(--grey-borders);
  border-radius: 0.5rem;
}

.details_header_grid_bid_details_docs_title_wrapper {
  padding: 1.6rem 1.5rem;
  border-bottom: 0.1rem solid var(--grey-borders);
}

.details_header_grid_bid_details_docs_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 1.8rem 1.5rem;
  list-style: none;
}

.details_header_grid_bid_details_docs_list_seller {
  padding: 0rem;
}

.details_header_grid_bid_details_docs_list_element {
  width: 12rem;
  height: 9rem;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
}

.details_header_docs_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details_header_docs_element_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  background-color: transparent;
  transition: all 0.2s;
}

.details_header_docs_element_overlay_btn {
  width: 1.7rem;
  height: 1.7rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--blue);
}

.details_header_docs_element_overlay_btn_svg {
  width: 0.7rem;
  height: 0.7rem;
  fill: var(--white);
}

.details_header_grid_bid_details_docs_list_element:hover
  .details_header_docs_element_overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.details_car_other_info {
  width: 100%;
  padding: 0rem 6rem;
  margin-bottom: 3.7rem;
  margin-top: 3.7rem;
}

.details_car_other_info_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.8rem;
  margin-bottom: 1rem;
  row-gap: 1.5rem;
}

.details_car_other_info_grid_box {
  border: 0.1rem solid var(--grey-borders);
  border-radius: 0.5rem;
}

.details_car_other_info_grid_box_obs {
  border: 0.1rem solid var(--grey-borders);
  border-radius: 0.5rem;
  /* border: 1px solid red; */
}

.details_car_other_info_grid_box_title_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.3rem;
  border-bottom: 0.1rem solid var(--grey-borders);
}

.details_car_other_info_grid_box_title {
  font-size: 1.4rem;
  color: var(--grey-borders);
}

.details_car_other_info_grid_box_title_obs {
  font-size: 1.4rem;
  color: var(--grey-borders);
}

.details_car_other_info_grid_box_title_wrapper_obs {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0rem 0.5rem 0rem 0rem;
  padding: 1rem 1.3rem;
  border-bottom: 0.1rem solid var(--grey-borders);
  /* background-color: #f0db24; */
}

.details_car_other_info_grid_box_title_wrapper_location {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.details_car_other_info_grid_box_title_wrapper_location_text {
  font-size: 1.4rem;
  color: var(--black);
}

.details_car_other_info_grid_box_body_wrapper {
  padding: 1.9rem 1.3rem;
  font-size: 1.6rem;
  min-height: 27rem;
}

.details_car_other_info_grid_box_body_wrapper_seller {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.details_car_other_info_lists {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.details_car_other_info_list {
  width: calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 1.2rem;
  align-items: flex-start;
}

.details_car_other_info_list_element {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.details_car_other_info_list_element_thin {
  width: 14rem;
  font-size: 1.6rem;
}

.details_car_other_info_list_element_bold {
  font-weight: 600;
}

.details_car_other_info_upload_date {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  gap: 4.5rem;
}

.details_header_grid_bid_info_controls {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  justify-content: space-between;
}

.details_header_grid_bid_info_controls_input_wrapper {
  width: calc(50% - 5.7rem / 2);
  position: relative;
}

.details_header_grid_bid_info_controls_input {
  font-size: 2.4rem;
  height: 100%;
  width: 100%;
  font-weight: 700;
  font-family: inherit;
  padding: 1rem 1.8rem;
  padding-right: 3rem;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--grey-borders);
  color: inherit;
}

.details_header_grid_bid_info_controls_input_blitz_inactive {
  background-color: #ececec;
}

.details_header_grid_bid_info_controls_input_wrapper_span {
  position: absolute;
  right: 1.5rem;
  top: 2rem;
  font-size: 1.8rem;
  color: var(--grey-borders);
}

.details_header_grid_bid_info_controls_input:focus {
  outline: none;
}

.details_header_cta_btn_bid:link,
.details_header_cta_btn_bid:visited {
  width: calc(50% - 5.7rem / 2) !important;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  margin-bottom: 0rem;
}

.details_header_grid_bid_user_offers {
  border-radius: 0.5rem;
  border: 0.1rem solid var(--grey-borders);
  margin-bottom: 1.3rem;
}

.details_header_grid_bid_user_offers_active
{
  border-radius: 0.5rem;
  border: 0.1rem solid var(--grey-borders);
  margin-bottom: 1.3rem;
}

.details_header_grid_bid_user_offers_card {
  border-radius: 0.5rem;
  border: 0.1rem solid var(--grey-borders);
  margin-bottom: 0rem;
}

.details_header_grid_bid_user_offers_header {
  padding: 1.3rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  color: var(--grey-borders);
  border-bottom: 0.1rem solid var(--grey-borders);
}

.details_header_grid_bid_user_classament_header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background-color: #f78b26;
  font-weight: bold;
  color: var(--black-borders);
  border-bottom: 0.1rem solid var(--grey-borders);
}

.details_header_grid_bid_user_own_offers_header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background-color: #b0fa99;
  font-weight: bold;
  color: var(--black-borders);
  border-bottom: 0.1rem solid var(--grey-borders);
}

.details_header_grid_bid_user_offers_body {
  position: relative;
  height: fit-content;
  max-height: 22rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 0.7rem;  */
  /* padding: 0.3rem 1.8rem; */
  overflow-y: scroll;
}

.details_header_grid_bid_user_offers_body_shorter {
  height: 20rem;
}

.details_header_grid_bid_user_offers_body_shorter_seller {
  height: 8rem !important;
}

.details_header_grid_bid_user_offers_body_element {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  padding: 0.3rem 1.8rem;
}

.details_header_grid_bid_user_offers_body_element_green_bg {
  background-color: #cefcd1;
}

.details_header_grid_bid_user_offers_body_element_date {
  margin-left: 2rem;
}

.details_header_grid_bid_user_offers_body_element_bold {
  font-size: 1.8rem;
  font-weight: 600;
}

.details_header_grid_bid_user_offers_body_none {
  font-size: 1.6rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.details_header_grid_bid_date_wrapper {
  position: relative;
  display: block;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0.3rem;
  border: 0.1rem solid var(--grey-borders);
}

.details_header_grid_bid_date_inner_wrapper {
  display: flex;
  /* flex-direction: row; */
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.details_header_grid_bid_date_inner_wrapper_label {
  /* width: 300px; */
}

.details_header_grid_bid_pickup_date {
  display: flex;
  align-items: center;
  margin-bottom: 1.3rem;
  font-size: 1.6rem;
  gap: 0.8rem;
}

.details_car_other_info_grid_box_gap {
  position: relative;
  margin-bottom: 2rem;
}

.details_personal_data_wrapper {
  display: flex;
  flex-direction: row;
  gap: 15rem;
}

.details_personal_data_title {
  font-weight: bold;
  width: 100px;
  min-width: 100px;
}

.details_car_other_info_grid_box_title_wrapper_data_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  border-bottom: 0.1rem solid var(--grey-borders);
} 

.details_car_other_info_grid_box_title_card {
  font-size: 1.4rem;
  color: var(--grey-borders);
  font-weight: bolder;
}

.details_personal_data_continer_overflow {
  overflow-y: auto;
  height: 12rem;
}

.details_personal_data_wrapper_card {
  display: flex;
  flex-direction: row;
  gap: 5rem;
}

.details_personal_data_title_card {
  font-weight: 600;
  width: 80px;
  font-size: 1.3rem;
  min-width: 80px;
}

.details_personal_data_value_card {
    font-size: 1.6rem;
}

.details_header_grid_bid_download {
  display: flex;
  align-items: center;
  margin-bottom: 1.3rem;
  font-size: 1.6rem;
  width: 100%;
  gap: 0.8rem;
}

.details_header_grid_bid_download_span {
  width: 11.5rem;
}

.details_header_grid_bid_download_anchor:link,
.details_header_grid_bid_download_anchor:visited {
  display: flex;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
 /* width: calc(100% - (11.5rem + 0.8rem));  */
 width: 100%;
  color: var(--blue);
  background-color: var(--white);
  border: 0.1rem solid var(--blue);
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1.6rem;
}

.details_header_grid_bid_info_controls_input_wrapper_blitz {
  width: 38%;
}

.details_header_blitz_bid_btns_wrapper {
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
  width: calc(50%);
}

.details_header_grid_blitz_bid_btns {
  width: 62%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.details_header_grid_blitz_bid_btn {
  width: 33%;
  height: 100%;
  background-color: var(--white);
  color: var(--blue);
  font-family: inherit;
  font-size: 1.4rem;
  border: 0.1rem solid var(--blue);
  border-radius: 0.5rem;
  cursor: pointer;
}

.details_header_grid_blitz_bid_btn_active {
  background-color: var(--blue);
  color: var(--white);
}

.details_header_user_offer_price_blitz {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.details_header_user_offer_price_blitz_deco {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.details_header_seller_btns_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.details_header_seller_btns_wrapper_three {
  gap: 1.5rem;
  background-color: #e1edff;
  padding: 1.8rem 0.7rem;
  border-radius: 0.5rem;
}

.details_header_seller_btn {
  font-family: inherit;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  width: 30rem;
  padding: 1.8rem 0rem;
  font-size: 1.6rem;
  color: var(--white);
}

.details_header_seller_btn_blue {
  background-color: var(--blue);
}

.details_header_seller_btn_red {
  background-color: var(--red);
}
.details_header_seller_btn_green {
  background-color: #00990b;
}

.details_header_seller_btn_three {
  width: 33%;
}

.details_header_seller_btn_one {
  width: 100%;
}

.details_upload_doc_seller {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.6rem;
  font-family: inherit;
  background-color: #f3f3f3;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  border: 0.1rem dashed var(--blue);
  cursor: pointer;
}

.details_upload_doc_seller_input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
}

.details_logged_out_deco {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
  text-align: center;
  font-size: 1.6rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.details_logged_out_deco_text_anchor {
  color: var(--blue);
}

.restart_bid_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58rem;
  /* height: 58rem; */
  background-color: var(--white);
  padding: 3.5rem 2.5rem;
  border-radius: 1rem;
  z-index: 9999;
  text-align: center;
  font-size: 1.6rem;
  display: none;
}

.restart_bid_modal_active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.restart_bid_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: 999;
  opacity: 50%;
  display: none;
}

.restart_bid_overlay_active {
  display: block;
}

.restart_bid_modal_title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.restart_modal_sold_wrapper {
  width: 100%;
  padding: 1.6rem 2.1rem;
  background-color: #ececec;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  margin-top: 2.8rem;
}

.restart_modal_taxes {
  width: 100%;
  border: 0.1rem solid var(--grey-borders);
  border-radius: 0.5rem;
  margin-bottom: 3rem;
}

.restart_modal_tax {
  padding: 1.4rem 2.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
}

.restart_modal_tax_final {
  background-color: #cef9d1;
}

.restart_modal_sold_bold {
  font-weight: 500;
}

.restart_modal_tax_bold {
  font-weight: 600;
}

.restart_modal_tax_final_price {
  font-size: 2.8rem;
  font-weight: 700;
}

.restart_modal_confirm {
  background-color: var(--blue);
  color: var(--white);
  font-family: inherit;
  font-size: 1.8rem;
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 1.5rem 8.4rem;
  border: none;
  margin-bottom: 1.2rem;
}

.restart_modal_cancel {
  background-color: transparent;
  border: none;
  font-family: inherit;
  text-decoration: underline;
  color: var(--black);
  font-size: 1.8rem;
  cursor: pointer;
}

.details_header_seller_btns_promise {
  display: block;
  padding: 1.7rem 2rem;
}

.details_seller_promise_btn {
  width: 33%;
  display: flex;
  justify-content: flex-start;
  background-color: transparent;
  border: none;
  text-decoration: underline;
  align-items: center;
  gap: 0.7rem;
  color: var(--blue);
  padding-left: 1rem;
  font-size: 1.6rem;
  font-family: inherit;
}

.details_seller_promise_btn_active {
  width: auto;
}

.details_seller_promise_btn_wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 0.7rem;
  align-items: center;
  width: 100%;
  margin-bottom: 3.2rem;
}

.details_seller_promise_btn_wrapper_subgroup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.details_seller_promise_btn_check {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 1rem;
  background-color: var(--white);
  border: 0.1rem solid var(--blue);
  border-radius: 0.4rem;
  margin-right: 1.5rem;
}

.details_seller_upload {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.details_seller_upload_group_wrapper {
  display: flex;
  width: 50%;
  gap: 1rem;
  align-items: center;
}

.details_seller_upload_preview {
  width: 7.6rem;
  height: 4rem;
  border-radius: 0.4rem;
  overflow: hidden;
}

.details_seller_upload_preview_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details_seller_upload_group {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background-color: #f3f3f3;
  border: 0.1rem dashed var(--blue);
  border-radius: 0.4rem;
  padding: 1.4rem 1.6rem;
  align-items: center;
  position: relative;
  font-size: 1.5rem;
}

.details_seller_upload_group_input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
}

.details_seller_upload_btn {
  background-color: var(--blue);
  color: var(--white);
  font-family: inherit;
  font-size: 1.8rem;
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 1.5rem 8.4rem;
  border: none;
  /* margin-bottom: 1.2rem; */
}

.details_seller_declined {
  font-size: 1.6rem;
}

.details_card_wrapper {
  display: none;
}

.details_slider_controls {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.details_slider_controls_btn {
  cursor: pointer;
  background-color: var(--blue);
  padding: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

.details_slider_controls_btn_svg {
  fill: var(--white);
  width: 1.7rem;
  height: 1.7rem;
}

.details_slider_controls_btn_svg_left {
  transform: rotate(-90deg);
}

.details_slider_controls_btn_svg_right {
  transform: rotate(90deg);
}
