body{
    background: #fafafa;
}
.fs-small{
    font-size: 0.85rem;
}
.border-bottom-dotted{
    border-bottom: 2px dotted #cccccc;
}
/* .row {
    --bs-gutter-y: 1rem;
} */

.btn{
    max-width: 300px;
}
.btn-logout{
    background: #DCDCDC;
}
.btn-logout:hover{
    background: #CCCCCC;
}
.btn-back{
    background: #cccccc;
}
.btn-back:hover{
    background: #ababab;
}
.btn-contact{
    border: solid 1px #888888;
}
.btn-contact:hover{
    background: #dcdcdc;
}
.flow ul li{
    width: 20%;
    max-width: 180px;
    min-width: 70px;
    color: #888888;
    background: #cccccc;
    position: relative;
}
.flow ul li:not(:last-child){
    margin: 0 20px 0 0;
}
.flow ul li:not(:last-child)::after{
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid #888888;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
}
.flow li.current{
    color: #222222;
    font-weight: bold;
    background: #ffc107;
}

.form-label{
    margin-bottom: 3px;
}
.req{
    font-size: 11px;
    color: #ff1232;
}
.attention{
    font-size: 0.8rem;
    font-weight: normal;
}
.invalid-feedback,
.alart{
    margin: 2px 0 0 5px;
    font-size: 12px;
    color: #ff1232;
    font-weight: bold;
}
.input-s{
    width: 50%;
    max-width: 300px;
}
.form-control:focus,
.form-check-input:focus,
.form-select:focus{
    box-shadow: 0 0 0 .15rem rgba(13, 110, 253, .25);
}
.form-floating>.form-control.hight-100{
    height: 100px;
}
.form-floating>.form-control.hight-150{
    height: 150px;
}
.form-floating>.form-control.hight-200{
    height: 200px;
}
.form-floating>.form-control.hight-250{
    height: 250px;
}
.form-floating>.form-control.hight-300{
    height: 300px;
}
.form-floating>.form-control.hight-400{
    height: 400px;
}
.form-floating>.form-control.hight-500{
    height: 500px;
}

.label{
    color: rgba(var(--bs-body-color-rgb), .65);
    font-size: 0.85rem;
}
.preview{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.preview figure{
    width: 33%;
    max-width: 300px;
}
.preview figure:not(:last-child){
    margin: 0 10px 0 0;
}
.preview figure>img{
    width: 100%;
}

@media screen and (max-width: 767px){
    .input-s{
        width: 100%;
        max-width: initial;
    }
    .preview{
        flex-direction: column;
    }
    .preview figure:not(:last-child){
        margin-left: 0;
        margin-bottom: 20px;
    }
}