#ada-entry {
    z-index: 100000;
    position: relative;
}

.chat-consent-button {
    display: none;
    opacity: 1;
    z-index: 100000;
    position: fixed;
    right: 24px;
    bottom: 24px;
    max-width: 100%;
    background-color: transparent;
    border: 0;
    overflow: hidden;
}
.chat-consent-button__icon,
.chat-consent-button__item {
    display: flex;
    justify-content: center;
    position: relative;
}
.chat-consent-button__item {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-left: auto;
    background-color: #ff6c2c;
    color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}

.chat-consent-button__item:hover {
    background-color: #d03f00;
}

/*
  background: #ff6c2c;
  border-color: #ff6c2c;
}
button.btn-primary:hover,
a.btn-primary:hover {
  background: #d03f00;
  border-color: #d03f00;
*/

.chat-consent-button button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0.5em;
    color: inherit;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    width: 100%;
    display: flex;
}
.chat-consent-button__icon {
    width: 32px;
    height: 32px;
    align-items: center;
}
.chat-consent-button__icon,
.chat-consent-button__item {
    display: flex;
    justify-content: center;
    position: relative;
}

.pul-button,
.pul-button:active,
.pul-button:focus,
.pul-button:hover {
    color: #fff;
    cursor: pointer;
    background-color: #c4c4c4;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 700;
    padding: 10px 15px;
    line-height: 1;
}

.pul-button--primary,
.pul-button--primary:active,
.pul-button--primary:focus {
    color: #fff;
    background-color: #ff6c2c;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
}

.pul-button--primary:hover {
    background-color: #d03f00;
}

.pul-popover {
    display: none;
    position: fixed;
    z-index: 100;
    right: 8px;
    bottom: 77px;

    border-radius: 4px;
    margin-bottom: 14px;

    animation: pul-popover--fade 0.3s ease-in-out;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #dedede;

    box-shadow: 0 4px 16px rgba(40, 40, 52, 0.15),
        0 0 1px rgba(40, 40, 52, 0.35);
    box-sizing: border-box;
    color: #222;
    font-size: 14px;
    line-height: 1.429;
    max-width: 400px;
    opacity: 1;
    text-align: left;
    white-space: normal;
}

.pul-popover__content-inner {
    box-sizing: border-box;
    overflow-wrap: break-word;
    padding: 12px 33px 16px 12px;
}

.pul-button--ghost .pul-button__icon {
    margin-left: 0;
    opacity: 1;
}
.pul-button--empty .pul-button__icon,
.pul-button--empty .pul-button__spinner,
.pul-button--empty .pul-icon {
    margin: 0;
}
.pul-button__icon:not(.pul-icon--intent) {
    color: #737373;
}
.pul-button__icon {
    flex: none;
    margin-left: -8px;
    margin-right: 6px;
    vertical-align: top;
}
.pul-icon {
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 24px;
}

.pul-popover .pul-popover__close {
    line-height: 12px;
    margin: 4px 4px 4px 0;
    min-height: 18px;
    min-width: 18px;
    padding: 3px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}

.pul-popover--placement-top-end .pul-popover__arrow {
    left: 330px;
    bottom: -14px;
    margin: 0 10px;
    transform: rotate(180deg);
    border: none;
    box-shadow: 0 1px 0 #fff;
    height: 14px;
    overflow: hidden;
    width: 28px;
    display: block;
    position: absolute;
}

.pul-popover__arrow:after {
    display: block;
    position: absolute;
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 2px;
    content: "";
    height: 18px;
    left: 4px;
    margin: 0;
    top: 6px;
    transform: rotate(45deg) skew(-6deg, -6deg);
    transform-origin: center;
    width: 18px;
}

@media (max-width: 414px) {
    .pul-popover--placement-top-end .pul-popover__arrow {
        display: none;
    }
}

.spinner {
    display: none;
    border: 4px solid rgba(255, 255, 255, 1);
    border-left: 4px solid #5bbbe6;
    animation: spinner-animation 1.1s infinite linear;
    border-radius: 50%;
    width: 25px;
    height: 25px;
}
@keyframes spinner-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pul-popover--fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
