 .first-img {
    border-radius: 126px 0px 126px 0px;
}

/* .fix-height {
    height: 450px;
} */

.intro-container {
    background-color: rgb(221, 254, 254);
} 

.border-right {
    border-right: 3px solid gray;
}

.border-none {
    border: none;
} 

.intro-img{
    line-height: 3.5rem;
}

.hover-shadow {
    transition: box-shadow 0.3s ease-in-out;
}


.hover-shadow:hover{
    box-shadow: 4px 6px 20px 0px gray;
}

@media screen and (max-width: 1014px) {
    .fix-height{
        flex-direction: column;
    }

}


/* !spinner */
#spinner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Modal styling */
#customerModal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Roboto', sans-serif;
    z-index: 1000;
}

#customerModal h3 {
    margin-top: 0;
    text-align: center;
    color: #333;
}

#customerModal form label {
    display: block;
    margin-top: 15px;
    color: #555;
}

#customerModal form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#customerModal form button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

#customerModal form button:hover {
    background-color: #218838;
}

#successMessage {
    color: #28a745;
    font-size: 18px;
    text-align: center;
}

/* Optional: Add a close button */
#closeModal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    color: #aaa;
    cursor: pointer;
}

#closeModal:hover {
    color: #000;
}