[component-type="input"]{
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 6px;
    width: 300px;
    margin: 10px;
    padding: 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0);
}

[component-type="input"] label{
    font-weight: 500;
}

[component-type="input"] [component-part="input"]{
    padding: 6px;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    background-color: #fbfbfb;
    box-shadow: 0 0px 2px rgb(0 0 0 / 44%);
    border: solid 1px #a7abb3;
    font-weight: 500;
    width: 100%;
}

[component-type="input"][input-hidden="true"]{
    display: none!important;
}

[component-type="input"][input-validated=true]:not([input-readonly=true]){
    /*
    background-color: #abddb5;
    border: 1px solid #358148;
    box-shadow: 0 0 4px 4px #0eff001c;
    */
}

[component-type="input"][input-validated=true]:not([input-readonly=true]) [is-valid-icon]{
    /*
    display: inherit;
    outline: 1px solid #1f325ea8;
    border: 1px solid #fff;
    box-shadow: 0 0 2px 2px #1f325e66;
    */
}

[component-type="input"][input-validated=false]{
    background-color: #ffcaca;
    border: 1px solid #af3838;
    box-shadow: 0 0 4px 4px #ff00001c;
}

[component-type="input"] .error_message{
    display: none;
}

[component-type="input"][input-validated=false] .error_message{
    display: flex;
    font-weight: 500;
    font-size: 12px;
    color: #850000;
}

[component-type="input"]:not([input-type="checkbox"]):not([input-readonly=true]) [component-part="input"]:focus, .chosen-container-active, .chosen-container-active .chosen-drop{
    border: solid 1px #59679b;
    outline: solid 2px #3509a166;
    background-color: #ffffff;
}

[component-type=input][input-readonly=true] [component-part=input]{
    border: solid 1px #8d8d8d;
    outline: unset;
    background-color: #d3d3d3;
    cursor: not-allowed;
}

[component-type="input"] [component-part="input"]::placeholder{
    color: #a0a0a0;
}

[component-type="input"][input-type="textarea"] [component-part="input"]{
    height: 70px;
    resize: none;
}

[component-type="input"][input-type="checkbox"] [component-part="input"]{
    display: flex;
    flex-direction: row-reverse;
    width: fit-content!important;
    padding: 6px 14px;
    border-radius: 12px;
    gap: 10px;
    align-items: center;
    height: fit-content;
    align-items: center;
    cursor: pointer;
}

[component-type="input"][input-type="checkbox"] .checkbox_cont{
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 12px;
    background-color: #ebebeb;
    padding: 4px 12px;
    width: fit-content;
    border: 1px solid #a9a9a9;
    cursor: pointer;
}

[component-type="input"][input-type="checkbox"] .checkbox_cont span{
    font-size: 14px;
    font-weight: 500;
}

[component-type="input"][input-type="checkbox"] .checkbox_cont.checked{
    box-shadow: 0px 0px 2px 1px #5e4da19e;
    background-color: #faf4fd;
    border: 1px solid #462f6c;
}

[component-type="input"] .chosen-container{
    border-radius: 4px;
    background-color: #fbfbfb;
    box-shadow: 0 0px 2px rgb(0 0 0 / 44%);
    border: solid 1px #a7abb3;
    padding: 6px;
}

[component-type="input"] .chosen-container .chosen-single{
    background: unset;
    background-image: unset!important;
    border: unset!important;
    border-radius: 4px;
    box-shadow: unset!important;
}

[component-type="input"] .chosen-container .chosen-drop{
    margin-left: -6px!important;
    margin-top: 1px!important;
}

[component-type="input"] .chosen-choices{
    border: unset!important;
    -webkit-box-shadow: unset!important;
    box-shadow: unset!important;
    background-color: unset!important;
    background-image: unset!important;

}

[component-type="input"] .chosen-container .chosen-default span{
    color: #a0a0a0;
}

[component-type="input"] .chosen-container-multi .chosen-choices li.search-choice{
    background-image: unset!important;
    box-shadow: 0px 0px 2px 1px #5e4da166!important;
    background-color: #faf4fd!important;
    border: 1px solid #9b82c5!important
}

[component-type="input"] .chosen-container .chosen-results li.highlighted{
    background-image: linear-gradient(#71688f 20%, #54446c 90%)!important;
}

[component-type="input"] .label_container svg{
    height: 16px;
    width: 16px;
    min-height: 16px;
    min-width: 16px;
    padding: 4px;
    margin-left: 6px;
    border-radius: 50%;
    background-color: #6471A5;
    vertical-align: bottom;
    margin-bottom: 2px;
}

[component-type="input"] .label_container svg use{
    fill: #fff;
}

[component-type="input"] [is-valid-icon]{
    display: none;
}