* {
    box-sizing: border-box;
}

/* # Modals
================================================== */
.modal-content {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-bottom-color: rgba(0, 0, 0, 0.4);
}

.modal-header {
    background-color: #f9f9f9;
}

.show-more-modal-header{
    color: #383838!important;
    background-color: #f9f9f9;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.show-more-modal-body{
    position: relative;
    padding: 15px;
    margin: 20px;
    text-align: left;
}

.modal-header .close {
    margin-top: 5px;
    font-size: 15px !important;
}

.modal-title {
    font-weight: 600;
    font-size: 15px;
    color: #555555;
}

.modal-footer {
    background-color: #f9f9f9;
}

body.modal-open {
    margin-right: 15px;
}

.modalApp .modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    transition: opacity .3s ease;
}

.modalApp .modal-container {
    max-width: 800px;
    margin: 40px auto;
    /*padding: 20px 30px;*/
    background-color: #fff;
    border-radius: 1.6rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
    transition: all .3s ease;
    /*font-family: Helvetica, Arial, sans-serif;*/
    color: black;
}

.modalApp .modal-header h3 {
    margin: 0;
    color: black;
}

.modalApp .modal-body {
    margin: 20px 0;
}

.modalApp .text-right {
    text-align: right;
}

.modalApp .form-label {
    display: block;
    margin-bottom: 1em;
}

.modalApp .form-label > .form-control {
    margin-top: 0.5em;
}

.modalApp .form-control {
    display: block;
    width: 100%;
    padding: 0.5em 1em;
    line-height: 1.5;
    border: 1px solid #ddd;
}

/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modalApp .modal-enter {
    opacity: 0;
}

.modalApp .modal-leave-active {
    opacity: 0;
}

.modalApp .modal-enter .modal-container,
.modalApp .modal-leave-active .modal-container {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}