html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* START General purpose */

table th, table td {
    text-align: center;
}

.hidden {
    display: none;
}

/* END General purpose */

/* START Dropdown Menu */

/* The container <div> - needed to position the dropdown content */
.dropdownMenu {
    position: relative;
    display: inline-block;
}

    .dropdownMenu > button {
        background-color: #F7F7F7;
        font-size: 16px;
        border: 1px black solid;
        cursor: pointer;
    }

        /* Dropdown button on hover & focus */
        .dropdownMenu > button:hover, .dropdownMenu > button:focus {
            background-color: #E0E0E0;
        }

    /* Dropdown Content (Hidden by Default) */
    .dropdownMenu > .actions {
        display: none;
        position: absolute;
        background-color: #F7F7F7;
        min-width: 140px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }

        /* Links inside the dropdown */
        .dropdownMenu > .actions > a {
            color: black;
            padding: 9px 9px;
            text-decoration: none;
            display: block;
            cursor: pointer;
        }

            /* Change color of dropdown links on hover */
            .dropdownMenu > .actions > a:hover {
                background-color: #E0E0E0;
            }

.show {
    display: block !important;
}

/* END Dropdown Menu */

/* START Tabs */
.tabs {
    overflow: hidden;
    border: none;
    background-color: #F7F7F7;
}

    /* Style the buttons inside the tab */
    .tabs button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        font-size: 15px;
    }

        /* Change background color of buttons on hover */
        .tabs button:hover {
            background-color: #E0E0E0;
        }

        /* Create an active/current tablink class */
        .tabs button.active {
            background-color: #E0E0E0;
        }

/* Style the tab content */
.tabContent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #F7F7F7;
    border-top: none;
}
/* END Tabs */


/* START Loader */
.pc-loader {
    color: #fff;
    position: fixed;
    box-sizing: border-box;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: 999999;
}

    .pc-loader:after,
    .pc-loader:before {
        box-sizing: border-box;
        display: none;
    }

    .pc-loader.is-active {
        background-color: rgba(0, 0, 0, 0.85);
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }

        .pc-loader.is-active:after,
        .pc-loader.is-active:before {
            display: block;
        }

@keyframes rotation {
    0% {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

.pc-loader[data-text]:before {
    position: fixed;
    left: 0;
    top: 50%;
    color: currentColor;
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;
    width: 100%;
    font-size: 14px;
}

.pc-loader[data-text=""]:before {
    content: "Loading";
}

.pc-loader[data-text]:not([data-text=""]):before {
    content: attr(data-text);
}

.pc-loader[data-text][data-blink]:before {
    animation: blink 1s linear infinite alternate;
}

.pc-loader-default[data-text]:before {
    top: calc(50% - 63px);
}

.pc-loader-default:after {
    content: "";
    position: fixed;
    width: 48px;
    height: 48px;
    border: 8px solid #fff;
    border-left-color: transparent;
    border-radius: 50%;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
    animation: rotation 1s linear infinite;
}

.pc-loader-default[data-half]:after {
    border-right-color: transparent;
}

.pc-loader-default[data-inverse]:after {
    animation-direction: reverse;
}
/* END Loader */