/*loading styles*/
.course-details-spinner__container {
    position: relative;
    width: 100%;
    min-height: 100px;
    text-align: center;
    display: flex;
    align-items: center;
}

@keyframes jumping {
    0% {
        padding-bottom: 0px;
    }
    25% {
        padding-bottom: 10px;
    }
    50% {
        padding-bottom: 15px;
    }
    75% {
        padding-bottom: 10px;
    }
    100% {
        padding-bottom: 0px;
    }
}
.duck-family-loader {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    height: 65px;
    width: 100%;
    z-index: 999;
}
.duck {
    font-size: 40px;
}
.duckling {
    font-size: 20px;
}
.animation-jumping {
    animation-name: jumping;
    animation-duration: 0.5s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}
.animation-jumping:nth-of-type(2) {
    animation-delay: 0.2s;
}
.animation-jumping:nth-of-type(3) {
    animation-delay: 0.3s;
}
.animation-jumping:nth-of-type(4) {
    animation-delay: 0.4s;
}
.animation-jumping:nth-of-type(5) {
    animation-delay: 0.5s;
}
.animation-jumping:nth-of-type(6) {
    animation-delay: 0.6s;
}
