
.model-3d-item {
    display: flex;
    justify-content: center;
}

.model-3d-viewer {
    width: 100%;
    height: 500px;
}

.model-3d-items .owl-nav {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.model-3d-items .owl-nav button {
    width: 60px;
    height: 60px;
    border: 1px solid #87A5C099 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.4s;
    pointer-events: all;
}

.model-3d-items .owl-nav button:hover {
    background: #fd0805 !important;
    border-color: #fd0805 !important;
}

.model-3d-items .owl-nav button svg path {
    transition: 0.4s;
}

.model-3d-items .owl-nav button:hover svg path {
    stroke: #fff;
}

.model-3d-items .owl-dots {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.model-3d-items .owl-dots button.owl-dot {
    transition: 0.4s;
    width: 10px;
    height: 10px;
    background: #87A5C099;
    margin: 4px;
    border-radius: 50%;
}

.model-3d-items .owl-dots button.owl-dot.active {
    background: #FD0805;
}