form.serachbar {
    display: flex;
}

form.serachbar input[type=submit] {
    position: absolute;
    right: 0;
    background: transparent;
    box-shadow: none;
    border: 0px;
    background: url(../images/search.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 6px;
}

.serachbar input[type="text"] {
    border: 1px solid #D3D3D3;
    border-radius: 60px;
    background: #EFEFEF;
}
select.sorting {
    background: #D3D3D3;
    color: black;
    font-weight: 400;
    position: relative;
    background: url(../images/downarrow.svg) 96% / 5% no-repeat #D3D3D3;
}
.btnaddfolder {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
form.lgview {
    display: inline-flex;
}

form.lgview button {
    margin: 0px !important;
    background: #D3D3D3;
    padding: 0px 10px;
}

form.lgview button.gridbtn {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

form.lgview button.listbtn {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
form.lgview button.active {
    background: #707070
}
form.lgview button.active svg rect {
    fill: #D3D3D3
}
.form-field-hd {
    align-items: center;
    margin-bottom: 20px;
}
.form-field-hd label {
    width: 100%;
    margin: 0px !important;
    font-weight: 400;
}
.form-field-hd input {
    margin: 0px !important;
    width: 100%;
    border: 1px solid black;
    border-radius: 5px;
}
.form-field-hd input[type=file] {
    margin: 0px !important;
    width: 50%;
    border:0;
    border-radius: 5px;
}
.form-field-hd textarea {
    margin: 0px !important;
    width: 100%;
    border: 1px solid black;
    border-radius: 5px;
}
.form-field-hd-btn input {
    border-radius: 5px;
}
.form-field-hd input[readonly] {
    background: #ebebeb;
    color: black;
}

.tooltiphd {
    position: absolute;
    top: -45px;
    background: #40b4c7;
    padding: 5px 10px;
    left: 30px;
    border-radius: 20px;
    opacity: 0;
    transition: 0.3s all ease-in-out;
}

.tooltiphd {
    display: flex;
    align-items: center;
}

.tooltiphd a {
    margin: 0px 10px;
}

.tooltiphd img {
    width: 15px;
    margin-top: -6px;
}

.tooltiphd::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #40b4c7;
    bottom: -8px;
    left: 37px;
}
.foldercol:hover .tooltiphd {
    opacity: 1;
}

.historyfiles {
    max-height: 590px;
    overflow: overlay;
}