.myButtonForShops  {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;

}
.single-product .variations_form .quantity {
    display:none !important;
}
.tour_label.sidebar {
    top: 0px !important;
}

/* =========================
   ITINERARY
========================= */

.tour-itinerary {
    position: relative;
    max-width: 480px;
    padding: 15px 0;
}

/* CRVENA VERTIKALNA LINIJA */
.tour-itinerary:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 28px;
    bottom: 28px;
    width: 6px;
    background: #ff5538;
    border-radius: 5px;
}

.itinerary-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    padding-bottom: 24px;
    min-height: 75px;
}

/* MARKER */
.itinerary-icon {
    position: relative;
    width: 23px;
    height: 23px;
    margin-left: 11px;
    margin-top: 2px;
    background: #263750;
    border: 3px solid #ffffff;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 1px #263750;
}

/* BIJELA TOČKA */
.itinerary-icon:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.itinerary-content {
    padding-right: 8px;
}

.itinerary-title {
    color: #263750;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 3px;
}

.itinerary-description {
    color: #687386;
    font-size: 12px;
    line-height: 1.4;
}

.itinerary-extra {
    color: #8b94a2;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 3px;
}


/* START I END */

.itinerary-start .itinerary-icon,
.itinerary-end .itinerary-icon {
    width: 21px;
    height: 21px;
    margin-left: 12px;
    background: #ff5538;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #ff5538;
}

.itinerary-start .itinerary-icon:before,
.itinerary-end .itinerary-icon:before {
    width: 5px;
    height: 5px;
}


/* SPEEDBOAT */

.itinerary-transport {
    min-height: 80px;
}

.itinerary-transport .boat-icon {
    width: 27px;
    height: 27px;
    margin-left: 9px;
    background: #fff;
    color: #263750;
    border: none;
    box-shadow: none;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}

.itinerary-transport .boat-icon:before {
    display: none;
}


/* OPTIONAL BUDIKOVAC */

.itinerary-optional .itinerary-icon {
    background: #fff;
    border: 1px solid #7d8795;
    box-shadow: none;
    width: 21px;
    height: 21px;
    margin-left: 12px;
}

.itinerary-optional .itinerary-icon:before {
    display: none;
}


/* MOBITEL */

@media (max-width: 767px) {

    .tour-itinerary {
        max-width: 100%;
    }

    .tour-itinerary:before {
        left: 18px;
        width: 5px;
    }

    .itinerary-item {
        grid-template-columns: 53px 1fr;
        padding-bottom: 22px;
    }

    .itinerary-icon {
        margin-left: 9px;
    }

    .itinerary-start .itinerary-icon,
    .itinerary-end .itinerary-icon {
        margin-left: 10px;
    }

    .itinerary-optional .itinerary-icon {
        margin-left: 10px;
    }

    .itinerary-title {
        font-size: 14px;
    }

    .itinerary-description,
    .itinerary-extra {
        font-size: 11.5px;
    }
}