﻿
    .products-wrapper {
        margin-top: 36px;
    }

.product-box {
  background: #FAFAFA;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s all ease;
  box-shadow: 1px 1px 7px rgb(0 0 0 / 5%);
  /*min-width: 300px;*/
  /*max-width: 350px;*/
  width:350px;
}

@media only screen and (min-width:1250px){
  .product-box {
    min-width: 350px;
  }
}

        .product-box:hover {
            box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
        }

        .product-box .product-images {
            background: #D9D9D9;
            position: relative;
        }

          .product-box .product-images .event-img {
            width: 100%;
            height: 165px;
            object-fit: cover;
            border-top-right-radius: 2px;
            border-top-left-radius: 2px;
            z-index: 1;
            transition: background 0.5s, opacity 0.5s, transform 0.5s;
          }



        .product-box .product-info {
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            height: 125px;
        }

          .product-box .product-info .product-host-info {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap:8px;
          }

                .product-box .product-info .product-host-info .vendor-link {
                    font-weight: 600;
                    font-size: 14px;
                    line-height: 120%;
                    color: #000000;
                }

            .product-box .product-info .product-title a {
                font-weight: 700;
                font-size: 16px;
                line-height: 120%;
                letter-spacing: -0.02em;
                text-transform: uppercase;
                margin-bottom: 0px;
                color: #000000;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2; /* number of lines to show */
                -webkit-box-orient: vertical;
            }

            .product-box .product-info .product-event-info {
                font-weight: 500;
                font-size: 11px;
                line-height: 120%;
                color: #000000;
                opacity: 0.6;
                flex: none;
                order: 2;
                flex-grow: 0;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 1; /* number of lines to show */
                -webkit-box-orient: vertical;
            }

                .product-box .product-info .product-event-info a {
                    color: #000000;
                }

                .product-box .product-info .product-event-info i {
                    font-size: 5px;
                }

        .product-box .btn-buy-product {
            height: 48px;
            width: 100%;
            background: #E90C00;
            border-radius: 2px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 600;
            font-size: 14px;
            line-height: 120%;
            text-align: center;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border: 1px solid #E90C00;
            /* White */
            color: #FFFFFF;
        }

            .product-box .btn-buy-product:hover {
                border: 1px solid #E90C00;
            }

 
    @media only screen and (min-width : 1100px) {
        .product-box .product-images .event-img {
            height: 200px;
        }


        .product-box .product-info .product-host-info .vendor-link {
            font-size: 14px;
        }

        .product-box .product-info .product-title a {
            font-size: 24px;
        }

        .product-box .product-info .product-event-info {
            color: #000000;
            font-size: 14px;
        }

        .product-box .btn-buy-product {
            font-size: 16px;
        }

        .product-box .product-info {
            padding: 24px;
            gap: 12px;
            height: 165px;
        }
    }

    .product-event-info .event-date {
        text-align: center;
    }

    .host-rating {
        font-size: 12px;
        color: red !important;
        flex-shrink:0;
    }

        .host-rating:hover {
            text-decoration: none;
        }

        .host-rating .total-reviews {
            font-weight: 500;
            font-size: 12px;
            line-height: 120%;
            align-items: center;
            color: #E90C00;
        }

    .images-carousel .carousel-indicators li {
        width: 10px;
        height: 10px;
        background-color: white;
        opacity: 1;
        margin-left: 6px;
        border-radius: 50%;
    }

        .images-carousel .carousel-indicators li:not(.active):hover {
            background-color: white;
            opacity: 0.6;
        }

        .images-carousel .carousel-indicators li.active {
            background-color: #E90C00;
            border-radius: 50%;
        }



    .lds-dual-ring {
        display: inline-block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: calc(50% - 15px);
        bottom: 0;
        left: calc(50% - 15px);
        right: 0;
        z-index: 0;
    }

        .lds-dual-ring:after {
            content: " ";
            display: block;
            width: 30px;
            height: 30px;
            margin: 4px;
            border-radius: 50%;
            border: 1px solid #E90C00;
            border-color: #E90C00 transparent #E90C00 transparent;
            animation: lds-dual-ring 1.2s linear infinite;
        }

    .lds-ripple div:nth-child(2) {
        animation-delay: -0.5s;
    }

    @keyframes lds-dual-ring {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .carousel-control-arrow {
        opacity: 1;
    }

        .carousel-control-arrow i {
            opacity: 1;
            background: white;
            font-size: 12px;
            width: 25px;
            height: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            color: #010304;
        }

    .product-actions-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        right: 0;
        background: #000000;
        opacity: 0.9;
        padding: 10px 15px;
    }

        .product-actions-wrapper div {
            color: white;
        }

    .product-actions-wrapper {
        display: flex;
        gap: 20px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

        .product-actions-wrapper .action-title {
            flex-grow: 1;
            color: white;
            text-align: right;
            font-weight: 500;
            font-size: 12px;
            line-height: 120%;
            /* or 14px */

            text-align: right;
        }

        .product-actions-wrapper div .action-image {
            height: 22px;
            width: 22px;
            object-fit: fill;
            stroke: white;
            transition: 0.3s all ease;
            cursor: pointer;
        }

            .product-actions-wrapper div .action-image.active {
                stroke: rgba(233, 12, 0, 1);
            }

            .product-actions-wrapper div .action-image:hover {
                stroke: rgba(233, 12, 0, 1);
            }


.event-type-icon-wrapper {
  position: absolute;
  top: 5px;
  z-index: 2;
  right: 10px;
}

.event-type-icon {
  background-color: white;
  padding: 2px;
}

    .carousel-control-arrow, .product-actions-wrapper {
        /*opacity: 0;*/
        display: none;
        transition: 0.5s all ease;
    }

    .product-images:hover .carousel-control-arrow, .product-images:hover .product-actions-wrapper {
        /*opacity: 1;*/
        display: flex;
    }

.product-images:hover .event-type-icon-wrapper {
    display: none;
}