.rawa-widget{
    position: fixed;
    z-index: 600;
}
#rawa-greeting{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 260px;
    max-width: 100%;
    color: #1e2433;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 26px 15px 15px;
    font-size: 14px;
    line-height: 20px;
    box-shadow: 0 6px 32px #00122e3d;
    transition: bottom .5s cubic-bezier(.4,.22,.28,1), opacity 80ms ease, visibility 80ms ease;
    bottom: 180px;
    right: 20px;
}
.rawa-greeting-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s cubic-bezier(.4,.22,.28,1);
}
.rawa-greeting-close svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
}
.rawa-greeting-close:hover {
    transform: rotate(90deg);
}
.rawa-button {
    color: #fff;
    background: linear-gradient(115deg, #d35400, #FF894F);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 50%;
    top: auto;
    transition: transform .2s cubic-bezier(.4,.22,.28,1),opacity 80ms ease;
    bottom: 110px;
    right: 20px;
}
.rawa-button .rawa-svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    opacity: 1;
    transform: rotate(0) scale(1);
    transition: transform .2s cubic-bezier(.4,.22,.28,1),opacity 80ms ease;
}
.rawa-button .rawa-svg-close {
    width: 20px;
    height: 20px;
    fill: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    opacity: 0;
    transform: rotate(-30deg);
    transition: transform .2s cubic-bezier(.4,.22,.28,1),opacity 80ms ease;
}
.rawa-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*z-index: 2147483001;*/
    position: fixed;
    width: 376px;
    min-height: 240px;
    max-height: 480px;
    height: calc(100% - 120px);
    box-shadow: #00000029 0 5px 40px;
    color: #1e2433;
    background-color: #fff;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: bottom .2s cubic-bezier(.4,.22,.28,1),opacity 80ms ease,visibility 80ms ease;
    top: auto;
    right: 20px;
    bottom: 60;
}
.rawa-widget.rawa-opened .rawa-box {
    opacity: 1;
    pointer-events: visible;
    visibility: visible;
    bottom: 20px;
}
.rawa-box-container {
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.rawa-header {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    height: 180px;
    flex: 0 0 auto;
    color: #ffffff;
    background: linear-gradient(115deg, #000000, #434343);
}
.rawa-header:after {
    content: "";
    position: absolute;
    width: 100%;
    bottom: -3px;
    left: 0;
    border-image-source: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 24 150 28'%3E%3Cdefs%3E%3Cpath id='gentle-wave' d='M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z'%3E%3C/path%3E%3C/defs%3E%3Cg%3E%3Cuse xlink:href='%23gentle-wave' x='30' y='3' fill='%23fff'%3E%3C/use%3E%3C/g%3E%3C/svg%3E");
    border-image-slice: 0 0 100%;
    border-bottom: solid 16px;
}
.rawa-close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 12px;
    right: 8px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}
.rawa-close svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}
.rawa-close:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background-color: #00000026;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    transform: scale(0);
    transition: transform .2s cubic-bezier(.4,.22,.28,1);
}
.rawa-close:hover:after {
    transform: scale(1);
}
.rawa-greeting, .rawa-personal {
    width: 100%;
    position: absolute;
    top: 0;
    transition: transform .5s cubic-bezier(.4,.22,.28,1),opacity .16s ease,visibility .16s ease;
}
.rawa-greeting {
    padding: 25px 30px;
    left: 0;
}
.rawa-personal {
    left: 20%;
    opacity: 0;
    visibility: hidden;
}
.rawa-title {
    font-size: 24px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    margin: 0 0 10px;
    color: inherit;
    border: none;
    text-align: start;
    padding: 0;
}
.rawa-description {
    font-size: 16px;
    line-height: 1.5;
    opacity: .8;
    word-break: break-word;
}
.rawa-note {
    margin-top: 15px;
    margin-bottom: -25px;
    margin-inline-start: -30px;
    margin-inline-end: -30px;
    padding-inline-start: 30px;
    padding-inline-end: 30px;
    padding-top: 15px;
    padding-bottom: 20px;
    line-height: 1.2;
    font-size: 14px;
    background: linear-gradient(115deg, #000000, #434343);
}
.rawa-body {
    height: 100%;
    flex: 1;
    position: relative;
    overflow: hidden;
}
.rawa-accounts, .rawa-chats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform .5s cubic-bezier(.215,.61,.355,1),opacity .16s ease,visibility .16s ease;
}
.rawa-accounts {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.rawa-accounts .rawa-account {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: background .2s cubic-bezier(.4,.22,.28,1);
    position: relative;
    color: #000;
}
.rawa-accounts .rawa-account:hover {
    background-color: #fafafa;
}
.rawa-accounts .rawa-account:not(:first-child):after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    box-shadow: inset 0 0 1px #0000004d;
}
.rawa-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-inline-end: 15px;
    width: 51px;
    height: 51px;
    flex: 0 0 51px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.rawa-button--zalo {
    background-color: #0573ff;
    color: #fff;
}
.rawa-button--messenger {
    background-color: #0a7cff;
    color: #fff;
}
.rawa-button--phone {
    background-color: #1fc0a0;
    color: #fff;
}
.rawa-button--whatsapp {
    background-color: #25d366;
    color: #fff;
}
.rawa-avatar:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: linear-gradient(115deg,transparent,rgba(255,255,255,.3));
}
.rawa-avatar svg {
    fill: currentColor;
    width: 30px;
    height: 30px;
}
.rawa-avatar span {
    display: none;
}
.rawa-name {
    font-size: 17px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rawa-label {
    font-size: 13px;
    line-height: 1.2;
    opacity: .8;
}
.rawa-avatar div {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.rawa-button--website {
    background-color: #2c6ecb;
    color: #fff;
}
.rawa-avatar div svg {
    fill: #fff;
    width: 12px;
    height: 12px;
}
.rawa-show-inner{
    display: block;
}
.rawa-show-inner .rawa-account{
    padding: 12px 20px 12px 20px;
    background-color: rgb(203 173 119 / 20%);
}
.rawa-accounts .rawa-show-inner .rawa-account:hover {
    background-color: rgb(203 173 119 / 40%);
}
.rawa-youtube.button-contact-vr {
    position: fixed;
    bottom: 19px;
    right: 7px;
    z-index: 199;
}
@media(max-width: 767px){
    body .button-contact-vr{
        display: none;
    }
    .rawa-button-label {
        font-size: 12px;
        padding: 6px 12px;
        margin: 0 10px
    }

    .rawa-button {
        width: 46px;
        height: 46px
    }

    .rawa-button .rawa-svg {
        width: 20px;
        height: 20px
    }
    .rawa-widget.rawa-opened .rawa-box {
        bottom: 0
    }

    .rawa-box {
        left: 0;
        right: 0;
        width: 100%;
        bottom: 0;
        height: 100%;
        border-radius: 0;
        min-height: auto;
        max-height: none
    }

    #rawa-greeting{
        bottom: 166px;
    }
    .rawa-button-list .rawa-header {
        border-radius: 0
    }

    .rawa-position-left .rawa-box,.rawa-position-right .rawa-box {
        left: 0;
        right: 0
    }

    .rawa-share .rawa-buttons li {
        width: 39px;
        height: 39px
    }

    .rawa-share .rawa-buttons li:hover svg {
        transform: scale(1.2)
    }

    .rawa-sharing .rawa-sharing-title {
        margin-bottom: 30px
    }

    .rawa-sharing .rawa-sharing-title h4 {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 20px
    }

    .rawa-sharing .rawa-sharing-title h2 {
        font-size: 28px;
        font-weight: 500
    }

    .rawa-sharing .rawa-sharing-icons li {
        margin-inline-start:7px;margin-inline-end:7px;margin-bottom: 15px;
        padding: 10px
    }

    .rawa-sharing .rawa-sharing-icons li:hover svg {
        transform: scale(1.2)
    }

    .rawa-sharing .rawa-sharing-icons svg {
        width: 18px;
        height: 18px
    }

    .rawa-sharing .rawa-sharing-close {
        top: 15px;
        right: 15px
    }

    .rawa-pending {
        min-height: 16px;
        min-width: 16px;
        line-height: 16px
    }

    .rawa-greeting.rawa-greeting--opened {
        bottom: calc(var(--rawa-position-bottom) + 56px)
    }

    .rawa-branding {
        position: static;
        margin-top: 0;
        padding: 4px 0;
        justify-content: center
    }
}