[v-cloak] {
    opacity: 0
}

.trans {
    opacity: 0;
}

.trans.ready {
    opacity: 1 !important;
}

.personal-static-1000 {
    width: 155px;
    margin-left: auto;
    margin-right: auto;
}

.text-link {
    text-decoration: underline;
    color: blue
}

/* ========================= */
/* =====   Loading   ======= */
/* ========================= */

.loadingBase {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    z-index: 100000000;
}

.circleLoading {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 40%;
    left: 50%;
}

.circleLoading div {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -15px;
    left: -15px;
}

.circleLoading span {
    opacity: 0;
    display: block;
    background: #333333;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    -webkit-animation: fadeout 0.8s ease-in infinite forwards;
    -moz-animation: fadeout 0.8s ease-in infinite forwards;
    -ms-animation: fadeout 0.8s ease-in infinite forwards;
    -o-animation: fadeout 0.8s ease-in infinite forwards;
}

.circleLoading div:nth-child(1) {
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
}

.circleLoading div:nth-child(2) {
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
}

.circleLoading div:nth-child(3) {
    -webkit-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
}

.circleLoading div:nth-child(4) {
    -webkit-transform: rotateZ(135deg);
    -moz-transform: rotateZ(135deg);
}

.circleLoading div:nth-child(5) {
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
}

.circleLoading div:nth-child(6) {
    -webkit-transform: rotateZ(225deg);
    -moz-transform: rotateZ(225deg);
}

.circleLoading div:nth-child(7) {
    -webkit-transform: rotateZ(270deg);
    -moz-transform: rotateZ(270deg);
}

.circleLoading div:nth-child(8) {
    -webkit-transform: rotateZ(315deg);
    -moz-transform: rotateZ(315deg);
}

.circleLoading div:nth-of-type(1) span {
    -moz-animation-delay: 0s;
    -ms-animation-delay: 0s;
    -o-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.circleLoading div:nth-of-type(2) span {
    -moz-animation-delay: 0.1s;
    -ms-animation-delay: 0.1s;
    -o-animation-delay: 0.1s;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.circleLoading div:nth-of-type(3) span {
    -moz-animation-delay: 0.2s;
    -ms-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.circleLoading div:nth-of-type(4) span {
    -moz-animation-delay: 0.3s;
    -ms-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.circleLoading div:nth-of-type(5) span {
    -moz-animation-delay: 0.4s;
    -ms-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.circleLoading div:nth-of-type(6) span {
    -moz-animation-delay: 0.5s;
    -ms-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.circleLoading div:nth-of-type(7) span {
    -moz-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.circleLoading div:nth-of-type(8) span {
    -moz-animation-delay: 0.7s;
    -ms-animation-delay: 0.7s;
    -o-animation-delay: 0.7s;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

@-webkit-keyframes fadeout {
    0% {
        opacity: 0.1;
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
    }
}

@-moz-keyframes fadeout {
    0% {
        opacity: 0.1;
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
    }
}