body {
    padding-top: 70px;
}

[v-cloak] {
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.panel {
    top: 5px;
}

#jquery-loader-background {
    background-color: silver
}

#jquery-loader.blue-with-image {
    border: 2px #008587 solid;
    padding-top: 35px;
    background-color: white;
    text-align: center;
    background-image: url(../img/load.gif);
    background-position: center center;
    background-repeat: no-repeat;
}

.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: table;
    transition: opacity .3s ease;
}

.modal-display {
    display: block !important;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity .5s
}

.fade-enter, .fade-leave-to /* .fade-leave-active для <2.1.8 */
{
    opacity: 0
}

.margin-top-10 {
    margin-top: 10px;
}

#ajaxBusy {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -60px 0 0 -195px;
    width: 500px;
    height: 180px;
    background: #FFF url(../img/clock.gif) no-repeat;
    padding: 65px 10px 10px 200px;
    border: 1px #005F87 solid;
    font-weight: 400;
    font-size: 14px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px -4px #005F87;
    z-index: 10999;
}

.background-loader {
    opacity: 0.5;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    position: fixed;
}

.loader-content {
    position: relative;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    background: url("../img/clock.gif");
}

.loader-table {
    position: relative;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: white;
}

.list-item {
    display: inline-block;
    margin-right: 10px;
}

.list-enter-active, .list-leave-active {
    transition: all 1s;
}

.list-enter, .list-leave-to /* .list-leave-active для <2.1.8 */
{
    opacity: 0;
    transform: translateY(30px);
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.pull-bottom {
    /*display: inline-block;*/
    vertical-align: bottom;
    float: none;
}

.header-rb {
    border-bottom: 4px #000 solid;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.rb {
    border-bottom: 1px #000 solid;
    padding: 10px;
}

.top-margin-15 {
    margin-top: 15px;
}