.klee-modal.klee-inline {
    display: inline-block;
}
.klee-modal .klee-modal-btn-simple {
    display: block;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}
.klee-modal .klee-modal-btn {
    color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff !important;
    display: inline-block;
    border-width: 1px;
    border-style: solid;
    text-decoration: none;
    cursor: pointer;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.klee-modal .klee-modal-btn:hover {
    color: #fff !important;
    background-color: #0069d9 !important;
    border-color: #0062cc !important;
}
.klee-modal button img {
    display: block;
    max-width: 100%;
}
.klee-modal .klee-modal-fade {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0,0,0,.3);
}
.klee-modal .klee-modal-fade:not(.show) {
    display: none;
}
.klee-modal .klee-modal-contenido {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    transition: opacity .5s ease-in-out;
}
.klee-modal .klee-modal-fade:not(.animacion) .klee-modal-contenido {
    opacity: 0;
}
.klee-modal .klee-modal-imagen {
    position: relative;
    display: flex;
    height: 100%;
    cursor: pointer;
}
.klee-modal .klee-modal-imagen svg {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1%;
}
.klee-modal .klee-modal-dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 300px;
    width: 100%;
    background-color: #ffffff;
    color: #464E5F;
    border-radius: 0.42rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.1);
    outline: 0;
}
@media (min-width: 576px) {
    .klee-modal .klee-modal-dialog {
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,.1);
    }
}
.klee-modal .klee-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid #ECF0F3;
}
.klee-modal .klee-modal-title {
    font-weight: 500;
    font-size: 1.3rem;
    color: #212121;
    margin: 0;
    line-height: 1.5;
}
.klee-modal .klee-modal-header svg {
    display: block;
    fill: #B5B5C3;
    transition: fill .15s ease-in-out;
}
.klee-modal .klee-modal-header svg:hover {
    fill: #212121;
}
.klee-modal .klee-modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1.75rem;
}
.klee-modal .klee-modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    border-top: 1px solid #ECF0F3;
}
.klee-modal .klee-modal-footer button {
    margin-right: 0.5rem;
}