@charset "UTF-8";

.box-line {
    position: absolute;
    bottom: 10px;
}

.btn-line {
    background-color: #01B302;
    border-color: #01B302;
    color: #fff;
}

.btn-shopee {
    background-color: #fa5331;
    border-color: #fa5331;
    color: #fff;
}

.btn-outline-for-line {
    color: #fff;
    background-color: #00A700;
    border-color: #00A700;
}

.btn-outline-for-line:hover {
    color: #00A700;
    background-color: #fff;
    border-color: #00A700;
}

.btn-outline-for-shopee {
    color: #fff;
    background-color: #FD6032;
    border-color: #FD6032;
}

.btn-outline-for-shopee:hover {

    color: #FD6032;
    background-color: #fff;

    border-color: #FD6032;
}

#BackTop {
    display: none;
    position: fixed;
    bottom: 200px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #8bd276;
    color: white;
    cursor: pointer;
    padding: 7px 15px;
    border-radius: 78px;
    font-size: 22px;
}

#myBtn:hover {
    background-color: #555;
    /* Add a dark-grey background on hover */
}

.line2 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

.best_seller {
    position: absolute;
    top: 0px;
    color: #fff;
    padding: 5px 10px;
    font-size: 10px;
    background-color: #ffaa1c;
    border-radius: 15px;
    margin: 4px;
}

.free_ship {
    background-color: #8bd276;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    float: left;
}

.sale_label {
    background-color: red;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    /*float: right;*/
    display: table;
    margin: auto;
}

.price_label {
    background-color: green;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    /*float: right;*/
    display: table;
    margin: auto;
}

.price_bottom {
    float: right;
    color: red;
    padding: 2px;
}

.sold_out {
    position: absolute;
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    background-color: rgba(33, 40, 50, 0.7);
    left: 0;
    right: 0;
    margin-left: 20%;
    margin-right: 20%;
    text-align: center;
    top: 30%;
}


.sold_out_view {
    position: absolute;
    color: #515050;
    padding: 20px 15px;
    /* border-radius: 20px; */
    background-color: rgb(229 234 243 / 70%);
    left: 0;
    right: 0;
    /* margin-left: 20%;
    margin-right: 20%; */
    text-align: center;
    top: 40%;
    font-size: 22px;
}

/* nav for mobile */
.mobile-nav {
    background: #F1F1F1;
    position: fixed;
    bottom: 0;
    height: 65px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 5px 0px;
    color: #333;
}
.mobile-nav a {
    color: #333;
}
.mobile-nav span {
    font-size: 12px;
}
@media screen and (min-width: 600px) {
    .mobile-nav {
        display: none;
    }
}