/* This is the Image preview css */
.img-preview-box img {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover;
}


.loader{
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dddddd;
    z-index: 100;
    transition: opacity 0.75s, visibility 0.75s;
}
.loader-hidden{
    opacity: 0;
    visibility: hidden;
}

.loader::after{
    content: '';
    width: 50px;
    height: 50px;
    border: 8px solid #dddddd;
    border-top-color: #0d9c1e;
    animation: loading 0.95s ease infinite;
    border-radius: 50%;
}
@keyframes loading{
    from {
        transform: rotate(1turn);
    }
    to{
        transform: rotate(2turn);
    }
}

/* this is the css for the text area in the dashboard */

.text-area{
    text-indent: 15px !important;
}

/* THIS IS THE CSS FOR THE DASHBOARD */


.c-text{
    margin-top: 20px;
}


/* This is the CSS for the texts that I want to be in the centre or give indent */

.t-i{
    margin-right: -20px;
}

.t-c{
    align-items: center !important;
    justify-content: center !important;
    text-transform: capitalize !important;
}

/*CK Editor*/
.ck-editor__editable_inline{
    min-height: 120px !important;
}

/* This is the custom css for the height of the scrollbar on the vendor Upload of products */
.h-630{
    height: 630px !important;
}

/* this is the css for the height of the scrollbar on the affiiae product page view  */

.h-550{
    height: 550px !important;
}


/* This is the css for the product image on the member dashbooard */

.img-fit-250{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
/* Dropdown  */
.th-content {
    top: auto !important;
    bottom: 80% !important; /* Position the dropdown content above the dropdown button */
}

.carde {
    position: relative !important;
    right: -15px !important;
}

.rent{
    position: relative !important;
    left: -30px !important;
    margin-top: 10px !important;
}


/* THIS IS THE CSS FOR THE DASHBOARD */

#dashboard{
    border-radius: 10px;
    padding:30px, 0;
}
.dashboard-lisst{
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 3fr)) !important;
    grid-gap: 20px !important;
    position: relative !important;
    top: 10px !important;
    cursor: pointer !important;
    
}
.dashboard-lisst div{
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    transition: background 0.5s, transform 0.5s;
}
.dashboard-lisst div i{
    text-align: center;
    font-size: 20px;
    color: #6c7d8f;
}
.c-text{
    margin-top: 20px;
}

#ending .container{
    height: 50vh;
    background: #fff;
    position: relative;
    top: 30px;
    border-radius: 20px;
    text-align: center;

}
#ending h3{
    position: relative;
    top: 10px;
}

.contennt span{
    position: relative;
    top: -5px;
    right: -5px;
    font-size: 18px;
}
.contennt p{
    position: relative;
    top: 10px;
    font-size: 15px;
    font-weight: 400;
}

/* This is the css for the font on the admin dashboard that I want to increase the size */

.fs{

    font-size: 100px!important;
}

/* font css*/

/* Logo Css */
.logo1{
    width: 180px !important;
    position: relative !important;
}

.custom-alert {
    position: fixed;
    top: 5%; /* Center vertically */
    left: 55%; /* Center horizontally */
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    background-color: #0d9c1e;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
