/* Hide elements */
.campaign-one__bottom {
    display: none;
}

.campaign-funded {
    display: none;
}

.add-to-cart-content-inner {
    display: none;
}


/* overwrite the style form the theme */
.topbar-info__item i {
    color: var(--halpes-theme-color);
}

.gallery-one__content {
    background: var(--halpes-theme-color);
}

.gallery-one__single:hover .gallery-one__content {
    opacity: 0.5;
}

/* Header */
.header-info__item .desc {
    font-size: 18px;
}

.header-info__item .desc a {
    color: #fff;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
}

.topbar-info__item i {
    margin-right: 10px;
    font-size: 26px;
}

/* Header Menu */
.header-one__main-menu {
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
}

/* More Images */
.more-images-btn {
    margin: 1em 0;
    padding: 0.5em 1em;
    background-color: #f0f0f0;
    /* border: 1px solid #ccc;
    border-radius: 4px; */
    border: none;
    color: #333;
    text-decoration: none;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    display: block;
}

.more-images-btn:hover {
    background-color: #e0e0e0;
    color: #000;
    text-decoration: underline;
}

.image-thumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
}



/* Image Thumb */
.image-thumb {
    width: 55px;
    height: 55px;
    border-radius: 4px;
    overflow: hidden;
    /* border: 1px solid #ccc; */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.image-thumb img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/* Footer */
.contact-info__item .desc {
    font-size: 18px;
}


/* For mobile, make the .image-thumb and img to width: 45px and height: 45px */
@media (max-width: 768px) {
    .image-thumb {
        width: 45px;
        height: 45px;
    }

    .image-thumb img {
        width: 45px;
        height: 45px;
    }
}