.live-support-popup-wrapper {
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    z-index: 100;
}

.live-support-popup-wrapper.show {
    display: block;
}

.live-support-popup {
    display: none;
    position: fixed;
    width: 90%;
    max-width: 375px;
    font-family: 'Open Sans', sans-serif;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    box-sizing: border-box;
    z-index: 100;
}

.live-support-popup.show {
    display: block;
}

.live-support-popup * {
    box-sizing: border-box;
}

.live-support-popup .live-support-heading {
    padding: 16px 90px 12px 90px;
    background-color: rgba(38, 177, 248, 1);
    /*background-image: linear-gradient(to right, #22d2fe, #9740fe);*/
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
}

.live-support-popup .user-agent {
    width: 66px;
    position: absolute;
    top: 10px;
    left: 14px;
    border-radius: 50%;
}

.live-support-popup .user-agent img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.live-support-popup .user-agent .online-indicator {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid white;
    background-color: #3ae43a;
    right: 0;
    bottom: 0;
    border-radius: 50%;
}

.live-support-popup .live-support-heading h4 {
    font-size: 1.25em;
    line-height: 1;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}

.live-support-popup .live-support-heading p {
    font-size: 1em;
    line-height: 1;
    color: white;
    margin: 0;
}

.live-support-popup .close-support-popup {
    position: absolute;
    right: 20px;
    top: 18px;
    background-color: transparent;
    padding: 0;
    border: none;
    width: 27px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 200ms linear;
}

.live-support-popup .close-support-popup:hover {
    opacity: 1;
}

.live-support-popup .close-support-popup:focus {
    outline: none;
}

.live-support-popup .close-support-popup img {
    display: block;
    width: 100%;
    height: auto;
}

.live-support-popup .info.hidden {
    display: none;
}

.live-support-popup .live-support-content {
    padding: 20px 25px 40px 25px;
}

.live-support-popup .live-support-content p {
    font-size: 1em;
    line-height: 1.25em;
    margin: 0 0 10px 0;
}

.live-support-popup .live-support-content p.hidden {
    display: none;
}

.live-support-popup .agent-typing {
    font-size: 1em;
    line-height: 1;
    color: #b9b9b9;
    margin-bottom: 10px;
}

.live-support-popup .agent-typing.obscured {
    opacity: 0;
}

.live-support-popup .agent-typing.hidden {
    display: none;
}

.live-support-popup .agent-typing .typing-dot {
    display: inline-block;
    vertical-align: bottom;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #b9b9b9;
    margin-left: 3px;
    animation-name: type;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.live-support-popup .agent-typing .typing-dot.dot-01 {
    animation-delay: 0ms;
}

.live-support-popup .agent-typing .typing-dot.dot-02 {
    animation-delay: 700ms;
}

.live-support-popup .agent-typing .typing-dot.dot-03 {
    animation-delay: 1400ms;
}

.live-support-popup form {
    display: none;
    position: relative;
}

.live-support-popup form.show {
    display: block;
}

.live-support-popup .grouped-fields {
    display: flex;
    justify-content: space-between;
}

.live-support-popup .grouped-fields .form-group {
    width: 49%;
    flex: 0 0 49%;
}

.live-support-popup .form-group {
    margin-bottom: 12px;
}

.live-support-popup .form-control {
    display: block;
    width: 100%;
    padding: 10px;
    border: 3px solid #bcbcbc;
    color: black;
    font-size: 1.125em;
    font-family: inherit !important;
    border-radius: 10px;
}

.live-support-popup .has-error .form-control {
    border-color: red;
}

.live-support-popup .form-error {
    display: block;
    width: 100%;
    padding: 3px 0 0 0;
    text-align: center;
    font-size: 0.875em;
    color: red;
}

.live-support-popup .submit-wrapper {
    position: relative;
}

.live-support-popup .submit-wrapper button {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(38, 177, 248, 1);
    background-position: left center;
    border: none;
    padding: 0;
    outline: none;
    cursor: pointer;
    transition: background-color 300ms ease;
}

.live-support-popup .submit-wrapper button:hover {
    background-color: rgba(0, 123, 186, 1);
}

.live-support-popup .submit-wrapper img {
    display: block;
    width: 33px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.live-support-popup p.thank-you-response {
    color: #22d2fe;
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.live-support-popup .alert.alert-danger {
    display: block;
    width: 100%;
    padding: 3px 0 0 0;
    text-align: center;
    font-size: 0.875em;
    color: red;
}

.live-popup-toggler {
    width: 68px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 0;
    border: 2px solid white;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    z-index: 50;
}

.live-popup-toggler.hidden {
    display: none;
}

.live-popup-toggler img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.live-popup-toggler .online-indicator {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid white;
    background-color: #3ae43a;
    right: 0;
    bottom: 0;
    border-radius: 50%;
}

@media screen and (min-width: 768px) {
    .live-support-popup {
        top: auto;
        left: auto;
        right: 30px;
        bottom: 30px;
        transform: none;
    }
}

@keyframes type {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    90% {
        transform: translateY(0px);
    }
}