/**
 * Awesome WhatsApp Chat Button CSS
 */

.awcb_button,
.awcb_btn_popup,
.awcb_button *,
.awcb_btn_popup *,
.awcb_btn_popup :before,
.awcb_button :before,
.awcb_button :after,
.awcb_btn_popup :after,
.awcb_popup_chat_box,
.awcb_popup_chat_box *,
.awcb_popup_chat_box :before,
.awcb_popup_chat_box :after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.awcb_button {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    text-decoration: none !important;
    color: #fff;
    box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
    -webkit-box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
    -moz-box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
}

.awcb-woo-products-button .awcb_button {
    margin-bottom: 15px;
}

.awcb_btn_txt {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
}

.awcb_btn_w_icon .awcb_btn_txt {
    padding: 15px 20px 15px 80px;
}

.awcb_button_text_only .awcb_btn_txt,
.awcb_r_button.awcb_btn_w_img.awcb_button_text_only .awcb_btn_txt,
.awcb_sq_button.awcb_btn_w_img.awcb_button_text_only .awcb_btn_txt {
    padding-top: 25px;
    padding-bottom: 24px;
}

.awcb_btn_w_icon .awcb_btn_txt .awcb_btn_title {

}

.awcb_btn_w_img:hover {
    text-decoration: none;
}

.awcb_cs_info {
    margin-bottom: 2px;
    white-space: nowrap;
}

.awcb_btn_status {
    color: #F5A623;
    font-size: 11px;
    padding: 2px 0 0;
    font-weight: 700;
}

.awcb_cs_info .awcb_cs_name,
.awcb_cs_info .awcb_cs_status {
    display: inline-block;
}

.awcb_cs_info .awcb_cs_name {
    font-weight: 400;
    line-height: 1;
    font-size: 18px;
}

.awcb_stt_online .awcb_cs_info .awcb_cs_name {
    color: #d5f0d9
}

.awcb_stt_offline .awcb_cs_info .awcb_cs_name {
    color: #76787d;
}

.awcb_cs_info .awcb_cs_status {
    margin-left: 3px;
    padding: 2px 5px;
    font-size: 12px;
    line-height: 1;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.98);
    position: relative;
    top: -2px;
    left: 0px;
    text-align: center;
}

.awcb_stt_online .awcb_cs_info .awcb_cs_status {
    background: #81d742;
}

.awcb_stt_offline .awcb_cs_info .awcb_cs_status {
    background: #b9bbbe;
}


.awcb_stt_online {
    background: #4AC959;
    cursor: pointer;
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    backface-visibility: hidden;
}

.awcb_stt_online .awcb_btn_txt {
    position: relative;
}

.awcb_button.awcb_stt_online:focus,
.awcb_button.awcb_stt_online:active,
.awcb_button.awcb_stt_online:hover {
    box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.19);
}

.awcb_button.awcb_stt_online:focus:before,
.awcb_button.awcb_stt_online:active:before,
.awcb_button.awcb_stt_online:hover:before {
    opacity: 1;
}

.awcb_stt_online.awcb_btn_w_icon .awcb_btn_icon img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
}

.awcb_stt_offline {
    background: #EBEDF0;
    color: #595B60;
    box-shadow: none;
    cursor: initial;
}

.awcb_stt_offline.awcb_r_button.awcb_btn_w_img .awcb_btn_txt {
    padding: 10px 20px 10px 80px
}

.awcb_stt_offline.awcb_sq_button.awcb_btn_w_img .awcb_btn_txt {
    padding: 10px 20px 10px 80px;
}

.awcb_btn_w_icon .awcb_btn_icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    height: 42px;
}

.awcb_btn_w_icon .awcb_btn_icon img {
    width: 42px;
    height: 42px;
}

.awcb_btn_w_img {
    position: relative;
}

.awcb_btn_w_img .awcb_cs_img {
    position: absolute;
    top: 50%;
    left: 5px;
    text-align: center;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
}

.awcb_btn_w_img .awcb_cs_img_wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.awcb_btn_w_img .awcb_cs_img img {
    max-width: 100%;
    height: auto;
    transition: 0.2s ease transform;
    -webkit-transition: 0.2s ease transform;
    -moz-transition: 0.2s ease transform;
}

.awcb_btn_w_img .awcb_btn_txt {
    padding: 12px 30px 12px 100px;
}

.awcb_r_button {
    border-radius: 50vh;
}

.awcb_sq_button {
    border-radius: 5px;
}

.awcb_sq_button.awcb_btn_w_img .awcb_btn_txt {
    padding: 15px 20px 15px 80px;
    vertical-align: middle;
    height: 72px;
}

.awcb_btn_txt .awcb_btn_title {
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.awcb_r_button.awcb_btn_w_img .awcb_btn_txt {
    padding: 15px 30px 15px 80px;
    height: 72px;
}

.awcb_r_button.awcb_btn_w_img .awcb_cs_info .awcb_cs_status {
    margin-left: 3px;
}

.awcb_popup_chat_box {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    width: 320px;
    border-radius: 5px 5px 8px 8px;
    -webkit-border-radius: 5px 5px 8px 8px;
    -moz-border-radius: 5px 5px 8px 8px;
    position: fixed;
    overflow: hidden;
    box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, 0.04);
    bottom: 95px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translate(0, 50px) !important;
    transform: translate(0, 50px) !important;
    -webkit-transform: translate(0, 50px) !important;
    -moz-transform: translate(0, 50px) !important;
    transition: 0.2s ease all !important;
    -webkit-transition: 0.2s ease all !important;
    -moz-transition: 0.2s ease all !important;
    max-width: calc(100% - 50px);
}

.awcb_popup_chat_box:hover,
.awcb_popup_chat_box:focus,
.awcb_popup_chat_box:active {
    box-shadow: 0px 12px 24px 0px rgba(32, 32, 37, 0.10);
    -webkit-box-shadow: 0px 12px 24px 0px rgba(32, 32, 37, 0.10);
    -moz-box-shadow: 0px 12px 24px 0px rgba(32, 32, 37, 0.10);
}

.awcb_popup_chat_box.awcb_active {
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    -webkit-transform: translate(0, 0) !important;
    -moz-transform: translate(0, 0) !important;
    visibility: visible;
    opacity: 1;
}

.awcb_popup_chat_box .awcb_popup_heading {
    position: relative;
    padding: 15px 30px 15px 30px;
    color: #d9ebc6;
    background: #095e54;
}

.awcb_popup_chat_box .awcb_popup_heading .awcb_popup_title {
    padding-top: 3px;
    padding-bottom: 3px;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
}

.awcb_popup_chat_box .awcb_popup_heading .awcb_popup_intro {
    font-size: 12px;
    line-height: 20px;
}

.awcb_popup_chat_box .awcb_popup_heading .awcb_popup_intro a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
}

.awcb_popup_chat_box .awcb_popup_heading .awcb_popup_intro a:hover,
.awcb_popup_chat_box .awcb_popup_heading .awcb_popup_intro a:focus,
.awcb_popup_chat_box .awcb_popup_heading .awcb_popup_intro a:active {
    text-decoration: underline;
}

.awcb_popup_chat_box .awcb_popup_notice {
    font-size: 11px;
    color: #a5abb7;
}

.awcb_popup_chat_box .awcb_popup_content {
    background: #eeeeee;
    padding: 13px 20px 21px 19px;
    text-align: center;
}

.awcb_popup_chat_box .awcb_popup_content_left {
    text-align: left;
}

.awcb_popup_chat_box .awcb_popup_avatar {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    left: 12px;
    top: 12px;
}

.awcb_popup_chat_box .awcb_stt {
    padding: 13px 40px 12px 74px;
    position: relative;
    text-decoration: none;
    display: table;
    width: 100%;
    background: #ffffff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.awcb_popup_chat_box .awcb_stt:after {

}

.awcb_popup_chat_box .awcb_stt.awcb_stt_offline:after {

}

.awcb_popup_chat_box .awcb_stt.awcb_stt_online {
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
}

.awcb_popup_chat_box .awcb_stt.awcb_stt_online:hover,
.awcb_popup_chat_box .awcb_stt.awcb_stt_online:active,
.awcb_popup_chat_box .awcb_stt.awcb_stt_online:focus {
    background: #ffffff;
    box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
    -webkit-box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
    -moz-box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
}

.awcb_popup_content_list .awcb_popup_content_item {
    margin: 14px 0 0;
    transform: translate(0, 20px) !important;
    -webkit-transform: translate(0, 20px) !important;
    -moz-transform: translate(0, 20px) !important;
    opacity: 0;
}

.awcb_popup_chat_box.awcb_pending .awcb_popup_content_list .awcb_popup_content_item {
    transition: 0.2s ease all !important;
    -webkit-transition: 0.2s ease all !important;
    -moz-transition: 0.2s ease all !important;
}

.awcb_popup_chat_box.awcb_lauch .awcb_popup_content_list .awcb_popup_content_item {
    opacity: 1;
    transform: translate(0, 0) !important;
    -webkit-transform: translate(0, 0) !important;
    -moz-transform: translate(0, 0) !important;
}

.awcb_popup_content_list .awcb_popup_content_item .awcb_account_name {
    font-size: 14px;
    color: #333;
    line-height: 1;
    font-weight: 600;
}

.awcb_popup_content_list .awcb_popup_content_item .awcb_account_status_offline {
    color: #F5A623;
    font-size: 12px;
    line-height: 1;
    padding-top: 5px;
}

.awcb_popup_content_list .awcb_popup_content_item .awcb_account_status_online {
    color: #4AC959;
    font-size: 12px;
    line-height: 1;
    padding-top: 5px;
}

.awcb_popup_content_list .awcb_popup_content_item .awcb_popup_txt {
    display: table-cell;
    vertical-align: middle;
    min-height: 48px;
    height: 48px;
}

.awcb_popup_content_list .awcb_popup_content_item .awcb_stt_offline {
    border-left-color: #c0c5ca;
}

.awcb_popup_avt_list {
    font-size: 0;
    margin: 7px 0 24px;
}

.awcb_popup_avt_list .awcb_popup_avt_item {
    display: inline-block;
    position: relative;
    width: 46px;
}

.awcb_popup_avt_list .awcb_popup_avt_img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffffff;
    left: -7px;
}

.awcb_popup_call_btn {
    background: #4AC959;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    width: 275px;
    max-width: 100%;
    font-size: 16px;
    padding: 14px 10px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    margin: 25px 0 15px;
    box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
    -webkit-box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
    -moz-box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
}

.awcb_popup_chat_box_gray {
    border-radius: 2px 2px 8px 8px;
}

.awcb_popup_chat_box_gray .awcb_popup_heading_gray {
    background: #f8f8f8;
    border-top: 3px solid #4AC959;
    color: #868c9a;
    font-weight: 500;
}

.awcb_popup_chat_box_gray .awcb_popup_heading_gray .awcb_popup_title {
    color: #595b60;
}

.awcb_popup_chat_box_gray .awcb_popup_heading_gray:before {
    content: '';
    background: url(../img/whatsapp_logo_green.svg) center top no-repeat;
    background-size: 33px;
    display: block;
    width: 55px;
    height: 33px;
    position: absolute;
    top: 20px;
    left: 12px;
}

.awcb_popup_chat_box_gray .awcb_popup_heading_gray .awcb_popup_intro a {
    color: #595b60;
}

.awcb_popup_chat_box_ct {
    width: 384px;
    text-align: center;
}

.awcb_popup_chat_box_ct .awcb_popup_heading_ct {
    text-align: center;
    padding: 18px 0 18px;
}

.awcb_popup_chat_box_ct .awcb_popup_heading_ct:before {
    content: '';
    background: url(../img/whatsapp_logo.svg) center top no-repeat;
    background-size: 30px;
    display: block;
    width: 30px;
    height: 31px;
    position: absolute;
    top: 15px;
    left: 72px;
}

.awcb_popup_chat_box_ct .awcb_popup_heading_ct .awcb_popup_title {
    padding-left: 22px;
    padding-bottom: 14px;
}

.awcb_popup_chat_box_ct .awcb_popup_heading_ct .awcb_popup_intro {
    margin-top: -5px;
    line-height: 12px;
}

.awcb_popup_chat_box_ct .awcb_popup_ct_avt_list:after {
    content: '';
    clear: both;
    display: block;
}

.awcb_popup_chat_box_ct .awcb_popup_ct_content {
    background: #ffffff;
    padding: 0 0 14px;
}

.awcb_popup_chat_box_ct .awcb_popup_ct_content .awcb_popup_notice {
    padding-top: 18px;
    padding-bottom: 15px;
}

.awcb_popup_chat_box_ct .awcb_popup_ct_content_item {
    width: 33%;
    float: left;
    font-size: 10px;
}

.awcb_popup_chat_box_ct .awcb_popup_ct_content_item a {
    text-decoration: none;
    color: #989b9f;
}

.awcb_popup_chat_box_ct .awcb_popup_ct_content_item .awcb_popup_ct_txt {
    padding-top: 8px;
}

.awcb_popup_chat_box_ct .awcb_popup_ct_content_item .awcb_account_name {
    color: #333;
    font-size: 13px;
}

.awcb_popup_chat_box_ct .awcb_popup_ct_content_item .awcb_account_duty {
    color: #989b9f;
    padding: 3px 0 0;
}

.awcb_popup_chat_box_ct .awcb_popup_ct_content_item .awcb_account_stt_online {
    color: #4AC959;
    font-size: 9px;
    line-height: 12px;
    display: inline-block;
    padding: 3px 0 0 16px;
    background: url('../img/whatsapp_logo_green.svg') 0 3px no-repeat;
    background-size: 12px auto;
    -webkit-background-size: 12px auto;
    -moz-background-size: 12px auto;
}

.awcb_popup_chat_box_ct .awcb_popup_ct_content_item .awcb_account_stt_offline {
    color: #f5a623;
    font-size: 9px;
    line-height: 12px;
    padding: 2px 0 0;
}

.awcb_popup_chat_box_ct .awcb_popup_ct_avatar img {
    border-radius: 50%
}

.awcb_popup_chat_box_ct .awcb_popup_ct_call_btn {
    width: 97px;
    font-size: 11px;
    padding: 9px 10px 11px;
    margin: 15px 0 15px;
}

.awcb_btn_popup {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    z-index: 100;
}

.awcb_btn_popup .awcb_btn_popup_icon {
    width: auto;
    min-width: 58px;
    height: 56px;
    background: #4AC959;
    border-radius: 28px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.14);
    -webkit-box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.14);
}

.awcb_btn_popup .awcb_btn_popup_icon:before {
    content: '';
    position: absolute;
    z-index: 100;
    width: 56px;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url('../img/whatsapp_logo.svg') 14px 50% no-repeat;
    background-size: 30px auto;
    -webkit-background-size: 30px auto;
    -moz-background-size: 30px auto;
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
}

.awcb_btn_popup .awcb_btn_popup_icon:after {
    content: '';
    opacity: 0;
    position: absolute;
    z-index: 100;
    width: 56px;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url('../img/close.svg') 22px 50% no-repeat;
    background-size: 14px auto;
    -webkit-background-size: 14px auto;
    -moz-background-size: 14px auto;
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
}

.awcb_btn_popup.awcb_active .awcb_btn_popup_icon:before {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
}

.awcb_btn_popup.awcb_active .awcb_btn_popup_icon:after {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.awcb_btn_popup .awcb_btn_popup_txt {
    font-size: 14px;
    font-weight: 600;
    color: #43474e;
    padding: 0 20px 0 50px;
    line-height: 54px;
    white-space: nowrap;
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
}

/*.awcb_fade_in {*/
/*    opacity: 1;*/
/*    animation-name: fadeInOpacity;*/
/*    animation-iteration-count: 1;*/
/*    animation-timing-function: ease-in;*/
/*    animation-duration: 0.3s !important;*/
/*}*/

/*@keyframes fadeInOpacity {*/
/*    0% {*/
/*        opacity: 0;*/
/*    }*/
/*    100% {*/
/*        opacity: 1;*/
/*    }*/
/*}*/

#awcb-gdpr {
    padding: 0 !important;
    margin: 0 !important;
    top: 1px;
    left: 1px;
    vertical-align: middle !important;
    position: relative;
}

.awcb-gdpr {
    font-size: 11px;
    padding: 5px 6px;
    border-radius: 4px;
    line-height: 1;
    margin-top: 5px;
    margin-left: -5px;
    margin-right: -5px;
}

.awcb-gdpr a {
    text-decoration: underline;
    color: inherit;
}

.awcb-gdpr label {
    color: inherit;
    font-size: inherit;
    line-height: 1;
    margin-left: 5px !important;
    vertical-align: middle;
}

.pointer-disable {
    pointer-events: none;
}

.awcb-woo-products-button {
    margin: 30px 0 15px;
}

.awcb-woo-products-button + .awcb-woo-products-button {
    margin-top: 0;
}

.awcb-woo-products-button:before, .awcb-woo-products-button:after {
    content: '';
    display: block;
    clear: both;
}

/**
 * Badges
 */

.awcb_btn_popup .badge {
    position: absolute;
    right: 0px;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background: #ed1c24;
    color: #fff;
    font-size: 9px;
    text-align: center;
    font-weight: 600;
    line-height: 1;
    padding: 3px 0;
}

.awcb_btn_popup .simple-badge {
    width: 14px;
    height: 14px;
}

.awcb_btn_popup .pulse-badge {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 0 rgba(237, 28, 36, 1);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(237, 28, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(237, 28, 36, 0);
    }
}

/**
 * Effects
 */

.awcb_btn_popup.simple-pulse {
    border-radius: 50px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    animation: simple-pulse 2s infinite;
}

@keyframes simple-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.awcb_btn_popup.wave-pulse::before, .awcb_btn_popup.wave-pulse::after {
    content: '';
    position: absolute;
    opacity: 0;
    border: 4px solid #4AC959;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50px;
    animation: wave-pulse 1.5s ease infinite;
}

.awcb_btn_popup.wave-pulse::after {
    animation-delay: .5s;
}

@keyframes wave-pulse {
    0% {
        transform: scale(0.6);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/**
 * Mobile
 */

@media (max-width: 540px) {
    .awcb_btn_popup {
        right: 14px;
        bottom: 14px;
    }

    .awcb_popup_chat_box {
        right: 14px;
    }
}