﻿body {
    margin: 0;
}

.bg {
    animation: slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #D6E4E5 50%, #EFF5F5 50%);
    bottom: 0;
    left: -50%;
    opacity: .5;
    position: fixed;
    right: -50%;
    top: 0;
    z-index: -1;
}

.bg2 {
    animation-direction: alternate-reverse;
    animation-duration: 4s;
}

.bg3 {
    animation-duration: 5s;
}

.content {
    background-color: rgba(255,255,255,.8);
    border-radius: .25em;
    box-shadow: 0 0 .25em rgba(0,0,0,.25);
    box-sizing: border-box;
    left: 50%;
    padding: 10vmin;
    position: fixed;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes slide {
    0% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(25%);
    }
}

.spinner-icon {
    width: 64px;
    -webkit-animation: busyIcon 3s linear infinite;
    -moz-animation: busyIcon 3s linear infinite;
    animation: busyIcon 3s linear infinite;
}

.spinner-icon2 {
    width: 64px;
    -webkit-animation: busyIcon2 3s linear infinite;
    -moz-animation: busyIcon2 3s linear infinite;
    animation: busyIcon2 3s linear infinite;
}

@-moz-keyframes busyIcon {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes busyIcon {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes busyIcon2 {
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-moz-keyframes busyIcon2 {
    100% {
        -moz-transform: rotate(-360deg);
    }
}

@-webkit-keyframes busyIcon2 {
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes busyIcon2 {
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%
}

.imgWheelLeft {
    position: relative;
    bottom: -47px;
    right: 25px;
}

.imgWheelRight {
    position: relative;
    left: 25px;
}

.display-flex {
    display: flex;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.text-muted {
    color: #6c757d !important;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    line-height: 1;
    text-align: center;
}

.topCenter {
    position: fixed;
    top: 25%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%
}

.filter-custom-color {
    filter: invert(12%) sepia(22%) saturate(1200%) hue-rotate(341deg) brightness(95%) contrast(85%);
}

.bmc-app-title {
    font-family: Sitka Heading;
    font-style: normal;
    font-weight: normal;
    font-size: 1.65em;
    white-space: nowrap;
}

.full-screen-aside {
    height: 100%;
    width: 100%;
}

.logoutBtn {
    width: 100px;
}

.d-hide {
    display:none;
}

.font-size-14{
    font-size:14px;
}