* {
	z-index:6000;
}

.askgltc-chatbot * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.askgltc-chatbot .container {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 50%;
    justify-content: center;
}

.askgltc-chatbot *, .askgltc-chatbot html {
    --primaryGradient: linear-gradient(93.12deg, #072669 0.52%, #0066CC 100%);
    --secondaryGradient: linear-gradient(268.91deg, #072669 -2.14%, #0066CC 99.69%);
    --buttonGradient: linear-gradient(93.12deg, #0c3da7 0.52%, #0066CC 100%);
    --primaryBoxShadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    --secondaryBoxShadow: 0px -10px 15px rgba(0, 0, 0, 0.1);
    --primary: #3D6FA5;
}

.askgltc-chatbot .chatbox {
    position: fixed !important;
    bottom: 10px !important;
    right: 8px !important;
    z-index: 1000000 !important;
}


.custom-chatbot .askgltc-chatbot .chatbox .messages .message {
    line-height: 1.4 !important; /* Adjust the value as needed */
}

.custom-chatbot .askgltc-chatbot .chatbox .messages .messages__item {
    padding: 6px 10px !important; /* Adjust the padding as needed */
}



.askgltc-chatbot .chatbox__support {
    display: none;
    flex-direction: column;
    background: white;
  	opacity: 0;
}

.askgltc-chatbot .chatbox--active {
    display: flex;
    transform: translateY(-12px);
    opacity: 0;
    animation: fade-in 0.5s forwards !important;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.askgltc-chatbot .chatbox__button {
    position: relative;
    z-index: 999999;
    text-align: right;
}
.askgltc-chatbot .showButtons{
        background-color:#2A4E86;
        color: white;
        font-style: bold;
        width: 95%;
        padding: 5px;
        border: 1px solid black;
        border-radius: 6px;
        margin-bottom: 5px;
    }
    
    .askgltc-chatbot .showButtons:hover{
        background-color:white;
        font-size: bold;
        color: black;
    }
    
    .send__button {
        padding: 6px;
        background: none;
        border: none;
        outline: none;
        border-radius: 10px;
        cursor: pointer;
    }
    .send__button:hover {
        color: darkgray;
    }
    .send__button:active {
        transform: scale(0.90);
        /* Scaling button  */
    }
    
    
    /* HEADER */
    .askgltc-chatbot .chatbox__header {
        position: sticky;
        top: 0;
    }

    /* GLTC logo button effect */
    .askgltc-chatbot .chatbox__image--header:active {
        transform: scale(0.95);
        outline: none;
        /* Scaling button to 0.98 to its original size */
    }
    
    /* MESSAGES */
    .askgltc-chatbot .chatbox__messages {
        margin-top: auto;
        display: flex;
		font-family: Arial, sans-serif !important;
		line-height: 1.6;
        overflow-y: scroll;
        scroll-behavior: auto !important;
        flex-direction: column-reverse;
    }
    .askgltc-chatbot .special-message {
        border: 2px solid rgb(218, 0, 0); /* 2px wide solid border with a tomato color */
        background-color: #F8F8F8; /* Light gray background color */
        color: green; /* Black text color */
        padding: 10px; /* 10px of padding on all sides */
    }
    
    
    .messages__item {
        background: orange;
        max-width: 60.6%;
        width: fit-content;
    }
    
    .messages__item--operator {
        margin-left: auto;
    }
    
    .messages__item--visitor {
        margin-right: auto;
    }
    
    /* FOOTER */
    .chatbox__footer {
        position: sticky;
        bottom: 0;
    }
    
    .chatbox__support {
        height: 522px !important;
        width: 380px !important;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        overflow: hidden;
    }
    
    /* HEADER */
    .chatbox__header {
        background: var(--primaryGradient);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
		padding: 10px 15px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        box-shadow: var(--primaryBoxShadow);
		font-family: 'Trebuchet MS' !important;
    }
    
    .chatbox__image--header {
        margin-right: 10px;
        outline: black;
    }
    
    .chatbox__heading--header {
        font-family: 'Trebuchet MS', sans-serif !important; 
        font-size: 1.3rem !important; 
		line-height: 0.5;
		margin-top: 12px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2)!important;
        color: rgba(255, 255, 255, 0.918) !important; 
    }
    
    .chatbox__description--header {
        font-size: .7rem;
        color: rgba(255, 255, 255, 0.918);
    }
    
    /* Messages */
    .chatbox__messages {
        padding: 0 20px;
    }
    
    .messages__item {
        margin-top: 8px;
        background: #E0E0E0;
        padding: 8px 12px;
        max-width: 90%;
    }
    
    .messages__item--visitor,
    .messages__item--typing {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        margin-top: auto;
        margin-bottom: auto;
        margin-bottom: 7px;
    }
    
    .messages__item--operator {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        margin-top: .5px;
        margin-bottom: 1px;
        background: var(--primary);
        color: white;
    }
    
    /* FOOTER */
    .chatbox__footer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 13px 13px !important;
        background: var(--secondaryGradient);
        box-shadow: var(--secondaryBoxShadow);
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .askgltc-chatbot .chatbox__footer input {
    width: 78%;
	height: auto;
    border: none;
    padding: 10px 10px !important;
    border-radius: 10px !important;
    text-align: left;
}
    
    .chatbox__send--footer {
        font-weight: 545; /* Or use a numeric value, like 700 */
        color: white;
		border-bottom-right-radius: 70px;
    }
    
    .chatbox__button button,
    .chatbox__button button:focus,
    .chatbox__button button:visited {
        padding: 9px;
        background: var(--buttonGradient);
        border: none;
        outline: none;
        border-top-left-radius: 55px;
        border-top-right-radius: 52px;
        border-bottom-left-radius: 65px;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }
    
    .keys{
        font-weight: bold;
        font-size:medium;
        
    }
    
    .values{
        font-size: small;
        color: darkslategrey;
    }
    
    .constant{
        text-align: center;
        color:whitesmoke;
        background-color: black;
        opacity: 0.3;
    }
    .volume{
        border:0;
        margin-left: 1px;
        font-size:16px; 
        color: darkslategray;
        background: #E0E0E0;
    }
    .volume:hover{
        opacity: 0.6;
    }
    .mic:hover{
        font-size:14px;
        color: darkgray;
    }
    .mic:active {
        transform: scale(0.85);
        /* Scaling button to 0.98 to its original size */
    }
    .askgltc-chatbot .menu-container {
        /* Add your styling here for select menu's container */
        background: var(--secondaryGradient);
        box-shadow: var(--secondaryBoxShadow);
        padding: 9px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: -1px !important; /* Adjust as needed to move the menu container lower or higher */
      }
      
     .askgltc-chatbot #stops {
        font-family: Arial, sans-serif;
        border-radius: 5px;
        padding: 4.5px;
		height: 30px;
        width: 260px;
        /* a smooth transition for the select menu */
        transition: all 0.3s ease;
      }
    
      .askgltc-chatbot #stopsLabel {
        color: white;
        text-decoration: underline;
        padding: 3px;
        font-size: 12px; /* adjust as needed */
    }
    
     .askgltc-chatbot #stops:focus {
        /* Add any styling you want when the select menu is focused/opened */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
      }  
    
    
    .chatbox__suggestions {
        background: var(--secondaryGradient);
        box-shadow: var(--secondaryBoxShadow);
        display: flex;
        margin-bottom: 0px;
    
    }
    .sgst1__btn {
        background: url("transitlogo1.png");
        background-size: contain;
        background-repeat: no-repeat;
        border: none;
        padding: 18.3px;
        margin-top: 2px;
        width: 28%;
        cursor: pointer;
        transform: scale(0.92);
    }
        .sgst1__btn:active {
            transform: scale(0.85);
            /* Scaling button to 0.98 to its original size */
            box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
            /* Lowering the shadow */
    }
    .sgst4__btn {
        font-family: 'Nunito', sans-serif;
        font-weight: 540; /* Or use a numeric value, like 700 */
        letter-spacing: 0.3px;
        padding: 3px;
        color: white;
        border-radius: 9px;
        background: #2A4E86;
        outline: transparent;
        margin-top: 2px;
        width: 27%;
        cursor:pointer;
        transform: scale(0.95);
    }
    .sgst4__btn:hover{
        color: darkgray;
    }
        .sgst4__btn:active {
            transform: scale(0.85);
            /* Scaling button to 0.98 to its original size */
            box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
            /* Lowering the shadow */
    }
    .sgst2__btn {
        font-family: 'Nunito', sans-serif;
        font-weight: 540; /* Or use a numeric value, like 700 */
        letter-spacing: 0.3px;
        padding: 3px;
        color: white;
        border-radius: 9px;
        background: #2A4E86;
        outline: transparent;
        width: 15%;
        margin-top: 2px;
        cursor:pointer;
        transform: scale(0.95);
    }
    .sgst2__btn:hover{
        color: darkgray;
    }
        .sgst2__btn:active {
            transform: scale(0.85);
            /* Scaling button to 0.98 to its original size */
            box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
            /* Lowering the shadow */
    }
    .sgst3__btn {
        font-family: 'Nunito', sans-serif;
        font-weight: 540; /* Or use a numeric value, like 700 */
        letter-spacing: 0.3px;
        padding: 3px;
        color: white;
        background: #2A4E86;
        border-radius: 9px;
        outline: transparent;
        width: 14.2%;
        margin-top: 2px;
        cursor: pointer;
        transform: scale(0.95);
    }
    .sgst3__btn:hover{
        color: darkgray;
    }
        .sgst3__btn:active {
            transform: scale(0.85);
            /* Scaling button to 0.98 to its original size */
            box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
            /* Lowering the shadow */
    }
    
    .findbusstops__btn {
        font-family: 'Nunito', sans-serif;
        font-weight: 540; /* Or use a numeric value, like 700 */
        letter-spacing: 0.3px;
        padding: 3px;
        color: white;
        background: #2A4E86;
        border-radius: 9px;
        outline: transparent;
        width: 15%;
        margin-top: 2px;
        cursor: pointer;
        transform: scale(0.95);
    }
    .findbusstops__btn:hover{
        color: darkgray;
    }
        .findbusstops__btn:active {
            transform: scale(0.85);
            /* Scaling button to 0.98 to its original size */
            box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
            /* Lowering the shadow */
        }
    hr {
        clear: both;
        visibility: hidden;
    }
    .askgltc-chatbot a {
        color: #0808cd;
    }