/**
 * All of the CSS for your pb-facing functionality should be
 * included in this file.
 */
body {
    position: relative;
}
.pm-contact-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 999;
}
.pm-contact-bar.pm-contact-bar_hidden {
    bottom: -40px;
}
.pm-contact-bar__head {
    position: relative;
}
.pm-contact-bar__head-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    margin: 0 auto;
}
.pm-contact-bar__head svg {
    overflow: hidden;
    position: relative;
    top: 3px;
    vertical-align: middle;
    display: inline-block;
    pointer-events: none;
    fill: #E85C21;
    z-index: 1;
}
.pm-contact-bar__button {
    position: absolute;
    top: 10px;
    text-align: center;
    display: inline-block;
    color: #ffffff;
    z-index: 2;
    font-size: 14px;
    text-transform: uppercase;
}
.pm-contact-bar__body {
    height: 40px;
}
.pm-contact-bar__list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    background-color: #E85C21;
}
.pm-contact-bar__item a {
    color: #ffffff!important;
}
.pm-contact-bar__item a i {
    font-size: 20px;
}

@media screen and (min-width: 768px) {
    .pm-contact-bar {
        display: none;
    }
}