﻿/*@font-face {
    font-family: 'Poppins-Medium';
    src: url('fonts/Poppins-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal italic;
}*/

:root {
    --vstpllovwidth: 540;
}


#tbllov {
    table-layout: fixed;
    width: 100%;
    /*border-color: #adb5bd;*/
}



    #tbllov > thead > th {
        padding: 2px !important;
        white-space: nowrap;
        overflow: hidden;
        /*font-family: "Poppins-Medium";*/
        font-size: 12px;
    }

    #tbllov > tbody > tr > td {
        padding: 1.5px !important;
        white-space: nowrap;
        overflow: hidden;
        /*font-family: "Poppins-Medium";*/
        font-weight: 500;
        font-size: 12.5px;
    }

/*
    center {
    position: absolute;
    top: 10%;
    left: 16%;
    z-index: 9999;
}*/

.lovcolinput {
    height: 22px !important;
    /*font-weight: bold;*/
    border: 1px solid #dee2e6 !important;
    font-size: 12px !important;
    outline: none !important;
    box-shadow: none !important;
    border-color: #ced4da !important;
    background-color: #fff !important;
}

    .lovcolinput:focus {
        border-color: #ced4da !important;
        background: #FEF9F2;
    }

#tbllov > thead > th {
    top: -1px !important;
    position: sticky !important;
    background: linear-gradient(to bottom, rgb(255 255 255) 0%, rgb(220 220 220) 100%);
    /*background-color: midnightblue !important;*/
    /*border: 1px solid #dee2e6 !important;*/
    /*border-color: #adb5bd;*/
    border-right: 1px solid #adb5bd;
    font-weight: 700;
    /*border: 1px solid;*/
    /*color: white !important;*/
    /*color: #333;*/
}

#tbllov tr:nth-child(even) {
    /*background-color: #d9ebff;*/
    /*background-color: #f0f8ff;*/
}

#tbllov tr:focus {
    /*background: #0094ff !important;*/
    box-sizing: unset !important;
    border: none !important;
    border-color: transparent !important;
    border-radius: 0px !important;
    outline: none !important;
}

.samplefocus {
    --bs-table-accent-bg: none !important;
    background-color: none !important;
    /*background: #187BB9 !important;*/
    background: #1D85D0 !important;
    outline: none !important;
    color: white !important;
}

#tbllov tr:hover {
    cursor: pointer;
}

.checkboxsettings, .frmcheckboxsettings {
    position: inherit !important;
    opacity: 1 !important;
    pointer-events: inherit !important;
    cursor: pointer;
}

#tblfooter {
    border-color: #dee2e6;
    background: #fff;
}

    #tblfooter > tbody > tr > td {
        padding: 1.5px !important;
        /*font-size: 12px !important;*/
        /*font-size: 13px !important;*/
        /*font-weight: 600;*/
        white-space: nowrap;
        overflow: hidden;
        /*font-family: "Poppins-Medium";*/
        font-weight: 600;
        font-size: 12.5px;
        /*background-color: rgba(0, 0, 0, 0.03) !important;*/
    }

    #tblfooter > tbody > tr:nth-child(even) {
        /*background-color: #d9ebff;*/
        /*background-color: #f0f8ff;*/
    }

.hiddencursor {
    cursor: not-allowed;
    pointer-events: none !important;
}

.blurdiv {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
    z-index: 1; /* Ensure it's above other content */
}

.blur-all {
    overflow: hidden;
    z-index: 1000 !important;
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}


.invaliderror {
    border: 1px solid red !important;
    border-color: red !important;
    box-shadow: none !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


.notification {
    position: absolute;
    top: 0;
    right: 0.5%;
    background-color: #FFCDD2;
}

.headerbackground {
    background: #d9ebff !important;
    border-radius: 0px !important;
}

.lovclose {
    float: right;
    color: red;
    font-weight: bold;
    cursor: pointer;
    /*margin-top:1px;*/
    margin-right: 1px;
    font-size: 21pt !important;
}

/*.lovbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: #EFF6FC !important;
    color: var(--bs-table-striped-color);
}*/

/*.lovtitle {
    color: black !important;
    background-color: white !important;
    border: 2px solid black !important;
}*/




#cover-spin, #mastercover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /*background-color: rgba(255,255,255,0.7);*/
    background-color: transparent;
    z-index: 9999 !important;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
    transition-delay: 600s;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#cover-spin::after, #lcover-spin::after, #mastercover-spin::after {
    content: '';
    display: block;
    position: absolute;
    left: 45%;
    top: 50%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: #007bff;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
    z-index: 9999 !important;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
    -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    /*background-color: rgba(255,255,255,0.7);*/
}



.dangermsgbox, .errormsgbox {
    position: absolute;
    top: 50%;
    left: 40%;
    width: 50%;
    right: 50%;
    z-index: 9999;
    background: #fff;
    border-radius: 13px;
    transition: opacity .15s linear;
    -webkit-animation: show 0.3s ease normal;
    border: 2px solid #f1aeb5;
    -webkit-transform: translateX(-30%) translateY(-40%);
    -moz-transform: translateX(-30%) translateY(-40%);
    -ms-transform: translateX(-30%) translateY(-40%);
    transform: translateX(-30%) translateY(-40%);
}

.successmessagebox {
    position: absolute;
    top: 50%;
    left: 40%;
    right: 50%;
    width: 50%;
    z-index: 9999;
    background: #fff;
    border-radius: 13px;
    -webkit-transform: translateX(-30%) translateY(-40%);
    -moz-transform: translateX(-30%) translateY(-40%);
    -ms-transform: translateX(-30%) translateY(-40%);
    transform: translateX(-30%) translateY(-40%);
    transition: opacity .15s linear;
    -webkit-animation: show 0.3s ease normal;
    border: 2px solid #a3cfbb;
}

.otpmessagebox {
    position: absolute;
    top: 45%;
    left: 35%;
    right: 50%;
    width: 80%;
    z-index: 9999;
    background: #fff;
    border-radius: 13px;
    -webkit-transform: translateX(-30%) translateY(-40%);
    -moz-transform: translateX(-30%) translateY(-40%);
    -ms-transform: translateX(-30%) translateY(-40%);
    transform: translateX(-30%) translateY(-40%);
    transition: opacity .15s linear;
    -webkit-animation: show 0.3s ease normal;
    border: 2px solid #a3cfbb;
}

.hide, .lhide {
    display: none !important;
}


.index0 {
    z-index: 0 !important;
}



/*lovstyles and positions*/
.lovcenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9997 !important;
    user-select: none;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;*/
    font-family: Inter;
    background-color: rgba(0, 0, 0, 0.03) !important;
    box-shadow: 5px 5px 20px rgba(0,0,0,.3) !important;
    border-radius: 10px;
}


.lovleft {
    position: absolute;
    left: 10px;
    bottom: 0;
    z-index: 9999;
    user-select: none;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;*/
    font-family: Inter !important;
    background-color: rgba(0, 0, 0, 0.03) !important;
    box-shadow: 3px 3px 20px rgba(0,0,0,.3) !important;
    border-radius: 10px;
}

.lovright {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 9999;
    user-select: none;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;*/
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
    font-style: normal;
    background-color: rgba(0, 0, 0, 0.03) !important;
    box-shadow: 3px 3px 20px rgba(0,0,0,.3) !important;
    border-radius: 10px;
}

.animate.top {
    top: 0;
    left: 50%;
}

.animate.bottom {
    bottom: 0;
    left: 50%;
    margin-left: -100px;
}


.container-sm {
    width: 540px !important;
}

.container-md {
    width: 720px !important;
}

/*md: 720px,*/

.btnvstplclose {
    text-transform: none !important;
    /*font-weight: 600;*/
    background: #007bff !important;
    border-radius: 4px !important;
    padding: 5px !important;
}


.lovtitle {
    /*color: black !important;*/
    /*font-weight: 600 !important;
    background-color: white !important;
    border: 2px solid #1D85D0 !important;*/
}

.closesvg {
    position: absolute;
    right: 0;
    /*stroke: #5f6368;
    stroke-width: 1px;*/
    stroke-linecap: round;
    cursor: pointer;
}



.ribbon {
    font-size: 11pt;
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 100px;
    left: 200px;
}

.ribbon {
    --f: .5em; /* control the folded part*/
    --r: .8em; /* control the ribbon shape */
    position: absolute;
    top: 6px;
    left: calc(-1*var(--f));
    padding-inline: .25em;
    line-height: 1.8;
    --bs-bg-opacity: 1;
    background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;
    border-bottom: var(--f) solid #0005;
    border-right: var(--r) solid #0000;
    padding: 0 25px 0 30px;
    clip-path: polygon(calc(100% - var(--r)) 0,0 0,0 calc(100% - var(--f)),var(--f) 100%, var(--f) calc(100% - var(--f)),calc(100% - var(--r)) calc(100% - var(--f)), 100% calc(50% - var(--f)/2));
}



.popupribbon {
    --f: .5em; /* control the folded part*/
    --r: .8em; /* control the ribbon shape */
    position: absolute;
    top: -12px;
    left: -17px;
    padding-inline: .25em;
    line-height: 1.5;
    background: #987F69;
    border-bottom: var(--f) solid #0005;
    border-right: var(--r) solid #0000;
    padding: 0 25px 0 30px;
    clip-path: polygon(0 0,0 calc(100% - var(--f)),var(--f) 100%, var(--f) calc(100% - var(--f)),100% calc(100% - var(--f)), calc(100% - var(--r)) calc(50% - var(--f)/2),100% 0);
    font-weight: 600;
    font-size: 16px;
    color: white;
}




.lovwidth {
    width: calc(var(--vstpllovwidth) * 1px) !important;
}


.bindfooter tr td:first-child {
    background: linear-gradient(to bottom, rgb(255 255 255) 0%, rgb(238 235 235) 100%);
}
