.kc-modal{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9999;
    overscroll-behavior-y: contain;
    overflow-y: hidden;
}
.kc-modal.show{
    background-color: rgba(0, 0, 0, 0.46);
}
.kc-modal>.kc-body{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: auto;
    max-width: 767px;
    min-height: 120px;
    max-height: 100%;
    background-color: #fff;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 34px 0 rgba(0, 0, 0, .1);
    transform-origin: center;
    transition: 0.3s;
    white-space: nowrap;
    font-size: 0;
}
@media(max-width: 767px){
    .kc-modal>.kc-body {
        max-width: calc(100% - 30px);
    }
}
.kc-modal>.kc-body>.kc-line-content{
    transform: translateX(0);
    transition: transform 0.3s;
}
.kc-modal>.kc-body .kc-content{
    display: inline-block;
    width: 100%;
    margin-top: 40px;
    max-height: calc(100vh - 75px);
    font-size: 14px;
    padding: 15px;
    overscroll-behavior-y: contain;
    overflow-y: auto;
    white-space: normal;
    vertical-align: top;
}
.kc-modal>.kc-body .kc-content *{
    overscroll-behavior-y: none;
}
.kc-modal.show>.kc-body{
    transform: translate(-50%, -50%) scale(1);
}
.kc-modal>.kc-body>.kc-close
{
    z-index: 99;
}
.kc-modal>.kc-body>.kc-title,
.kc-modal>.kc-body>.kc-close{
    display: block;
    position: absolute;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.kc-modal>.kc-body>.kc-title{
    left: 0;
    padding: 0 15px;
    line-height: 40px;
    font-size: 22px;
    font-weight: 500;
    width: calc(100% - 55px);
}
.kc-modal>.kc-body>.kc-title>.kc-back{
    display: block;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    width: 30px;
    height: 30px;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd" [<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/"><!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/"><!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/"><!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">]><svg fill="%23000000" version="1.1" baseProfile="tiny" id="Layer_1" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" width="800px" height="800px" viewBox="0 0 42 42" xml:space="preserve"><polygon fill-rule="evenodd" points="27.066,1 7,21.068 26.568,40.637 31.502,35.704 16.865,21.068 32,5.933 "/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 52%;
}
.kc-modal>.kc-body>.kc-title.back{
    padding-left: 60px;
}
.kc-modal>.kc-body>.kc-title.back>.kc-back{
    opacity: 0.5;
    pointer-events: auto;
}
.kc-modal>.kc-body>.kc-close{
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 0;
    cursor: pointer;
    opacity: 0.5;
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24"/><path d="M7 17L16.8995 7.10051" stroke="%23000" stroke-linecap="round" stroke-linejoin="round"/><path d="M7 7.00001L16.8995 16.8995" stroke="%23000" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    transition: 0.3s;
}
.kc-modal>.kc-body>.kc-close:hover{
    opacity: 1;
}