/*font-family: 'Source Sans Pro', sans-serif;*/

body {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    color: #353535;
    background: #fff;
}

h1,
h2 {
    margin: 0;
}

a {
    text-decoration: none;
}


.btn {
    background: #F9941E;
    color: #fff;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: all .3s;
}

.btn:hover {
    background: #c57414;
}

.bottom-ribbon {
    position: fixed;
    background: #353535;
    bottom: 0;
    font-size: 0;
    width: 100%;
    padding-bottom: 13px;
    padding-top: 10px;
    z-index: 2;
}

.bottom-ribbon .inner {
    max-width: 414px;
    margin: auto;
}

.bottom-ribbon .col {
    display: inline-block;
    width: 25%;
    text-align: center;
}

.bottom-ribbon .col:nth-child(1) img {
    width: 29px;
}

.bottom-ribbon .col:nth-child(2) img {
    width: 36px;
}

.bottom-ribbon .col:nth-child(3) img {
    width: 19px;
}

.bottom-ribbon .col:nth-child(4) img {
    width: 32px;
}

.hours-pop-up {
    position: fixed;
    bottom: -95px;
    background: #fff;
    width: 100%;
    z-index: 1;
    padding-top: 13px;
    padding-bottom: 10px;
    box-shadow: 0px 0px 4px #969696;
    transition: all .3s;
}

.hours-pop-up.active {
    bottom: 55px;
}

.mobile-header-top-info {
    color: #717171;
}

.mobile-header-top-info img {
    display: inline-block;
    vertical-align: middle;
}

.mobile-header-top-info div {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
    margin: 7px 0;
}

.close-hours-pop-up {
    position: absolute;
    right: 6px;
    top: 3px;
    color: #F9941E;
    font-size: 26px;
}

.top-space {
    height: 235px;
}

.custom-select-wrapper {
    position: relative;
    background: #353535;
    width: 240px;
    margin: auto;
    color: #fff;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
}

.custom-select-wrapper-chosen-container {
    position: relative;
    padding: 8px 0;
    box-sizing: border-box;
}

.custom-select-wrapper-chosen {
    display: inline-block;
}

.custom-select-down-arrow {
    position: absolute;
    right: 8px;
    top: 18px;
}

.custom-select-down-arrow.rotate-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    display: none;
    position: absolute;
    width: 100%;
    background: #353535;
    padding: 5px 5px 10px 5px;
    box-sizing: border-box;
    max-height: 120px;
    overflow-y: scroll;
    z-index: 1;
}

.custom-select-option {
    padding: 7px 0;
    cursor: pointer;
}


.mobile-footer {
    background: #FB941E;
    color: #353535;
    font-size: 11px;
    padding: 4px 5px 4px 5px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 55px;
}

.mobile-footer a {
    color: #353535;
}

@media (min-width: 1024px) {
    .hours-pop-up,
    .bottom-ribbon,
    .mobile-footer {
        display: none;
    }

    .top-space {
        height: 160px;
    }
}

@media (min-width: 1200px) {
    .top-space {
        height: 186px;
    }
}



