@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes wiggle-right {
    0% {
        margin-left: 0;
        opacity: 1
    }
    to {
        margin-left: -10%;
        opacity: .5
    }
}

@-webkit-keyframes wiggle-left {
    0% {
        margin-right: 0;
        opacity: 1
    }
    to {
        margin-right: -10%;
        opacity: .5
    }
}

@keyframes wiggle-right {
    0% {
        margin-left: 0;
        opacity: 1
    }
    to {
        margin-left: -10%;
        opacity: .5
    }
}

@keyframes wiggle-left {
    0% {
        margin-right: 0;
        opacity: 1
    }
    to {
        margin-right: -10%;
        opacity: .5
    }
}

@-webkit-keyframes slidein-right {
    0% {
        margin-left: 10%
    }
    to {
        margin-left: 0
    }
}

@keyframes slidein-right {
    0% {
        margin-left: 10%
    }
    to {
        margin-left: 0
    }
}

@-webkit-keyframes slidein-left {
    0% {
        margin-right: 10%
    }
    to {
        margin-right: 0
    }
}

@keyframes slidein-left {
    0% {
        margin-right: 10%
    }
    to {
        margin-right: 0
    }
}

@keyframes slideInFromBottom {
    0% {
        margin-bottom: -10%
    }
    to {
        margin-bottom: 0
    }
}

@-webkit-keyframes slideInFromBottom {
    0% {
        margin-bottom: -10%
    }
    to {
        margin-bottom: 0
    }
}

@keyframes slideInFromLeft {
    0% {
        margin-left: -10%
    }
    to {
        margin-left: 0
    }
}

@-webkit-keyframes slideInFromLeft {
    0% {
        margin-left: -10%
    }
    to {
        margin-left: 0
    }
}

@keyframes slideInFromRight {
    0% {
        margin-right: -10%
    }
    to {
        margin-right: 0
    }
}

@-webkit-keyframes slideInFromRight {
    0% {
        margin-right: -10%
    }
    to {
        margin-right: 0
    }
}

@keyframes popupSlider {
    0% {
        width: var(--s2_bubble_sz)
    }
    to {
        width: 100%
    }
}

@-webkit-keyframes popupSlider {
    0% {
        width: var(--s2_bubble_sz)
    }
    to {
        width: 100%
    }
}

@keyframes popupCloseAnimation {
    0% {
        width: 100%
    }
    to {
        width: var(--s2_bubble_sz)
    }
}

@-webkit-keyframes popupCloseAnimation {
    0% {
        width: 100%
    }
    to {
        width: var(--s2_bubble_sz)
    }
}

@keyframes channelSlider {
    0% {
        height: var(--s2_bubble_sz)
    }
    to {
        height: 100%
    }
}

@-webkit-keyframes channelSlider {
    0% {
        height: var(--s2_bubble_sz)
    }
    to {
        height: 100%
    }
}

@keyframes channelCloseAnimation {
    0% {
        height: 100%
    }
    to {
        height: var(--s2_bubble_sz)
    }
}

@-webkit-keyframes channelCloseAnimation {
    0% {
        height: 100%
    }
    to {
        height: var(--s2_bubble_sz)
    }
}

@keyframes channelIconHighglight {
    0% {
        opacity: 1;
        height: var(--s2_ch_img_sz);
        width: var(--s2_ch_img_sz)
    }
    80%,
    to {
        opacity: .5;
        height: var(--s2_ch_sz);
        width: var(--s2_ch_sz)
    }
}

@-webkit-keyframes channelIconHighglight {
    0% {
        opacity: 1;
        height: var(--s2_ch_img_sz);
        width: var(--s2_ch_img_sz)
    }
    80%,
    to {
        opacity: .5;
        height: var(--s2_ch_sz);
        width: var(--s2_ch_sz)
    }
}

@-webkit-keyframes color-shift {
    0%,
    to {
        background-color: #000
    }
    50% {
        background-color: #777
    }
}

@-webkit-keyframes rotate-partial {
    0%,
    to {
        transform: rotate(-45deg)
    }
    50% {
        transform: rotate(-25deg)
    }
}

:root {
    --s2_bubble_sz: 60px;
    --s2_bubble-margin: 20px;
    --s2_ch_sz: 48px;
    --s2_ch_img_sz: 35px;
    --s2_ch_margin: 6px
}

#chatbox-container {
    z-index: 2147483646;
    animation: fadeIn 1s;
    transition: all .5s ease-in;
    border-radius: 10px;
    overflow: hidden;
    bottom: 75px
}

#chatbox-container.k-hide {
    display: none
}

#chatbox-container iframe {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0
}

#chatbox-container.position-left {
    left: 0
}

#chatbox-container.position-right {
    right: 0
}

#chatbox-container.position-bottom,
#chatbox-container.position-center {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100% !important;
    margin: auto
}

#kenytChatBubble {
    z-index: 2147483645
}

#kenytChatBubble.unreadcount[data-unreadcount]:after {
    content: attr(data-unreadcount);
    position: absolute;
    right: 0;
    background: rgba(255, 0, 0, .85);
    color: #fff;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
    box-shadow: 0 0 1px #333;
    font-size: inherit;
    font-family: 'Open Sans', sans-serif
}

#kenytChatBubble.style1.unreadcount[data-unreadcount]:after {
    top: -6px
}

#kenytChatBubble.style1 {
    position: fixed;
    bottom: 0;
    margin-bottom: 25px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    box-shadow: 0 0 14px rgba(0, 0, 0, .5);
    transition: background-color .7s ease-in-out, box-shadow .5s ease-in-out;
    cursor: pointer;
    display: flex;
    right: 0;
    margin-right: 20px
}

#kenytChatBubble.style1.position-left {
    left: 0;
    margin-left: 20px
}

#kenytChatBubble.style1.position-left .chatWithUsMessageWrapper {
    left: 0;
    right: unset
}

#kenytChatBubble.style1.position-center,
style1.position-bottom {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0
}

#kenytChatBubble.style1 #bubbleTail {
    width: 0;
    height: 0;
    border-top: 21px solid;
    border-left: 24px solid transparent;
    position: absolute;
    bottom: -12px;
    left: 50%;
    margin-left: -19px;
    transition: border-top-color .7s ease-in-out, box-shadow .5s ease-in-out;
    border-top-color: inherit
}

#kenytChatBubble.style1.k-hide #bubbleTail {
    top: -15px;
    transform: rotate(-180deg);
    left: 71%
}

#kenytChatBubble.style1 .kbubble-container {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: space-around
}

#kenytChatBubble.style1 .kbubble-container .img-container {
    width: 47px;
    height: 47px;
    margin: auto;
    position: absolute;
    display: flex;
    border-radius: 50%;
    box-sizing: border-box;
    overflow: hidden
}

#kenytChatBubble.style1 .kbubble-container .img-container img {
    max-width: 44px;
    max-height: 44px;
    margin: auto
}

#kenytChatBubble.style1:hover {
    box-shadow: 0 0 14px rgba(0, 0, 0, .75)
}

#kenytChatBubble.style1 img {
    max-height: 80%;
    max-width: 80%;
    margin: auto 0 auto auto
}

#kenytChatBubble.style1 #kenytBubbleContainer {
    display: flex;
    flex-direction: column;
    width: auto;
    position: absolute;
    bottom: 120px;
    z-index: 2147483645;
    pointer-events: none;
    margin: auto
}

#kenytChatBubble.style1 #kenytBubbleContainer .kchannel-icon {
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    pointer-events: auto
}

#kenytChatBubble.style1 .chatWithUsMessageWrapper {
    text-align: center;
    max-width: 50vw;
    background: #fff;
    color: #3c3c3c;
    border-radius: 5px;
    position: absolute;
    bottom: 65px;
    font-size: 13px;
    line-height: 18px;
    box-shadow: 0 0 8px #000;
    transition: none;
    font-family: Calibri, sans-serif;
    animation-duration: .5s;
    animation-iteration-count: 1, 4;
    animation-direction: normal, alternate;
    animation-timing-function: ease-in, ease-in-out;
    overflow: hidden;
    right: 0
}

#kenytChatBubble.style1 .chatWithUsMessageWrapper #chatNowBtn {
    background: 0 0;
    border: 0;
    padding: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    font-size: 12px
}

#kenytChatBubble.style1 .kpopup-container .kpopup-text.k-hide,
#kenytChatBubble.style1.k-hide .chatWithUsMessageWrapper {
    display: none
}

#kenytChatBubble.style1 .kpopup-container .kpopup-text {
    max-height: 30px;
    margin: auto;
    border-bottom: 1px solid #eee;
    text-align: left
}

#kenytChatBubble.style1 .kpopup-container .kpopup-text p {
    white-space: nowrap;
    overflow: hidden;
    margin: auto;
    min-width: 165px;
    padding: 5px
}

#kenytChatBubble.style1 .kpopup-container .kpopup-text.kattention p {
    min-width: 165px
}

#kenytChatBubble.style1 .kpopup-container .kpopup-text p:not(:first-child),
#kenytChatBubble.style2 .kpopup-container .kpopup-text p:not(:first-child) {
    display: none
}

#kenytChatBubble.style1 .kconnectors-container {
    position: absolute;
    height: 1px;
    width: 1px;
    display: none
}

#kenytTextBubble,
#kenytWhatsappBubble {
    transition: background-color .7s ease-in-out, box-shadow .5s ease-in-out
}

#kenytChatBubble.style2 {
    position: fixed;
    bottom: var(--s2_bubble-margin);
    right: var(--s2_bubble-margin);
    font-family: 'Open Sans', sans-serif;
    box-sizing: content-box
}

#kenytChatBubble.style2 .kbubble-container #bubbleTail,
#kenytChatBubble.style2.k-hide {
    display: none
}

#kenytChatBubble.style2.position-left {
    left: var(--s2_bubble-margin);
    right: unset
}

#kenytChatBubble.style2.position-left .kbubble-container {
    right: unset;
    left: 0
}

#kenytChatBubble.style2.position-left .kchannels-container {
    right: unset;
    left: var(--s2_ch_margin)
}

#kenytChatBubble.style2.position-left .kpopup-container {
    right: unset;
    float: left
}

#kenytChatBubble.style2.position-left .kpopup-container>.kpopup-text {
    padding-left: calc(var(--s2_bubble_sz) + 5px);
    padding-right: 25px;
    text-align: left
}

#kenytChatBubble.style2.position-left.unreadcount:after {
    left: 2px
}

#kenytChatBubble.style2.position-center {
    right: 50%
}

#kenytChatBubble.style2 .kbubble-container {
    position: absolute;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    padding: 5px;
    right: 0;
    bottom: 0;
    overflow: hidden;
    box-sizing: content-box
}

#kenytChatBubble.style2 .kbubble-container .img-container {
    height: 100%;
    width: 100%;
    display: flex;
    background-color: inherit;
    border-radius: 50%;
    box-sizing: border-box;
    overflow: hidden
}

#kenytChatBubble.style2 .kbubble-container .img-container img {
    max-height: 40px;
    max-width: 40px;
    margin: auto
}

#kenytChatBubble.style2 .kchannels-container {
    position: absolute;
    width: var(--s2_ch_sz);
    border-radius: 50px;
    right: var(--s2_ch_margin);
    bottom: 0;
    overflow: hidden
}

#kenytChatBubble.style2 .kchannels-container .kstrip {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-color: #d5cdcd;
    opacity: .5;
    animation-name: channelSlider
}

#kenytChatBubble.style2 .kchannels-container .kchannel-group {
    margin-bottom: var(--s2_bubble_sz);
    padding-bottom: 5px;
    padding-top: 5px
}

#kenytChatBubble.style2 .kchannels-container .kchannel-group.k-hide {
    display: none
}

#kenytChatBubble.style2 .kchannels-container .kchannel-group .kchannel-icon {
    display: flex;
    height: var(--s2_ch_sz);
    width: var(--s2_ch_sz);
    position: relative;
    cursor: pointer
}

#kenytChatBubble.style2 .kchannels-container .kchannel-group .kchannel-icon .khighlight-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    height: 0;
    width: 0;
    border-radius: 50%;
    background-color: #525252
}

#kenytChatBubble.style2 .kchannels-container .kchannel-group .kchannel-icon.kanimate .khighlight-background {
    animation: channelIconHighglight infinite;
    animation-duration: 1.5s;
    animation-timing-function: ease-out
}

#kenytChatBubble.style2 .kchannels-container .kchannel-group .kchannel-icon img {
    height: var(--s2_ch_img_sz);
    width: var(--s2_ch_img_sz);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    box-sizing: border-box
}

#kenytChatBubble.style2 .kchannels-container.k-hide .ksecondary-bg {
    animation-name: channelCloseAnimation;
    height: var(--s2_bubble_sz)
}

#kenytChatBubble.style2 .kchannels-container.k-hide .kchannel-group .kchannel-icon.kanimate .khighlight-background {
    animation: unset
}

#kenytChatBubble.style2:hover .kchannels-container.k-hide .ksecondary-bg {
    animation-name: channelSlider;
    height: 100%
}

#kenytChatBubble.style2:hover .kchannels-container.k-hide .kchannel-group .kchannel-icon.kanimate .khighlight-background {
    animation: channelIconHighglight infinite
}

#kenytChatBubble.style2 .kpopup-container {
    height: calc(var(--s2_bubble_sz) - 10px);
    border-radius: 50px;
    position: relative;
    display: flex;
    padding: 5px 0;
    overflow: hidden;
    animation-name: popupSlider;
    color: #fff;
    float: right;
    box-sizing: content-box
}

#kenytChatBubble.style2 .kpopup-container.kpopup-holdanimation {
    opacity: 100;
    animation: none !important
}

#kenytChatBubble.style2:hover .kpopup-container.k-hide {
    animation-name: popupSlider;
    width: 100%
}

#kenytChatBubble.style2 .kpopup-container.k-hide {
    animation-name: popupCloseAnimation;
    width: var(--s2_bubble_sz)
}

#kenytChatBubble.style2 .kpopup-container .kpopup-text {
    padding-right: calc(var(--s2_bubble_sz) + 5px);
    padding-left: 25px;
    max-height: var(--s2_bubble_sz);
    margin: auto;
    font-size: 16px;
    box-sizing: content-box
}

#kenytChatBubble.style2:hover .kpopup-container .kpopup-text.k-hide {
    display: unset
}

#kenytChatBubble.style2 .kpopup-container .kpopup-text p {
    font-size: 14px;
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: auto;
    color: inherit;
    max-width: 150px;
    letter-spacing: .5px
}

#kenytChatBubble.style2 .kconnectors-container {
    position: absolute;
    height: 1px;
    width: 1px;
    display: none
}

#kenytChatBubble.style-embed {
    height: 100%;
    width: 100%
}

#kenytChatBubble.style-embed .k-d-none,
#kenytChatBubble.style2 .kpopup-container #chatNowBtn,
#kenytChatBubble.style2 .kpopup-container .kpopup-text.k-hide {
    display: none
}

#kenytChatBubble.style-embed .kbubble-container,
#kenytChatBubble.style-embed .kbubble-container .img-container {
    height: 100%;
    width: 100%;
    display: flex;
    background-color: inherit;
    box-sizing: border-box;
    overflow: hidden
}

#kenytChatBubble.style-embed .kbubble-container .img-container img {
    max-height: 90%;
    max-width: 90%;
    margin: auto
}

.kenyt-popup-close {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 1%;
    margin-right: 1%;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    font-size: 2rem
}

.kenyt-fullscreen-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 2147483647;
    background-color: rgba(0, 0, 0, .75);
    display: flex;
    height: 100%;
    width: 100%
}

.kenyt-fullscreen-container .navigation {
    cursor: pointer;
    padding: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transition: .6s ease;
    user-select: none;
    align-self: center;
    align-content: center;
    border-radius: 3px 0 0 3px
}

.kenyt-fullscreen-container .navigation:hover {
    background-color: rgba(0, 0, 0, .8)
}

.kenyt-fullscreen-container .prev {
    order: 1;
    flex-grow: 0
}

.kenyt-fullscreen-container .next {
    order: 3;
    flex-grow: 0
}

.kenyt-fullscreen-container .img-card {
    margin: auto;
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 95%
}

.kenyt-fullscreen-container .img-card .text {
    font-size: 24px;
    padding: 5px;
    line-height: 24px;
    color: #fff;
    overflow: hidden;
    text-align: center;
    flex-grow: 0;
    flex-shrink: 0
}

.kenyt-fullscreen-container .img-card .numberText {
    order: 1
}

.kenyt-fullscreen-container .img-card .captionText {
    order: 3
}

.kenyt-fullscreen-container .img-card .img-container {
    margin: auto;
    order: 2;
    flex-grow: 1;
    flex-shrink: 1;
    min-height: 0;
    display: flex;
    justify-content: flex-start;
    align-content: space-around;
    flex-wrap: wrap;
    width: 100%
}

.kenyt-fullscreen-container .img-card .img-container img {
    max-width: 100%;
    max-height: 100%;
    flex-grow: 1
}

@media only screen and (max-width:480px),
(max-height:480px) {
    #chatbox-container {
        position: fixed;
        bottom: 0;
        height: 50%;
        left: 30px;
        right: 30px;
        box-shadow: 0 5px 25px 0 rgba(0, 0, 0, .23);
        transition: all .5s ease-in-out
    }
    #chatbox-container.force-fullscreen {
        left: 0 !important;
        right: 0 !important;
        box-shadow: none
    }
    #chatbox-container.force-fullscreen,
    #chatbox-container.full-height {
        height: 100% !important;
        bottom: 0 !important
    }
    .incoming-call,
    .kenyt-media-container {
        width: 100%
    }
}

@media only screen and (max-height:465px) {
    #chatbox-container {
        position: fixed;
        bottom: 0;
        height: 100%;
        box-shadow: 0 5px 25px 0 rgba(0, 0, 0, .23);
        transition: all .5s ease-in-out
    }
    #chatbox-container.force-fullscreen {
        left: 0 !important;
        right: 0 !important;
        box-shadow: none
    }
    #chatbox-container.force-fullscreen,
    #chatbox-container.full-height {
        height: 100% !important;
        bottom: 0 !important
    }
    .incoming-call,
    kenytChatBubble .kenyt-media-container {
        width: 100%
    }
}

@media only screen and (min-width:480px) and (min-height:481px) {
    #chatbox-container {
        position: fixed;
        width: 370px;
        height: 75%;
        padding: 0;
        box-shadow: 0 0 4px 1px rgb(0 0 0/15%);
        transition: all .5s ease-in-out
    }
    #chatbox-container.force-fullscreen {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100% !important;
        height: 100% !important
    }
    #chatbox-container.style1 {
        box-shadow: 0 0 9px 0 rgb(0 0 0/15%);
        transition: all .5s ease-in-out
    }
    #chatbox-container.style1.position-left {
        margin-left: 70px;
        bottom: 75px
    }
    #chatbox-container.style1.position-right {
        margin-right: 70px;
        bottom: 75px
    }
    #chatbox-container.style2.position-left {
        margin-left: 20px;
        bottom: 20px
    }
    #chatbox-container.style2.position-right {
        margin-right: 20px;
        bottom: 20px
    }
    #chatbox-container.automotiveassistant {
        height: 80%
    }
    .incoming-call,
    .kenyt-media-container {
        width: 400px
    }
    .kenyt-fullscreen-container .img-card .img-container {
        flex-direction: column
    }
}

.pointer {
    cursor: pointer
}

.kenyt-highlightArea {
    border: solid 3px #0362fe;
    background-color: transparent !important;
    position: absolute;
    z-index: 10000000000000000;
    border-radius: 4px
}

#kenytIncomingCall,
.kenyt-media-container {
    position: fixed;
    border: 0;
    box-shadow: 0 0 2px #000;
    text-align: center;
    z-index: 2147483647;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.kenyt-media-container {
    padding: 0;
    background-color: #000;
    cursor: move
}

.kenyt-media-container.fullscreen {
    position: fixed !important;
    height: 100% !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: 0 !important;
    width: 100%;
    cursor: auto;
    transform: unset
}

.kenyt-media-container video#remote {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.kenyt-media-container #local {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 100;
    width: 20%;
    box-shadow: 0 2px 6px 0 #4a4a4a
}

.kenyt-media-container .call-action {
    border-radius: 50%;
    border-color: transparent;
    background-color: #fefefe;
    margin: 2%;
    min-width: 40px;
    min-height: 40px;
    text-align: center;
    color: #3c3c3c;
    font-size: 1rem
}

.kenyt-media-container .call-action.bg-red {
    background-color: #fa0000;
    color: #fff
}

.kenyt-media-container .rotate-135 {
    transform: rotate(135deg)
}

.kenyt-media-container .rotate-225 {
    transform: rotate(225deg)
}

.kenyt-media-container .action-bar {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 100000;
    background-color: rgba(0, 0, 0, .3);
    display: block;
    transition: 1s all ease-in
}

.kenyt-media-container .action-bar .k-hide {
    display: none
}

.kenyt-media-container .move-shadow {
    box-shadow: 10px 10px 12px #888
}

#kenytIncomingCall {
    background: #000;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    animation: color-shift;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    padding: 1rem .5rem
}

#kenytIncomingCall .incoming-call-icon {
    animation: rotate-partial;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

#kenytIncomingCall .incoming-call-text {
    font-size: 2em
}

#kenytIncomingCall .incoming-call-action {
    margin-left: 30%;
    margin-top: 2%;
    cursor: pointer;
    color: #fff !important;
    text-align: left
}

#kenytIncomingCall .incoming-call-action span {
    margin-left: 2%
}

#kenytIncomingCall .incoming-call-action:hover>span {
    text-decoration: underline
}

#kenytIncomingCall .rotate-45-neg {
    transform: rotate(-45deg)
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important
}

.m-2 {
    margin: .5rem !important
}

.ml-2 {
    margin-left: .5rem
}

.kenyt-media-container .float-right {
    float: right !important
}

.kenyt-media-container .w-100 {
    width: 100% !important
}

.kenyt-media-container .bg-danger,
.kenyt-media-container .bg-red {
    background-color: #fa0000;
    color: #fff
}

.kenyt-media-container .bg-white {
    background-color: #fff !important
}

#kenytIncomingCall .bg-green,
#kenytIncomingCall .bg-success {
    background-color: #28a745 !important
}