.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal .modal-header button {
    background: transparent;
    font-size: 1em;
    font-weight: bolder;
}
.modal button {
    padding: 10px 15px;
    border-radius: 5px;
    border: unset;
    color: white;
}
.modal .action-save {
    color: white;
    background-color: var(--primary);
}

.modal.fade .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 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 900;
    background-color: #000000;
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #F5F5F5;
}

.modal-header .modal-title {
    margin: 0px;
    padding-top: 8px;
}

.modal-header .action-close {
    top: 2px;
    position: relative;
    background-color: var(--background-horas-icon);
}

.modal-header-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

[id*="modalInteressolicitud"] .modal-body .form-group {
    align-items: center;
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
}

[id*="modalInteressolicitud"] .modal-body .form-group > label {
    width: 140px;
    display: inline-block;
    padding: 10px 5px;
}

[id*="modalInteressolicitud"] .modal-body .form-group > input,
[id*="modalInteressolicitud"] .modal-body .form-group > textarea {
    width: calc(100% - 160px);
    border: none;
    padding: 5px;
    border-bottom: 1px solid darkgray;
}

modalInteressolicitud188051
.form-group {
    flex: 1 1 100%;
}


@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

.modal-header:after,
.modal-footer:after {
    clear: both;
}