﻿body {
}
.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: rgba(0, 0, 0, 0.5);*/ /* Semi-transparent black background */
    z-index: 9999;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}




/* on row multiple image slider - Start here */



.scrollRowContainer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #2f2f2f;
    padding-left: 40px;
    padding-right: 40px;
}

.scrollRowHeading{
    color:white;
    padding-top:15px;
    /*padding-bottom:15px;*/
}
    .scrollRowHeading span {
        font-weight: bold;
        font-size: 18px;
    }
    .scrollRowHeading a {
       
        font-size: 16px;
        color:red !important;
    }
.scroll-container {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 5px;
}

    .scroll-container::-webkit-scrollbar {
    display: none;
    }

    .card {
    flex: 0 0 calc(16.66% - 15px); /* 6 items per row on laptops */
    background: #222;  
    border-radius: 10px;
    position: relative;
    border-radius:10px;
    }

.card-body {
    text-align: center;
    padding: 5px;
    background: black;
    color: white;
    border-radius: 10px;
}
.card-body img {
   width:100%;
   height:150px;
    border-radius: 10px;
}
    .skeleton {
    background: gray;
    width: 100%;
    height: 150px;
    border-radius: 10px;
    }

    .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    }

    .left-btn {
    left: 0;
    }

    .right-btn {
    right: 0;
    }

    @media (max-width: 1024px) {
    .card {
    flex: 0 0 calc(33.33% - 15px); /* 3 items per row on tablets */
    }
    }

    @media (max-width: 768px) {
    .card {
    flex: 0 0 calc(50% - 15px); /* 2 items per row on mobile */
    }
    }


/* on row multiple image slider - END here */

/*Mobile App button*/ /**/

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.store-button {
    display: flex;
    align-items: center;
    background-color: black;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    width: 100%;
    margin-bottom:20px;
   /* max-width: 350px;
    height: 100px;
    width: 100%;
    max-width: 350px;
    height: 100px;
    width: 100%;
    max-width: 350px;
    height: 100px;*/
}

    .store-button:hover {
        background-color: #1a2f3a;
        color:white;
    }

    .store-button img {
        height: 36px;
        margin-right: 15px;
    }

    .store-button .text {
        display: flex;
        flex-direction: column;
    }

    .store-button small {
        font-size: 12px;
        text-transform: uppercase;
        opacity: 0.85;
    }

    .store-button strong {
        font-size: 20px;
        text-transform: uppercase;
        font-weight: bold;
    }
.AppSection {
    background-color: #12222d;
}