.skeleton-container {
    height: 100vh;
    overflow-y: hidden;
}

.skeleton-container * {
    max-width: 100%;
}

.skeleton-container .d-flex {
    flex: 1;
    display: flex;
}

.skeleton-container .d-flex-center {
    flex: 1;
    display: flex;
    align-items: center;
}

.skeleton-container .d-flex-content-end {
    display: flex;
    justify-content: flex-end;
}

.skeleton-container .flex-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.skeleton-container .flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skeleton-container .skeleton-box,
.skeleton-container .skeleton-circle {
    box-sizing: border-box;
    /** * `overflow` and `position` are required steps to make sure * the component respects the specified dimensions * given via `theme` object @Input attribute */
    overflow: hidden;
    position: relative;
    background: #eff1f6 no-repeat;
    border-radius: 4px;
    min-height: 20px;
    will-change: transform;
    /** * Added only when `appearance` attribute is `circle` * at component level. So that we can use it only if needed */
    /** * Added only when `animation` attribute is `progress` * at component level. So that we can load the * animations only if needed */
    /** * Added only when `animation` attribute is `pulse` * at component level. So that we can load the * animations only if needed */
}

.skeleton-container .skeleton-box:after,
.skeleton-container .skeleton-box:before,
.skeleton-container .skeleton-circle:after,
.skeleton-container .skeleton-circle:before {
    box-sizing: border-box;
}

.skeleton-container .skeleton-circle {
    border-radius: 50%;
}

.skeleton-container .skeleton-box {
    transform: translate3d(0, 0, 0);
}

.skeleton-container .skeleton-box:before {
    animation: progress 2s ease-in-out infinite;
    background-size: 100% 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
}

.skeleton-container .skeleton-box:before {
    background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.skeleton-container .skeleton-box.loaded {
    background: none;
}

.skeleton-container .skeleton-box.loaded:before {
    content: none;
    /* Remove the skeleton animation after loading */
}

.skeleton-container .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 1px;
}

.skeleton-container .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.skeleton-container .page-top-banner {
    margin: 5px auto;
    max-width: 1342px;
    padding: 0 12px;
    text-align: center;
    border-radius: 9px;
}

.skeleton-container .page-top-banner .skeleton-box {
    height: 42px;
}

.skeleton-container .skeleton-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.skeleton-container .skeleton-header-container {
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.skeleton-container .skeleton-header .logo {
    width: 166px;
    height: 68px;
}
.skeleton-container .skeleton-header-container .container-fluid {
    max-width: 1342px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    align-items: flex-end;
}

.skeleton-container .nav-items {
    display: inline-flex;
    height: 38px;
}

.skeleton-container .nav-items .nav-item {
    margin: 0 10px;
    width: 65px;
}

.skeleton-container .home-body {
    padding: 50px 1rem;
    margin: 5em;
    background: #fafafa;
}

.skeleton-container .title {
    margin-bottom: 25px;
}

.skeleton-container .title-line {
    height: 85px;
    width: 780px;
    margin-bottom: 5px;
}

.skeleton-container .title-line-second {
    height: 70px;
    width: 225px;
}

.skeleton-container .block-row {
    display: flex;
    gap: 30px;
}

.skeleton-container .block-row>div {
    flex: 1;
}

.skeleton-container .video-title {
    height: 52px;
}

.skeleton-container .how-list {
    padding-top: 25px;
}

.skeleton-container .how-list .how-list-item {
    flex: 1;
    padding-bottom: 30px;
}

.skeleton-container .how-list .how-list-item .block-img {
    height: 200px;
    margin-bottom: 35px;
}

.skeleton-container .how-list .how-list-item .block-title {
    margin-bottom: 16px;
    position: relative;
    height: 66px;
    display: flex;
    align-items: flex-end;
}

.skeleton-container .block-title .skeleton-circle {
    height: 66px;
    width: 66px;
    position: absolute;
    left: 0;
    top: 0;
}

.skeleton-container .block-title .skeleton-box {
    margin-left: 48px;
    height: 40px;
    width: 270px;
}

.skeleton-container .how-list .how-list-item .block-text {
    width: 320px;
}

.skeleton-container .discount {
    height: 96px;
    margin-bottom: 1rem;
}

.skeleton-container .sign-up-info {
    height: 19px;
    margin-bottom: 0.5rem;
}

.skeleton-container .video {
    border-radius: 10px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    height: 370px;
}

.skeleton-container .video-info {
    height: 14px;
    margin-bottom: 0.5rem;
}

.skeleton-container .divider-header {
    height: 25px;
    margin-bottom: 1rem;
}

.skeleton-container .top-image-component {
    height: 370px;
    border-radius: 10px;
    margin-top: 28px;
    margin-bottom: 2rem;
}

@keyframes progress {
    0% {
        transform: translate3d(-200px, 0, 0);
    }

    100% {
        transform: translate3d(calc(200px + 100vw), 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .skeleton-container .skeleton-box {
        animation: none;
    }

    .skeleton-container .skeleton-box {
        background-image: none;
    }
}

@media screen and (min-device-width: 1200px) {
    .skeleton-container .skeleton-loader {
        user-select: none;
        cursor: wait;
    }
}

@media (min-width: 576px) {
    .skeleton-container .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .skeleton-container .container {
        max-width: 720px;
    }

    .skeleton-container .title {
        font-size: 60px;
        margin-bottom: 63px;
    }

    .skeleton-container .block-row {
        margin-bottom: 3rem;
    }
}

@media (min-width: 992px) {
    .skeleton-container .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .skeleton-container .container {
        max-width: 1140px;
    }
}

@media (max-width: 1460px) {
    .skeleton-container .discount {
        height: 145px;
    }

    .skeleton-container .video-title {
        height: 105px;
    }
}

@media (max-width: 767px) {

    .skeleton-container .page-top-banner {
        margin: 5px 0px;
    }

    .skeleton-container .page-top-banner .skeleton-box {
        height: 40px;
    }

    .skeleton-container .skeleton-header {
        padding: 26px 21px 31px;
    }

    .skeleton-container .skeleton-header .logo {
        width: 131px;
        height: 48px;
    }

    .skeleton-container .nav-items div:not(:first-child) {
        display: none;
    }

    .skeleton-container .nav-items div:first-child {
        height: 38px;
        width: 38px;
    }

    .skeleton-container .title-line {
        height: 34px;
        width: 300px;
    }

    .skeleton-container .title-line-second {
        height: 27px;
        width: 85px;
    }

    .skeleton-container .block-row {
        flex-direction: column;
    }

    .skeleton-container .block-row.mobile-reverse {
        flex-direction: column-reverse;
    }

    .skeleton-container .discount {
        height: 50px;
    }

    .skeleton-container .sign-up-info {
        height: 20px;
    }

    .skeleton-container .video-title {
        height: 25px;
    }

    .skeleton-container .divider-header {
        height: 80px;
    }

    .skeleton-container .block-title .skeleton-circle {
        height: 56px;
        width: 56px;
    }

    .skeleton-container .block-title .skeleton-box {
        height: 26px;
        width: 200px;
    }

    .skeleton-container .how-list .how-list-item .block-text {
        height: 25px;
        width: 248px;
    }
}

@media (max-width: 550px) {
    .skeleton-container .home-body {
        margin: 1em 0rem;
    }
}