/*basic*/

nav{
    margin-bottom: 3em;
}
.navbar-brand{
    font-weight: inherit;
}

.row{
    margin-bottom: 1.5em;
}

h2 .step-number{
    margin-right: 20px;
}

/*btn*/
.btn-primary:disabled{
    background-color: #EFEDE8;
    color: #99958C;
    box-shadow: 0 1px 2px #EFEDE8;
    border: 1px solid #dddddd;
}

#convertBtn{
    width: calc(100% - 16px);
    margin-left: 16px;
}


/*datepicker*/
.input-group.date input[type=text]{
    border:1px solid #bdc3c7;
}

.datepicker-days th.dow:nth-last-child(2),
.datepicker-days td:nth-last-child(2) {
    color: #00f;
}
.datepicker-days th.dow:last-child,
.datepicker-days td:last-child {
    color: #f00;
}

/*input file*/
.input-group.file .col-7.custom-file{
    padding-left: 0;
    padding-right: 0;
}
.input-group.file .custom-file-input,
.input-group.file .custom-file-input::-webkit-file-upload-button{
    cursor: pointer;
}
.input-group.file .input-group-append>button{
    color: #495057;
    height: calc(1.5em + .75rem + 2px + 1.5px);
    border: 1px solid #ced4da;
    background-color: #E9ECEF;
    padding: 0 .75rem;
    font-size: 15px;
}

.input-group.file .input-group-append>button:focus{
    z-index: 4;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    outline: none;
}

.custom-file-label{
    overflow: hidden;
}

/**/
.custom-textinput-autocomplete {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .375rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/*smart checkbox*/
div.radiosp div{
    float: left;
    position: relative;
    width: 50%;
}
div.radiosp div input {
    height: 100%;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
div.radiosp div input + label{
    color:#333;
    display:block;
    text-align:center;
    padding: 10px;
    border: 1px solid #ddd;
    background-image:-webkit-gradient(linear,left top,left bottom,from(#F9F9F9),to(#EEEEEE));
    background:-moz-linear-gradient(#F9F9F9,#EEEEEE);
}
div.radiosp div input + label.l{
    border-radius:4px 0 0 4px;
}
div.radiosp div input + label.r{
    border-radius:0 4px 4px 0;
}
div.radiosp div input:checked + label{
	background-image:-webkit-gradient(linear,left top,left bottom,from(#5393C5),to(#6FACD5));
	background: -moz-linear-gradient(#5393C5, #6FACD5) ;
	border: 1px solid #2373A5;
	color:#fff;
}

.radiosp-input:focus~.radiosp-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    position: relative;
    z-index: 1;
}