* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

h0 {
    font-size: 40px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    height: 10%;
    width: 100vw;
}

main {
    position: absolute;
    top: 20%;
    height: 50%;
    width: 100vw;
    overflow: scroll;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100vw;
    margin-bottom: 1.5rem;
}

input {
    border: none;
}

input[type=text] {
    padding-left: 1.5rem;
    font-size: 20px;
    font-weight: 400;
}

.icon-success::before {
    content: "●";
    position: relative;
    color: #cf0000;
    font-size: 20px;
}

.icon-danger::before {
    content: "●";
    position: relative;
    color: rgb(0, 255, 30);
    font-size: 20px;
}

.icon-warn::before {
    content: "●";
    position: relative;
    color: #09ff00;
    font-size: 20px;
}

.icon-ok::before {
    content: "●";
    position: relative;
    color: #FFAB0B;
    font-size: 20px;
}

.contianer {
    margin: 1rem;
    width: 100%;
    height: 100%;
}

.header-hero {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -999;
}

.title {
    text-align: center;
    position: absolute;
    width: 70%;
    margin-left: 15%;
    top: 2.5rem;
    color: white
}

.footer-item {
    margin-left: 1rem;
    margin-right: 1rem;
}

.container {
    margin: auto;
}

.list {
    border-bottom: none;
}

.list-item {
    border-bottom: 1px solid rgba(209, 141, 180, 0.50);
    padding: 1rem;
    text-align: center;
    color: #132847;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-op {
    opacity: 0;
}

.d-flex {
    display: flex;
}

.light {
    border-radius: 15px;
    border: 1px solid rgba(139, 104, 172, 0.10);
    background: var(--overlaypink-purple, linear-gradient(131deg, rgba(209, 141, 180, 0.15) 0%, rgba(139, 104, 172, 0.15) 100%), #FFF);
    box-shadow: 5px 10px 50px 5px rgba(139, 104, 172, 0.20);
}

.dark {
    border-radius: 15px;
    background: var(--main, linear-gradient(131deg, #D18DB4 0%, #8B68AC 100%));
    box-shadow: 5px 5px 50px 5px rgba(139, 104, 172, 0.10);
    color: white;
}

.card {
    min-height: 165px;
    margin: 1rem;
    padding: 1rem;
}

.card > img {
    margin: 1rem;
}

.card-body {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.border-none {
    border: none !important;
}

.flex-wrap {
    flex-wrap: wrap;
}

.chat-item {
    margin: 1rem;
    display: flex;
}

.chat-body {
    max-width: 60%;
    margin-left: 1rem;
    border-radius: 14px;
    border: 1px solid #8B68AC;
    padding: 1rem;
    word-wrap: break-word;
}

.chat-user {
    justify-content: end;
}

.user {
    border-radius: 14px;
    border: 1px solid #D18DB4;
    background: #FBD8EC;
}

.ai {
    margin-right: 2rem;
}

.img-container {
    background-color: white;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 104, 172, 0.50);
}

.img-container > img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.response {
    border-radius: 15px;
    background: linear-gradient(131deg, rgba(209, 141, 180, 0.15) 0%, rgba(139, 104, 172, 0.15) 100%), #FFF;
    box-shadow: 5px 10px 50px 5px rgba(139, 104, 172, 0.15);
    backdrop-filter: blur(25px);
    transition: 1s;
}

.choice-drop {
    transform: translateY(100vh);
}

.route-drop {
    transform: translateY(-40vh);
}

.live-need-item {
    display: flex;
    flex-direction: row;
    width: 50%;
}

.live-need-body {
    display: flex;
    flex-direction: column;
    margin: 1rem;
}

.route-input {
    border-radius: 0px;
}

.route-item {
    margin: .5rem;
}

.route-item > input{
    border-radius: 5px;
    background: var(--overlaypink-purple, linear-gradient(131deg, rgba(209, 141, 180, 0.15) 0%, rgba(139, 104, 172, 0.15) 100%), #FFF);
}

.route-btn {
    border-radius: 15px;
    background: var(--overlaypink-purple, linear-gradient(131deg, rgba(209, 141, 180, 0.15) 0%, rgba(139, 104, 172, 0.15) 100%), #FFF);
    color: #8B68AC;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: .25rem;
    padding-left: .5rem;
    padding-right: .5rem;
    margin-left: .5rem;
}

.estimate-body-item {
    margin: 1rem;
    color: #8B68AC;
    text-align: center;
    font-family: ABeeZee;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 22px; /* 91.667% */
    letter-spacing: -0.408px;
}

#home {
    display: flex;
    flex-direction: column;
}

#location-select {
    margin: 1rem;
    color: #132847;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 129.412% */
    letter-spacing: -0.408px;
}

#tool-bar {
    fill: #FFF;
    height: auto;
    width: 100vw;
    position: absolute;
    bottom: 0;
    left: 0;
}

#tool-bar-white {
    background-color: white;
    position: absolute;
    bottom: 0;
    height: 5%;
    width: 100%;
}

#tool-chat {
    position: absolute;
    width: 78px;
    height: 78px;
    left: calc(50% - 39px);
    bottom: 39px;
}

#tool-nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: space-between;
}

#back-arrow {
    margin-left: 1rem;
    margin-top: 2.5rem;
    z-index: 1000;
}

#submit {
    background-color: #8B68AC;
    width: 69px;
    height: 69px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    fill: #8B68AC;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

#submit-btn {
    width: 34px;
    height: 34px;
    margin-left: 20px;
    margin-top: 20px;
    margin-right: 21px;
    margin-bottom: 17px;
}

#footer-container {
    height: 100%;
}

#footer-choice {
    display: flex;
    justify-content: space-around;
    margin: 1rem;
}

#footer-type {
    height: calc(100% - 70px);
    display: flex;
    justify-content: end;
    align-items: center;
}

#chat-prompt {
    height: 80%;
    width: 100%;
    border-radius: 18px;
    background: #F8F8F8;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10) inset;
}

#chat-prompt::placeholder {
    color: #8D8D8D;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

#choice-response {
    background-color: rgba(0, 0, 0, 0.10);
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1s;
}

#report-card {

    display: flex;

}

#weather-card {

    display: flex;

}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

#route {
    position: absolute;
    bottom: 15%;
    right: 1rem;
    z-index: 999;
}

#route-field {
    background-color: white;
    position: absolute;
    top: 0;
    width: calc(100% - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1rem;
    border-radius: 15px;
    color: #8B68AC;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 1s;
    padding-top: 1rem;
}

.explore-route {
    border-radius: 40px;
    background: linear-gradient(180deg, #F7CE76 0%, #D18DB4 100%);
    color: #FFF;
    text-align: center;
    font-family: ABeeZee;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.408px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 1rem;
}

#estimate-route {
    position: absolute;
    bottom: -10%;
    height: 26%;
    width: 100%;
    z-index: 999;
    border-radius: 40px;
    background: var(--overlaypink-purple, linear-gradient(131deg, rgba(209, 141, 180, 0.15) 0%, rgba(139, 104, 172, 0.15) 100%), #FFF);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px);
}

#estimate-body {
    margin: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}