#loader_IETEC {
    position: fixed;
    left: 250px;
    top: 0px;
    z-index: 9999;
    height: 100%;
    width: 100%;
    background: url(../img/ietec_loader_1.png) center;
    opacity: 0.8;
    overflow: hidden;
    background-repeat: no-repeat;
    display: none;
}

#spinner_IETEC_1 {
    position: fixed;
    left: -125px;
    top: 0px;
    z-index: 9999;
    height: 100%;
    width: 100%;
    background: url(../img/ietec_spinner_1.png) center;
    opacity: 0.8;
    overflow: hidden;
    background-repeat: no-repeat;
    animation: spin2 4s infinite;
    display: none;
}

#spinner_IETEC_2 {
    position: fixed;
    left: -125px;
    top: 0px;
    z-index: 9999;
    height: 100%;
    width: 100%;
    background: url(../img/ietec_spinner_2.png) center;
    opacity: 0.8;
    overflow: hidden;
    background-repeat: no-repeat;
    animation: spin1 4s infinite;
    display: none;
}

@keyframes spin1 {
    0% {
        transform: rotate(0deg);
    }

    70% {
        transform: rotate(360deg);
    }

    80% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin2 {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.25) rotate(360deg);
        opacity: 0.5;
    }

    80% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

.nav-item {
    font-size: 22px;
}

.nav-main {
    background: #ffffff;
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
}

.tab-content {
    margin: 55px 0px 0px 10px;
}

#contentHeadline {
    margin-bottom: 5px;
    padding: 0px 0px 0px 0px !important;
    text-align: center;
    color: white;
    background-color: gray;
    font-weight: 900;
    font-size: 20px;
}

#headlineContent {
    text-align: center;
    margin-top: 150px;
    color: gray;
}

#outputHeadline {
    margin: 0px 0px 5px 0px !important;
}

#customerName {
    padding: 5px 5px 0px 5px;
    margin: 7px 10px 0px 10px;
    font-size: 18px;
    font-weight: 700;
}

#inputEmail,
#inputPassword {
    margin: 15px 25px 15px 15px !important;
}

.btn {
    padding: 2px 30px 2px 30px !important;
    margin: 5px 20px 5px 20px !important;
}

.table {
    border: 5px solid black;
}

td,
th {
    padding: 1px 0px 0px 0px !important;
    text-align: center;
}

th {
    border-top: 0px !important;
    border-bottom: 0px !important;
    font-size: 8px;
    font-weight: 900;
    width: 3.0%;
}

td {
    border: 1px solid #2E2E2E;
    font-size: 5px;
    height: 10px !important;
    font-weight: 900;
}

tr td:nth-child(1) {
    padding: 1px 0px 1px 1px !important;
    text-align: left;
    font-size: 6px;
    font-weight: 900;
    width: 1.8%;
}

.bigBorderTop {
    border-top: 2px solid black;
}

.bigBorderLeft {
    border-left: 2px solid black;
}

.backWhite {
    background-color: white !important;
}

.backRed {
    background-color: red;
    color: white;
}

i {
    cursor: pointer;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}