body{
    margin: 0;
}
.m-loading-layout{
    width: 100%;
    background: #FAFAFA;
    height: 100%;
}
.m-loading-layout-container{
    height: 100%;
    position: relative;
}
.m-loading-layout-top{
    display: none;
}
.m-loading-layout-body{
    width: 100%;
    height: 67%;
    background: #fff;
    position: absolute;
    bottom: 0;
}

/*Spinner*/

.m-loading-container{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(101, 101, 101, 0.13);
    display: table;
    height: 100%;
    width: 100%;
}

.m-loading-spiner-container{
    display: table-cell;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    vertical-align: middle;
}

.spinner {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 100px auto 100px auto;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #1594F6;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% {
          transform: scale(1.0);
          -webkit-transform: scale(1.0);
      }
}