/* contact fix */
#vu-contactus {
    position: fixed;
    left: 20px;
    bottom: 25px;
    z-index: 999;
    min-width: 60px;
    height: 60px
}
.messangers-box {
    position: absolute;
    width: 300px;
    height: auto;
    left: 0;
    bottom: 70px;
    background: #fff;
    border-radius: 15px;
    z-index: 999;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: ease-in-out .2s all;
    transform: translate3d(0, -20%, 0);
}
.vu-contact-header {
    position: relative;
    background: #2185d0;
    border-radius: 12px 12px 0 0;
    color: #fff;
    padding: 18px 15px;
}
.vu-contact-header-text {
    position: relative;
    padding-left: 55px;
}
.vu-contact-header-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 25px;
}
.vu-contact-header-icon .badge.online {
    position: absolute;
    height: 11px;
    width: 11px;
    border: 2px solid #2185D0;
    bottom: -2px;
    right: 3px;
    top: auto;
    border-radius: 100%;
    background-color: #35ac19;
}
.vu-contact-close {
    position: absolute;
    right: 0;
    top: -35px;
    color: #FFFFFF;
    background: #124A74;
    width: 26px;
    height: 26px;
    cursor: pointer;
    text-align: center;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.messangers-items {
    list-style: none;
    padding-left: 0;
}
.messangers-items li a {
    background: #efefef;
    border-radius: 6px;
    margin: 10px;
    display: flex;
    padding: 8px 20px 8px 60px;
    text-decoration: none;
}
.messanger-item-icon {
    position: absolute;
    left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0084ff;
    color: #fff;
}
.messanger-item-icon svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
}
.messanger-item-title {
    color: #3B3B3B;
    font-size: 15px;
}
.messanger-item-label {
    max-width: 100%;
}

.messanger-item-subtitle {
    color: #787878;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vu-message-button {
    background-color: #2185D0;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-left: 60px;
    min-width: 60px;
    height: 60px;
    position: relative;
}
.vu-message-badge.online {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 1;
    background-color: #35ac19;
}
.vu-message-button-icon {
    position: absolute;
    left: 0;
    right: 0;
    width: 60px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vu-message-button-icon .static {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex: auto;
    transition: .2s all;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-property: all;
}

.vu-message-button-icon .static.vu-contact-hide {
    transform: scale(0);
    opacity: 0;
}
.vu-message-close {
    color: #fff;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: ease-in-out .2s all;
    transform: translate3d(0, -20%, 0);
}
.vu-message-close.vu-contact-show svg {
    -webkit-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}
.vu-message-close svg{
    -webkit-transform: rotate(180deg) scale(0);
    -ms-transform: rotate(180deg) scale(0);
    transform: rotate(180deg) scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
    display: block;
}
.vu-contact-hide{
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: ease-in-out .2s all;
    transform: translate3d(0, -20%, 0);
}
.vu-contact-show{
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.static-container {
    border-radius: 50px;
    position: absolute;
    overflow: hidden;
    width: 60px;
    height: 60px;
    color: #FFFFFF;
    margin: auto;
    padding: 10px
}
.static-container:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.static-container svg {
    width: 20px;
    height: 20px;
}
.static-container p {
    font-family: 'Roboto',sans-serif,Arial;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    line-height: 11px;
    margin: 0;
}
.vu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.2);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: .2s all;
}
#vu-contactus.open .vu-backdrop {
    opacity: 1;
    pointer-events: auto;
}
.bg-attachment .section-bg {
    background-attachment: fixed;
}