/*
Template Name: Velzon - Admin & Dashboard Template
Author: Themesbrand
Website: https://themesbrand.com/
Contact: support@themesbrand.com
File: Custom Css File
*/

:root {
    --bg-red: #faebd7;
    --red: #b80202;
}

.red {
    color: var(--red);
}

.loading {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url("/images/core/loader.gif") 50% 50% no-repeat
        rgba(255, 255, 255, 0.7);
}
.categoryCard:hover {
    background-color: var(--vz-vertical-menu-item-hover-color);
    cursor: pointer;
}
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 57px;
    left: 21px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-red {
    background-color: var(--bg-red) !important;
}

.pagination {
    justify-content: end;
}

.ticker-container {
    background: linear-gradient(to right, #2f3590, #1a1e5b);
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
}

.ticker-wrap {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
    animation-fill-mode: forwards;
}

.ticker {
    display: inline-block;
}

.ticker span {
    display: inline-block;
    padding: 0 2rem;
    color: white;
    font-size: 20px;
    /* Increased font size */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    /* Added text shadow */
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-wrap:hover {
    animation-play-state: paused;
    /* Pause on hover */
}


input.readonly{

    background-color: darkgray;
}


/* Card styling */
.category-card {
    background-color: rgba(5, 123, 190, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 200px; 
}

.category-card {
    &:hover {
        transform: translateY(-5px); 
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 

        h5,p {
            color: white; 
        }
    }
}

/* Card image styling */
/* .category-card-image {
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-image {
    transform: scale(1.1); 
}

.category-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.category-card-description {
    font-size: 1rem;
    color: #777;
}

.category-card-link {
    text-decoration: none;
}

.category-card-link:hover {
    text-decoration: none;
}



.btn-category {
    background-color: #2F3590; 
    color: white; 
    font-weight: bold;
    padding: 10px 15px; 
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.btn-category:hover {
    background-color: #171d76; 
    color: #ffffff; 
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.btn-category:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 77, 123, 0.5); 
}
 */

 /* Card styling */
.category-card {
    background-color: rgba(5, 123, 190, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Card Image Section */
.category-card-image-wrapper {
    position: relative;
    height: 150px;
    overflow: hidden;
    background-size: cover;
    background-position: center;

}
.category-card-image-wrapper.h-200 {
    height: 357px;


}

.category-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-title-overlay {
    opacity: 1;
}

.category-card-hover-title {
    color: white;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* Card Title */
.category-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

/* Card description */
.category-card-description {
    font-size: 1rem;
    color: #777;
}

/* Styling the image itself */
.category-card-image {
    border-radius: 50%;
    transition: transform 0.3s ease;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.category-card:hover .category-card-image {
    transform: scale(1.1); /* Image zoom effect on hover */
}

.form-control{
    direction: rtl;
}

.badge-soft-check{
    color:#530202;
    background-color:rgba(189, 1, 1, 0.5)
}