.examples-links {
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
    border-bottom: unset;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y;
}

#examplesTabContent, .examples-links{
    overflow: hidden;
}

.examples-links .nav-item .nav-link {
    border: 2px solid var(--orange);
    padding: 8px 16px;
    font-size: 18px;
    color: #797979;
    background: #FFFF;
    border-radius: 10px;
    white-space: nowrap;
    margin-bottom: 16px;
    margin-right: 16px;
    user-select: all;
}

.examples-links .nav-item .nav-link.active, .examples-links .nav-item .nav-link:hover {
   color: var(--orange);
}

.e-name {
    min-height: 40px;
}

.e-price {
    font-size: 20px;
}

.example-modal-content{
    background-color: unset;
    border: unset;
}

.mh-w-lg {
    max-height: 92vh;
    width: 750px;
}

#imageModalExample .img-close {
    position: absolute;
    right: 0;
    top: -27px;
}

#imageModalExample .img-name {
    position: absolute;
    left: 0;
    top: -22px;
    font-size: 20px;
}

@media (max-width: 767px) {
    .example-item:nth-child(n+4) {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 853px) {
    .e-price {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    #imageModalExample .img-name {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .e-card {
        transition: transform 0.3s;
        cursor: pointer;
    }

    #examplesTabContent{
        overflow: unset;
    }

    .e-card:hover {
        transform: scale(1.05);
    }
}