body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
    font-size: 13px;
}

.page {
    display: flex;
    flex-wrap: wrap;

    min-height: 100vh;
}

.page__left {
    width: 230px;
    
    background-color: #314055;
}

.page__right {
    flex-direction: column;
    
    flex: 1;
}

.navigation {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation__item {
    margin-bottom: 5px;
    position: relative;
}

.navigation__item--selected {
    border-left: 5px solid #1abb9c;
}

.navigation__item--selected:before {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -9px;
    width: 0;
    height: 0;

    content: "";
    border-style: solid;
    border-width: 9px 10px 9px 0;
    border-color: transparent #f7f7f7 transparent transparent;
}

.navigation__item--selected .navigation__link {
    text-shadow: rgba(0,0,0,.25) 0 -1px 0;
    background: linear-gradient(#334556,#2C4257),#2A3F54;
    box-shadow: rgba(0,0,0,.25) 0 1px 0, inset rgba(255,255,255,.16) 0 1px 0;
}

.navigation__link {
    display: block;
    padding: 13px 15px 12px;
    
    color: #e7e7e7;
    font-weight: 500;
    text-decoration: none;
}

.navigation__link:hover {
    color: #f2f5f7;
    text-decoration: none;
    background-color: #555d6f;
}

.navigation__link:focus {
    text-decoration: none;
    color: #e7e7e7;
}

.navigation__icon {
    width: 26px;
    vertical-align: baseline;

    font-size: 18px;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    
    height: 58px;
    padding: 0 20px;
    
    background-color: #ececec;
    border-bottom: 1px solid #d9dde3;
}

.content {
    padding: 20px;
}

.main-title {
    color: #fff;
}

.page-header {
    margin: 0 0 30px 0;
}

.user {
    
}

.user__icon {
    font-size: 32px;
}

.user__logged {

}

.user__link {
    display: flex;
    align-items: center;
    
    height: 100%;
    padding: 0 20px;
    
    color: #515356;
    text-decoration: none;
}

.user__link:hover {
    background-color: #d9dde3;
}

.user__link:hover {
    text-decoration: none;
    color: #515356;
}

.user__icon {
    margin-right: 10px;
}

.user__name {
    font-weight: 500;
}

.user__mode {
    font-size: 10px;
    font-style: italic;
    font-weight: 300;
}

.helpdesk {
    margin-top: 13px;
    margin-right: 10px;
    
    font-size: 32px;
    color: #515356;
}

.index-menu {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;

    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    background: #fff;
    transition: all .2s;
    box-shadow: 1px 3px 4px 0 rgba(0, 0, 0, 0.15);
}

.index-menu:hover {
    box-shadow: 5px 3px 5px 2px rgba(0, 0, 0, 0.15);
}

.index-menu__text {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 40px;

    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.index-menu__icon {
    height: 80px;
    line-height: 80px;
    
    font-size: 20px;
    color: #5b8cda;
}

.index-menu__icon i {
    vertical-align: middle;
}

.custom-cross {
    cursor: pointer;
    display: inline-block;
    margin-left: 30px;
}

.loading {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;

    width: 100%;
    height: 100%;
}

.atom {
    margin: auto;
    width: 40px;
    height: 40px;
}

@media only screen and (max-width: 600px) {
    .table_td {
        min-width: 600px;
        white-space: nowrap;
    }
}

.centerdot {
    width: 20px;
    height: 20px;
    position: relative;
    top: 16px;
    left: 16px;
    background-color: #2980b9;
    border-radius: 100%;
    -webkit-animation: shake 1.0s infinite linear;
    animation: shake 1.0s infinite linear;
}

.spinner {
    width: 50px;
    height: 50px;
    position: relative;
    text-align: center;
    margin-top: -16px;
    -webkit-animation: rotate 1.5s infinite linear;
    animation: rotate 1.5s infinite linear;

}

.dot1, .dot2, .dot3, .dot4 {
    width: 20%;
    height: 20%;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: auto;
    background-color: #222f3f;
    border-radius: 100%;
    right: 0;
    -webkit-animation: bounce 3.0s infinite ease-in-out;
    animation: bounce 3.0s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0px;
    -webkit-animation-delay: -.75s;
    animation-delay: -.75s;
}

.dot3 {
    top: auto;
    left: 0;
    -webkit-animation-delay: -1.5s;
    animation-delay: -1.5s;
}

.dot4 {
    top: auto;
    bottom: 0;
    left: 0;
    -webkit-animation-delay: -2.0s;
    animation-delay: -2.0s;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0.2)
    }
    75% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    75% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

@keyframes shake {
    0% {
        transform: translate(2px, 2px);
        -webkit-transform: translate(2px, 2px);
    }
    10% {
        transform: translate(1px, 4px);
        -webkit-transform: translate(1px, 4px);
    }
    20% {
        -webkit-transform: translate(-2px, -3px);
        transform: translate(-2px, -3px);
    }
    30% {
        -webkit-transform: translate(0px, 1px);
        transform: translate(0px, 1px);
    }
    40% {
        -webkit-transform: translate(2px, 0px);
        transform: translate(2px, 0px);
    }
    50% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }
    60% {
        -webkit-transform: translate(-3px, 3px);
        transform: translate(-3px, 3px);
    }
    70% {
        -webkit-transform: translate(1px, 2px);
        transform: translate(1px, 2px);
    }
    80% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
    90% {
        -webkit-transform: translate(2px, 3px);
        transform: translate(2px, 3px);
    }
    100% {
        -webkit-transform: translate(3px, 0px);
        transform: translate(3px, 0px);
    }
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: translate(2px, 2px)
    }
    10% {
        -webkit-transform: translate(1px, 4px)
    }
    20% {
        -webkit-transform: translate(-2px, -3px)
    }
    30% {
        -webkit-transform: translate(0px, 1px)
    }
    40% {
        -webkit-transform: translate(2px, 0px)
    }
    50% {
        -webkit-transform: translate(-2px, 2px)
    }
    60% {
        -webkit-transform: translate(-3px, 3px)
    }
    70% {
        -webkit-transform: translate(1px, 2px)
    }
    80% {
        -webkit-transform: translate(0px, 0px)
    }
    90% {
        -webkit-transform: translate(2px, 3px)
    }
    100% {
        -webkit-transform: translate(3px, 0px)
    }
}