@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

@import url("https://cdn.jsdelivr.net/npm/@xz/fonts@1/serve/metropolis.min.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
}

body {
  position: relative;
  background-color: #f5f6fa;
  height: 100vh;
}

/*********************** SIGN UP PAGE ***********************/

#sign_up {
  justify-content: center;
  margin: 0 10px;
  /* transform: scale(0.8); */
}

.sign_up {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* gap: 150px; */
  width: 100%;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}

.s_img {
  position: relative;
}

/********* BODY *********/

.s_body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 20px 40px 20px #00000014;
  gap: 30px;
}

.s_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -8px 0px;
}

.sign_in {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s_input {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s_for {
  width: 450px;
}

.s_for p {
  display: flex;
  justify-content: flex-end;
}

.sign_in h2 {
  font-size: 36px;
  font-weight: 600;
}

.sign_in p {
  font-size: 18px;
  font-weight: 300;
}

.s_input input {
  font-size: 19px;
  font-weight: normal;
  color: #455a64;
  width: 450px;
  height: 77px;
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  padding: 25px;
}

.s_for p a {
  color: #ff835a;
  font-size: 20px;
  font-weight: normal;
}

.S_b {
  background-color: #345461;
  width: 264px;
  height: 74px;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  font-size: 25px;
  font-weight: 500;
  color: white;
}

/*********************** HOME PAGE ***********************/

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  padding: 5px 50px;
  background-color: #fff;
  align-items: center;
  height: max-content;
  width: 100%;
  top: 0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.head {
  display: flex;
  gap: 24px;
}

.head div {
  width: 140px;
}

.head a {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  padding: 5px 7px;
}

.head a:first-child {
  color: rgba(0, 0, 0, 0.87);
}

.head a:nth-child(2) {
  color: rgba(0, 0, 0, 0.6);
}

.head a:hover {
  color: rgba(0, 0, 0);
  font-weight: 500;
}

.cards_container {
  position: absolute;
  display: flex;
  gap: 24px;
  left: 50%;
  top: 35%;
  transform: translateX(-50%);
  z-index: 1;
}

.cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 16px;
  background: #ffffff;
  width: max-content;
  cursor: pointer;
  box-shadow: 0px 1.29785px 1.29785px rgba(0, 0, 0, 0.14),
    0px 2.59569px 1.29785px rgba(0, 0, 0, 0.12),
    0px 1.29785px 3.89354px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  transition: ease-in 100ms;
}

.cards:hover {
  background: #ffffff;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.14), 0px 3px 3px rgba(0, 0, 0, 0.12),
    0px 1px 8px rgba(0, 0, 0, 0.2);
}

.car_img {
  transition: ease-in 100ms;
}

.cards:hover .car_img {
  transform: scale(1.05);
}

.cards:hover .cars_details p:first-child {
  font-weight: 600;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.87);
}

.cars {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  gap: 16px;
  background: #f6f6f6;
  border-radius: 7px;
}

.cars_details p:first-child {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: rgba(0, 0, 0, 0.87);
  transition: ease-in 100ms;
}

.cars_details p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.87);
}

.cars_baseline p:first-child {
  color: #357acf;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.cars_baseline p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.87);
}

/* OVERLAY */

.claim_overlay {
  display: none;
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
  z-index: 2;
}

.background_overlay {
  display: none;
  background-color: rgb(0, 0, 0, 0.25);
  height: 100vh;
  z-index: 1;
}

.cars_confirmation {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
}

.cars_baseline_o {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px 10px;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.38);
}

.cars_confirmation .cars_baseline_o:nth-child(8) {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: none;
}

.cars_baseline_o p:first-child {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  width: 131px;
  color: rgba(0, 0, 0, 0.87);
}

.cars_baseline_o p:nth-child(2) {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  width: 150px;
  color: rgba(0, 0, 0, 0.6);
}

.cards_o {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  gap: 16px;
  background: #ffffff;
  width: max-content;
  cursor: pointer;
  box-shadow: 0px 1.29785px 1.29785px rgba(0, 0, 0, 0.14),
    0px 2.59569px 1.29785px rgba(0, 0, 0, 0.12),
    0px 1.29785px 3.89354px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  transition: ease-in 100ms;
}

.cards_o:hover {
  background: #ffffff;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.14), 0px 3px 3px rgba(0, 0, 0, 0.12),
    0px 1px 8px rgba(0, 0, 0, 0.2);
}

.h_btn_claim {
  padding: 8px 0px;
  width: 278px;
  height: 40px;
  background: #f8da48;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: ease-in 100ms;
}

.h_btn_claim:hover {
  background: #fed81a;
}

.h_btn_claim a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.87);
}

/*********************** CHAT PAGE ***********************/

#chat_page {
  display: none;
}

.chat_page {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 95px;
}

.status {
  margin-bottom: -12px;
  padding: 0px 50px;
}

.status p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: #9d9d9d;
}

.status p span {
  text-transform: uppercase;
  color: #686b78;
}

.chat_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 50px;
  background-color: #fff;
  width: 100%;
  position: sticky;
  z-index: 50;
  margin-top: 16px;
}
.chat_header div {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.chat_header button {
  position: absolute;
  left: -60px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border: none;
  cursor: pointer;
  background-color: transparent;
  transition: ease-in 50ms;
}

.chat_header button:hover {
  color: rgb(239, 53, 53);
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 50px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}

.sticky header {
  display: none;
}

.chat_header img {
  cursor: pointer;
  transition: ease-in 100ms;
}

.chat_header img:hover {
  transform: rotate(90deg);
}

.chat_header h4 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.87);
}

/* MSG */

footer {
  width: 100%;
  position: fixed;
  top: 92.5vh;
  box-shadow: 0px -4px 5px rgba(0, 0, 0, 0.1);
}

.enter_msg {
  position: relative;
  display: flex;
  width: 100%;
}

.enter_msg input {
  text-decoration: none;
  border: none;
  padding: 15px 50px;
  font-size: 16px;
  width: 100%;
}

.enter_msg input:focus {
  outline: none;
  border: none;
  background-color: #fffaee;
}

.msg_icons {
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 24px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 15px 50px;
}

.msg_icons a {
  cursor: pointer;
}

/********** CHATS **********/

.chats {
  padding: 0px 50px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chat_bot_1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}

.chat_bot_body {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.chat_bot_1_content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bot_time p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  text-align: start;
  color: rgba(0, 0, 0, 0.6);
  margin-left: 40px;
}

.bot_time p span {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.38);
}

.chat_bot_1_content p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0);
  padding: 16px;
  gap: 10px;
  width: max-content;
  max-width: 318px;
  /* background: #FFFFFF; */
  background: #ccdded;
  box-shadow: 0px 0px 3px rgba(9, 7, 55, 0.15);
  border-radius: 15px;
}

.chat_btn {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.87);
  padding: 12px 16px;
  width: max-content;
  gap: 16px;
  background: #f8da48;
  border: none;
  box-shadow: 0px 0px 3px rgba(9, 7, 55, 0.15);
  border-radius: 15px;
  cursor: pointer;
}

.chat_user_1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
  right: 0%;
}

.chat_user_body {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.chat_bot_1_content .btn_yn {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

/***** SCENARIO *****/

.scenarios {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: max-content;
}

.scenario_row {
  display: flex;
  gap: 12px;
}

.chat_scenario .chat_bot_1_content img {
  width: 150px;
}

.scenario_col img {
  width: 250px;
}

.chat_bot_1_content img {
  width: 250px;
}
.scenario_row_2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scenario_col_3 {
  padding: 12px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 1.29785px 1.29785px rgba(0, 0, 0, 0.14),
    0px 2.59569px 1.29785px rgba(0, 0, 0, 0.12),
    0px 1.29785px 3.89354px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: ease-in 100ms;
}

.scenario_col {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 12px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 1.29785px 1.29785px rgba(0, 0, 0, 0.14),
    0px 2.59569px 1.29785px rgba(0, 0, 0, 0.12),
    0px 1.29785px 3.89354px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: ease-in 100ms;
  width: max-content;
}

.scenario_col .vl {
  border-left: 1px solid rgba(0, 0, 0, 0.37);
}

.scenario_col:hover {
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.14), 0px 3px 3px rgba(0, 0, 0, 0.12),
    0px 1px 8px rgba(0, 0, 0, 0.2);
}

.scenario_col_3:hover {
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.14), 0px 3px 3px rgba(0, 0, 0, 0.12),
    0px 1px 8px rgba(0, 0, 0, 0.2);
}

.scenario_img img {
  transition: ease-in 100ms;
  width: 250px;
}

.scenario_col:hover .scenario_img img {
  transform: scale(1.02);
}

.scenario_img {
  display: flex;
  justify-content: center;
  width: 100%;
}

.scenario_col_body h4 {
  font-size: 14px;
  font-weight: 500;
  max-width: 250px;
  margin-bottom: 10px;
}

.scenario_col_body h6 {
  font-size: 12px;
  font-weight: 300;
  max-width: 250px;
}

/* CHATS DISPLAY PROPERTIES */

.chat_intro .chat_bot_1 {
  /* display: none; */
}

.chat_intro .chat_user_1 {
  display: none;
}

.chat_2 .chat_bot_1 {
  display: none;
}

.chat_2 .chat_user_1 {
  display: none;
}

.chat_scenario .chat_bot_1 {
  display: none;
}

.chat_scenario .chat_user_1 {
  display: none;
}
.chat_scenario .chat_bot_1 {
  display: none;
}

.chat_scenario_2 .chat_bot_1 {
  display: none;
}

.chat_scenario_2 .chat_user_1 {
  display: none;
}

.chat_scenario_3 .chat_bot_1 {
  display: none;
}

.chat_scenario_3 .chat_user_1 {
  display: none;
}
