.title-text {
    font-size: 32px !important;
}

.subtitle-text {
    font-size: 24px !important;
}

.info-text {
    font-size: 14px !important;
}

.content-text {
    font-size: 18px !important;
}

.note-text {
    font-size: 12px !important;
}

@media all and (max-width: 768px) {
    .title-text {
        font-size: 20px !important;
    }

    .subtitle-text {
        font-size: 20px !important;
    }

    .info-text {
        font-size: 12px !important;
    }

    .content-text {
        font-size: 14px !important;
    }

    .note-text {
        font-size: 10px !important;
    }
}


.skeleton {
    background-color: #ccc;
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: #e0e0e0;
    }

    100% {
        background-color: #999999;
    }
}

.image-loading-container {
    position: relative;
}

.image-loading-container.error {
    padding: 0;
}

.image-loading-container.loading {
    padding: 0;
}

.image-loading-container img {
    display: none;
}

.image-loading-container img.loaded {
    display: block;
}