/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 23 Aug, 2022, 12:09:38 PM
    Author     : Debajit
*/

.cardHeading{
    background: #0f0c29;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
}

.backindown{
    /*border-radius: 15px;*/
    /*    background: #24C6DC;   fallback for old browsers 
        background: -webkit-linear-gradient(to right, #514A9D, #24C6DC);   Chrome 10-25, Safari 5.1-6 
        background: linear-gradient(to right, #514A9D, #24C6DC);  W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ 
        color: white;*/
    animation: backInDown; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s; /* don't forget to set a duration! */
    border: none;
    /*    box-sizing: border-box;
        box-shadow: 0px 5px 0px 0px blueviolet;*/
}
.totalCount {
    background: blue;
    color: white;
    padding: 5px 15px 5px 15px;
    width: 150px;
}

.item{
    padding: 25px;
    background:rgb(95, 24, 161);
    color: white;
}

#cover {
    position: fixed;
    height: 100%;
    width: 100%;
    top:0; 
    left: 0; 
    background: white; 
    z-index:9999;
}
.middle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 999 ;
}
.bar {
    width: 10px;
    height: 70px;
    background: #fff;
    display: inline-block;
    transform-origin: bottom center;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    /*   box-shadow:5px 10px 20px inset rgba(255,23,25.2); */
    animation: loader 1.2s linear infinite;
}
.bar1 {
    animation-delay: 0.1s;
}
.bar2 {
    animation-delay: 0.2s;
}
.bar3 {
    animation-delay: 0.3s;
}
.bar4 {
    animation-delay: 0.4s;
}
.bar5 {
    animation-delay: 0.5s;
}
.bar6 {
    animation-delay: 0.6s;
}
.bar7 {
    animation-delay: 0.7s;
}
.bar8 {
    animation-delay: 0.8s;
}

#loader{
    box-sizing: border-box;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-top: 10px solid blue;
}


@keyframes loader {
    0% {
        transform: scaleY(0.1);
        background: ;
    }
    50% {
        transform: scaleY(1);
        background: orangered;
    }
    100% {
        transform: scaleY(0.1);
        background: transparent;
    }
}


table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td {
    text-align: center;
}
.input-required {
    border: 2px solid red;
}
.required-text {
    position: absolute;
    left: 0;
    bottom: -25px;
    display: none;
    color: white;
    background-color: red;
    padding: 0 5px;
    border-radius: 5px;
    font-size: 14px;
}
.text-alert * {
    color: red !important;
}






/*end of top and side bar css*/ 





.dash-box {
    position: relative;
    background: rgb(255, 86, 65);
    background: -moz-linear-gradient(top, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);
    filter: progid DXImageTransform.Microsoft.gradient( startColorstr='#ff5641', endColorstr='#fd3261', GradientType=0);
    border-radius: 4px;
    text-align: center;
    margin: 60px 0 50px;
}
.dash-box-icon {
    position: absolute;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
}
.dash-box-action {
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    left: 50%;
}
.dash-box-body {
    padding: 0px;
}
.dash-box-icon:after {
    width: 60px;
    height: 60px;
    position: absolute;
    background: rgba(247, 148, 137, 0.91);
    content: '';
    border-radius: 50%;
    left: -10px;
    top: -10px;
    z-index: -1;
}
.dash-box-icon > i {
    background: #ff5444;
    border-radius: 50%;
    line-height: 40px;
    color: #FFF;
    width: 40px;
    height: 40px;
    font-size:22px;
}
.dash-box-icon:before {
    width: 75px;
    height: 75px;
    position: absolute;
    background: rgba(253, 162, 153, 0.34);
    content: '';
    border-radius: 50%;
    left: -17px;
    top: -17px;
    z-index: -2;
}
.dash-box-action > button {
    border: none;
    background: #FFF;
    border-radius: 19px;
    padding: 7px 16px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .5px;
    color: #003e85;
    box-shadow: 0 3px 5px #d4d4d4;
}
.dash-box-body > .dash-box-count {
    display: block;
    font-size: 30px;
    color: #FFF;
    font-weight: 300;
}
.dash-box-body > .dash-box-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.81);
}

.dash-box.dash-box-color-2 {
    background: rgb(252, 190, 27);
    background: -moz-linear-gradient(top, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);
    background: -webkit-linear-gradient(top, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);
    background: linear-gradient(to bottom, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fcbe1b', endColorstr='#f85648', GradientType=0);
}
.dash-box-color-2 .dash-box-icon:after {
    background: rgba(254, 224, 54, 0.81);
}
.dash-box-color-2 .dash-box-icon:before {
    background: rgba(254, 224, 54, 0.64);
}
.dash-box-color-2 .dash-box-icon > i {
    background: #fb9f28;
}

.dash-box.dash-box-color-3 {
    background: rgb(183,71,247);
    background: -moz-linear-gradient(top, rgba(183,71,247,1) 0%, rgba(108,83,220,1) 100%);
    background: -webkit-linear-gradient(top, rgba(183,71,247,1) 0%,rgba(108,83,220,1) 100%);
    background: linear-gradient(to bottom, rgba(183,71,247,1) 0%,rgba(108,83,220,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b747f7', endColorstr='#6c53dc',GradientType=0 );
}
.dash-box-color-3 .dash-box-icon:after {
    background: rgba(180, 70, 245, 0.76);
}
.dash-box-color-3 .dash-box-icon:before {
    background: rgba(226, 132, 255, 0.66);
}
.dash-box-color-3 .dash-box-icon > i {
    background: #8150e4;
}
.dash-box.dash-box-color-4 {
    background: rgb(64, 174, 209);
    background: -moz-linear-gradient(top, rgba(64, 174, 209,1) 0%, rgba(108,83,220,1) 100%);
    background: -webkit-linear-gradient(top, rgba(64, 174, 209,1) 0%,rgba(108,83,220,1) 100%);
    background: linear-gradient(to bottom, rgba(64, 174, 209,1) 0%,rgba(108,83,220,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40aed1', endColorstr='#5040d1',GradientType=0 );
}
.dash-box-color-4 .dash-box-icon:after {
    background: rgba(77, 192, 227, 0.76);
}
.dash-box-color-4 .dash-box-icon:before {
    background: rgba(126, 250, 237, 0.66);
}
.dash-box-color-4 .dash-box-icon > i {
    background: #40aed1;
}

.dash-box.dash-box-color-5 {
    background: rgb(4, 216, 7);
    background: -moz-linear-gradient(top, rgba(4, 216, 7,1) 0%, rgba(0,153,0,1) 100%);
    background: -webkit-linear-gradient(top, rgba(4, 216, 7,1) 0%,rgba(0,153,0,1) 100%);
    background: linear-gradient(to bottom, rgba(4, 216, 7,1) 0%,rgba(0,153,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#04d807', endColorstr='#009900',GradientType=0 );
}
.dash-box-color-5 .dash-box-icon:after {
    background: rgba(52, 181, 52, 0.76);
}
.dash-box-color-5 .dash-box-icon:before {
    background: rgba(149, 249, 149, 0.66);
}
.dash-box-color-5 .dash-box-icon > i {
    background: #048c04;
}
.dash-box.dash-box-color-6 {
    background: rgb(51, 204, 204);
    background: -moz-linear-gradient(top, rgba(51, 204, 204,1) 0%, rgba(0, 51, 102,1) 100%);
    background: -webkit-linear-gradient(top, rgba(51, 204, 204,1) 0%,rgba(0, 51, 102,1) 100%);
    background: linear-gradient(to bottom, rgba(51, 204, 204,1) 0%,rgba(0, 51, 102,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#04d807', endColorstr='#009900',GradientType=0 );
}
.dash-box-color-6 .dash-box-icon:after {
    background: rgba(19, 153, 153, 0.76);
}
.dash-box-color-6 .dash-box-icon:before {
    background: rgba(27, 186, 186, 0.66);
}
.dash-box-color-6 .dash-box-icon > i {
    background: #118787;
}
canvas{
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.panel-heading2 {
    background-image: url(images/00561b139b9f014.jpg);
    background-position: center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    height:122px;
}
.bg {
    /* The image used */
    background-image:  url(images/main-sec-image.png);
    opacity: 0.8;
    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.blink{
    color:red;
    font-size:12px;
    font-weight: bold;
    animation:blink_animation .5s infinite;
}
@keyframes blink_animation {
    50%   {color:red;}      
    100% {color:green;}
}
/* Carousel Control */
.carousel-control     		 { width:  4%; }
.carousel-control.left,.carousel-control.right {margin-left:15px;background-image:none;}
@media (max-width: 767px) {
    .carousel-inner .active.left { left: -100%; }
    .carousel-inner .next        { left:  100%; }
    .carousel-inner .prev		 { left: -100%; }
    .active > div { display:none; }
    .active > div:first-child { display:block; }

}
.carousel {
    margin-bottom: 0;
    padding: 0 40px 30px 40px;
}
/* The controlsy */
.carousel-control {
    left: -12px;
    height: 40px;
    width: 40px;
    background: none repeat scroll 0 0 #222222;
    border: 4px solid #FFFFFF;
    border-radius: 23px 23px 23px 23px;
    margin-top: 90px;
}
.carousel-control.right {
    right: -12px;
}
/* The indicators */
.carousel-indicators {
    right: 50%;
    top: auto;
    bottom: -10px;
    margin-right: -19px;
}
/* The colour of the indicators */
.carousel-indicators li {
    background: #cecece;
}
.carousel-indicators .active {
    background: #428bca;
}

.blockquote-box{border-right:5px solid #E6E6E6;margin-bottom:10px}
.blockquote-box .square{width:100px;min-height:50px;margin-right:10px;text-align:center!important;background-color:#E6E6E6;padding:10px 0}
.blockquote-box.blockquote-warning{border-color:#EEA236}
.blockquote-box.blockquote-warning .square{background-color:#F0AD4E;color:#FFF}
.btn-round-lg{
    border-radius: 22.5px;
}
.container-marquee{
    position: relative;
    width:100%; /*marquee width */
    height: 200px; /*marquee height */
    overflow: hidden;
    background-color: white;
    padding: 2px;
    padding-left: 4px;
}
.container1 ul, .container1 ul li {
    padding: 0;
    margin-left: 5px;
    list-style: none;
    text-align: left;
}

.container1 {
    width: 100%;
    height: 30vh;
    line-height: 30px;
    border-radius:5px;
    overflow: Hidden;
    background-color:transparent;
    color:#000000;
    padding: 5px 0;
    margin: 2px auto;
}

.btn-circlen {
    width: 25px;
    height: 25px;
    text-align: center;
    padding: 3px 0;
    font-size: 11px;
    line-height: 1.428571429;
    border-radius: 15px;
}
.btn-glyphicon { padding:8px; background:#ffffff; margin-right:4px; }
.icon-btn { padding: 1px 15px 3px 2px; border-radius:50px;}
.gradient-orange {
    background: #ffb33b;
    background: radial-gradient(ellipse at center, #ff5221 0%, #ffb33b 100%);
    background-size: 250% 250%;
}
.gradient-red {
    background: #ff3b30;
    background: radial-gradient(ellipse at center, #bb0502 0%, #ff3b30 100%);
    background-size: 250% 250%;
}
.dark-bluesky{background-color: #3BAFDA!important; color:#fff!important}

#fade {
    display: none;
    position:absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #ababab;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .70;
    filter: alpha(opacity=80);
}

#modal {
    display: none;
    position: absolute;
    top: 45%;
    left: 45%;
    width: 12%;
    height: 12vh;
    padding:30px 15px 0px;
    border: 3px solid #ababab;
    box-shadow:1px 1px 10px #ababab;
    border-radius:20px;
    background-color: white;
    z-index: 1002;
    text-align:center;
    overflow: auto;
}
.row-flex {
    display: flex;
    flex-wrap: wrap;
}
.content {
    height: 65%;
    padding: 10px 10px 5px;
    color: #fff;
}
footer.page-footer {
    bottom: 0;
    color: #fff;
}
.font-small {
    font-size: .9rem;
}
.blue {
    background-color: #2196f3 !important;
}
.pt-4, .py-4 {
    padding-top: 1.5rem !important;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}
footer.page-footer .footer-copyright {
    overflow: hidden;
    /*color: rgba(255,255,255,0.6);*/
    color: #ffffff;
    background-color: rgba(0,0,0,0.2);
}
.text-center {
    text-align: center !important;
}
.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}
.pt-3, .py-3 {
    padding-top: 1rem !important;
}
.modal.modal-fullscreen .modal-dialog {
    width: 90vw;
    height: 90vh;
    display: inline-block;
    padding: 0;
    max-width: none; 
    vertical-align: middle;
    top:50% !important;
    transform: translate(0, -50%) !important;
    -ms-transform: translate(0, -50%) !important;
    -webkit-transform: translate(0, -50%) !important;
    margin:auto 5%;
}

.modal.modal-fullscreen .modal-content {
    height: auto;
    height: 90vh;
    border-radius: 0;
    border: none; 
}

.modal.modal-fullscreen .modal-body {
    overflow-y: auto; 
}
.img-size{
    /*  padding: 0;
        margin: 0; */
    height: 75vh;
    width: 99%;
    background-size: cover;
    overflow: hidden;
}


