/*** Buttons ***/

.top-btn {
    bottom: 70px !important;
}

.livechat-btn {
    position: fixed;
    background-color: transparent;
    border: none;
    cursor: pointer;
    bottom: .5rem;
    z-index: 110;
    outline: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.livechat-btn {
    right: 1.625rem;
}

@media (max-width: 576px) {
    .livechat-btn img {
        max-width: 140px;
    }

    .livechat-btn {
        right: 0;
    }
}

/*** Live Chat ***/

.live-chat {
    position: fixed;
    bottom: 1.5rem;
    right: 3rem;
    min-width: 337px;
    max-width: 337px;
    color: #fff;
    z-index: 120;
    display: none;
}

@media (max-width: 576px) {
    .live-chat {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        right: auto;
        min-width: 95%;
        max-width: 95%;
    }
}

.live-chat .live-chat-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ac0a3a;
    padding: 1rem 1rem 0;
    position: relative;
    border-radius: 5px 5px 0 0;
}

    .live-chat .live-chat-header .live-chat-logo {
        background-color: #f4f4f4;
        border-radius: 5px 5px 0 0;
        padding: 1.125rem 0.8125rem 0;
        margin-right: 1.125rem;
        margin-bottom: -1px;
    }

    .live-chat .live-chat-header span {
        font-size: 15px;
        font-weight: bold;
    }

    .live-chat .live-chat-header .close-chat {
        position: absolute;
        top: 1.5625rem;
        right: 1.6875rem;
        border: none;
        outline: none;
        background-color: transparent;
        cursor: pointer;
    }

.live-chat .live-chat-content {
    background-color: #f4f4f4;
    border-radius: 0 0 5px 5px;
    padding: 2.1875rem 1.25rem 1.3125rem;
}

    .live-chat .live-chat-content .accept-terms {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 1.25rem;
    }

.live-chat .live-chat-content {
    margin-bottom: 1.00rem;
}

    .live-chat .live-chat-content .accept-terms input[type="checkbox"] {
        -webkit-appearance: none;
        background-color: #fff;
        border: 1px solid #c3c2c1;
        border-radius: 3px;
        padding: 8px;
        position: relative;
        display: inline-block;
        width: auto;
        height: auto;
        text-indent: 0;
        margin: 0;
        margin-right: 0.625rem;
        outline: none;
    }

        .live-chat .live-chat-content .accept-terms input[type="checkbox"]:checked:after {
            content: '\2714';
            font-size: 0.875rem;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
            color: #636c74;
            line-height: 1;
        }

    .live-chat .live-chat-content .accept-terms label {
        font-size: 13px;
        color: #636c74;
    }

        .live-chat .live-chat-content .accept-terms label a {
            color: #636c74;
            font-size: 13px;
            text-decoration: underline;
        }

    .live-chat .live-chat-content p {
        font-size: 13px;
        color: #636c74;
        
        margin-bottom: 1rem;
        line-height: 17px;
    }

        .live-chat .live-chat-content p a {
            color: #636c74;
            text-decoration: underline;
        }

    .live-chat .live-chat-content .open-chat {
        background-color: #ac0a3a;
        color: #fff;
        text-align: center;
        border-radius: 4px;
        border: none;
        outline: none;
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 14px;
        cursor: pointer;
    }

        .live-chat .live-chat-content .open-chat[disabled] {
            opacity: .7;
        }
