.sb-accordion{
    position:fixed;
    bottom:0px;
    height:auto;
    width:100%;
    z-index:999999;
}

.sb-accordion.active .sb-wrapper {
    max-height: 350px;
    overflow: hidden;
    
    transition: max-height 0.3s ease-in;
}

.sb-accordion .sb-trigger {
    text-align: center;
    background-color: #f15c22;
    
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 600;
    cursor: pointer;

    padding: 12px 0;
    
    /* border-top: 1px solid #e4e4e4; */
    
    -webkit-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.75);
    
    transition: background-color 0.2s linear;
}

.sb-accordion .sb-trigger:hover {
    background-color: #d4501c;
}

.sb-accordion .sb-wrapper{
    max-height: 0;
    overflow: hidden;
    
    transition: max-height 0.3s ease-out;
}

@media only screen and (max-width: 600px) {
    .sb-accordion.active .sb-wrapper {
        max-height: 550px;
        overflow: scroll;
        
        transition: max-height 0.3s ease-in;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    .sb-accordion.active .sb-wrapper {
        max-height: 550px;
        overflow: scroll;
        
        transition: max-height 0.3s ease-in;
    }
}