@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  height: auto;
  font-family: "Poppins", sans-serif;
  margin: 0px;
  background-color: white;
  overflow: hidden;
  display: flex;
  font-size: 500;
  background-image: url('../images/26323 [Converted].jpg');
  width: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

img {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}
/* On screens that are 992px wide or less, the background color is blue */
@media screen and (max-width: 992px) {
  body {
    color: white;
     background-position: center top;
       background-image: url('../images/26323 [Converted].jpg');
  width: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  }
  img {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
 }
}

/* On screens that are 600px wide or less, the background color is olive */
@media screen and (max-width: 600px) {
  body {
    color: white;
      background-position: center top;
        background-image: url('../images/26323 [Converted].jpg');
  width: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  }
  img {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
 }
}

#chatbot_toggle {
  position: absolute;
  right: 0;
  border: none;
  height: 2.5%;
  width: 48px;
  background: #fff;
  /*backdrop-filter: blur(10px);*/
  padding: 14px;
  color: #111010;
  z-index: 10;
}

/*#chatbot_toggle:hover {
  backdrop-filter: blur(20px);
}
*/
.close {
  color: white;
}

.line {
  height: 2px;
  background-color: #eee;
  width: 100%;
}

.main-card {
  border-radius: 30% !important;

}

.main-title {
     padding: 4.5% 12%;
  align-items: center;
      line-height: 0.6;
  background-color:#353848;
  color: #fff;
  font-size: 17px;
  position: absolute;
  width: inherit;
  font-weight: 500;
  display: center;
  text-transform: capitalize;
  font-family: "poppins", sans-serif;
}

.main-title>div {
  height: 48px;
  width: 48px;
  display: flex;
  margin-left: 8px;
}

.main-title svg {
  height: 24px;
  margin: auto;
}



{
  margin: auto auto auto 8px;
}

.chat-area {
  margin-top: 48px;
  flex-grow: 1;
  overflow: auto;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.input-message {
  padding: 8px 48px 8px 16px;
  background-color: white;
  color: black;
  flex-grow: 1;
  border: none;
}

.input-message:focus , input:focus{
  outline: none;
  border: none;
}

.input-div {
  height: 48px;
  display: flex;
}

.input-send,
.input-mic {
  background: rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  right: 0%;
  border: none;
  cursor: pointer;
}

.input-mic {
  left: 0%;
}

.input-send svg {
  fill: white;
  margin: 11px 8px;
}

.chat-message-div {
  display: flex;
}

.chat-message-sent {
 margin: 8px 16px 8px 64px;
    padding: 3% 18px;
    animation-name: fadeIn;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 100ms;
    border-radius: 30px 30px 0px 30px;
    font-family: "Poppins", sans-serif;
    /* font-weight: 600; */
    outline: 2px solid #e2ffe8;
    border: 2px solid #ffffff;
    color: #353848;
    background-color: #e2ffe8;
    font-size: 14px;
}

.chat-message-received {
   min-width: 70% !important;
    margin: 8px 16px 8px 16px;
    padding: 3% 18px;
    /* overflow-wrap: break-word; */
    animation-name: fadeIn;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 100ms;
    border-radius: 0px 30px 30px 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border: 2px solid #fff;
    color: #353848;
    background-color: #efebeb;
    outline: 2px solid #efebeb;
    font-size: 14px;
}


.loader {
  width: 20px;
}

.chat-message-received .chatbotImage {
  height: auto;
  position: relative;
  z-index: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  margin: 5% 0%;
  padding: 0% 0%;
}

}
.chat-message-received .chatbotLink {
    text-decoration: none;
    width: 100% !important;
    text-transform: uppercase;
    padding: 4% 19% !important;
    margin: 0 18% !important;
    line-height: 43px;
    border-radius: 20px;
}
.chat-message-received .chatbotLink .chatbotbutton{
    max-width: 96% !important;
    align-content: justify;
    line-height: 30px;
    padding: 2%;
    margin: 2%;
    border-radius: 14px !important;
    background-color: #353848;
    color: #fff;
    border: 0;
    outline: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

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


/*Customizations*/
.image {
         padding: 40px 0 70px 100px;
}

.image img {
  position: absolute;
  width: 55%;
  height: auto;
  margin-right: 0%;
  margin-left: 0%;
  z-index: auto;
}

.form {
  display: grid;
  width: 100%;
  position: absolute;
  margin-top: 0%;
  margin-right: 0%;
  margin-left: 0%;
  margin-bottom: 0%;
  background-color: #fff;
  height: auto;
    font-family: "Poppins", sans-serif;
}



.cred-form {
  background-color: #fff;
  width: 100%;

}



.form>.text-field {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 2%;
  margin: 3% 18%;
  height: 30px;
  padding-left: 20px;
  font-size: 14px;
  color: gray;
}

::placeholder {
  /* Most modern browsers support this now. */
  color: #ccc;
}

.form>#user-submit {
  background-color: #2cb742;
  color: #fff;
  padding: 0px;
  margin: 2% 22%;
  font-size: 14px;
  height: 40px;
  border-radius: 10px;
  border: none;font-family: "Poppins", sans-serif;

}

.form>#user-submit:hover {
 background-color: #353848;
  color: #fff;
  padding: 0px;
  margin: 2% 22%;
  font-size: 14px;
  height: 40px;
  border-radius: 10px;
  border: none;
  font-family: "Poppins", sans-serif;
}


.grid-container {
  display: none;
  display: inline-grid;
  grid-template-columns: 25% 25% 25% 25%;
  margin-right: 29%;
  margin-left: 29%;
}

.grid-container>div {
  width: 100%;
  margin: 0;
}

.grid-container>div>img {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0 1%;
  margin-top: 20%;

}

.paragraph {
  color: #000;
  min-width: 100%;
  text-align: center;
  margin-top: 30%;
  letter-spacing: 0px;
  word-spacing: 0px;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 6%;
}
/*Media Queries*/

@media (min-width: 430px) {
  .main-card {
    width: 96%;
    max-width: 400px;
    height: calc(100% - 32px) !important;
    border-radius: 8px !important;
    max-height: 600px;
    margin: 16px !important;
  }

  .collapsed {
    width: 48px !important;
    height: 48px !important;
    border-radius: 24px !important;
    margin: 16px !important;
  }

  .main-card {
    background: white;
    backdrop-filter: blur(10px);
    color: white;
    width: 100%;
    height: 100%;
    margin: 0px;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    right: 0;
    bottom: 0;
    position: absolute;
    transition: all 0.5s;
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
}
@media (max-width: 430px) {
  .main-card {
    width: 96%;
    max-width: 400px;
    height: calc(100% - 32px) !important;
    border-radius: 8px !important;
    max-height: 600px;
    margin: 1px !important;
  }

  .collapsed {
    width: 48px !important;
    height: 48px !important;
    border-radius: 24px !important;
    margin: 16px !important;
  }

  .main-card {
    background: white;
    backdrop-filter: blur(10px);
    color: white;
    width: 100%;
    height: 100%;
    margin: 0px;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    right: 0;
    bottom: 0;
    position: absolute;
    transition: all 0.5s;
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
}
