/* Small popup */
.small_popup_section {
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: 330px;
    box-shadow: 0 0 5px #6f6f6f;
    border-radius: 5px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    height: 100px;
    z-index: 3;
}

.small_popup_section .popup_row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    line-height: 1.42857143;
}

.small_popup_section .popup_left {
    width: 22%;
    height: 100px;
    background: #fff;
}

.small_popup_section .popup_left .popup_product {
    max-width: 60px;
    width: 100%;
    margin: 15px auto auto;
    left: 0;
    right: 0;
    display: block;
}

.small_popup_section .popup_right {
    width: 78%;
    padding: 12px 10px;
    /* background-image: -webkit-linear-gradient(
180deg,#fdf6e2 0%,#f4d1ce 100%); */
    background: rgb(193,210,249);
    background: linear-gradient(270deg, rgba(193,210,249,1) 0%, rgba(175,235,244,1) 100%);
    background-repeat: repeat;
    background-position: 0 0;
    background-attachment: scroll;
    background-size: 100%;
    background-color: #fff;
    height: 100px;
}

.small_popup_section .popup_right p {
    font-size: 12px;
    margin: 0 0 10px;
    color: #000;
    text-align: left;
}
nxt_line {
    display: block;
}
.small_popup_section .popup_product_name {
    color: #7666ff;
    font-weight: 700;
}
.small_popup_section .popup_right .fewleft-txt{
    text-align: left;
    font-weight: 600;
}
.small_popup_section .popup_right a {
    margin: 0;
    text-align: right;
    font-size: 12px;
    color: #000;
    width: 100%;
    float: right;
    text-transform: uppercase;
}

@media screen and (max-width: 767px){
    .small_popup_section{
        bottom: inherit;
        top: 20px;
    }
}
/* End Small popup */