.apparent-message {
    width: 100%;
    border-style: solid;
    border-width: 2px;
    /*margin-bottom: 50px;*/
}

    .apparent-message .apparent-message-icon {
        flex: 0 0 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: #fff;
        /*text-shadow: 1px 1px 10px #000;*/
    }

        .apparent-message .apparent-message-icon .fa-2x {
            box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.45);
        }

.message-container {
    display: flex;
}

    .message-container .content-container {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        /*padding: 10px;*/
        padding-left: 15px;
        background-color: #fff;
        position: relative;
    }

        .message-container .content-container .message-header {
            font-size: 20px;
        }

        .message-container .content-container .message-body {
            padding: 10px;
            /*margin-top: 10px;*/
            font-size: 14px;
            color: #515151;
        }

        .message-container .content-container .message-action {
            position: absolute;
            bottom: 10px;
            right: 30px;
        }

.warning-message {
    background-color: #f39b0e;
    border-color: #f39b0e;
}

    .warning-message .message-action,
    .warning-message .message-header {
        color: #f39b0e;
    }

.info-message {
    background-color: #184c9e;
    border-color: #c49941;
    /*background-color: #3598db;
  border-color: #3598db;*/
}

    .info-message .message-action,
    .info-message .message-header {
        color: #3598db;
    }

.success-message {
    background-color: #43a046;
    border-color: #43a046;
}

    .success-message .message-action,
    .success-message .message-header {
        color: #43a046;
    }

.error-message {
    background-color: #e1374c;
    border-color: #e1374c;
}

    .error-message .message-action,
    .error-message .message-header {
        color: #e1374c;
    }


.custom-file-label {
    padding: .600rem .75rem;
}


.bs-example {
    margin: 20px;
}

.accordion .card {
    border-radius: 0;
    border: none;
    margin-bottom: 5px;
    /*padding-bottom: 3px;*/
    border: 1px solid #ccc;
}

.accordion .card-header {
    background: #205ab3; /*#ececec*/
    padding: .4rem 1rem;
    border-radius: 0;
    margin-bottom: -2px;
    font-family: "Roboto", sans-serif;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    /*margin: 0 3px 3px 0;*/
    border: none;
}

    .accordion .card-header:hover {
        background: #c59a42; /*#e0e0e0*/
        color: #000;
    }

    .accordion .card-header .btn {
        font-size: 1.04rem;
        font-weight: 500;
        width: 100%;
        text-align: left;
        position: relative;
        top: -2px;
    }

    .accordion .card-header i {
        float: right;
        font-size: 1.3rem;
        font-weight: bold;
        position: relative;
        top: 5px;
    }

    .accordion .card-header button:hover {
        color: #23384e;
    }

    .accordion .card-header.highlight {
        color: #fff;
        background: #c49941; /*#47b9de*/
    }

.accordion .card-body {
    text-align: justify;
}


.custom-control-label::before {
    background-color: #fff;
    border: #adb5bd solid 1px;
}

.input-group .input-group-addon {
    border-color: #e5e5e5;
    background: #e5e5e5;
    min-width: 39px;
    padding: 6px 12px;
}

.rms-wizard .button-section .btn {
    border-top: 1px solid #2868cb;
    border-left: 1px solid #225ebb;
    border-right: 1px solid #215bb6;
    border-bottom: 1px solid #194d9e;
    background: linear-gradient(to bottom, rgb(41, 106, 207) 1%, rgb(25, 77, 158) 100%);
}

.rms-wizard .button-section .next .btn:after, .rms-wizard .button-section .submit .btn:after {
    border-left: 1px solid #6b8cc0;
    border-right: 1px solid #194d9e;
}

.rms-wizard .button-section .prev .btn:after {
    border-left: 1px solid #6b8cc0;
    border-right: 1px solid #194d9e;
}

.rms-wizard .rms-content-section .rms-content-body {
    border: 1px solid #ddd !important;
    background-color: #fdfdfd;
}

.accordion .custom-radio .custom-control-label {
    color: #fff;
}

.disable {
    pointer-events: none;
    opacity: 0.4;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type='checkbox'], input[type='radio'] {
        --active: #275efe;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #bbc1e1;
        --border-hover: #275efe;
        --background: #fff;
        --disabled: #f6f8ff;
        --disabled-inner: #e1e6f9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

        input[type='checkbox']:after, input[type='radio']:after {
            content: '';
            display: block;
            left: 0;
            top: 0;
            position: absolute;
            transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
        }

        input[type='checkbox']:checked, input[type='radio']:checked {
            --b: var(--active);
            --bc: var(--active);
            --d-o: 0.3s;
            --d-t: 0.6s;
            --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
        }

        input[type='checkbox']:disabled, input[type='radio']:disabled {
            --b: var(--disabled);
            cursor: not-allowed;
            opacity: 0.9;
        }

            input[type='checkbox']:disabled:checked, input[type='radio']:disabled:checked {
                --b: var(--disabled-inner);
                --bc: var(--border);
            }

            input[type='checkbox']:disabled + label, input[type='radio']:disabled + label {
                cursor: not-allowed;
            }

        input[type='checkbox']:hover:not(:checked):not(:disabled), input[type='radio']:hover:not(:checked):not(:disabled) {
            --bc: var(--border-hover);
        }

        input[type='checkbox']:focus, input[type='radio']:focus {
            box-shadow: 0 0 0 var(--focus);
        }

        input[type='checkbox']:not(.switch), input[type='radio']:not(.switch) {
            width: 21px;
        }

            input[type='checkbox']:not(.switch):after, input[type='radio']:not(.switch):after {
                opacity: var(--o, 0);
            }

            input[type='checkbox']:not(.switch):checked, input[type='radio']:not(.switch):checked {
                --o: 1;
            }

        input[type='checkbox'] + label, input[type='radio'] + label {
            font-size: 14px;
            line-height: 21px;
            display: inline-block;
            vertical-align: top;
            cursor: pointer;
            margin-left: 4px;
        }

        input[type='checkbox']:not(.switch) {
            border-radius: 7px;
        }

            input[type='checkbox']:not(.switch):after {
                width: 5px;
                height: 9px;
                border: 2px solid var(--active-inner);
                border-top: 0;
                border-left: 0;
                left: 7px;
                top: 4px;
                transform: rotate(var(--r, 20deg));
            }

            input[type='checkbox']:not(.switch):checked {
                --r: 43deg;
            }

        input[type='checkbox'].switch {
            width: 38px;
            border-radius: 11px;
        }

            input[type='checkbox'].switch:after {
                left: 2px;
                top: 2px;
                border-radius: 50%;
                width: 15px;
                height: 15px;
                background: var(--ab, var(--border));
                transform: translateX(var(--x, 0));
            }

            input[type='checkbox'].switch:checked {
                --ab: var(--active-inner);
                --x: 17px;
            }

            input[type='checkbox'].switch:disabled:not(:checked):after {
                opacity: 0.6;
            }

    input[type='radio'] {
        border-radius: 50%;
    }

        input[type='radio']:after {
            width: 19px;
            height: 19px;
            border-radius: 50%;
            background: var(--active-inner);
            opacity: 0;
            transform: scale(var(--s, 0.7));
        }

        input[type='radio']:checked {
            --s: 0.5;
        }
}


#button-container {
    margin-top: 25px;
    text-align: center;
}


@media only screen and (max-width: 600px) {
    #button-container {
        margin-top: 100px;
    }
}

.divider {
    height: 2px;
    width: 193px;
    margin: 5px auto;
    background: url(../../images/divider.png);
}

.rms-wizard .select2-container {
    height: 0px;
    padding: 0px !important;
    border: 0px;
}

a.select2-choice {
    min-height: 36px !important;
    max-height: 36px !important;
    overflow-y: auto;
}
