﻿/*@import url('css/open-iconic/font/css/open-iconic-bootstrap.min.css');*/

.box {
    float: right;
    height: 20px;
    width: 20px;
    border: 1px solid black;
    clear: both;
}

.loader {
    position: fixed;
    left: calc(50% - 20px);
    border: 6px solid #58585A; /* mustard grey */
    border-top: 6px solid #FAA21B; /* mustard orange */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

.wrap {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.text {
    color: #fbae17;
    display: inline-block;
    margin-left: 5px;
}

.tablecolor {
    background-color: #ff0000;
}

.bounceball {
    position: relative;
    display: inline-block;
    height: 37px;
    width: 15px;
}

    .bounceball:before {
        position: absolute;
        content: "";
        display: block;
        top: 0;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: #fbae17;
        transform-origin: 50%;
        -webkit-animation: bounce 500ms alternate infinite ease;
        animation: bounce 500ms alternate infinite ease;
    }

.bsboxshadow {
    border: 3px solid #175b96;
}

@keyframes bounce {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        transform: scaleX(2);
    }

    35% {
        height: 15px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0;
    }
}

.mud-nav-link-selected {
    color: orange !important;
}