/* Loader starts here */
/*----------------Loader----------------------*/
.loader {
    border: 16px solid #37a000;
    border-radius: 50%;
    border-top: 16px solid #019de0;
    border-bottom: 16px solid #019de0;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: 0 auto;
    position: absolute;
    top: 37%;
    right: 0;
    left: 0;
    transform: translateY(-37%);
}

.loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Loader ends here */

.invalid-feedback,
.error-message {
    color: red;
}

ul.nav-main > li > a.active {
    background-color: #21262d;
    text-decoration: none;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position the tooltip above the text */
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Show the tooltip text when hovering over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.admin-nav > li {
    width: 100% !important;
}
.result-panel .panel-heading {
    padding: 10px;
}
.result-panel .btn,
.result-table .btn {
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 2rem;
    line-height: 1.5;
    border-radius: 0.5rem;
}

.result-table .panel-heading {
    padding: 10px;
}

.result-table .input {
    width: 50px;
    color: black;
}

.custom-panel .panel-heading {
    padding: 14px;
}

.custom-panel .btn-primary {
    padding: 0.375rem 0.75rem;
    font-size: 2rem;
}
.custom-panel .btn-success,
.custom-panel .btn-danger {
    padding: 0.375rem 0.75rem;
    font-size: 2rem;
}

.notification-icon {
    padding: 0.375rem 0.75rem !important;
    font-size: 1.5rem !important;
}
.custom-panel #note {
    font-size: 1.4rem;
}
.green-input {
    background-color: green;
}
.prize-row {
    /* border-bottom: 1px solid black; */
    padding-bottom: 10px;
}

@media (min-width: 1025px) {
    .table-responsive {
        overflow-x: hidden !important;
    }
}

.dataTables_wrapper .dataTables_length .select2-container {
    display: none;
}

.btn-default {
    color: #333 !important;
    background-color: #fff !important;
    border-color: #ccc !important;
    box-shadow: none !important;
    padding: 0.47rem 0.75rem !important;
    font-size: 1.4rem !important;
}

#modalPrimary .btn {
    padding: 7px 10px !important;
    font-size: small !important;
}

#modalPrimary .card-title {
  font-size: medium !important;
  padding: 5px !important;
  font-weight: bold !important;
}
