/*---------------- sticky ---------------*/
#box-sticky {
    position: fixed;
    bottom: calc(20%);
    right: 0px;
    width: 150px;
    box-sizing: border-box;
    z-index: 999;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 8px 8px;
    background-color: #ab934c;
    box-shadow: 4px 4px 15px #f930e5, -4px -4px 15px #f930e5;
    background-image: -webkit-linear-gradient(45deg,rgba(149, 0, 208, 1.00) 0%,rgb(75, 0, 109) 100%);
    background-image: -moz-linear-gradient(45deg,rgba(149, 0, 208, 1.00) 0%,rgba(75, 0, 109, 1.00) 100%);
    background-image: -o-linear-gradient(45deg,rgba(149, 0, 208, 1.00) 0%,rgba(75, 0, 109, 1.00) 100%);
    background-image: linear-gradient(45deg,rgba(149, 0, 208, 1.00) 0.00%,rgba(75, 0, 109, 1.00) 100.00%);
    
}
#box-sticky .sticky-qr i  {
    display: none;
    color: #00701C;
    font-size: 3rem;
}
#box-sticky .sticky-title {
    font-size: 30px;
    text-align: center;
    color: #EEE;
    font-weight: 800;
}
#box-sticky .sticky-qr {
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #FFF;
    padding: 3px;
    text-align: center;
}
#box-sticky img{
    width: 100%;
}
#box-sticky .sticky-line {
    color: #EEE;
    font-size: 1.2em;
    border-radius: 10px;
    text-align: center;
    background: #2E9500;
    margin-top: 5px;
    padding: 2px;
}
#box-sticky .icn-line{
    display: block;
    color: green;
}
#box-sticky .icn-line:before {
    display: flex;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    background: #FFF;
}
#line-mini{
    font-size: 3rem;
    display: none;
}
#box-sticky #sticky-close{
    font-size: 1rem;
    color: #686868;
    font-weight: 700;
    position: absolute;
    background: #E6E6E6;
    cursor: pointer;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
}

@media screen and (max-width:768px){
    #line-full {
        display: none;
    }
    #line-mini {
        display: block;
    }
    #box-sticky {
        width: auto;
    }
}