#toast {
    visibility: hidden;
    max-width: 50px;
    height: 50px;
    margin: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    z-index: 1;
    left: 0;right:0;
    bottom: 30px;
    font-size: 17px;
    white-space: nowrap;
}
#toast #toast_name{
    width: 80px;
    height: 50px;
    float: left;
    padding-top: 16px;
    padding-bottom: 16px;
    box-sizing: border-box;
    background-color: #111;
    color: #fff;
    margin: 0 auto;
}
#toast #toast_desc{
    color: #fff;
    padding: 16px;
    overflow: hidden;
    white-space: nowrap;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 2s, fadeout 0.9s 2.5s;
    animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 4s, fadeout 0.9s 4.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 expand {
    from {min-width: 50px} 
    to {min-width: 350px}
}

@keyframes expand {
    from {min-width: 50px}
    to {min-width: 350px}
}
@-webkit-keyframes stay {
    from {min-width: 350px} 
    to {min-width: 350px}
}

@keyframes stay {
    from {min-width: 350px}
    to {min-width: 350px}
}
@-webkit-keyframes shrink {
    from {min-width: 350px;} 
    to {min-width: 50px;}
}

@keyframes shrink {
    from {min-width: 350px;} 
    to {min-width: 50px;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 60px; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 60px; opacity: 0;}
}
.xs-cart{
    display: none;
}
.lg-cart{
    display: block;
}
@media only screen and (max-width: 992px){
    .xs-cart{
        display: block;
    }
    .lg-cart{
        display: none;
    }
}
.quantForm form {
    margin: 0 auto;
    text-align: center;
}

.value-button {
    display: inline-block;
    margin: 0px;
    width: 25px;
    text-align: center;
    vertical-align: middle;
    padding: 4px 0;
    background: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.value-button:hover {
    cursor: pointer;
}

.font-size-md {
    font-size: 16px;
    font-weight: 600;
}

.get_id {
    text-decoration: none;
}

.clasy-btn {
    border-radius: 8px;
    background-color: #808080;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 1.3rem;
    padding: 12px;
    width: 200px;
    transition: all ease-in-out .5s;
    cursor: pointer;
    margin: 5px;
}

.clasy-btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: ease-in-out .5s;
    font-weight: 700;
}
  
.clasy-btn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.4s;
}
.clasy-btn:hover{
    transition: 0.2s;
    color: #000;
}
.clasy-btn:hover span {
    padding-right: 25px;
}
.clasy-btn:hover span:after {
    opacity: 1;
    right: 0;
}
.y-scroll {
    overflow-y: scroll;
    overflow-x: hidden;
}
.selected-shipper {
    background-color: cyan;
}
.shop_list_product_area {
    margin-top: 1em;
    padding-top: 2em;
    border-top: 1px solid #332;
}