.loading-container {
    height: 266px;
    padding: 10px;
}
.loading-nick {
    border: 1px solid var(--border-default-color);
    border-radius: 12px;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: wave;
    animation-timing-function: linear;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: wave;
    -webkit-animation-timing-function: linear;
    -moz-animation-duration: 1s;
    -moz-animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: wave;
    -moz-animation-timing-function: linear;
    background: #dddddd;
    background-image: -webkit-gradient(
        linear,
        left center,
        right center,
        from(#dddddd),
        color-stop(0.2, #f5f5f5),
        color-stop(0.4, #e5e5e5),
        to(#dddddd)
    );
    background-image: -webkit-linear-gradient(
        left,
        #dddddd 0%,
        #f5f5f5 20%,
        #e5e5e5 40%,
        #dddddd 100%
    );
    background-image: -moz-gradient(
        linear,
        left center,
        right center,
        from(#dddddd),
        color-stop(0.2, #f5f5f5),
        color-stop(0.4, #e5e5e5),
        to(#dddddd)
    );
    background-image: -moz-linear-gradient(
        left,
        #dddddd 0%,
        #f5f5f5 20%,
        #e5e5e5 40%,
        #dddddd 100%
    );
    background-repeat: no-repeat;
    background-size: 800px 266px;
    height: 266px;
    position: relative;
}
.reverse-direction .loading-nick {
    -webkit-animation-direction: reverse;
    -moz-animation-direction: reverse;
}
.loading-nick div {
    background: #fff;
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
}
div.shape1 {
    height: 240px;
    left: 0px;
    right: auto;
    top: 12px;
    width: 12px;
}
div.shape2 {
    height: 240px;
    left: auto;
    right: 0px;
    top: 12px;
    width: 12px;
}
div.shape3 {
    height: 12px;
    top: 0px;
    bottom: auto;
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
div.shape4 {
    height: 12px;
    top: auto;
    bottom: 0px;
    width: 100%;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
div.shape5 {
    height: 12px;
    top: 100px;
    left: 1px;
    width: 95%;
}
div.shape6 {
    height: 12px;
    top: 124px;
    left: 1px;
    width: 95%;
}
div.shape7 {
    height: 17px;
    top: 146px;
    left: 1px;
    width: 95%;
}
div.shape8 {
    height: 11px;
    top: 176px;
    left: 1px;
    width: 95%;
}
div.shape9 {
    height: 13px;
    top: 198px;
    left: 1px;
    width: 95%;
}
@-webkit-keyframes wave {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}
@-moz-keyframes wave {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}
