﻿.panelMore-wrapper {
    position: relative;
}

.btnMore {
    color: #fff;
    background: gray;
    border-radius: 1.5em;
    left: 34%;
    text-decoration: none;
    width: 30%;
}

.showMore, .hideMore {
    position: absolute;
    bottom: -1em;
    z-index: 100;
    text-align: center;
}

.hideMore {
    display: none;
}

.showMore:target {
    display: none;
}

    .showMore:target ~ .hideMore {
        display: block;
    }

    .showMore:target ~ .panelMore {
        max-height: 4000px;
    }

    .showMore:target ~ .fadeMore {
        margin-top: 0;
    }

.panelMore {
    position: relative;
    margin: 2em auto;
    width: 90%;
    max-height: 134px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

    .panelMore p {
        text-align: justify;
        text-indent: 20px;
    }

.fadeMore {
    top: 48px;
    background: linear-gradient(to bottom, rgba(100, 100, 100, 0) 0, #d1ecf1 90%);
    height: 200px;
    margin-top: -170px;
    position: relative;
}

.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

    .ribbon span {
        font-size: 12px;
        font-weight: bold;
        color: #FFF;
        text-transform: uppercase;
        text-align: center;
        line-height: 20px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        width: 100px;
        display: block;
        background: #79A70A;
        background: linear-gradient(#FF5400 0%, #FF4F0F 100%);
        box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
        position: absolute;
        top: 19px;
        right: -21px;
    }

        .ribbon span::before {
            content: "";
            position: absolute;
            left: 0px;
            top: 100%;
            z-index: -1;
            border-left: 3px solid #FF4F0F;
            border-right: 3px solid transparent;
            border-bottom: 3px solid transparent;
            border-top: 3px solid #FF4F0F;
        }

        .ribbon span::after {
            content: "";
            position: absolute;
            right: 0px;
            top: 100%;
            z-index: -1;
            border-left: 3px solid transparent;
            border-right: 3px solid #FF4F0F;
            border-bottom: 3px solid transparent;
            border-top: 3px solid #FF4F0F;
        }

.btnMe::after {
    content: "";
    position: absolute;
    margin-top: -32px;
    margin-right: 10px;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    display: flex;
    background-color: #fff;
    z-index: 1;
    transition: all .2s ease;
    -webkit-animation: style_first 1s infinite;
    animation: style_first 1s infinite;
    opacity: 0;
}

.countdown {
    top: -1px;
    right: 100px;
    position: absolute;
    z-index: 1000;
}

.countdown-container .countdown-heading {
    font-size: 10px !important;
    font-weight: bold !important;
    margin: -3px 0 !important;
    color: #c2c2c2 !important;
}

.isFavProduct {
    font-size: 20px;
    position: absolute;
    left: 30px;
    top: 12px;
    z-index: 10;
}

.isfav {
    position: relative;
    top: 1px;
    color: white;
}

.notfav {
    position: relative;
    top: 1px;
    color: whitesmoke;
}

@keyframes style_first {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.DescBtnContainer {
    position: relative;
    top: -16px;
    padding-left: 10px;
}

.DescBtn {
    float: left !important;
    font-size: 14px;
    border: 1px solid #c3c3c3;
    padding: 0 12px;
    background-color: whitesmoke;
    border-radius: 4px;
}

.filter-container {
    height: 600px;
    min-height: 600px;
    border: 1px solid #c7c7c7;
    margin-top: 8px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.filter-header {
    padding-right: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 45px;
    background-color: #FFF;
    text-align: center;
    border-bottom: 1px solid #c7c7c7;
}

.SidePanHeader {
    vertical-align: middle;
    color: dimgray;
    font-size: 15px;
    font-weight: 500;
}

    .SidePanHeader::before {
        font: 24px / 1 FontAwesome;
        content: "\f1de";
        margin-left: 10px;
        position: relative;
        top: 3px;
    }

    .pc {
        padding-left: 0;
        padding-right: 0;
        margin-left: 6px;
        margin-right: 6px;
        margin-bottom: 10px;
    }