﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

.modalLoader {
    display: none;
}

.loader {
    border: 16px solid #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    /*border-top: 16px solid #45ff76;
    border-bottom: 16px solid #45ff76;*/
    border-top: 16px solid #FAC80D;
    border-bottom: 16px solid #FAC80D;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    /*border-left: 16px solid #5358fc;
    border-right: 16px solid #5358fc;*/
    border-left: 16px solid #BDFA0D;
    border-right: 16px solid #BDFA0D;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-mn {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.39);
    z-index: 9999999;
}

.txtt {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: white;
    margin: auto;
    width: 100px;
    height: 100px;
    text-align: center;
    font-size: 31px;
    padding-top: 135px;
    text-shadow: 1px 1px 1px black;
    font-weight: 600;
}

td {
    font-weight: 500;
}

table.dataTable tr.odd {
    background-color: #CBE3FC;
}

    table.dataTable tr.odd:hover {
        background-color: #D4DDE7;
        color: #1C68B3;
    }

table.dataTable tr.even {
    background-color: whitesmoke;
}

    table.dataTable tr.even:hover {
        background-color: #D4DDE7;
        color: #1C68B3;
    }

#MyTable_filter {
    margin-bottom: 5px;
}

table.dataTable thead .sorting:before {
    color: #4fa5ff;
    margin-top: 2px;
    opacity: 1 !important;
}

table.dataTable thead .sorting_asc:before {
    margin-top: 2px;
    color: white;
    opacity: 1 !important;
}

table.dataTable thead .sorting_desc:before {
    margin-top: 2px;
    color: #4fa5ff;
    opacity: 1 !important;
}

table.dataTable thead .sorting:after {
    margin-top: 2px;
    color: #4fa5ff;
    opacity: 1 !important;
}


table.dataTable thead .sorting_asc:after {
    margin-top: 2px;
    color: #4fa5ff;
    opacity: 1 !important;
}

table.dataTable thead .sorting_desc:after {
    margin-top: 2px;
    color: white;
    opacity: 1 !important;
}