
/*Fixed row css*/
.fixed-row{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display:flex;
    justify-content: space-between;
    background-color: rgba(255,255,255,0.6);
    box-sizing: border-box;
    display: none!important;
    z-index: 10;
}

.fixed-row .fixed-button{
    width: 33.3%;
    text-align: center;
    box-sizing: border-box;
    background-color: #f6f6f6;
    border: 1px solid #ddd;
    color: #333;
}

.fixed-row .fixed-button a {
    padding: 15px 0;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    font-weight: 700;
    text-shadow: 0 1px 0 #f3f3f3;
    color: #333;
}


.fixed-row .fixed-button a {
    font-family:sans-serif;
}
.fixed-row .fixed-button a:active{
    background-color: rgba(0,0,0,0.2);
}

.fixed-row .fixed-button a i {
    color: rgba(0,0,0,0.3);
    width: 22px;
    height: auto;
    margin-top: 2px;
}

@media only screen and (max-width:750px){
    .fixed-row{
        display: flex!important;
    }

}
/*ending Fixed row css*/