
.scrollbar {
    overflow: overlay;
    scrollbar-gutter: stable;
}

/* total width */
.scrollbar::-webkit-scrollbar {
    background-color: rgba(0, 0, 0, 0);
    width: 16px;
    height: 16px;
    z-index: 999999;
}

/* background of the scrollbar except button or resizer */
.scrollbar::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
}

/* scrollbar itself */
.scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 16px;
    border: 0px solid #fff;
}

/* set button(top and bottom of the scrollbar) */
.scrollbar::-webkit-scrollbar-button {
    display: none;
}


/* scrollbar when element is hovered */
.scrollbar:hover::-webkit-scrollbar-thumb {
    background-color: #a0a0a5;
    border: 4px solid #fff;
}

/* scrollbar when scrollbar is hovered */
.scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #a0a0a5;
    border: 4px solid #f4f4f4;
}

.fa-angle-right, .fa-angle-left{
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    z-index: 1000;
    color: white;
    z-index: 1046;
    -webkit-box-shadow: none;
            box-shadow: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 3rem;
    text-shadow: 0px 0px 10px #000000cc;
    box-shadow: none;
    padding: 20px;
}

.fa-angle-left{
    left: 0px;
}

.fa-angle-right{
    right: 0px;
}

.title {
    text-align: center;
}

.sliding-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    overflow-x: scroll;
    width: 100%;
    gap: 0.5rem;
    overflow-y: hidden;
}

.sliding-gallery>* {
    -ms-flex-negative: 0;
        flex-shrink: 0;
        flex-basis: 300px;
}

.product-gallery-item img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.map {
    width: 100%;
    height: 300px;
}

.location-title {
    text-align: center;
}

@media screen and (min-width: 1200px){
    .map{
        height: 500px;
    }
}