:root {
    --primary-color: #f7931e;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hero {
    background: #2c3e50;
}

.hero .slides {
    left: 0;
}

@media (min-width: 1200px) {
    .form-line {
        display: grid;
        grid-template-columns: 1fr 1fr 1.4fr 1fr;
    }
}

/* .form-line {
    display: flex;
    flex-wrap: wrap;
} */

.input-holder {
    background-color: #ffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer;
}

.input-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.sub-title {
    margin-top: 0;
    font-weight: 500;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    color: #6c757d !important;
}

.overlay-styles {
    position: relative;
}

.custom-modal {
    position: absolute;
    max-height: 400px;
    border-radius: 8px;
    background: #fff;
    z-index: 1000;
    -webkit-box-shadow: 0px 0px 40px -15px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 40px -15px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 40px -15px rgba(0, 0, 0, 0.75);
    /* box-shadow: 0 54px 55px rgba(0, 0, 0, 0.25),
        0 -12px 30px rgba(0, 0, 0, 0.12), 0 4px 6px rgba(0, 0, 0, 0.12),
        0 12px 13px rgba(0, 0, 0, 0.17), 0 -3px 5px rgba(0, 0, 0, 0.09); */
}

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

.search-input:focus-visible {
    border: none !important;
    outline: none !important;
}

/* Standard syntax */
.search-input::placeholder {
    font-size: 12px;
    color: #888;
}

/* Mozilla Firefox */
.search-input::-moz-placeholder {
    font-size: 16px;
    color: #888;
}

/* Internet Explorer */
.search-input:-ms-input-placeholder {
    font-size: 16px;
    color: #888;
}

/* Microsoft Edge */
.search-input::-ms-input-placeholder {
    font-size: 16px;
    color: #888;
}

svg:not(:host).svg-inline--fa,
svg:not(:root).svg-inline--fa {
    overflow: visible;
    box-sizing: content-box;
}

.svg-inline--fa {
    display: inline-block;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}

.airport-div:hover {
    background: #dccbba3b;
}

.color-primary {
    color: var(--primary-color);
}

.traveler-btn {
    color: var(--primary-color);
    padding: 0px 5px;
    font-weight: bold;
    border: none;
    background: #fafafa;
    font-size: 18px;
    border-radius: 2px;
}

.fs-24 {
    font-size: 24px;
}

.fw-400 {
    font-weight: 400;
}

.traveler-input-box p {
    font-size: 18px;
    font-weight: bold;
    margin: auto !important;
}

/* custom radio */
.custom-radio {
    display: inline-block;
    position: relative;
    padding-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 14px;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-button {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ccc;
    border-radius: 50%;
}

.custom-radio input:checked~.radio-button {
    background-color: var(--primary-color);
}

.radio-button:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-radio input:checked~.radio-button:after {
    display: block;
}

.custom-radio .radio-button:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

/* end custom radio */

.done-btn {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 500;
}

.w-full {
    width: 100%;
}

.br-0 {
    border-radius: 0;
}

.alert-confirm-btn {
    background: #1f425c !important;
    border: 1px solid #1f425c !important;
    border-radius: 20px !important;
}



.w-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}


.w-chat a:hover {
    background-color: #128C7E;
}

.chat-meta {
    display: flex;
    /* Use flexbox to align items in a row */
    align-items: center;
    /* Center items vertically */
}

.chat-username {
    color: green;
    /* Set username color to green */
    margin-right: 10px;
    /* Add some space between username and message */
}

.chat-text {
    flex-grow: 1;
    /* Allow the message to take up remaining space */
    margin-right: 5px;
    /* Add some space between message and time */
}

.chat-time {
    font-size: 0.8em;
    /* Make the time string slightly smaller */
    color: gray;
}

/* Optional: Change the color of the time string */
.admin-form input {
    height: 36px;
    padding: 5px 10px;
    margin-bottom: 10px
}

.admin-form select {
    height: 36px;
    padding: 5px 10px;
    margin-bottom: 10px
}

.admin-form label {
    font-weight: 600
}

.fw-600 {
    font-weight: 600 !important
}