.text-to-right {
    text-align: right;
}

.row-height-standard {
    display: block;
    padding: 15px 0;
}

.link-theme {
    color: #e58200;
}

.link-theme:hover {
    text-decoration: underline;
}

.back-link:before {
    content: '← ';
}

.link-view-details {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.link-view-details img {
    height: 16px;
    opacity: 0.6;
}

.text-center {
    text-align: center;
}

.error-message {
    display: block;
    margin-bottom: 30px;
    color: #f00;
    font-size: .8rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: cubic-bezier(0.19, 0.51, 0.18, 0.8) all .3s;
    z-index: 10;
}

body.opened-sidebar,
body.shown-overlay {
    overflow: hidden;
}

body.opened-sidebar .overlay,
body.shown-overlay .overlay {
    opacity: 1;
    visibility: visible;
}

body.locked {
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-top: 3px solid var(--theme-color);
    border-right: 3px solid var(--theme-color);
    border-bottom: 3px solid var(--theme-color);
    border-left: 3px solid transparent;
    border-radius: 100%;
    animation: linear 5.3s spinner infinite;
}

.loading {
    text-align: center;
}

.loading-label {
    margin-top: 10px;
    color: #777;
    text-transform: uppercase;
    pointer-events: none;
}

.loading.large .spinner {
    width: 48px;
    height: 48px;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(3600deg);
    }
}

.box-logs {
    display: block;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: #f5f5f5;
    padding: 5px 10px;
}

.log-row {
    display: block;
    font-size: .8rem;
    padding: 5px 0;
}

.external-link:after {
    content: '';
    display: inline-block;
    background-image: url('../img/external-link.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    transform: translateY(-5px);
}

.arrow-down:after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('../img/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: 10px;
}

.hide {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tag-no-user:before {
    content: 'No User';
    text-transform: uppercase;
    display: block;
    float: left;
    padding: 7px 10px;
    font-size: 10px;
    background: #EF5350;
    border-radius: 4px;
    margin-right: 10px;
    font-weight: bold;
    color: #fff;
}

.bg-white {
    background-color: #fff;
}

.margin-top-medium {
    margin-top: 10%;
}

.shadow {
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.logout-content .headline {
    font-size: 3.5rem;
    line-height: 1.4;
}

.logout-content .sub-headline {
    font-size: 1.5rem;
    line-height: 1.4;
}

body .mobile,
body .mobile-flex {
    display: none;
}

@media (max-width: 767px) {
    body .mobile {
        display: block;
    }

    body .mobile-flex {
        display: flex;
    }

    body .no-mobile {
        display: none;
    }
}