﻿#interactionBar {
    overflow: hidden;
}

#interactionBar .inner-content {
    display: flex;
    height: 100%;
}

.copyright-info {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 0 0px 15px;
}

.copyright-info p {
    margin: 0;
    font-size: 12px;
    color: #8d8d8d;
}

.modal-title {
    font-size: 18px;
}

.logo-container .image {
    text-align: center;
    margin: 15px 0 5px;
}

.logo-container .image img {
    width: 65px;
}

.delete-info {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 0 0px 15px;
}

.delete-info p {
    margin: 0 5px 0 0;
    font-size: 14px;
}

.btn-auto-width {
    width: auto;
    min-width: auto;
}

.loader-wraper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #b6b6b640;
}


.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: relative;
    top: 45%;
    left: 50%;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



table.rotate-table-grid {
    box-sizing: border-box;
    border-collapse: collapse;
}

.rotate-table-grid tr,
.rotate-table-grid td,
.rotate-table-grid th {
    border: 1px solid #ddd;
    position: relative;
    padding: 3px 10px;
    font-size: 11px;
    vertical-align: middle;
    text-align: justify;
}

.rotate-table-grid td span {

    transform-origin: 0 50%;
    transform: rotate(-90deg);
    white-space: nowrap;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
}

table.rotate-table-grid .bg-yellow {
    background-color: yellow;
}

table.rotate-table-grid .bg-grey {
    background-color: rgb(180, 180, 180);
}

table.rotate-table-grid .bg-green {
    background-color: rgb(83, 126, 18);
}

table.rotate-table-grid .bg-lightBlue {
    background-color: rgb(169, 195, 250);
}

table.rotate-table-grid .bg-brown {
    background-color: rgb(248, 209, 100);
}

table.rotate-table-grid .bg-rose {
    background-color: rosybrown
}

table.rotate-table-grid .bg-olive {
    background-color: darkolivegreen
}

table.rotate-table-grid .bg-orange {
    background-color: rgb(221, 193, 32);
}

table.rotate-table-grid .bg-burlywood {
    background-color: burlywood
}


table.rotate-table-grid .bg-lightGreen {
    background-color: rgb(154, 194, 95);
    font-weight: bold;
}

table.rotate-table-grid th.fixed,
td.fixed {
    z-index: 10;
    position: sticky;
    
}