:root {
    --rb-size: 70px;
    --rb-color: #FE7F45;
}

.masks-circle {
    display: none;
    z-index: 0;
}

.class-view {
    display: flex !important;
    z-index: 8000 !important;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding-bottom: 7%;
}

.rb-center {
    margin: auto;
}

.rb-circle {
    width: var(--rb-size);
    height: var(--rb-size);
    position: relative;
}

.rb-circle-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    /*border: 1px solid red;*/
    left: 0;
    top: 0;
}

.rb-circle-dot:before {
    content: '';
    display: block;
    width: 16%;
    height: 16%;
    background-color: var(--rb-color);
    border-radius: 100%;
    animation: rb-circle 1.2s infinite ease-in-out both;
}

.rb-circle-dot:nth-child(1) {
    transform: rotate(30deg);
}

.rb-circle-dot:nth-child(2) {
    transform: rotate(60deg);
}

.rb-circle-dot:nth-child(3) {
    transform: rotate(90deg);
}

.rb-circle-dot:nth-child(4) {
    transform: rotate(120deg);
}

.rb-circle-dot:nth-child(5) {
    transform: rotate(150deg);
}

.rb-circle-dot:nth-child(6) {
    transform: rotate(180deg);
}

.rb-circle-dot:nth-child(7) {
    transform: rotate(210deg);
}

.rb-circle-dot:nth-child(8) {
    transform: rotate(240deg);
}

.rb-circle-dot:nth-child(9) {
    transform: rotate(270deg);
}

.rb-circle-dot:nth-child(10) {
    transform: rotate(300deg);
}

.rb-circle-dot:nth-child(11) {
    transform: rotate(330deg);
}

.rb-circle-dot:nth-child(1):before {
    animation-delay: -1.1s;
}

.rb-circle-dot:nth-child(2):before {
    animation-delay: -1s;
}

.rb-circle-dot:nth-child(3):before {
    animation-delay: -0.9s;
}

.rb-circle-dot:nth-child(4):before {
    animation-delay: -0.8s;
}

.rb-circle-dot:nth-child(5):before {
    animation-delay: -0.7s;
}

.rb-circle-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

.rb-circle-dot:nth-child(7):before {
    animation-delay: -0.5s;
}

.rb-circle-dot:nth-child(8):before {
    animation-delay: -0.4s;
}

.rb-circle-dot:nth-child(9):before {
    animation-delay: -0.3s;
}

.rb-circle-dot:nth-child(10):before {
    animation-delay: -0.2s;
}

.rb-circle-dot:nth-child(11):before {
    animation-delay: -0.1s;
}

@keyframes rb-circle {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

