html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.blink {
    animation: blinker 1s linear infinite;
}



.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: table;
    transition: opacity 0.3s ease;
}

.modal-body-scroll {
    max-height: 80vh; /* adjust: 60vh, 75vh, etc. */
    overflow-y: auto; /* show scrollbar when needed */
    overflow-x: hidden;
}

.big-checkbox {
    width: 30px;
    height: 30px;
}

.faicon-scale:hover {
    transform: scale(1.5);
    /* transition: transform 1.5s;*/
}

.faicon-size-15 {
    font-size: 1.5em;
}


.faicon-size-13 {
    font-size: 1.3em;
}

.hover-bold:hover {
    font-weight: bold;
}

.fa-size-13 {
    font-size: 1.3em;
}

.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -250px;
    width:500px;
}

.col-width-60px{
    max-width:60px;
}

/* TABLE HEADER */
.stickyheader {
    background: white;
    position: sticky;
    top: -2px;    
    height: 44px;
}

/* Style for the input field */
.underline-input {
    border: none; /* Remove default border */
    border-bottom: 1px solid #ccc; /* Add underline */
    padding: 5px 0; /* Add padding as needed */
    width: 100%; /* Set width as needed */
    box-sizing: border-box; /* Include padding and border in total width */
    outline: none; /* Remove outline when focused */
}

    /* Optional: Hover and focus styles */
    .underline-input:hover,
    .underline-input:focus {
        border-bottom-color: blue; /* Change underline color on hover/focus */
    }


/* TABLE CSS*/
/*.panel {
    background: linear-gradient(to right, #2980b9, #2c3e50);
    padding: 0;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 0 5px rgba(0,0,0,0.05),0 0 0 10px rgba(0,0,0,0.05);
}

    .panel .panel-heading {
        padding: 20px 15px;
        border-radius: 10px 10px 0 0;
        margin: 0;
    }

        .panel .panel-heading .title {
            color: #fff;
            font-size: 28px;
            font-weight: 500;
            text-transform: capitalize;
            line-height: 40px;
            margin: 0;
        }

        .panel .panel-heading .btn {
            color: rgba(255,255,255,0.5);
            background: transparent;
            font-size: 16px;
            text-transform: capitalize;
            border: 2px solid #fff;
            border-radius: 50px;
            transition: all 0.3s ease 0s;
            margin: 3px;
        }

            .panel .panel-heading .btn:hover {
                color: #fff;
                text-shadow: 3px 3px rgba(255,255,255,0.2);
            }

        .panel .panel-heading .form-control {
            color: #fff;
            background-color: transparent;           
            height: 40px;
            border: 2px solid #fff;
            border-radius: 10px;
            margin:2px;
            display: inline-block;
            transition: all 0.3s ease 0s;
        }

            .panel .panel-heading .form-control:focus {
                background-color: rgba(255,255,255,0.2);
                box-shadow: none;
                outline: none;
            }

            .panel .panel-heading .form-control::placeholder {
                color: rgba(255,255,255,0.5);
                font-size: 15px;
                font-weight: 500;
            }

    .panel .panel-body {
        padding: 0;
    }

        .panel .panel-body .table thead tr th {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.2);
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            padding: 12px;
            border: none;
        }

        .panel .panel-body .table tbody tr td {
            color: #fff;
            font-size: 15px;
            padding: 10px 12px;
            vertical-align: middle;
            border: none;
        }

        .panel .panel-body .table tbody tr:nth-child(even) {
            background-color: rgba(255,255,255,0.05);
        }

        .panel .panel-body .table tbody .action-list {
            padding: 0;
            margin: 0;
            list-style: none;
        }

            .panel .panel-body .table tbody .action-list li {
                display: inline-block;
                margin: 0 5px;
            }

                .panel .panel-body .table tbody .action-list li a {
                    color: #fff;
                    font-size: 15px;
                    position: relative;
                    z-index: 1;
                    transition: all 0.3s ease 0s;
                }

                    .panel .panel-body .table tbody .action-list li a:hover {
                        text-shadow: 3px 3px 0 rgba(255,255,255,0.3);
                    }

                    .panel .panel-body .table tbody .action-list li a:before,
                    .panel .panel-body .table tbody .action-list li a:after {
                        content: attr(data-tip);
                        color: #fff;
                        background-color: #111;
                        font-size: 12px;
                        padding: 5px 7px;
                        border-radius: 4px;
                        text-transform: capitalize;
                        display: none;
                        transform: translateX(-50%);
                        position: absolute;
                        left: 50%;
                        top: -32px;
                        transition: all 0.3s ease 0s;
                    }

                    .panel .panel-body .table tbody .action-list li a:after {
                        content: '';
                        height: 15px;
                        width: 15px;
                        padding: 0;
                        border-radius: 0;
                        transform: translateX(-50%) rotate(45deg);
                        top: -18px;
                        z-index: -1;
                    }

                    .panel .panel-body .table tbody .action-list li a:hover:before,
                    .panel .panel-body .table tbody .action-list li a:hover:after {
                        display: block;
                    }

    .panel .panel-footer {
        color: #fff;
        background-color: transparent;
        padding: 15px;
        border: none;
    }

        .panel .panel-footer .col {
            line-height: 35px;
        }*/

/*.pagination {
    margin: 0;
}

    .pagination li a {
        color: #fff;
        background-color: transparent;
        border: 2px solid transparent;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        line-height: 31px;
        width: 35px;
        height: 35px;
        padding: 0;
        margin: 0 3px;
        border-radius: 50px;
        transition: all 0.3s ease 0s;
    }

        .pagination li a:hover {
            color: #fff;
            background-color: transparent;
            border-color: rgba(255,255,255,0.2);
        }

        .pagination li a:focus,
        .pagination li.active a,
        .pagination li.active a:hover {
            color: #fff;
            background-color: transparent;
            border-color: #fff;
        }

    .pagination li:first-child a,
    .pagination li:last-child a {
        border-radius: 50%;
    }*/


.capWidth{
    width : 90px;
    background-color:bisque;
}


@media only screen and (max-width:767px) {
    .panel .panel-heading .title {
        text-align: center;
        margin: 0 0 10px;
    }

    .panel .panel-heading .btn_group {
        text-align: center;
    }
}

