.hidden-scrollbar::-webkit-scrollbar {
    display: none;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px white;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #7ea9e9;
    border-radius: 10px;
}

/* .overflow-table{
  overflow-y: scroll;
  height: 90vh;
} */


/* Loader Styling */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none; /* Initially hidden */
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.table .body {
    position: relative;
}

.table .body tr {
    position: relative;
    z-index: 5 !important;
}

.table .body tr::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 98%;
    height: 1px;
    background-color: var(--grey);
}

/* .table .body tr:first-of-type::after {
} */
.table .body::after {
    content: '';
    position: absolute;
    top: 0;
    z-index: 1;
    /* background-color: #000; */
    /* left: -20px; */
    width: 100%;
    height: 100%;
    border: 1px solid var(--grey);
    /* background-color: red !important; */
    border-radius: 20px !important;
}

.responsive-hidden {
    overflow: scroll;
}

.responsive-hidden::-webkit-scrollbar {
    display: none !important;
}

.search-container {
    max-width: 400px;
    position: relative;
    margin-top: 7px;
}

.search-container svg {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);

}

.search-container .form-control {
    border: 1px solid grey;
    border-radius: 10px;
    padding: .4rem 1.4rem .4rem 2.7rem;
}


.image-style {
    width: 50px !important;
    height: 50px;
    font-size: 30px !important;
    border-radius: 50%;
}


.game-description {
    width: 100%;
    height: 150px;
    overflow: auto;
    padding: 5px;

    word-wrap: nowrap !important;
}

.feture-box-style {
    width: 100%;
    height: 150px;
    overflow: auto;
    list-style-type: disc !important;
    text-wrap: nowrap !important;
}

.feature-checkkbox {
    width: 100%;
    padding: 5px;
    border-radius: 1px solid grey;
    height: 200px;
    overflow: auto;
    white-space: normal;
}

.img-fluid {
    width: 130px;
    height: 150px;
    cursor: pointer !important;
}


#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}


.modal-capicty {
    display: none;
    position: fixed;
    z-index: 100000 !important;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content (image) */
.modal-content-capicty {
    margin: auto;
    display: block;
    width: 20%;
    max-width: 250px;
}


/* Add Animation */
.modal-content-capicty, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content-capicty {
        width: 100%;
    }
}
