/* POWER HELP */
.pw-help-container{

}

.pw-help-container .btn-activator{
    display: block;
    width: 50px;
    height: 50px;
    background: #DA3222;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9;
    border-radius: 25px;
    text-align: center;
    padding-top: 12px;
    cursor: pointer;
    transform: rotate(-360deg);
    transition: transform 150ms ease;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    -webkit-box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    -moz-box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.pw-help-container.left .btn-activator{
    left: 20px;
}

.pw-help-container .btn-activator .btn-activator-inner{
    position: relative;
}

.pw-help-container .btn-activator.active{
    transform: rotate(-180deg);
    transition: transform 300ms ease;
}

.pw-help-container .btn-activator .icon-close{
    color: #fff;
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    left: 13px;
    top: 0;
    opacity: 0;
}

.pw-help-container .btn-activator .icon-btn{
    width: 30px;
}

.pw-help-container .btn-activator.active .icon-close{
    opacity: 1;
}

.pw-help-container .btn-activator i.fa{
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: -2px;
    left: 10px;
    cursor: pointer;
}

.pw-help-container .btn-activator.active .icon-btn{
    opacity: 0;
}

.pw-help-container .btn-activator:hover ~ .call-to-action-container{
    display: none;
}

.pw-help-container .btn-activator.active ~ .call-to-action-container{
    display: none;
}

.pw-help-container .call-to-action-container{
    display: block;
    width: 20px;
    height: 20px;
    background: none;
    position: fixed;
    right: 70px;
    bottom: 35px;
    z-index: 9;
}

.pw-help-container.left .call-to-action-container{
    left: 70px;
}

.pw-help-container .call-to-action-message{
    position: absolute;
    top: -5px;
    width: auto;
    height: 30px;
    background: #fff;
    color: #333;
    font-size: 14px;
    padding: 0 10px;
    padding-top: 7px;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    -webkit-box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}

.pw-help-container.right .call-to-action-message{
    right: 15px;
}

.pw-help-container.left .call-to-action-message{
    left: 15px;
}

.pw-help-container .call-to-action-message:after{
    content: '';
    display: block;
    border: 1px solid rgba(0,0,0,0);
    width: 10px;
    height: 10px;
    background: #fff;
    border-right-color: #ddd;
    border-bottom-color: #ddd;
    position: absolute;
    right: -5px;
    top: 10px;
    transform: rotate(-45deg);
}

.pw-help-container.left .call-to-action-message:after{
    left: -5px;
    transform: rotate(135deg);
}

.pw-help-container .greeting-container{
    display: block;
    width: 300px;
    max-width: calc(100vw - 40px);
    height: 140px;
    background: #fff;
    z-index: 29;
    position: fixed;
    bottom: 90px;
    right: 20px;
    border-radius: 7px;
    transition: 300ms ease;
    box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
    -webkit-box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
}

.pw-help-container.left .greeting-container{
    left: 20px;
}

.pw-help-container .greeting-container.active{
    opacity: 1;
}

.pw-help-container .greeting-container .pw-logo{
    position: relative;
    left: 15px;
    top: 20px;
}

.pw-help-container .greeting-container .pw-logo img{
    width: 50px;
    height: 50px;
}

.pw-help-container .greeting-container .greeting-message{
    display: block;
    width: 200px;
    max-width: calc(100vw - 140px);
    max-height: 100px;
    position: absolute;
    left: 80px;
    top: 20px;
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.pw-help-container .greeting-container .close-greeting{
    position: absolute;
    right: 5px;
    top: 0;
    cursor: pointer;
}

.pw-help-container .greeting-container .close-greeting img{
    width: 15px;
}

.pw-help-container .chat-container{
    display: block;
    width: 300px;
    max-width: calc(100vw - 40px);
    height: auto;
    background: #fff;
    z-index: 29;
    position: fixed;
    bottom: 90px;
    right: 20px;
    border-radius: 7px;
    opacity: 0;
    transition: 300ms ease;
    box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
    -webkit-box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
}

.pw-help-container.left .chat-container{
    left: 20px;
}

.pw-help-container .chat-container.active{
    opacity: 1;
}

.pw-help-container .chat-item{
    display: block;
    width: 100%;
    height: 60px;
    padding: 10px 15px;
    position: relative;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.pw-help-container .chat-item.large{
    height: 70px;
}

.pw-help-container .chat-item.small{
    height: 50px;
}

.pw-help-container .chat-item:first-child{
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.pw-help-container .chat-item:last-child{
    border-bottom: none;
}

.pw-help-container .chat-item:hover{
    background: #eee;
}

.pw-help-container .chat-item.active{

}

.pw-help-container .chat-item img{
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.pw-help-container .chat-item.large img{
    width: 50px;
    height: 50px;
    border-radius: 25px;
}

.pw-help-container .chat-item.small img{
    width: 30px;
    height: 30px;
    border-radius: 15px;
}

.pw-help-container .chat-item .chat-name{
    position: absolute;
    top: 22px;
    left: 65px;
    font-size: 16px;
}

.pw-help-container .chat-item.large .chat-name{
    left: 75px;
    top: 25px;
}

.pw-help-container .chat-item.small .chat-name{
    left: 55px;
    top: 15px;
}

.pw-help-container .chat-item .online-badge{
    position: absolute;
    top: 25px;
    right: 15px;
    background: none;
    color: #555;
    font-size: 11px;
    padding: 0 5px;
    border-radius: 10px;
    display: block;
    height: 20px;
}

.pw-help-container .chat-item.large .online-badge{
    top: 27px;
}

.pw-help-container .chat-item.small .online-badge{
    top: 19px;
}

.pw-help-container .chat-item .online-badge:after{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background: #0DC152;
    position: relative;
    left: 5px;
    top: 0;
}

.pw-help-container .chat-item .offline-badge{
    position: absolute;
    top: 25px;
    right: 15px;
    background: none;
    color: #555;
    font-size: 11px;
    padding: 0 5px;
    border-radius: 10px;
    display: block;
    height: 20px;
}

.pw-help-container .chat-item.large .offline-badge{
    top: 27px;
}

.pw-help-container .chat-item.small .offline-badge{
    top: 19px;
}

.pw-help-container .chat-item .offline-badge:after{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background: #AAAAAA;
    position: relative;
    left: 5px;
    top: 0;
}

.pw-help-container .chat-container .chat-description{
    padding: 7px 15px;
    font-size: 13px;
    font-weight: bold;
    background: #F8F8F8;
    color: #777;
    cursor: pointer;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.pw-help-container .chat-container .btn-action{
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    background: #F8F8F8;
    color: #777;
    cursor: pointer;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.pw-help-container .ph-whatsapp-container{
    display: block;
    width: 320px;
    max-width: calc(100vw - 40px);
    background: #fff;
    z-index: 29;
    position: fixed;
    bottom: 90px;
    right: 20px;
    border-radius: 7px;
    overflow: hidden;
    transition: 300ms ease;
    box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
    -webkit-box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
}

.pw-help-container.left .ph-whatsapp-container{
    left: 20px;
}

.pw-help-container .ph-whatsapp-container .whatsapp-header{
    display: block;
    width: 100%;
    height: 45px;
    background: #25D366;
    z-index: 9;
    position: relative;
    top: 0;
    left: 0;
    padding: 7px 10px;
}

.pw-help-container .ph-whatsapp-container .whatsapp-header img{
    height: 30px;
    width: 30px;
}

.pw-help-container .ph-whatsapp-container .whatsapp-header .whatsapp-title{
    position: relative;
    top: -7px;
    color: #fff;
    font-size: 16px;
}

.pw-help-container .ph-whatsapp-container .whatsapp-header .close-whatsapp{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.pw-help-container .ph-whatsapp-container .whatsapp-header .close-whatsapp img{
    width: 25px;
    height: 25px;
}

.pw-help-container .ph-whatsapp-container .whatsapp-content{
    position: relative;
    padding: 10px 15px;
    background: #eee;
    clear: both;
}

.pw-help-container .ph-whatsapp-container .whatsapp-content .welcome-message{
    background: #E4FEC8;
    width: calc(100% - 30px);
    padding: 7px 13px;
    border-radius: 5px;
    box-shadow: 0 1px 1px #aaa;
    font-size: 14px;
}

.pw-help-container .ph-whatsapp-container .whatsapp-content .welcome-message:before{
    content: '';
    border: 12px solid rgba(0,0,0,0);
    border-top-color: #E4FEC8;
    display: block;
    position: absolute;
    left: 3px;
    top: 10px;
}

.pw-help-container .ph-whatsapp-container .whatsapp-content .welcome-message .time{
    font-size: 11px;
    color: #999;
}

.pw-help-container .ph-whatsapp-container .whatsapp-content .welcome-message .tick{
    width: 11px;
    opacity: 0.7;
}

.pw-help-container .ph-whatsapp-container .whatsapp-footer{
    position: relative;
    width: 100%;
}

.pw-help-container .ph-whatsapp-container .whatsapp-footer .whatsapp-message{
    width: calc(100% - 45px);
    height: 40px;
    font-size: 14px;
    color: #555;
    margin: 0;
    padding-left: 15px;
    border: none;
    outline: none;
    box-shadow: none;
}

.pw-help-container .ph-whatsapp-container .whatsapp-footer .whatsapp-message::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #999;
    opacity: 1; /* Firefox */
}

.pw-help-container .ph-whatsapp-container .whatsapp-footer .whatsapp-button{
    display: block;
    height: 35px;
    width: 45px;
    border: none;
    padding-top: 9px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}

.pw-help-container .ph-whatsapp-container .whatsapp-footer .whatsapp-button img{
    width: 16px;
    opacity: 0.7;
    cursor: pointer;
}

.pw-help-container .ph-whatsapp-container .whatsapp-footer .whatsapp-button:hover > img{
    opacity: 1;
}

.pw-help-container .ph-line-container{
    display: block;
    width: 300px;
    max-width: calc(100vw - 40px);
    height: 450px;
    background: #fff;
    z-index: 29;
    position: fixed;
    bottom: 90px;
    right: 20px;
    border-radius: 7px;
    overflow: hidden;
    transition: 300ms ease;
    box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
    -webkit-box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
}

.pw-help-container.left .ph-line-container{
    left: 20px;
}

.pw-help-container .ph-line-container iframe{
    height: 500px;
    position: relative;
    top: -60px;
}

.pw-help-container .ph-line-container .line-header{
    display: block;
    width: 100%;
    height: 45px;
    background: #00B900;
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    padding: 7px 10px;
}

.pw-help-container .ph-line-container .line-header img{
    height: 30px;
    width: 30px;
}

.pw-help-container .ph-line-container .line-header .line-title{
    position: relative;
    top: -7px;
    color: #fff;
    font-size: 16px;
}

.pw-help-container .ph-line-container .line-header .close-line{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.pw-help-container .ph-line-container .line-header .close-line img{
    width: 25px;
    height: 25px;
}

.pw-help-container .ph-facebook-container{
    display: block;
    width: 300px;
    max-width: calc(100vw - 40px);
    height: 345px;
    background: #fff;
    z-index: 29;
    position: fixed;
    bottom: 90px;
    right: 20px;
    border-radius: 7px;
    overflow: hidden;
    transition: 300ms ease;
    padding-top: 45px;
    box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
    -webkit-box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
}

.pw-help-container.left .ph-facebook-container{
    left: 20px;
}

.pw-help-container .ph-facebook-container .facebook-header{
    display: block;
    width: 100%;
    height: 45px;
    background: #0083FF;
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    padding: 7px 10px;
}

.pw-help-container .ph-facebook-container .facebook-header img{
    height: 30px;
    width: 30px;
}

.pw-help-container .ph-facebook-container .facebook-header .facebook-title{
    position: relative;
    top: -7px;
    color: #fff;
    font-size: 16px;
}

.pw-help-container .ph-facebook-container .facebook-header .close-facebook{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.pw-help-container .ph-facebook-container .facebook-header .close-facebook img{
    width: 25px;
    height: 25px;
}

@media screen and (max-width: 360px) {
    .pw-help-container .ph-line-container{
        height: 370px;
    }

    .pw-help-container .ph-line-container iframe{
        height: 450px;
        top: -80px;
    }
}

@media screen and (max-width: 339px) {
    .pw-help-container .ph-whatsapp-container{
        right: 10px;
        max-width: calc(100vw - 20px);
    }
    .pw-help-container.left .ph-whatsapp-container{
        left: 10px;
    }

    .pw-help-container .ph-line-container{
        right: 10px;
        max-width: calc(100vw - 20px);
    }
    .pw-help-container.left .ph-line-container{
        left: 10px;
    }

    .pw-help-container .ph-facebook-container{
        right: 10px;
        max-width: calc(100vw - 20px);
    }

    .pw-help-container.left .ph-facebook-container{
        left: 10px;
    }

    .mobile-navigation .area-left #open_sidebar_menu span{
        display: none;
    }
}
/* END POWER HELP */
