.modal {
    position: fixed;
    top: 100px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out;
}

.modal-dialog {
    max-width: 800px;
    margin: 10.75rem auto;
    position: relative;
    width: auto;
}

.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    outline: 0;
}

.modal-body {
    position: relative;
}

.modal-body .box {
    margin-bottom: 0px;
}

.box{
    padding:15px 10px;
}

.box__image{
    display: flex;
    align-items: center;
    justify-content: center;
}

.box .box__image img {
  max-width: 80%;
}

.box img {
    display: block;
}

.box .box__text .box__close a {
    text-align: right;
    display: block;
    font-family: "Open Sans", sans-serif;
}

.box .box__text .box__close a svg{
	color: #707273 !important;
}

.box__detail p {
    font-family: "Open Sans", sans-serif;
    margin-bottom:0.5rem;
}

.box__detail h3.theme-cl2{
    color: #e52330;
    font-family: "Open Sans", sans-serif;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: #000;
    opacity: 0.5;
}

@media (max-width: 575px) {
 .modal {
    position: fixed;
    top: 50px;
    right: 10px;
    bottom: 0;
    left: 10px;
    z-index: 9999;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

}