﻿body {
    background-color: #f0f0f0;
}

/*Contact use page styles*/
#contact_container * {
    padding: 0;
    margin: 0;
}

#contact_container {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 150px);
    padding: 2rem 15%;
    margin-top: 80px !important;
}

    #contact_container .title {
        border-bottom: 3px solid #000;
        width: min-content;
        margin: 0 auto;
    }

/*Accordian styles*/
.custom_accordion {
    margin-top: 2rem !important;
    /*overflow: hidden !important;*/
}

.custom_accordian_item {
    margin: 1rem 0 !important;
    border-radius: 5px !important;
    box-shadow: 0 2px 10px 1px lightgray;
}

.custom_accordian_header {
    border-radius: 5px !important;
    padding: 0.75rem 1rem !important;
    /*border: 2px solid #35d0e4;*/
    border: 2px solid;
}

    .custom_accordian_header.Not_addressed {
        border-color: #35d0e4;
    }

    .custom_accordian_header.Addressed {
        border-color: #15ea50;
    }

    .custom_accordian_header.On_hold {
        border-color: #e1341e;
    }

.header_text {
    font-weight: 400;
}

.custom_accordian_body {
    padding: 1rem !important;
    border: 2px solid;
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
    border-top: none !important;
}

    .custom_accordian_body.Not_addressed {
        border-color: #35d0e4;
    }

    .custom_accordian_body.Addressed {
        border-color: #15ea50;
    }

    .custom_accordian_body.On_hold {
        border-color: #e1341e;
    }

.accordian-body-info {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin-top: 0.5rem !important;
}

    .accordian-body-info span {
        font-weight: 500;
    }

.custom_accrordian_query {
    border-right: 1px solid #f0f0f0;
}

/*legends style*/
.legendz {
    position: absolute;
    top: 0;
    right: 15px;
    width: max-content;
    height: max-content;
    background-color: #fff;
    border-radius: 5px;
    padding: 1rem !important;
    line-height: 1.7;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px 1px lightgray;
}

.legend_par {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem
}

.legend_chi {
    content: "";
    border: 2px solid;
    width: 2rem;
    height: 1rem;
    border-radius: 5px
}

    .legend_chi.na {
        border-color: #35d0e4;
    }

    .legend_chi.a {
        border-color: #15ea50;
    }

    .legend_chi.h {
        border-color: #e1341e;
    }
/*legends style End*/

/*Remarks section*/
.custom_accrordian_remark {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom_dropdown {
    width: 50% !important;
    margin-left: auto !important;
    padding: 0.25rem 0.5rem !important;
}

.contact_remarks {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #dfdfdf;
}

.remark_header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: max-content;
    padding: 0.5rem !important;
    padding-left: 1rem !important;
    background-color: #f0f0f0 !important;
    border-bottom: 1px solid #dfdfdf;
}

.remark_icons button {
    padding: 0.1rem 0.25rem !important;
}

.remark_body {
    padding: 0.5rem !important;
}

    .remark_body textarea {
        resize: none;
        width: 100%;
        min-height: 1.5rem;
        border: none;
        outline: none;
        /*background-color: #f0f0f0;*/
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .remark_body textarea::-webkit-scrollbar {
            display: none;
        }

.textarea_active {
    border: 1px solid #dfdfdf !important;
    padding: 0.25rem !important;
    border-radius: 3.5px;
}

.add_remarks_textarea {
    border: 1px solid #dfdfdf !important;
    padding: 0.25rem !important;
    border-radius: 3.5px;
}
/*Remarks section End*/
/*Contact use page styles End*/
.custom_delete_btn {
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 0.25rem 0.5rem !important;
    color: #fff;
    background-color: #FF0000 !important;
    box-shadow: 0 2px 10px 1px lightgray;
    transition: all 0.25s;
}

    .custom_delete_btn:active {
        box-shadow: 0 1px 5px 1px lightgray;
    }

    .custom_delete_btn:hover {
        background-color: #e30000 !important;
    }


@media only screen and (max-width: 769px) {
    #contact_container {
        margin-top: 4rem;
    }

    .legendz {
        position: fixed;
        top: 60px;
        z-index: -1;
        left: 0;
        display: flex;
        flex-direction: row;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .legend_par {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/*display property*/
.display_none {
    display: none !important;
}

.display_inline_block {
    display: inline-block !important;
}
