.success {
    padding: 25px;
    margin-top: 15px;
}
.footer_lg img {
    width: 150px;
    height: 48px;
}
.chat-window {
    position: fixed;
    bottom: 110px;
    right: 10px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 2px 2px 25px 2px rgba(0, 0, 0, 0.17);
    z-index: 9999;
}
.chat-window__header {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background-color: #da6615;
    height: auto;
    text-align: center;
    padding: 15px 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.chat-window__content {
    min-height: 420px;
    background-color: #f1f1f1;
    padding: 20px 20px 0;
    overflow: auto;
}
.chat-window__content-hint {
    color: #303944;
    font-size: 14px;
    padding: 5px 0 10px;
    line-height: 20px;
}
.chat-window__content > form {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.input-container {
    width: 100%;
    height: 45px;
    transition: height 0.7s ease-in-out;
    flex: 0 0 auto;
}
.chat-window .input-container > .ser-input {
    height: 40px;
    padding: 0 10px;
    border: 1px solid #cbced3;
    width: 100%;
    border-radius: 4px;
    outline: 0;
}
.txr-sms-chat input[type="password"],
.txr-sms-chat input[type="tel"],
.txr-sms-chat input[type="text"],
.txr-sms-chat select,
.txr-sms-chat textarea {
    font-size: 16px;
    color: #42454b;
    min-height: initial;
}
.input-container .error-hint {
    display: block;
    max-height: 0;
    transition: max-height 0.7s ease-in-out, padding-top 1s ease-in-out;
    margin-top: 0;
    padding-top: 20px;
    overflow: hidden;
    font-size: 16px;
    align-items: center;
    color: #e44428;
}
.input-container.message {
    height: 140px;
}
.input-container.message > .ser-input {
    height: 140px;
    padding-top: 10px;
}
.input-container.button {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    flex: 1 1 auto;
}
.chat-window * {
    position: static;
}
.txr-sms-chat * {
    box-sizing: border-box;
    font-family: Lato, Trebuchet, Arial, Sans-serif;
    font-size: 16px;
}
.chat-window__bottom {
    height: 52px;
    background-color: #fff;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    text-align: center;
    padding: 5px;
    font-size: 12px;
    color: #303944;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chat-window__bottom a {
    max-width: 113px;
    margin-left: 10px;
}
.chat-icon {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 9;
}
.chat__popover {
    position: fixed;
    background: #fff;
    bottom: 110px;
    right: 10px;
    display: block;
    z-index: 99;
    padding: 0 38px 0 18px;
    border-radius: 5px;
    height: 65px;
    line-height: 65px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3215686274509804);
    width: 100%;
    max-width: 300px;
}
.chat__popover-text {
    position: relative;
    font-size: 16px;
    color: #484848;
    align-self: center;
    max-width: 270px;
    word-break: normal;
    width: 100%;
    flex: 1 1 auto;
}
.chat__popover-close {
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: 16px;
    cursor: pointer;
    color: #979ca7;
    background-image: url(../images/cancel-popup.png);
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}
.chat__popover-angle {
    display: none;
    position: fixed;
    bottom: 97px;
    right: 35px;
    background-color: #fff;
    border: solid #fff;
    border-width: 0 15px 15px 0;
    padding: 5px;
    transform: rotate(45deg);
    box-shadow: 20px 20px 27px -6px #b3b1b3;
}
.chat__popover-angle.opened {
    display: block;
}
.close-menu-dis .chat__popover.opened {
    display: none;
}
.load-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 1;
}
.chat-window .txr-button {
    display: flex;
    padding: 0 12px;
    height: 48px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 25px;
    width: 164px;
    background-color: #da6615;
    color: #fff;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.txr-button:hover {
    background-color: #98470e !important;
}
