::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
    color: transparent;
}
.chapter-active:after {
    content: '';
    display: block;
    height: 2px;
    width: 100% !important;
    background-color: var(--border-primary);
}
.row-text{
    width: 90%;
    margin: 0 auto;
}
.head-status{
    color: gray;
}
.title-status{
    font-size: 25px;
    margin-bottom: 10px;
}
.fa-exclamation-triangle{
    color: red;
}
.fa-info-circle{
    color: #3f2a94;
}
.fa-check-square{
    color: green;
}
.identification-status-text{
    display: inline-block;
}
.button-complete{
    margin: auto 0;
}
.complete-ident{
    border: 1px solid #dedede;
    color: black;
    font-size: 18px;
    padding: 10px 20px;
    transition: .3s ease-in;
}
.complete-ident:hover{
    border: 1px solid var(--bg-primary);
    box-shadow: 0 0 8px 3px var(--bg-primary);
}
.form-row-items{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
}
.title-form{
    font-size: 26px;
    margin-top: 20px;
}
input{
    border: 0;
    height: 25px;
    font-size: 20px;
    background-color: transparent;
}
.line{
    display: block;
    width: 100%;
    height: 2px;
    background-color:#dedede;
    transition: .3s ease-in;
}
.input:focus ~ .line,
.selection-value:focus ~ .line{
    animation: line-green .25s cubic-bezier(0.85, 0.24, 1, 1);
    background-color: var(--border-primary);
}
@keyframes line-green{
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
}
.item-form{
    margin-right: 40px;
    margin-top:  10px;
}
.placeholder{
    color: #666666;
}
.row-items-1{
    width: calc(100% - 20px);
}
#email{
    width: calc(100% - 40px);
}
#email ~ .line{
    width: inherit;
}
.fa-pen{
    border: 0;
}
.color-button{
    color: #9e9e9e;
}
#issued-by-whom{
    width: inherit;
}
#issued-by-whom + .line{
    width: inherit;
}
/*Custom checkbox*/
.custom-checkbox{
    user-select: none;
    display: block;
    margin-bottom: -15px;
}
.custom-checkbox:hover{
    cursor: pointer;
}
.custom-checkbox input{
    opacity: 0;
    height: 0;
    width: 0;
}
.checkmark {
    display: inline-block;
    height: 23px;
    width: 22px;
    border-radius: 5px;
    border: 1px solid gray;
    background-color: white;
}
.custom-checkbox:hover input ~ .checkmark{
    background-color: #dedede;
}
.custom-checkbox input:checked ~ .checkmark{
    background-color: #fff;
}
.checkmark:after{
    content: '';
    position: absolute;
    display: none;
}
.custom-checkbox input:checked ~ .checkmark:after{
    display: block;
}
.custom-checkbox .checkmark:after{
    position: relative;
    left: 8px;
    top: 5px;
    width: 5px;
    height: 11px;
    border: solid var(--border-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/*/Custom checkbox*/
.save-data{
    margin-top: 40px;
    padding: 15px 30px;
    border: 0;
    border-radius: 0.5em;
    background-color: #d9d9d9;
    color: #8b8b8b;
    transition: .2s ease-in-out;
}
.save-data:hover{
    background-color: var(--bg-primary);
    color: #fff;
    box-shadow: 0 0 10px 2px gray;
}
.save-data:focus,
.save-data:focus-visible {
    background-color: var(--bg-primary-hover);
    color: white;
}
/*custom selection*/
select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0 20px 0 10px;
}
.selection-style{
    position: relative;
    display: inline-block;
}
.selection-value, .item-form input[type="date"]{
    width: 100%;
    -moz-min-width: 213px;
    -webkit-min-width: 243px;
    min-width: 243px;
}
.selection-style:before{
    position: absolute;
    content: "";
    display: block;
    top: 10%;
    height: 10px;
    width: 10px;
    pointer-events: none;
    border-bottom: 2px solid #979797ed;
    border-right: 2px solid #979797ed;
    right: 10px;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .item-form{
        display: block !important;
    }
    .item-form input:not([type="checkbox"]){
        width: 100%;
    }
    .custom-checkbox{
        margin: 15px 0 0 0;
    }
}