@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,500;0,700;1,300;1,500&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap');
*{
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
body{
    width: 100vw;
    height: 100vh;
}
/*Start header*/

/*bỏ css thanh cuộn*/
::-webkit-scrollbar {
    display: none;
}
header{
    position: relative;
    width: 100vw;
    height: 64px;
    margin: 0;
    padding: 0;
    background-color: #1d4753;
    display: flex;
    flex-direction: row;
}
header .row1{
    width: 15%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
header .row1  input{
    position: absolute;
    opacity: 0;
}
header .row1 .menu_btn{
    position: relative;
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
}
header .row1 .menu_btn > span,
header .row1 .menu_btn > span::before,
header .row1 .menu_btn > span::after{
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition-duration: .25s;
    }
header .row1 .menu_btn > span::before{
    content: '';
    top: -8px;
    
}    
header .row1 .menu_btn > span::after{
    content: '';
    top: 8px;
}
header .row1 #menu_toggle:checked ~ .menu_btn > span {
    transform: rotate(45deg);
  }
  header .row1 #menu_toggle:checked ~ .menu_btn > span::before {
top: 0;
transform: rotate(0);
}
header .row1 #menu_toggle:checked ~ .menu_btn > span::after {
    top: 0;
    transform: rotate(90deg);
    }

header .row2{
    width: 25%;
    height: 100%;
}
header .row2 svg{
    height: 20px;
    opacity: 0;
}
header .row3{
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
header .row3 #openchat{
    position: relative;
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
header .row3 #openchat svg{
    height: 22px;
    fill: #fff;
    cursor: pointer;
}
header .row3 #infoUser{
    position: relative;
    width: 250px;
    display: flex;
    
}
header .row3 #infoUser .avatar{
    position: relative;
    width: 50px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .row3 #infoUser .avatar img{
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    z-index: 1;
    cursor: pointer;
}
header .row3 #infoUser .name{
    position: relative;
    width: 200px;
    height: 64px;
    display: flex;
    justify-content: left;
    align-items: flex-end;
}
header .row3 #infoUser .name p{
    position: absolute;
    margin-bottom: 7px;
    left: -25px;
    padding: 4px 11px 4px 30px;
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
    background: #eea626;
    font-size: 14px;
    font-weight: 500;
    color: red;
}

/*Tab*/
.tabs{
    margin: 0 auto;
    display: flex;
    justify-content: left;
    list-style-type: none;
    width: calc(100vw - 20px);
    height: 35px;
    background-color: #932e4e;
    border-radius: 5px;
}
.tabs button.tab{
    cursor: pointer;
    height: 35px;
    width: 150px;
    outline: none;
    border: none;
    background-color: #932e4e;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

button.tab.active{
    background-color: #17a2b7;
}
.tab-content {
    margin-left: 10px;
    margin-right: 10px;
    background-color: #fff;
    
  }
[data-tab-content] {
display: none;
}

.active[data-tab-content] {
display: block;
}

/*handovertab*/
.forHistory{
    display:flex;
    flex-direction: column;
  }
  .tab_2nds{
    position: relative;
    width: 100%;
    height: 55px;
    display: flex;
    align-items: flex-end;
    background-color: #17a2b7;
  }
  .tab_2nds_{
      display: flex;
      width: 100%;
      align-items: flex-end;
      justify-content: left;
      height: 35px;
      border-bottom: 1px solid #fff;
      outline: none;
  }
  .tab_2nd{
    position: relative;
    cursor: pointer;
    height: 35px;
    min-width: 90px;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .panels{
    background:#fff;
    min-height:200px;
    width:100%;
    overflow:hidden;
  }
  .panel{
    display:none;
  
  }
  .radio{
    display:none;
  }
  #one:checked ~ .panels #one_panel,
  #two:checked ~ .panels #two_panel,
  #three:checked ~ .panels #three_panel,
  #four:checked ~ .panels #four_panel,
  #five:checked ~ .panels #five_panel,
  #six:checked ~ .panels #six_panel{
    display:block
  }

  #one:checked ~ .tab_2nds #one_tab,
  #two:checked ~ .tab_2nds #two_tab,
  #three:checked ~ .tab_2nds #three_tab,
  #four:checked ~ .tab_2nds #four_tab,
  #five:checked ~ .tab_2nds #five_tab,
  #six:checked ~ .tab_2nds #six_panel{
    color: #932e4e;
    border-bottom: 3px solid #932e4e;
  }




/*chatRoom Modal*/
.chatRoom_Modal{
    position: absolute;
    width: 750px;
    height: 500px;
    background-color: rgb(120, 204, 124);
    top: 64px;
    right: 20px;  
    opacity: 1; 
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: opacity 0.1s ease 0.02s;
    transform: translateY(-100%) scale(.1);
    display: flex;
    flex-direction: column;
    padding: 0px 10px 10px 10px;
}
.active{
    transform: translateY(0) scale(1);
}
.chatRoom_Modal .row1_chat{
    position: relative;
    height: 50px;
    width: 100%;
    background-color: rgb(120, 204, 124);
}
.chatRoom_Modal .row1_chat button{
    position: absolute;
    width: 30px;
    height: 30px;
    outline: 1px solid #15aa9e;
    border: none;
    background-color: #15aa9e ;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    cursor: pointer;
}
.chatRoom_Modal .row1_chat button svg{
    width: 20px;
    height: 20px;
    fill: #fff;
}
.chatRoom_Modal .row1_chat span{
    position: absolute;
    width: 21px;
    height: 21px;
    right: -5px;
    top: 5px;
    cursor: pointer;
}
.chatRoom_Modal .row1_chat span::before{
    position: absolute;
    content: '';
    width: 3px;
    height: 21px;
    background-color: rgb(224, 220, 204);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.chatRoom_Modal .row1_chat span::after{
    position: absolute;
    content: '';
    width: 3px;
    height: 21px;
    background-color: rgb(224, 220, 204);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(315deg);
}
.chatRoom_Modal .row2_chat{
    position: relative;
    height: 50px;
    width: 100%;
    background-color: #a2d3be;
    display: none;
}
.chatRoom_Modal .row3_chat{
    position: relative;
    height: calc(100% - 180px);
    width: 100%;
    background-color: #dde7d4;
}
.chatRoom_Modal .row3_chat #messages{
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
/*Load chat*/
#messages .container{
    position: relative;
    display: flex;
    flex-direction: row;
    margin: 0  0 20px 0;
    padding: 0;
    width: 100%;

}
#messages .container .leftContainer{
    position: relative;
    width: 60px;
    height: fit-content;
}
#messages .container .leftContainer img{
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
#messages .container .rightContainer{
    position: relative;
    width: calc(100% - 60px);
    padding-left: 10px;
    margin: 0;
    display: flex;
    flex-direction: column;
}
#messages .container .rightContainer p.name{
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #135283;
    margin: 0;
    padding: 0;
}
#messages .container .rightContainer p.time{
    position: relative;
    font-size: 12px;
    font-weight: 400;
    color: #9b4810;
    margin: 0;
    padding: 0;
}
#messages .container .rightContainer p.text{
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: rgb(5, 103, 116);
    margin: 0;
    padding: 0;
}
#messages .container .rightContainer .ContainerImg{
    position: relative;
    display: flex;
    gap: 10px;
}
#messages .container .rightContainer .ContainerImg a img{
    position: relative;
    width: 150px ;
}
.chatRoom_Modal .row4_chat{
    position: relative;
    height: 80px;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-items: center;
    align-items: center;
}
.chatRoom_Modal .row4_chat .chatRoomForm{
    position: relative;
    width: 100%;
    height: 100%;
    background-color: red;
    display: flex;
    flex-direction: row;
}
.chatRoomForm .row4_chat_text{
    position: relative;
    width: 50%;
    height: 100%;
}
.chatRoomForm .row4_chat_text textarea{
    position: relative;
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 5px;
}
.chatRoomForm .row4_chat_image{
    position: relative;
    width: 25%;
    height: 100%;
    background-color: #17a2b8;
}
.row4_chat_right{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 25%;
    background-color: #2496ee;
}
.row4_chat_right .inputID{
    position: relative;
    height: 45%;
    width: 100%;
}
.row4_chat_right .inputID input{
    position: relative;
    width: 100%;
    height: 100%;
}
.row4_chat_right .sendMessage{
    position: relative;
    height: 55%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.row4_chat_right .sendMessage button{
    position: relative;
    width: 100%;
    outline: none;
    border: none;
    height: 80%;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
}
.report_title{
    position: relative;
    padding-left: 20px;
    width: 100%;
    height: 50px;
    display: flex;
    background-image: linear-gradient(#7bdde0, #17a2b7);
}
.report_title p{
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #fff;
}
.report_timestamp{
    position: relative;
    width: 100%;
    color: #2b7fdf;
}
/*later Code*/
.text_center{
    width:100%;
    margin: 0;
    padding: 12px;
    min-height: fit-content;
    text-align: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text_center button{
    position: relative;
    width: 55px;
    height: 35px;
    border-radius: 4px;
    outline: none;
}
.text_center button:hover{
    color: white;
    outline: none;
    background-color: #077a8b;
}
.text_center button svg{
    color: #fff;
}

button.templete_btn{
    position: relative;
    outline: none;
    border: none;
    background-color: #17a2b7;
}
button.templeteBtn_Left{
    position: relative;
    outline: none;
    border: none;
    background-color: #8aa0a3;
    border-radius: 0;
    border-bottom-left-radius: 5px;
}
button.templeteBtn_Right{
    position: relative;
    outline: none;
    border: none;
    background-color: #17a2b7;
    border-radius: 0;
    border-top-right-radius: 5px;
}
button.templeteBtn_Left svg,
button.templeteBtn_Right svg
{
    color: #fff;
    width: 18px;
    height: 18px;
    margin: 0;
}
/*Popup Thanks*/
.popup{
    position: absolute;
    margin: 0;
    padding: 0;
    width: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    background-color: #fdfdfd;
    z-index: 2;
    border-radius: 6px;
    text-align: center;
    box-shadow: 1px 1px 1px 1px rgb(32 33 36 / 28%), 
    1px 1px 2px 2px rgb(32 33 36 / 28%);
    font-family: Crete+Round;
    padding: 20px;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
}
.open-popup{
    top: 50%;
    visibility: visible;
    transform: translate(-50%, -80%) scale(1);
}
.popup img{
    width: 60px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.popup h2{
    font-size: 30px;
    font-weight: 500;
    margin: 30px 0 10px;
    color: #2b3c2c;
}
.popup p{
    color: #2b3c2c;
    font-weight: 400;
    font-size: 16px;
}
.popup button{
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
    background: #305536;
    border: 0;
    outline: none;
    box-shadow:0 5px 5px rgba(42, 83, 145, 0.2) ;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    color: #f8f8f9;
}

/*#loading*/
#loading{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,0.9);
}
/*infoUser Modal*/
.infoUser_Modal{
    position: absolute;
    width: 280px;
    height: fit-content;
    background-image: linear-gradient(180deg, #fff, rgb(219, 236, 219));
    top: 64px;
    right: 20px;  
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: opacity 0.1s ease 0.02s;
    transform: translateY(-100%) scale(.1);
    display: flex;
    flex-direction: column;
    padding: 0 10px 10px 10px;

}
.open_infoUser{
    transform: translateY(0) scale(1);
}
.infoUser_Modal .close{
    position: relative;
    width: 100%;
    height: 10px;
}
.infoUser_Modal .close span{
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    right: -5px;
    top: 5px;
    cursor: pointer;
    z-index: 1;
}
.infoUser_Modal .close span::before{
    content: '';
    width: 2px;
    height: 15px;
    background-color: #5a5656;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.infoUser_Modal .close span::after{
    content: '';
    width: 2px;
    height: 15px;
    background-color: #5a5656;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(315deg);
}
.infoUser_Modal .profile{
    position: relative;
    display: flex;
    flex-direction: row;
}
.profile .col1{
    position: relative;
    width: 100px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile .col1 .row1{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.profile .col1 .row1 img{
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}
.profile .col2{
    position: relative;
    width: calc(100% - 100px);
    min-height: 100px;
    display: flex;
    flex-direction: column;
}
.profile .col2 .infomation{
    position: relative;
    width: 100%;
    padding: 10px 10px 10px 0;
}
.profile .col2 .infomation span{
font-size: 13px;
font-weight: 400;
}
.profile .col2 .infomation .infoUser_p{
    position: relative;
    width: 100%;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.profile .col2 .infomation .infoUser_p p{
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
}
.profile .col2 .profile_btn{
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    }
.infoUser_Modal .profile_btn button{
    position: relative;
    margin: 0;
    padding: 0;
    height: 30px;
    width: 100%;
    border-radius: 5px;
    outline: none;
    border: none;
    background-color: #17a2b8;
    margin-bottom: 7px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5;
    font-weight: 400;
}
.infoUser_Modal .profile_btn button:last-child{
    margin-bottom: 0;
}
/*getID 100%*/
.space_top{
    position: relative;
    width: calc(100% -20px);
    height: 10px;
    background-color: #17a2b7;
    margin: 0 auto;
}
.getID{
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #17a2b7;
    outline: none;
    border: none;
}
.getID .search{
    position: relative;
    width: 35%;
    height: 100%;
}
.getID .search .searchTab{
    position: relative;
    width: calc(100%);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}
.getID .search .searchTab input{
    position: relative;
    width: calc(100%);
    height: 50px;
    border-radius: 5px;
    outline: none;
    border: none;
    background-color: #fff;
    padding-left: 50px;
    font-size: 17px;
    font-weight: 500;
    color: #175757;
    padding-right: 50px;
}
.getID .search .searchTab .search_icon{
    position: absolute;
    width: 21px;
    height: 21px;
    border-radius: 100%;
    border: 3px solid #2496ee;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 15px;
    top: calc(50% - 3px);
    transform: translateY(-50%);
}
.getID .search .searchTab .search_icon::before{
    content: '';
    position: absolute;
    width: 5px;
    height: 8px;
    border-bottom-right-radius: 2.5px;
    border-bottom-left-radius: 2.5px;
    background: #2496ee;
    transform: translate(10px, 10px) rotate(315deg);
    z-index: 0;
}
.getID .search .searchTab span{
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    right: 20px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
}
.hidden__class{
    display: none;
}
.getID .search .searchTab span::before{
    position: absolute;
    content: '';
    width: 3px;
    height: 25px;
    background-color: #2496ee;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
}
.getID .search .searchTab span::after{
    position: absolute;
    content: '';
    width: 3px;
    height: 25px;
    background-color: #2496ee;
    transform: translateY(-50%) rotate(315deg);
    top: 50%;
}
.getID .exportFile{
    position: relative;
    display: flex;
    justify-content: flex-start;

}
.exportFile button{
    position: relative;
    height: 50px;
    width: 60px;
    border-radius: 5px;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 15px 20px 0 rgba(0,0,0,.25);
}
.exportFile button img{
    position: relative;
    height: 45px;
}
.exportFile button img:hover{
    zoom: 120%;
}
.getID .Infomation {
    position: relative;
    width: 110px;
    height: 60px;
    padding: 10px;
    transition: all .3s ease-in-out;
    transform-origin: left;
    opacity: 0;
    background-color: #0ad1f0;
    padding: 0;
    border-radius: 5px;
    box-shadow: 0px 3px 8px 0 rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 50px;
}
.getID .Infomation p {
    position: relative;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.getID .Infomation.active {
    opacity: 1;
    transition: all .3s ease-in-out;
    transform-origin: left;
}
/*Dropdown Menu*/
.getID .dropdown,
.getID .drop_group
{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px dotted rgb(133, 42, 42);
    border-radius: 5px;
    padding-left: 10px;
    background-color: #7fbfc9;
}
.getID .drop_group{
    width: 15%;
}
.getID .dropdown{
    width: 20%;
}
.getID .dropdown .remove_1000 {
    display: none;
}
.getID .drop_group label,
.getID .dropdown label{
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: rgb(133, 42, 42);
}
.getID .drop_group select,
.getID .dropdown select{
    position: relative;
    height: 42px;
}
.removeProject{
    position: absolute;
    width: 30px;
    height: 30px;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}
.removeProject span{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;

}
.removeProject span i{
    font-size: 20px;
    color: rgb(241, 231, 231);
}
.removeProject span:hover{
    color: #007c30;
    background-color: #747e73;
    border-radius: 50%;
}
/*End of getID*/
.button_general button{
    width: 85px !important;
}
.btnTab{
    margin: 0 auto;
    position: relative;
    width: calc(100% -20px);
    height: 60px ;
}
.buttonTab{
    position: relative;
    padding-left: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    background-image: linear-gradient(#17a2b7, #7bdde0);
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.buttonTab div button{
    position: relative;
    padding: 0;
    width: 100px;
    border-radius: 4px;
    height: 30px;
    font-size: 14px;
    font-weight: 400;
}
/*Table*/
table{
    position: relative;
    width: calc(100vw - 20px);
}
table tr th:first-child,
table tr td:first-child{
    width: 10px;
    text-align: center;
}
table tr th,
table tr td{
    font-weight: 500;
    border-collapse: collapse;
    justify-content: center;
    text-align: left;
    padding: 5px;
    height: 100%;
}
table tr th {
    font-size: 13px;
    border: 1px solid #ddd;
    background-color: #17a2b8;
    color: white;
}
table tr td {
    font-size: 11px;
    color: black;
    height: 30px;


}
table tr:nth-child(even){
    background-color: #d8e4f1;
  } 
table tr:hover {
    background-color: #a2dfc8;
    color: #1d4753;
    }  
    table#SMCheckingTable tr th{
        justify-content: center;
        align-items: center;
        text-align: center;
        font-family: 'Times New Roman', Times, serif;
    }
table#SMCheckingTable tr th span{
    font-style: italic;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 5px;
    font-family: 'Times New Roman', Times, serif;
}
/*Modal Confirm*/
.BtnSubmit{
    height: 35px;
    padding: 0px 7px;
    margin: 10px 0 0;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
}
div.BtnSubmit button {
    margin-left: 20px;
    min-width: 90px;
    font-size: 14px;
    font-weight: 500;
    padding: 3.5px 9px;

}
/*Show Image Modal*/
.ShowImg{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 50px 20px;
    align-items: flex-end;
    
}
.ShowImg .listFile{
    position: relative;
    width: 325px;
    height: 515px;

}
.ShowImg .listFile .ShowImage{
    width: 100%;
    height: 460px;
    display: flex;
    flex-direction: column-reverse;
}
.ShowImg .listFile .ShowImage img{
    position: relative;
    width: 100%;
}
.ShowImg .listFile .infoImage{
    position: relative;
    width: 100%;
    height: calc(100% - 465px);
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    background-color: #fff;
    box-shadow: 0px 3px 8px 0 rgb(0 0 0 / 28%);

}
.infoImage .imageName{
    position: relative;
    width: calc(100% - 70px);
    height: 50px;
    display: table;
    margin: 0;
}
.infoImage .imageName p{
    position: relative;
    width: 100%;
    text-align: center;  
    font-size: 12px;
    vertical-align: middle;
    display: table-cell; 
    margin: 0;

}
.infoImage .DownloadImgBtn{
    position: relative;
    width: 70px;
    height: 100%;
    margin-left: 5px;
    padding: 5px;
    display: inline-flex;
}
.DownloadImgBtn button{
    width: 70px;
    height: 40px;
    border-radius: 5px;
    outline: none;
    border: none;
    background: linear-gradient(120deg,#5fb621,#007c30);
    backdrop-filter: blur(20px) brightness(140%);
}
.DownloadImgBtn i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
}
.DownloadImgBtn button img{
    position: absolute;
    width: 70px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.DownloadImgBtn button:hover,
.DownloadImgBtn button:focus
{
    box-shadow: 0 14px 28px rgb(0 0 0 / 15%), 0 10px 10px rgb(0 0 0 / 15%);
}

/*Support confirm*/
.result{
    display: flex;
    align-content: space-between;
    height: fit-content;
}
.result textarea{
    height: 54.5px;
}
.result .selectOption{
    padding-left: 16px;
}
.result .selectOption label{
    color: #ee2208;
    font-weight: 500;
}
.result .selectOption select.evn{
    height: 54.5px;
    background-color: #b8e7cc;
    color: #241e1d;
    box-shadow: 0px 3px 8px 0 rgb(0 0 0 / 28%);
}
.result .selectOption select.noted{
    height: 54.5px;
    background-color: #ade0e7;
    color: #ee2208;
    box-shadow: 0px 3px 8px 0 rgb(0 0 0 / 28%);
}
/*Login with email*/
.tittle{
    margin-top: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tittle h2{
    margin: 0;
    padding: 0;
    color: #17a2b7;
    font-size: 28px;
}
.logo{
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img{
    height: 100px;
}
.login{
    position: relative;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
.login .login_email{
    position: relative;
    width: 100%;
    height: 40px;
}
.login .login_email i{
    position: absolute;
    font-size: 20px;
    width: 30px;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    z-index: 1;
}
.login .login_email .input_email{
    position: relative;
    width: 100%;
    font-size: 16px;
    height: 100%;
    outline: none;
    border: 1px solid rgb(204, 204, 204);
    padding: 13px 12px 13px 43px;
    border-radius: 5px;
}
.login .login_password{
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 40px;
}
.login .login_password i{
    position: absolute;
    font-size: 20px;
    width: 30px;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    z-index: 1;

}
.login .login_password .input_password{
    position: relative;
    width: 100%;
    font-size: 16px;
    height: 100%;
    outline: none;
    border: 1px solid rgb(204, 204, 204);
    padding: 13px 35px 13px 43px;
    border-radius: 5px;
}
.login .login_password .eye{
    position: absolute;
    width: 30px;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    z-index: 1;
}
.login .login_password .eye i{
    font-size: 14px;
}



.login .login_btn{
    position: relative;
    margin: 20px 0 5px 0;
    width: 100%;
    height: 40px;
}
.login .login_btn button{
    position: relative;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    background-color: #17a2b7;
    color: #fff;
}

/*Login with otp*/
.otp-logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.otp-logo img{
    height: 100px;
}
form .otp-header{
    display: flex;
    flex-direction: column;
}
form .otp-header .title{
    margin-top: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
form .otp-header .title p{
    margin: 0;
    padding: 0;
    color: #17a2b7;
    font-size: 22px;
}
form .otp-header .sms{
    top: 88px;
    position: absolute;
    right: 10px;
    height: 50px;
    width: 50px;
}
form .otp-header .sms i{
    font-size: 50px;
    color: #17a2b7;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
form .input-otp{
    display: flex;
    justify-content: space-between;
    margin: 10px 10px 0px 10px;
    padding: 0;
    color: #135283;
}
form .input-otp input{
    font-family: 'Poppins', sans-serif;
    width: 38px;
    height: 38px;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 4px;
    text-align: center;
    outline: none;
    font-size: 16px;
}
form .input-otp input:active,
form .input-otp input:focus{
    outline: none;
}
form .text{
    margin: 10px 10px 0 10px;
}
form .text p{
    font-size: 13px;
    color: rgb(211, 37, 66);
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
}
form .otp-confirm{
    margin: 15px 10px 10px 10px;
    height: 40px;
}
form .otp-confirm button{
    position: relative;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    background-color: #17a2b7;
    color: #fff;
}
/* change password*/
.pass{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pass label{
    position: relative;
    width: 170px;
}
.pass input{
    position: relative;
    width: 100%;
    padding-right: 45px
}
.pass .eye{
    position: absolute;
    height: 100%;
    top: 50%;
    right: 6px;
    width: 40px;
    border-radius: 4px;
    transform: translateY( -50%);
    background-color: rgb(227, 233, 233);
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.pass .eye i{
    font-size: 14px;
}




.collapse_Def{
    position: relative;
    width: 100%;
    height: fit-content;
    border-radius: 3px;
}
.collapse_Def span.title{
    position: relative;
    width: 100%;
    display: flex;
    align-items: left;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 5px;
    color: #17a2b8;
}

.collapse_Def .collapse_content{
    border-radius: 4px;
    background: #FFF7F0;
    overflow: hidden;
    margin-top: 20px;
    outline: 1px solid #17a2b8;
    padding: 4px;
    min-height: 100px;
}



.collapse_content textarea
{
    margin: 0;
    padding: 0 5px;
    width: 100%;
    resize: none;
    min-height: 100px;
    outline: none;
    font-size: 16px;
    border-radius: 4px;
    caret-color: #17a2b8;
    border: 2px solid #17a2b8;
    background-color: #e6eaeb;
    font-family: 'Poppins', sans-serif; 
}

.collapse_content header textarea:is(:focus, :valid)
{
border: 2px solid #17a2b8;
color: #06606e;
font-weight: 500;
}  

.collapse_content  textarea::-webkit-scrollbar
{
width: 0px;
}  
#outline_none{
    outline: none !important;
    border: 1px solid #f0f0f0 !important;
    height: fit-content;
}
.Coordi_class{
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 800px;
    display: flex;
    flex-direction: column;
}
.Coordi_class .Coordi_header{
    position: relative;
    width: 100%;
    height: 170px;
    display: flex;
    justify-content: flex-end;
}
.Coordi_class .Coordi_header .header_logo{
    margin: 0;
    padding: 5px;
    position: relative;
    width: 25%;
    height: fit-content;
}
.header_logo ._logo{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header_logo ._logo img{
    width: 100px;
}
.header_logo p{
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-align: center;
}
.Coordi_class .Coordi_header .header_name{
    position: relative;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header_name p{
    font-size: 22px;
    font-weight: 700;
}
.Coordi_class .Coordi_header .header_infomation{
    width: 20%;
    display: flex;
    flex-direction: column;
    padding: 5px;
    background-color: #d3dfd7;
    display: flex;
    justify-content: center;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 6px;
    margin: 5px 5px 0 0;
}
.header_infomation ._info:first-child{
    margin-top: 0px;
}
.header_infomation ._info{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    text-decoration: underline;
    color: #007c30;
}
.header_infomation ._info label{
    position: relative;
    font-size: 16px;
    font-weight: 500;
}
.header_infomation ._info  p{
    position: absolute;
    margin-left: 50px;
    font-size: 16px;
    font-weight: 500;
}
.Coordi_class .Coordi_content{
    position: relative;
    border: 2px solid #cedad9;
    border-radius: 5px;
    margin-top: 40px;
}
.Coordi_class .Coordi_content .Coordi_title{
    margin: 0 !important;
    padding: 0;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Coordi_title p{
    position: absolute;
    top: -20px;
    font-size: 18px;
}
.content_defect,
.comment_defect,
.collapse_history{
    position: relative;
    width: 100%;
    padding: 5px;
    min-height: 50px;
    -webkit-box-shadow: 0 5px 3px -3px #777;
	   -moz-box-shadow: 0 5px 3px -3px #777;
	        box-shadow: 0 5px 3px -3px #777
}

.content_defect span,
.comment_defect span,
.collapse_history span
{
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #007c30;
    text-decoration: underline;
}
.content_defect p,
.comment_defect p,
.collapse_history p
{
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    height: fit-content;
}

.Coordi_class .progress_defect{
    position: relative;
    width: 100%;
    height: fit-content;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    z-index: 0;
    display: flex;
    justify-content: space-between;
}
.progress_defect .progress_bar{
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #05535f;
}

.progress_defect ._wrap{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #077a8b;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 80px;
    height: fit-content;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
._wrap ._wrap_name{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #05535f;
    text-align: center;
    background-color: #dbe4e6;
    width: 100%;
    min-height: 40px;
    font-size: 12px;
    font-weight: 500;
}
._wrap ._wrap_date{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 12px;
    width: 100%;
    height: 40px;
}
.Coordi_class .content_photo{
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    border-radius: 4px;
    background-color: #c4cdcf;
}
.content_photo .defect{
    position: relative;
    width: calc(100% - 860px);
    height: 100%;
}
.content_photo .beforeImage,
.content_photo .afterImage{
    position: relative;
    width: 430px;
    height: 100%;
}
.content_photo .beforeImage{
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    border-radius: 5px;
}
.content_photo .defect .request_title,
.content_photo .beforeImage .request_title,
.content_photo .afterImage .request_title
{
    position: relative;
    margin: 0 5px;
    background-color: #007c30;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center; 
    border-top-left-radius: 6px; 
    border-bottom-right-radius: 6px; 
}
.request_title p{
    position: relative;
    margin-bottom: 20px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.content_photo .defect .defect_image
{
    position: relative;
    padding: 5px;
    width: 100%;
}
.defect_image .cor_defect img{
    position: relative;
    width: 100%;
    border-top-left-radius: 6px; 
    border-bottom-right-radius: 6px; 
    margin-top: 10px;
}

.Show_image{
    padding: 5px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 10px 5px;

}
.beforeImage .Show_image .cor_image,
.afterImage .Show_image .cor_image{
    position: relative;
    width: 205px;
}
.cor_image img{
    position: relative;
    width: 100%;
    border-top-left-radius: 6px; 
    border-bottom-right-radius: 6px; 
    margin-top: 10px;
}


.content_ p{
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    width: calc(100% - 10px);
    text-align: center;
}
.Coordi_btn{
    margin: 10px 0px;
    padding: 0;
    position: relative;
    width: 100%;
    display: flex;
    height: 50px;

}
.Coordi_btn_PM{
    padding: 0;
    position: relative;
    display: flex;
    height: 50px;
}
.Coordi_btn_PIC{
    padding: 0;
    position: relative;
    display: flex;
    height: 50px;
}
.Coordi_btn_PM .Coordi_primary,
.Coordi_btn_PIC .Coordi_primary
{
    position: relative;
    width: 120px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Coordi_primary button{
    position: relative;
    padding: 0;
    width: 90px;
    border-radius: 5px;
    height: 45px;
    font-size: 14px;
    font-weight: 400;
}
.steps__wrap{
    position: relative;
    margin-top: 20px;
    width: 100%;
    height: 50px;
    background-color: #007c30;
}
.hidden_class{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #83d8a4;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    color: rgb(73, 190, 112);
}
.hidden_class p{
    color: #135283;

}
.change_background{
    background-color: rgba(61, 56, 56, 0.712) !important;
}
#Contractor_Form,
#CloseDefect_Form{
    position: relative;
    display: flex;
    min-height: 100px;
    flex-direction: row;
}
#Contractor_Form .change_color,
#CloseDefect_Form .change_color{
    border: 2px dotted green ;
    border-radius: 4px;
    background-color: #c2d3d1;
    color: green ;
    font-weight: 500;
    height: 50px;
}
.color_important{
    height: 54.5px;
    background-color: #ade0e7;
    color: #ee2208;
    box-shadow: 0 3px 8px 0 rgb(0 0 0/28%);
}
.inside_element{
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
}
.change__color{
    position: relative;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
}
.change__color label,
.change__color span{
    font-size: 14px;
    font-weight: 500;
    color: #17a2b8;
}
.change__color input{
    min-height: 40px;
}
::-webkit-calendar-picker-indicator {
    cursor: pointer;
    border-radius: 4px;
    margin-right: 2px;
    font-size: 18px;
    opacity: 0.6;
    color: #15aa9e;
    filter: invert(1)
    brightness(50%)
    sepia(100%)
    saturate(10000%)
    hue-rotate(180deg)
}
::-webkit-calendar-picker-indicator:hover {
    opacity: 1
}

.progress{
    position: relative;
    min-height: 40px;
    background-color: #fff !important;
}
.progress div{
    padding: 5px;
    background-color: rgb(198, 215, 216);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.progress div p{
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    color: #067283;
}
.elementP{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.elementP p{
    margin: 0;
    padding: 0;
    color: #17a2b7;
    font-size: 16px;
    font-weight: 500;
}
.pmupload{
    min-height: 70px;
    border-radius: 6px;
    display: flex;
}
.pmupload input{
    height: 35px;
    cursor: pointer;
}
.propser_check {
    position: relative;
    width: 100%;
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    filter: drop-shadow(5px 5px 1px rgba(0, 0, 0, 0.432));
}
.propser_check button{
    width: 45%;
    outline: none;
    border: 0;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
}
.propser_check button:disabled,
.propser_check button[disabled]{
    color: #fff;
    cursor: default;
    background-color: #a4aab1 !important;
}

.PIC_Cancel
{
    background-color: #5f6a72;
}
#Proposer_Confirm,
#Customer_Confirm,
#PIC_Confirm
{
    background-color: #135283;
}
#Proposer_Return,
#Customer_Return
{
    background-color: #b82727;
}
.afterthat{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.afterthat span{
    padding: 2px;
    font-size: 16px;
    text-align: center;
    height: 26px;
    background-color: #39827e;
    box-shadow: 0 11px 34px 0 rgba(0,0,0,.2);
    width: 100%;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
}

.picmodal{
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 1px 15px 1px rgba(0, 0, 0, 0.08);
}
.picmodal .pmupload{
    width: 100%;
    background-color: #deeaeb;
    margin-bottom: 20px;
}
.print__{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
   
}
.print__ button{
    margin-right: 25px;
    width: 80px;
    height: 30px !important;
    background-color: blue;
    outline: none;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
}
.print__ button:hover{
    background-color: #333;
}
.reportdf{
    position: relative;
    width: 100%;
    min-height: 100px;
    display: flex;
    flex-direction: column;
}
.reportdf .reportdf_1,
.reportdf .reportdf_2
{
    position: relative;
    width:100%;
    margin-top: 20px;
}

.reportdf .reportdf_1 #DefectReport,
.reportdf .reportdf_2 #DefectReport_2{
    position: relative;
    max-width: 100%;
    border: 1px solid #ccc;
    border-collapse: collapse;
}
.reportdf .reportdf_1 #DefectReport th,
.reportdf .reportdf_2 #DefectReport_2 th{
    text-align: center;
}
.reportdf .reportdf_1 #DefectReport td,
.reportdf .reportdf_2 #DefectReport_2 td{
    border: 1px solid #17a2b7;
    text-align: center;
}
.printA4{
    position: relative;
    width: 21cm;
    height: 29.7cm;
    padding: 75pt 15pt 5pt 30pt;
    margin: 0 auto;
    border-radius: 5px;
    background: white;
    font-family: 'Times New Roman', Times, serif;
    background-color: #dfebe3;
}
.printA4 p{
    font-size: 13pt !important;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}
.printA4 p span{
    font-size: 13pt !important;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}
.printA4 .header_printA4{
    position: relative;
    min-height: 100px;
}
.printA4 .header_printA4 .SP_header_printA4{
    position: relative;
    left: -20px
}
.printA4 .header_printA4 .SP_header_printA4 p{
    font-size: 16px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}
.printA4 .header_printA4 .Title_header_printA4 p{
    font-size: 14pt !important;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    font-weight: bold;
}
.printA4 .header_printA4 .Date_header_printA4 p{
    margin-top: 10px;
    margin-left: 40px;
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
}
.printA4 .content_1_{
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 50px;
}
.printA4 .content_2_{
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 25px;
}
.printA4 .content_3_{
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
    padding: 0;
    height: fit-content;
}
.printA4 .content_4_{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 25px;
}
.printA4 .content_5_{
    position: relative;
    width: 100%;
    margin: 5px 0px 0px ;
    padding: 0;
    height: fit-content;
    display: flex;

}
.printA4 .content_6_{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    height: fit-content;
    display: flex;
}
.printA4 .sign{
    position: relative;
    width: 100%;
    margin-top: 10px;
    padding: 0;
    height: fit-content;
    display: flex;
    justify-content: space-between;
}
.printA4 .sign p{
    font-weight: bold;
}
.sign .sign_left,
.sign .sign_right
{
    text-align: center;
}
.sign .sign_right{
    width: 35%;
}
.sign .sign_right p.sign_right_{
    font-size: 12pt;
    font-weight: 400;
    font-style: italic;
    text-align: justify;

}
.printA4 .content_6_{
    margin-top: 5px;
}
.printA4 .content_6_ .content_6_left,
.printA4 .content_6_ .content_6_right{
    width: 28%;
    padding: 0;
    min-height: 25px;
}

.printA4 .content_6_ .content_6_left_{
    width: 100%;
    padding: 0;
    height: 25px;
    margin-left: 30px;
}
.printA4 .content_6_ .content_6_left{
    margin-left: 30px;
    display: flex;
    flex-direction: column;
}
.printA4 .content_6_ .content_6_left p{
    margin: 0;
    padding: 0;
}
.printA4 .content_6_ .content_6_right .content_6_right_1_1{
    font-weight: bold;
}
.printA4 .content_6_ p{
    text-align: justify;
    margin: 0;
    padding: 0;
}
.printA4 .content_6_ p span{
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
}

.content_5_ p{
    text-align: justify;
    margin: 0;
    padding: 0;
}

.printA4 .content_5_ .content_5_right{
    margin-left: 20px;
}
.content_4_ .content_4__right{
    display: flex;
    flex-direction: row;
}
.content_4__right .content_4__right_1{
    margin-left: 70px;
}
.content_4__right .content_4__right_2 p{
    margin-left: 5px;
    font-weight: bold !important;
}
.content_3_ p{
    text-align: justify;
    margin: 0;
    padding: 0;
}

.content_3_ p .content_3_1_right p span,
.content_3_ p .content_3_2_right p span,
.content_3_ p .content_3_3_right p span{
    margin: 0;
    padding: 0;
}
.content_5_ .content_5_right span.content_5_right_1{
    font-weight: bold;
}
.printA4 .content_1_ .content_1_left p,
.printA4 .content_2_ .content_2_left p{
    font-size: 16px;
    margin: 0;
    padding: 0;
    width: 2.5cm;
    font-weight: bold;
}
.content_1_right .content_1_right_1 p{
    position: relative;
    font-size: 16px;
    margin: 0;
    padding: 0;
    font-weight: bold;
}
.content_1_right .content_1_right_2,
.content_2_right
{
    display: flex;
}
.content_1_right .content_1_right_2 .content_1_right_2_1 p,
.content_2_right .content_2_right_1 p{
    font-size: 16px;
    margin: 0
}
.content_1_right .content_1_right_2 .content_1_right_2_2 p,
.content_2_right .content_2_right_2 p{
    font-size: 16px;
    margin: 0  0 0 10px;
    font-weight: bold;
}
.printA4_space{
    height: 7px;
    width: 100%;
}
/*writecss*/
@media print{
    html, body {
        height:100vh; 
        width: 100%;
        margin: 0 !important; 
        padding: 0 !important;
        overflow: hidden;
        }
        

    body{
        visibility: hidden;
    }
    #HandoverMinutes_Form{
        visibility: visible;
    }
    #Coordi_Modal,
    #Coordi_Modal *,
    #HandoverMinutes_Modal
    #HandoverMinutes_Modal *{
        visibility:visible;
    }

    .outline_none{
        outline: none !important;
        border: 1px solid #f0f0f0 !important;
        min-height: 294mm;
    }
    #Coordi_Modal p{
        color: black !important;
    }
    .request_title{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .request_title p{
        text-align: center;
    }
    .modal-header{
        display: none;
    }
    .modal{
        position: absolute;
        margin: 0 auto;
        padding: 0px;
        overflow: visible!important;
        width: 100%;
        min-height: 100vh;
    }
    .printA4{
        position: relative;
        margin: 0 auto;
        padding: 75pt 15pt 5pt 30pt;
        overflow: visible!important;
    }
    .printA4 p{
        font-size: 13pt !important;
        font-family: 'Times New Roman', Times, serif;
        margin: 0;
        padding: 0;
    }
    .printA4 p span{
        font-size: 13pt !important;
        font-family: 'Times New Roman', Times, serif;
        margin: 0;
        padding: 0;
    }
    .Coordi_class .Coordi_header .header_infomation {
        width: 25%
    }
    .Coordi_btn{
        display: none;
    }
    .Coordi_class .content_photo{
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column !important;
    }
    .Coordi_class .content_photo .defect{
        position: relative;
        width: 100%;
        height: fit-content;
    }
    .content_photo .beforeImage,
    .content_photo .afterImage{
        position: relative;
        width: 100%;
        display: grid;
        justify-content: space-between;
        margin-top: 20px;
    }
    .beforeImage .Show_image .cor_image,
    .afterImage .Show_image .cor_image
    {
        position: relative;
        width: 49%;
        height: fit-content;
    }
    div p{
        font-size: 18px;
        color: #000;
    }

  

    
}
@page{
    size: A4;
}


/*Responsive*/
/*@media print*/ 


@media only screen and (max-width: 1000px) {
    .tabs{
        position: relative;
        margin: 0;
        padding: 0;
        width: 100vw;
    }
    button.tab{
        font-size: 10px;
    }
    .tab-content {
        margin: 0;
        background-color: #17a2b7;
    }
    /* btn Tab*/
    .btnTab{
        position: relative;
        width: 100vw;
        height: 40px ;
    }
    .buttonTab{
        height: 100%;
        display: flex;
        background-color: #cae2de;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding-left: 10px;
    }
    .buttonTab div button{
        position: relative;
        width: 70px;
        height: 25px;
        font-size: 12px;
        font-weight: 400;
        border-radius: 4px !important;
    }

    /*Table*/
    
    table{
        position: relative;
        width: 100vw;
    }
    table tr th.name,
    table tr td.name
     {
        display: none;
    }
    table tr th,
    table tr td
     {
        font-size: 8px;
        font-weight: 500;
        padding: 2px;
    }

    table tr:nth-child(odd){
        background-color: #fff;
      } 
    .text_center{
        position: relative;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 30px;
    }
    .text_center button{
        position: relative;
        width: 40px;
        height: 25px;
        outline: none;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
    .text_center button svg{
        color: #fff;
        width: 12px;
        height: 12px;
        margin: 0;
    }
   /*getID 1000px*/
    .space_top{
        position: relative;
        width: 100%;
        height: 10px;
        background-color: #17a2b7;
    }
    .getID{
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        height: fit-content;
    }
    .getID .search{
        position: relative;
        width: calc(100% - 1px);
        margin: 0;
        padding: 0;
        height: 42px;
        display: flex;
        align-items: center;
    }
    .getID .search .searchTab{
        position: relative;
        margin: 0;
        padding: 0;
    }
    .getID .search .searchTab input {
        position: relative;
        width: calc(100%);
        height: 40px;
        border-radius: 5px;
        outline: none;
        border: none;
        background-color: #fff;
        padding-left: 50px;
        font-size: 17px;
        font-weight: 500;
        color: #175757;
        padding-right: 50px;
    }
    .getID .search .searchTab span {
        position: absolute;
        display: block;
        width: 15px;
        height:  15px;
        right: 20px;
        cursor: pointer;
        top: 50%;
        transform: translateY(-50%);
        padding: 10px;
    }
    /*Chat app*/
    .chatRoom_Modal{
        width: 400px;
        height: 320px;
    }
    .getID .dropdown{
        position: relative;
        width: 100%;
        margin: 15px 0px 0px;
        padding: 0;
        background-color: #007c30;
        border-top: 2px dotted #fff;
        border-left: 1px dotted #fff;
        border-right: 1px dotted #fff;
    }
    .getID .dropdown label{
        color: #fff;
    }

    .getID .dropdown .removeProject{
        display: none;
    }
    .getID .dropdown .remove_1000{
        position: absolute;
        right: 10px;
        top: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .getID .dropdown .remove_1000 span{
        background-color: #797073;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        width: 20px;
        height: 20px;
    }
    .getID .dropdown .remove_1000 i{
        font-size: 14px;
        color: #fff;
    }
    .btnTab{
        position: relative;
        margin: 0;
        padding: 0;
    }
    .btnTab .buttonTab{
        background-color: #fff;
        margin: 0;
        padding: 0;
    }
    .hidden_class{
        max-width: 40px;
    }
    .content_photo{
        display: flex;
        flex-wrap: wrap
    }
    .content_photo .defect,
    .content_photo .beforeImage,
    .content_photo .afterImage{
        position: relative;
        width: 100%;

    }
    

}  


/*/*Responsive*/
@media only screen and (max-width: 600px) {
    header{
        position: relative;
        width: 100%;
        height: 44px;
        display: flex;
        flex-direction: row;
    }
    header .row1{
        width: 25%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header .row1 .menu_btn{
        opacity: 1;
    }
    header .row2{
        width: 25%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }
    header .row2 svg{
        height: 20px;
        fill: #fff;
        opacity: 1;
    }
    header .row3{
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: row;
    }
   
    header .row3 #openchat{
        position: relative;
        width: 50%;
        height: 100%;
    }
    header .row3 #infoUser{
        position: relative;
        width: 50%;
        height: 100%;
    }
    header .row3 #infoUser .avatar{
        position: relative;
        width: 100%;
        height: 100%;
    }
    header .row3 #infoUser .avatar img{
        position: relative;
        width: 35px;
        height: 35px;
    }
    header .row3 #infoUser .name{
        display: none;
    }
/*chatRoom Modal*/
.chatRoom_Modal{
    top: 44px;
    height: 420px;
}    
/*infoUser Modal*/
.infoUser_Modal{
    top: 44px;
}
/*Btn Button*/
.btnTab{
    position: relative;
    width: 100%;
    height: fit-content;
}
.btnTab .buttonTab{
    position: relative;
    width: 100%;
    height: 100%;
    background-color: red;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 6px;
    column-gap: 10px;
    padding: 10px 0px 10px 0px;
    background-image: linear-gradient(#17a2b7, #7bdde0);
}
.btnTab .buttonTab div button:first-child{
    margin-left: 10px;
}

/*Tab*/
    button.tab{
        font-size: 8px;
    }
    table tr th {
        font-size: 7px;
        font-weight: 500;
        padding: 2px;
    }


}
.test{
    display: flex;
    align-items: center;
    justify-content: center;
}