﻿@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 35%;
    left: 10%;
    width: 30px;
    height: 30px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 5px solid #f6f;
    border-top-color: #0e0;
    border-right-color: #0dd;
    border-bottom-color: #f90;
    animation: spinner .5s linear infinite;
}

.OOP_Credit_bar {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 20px;
    margin: .5rem 0 1rem 0;
    border-radius: 2px;
    border: solid 1px pink;
    text-align: center;
    background-image: linear-gradient(90deg, rgba(10,240,71,1) 0%, rgba(190,182,31,0.3225665266106442) 52%, rgba(255,0,69,0.804359243697479) 100%);
}

.OOP_Process_Left {
    float: left;
    display: inline-block;
    width: 100px;
    height: 20px;
    background: blue;
    -webkit-transition: width .3s linear;
    -moz-transition: width .3s linear;
    -o-transition: width .3s linear;
    transition: width .3s linear;
    background-color: transparent;
}

.OOP_Process_right {
    float: left;
    display: inline-block;
    width: -moz-calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
    height: 100%;
    background-color: white;
}

.MyNumber::-webkit-inner-spin-button,
.MyNumber::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.OurSizeButton {
    font-weight: 700;
    line-height: 34px;
    display: block;
    width: 34px;
    height: 34px;
    text-align: center;
    border-radius: 3px;
    background: #ede7f6;
    margin: auto;
}

.myHeight_labels {
    height: 34px;
}

.myHeight_input {
    height: 54px;
}

.MyFlexible {
    font-size: 2vh;
    white-space: nowrap;
}

.sidenav li > a > img,
.sidenav li a.collapsible-header > img {
    line-height: 44px;
    height: 44px;
    margin: 0 10px 0 0;
}

.hmenu-translateX-left {
    transform: translateX(-100%);
}

.hmenu-visible {
    visibility: visible;
}

.hmenu-translateX {
    transform: translateX(0);
}

.cm_sidenav {
    /*position: absolute;
    width: 100px;
    height: 100px;
    background: blue;*/
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}

.slide-in {
    animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards;
}

.slide-in-right {
    animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards;
}

.slide-in-left {
    animation: slide-in 0.1s forwards;
    -webkit-animation: slide-in 0.1s backwards;
}

.slide-out {
    animation: slide-out 0.3s forwards;
    -webkit-animation: slide-out 0.3s forwards;
}

.slide-out-right {
    animation: slide-out 0.3s forwards;
    -webkit-animation: slide-out-right 0.3s forwards;
}

@keyframes slide-in {
    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slide-in {
    100% {
        -webkit-transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes slide-out {
    0% {
        -webkit-transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes slide-out-right {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

@-webkit-keyframes slide-out-right {
    0% {
        -webkit-transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(100%);
    }
}







@keyframes slide-in-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0%);
    }
}


@keyframes slide-in-left {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0%);
    }
}

