﻿menu {
    cursor: pointer
}

body {
    cursor: pointer;
    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;
    }
}

/*******TAB***************/
/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 5px;
    transition: 0.3s;
    font-size: 14px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 0px;
    border: 1px solid #ccc;
    border-top: none;
}
/************************************/

.WaitPanel {
    position: fixed;
    text-align: center;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999999;
    background-color: #000000;
    opacity: 0.9;
}

.AnimPanel {
    border-width: 0px;
    position: fixed;
    padding: 50px;
    background-color: #ffffff;
    font-size: 24px;
    left: 50%;
    top: 50%;
    width: 12em;
    height: 6em;
    margin-top: -3em; /*set to a negative number 1/2 of your height*/
    margin-left: -6em; /*set to a negative number 1/2 of your width*/
    border-radius: 25px;
}

.ToolsPanel {
    position: fixed;
    text-align: center;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.7);
}

.OptionsPanel {
    border-width: 0px;
    position: fixed;
    padding: 10px;
    background-color: #ffffff;
    font-size: 18px;
    left: 50%;
    top: 50%;
    width: 14em;
    height: 14em;
    margin-top: -7em; /*set to a negative number 1/2 of your height*/
    margin-left: -7em; /*set to a negative number 1/2 of your width*/
    border-radius: 25px;
    opacity: 1;
}

.mnu-container {
    background-color: #333;
    font-family: Arial;
}

    .mnu-container a {
        float: left;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        transition: 0.5s;
    }

.mnu-dropdown {
    float: left;
    overflow: hidden;
    transition: 0.5s;
}

    .mnu-dropdown .mnu-dropbtn {
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        transition: 0.5s;
    }

    .mnu-container a:hover, a:focus, .mnu-dropdown:hover .mnu-dropbtn, .mnu-dropdown:focus .mnu-dropbtn {
        transition: 0.5s;
        color: coral;
        background-color: #f9f9f9;
    }

.mnu-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    transition: 0.5s;
}

    .mnu-dropdown-content a {
        transition: 0.5s;
        font-size: 14px;
        float: none;
        color: dimgray;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .mnu-dropdown-content a:hover, a:focus {
            transition: 0.5s;
            background-color: #ddd;
        }

    .mnu-dropdown:hover .mnu-dropdown-content, .mnu-dropdown:focus .mnu-dropdown-content {
        transition: 0.5s;
        display: block;
    }

td.details-control {
    text-align: center;
    color: forestgreen;
    cursor: pointer;
}

tr.shown td.details-control {
    text-align: center;
    color: red;
}