@charset 'utf-8';

@font-face {
  font-family: "Tenada";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2210-2@1.0/Tenada.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GmarketSansMedium";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  font-family: "GmarketSansMedium";
}

body {
  margin: 0;
}

.bg {
  width: 100vw;
  height: 100vh;
  /* border: 1px solid red; */
  background-image: url(./img/travel_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrap {
  max-width: 600px;
  width: 100%;
  height: 600px;
  margin: 100px auto 0;
  background-color: #ffffff98;
  backdrop-filter: blur(2.5px);
  padding: 1rem 4rem 4rem;
  border-radius: 1rem;
  margin-bottom: 100px;
}
h1 {
  font-family: "Tenada";
  text-align: center;
  padding: 1rem;
}
.guide_chat {
  padding: 1rem;
}
.place_con,
.date_con {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}
.guide_chat label {
  padding-top: 0.5rem;
  width: 200px;
}
.guide_chat input {
  font-family: "GmarketSansMedium";
  width: calc(100% - 200px - 0.25rem);
  border: none;
  outline: none;
  border-bottom: 2px solid #333;
  padding: 0.5rem;
  background-color: rgba(0, 1, 61, 0.377);
}
.guide_chat input:focus {
  /* background-color: rgb(255, 178, 35); */
  background-color: rgb(255, 97, 35);
}
.btnCon {
  display: flex;
  justify-content: center;
  align-items: center;
}
#BtnSendMessage {
  margin-top: 2rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border: 2px solid black;
  outline: none;
  background-image: linear-gradient(
    to right,
    #29323c,
    #485563,
    #2b5876,
    #4e4376
  );

  box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
  color: rgb(255, 255, 255);
  font-size: 1rem;
  transition: 0.3s;
}
#BtnSendMessage:hover {
  filter: brightness(1.5);
  color: #a0a0a0;
}
.loader {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
}
.chat_con {
  max-height: 350px;
  overflow-y: scroll;
  margin: 2rem 0;
  padding: 2rem;
  border: 2px solid rgb(39, 19, 5);
  background-image: linear-gradient(
    to right,
    #29323c,
    #485563,
    #2b5876,
    #4e4376
  );
  box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
  border-radius: 0.5rem;
  color: #ffffff;
  display: none;
}
.BtnReStart {
  display: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  /* border: none; */
  cursor: pointer;
  outline: none;
  border: 2px solid black;
  outline: none;
  background-image: linear-gradient(
    to right,
    #29323c,
    #485563,
    #2b5876,
    #4e4376
  );
  box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
  color: rgb(255, 255, 255);
  font-size: 1rem;
  transition: 0.3s;
}
.BtnReStart:hover {
  filter: brightness(1.5);
  color: #a0a0a0;
}
