.btn-theme {
    background-color: #1CB5E0;
    color: #ffffff;
    font-weight: 600;
    margin: 2px;
}

a.btn-theme:hover{
    color: #ffffff
}

.box {
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0.625rem;
    margin-top: 5%;
}

.box p,
.box h3 {
    color: #ffffff;
}

.theme-bg {
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.x-overflow {
    overflow: hidden;
}

.my-custom-scrollbar {
    position: relative;
    height: 600px;
    overflow: auto;
}

.table-wrapper-scroll-y {
    display: block;
}

.animateClass {
    animation-name: rotateThis;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotateThis {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

.modal-full {
    min-width: 80%;
    margin: 20;
}

.modal-full .modal-content {
    min-height: 80vh;
}

table .label{
    font-size: 10px;
}

.purple-bg{
    background-color: #9E3AB1;
    color: #ffffff;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
  }