﻿.btn-register-home {
    border-radius: 5px;
    display: inline-block;
    color: var(--color-text-button);
    background: var(--color-primary);
    padding: 15px 100px;
    font-size: 18px;
    font-weight: 700;
    transition: 0.4s;
    font-family: var(--font-primary);
    border: 0 none;
}

    .btn-register-home:hover {
        transform: translateY(-5px);
        background: var(--color-dark);
        color: var(--color-white);
    }

.group-gender-home {
    height: 50px;
    align-items: center;
}

.checkout-page-style input[type="submit"] {
    background: var(--color-primary);
}

.form-change-password i {
    margin-left: -30px;
    cursor: pointer;
}

.checkout-page-style input::placeholder {
    color: #ccc;
}

.wp-account-info .invalid-feedback {
    display: none;
    width: 100%;
    font-size: 15px;
    color: #dc3545;
}

.wp-account-info .form-control:focus {
    box-shadow: none;
}

#myModal .modal-header {
    padding: 10px 20px;
    border: none;
}

    #myModal .modal-header h5 {
        padding-bottom: 10px;
        border-bottom: 3px solid var(--color-primary);
    }

#myModal .modal-body {
    padding: 0 20px 30px 20px;
}

.star {
    background-image: url('/assets/images/icons/star.png');
    background-position: left -2px;
    display: block;
    width: 20px;
    height: 16px;
    line-height: 16px;
    float: left;
    cursor: pointer;
    zoom: 1
}

.fullStar {
    background-position: left -59px
}

.fullStar-hover {
    background-position: left -59px
}

.stars {
    overflow: hidden
}

#myModal.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1060;
    display: none;
    width: 100%;
    max-width: 900px;
    height: auto;
    outline: 0;
    overflow: hidden;
    border-radius: 10px;
    padding-right: 0 !important;
}

    #myModal.modal .modal-dialog {
        max-width: 100%;
    }

    #myModal.modal .modal-fullscreen .modal-body {
        overflow: hidden;
    }

.btn-show-comment {
    cursor: pointer;
    display: inline-block;
}
#video-intro-home {
    width: 100%;
    display: none;
}
#youtubePlayer {
    width: 100%;
    min-height: 500px;
    height: auto;
    display: none;
}
tld-config-bg-event #youtubePlayer {
    width: 100%;
    min-height: 300px;
    height: auto;
    display: none;
}
@media (max-width: 575px) {
    #youtubePlayer {
        min-height: 260px;
    }
}
.box-loading-list-course {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 15px;
}
.box-loading-list-course .item-loading {
    width: 32%;
    position: relative;
    height: 500px;
    background: linear-gradient(45deg, #f3f3f3 25%, #ececec 50%, #f3f3f3 75%);
    background-size: 400% 400%;
    animation: shimmer 5s infinite linear;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Animation for shimmering effect */
@keyframes shimmer {
    0% {
        background-position: -400% 0;
    }

    100% {
        background-position: 400% 0;
    }
}
@media (max-width: 767px) {
    .box-loading-list-course .item-loading {
        width: 48%;
    }
}
@media (max-width: 575px) {
    .box-loading-list-course .item-loading {
        width: 100%;
    }
}