.makchat-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.makchat-box {
    display: none;
    background: #efefef;
    position: fixed;
    right: 20px;
    width: 750px;
    top: 100px;
    bottom: 20px;
    border-radius: 10px;
    z-index: 999;
}
.makchat-box a {    color: #db4c00;    text-decoration: none;    text-transform: unset;}
.makchat-box-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #7d4ac7;
    background: -moz-linear-gradient(left, #7d4ac7 0%, #a733bb 100%);
    background: -webkit-linear-gradient(left, #7d4ac7 0%, #a733bb 100%);
    background: linear-gradient(to right, #7d4ac7 0%, #a733bb 100%);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: white;
    text-align: center;
    padding: 0;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

    .makchat-box-header .makchat-logoout {
        height: 54px;
        margin: 2px 0 2px 10px;
    }

    .makchat-box-header .mk_logo {
        height: 54px;
    }

    .makchat-box-header .makchat-title {
        margin-bottom: 0;
        color: #ffffff;
        font-weight: 600;
    }

    .makchat-box-header .makchat-toolbar {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        align-content: baseline;
        padding-right: 20px;
    }

        .makchat-box-header .makchat-toolbar i {
            font-size: 20px;
        }

.makchat-disclaimer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: baseline;
    color: darkgray;
    font-size: 10px;
    margin-top: -10px;
}

#makchat-box-header .mk-menu {
    z-index: 107;
    position: fixed;
    inset: 0px 0px auto auto;
    padding: 0;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    margin: 10px 10px 0 0;
    display: flex;
    border-radius: 0.475rem;
    background-color: white;
    list-style: none;
    font-weight: 500 !important;
    width: 280px !important;
    box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075);
}

.mk-menu-column {
    flex-direction: column;
    width: 100%;
}

.mk-menu-title {
    display: block;
    padding: 0.15rem 0;
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
}

    .mk-menu-title .mk-menu-content {
        display: flex;
        color: #99A1B7;
        padding: 0.65rem 1rem;
    }

.mk-menu-item {
    display: block;
    padding: 0.15rem 0;
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
    text-align: start;
}

    .mk-menu-item .mk-menu-link {
        color: #252F4A;
        cursor: pointer;
        display: flex;
        align-items: center;
        padding: 0;
        flex: 0 0 100%;
        padding: 0.65rem 1rem;
        transition: none;
        outline: none !important;
    }

.makchat-logs {
    position: absolute;
    left: 0;
    right: 0;
    top: 59px;
    bottom: 200px;
    background: white;
    border: 1px solid #cccccc;
    overflow-y:scroll;
    padding: 10px;
}

    .makchat-logs::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #6d6e71;
    }

    .makchat-logs::-webkit-scrollbar {
        width: 5px;
        background-color: #6d6e71;
    }

    .makchat-logs::-webkit-scrollbar-thumb {
        background-color: #6d6e71;
    }

.makchat-input {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: white; /* #f4f7f9; */
    border: 1px solid #ccc;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .makchat-input div, .makchat-input textarea {
        margin: 0;
        padding: 0;
    }

.makchat-hints-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 748px;
}

.makchat-hintsleftdiv {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 68px;
    z-index: 100;
}

.makchat-hintsrightdiv {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 68px;
    z-index: 100;
}

.makchat-hintsleftdiv i, .makchat-hintsrightdiv i {
    font-size: 20px;
}

.makchat-input #makchat-hints {
    position: relative;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    height: 70px;
}

    .makchat-input .makchat-inputtoolbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-content: center;
        margin: 0;
        padding: 5px;
    }


@media only screen and (max-height:750px) {
    .makchat-box {
        top: 0;
        bottom: 0;
        border-radius: 0;
    }

    .makchat-box-header {
        border-radius: 0;
    }

    #makchat-box-header .mk-menu {
        margin-top: -90px;
    }

    .makchat-input {
        border-radius: 0;
    }
}

@media only screen and (max-width:890px) {
    .makchat-box {
        width: 600px;
    }

    .makchat-hints-bar {
        width: 600px;
    }
}

@media only screen and (max-width:640px) {
    .makchat-box {
        width: auto;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border-radius: 0;
    }

    .makchat-box-header {
        border-radius: 0;
    }

    #makchat-box-header .mk-menu {
        margin-top: -90px;
        margin-right: -10px;
    }

    .makchat-input {
        border-radius: 0;
    }

    .makchat-hints-bar {
        width: auto;
    }
}

.makchat-popup {
    font-size: 15px;
    min-width: 160px;
    max-width: 270px;
    padding: 15px 15px 15px 15px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1.5rem 0.5rem rgb(0, 0, 0, 0.10);
}

.mk-popup-title {
    display: flex;
    justify-content: space-between;
}

    .mk-popup-logo {
        height: 30px;
    }

#makchat-popup-close {
    background: transparent;
    color: #6d6e71;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border: 0;
    box-shadow: none;
    line-height: 1;
    cursor: pointer;
    outline: none !important;
    margin: 5px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
    text-transform: unset;
    font-weight: bold;
}

    #makchat-popup-close:hover {
        background: #e1dfdf;
    }

.makchat-btntransparent {
    border-radius: 1.475rem;
    background: transparent;
    color: #335eea;
    border: 0;
    padding: 5px;
    border-style: none;
    margin: 2px;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    text-transform: unset;
    font-weight: 600;
}

.makchat-blue.makchat-btntransparent:hover {
    background: #335eea;
    color: white;
}

.makchat-red.makchat-btntransparent:hover {
    background: red;
    color: white;
}

.makchat-green.makchat-btntransparent:hover {
    background: #06be1a;
    color: white;
}

.makchat-btnactivelightprimary {
    border-radius: 1.475rem;
    background: #97acef;
    color: white;
    border: 0;
    padding: 5px;
    border-style: none;
    margin: 2px;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    text-transform: unset;
    font-weight: 600;
}

.makchat-quickreply {
    border-radius: 1.475rem;
    background: #335eea;
    color: white;
    padding: 10px;
    border-style: none;
    margin: 10px 0px 0px 0px;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    text-transform: unset;
    font-weight: 600;
}

#makchat-submit {
    border-radius: 1.475rem;
    background: #335eea;
    color: white;
    padding: 10px;
    border-style: none;
    margin: 0px 20px 0px 0px !important;
    text-decoration: none;
    font-size: 12px;
    text-transform: unset;
    font-weight: 600;
}


    .makchat-btnprimary:hover {
        background: #5ba7ff;
    }


.makchat-btndanger {
    border-radius: 1.475rem;
    background: #335eea;
    color: white;
    padding: 5px;
    border-style: none;
    margin: 2px;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    text-transform: unset;
    font-weight: 600;
}

    .makchat-btndanger:hover {
        background: #5ba7ff;
    }

.makchat-btnsuccess {
    border-radius: 1.475rem;
    background: #335eea;
    color: white;
    padding: 5px;
    border-style: none;
    margin: 2px;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    text-transform: unset;
    font-weight: 600;
}

    .makchat-btnsuccess:hover {
        background: #5ba7ff;
    }

.makchat-btninfo {
    border: 3px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: transparent; /*#7239ea;*/
    color: white;
    padding: 5px;
    border-style: solid;
    margin: 2px;
    cursor: pointer;
    text-decoration: none;
    font-size: 15px;
    text-transform: unset;
    font-weight: 600;
    white-space: nowrap;
}

    .makchat-btninfo:hover {
        background: white; /* #6130c7;*/
    }

.makchat-btnicon {
    background: transparent;
    color: white;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border: 0;
    box-shadow: none;
    line-height: 1;
    cursor: pointer;
    outline: none !important;
    margin: 5px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
    text-transform: unset;
    font-weight: 600;
}

    .makchat-btnicon:hover {
        background: #e1dfdf;
        color: #335eea;
    }

#makchat-input {
    width: 100%;
    color: #888;
    resize: none;
    height: 60px;
    padding: 5px;
    box-sizing: border-box;
}

    #makchat-input:focus-visible {
        outline-offset: 0px;
        outline: darkgray solid 0px;
    }

#makchat-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #cccccc;
}

#makchat-input::-moz-placeholder { /* Firefox 19+ */
    color: #cccccc;
}

#makchat-input:-ms-input-placeholder { /* IE 10+ */
    color: #cccccc;
}

#makchat-input:-moz-placeholder { /* Firefox 18- */
    color: #cccccc;
}

.makchat-box hr {
    padding: 0;
    margin: 0 0 2px 0;
    color: lightgray;
}

.makchat-box a {
    color: #000;
    text-decoration: none;
    text-transform: unset;
}

.makchat-symbol {
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    height: 35px;
    width: 35px;
    margin: 5px;
}

    .makchat-symbol img {
        border-radius: 50%;
        height: 35px;
        width: 35px;
    }

.makchat-light-info {
    padding: 15px;
    border-top-right-radius: 2.475rem;
    border-bottom-left-radius: 2.475rem;
    border-bottom-right-radius: 2.475rem;
    background-color: #f8f5ff;
    font-weight: 500;
}

.makchat-light-primary {
    padding: 15px;
    border-top-left-radius: 2.475rem;
    border-bottom-left-radius: 2.475rem;
    border-bottom-right-radius: 2.475rem;
    background-color: #f1faff;
    font-weight: 500;
    text-align: right;
}

.makchat-list .makchat-title {
    display: block;
    margin: 15px 0 10px;
    font-weight: bold;
}

.makchat-list .makchat-subtitle {
    display: block;
    margin: 0 0 10px;
}

.makchat-list .makchat-item .makchat-itemtitle {
    font-weight: bold;
}

.makchat-list .makchat-item .makchat-itemimage {
    float: right;
    max-width: 40%;
    height: auto;
}

.makchat-list .makchat-item .makchat-itemreply, .makchat-item-horizontally .makchat-itemreply, .makchat-carousel-vertically .makchat-itemreply, .makchat-link {
    width: 100%;
    background: #335eea;
    color: white;
    margin: 5px 0 5px;
    padding: 8px;
    text-decoration: none;
}

a.makchat-itemreply {
    display: inline-block;
    text-align: center;
    border-radius: 1.475rem;
}

li.makchat-item {
    margin: 0 !important;
    list-style: none;
}


.makchat-card {
    margin: 15px 0;
}

    .makchat-card .makchat-image {
        max-width: 50%;
        margin: auto;
    }

    .makchat-card .makchat-title {
        display: block;
        margin: 5px 0 0;
        font-weight: bold;
    }

    .makchat-card .makchat-subtitle {
        display: block;
        margin: 2px 0 5px;
    }

    .makchat-card .makchat-description, .makchat-card .makchat-link {
        display: block;
        margin: 0;
        font-size: 0.8em;
    }

.flexslider {
    margin: 0 !important;
}

    .flexslider .slides > li {
        display: block;
    }

.makchat-item-horizontally .makchat-title, .makchat-item-horizontally .makchat-subtitle, .makchat-carousel-vertically .makchat-title, .makchat-carousel-vertically .makchat-subtitle, .markchat-media .makchat-title, .markchat-media .makchat-subtitle, .makchat-title, .makchat-subtitle, .makchat-description {
    display: block;
}

.flex-direction-nav a.flex-prev:before, .flex-direction-nav a.flex-next:before {
    color: #FFFFFF;
}

.flex-direction-nav a {
    overflow: visible !important;
    margin-top: -80px !important;
}

.flexslider:hover .flex-direction-nav .flex-prev {
    left: -15px !important;
}

.makchat-link {
    display: block;
    margin: 0 0 10px;
    text-align: center;
    color: #FFF !important;
}

.markchat-media .makchat-title {
    font-weight: bold;
}

#videoplayer {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.makchat-table {
    text-align: center;
}

    .makchat-table, .makchat-table tr, .makchat-table td {
        border-color: #6d6e71;
    }

        .makchat-table thead tr th, .makchat-table tfoot tr td {
            border-color: #6d6e71;
        }

        .makchat-table thead tr, .makchat-table tfoot tr {
            font-weight: bold;
            background-color: #6d6e71;
            color: #FFFFFF;
        }


.imgchatserviceicon {
    max-width: 90px;
    max-height: 90px;
    border-radius: 30px;
    cursor: pointer;
}

    .imgchatserviceicon.multi {
        display: none;
    }

@keyframes shake {
    10%, 90% {
        transform: translate3d(-2px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(4px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-8px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(8px, 0, 0);
    }
}