@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.mdl {
    visibility: visible !important;
    pointer-events: unset;
    opacity: 1;
    text-replace: 2px;
    z-index: 99999;
    position: fixed;
    bottom: 0;
    right: 0%;
    height: 56px;
    max-width: 1024px;
    width:400px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-family: 'Arial', sans-serif;
    color: #4E5566
}

.mdl.hidden {
    visibility: hidden !important;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

.mdl * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none !important
}

.mdl[data-type="1"] .modal__steps {
    display: -ms-grid;
    display: grid
}

.mdl[data-type="2"] .modal__guarantee {
    display: -ms-grid;
    display: grid
}

.mdl .icon {
    display: block;
    max-width: 50px;
    max-height: 50px
}

.mdl .fielder {
    position: relative
}

.mdl .fielder__input {
    width: 100%;
    height: 48px;
    padding: 16px 16px 0;
    margin-top: 16px;
    border: 1px solid #C6C7CF;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    color: #0E1F40;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .fielder__input.notempty {
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .fielder__input.notempty+.fielder__placeholder {
    top: 6px;
    height: 14px;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #4E5566;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .fielder__input:focus {
    -webkit-box-shadow: inset 0 0 0 2px #0054C6;
    box-shadow: inset 0 0 0 2px #0054C6;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .fielder__input:focus+.fielder__placeholder {
    top: 6px;
    height: 14px;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #0054C6;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .fielder__input.invalid {
    -webkit-box-shadow: inset 0 0 0 2px #ED1C24;
    box-shadow: inset 0 0 0 2px #ED1C24
}

.mdl .fielder__input.invalid+.fielder__placeholder {
    top: 6px;
    height: 14px;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #ED1C24;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .fielder__info {
    padding-top: 4px;
    color: #ED1C24;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    padding-left: 16px
}

.mdl .fielder__info-hidden {
    display: none
}

.mdl .fielder__placeholder {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    line-height: 48px;
    padding: 0 16px;
    margin-top: 16px;
    pointer-events: none
}

.mdl .scroll::-webkit-scrollbar-track {
    border-radius: 0;
    -webkit-box-shadow: none;
    background-color: transparent
}

.mdl .scroll::-webkit-scrollbar {
    width: 16px;
    height: 16px;
    background-color: transparent
}

.mdl .scroll::-webkit-scrollbar-thumb {
    -webkit-box-shadow: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-radius: 16px;
    border: 4px solid white;
    background: #C5C9D1
}

.mdl .scroll::-webkit-scrollbar-button {
    width: 0;
    height: 4px
}

.mdl .plate {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: -webkit-min-content 1fr -webkit-min-content;
    grid-auto-columns: min-content 1fr min-content;
    width: 100%;
    height: 56px;
    padding: 8px;
    background: white;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .16), 0 0 2px rgba(0, 0, 0, .16);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .16), 0 0 2px rgba(0, 0, 0, .16);
    border-radius: 16px 16px 0 0
}

.mdl .plate__title {
    padding: 10px 16px;
    font-weight: 700;
    line-height: 20px;
    font-size: 14px
}

.mdl .menu {
    overflow: hidden;
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 8px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.mdl .menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap;
    color: white;
    cursor: pointer;
    background: #0054C6;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

.mdl .menu__mobileButton {
    display: none
}

@media (max-width:1023px) {
    .mdl {
        left: 0;
        -webkit-transform: unset;
        transform: unset;
        width:100%;
    }
    .mdl .menu__mobileButton {
        display: block;
        width: fit-content;
        height: 40px;
        margin-right: 20px;
        margin-left: 20px;
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        white-space: nowrap;
        color: white;
        cursor: pointer;
        background: #0054C6;
        -webkit-transition: .2s ease-in;
        transition: .2s ease-in
    }
    .mdl.noBot .menu__mobileButton {
        margin-left: 0;
        padding: 12px 63px
    }
    .mdl .menu__item {
        display: none
    }
    .mdl .menu__dropper {
        display: none
    }
    .mdl.noBot .plate {
        grid-auto-columns: unset;
        justify-content: center
    }
    .mdl.noBot .plate .help {
        position: absolute;
        right: 10px;
        top: 5px
    }
    .mdl.noBot .plate .help .help__modal {
        width: 200px;
        bottom: 32px
    }
    .mdl.onlyBot .plate .chat__dropper .chat__tooltip {
        color: white;
        text-align: center;
        -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, .16)) drop-shadow(0 4px 8px rgba(0, 0, 0, .16));
        filter: drop-shadow(0 0 2px rgba(0, 0, 0, .16)) drop-shadow(0 4px 8px rgba(0, 0, 0, .16));
        background: #0E1F40;
        right: 65px;
        bottom: 12px;
    }
    .mdl .plate__title {
        display: none
    }
    .mdl .chat__dropper-button {
        float: right;
    }
    .mdl .modal.scroll {
        border-radius: 0;
        transform: translate3d(0, 0, 0);
        -webkit-overflow-scrolling: touch;
        padding: 16px;
        position: fixed;
        bottom: unset;
        top: 0;
        max-height: 100vh;
        height: 100%
    }
    .mdl .modal.scroll .modal__close {
        right: 1px
    }
    .mdl .modal.scroll {
        display: block;
        width: 100%
    }
    .mdl .modal.scroll .modal__form {
        padding-right: 0;
        border-right: none
    }
    .mdl .modal.scroll .modal__form-footer .button {
        width: 100%;
        display: flex;
        justify-content: center
    }
    .mdl .modal.scroll .modal__form-footer {
        grid-auto-flow: row;
        width: 100%;
        border-bottom: 1px solid #EBEEF2;
        padding-bottom: 16px;
        margin-bottom: 16px
    }
    .mdl .modal.scroll .modal__steps {
        padding-left: 16px
    }
    .mdl .modal.scroll .modal__guarantee {
        padding-left: 16px
    }
    .mdl .plate .chat__dropper .chat__tooltip {
        width: 95%;
        max-width: 400px;
        padding: 8px 12px;
        margin-left: 8px;
        margin-right: 8px;
        color: #000;
        background: #fff;
        filter: drop-shadow(0 0 2px rgba(0, 0, 0, .16)) drop-shadow(0 4px 8px rgba(0, 0, 0, .16))
    }
    .mdl .chat__modal.change {
        transform: translate3d(0, 0, 0);
        position: fixed;
        right: unset;
        top: 0;
        bottom: unset;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        height: 100%;
        max-height: 100vh
    }
}

.mdl .menu__item:hover {
    background: #005EE0;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

.mdl .menu__item.active {
    color: #0E1F40;
    -webkit-box-shadow: inset 0 0 0 1px #4E5566;
    box-shadow: inset 0 0 0 1px #4E5566;
    background: #F5F8FD
}

.mdl .menu__dropper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    background: #0054C6;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .menu__dropper:hover {
    background: #005EE0;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

.mdl .menu__dropper.active {
    background: #F5F8FD;
    -webkit-box-shadow: inset 0 0 0 1px #4E5566;
    box-shadow: inset 0 0 0 1px #4E5566;
    fill: #0E1F40;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .menu__dropper.active .menu__dropper-icon {
    fill: #0E1F40;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .menu__dropper-icon {
    width: 24px;
    height: 24px;
    fill: white;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .menu__modal {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    text-replace: 2px;
    z-index: 12;
    overflow: auto;
    position: absolute;
    bottom: 64px;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 232px;
    padding: 8px 0;
    border-radius: 8px;
    -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, .16)) drop-shadow(0 4px 8px rgba(0, 0, 0, .16));
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .16)) drop-shadow(0 4px 8px rgba(0, 0, 0, .16));
    background: white
}

.mdl .menu__modal.active {
    visibility: visible;
    pointer-events: unset;
    opacity: 1;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

.mdl .menu__modal .menu__item {
    width: 100%;
    height: 36px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    background: 0;
    border-radius: 0;
    color: #4E5566;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in;
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.mdl .menu__modal .menu__item:hover {
    background: #F5F8FD;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

.mdl .modal {
    z-index: 11;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    overflow: auto;
    position: absolute;
    bottom: 64px;
    display: -ms-grid;
    display: grid;
    padding: 32px;
    -ms-grid-columns: 4fr 3fr;
    grid-template-columns: 4fr 3fr;
    width: 100%;
    max-height: calc(100vh - 72px);
    border-radius: 16px;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .16), 0 4px 8px rgba(0, 0, 0, .16);
    box-shadow: 0 0 2px rgba(0, 0, 0, .16), 0 4px 8px rgba(0, 0, 0, .16);
    background: #FFF;
    color: #0E1F40;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

.mdl .modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: unset;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

.mdl .modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    cursor: pointer
}

.mdl .modal__close-icon {
    width: 100%;
    height: 100%
}

.mdl .modal__form {
    padding-right: 32px;
    border-right: 1px solid #EBEEF2
}

.mdl .modal__form-title {
    margin: 0;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px
}

.mdl .modal__form-title-changer {
    text-transform: lowercase
}

.mdl .modal__form-subtitle {
    margin: 0 0 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px
}

.mdl .modal__form .select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: none;
    border: 1px solid #C6C7CF;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    color: #0E1F40;
    line-height: 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.mdl .modal__form .select:valid {
    padding-top: 16px;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .modal__form .select:valid+.fielder__placeholder {
    top: 6px;
    margin-top: 0;
    height: 14px;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #4E5566;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .modal__form .select:focus {
    -webkit-box-shadow: inset 0 0 0 2px #0054C6;
    box-shadow: inset 0 0 0 2px #0054C6;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .modal__form .select:focus+.fielder__placeholder {
    top: 6px;
    margin-top: 0;
    height: 14px;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #0054C6;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .modal__form .select~.icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    fill: #0E1F40
}

.mdl .modal__form-footer {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 24px;
    margin-top: 24px
}

.mdl .modal__form-footer .button {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 8px;
    height: 48px;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    padding: 0 32px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    line-height: 16px;
    color: white;
    border-radius: 8px;
    background: #ED1C24;
    cursor: pointer;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .modal__form-footer .button:hover {
    background: #FF262D;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.mdl .modal__form-privicy {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #9A9BA6
}

.mdl .modal__form-privicy a {
    color: #9A9BA6
}

.mdl .modal__steps {
    padding-left: 37px
}

.mdl .modal__steps-title {
    margin: 0;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px
}

.mdl .modal__steps-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 64px 1fr;
    grid-template-columns: 64px 1fr;
    grid-gap: 24px;
    margin-bottom: 24px
}

.mdl .modal__steps-item-bullet {
    position: relative;
    width: 64px;
    height: 64px;
    padding: 16px;
    border-radius: 16px;
    background: #E1EDFC
}

.mdl .modal__steps-item-bullet-icon {
    width: 32px;
    height: 32px
}

.mdl .modal__steps-item-bullet-index {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    padding: 4px 0;
    border-radius: 50%;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #0054C6;
    background: white;
    text-align: center;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .16);
    box-shadow: 0 0 2px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .16)
}

.mdl .modal__steps-item-content-title {
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px
}

.mdl .modal__steps-item-content-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px
}

.mdl .modal__adv {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40px auto;
    grid-template-columns: 40px auto;
    grid-gap: 24px
}

.mdl .modal__adv-bul {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 16px;
    background: #E1EDFC
}

.mdl .modal__adv-icon {
    width: 24px;
    height: 24px
}

.mdl .modal__adv-content {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px
}

.mdl .modal__adv-content div {
    font-weight: 700
}

.mdl .modal__guarantee {
    display: none;
    padding-left: 37px
}

.mdl .modal__guarantee-title {
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px
}

.mdl .modal__guarantee-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 24px
}

.mdl .modal__guarantee-text-p {
    margin-bottom: 1em
}

.mdl .modal__guarantee-text-p:last-of-type {
    margin-bottom: 0
}

.mdl .modal__guarantee-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 24px
}

.mdl .modal__guarantee-list-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40px 1fr;
    grid-template-columns: 40px 1fr;
    grid-gap: 16px
}

.mdl .modal__guarantee-list-item-bullet {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 16px;
    background: #E1EDFC
}

.mdl .modal__guarantee-list-item-bullet-icon {
    width: 24px;
    height: 24px
}

.mdl .modal__guarantee-list-item-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px
}

.mdl .help__button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    background: #FFF;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .16);
    box-shadow: 0 0 2px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .16);
    cursor: pointer
}

.mdl .help__modal {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    text-replace: 2px;
    z-index: 10;
    overflow: visible;
    position: absolute;
    bottom: 64px;
    right: 0;
    max-width: 320px;
    height: auto;
    padding: 8px 0;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .1);
    background: white
}

.mdl .help__modal.active {
    visibility: visible;
    z-index: 13;
    pointer-events: unset;
    opacity: 1;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

.mdl .help__modal-item {
    width: 100%;
    height: 36px;
    padding: 8px 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    background: 0;
    border-radius: 0;
    color: #4E5566;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: pointer
}

.mdl .help__modal-item:hover {
    background: #F5F8FD;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

.mdl .chat__dropper {
    margin-right: 14px;
    cursor: pointer
}

.mdl .chat__dropper-button {
    position: relative;
    overflow: hidden;
    width: 40px;
    --size: 12px;
    --border: 1px solid white
}

.mdl #close_mod {
    font-size:16px;
    line-height:16px;
    text-align:center;
    color:#FFF;
    position: absolute;
    padding:0px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: none;
    background: #ff0000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index:9999;
    right:6px;
    top:-10px;
}

.mdl .chat__dropper-button .anna-frame3 {
    display: none
}

.mdl .chat__dropper-button .anna-frame1 {
    opacity: 1
}

.mdl .chat__dropper-button .anna-frame2 {
    opacity: 1
}

.mdl .chat__dropper-button .anna-frame1.hide {
    display: none
}

.mdl .chat__dropper-button .anna-frame2.hide {
    display: none
}

.mdl .chat__dropper-button:hover .icon.anna-frame1 {
    display: none;
    opacity: 0
}

.mdl .chat__dropper-button:hover .icon.anna-frame2 {
    display: none;
    opacity: 0
}

.mdl .chat__dropper-button:hover .icon.anna-frame3 {
    display: block
}

.mdl .chat__dropper-button-icon {
    border-radius: 50%
}

.mdl .chat__tooltip {
    opacity: 1;
    pointer-events: unset;
    z-index: 10;
    overflow: visible;
    position: absolute;
    bottom: 64px;
    right: 0;
    max-width: 182px;
    height: auto;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 18px;
    color: white;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1);
    -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, .16)) drop-shadow(0 4px 8px rgba(0, 0, 0, .16));
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .16)) drop-shadow(0 4px 8px rgba(0, 0, 0, .16));
    background: #0E1F40
}

.mdl .chat__tooltip.hide {
    opacity: 100;
    pointer-events: none
}

.mdl .chat__modal {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in;
    overflow: hidden;
    position: absolute;
    right: 12px;
    bottom: 74px;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 56px 1fr 49px;
    grid-template-rows: 56px 1fr 49px;
    width: 633%;
    height: 633px;
    max-height: calc(100vh - 72px);
    max-width: 360px;
    background: #FFF;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .16), 0 4px 8px rgba(0, 0, 0, .16);
    box-shadow: 0 0 2px rgba(0, 0, 0, .16), 0 4px 8px rgba(0, 0, 0, .16);
    border-radius: 16px
}

.mdl .chat__modal.active {
    text-align: left;
    visibility: visible;
    pointer-events: unset;
    opacity: 1;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in;
    z-index:99999;
}

.mdl .chat__modal-header {
    border-bottom: 1px solid #EBEEF2;
    text-align: center
}

.mdl .chat__modal-title {
    margin-top: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #0E1F40
}

.mdl .chat__modal-status {
    display: -ms-inline-grid;
    display: inline-grid;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 4px;
    -ms-grid-columns: 16px 1fr;
    grid-template-columns: 16px 1fr;
    grid-gap: 4px
}

.mdl .chat__modal-status-icon {
    width: 16px;
    height: 16px
}

.mdl .chat__modal-status-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px
}

.mdl .chat__modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    cursor: pointer
}

.mdl .chat__modal-close-icon {
    width: 100%;
    height: 100%
}

.mdl .chat__modal-content {
    overflow: auto;
    height: 100%;
    padding: 16px
}

.mdl .chat__modal-message-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 32px 1fr;
    grid-template-columns: 32px 1fr;
    grid-gap: 8px;
    margin-bottom: 16px
}

.mdl .chat__modal-message-wrapper.me {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
}

.mdl .chat__modal-message-wrapper.me .chat__modal-message-name {
    text-align: right
}

.mdl .chat__modal-message-wrapper.me .chat__modal-message-bubble {
    background: #D1E4FF;
    border-radius: 8px 0 8px 8px
}

.mdl .chat__modal-message-wrapper.me .chat__modal-message-avatar {
    display: none
}

.mdl .chat__modal-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%
}

.mdl .chat__modal-message-name {
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #9A9BA6
}

.mdl .chat__modal-message-bubble {
    display: block;
    padding: 8px;
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #0E1F40;
    border-radius: 0 8px 8px 0;
    background: #F5F8FD
}

.mdl .chat__modal-message-bubble:last-of-type {
    margin-bottom: 0;
    border-radius: 0 8px 8px 8px
}

.mdl .chat__modal-message-bubble-menu {
    margin: 4px -4px
}

.mdl .chat__modal-message-bubble-menu.more .chat__modal-message-bubble-button:nth-of-type(n+7) {
    display: inline-block
}

.mdl .chat__modal-message-bubble-menu.more+.chat__modal-message-bubble-more {
    display: none
}

.mdl .chat__modal-message-bubble-button {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 16px;
    margin: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #0E1F40;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 8px;
    background: #D1E4FF;
    cursor: pointer
}

.mdl .chat__modal-message-bubble-button:hover {
    background: #D1E4FF
}

.mdl .chat__modal-message-bubble-button:nth-of-type(n+7) {
    display: none
}

.mdl .chat__modal-message-bubble-more {
    width: 100%;
    padding: 12px 24px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #0054C6;
    border: 1px solid #E1EDFC;
    border-radius: 8px;
    background: #FFF;
    cursor: pointer
}

.mdl .chat__modal-message-typing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 48px;
    height: 24px;
    background: #F5F8FD;
    border-radius: 0 8px 8px 8px
}

.mdl .chat__modal-message-typing span {
    display: block;
    width: 4px;
    height: 4px;
    margin: 2px;
    border-radius: 50%;
    background: #9A9BA6
}

.mdl .chat__modal-message-typing span:nth-of-type(1) {
    -webkit-animation: 1s scale 0s infinite linear;
    animation: 1s scale 0s infinite linear
}

.mdl .chat__modal-message-typing span:nth-of-type(2) {
    -webkit-animation: 1s scale 1.5s infinite linear;
    animation: 1s scale 1.5s infinite linear
}

.mdl .chat__modal-message-typing span:nth-of-type(3) {
    -webkit-animation: 1s scale 2.5s infinite linear;
    animation: 1s scale 2.5s infinite linear
}

.mdl .chat__modal-footer {
    position: relative;
    height: 100%;
    border-top: 1px solid #EBEEF2
}

.mdl .chat__modal-footer textarea {
    font-family: 'Arial', sans-serif;
    width: 100%;
    height: 100%;
    padding: 15px 16px;
    padding-right: 52px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    border: none;
    resize: none;
    overflow: hidden
}

.mdl .chat__modal-footer textarea:placeholder {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px
}

.mdl .chat__modal-send {
    position: absolute;
    top: 4px;
    right: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    z-index: 2;
    cursor: pointer
}

.mdl .chat__modal-send-icon {
    width: 24px;
    height: 24px
}

.mdl.onlyBot .menu {
    display: none
}

.mdl.onlyBot .plate .plate__title {
    display: none
}

.mdl.onlyBot .plate .help {
    display: none
}

.mdl.onlyBot .plate {
    width: auto;
    display: block;
    right: 0;
    left: unset;
    background: transparent;
    box-shadow: none
}

.mdl.onlyBot .chat__dropper .chat__tooltip {
    width: 288px;
    border-radius: 16px;
    max-width: 288px;
    bottom: 12px;
    right: 75px
}

.mdl.onlyBot .plate .chat__dropper .chat__dropper-button {
    top: -20px;
    right: -10px;
    height: 55px;
    width: 55px;
    overflow: visible;
}

.mdl.onlyBot .plate .chat__dropper .chat__dropper-button::before {
    top: 0px;
    right: -2px;
}

.mdl.onlyBot .plate .chat__dropper .chat__dropper-button-icon {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .16), 0 0 2px rgba(0, 0, 0, .16);
    box-sizing: content-box;
    border: 4px solid #fff
}

.mdl.noBot {
    max-width: 900px
}