﻿/*!
 * Star Rating
 * @version: 3.1.4
 * @author: Paul Ryley (http://geminilabs.io)
 * @url: https://github.com/pryley/star-rating.js
 * @license: MIT
 */
.gl-star-rating[data-star-rating] {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 6px;
    margin-bottom: 6px;
}

    .gl-star-rating[data-star-rating] > select {
        overflow: hidden;
        visibility: visible !important;
        position: absolute !important;
        top: 0;
        width: 1px;
        height: 1px;
        clip: rect(1px, 1px, 1px, 1px);
        -webkit-clip-path: circle(1px at 0 0);
        clip-path: circle(1px at 0 0);
        white-space: nowrap;
    }

        .gl-star-rating[data-star-rating] > select::before,
        .gl-star-rating[data-star-rating] > select::after {
            display: none !important;
        }

.gl-star-rating-ltr[data-star-rating] > select {
    left: 0;
}

.gl-star-rating-rtl[data-star-rating] > select {
    right: 0;
}

.gl-star-rating[data-star-rating] > select:focus + .gl-star-rating-stars::before {
    opacity: 0.5;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    outline: dotted 1px currentColor;
    pointer-events: none;
}

.gl-star-rating-stars {
    position: relative;
    display: inline-block;
    height: 26px;
    vertical-align: middle;
    cursor: pointer;
}

    .gl-star-rating-stars > span {
        display: inline-block;
        width: 24px;
        height: 24px;
        background-size: 24px;
        background-repeat: no-repeat;
        background-image: url(../img/star-empty.svg);
        margin: 0 4px 0 0;
    }

        .gl-star-rating-stars > span:last-of-type {
            margin-right: 0;
        }

.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars > span {
    margin: 0 0 0 4px;
}

    .gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars > span:last-of-type {
        margin-left: 0;
    }

.gl-star-rating-stars.s10 > span:nth-child(1),
.gl-star-rating-stars.s20 > span:nth-child(-1n+2),
.gl-star-rating-stars.s30 > span:nth-child(-1n+3),
.gl-star-rating-stars.s40 > span:nth-child(-1n+4),
.gl-star-rating-stars.s50 > span:nth-child(-1n+5),
.gl-star-rating-stars.s60 > span:nth-child(-1n+6),
.gl-star-rating-stars.s70 > span:nth-child(-1n+7),
.gl-star-rating-stars.s80 > span:nth-child(-1n+8),
.gl-star-rating-stars.s90 > span:nth-child(-1n+9),
.gl-star-rating-stars.s100 > span {
    background-image: url(../img/star-full.svg);
}

.gl-star-rating-text {
    display: inline-block;
    position: relative;
    height: 26px;
    line-height: 26px;
    font-size: 0.8em;
    font-weight: 600;
    color: #fff;
    background-color: #1a1a1a;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0 8px 0 6px;
    margin: 0 0 0 12px;
}

    .gl-star-rating-text::before {
        position: absolute;
        top: 0;
        left: -12px;
        width: 0;
        height: 0;
        content: "";
        border-style: solid;
        border-width: 13px 12px 13px 0;
        border-color: transparent #1a1a1a transparent transparent;
    }

.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text {
    padding: 0 6px 0 12px;
    margin: 0 12px 0 0;
}

    .gl-star-rating-rtl[data-star-rating] .gl-star-rating-text::before {
        left: unset;
        right: -12px;
        border-width: 13px 0 13px 12px;
        border-color: transparent transparent transparent #1a1a1a;
    }
/* Star rating CSS completed */

/* Snackbar CSS start */
.snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 2;
    left: 50%;
    transform: translate(-50%);
    bottom: 30px;
    font-size: 17px;
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2), 0px 6px 10px 0px rgba(0,0,0,0.14), 0px 1px 18px 0px rgba(0,0,0,0.12);
    border-radius: 4px;
}

    .snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}
/* Snackbar CSS completed */

/* Share section CSS start */
.copy-link-wrapper {
    color: #555555;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    box-shadow: 1px 2px 15px #48484833;
    margin-bottom: 20px;
    cursor: pointer;
}

    .copy-link-wrapper .card-link {
        padding: 10px;
    }

    .copy-link-wrapper .copy-link-icon-button {
        padding: 10px;
        font-size: 18px;
    }

.qr-code-wrapper {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .qr-code-wrapper .qr-code-label {
        font-size: 14px;
        padding: 2px 10px;
        color: #555555;
        margin-bottom: 8px;
    }

    .qr-code-wrapper .qr-code-image {
        background-color: #fff;
        border-radius: 15px;
        min-width: 180px;
        max-width: 180px;
        border: 4px solid var(--theme-color);
    }

/* .whatsapp share container CSS start */
.whatsapp-share-container {
    text-align: center;
}

    .whatsapp-share-container .whatsapp-input-label {
        font-size: 14px;
        padding: 2px 10px;
        margin-bottom: 5px;
        display: inline-block;
        margin-bottom: 5px;
        color: #555555;
    }

.whatsapp-input {
    text-align: left;
    display: flex;
}

    .whatsapp-input input {
        -webkit-appearance: none;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        padding: 10px;
        outline: none;
        font-size: 12px;
        width: 100%;
        color: rgba(0, 0, 0, 0.6);
        padding-left: 40px;
    }

.whatsapp-button {
    -webkit-appearance: none;
    padding: 5px 10px;
    font-size: 13px;
    background-color: #51B14D;
    opacity: 0.9;
    color: #fff;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 251, 251, 0.1) inset;
    display: flex;
    align-items: center;
}

    .whatsapp-button i {
        font-size: 16px;
        margin-right: 10px;
    }

.input-wrapper {
    position: relative;
    flex: 1;
    border: 1px solid rgba(0,0,0,0.2);
}

    .input-wrapper label {
        position: absolute;
        left: 10px;
        top: 10px;
        color: rgba(0, 0, 0, 0.6);
        font-size: 13px;
    }
/* .whatsapp share container CSS completed */
/* Share section CSS Completed */


/* Slideshow container */
.product-slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.product-slide-previous, .product-slide-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background-color: #242733;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 100;
    transition: 0.6s ease;
    border-radius: 50%;
    user-select: none;
}


/* Position the "next button" to the right */
.product-slide-next {
    right: 0;
    border-radius: 50%;
}

.product-description img {
    width: 100%;
}

/* On hover, add a black background color with a little bit see-through */
.product-slide-previous:hover, .product-slide-next:hover {
    background-color: rgba(102, 97, 97, 0.8);
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .product-slide-previous, .product-slide-next {
        font-size: 11px;
    }
}
