﻿
 
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
 

table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

    table caption {
        font-size: 1.5em;
        margin: .5em 0 .75em;
    }

    table tr {
        background-color: #f8f8f8;
        border: 1px solid #ddd;
        padding: .35em;
    }

    table th,
    table td {
        padding: .625em;
        text-align: center;
    }

    table th {
        font-size: .85em;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

        table caption {
            font-size: 1.3em;
        }

        table thead {
            border: none;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }

        table tr {
            border-bottom: 3px solid #ddd;
            display: block;
            margin-bottom: .625em;
        }

        table td {
            border-bottom: 1px solid #ddd;
            display: block;
            font-size: .8em;
            text-align: right;
        }

            table td::before {
                /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
                content: attr(data-label);
                float: left;
                font-weight: bold;
                text-transform: uppercase;
            }

            table td:last-child {
                border-bottom: 0;
            }
}

.custom-button {
    font-size: 100% !important;
    background-color: rgb(43, 56, 76) !important;
    border-color: rgb(43, 56, 76) !important;
}

.has-down-arrow:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 18px;
    margin: 0;
    right: 20px;
    position: relative;
    width: auto;
    height: auto;
    display: inline-block;
    color: #c0c0c0;
    float: right;
    font-weight: normal;
    transition: transform 0.3s;
    transform: translate3d(0, 0, 0) rotate(0deg);
    top: -30px;
}

@media screen and (max-width: 768px) {
    .productDetail.showLess {
        height: 150px;
        overflow: hidden;
        position: relative
    }

    .showLess .buttonContainer {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 9;
    }

    .showLess:after {
        content: "";
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
        pointer-events: none;
        background-image: linear-gradient(to bottom, rgba(255,255,255, 0), rgba(255,255,255, 1) 90%);
        width: 100%;
        height: 4em;
    }
}


/* line 5, ../sass/bootstrap/_responsive-embed.scss */
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
/* line 12, ../sass/bootstrap/_responsive-embed.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}
/* line 27, ../sass/bootstrap/_responsive-embed.scss */
.embed-responsive.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}
/* line 32, ../sass/bootstrap/_responsive-embed.scss */
.embed-responsive.embed-responsive-4by3 {
    padding-bottom: 75%;
}

.loading-ball {
    opacity: 0;
    display: flex;
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity .3s ease-in;
}
@media (max-width: 768px) {
    .loading-ball.show {
        position: sticky;
        bottom: 95%; 
        left: 50%;
        transform: translate(-50%);
    }
}
    .loading-ball.show {
        opacity: 1;
        bottom: 95%;
    }

.ball {
    background-color: #777;
    border-radius: 50%;
    margin: 5px;
    height: 10px;
    width: 10px;
    animation: jump .5s ease-in infinite;
}

    .ball:nth-of-type(2) {
        animation-delay: 0.1s;
    }

    .ball:nth-of-type(3) {
        animation-delay: 0.2s;
    }

@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}




.shop-wrapper .slider-wrapper .slick-dots {
    left: 50%;
    transform: translate(-50%,-30%);
    right: unset !important;
    width: auto;
}

    .shop-wrapper .slider-wrapper .slick-dots li {
        width:auto;
    }