/* css which will be common in both admin and frontend */
.lwr-form-fields-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lwr-form-field{
    display: flex;
    flex-direction: column-reverse;
    gap: 5px !important;
}

.lwr-required{
    color: red;
    font-weight: bolder;
}

.lwr-form-field.form-submit {
    text-align: right;
}

.lwr-form-field.form-submit .et_pb_button, .search_submit.et_pb_button {
    display: inline-block;
    cursor: pointer;
    color: #2ea3f2;
}
.lwr-form-field.form-submit .et_pb_button:hover, .search_submit.et_pb_button:hover {
    padding: .3em 1em;
    background: rgba(0, 0, 0, .05);
}

.remove-attachment{
    cursor: pointer;
}

.invalid-field{
    color: red;
}

.lwr-form-field .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 30px;
    padding: 10px !important;
}

a.lwr-custom-attachment-copy {
    text-decoration: none;
    background-color: blue;
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff !important;
}

.remove-attachment {
    cursor: pointer;
    text-decoration: none;
    background-color: red;
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff !important;
}

.lwr-custom-attachment {
    max-width: 100px;
    width: auto !important;
    height: auto !important;
}

.sr-only {
    display: none;
}

#event-attachments .postbox-header{
    background-image: linear-gradient(to right, red , yellow);
}

#milestone-attachments .postbox-header{
    background-image: linear-gradient(to right, red , yellow);
}

form#bio_search {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    column-gap: 2%;
    row-gap: 20px;
}
.search_element {
    /* display: grid;
    column-gap: 10px;
    grid-template-columns: 2fr 4fr;
    row-gap: 20px; */
}
.search_element input[type="text"] {
    width: 100%;
    background: #f8f8f8;
    color: #000;
    padding: 5px 10px;
}
.bio_container {
    margin: 20px 0;
}
.bio_search_result {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}
.bio_item {
    border: 1px solid;
    padding: 10px;
    width: Calc(50% - 10px);
}
.bio_item .bio_element {
    display: flex;
    margin-bottom: 5px;;
}
.bio_item .bio_element .bio_label {
    width: 30%;
}
.bio_item .bio_element .bio_value {
    width: 70%;
}
@media (max-width:1024px) {
    .bio_item{width:100%;}
    
}