img {
    pointer-events:none;
}
@media print {
    html, body {
       display: none;  /* hide whole page */
    }
}


/* Not found */
.wrapperNotFound {
    min-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    background: #eee;
    overflow: hidden;
}

.wrapperNotFound .text_group {
    width: 100%;
}

.wrapperNotFound .text_group .text_404 {
    font-family: "Comic Neue", cursive;
    font-size: 10em;
    box-sizing: border-box;
    color: #363636;
    margin: 0;
}

.wrapperNotFound .text_group .text_lost {
    font-family: "Comic Neue", cursive;
    font-size: 2em;
    line-height: 50px;
    box-sizing: border-box;
    color: #565656;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    background: #0000009e;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:1000;
    top: 0;
    z-index: 999;
    left: 0;
}

#loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #132850;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide-loader {
    display: none;
}

/* Side menu */
.sidemenu {
    background: #e7e5e5;
    height: 100%;
}
.sidemenu  li{
    background: #dfdddd;
    padding: 0px 10px;
    margin-bottom: 10px;
}
.sidemenu  li:hover{
    background: #e3e0e0;
}
.sidemenu  li a{
    color: #122850;
    letter-spacing: 2px;
}
.danger{border: 1px solid red;}
