#awag-float-panel {
    display: none;
}

#awag-float-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    -webkit-box-shadow: 0 -1px 7px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0 -1px 7px -1px rgba(0,0,0,0.75);
    box-shadow: 0 -1px 7px -1px rgba(0,0,0,0.75);
    z-index: 999;
    padding: 10px 10px 8px;
    margin: 0;
}
#awag-float-panel .container{
    width: 1240px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

#awag-float-panel #awag-float-panel__productname{
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
}
#awag-float-panel #awag-float-panel__price .price-box{
    display: flex;
    padding: 0;
    align-items: center;
}

#awag-float-panel #awag-float-panel__price .special-price,
#awag-float-panel #awag-float-panel__price .normal-price{
    order: -1
}
#awag-float-panel #awag-float-panel__price .price {
    color: #c30a05;
    font-size: 20px;
    font-weight: 600;
}
#awag-float-panel #awag-float-panel__price .price-label{
    display: none !important;
}
#awag-float-panel #awag-float-panel__price .old-price{
    display: block !important;
}
#awag-float-panel #awag-float-panel__price .old-price .price {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    text-decoration: line-through;
}

#awag-float-panel #awag-float-panel__price .discount {
    background-color: #c52026;
    color: #fff;
    display: block;
    padding: 5px 10px;
    position: relative;
    line-height: 1.8;
    order: 2;
}

.btn-reserve{
    background-color: #003665;
    border-color: #003665;
}

#awag-float-panel .btn{
    background-color: #78aa00;
    border: 1px solid #78aa00;
    font-size: 16px;
}

@media (min-width: 992px)  {
    #awag-float-panel .container{
        align-items: center;
    }
    #awag-float-panel #awag-float-panel__price .price-box > span{
        margin: 0 10px;
    }
    #awag-float-panel #awag-float-panel__price .price-box{
        justify-content: center;
    }
    #awag-float-panel #awag-float-panel__productname {
        flex-basis: 30%;
    }
    #awag-float-panel #awag-float-panel__price {
        flex-basis: 40%;
    }
    #awag-float-panel .btn {
        flex-basis: 30%;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    #awag-float-panel .container{
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #awag-float-panel #awag-float-panel__productname {
        flex-basis: 48%;
    }
    #awag-float-panel #awag-float-panel__price {
        flex-basis: 48%;
    }
    #awag-float-panel .btn {
        flex-basis: 100%;
    }
}
@media (max-width: 991px)  {

    #awag-float-panel #awag-float-panel__productname {
        margin-bottom: 10px;
    }
    #awag-float-panel #awag-float-panel__price .price-box > span{
        margin: 0 10px;
    }
    #awag-float-panel #awag-float-panel__price .price-box > span.special-price,
    #awag-float-panel #awag-float-panel__price .price-box > span.normal-price{
        margin-left: 0;
    }
    #awag-float-panel .btn{
        width: 300px;
        max-width: 100%;
        margin-top: 10px;
    }

}

@media (max-width: 575px){
    #awag-float-panel .container{
        flex-direction: column;
        align-items: flex-start;
    }
}