/* Fichier css lié à l'objet Messagerie */

#msg_DetailMsg {
    float: left;
    height: 100%;
    width: calc(100% - 35% - 50px - 15px);
    background-color: #FFF;
    box-shadow: 0 1px 3px #807a7a;
    padding: 0 10px 0 10px;
    box-sizing: border-box;
    border-radius: 5px;
    margin-left: 5px;
    position: relative;
}

#msg_DetailMsg .msg_Infos {
    border-bottom: 1px solid rgba(0, 0, 0, 0.26);
    float: left;
    height: 10%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

#msg_DetailMsg .msg_Infos .msg_InfosAvatar {
    float: left;
    height: 100%;
    display: flex;
}

#msg_DetailMsg .msg_Infos .msg_InfosClose {
    width: 40px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: -10px center;
    background-size: contain;
    float: left;
    cursor: pointer;
    display: none;
    opacity: 0.8;
    transition: opacity 300ms;
}

#msg_DetailMsg .msg_Infos .msg_InfosClose:hover {
    opacity: 1;
}

#msg_DetailMsg .msg_Infos .msg_InfosTitreDesti {
    float: left;
    width: 40px;
    height: 100%;
    padding-top: 10px;
    box-sizing: border-box;
}

#msg_DetailMsg .msg_Infos .msg_InfosListDestinataire {
    float: left;
    width: calc(100% - 80px);
    height: 100%;
    padding-left: 10px;
    padding-top: 10px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
}

#msg_DetailMsg .msg_Infos .msg_InfosListDestinataire .msg_InfosStickDesti {
    border: 1px solid rgba(0, 0, 0, 0.3);
    display: inline-block;
    margin: 0 5px 5px 5px;
    padding: 5px;
    border-radius: 5px;
    color: rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
    transition: opacity 300ms ease-in-out;
}

#msg_DetailMsg .msg_Infos .msg_InfosListDestinataire .msg_InfosStickDesti:hover {
    border: 1px solid rgba(0, 0, 0, 0.5);
    color: rgba(0, 0, 0, 1);
}

#msg_DetailMsg .msg_Infos .msg_InfosListDestinataire .msg_InfosStickDesti .msg_StickDestiName {
    float: left;
    width: calc(100% - 36px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#msg_DetailMsg .msg_Infos .msg_InfosListDestinataire .msg_InfosStickDesti .msg_StickDestiStautPres {
    float: left;
    margin-left: 5px;
}

#msg_DetailMsg .msg_Infos .msg_InfosListDestinataire .msg_InfosStickDesti .msg_StickDestiDelete {
    float: left;
    width: 13px;
    height: 13px;
    margin-left: 5px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    cursor: pointer;
}

#msg_DetailMsg .msg_Infos .msg_InfosNameTime {
    float: left;
    /* width: 40%; */
    height: 100%;
    padding-left: 10px;
    box-sizing: border-box;
}

#msg_DetailMsg .msg_Infos .msg_InfosNameTime .msg_InfosName {
    float: left;
    width: 100%;
    height: 55%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: bold;
    padding-top: 10px;
    box-sizing: border-box;
}

#msg_DetailMsg .msg_Infos .msg_InfosNameTime .msg_InfosTime {
    float: left;
    width: 100%;
    height: 45%;
    color: #888888;
}

#msg_DetailMsg .msg_Infos .msg_InfosOpts {
    float: left;
    /* width: 40px; */
    height: 100%;
    padding-top: 10px;
    box-sizing: border-box;
    text-align: right;
}

#msg_DetailMsg .msg_Infos .msg_InfosOpts .msg_InfosUneOpts {
    width: 24px;
    height: 24px;
    float: right;
    background-repeat: no-repeat;
    margin: 0 5px 0 5px;
    display: inline-block;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 300ms;
}

#msg_DetailMsg .msg_Infos .msg_InfosOpts .msg_InfosUneOpts:hover {
    opacity: 1;
}

#msg_DetailMsg .msg_Message {
    float: left;
    height: 90%;
    width: 100%;
    padding: 30px 10px 10px 10px;
    box-sizing: border-box;
    position: relative;
}

#msg_DetailMsg .msg_NumChar {
    position: absolute;
    right: 2px;
    top: 10px;
    color: #707070;
}

#msg_DetailMsg .msg_NumCharWarning {
    color: #ffad1f;
    animation: CounterWarning 300ms;
}

#msg_DetailMsg .msg_NumCharFull {
    color: #e02424;
    animation: CounterFull 300ms;
}

#msg_DetailMsg .msg_Send {
    float: left;
    width: 100%;
    height: 20%;
    border-top: 1px solid rgba(0, 0, 0, 0.26);
}

#msg_DetailMsg .msg_txtNewMsg {
    float: left;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    overflow: auto;
    resize: none;
}

#msg_LstMsgDetail {
    overflow-y: auto;
    float: left;
    height: calc(100% - 39px);
    width: 100%;
    padding: 5px 5px 0 5px;
    box-sizing: border-box;
}

#msg_LstMsgDetail .msg_LabelNoMsg {
    width: 100%;
    height: 100%;
    text-align: center;
    float: left;
    font-size: 16px;
    color: #707070;
    padding-top: 5%;
    box-sizing: border-box;
}

#msg_LstMsgDetail .msg_StickMsg {
    float: left;
    width: 100%;
    height: 75px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px #807a7a;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    background-color: #FFF;
}

#msg_LstMsgDetail .msg_StickMsg:hover {
    background-color: rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

#msg_LstMsgDetail .msg_StickMsg .msg_Time {
    position: absolute;
    top: 10px;
    right: 10px;
    font-style: italic;
    color: #a0a0a0;
}

#msg_LstMsgDetail .msg_StickMsg .msg_Avatar {
    float: left;
    width: 35px;
    height: 100%;
    display: flex;
}

#msg_LstMsgDetail .msg_StickMsg .msg_MainOtps {
    float: left;
    width: 40px;
    height: 100%;
}

#msg_LstMsgDetail .msg_StickMsg .msg_MainOtps .msg_OptDelete {
    width: 100%;
    background-position: center 70%;
    background-repeat: no-repeat;
    cursor: pointer;
    height: 100%;
}

#msg_LstMsgDetail .msg_StickMsg .msg_MainStick {
    float: left;
    width: calc(100% - 75px);
    height: 100%;
    padding-left: 10px;
    box-sizing: border-box;
}

#msg_LstMsgDetail .msg_StickMsg .msg_MainStick .msg_NewMessage {
    position: absolute;
    height: 100%;
    width: 5px;
    left: 0;
    top: 0;
    background-color: #dc512a;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#msg_LstMsgDetail .msg_StickMsg .msg_MainStick .msg_Top {
    float: left;
    width: 100%;
    height: 70%;
    padding-top: 15px;
    box-sizing: border-box;
}

#msg_LstMsgDetail .msg_StickMsg .msg_MainStick .msg_Top .msg_Title {
    float: left;
    width: 100%;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: bold;
}

#msg_LstMsgDetail .msg_StickMsg .msg_MainStick .msg_Bottom {
    float: left;
    width: 100%;
    height: 30%;
    overflow: hidden;
    color: #888888;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#msg_LstMsgDetail .msg_StickMsg .msg_Selector {
    position: absolute;
    width: 20px;
    height: calc(20px / 2);
    background-color: #428bca;
    right: -5px;
    top: calc(50% - 5px);
    border-radius: calc(20px/2) calc(20px/2) 0 0;
    transform: rotate(-90deg);
}

#msg_Messagerie textarea {
    font-family: Arial, Helvetica, sans-serif;
}

#msg_Messagerie .msg_BtnAdd {
    background-position: center;
    bottom: 20px;
    left: 50%;
    margin-left: -30px;
    background-color: #428bca;
}

#msg_Messagerie .msg_BtnAdd:hover {
    margin-left: -75px;
}

#msg_Messagerie .msg_BtnSend {
    background-position: center;
    bottom: 20px;
    left: 50%;
    margin-left: -30px;
    background-color: #428bca;
}

#msg_Messagerie .msg_BtnSend:hover {
    margin-left: -75px;
}

#msg_Messagerie .msg_btnActionList {
    position: absolute;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    border-radius: 60px;
    color: #FFF;
    padding-top: 35px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 300ms;
}

#msg_Messagerie .msg_btnActionList:hover {
    opacity: 1;
}

#msg_Messagerie .msg_ColorMan {
    /* background-image: radial-gradient(circle at top right, #14a78c, #2196ca); */
    background-color: #14a78c;
}

#msg_Messagerie .msg_ColorOther {
    /* background-image: radial-gradient(circle at top right, #363f46, #9d9d9d); */
    background-color: #8a8a8a;
}

#msg_Messagerie .msg_ColorResp {
    background-color: #dc512a;
}

#msg_Messagerie .msg_ColorWoman {
    /* background-image: radial-gradient(circle at top right, #7f44de, #e635aa); */
    background-color: #7f44de;
}

#msg_Messagerie .msg_Container {
    position: absolute;
    background-color: rgba(128, 128, 128, 0.49);
    width: 100%;
    height: 100%;
    z-index: 10;
    /* Placé à 9 pour que les messages d'erreur s'affichent bien devant */
    display: flex;
    overflow: hidden;
}

#msg_Messagerie .msg_Container .msg_Messagerie {
    height: 0%;
    width: 0%;
    background-color: #f5f4f4;
    margin: auto;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    position: relative;
    transition: all 300ms ease-out;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain {
    width: 100%;
    height: 100%;
    transition: opacity 200ms ease-out;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain .msg_TypeMsg {
    float: left;
    width: 50px;
    height: 100%;
    background-color: #428bca;
    border-radius: 5px;
    overflow: hidden;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain .msg_TypeMsg .msg_MyAvatar {
    float: left;
    height: 40px;
    width: 100%;
    display: flex;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain .msg_TypeMsg ul {
    float: left;
    width: 100%;
    height: calc(100% - 70px);
    list-style: none;
    margin: 0;
    padding: 0;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain .msg_TypeMsg ul>.msg_active {
    background-color: #71ade0!important;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain .msg_TypeMsg ul>.active:hover {
    background-color: #71ade0!important;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain .msg_TypeMsg ul>li {
    height: 50px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain .msg_TypeMsg ul>li:hover {
    background-color: rgb(85, 155, 216);
    cursor: pointer;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain .msg_TypeMsg ul>li .msg_Bubble {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    line-height: 15px;
    background-color: #dc512a;
    color: #FFF;
    top: 5px;
    right: 5px;
    font-style: normal;
    text-align: center;
    font-size: 10px;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain .msg_TypeMsg ul>li .msg_Selector {
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #FFF;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain .msg_LstMsg {
    float: left;
    height: 100%;
    width: 35%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    position: relative;
    transition: opacity 300ms ease-in-out;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_Loader {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
    z-index: 1;
}

#msg_Messagerie .msg_Container .msg_Messagerie .msg_msg_LoaderBloquant {
    top: calc(50% - 15px);
    position: absolute;
    left: calc(50% - 23px);
}

#msg_Messagerie .msg_Container .msg_Open {
    width: 95%;
    height: 95%;
}

#msg_Messagerie .msg_Message .msg_ListLiens {
    width: 100%;
    height: 110px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

#msg_Messagerie .msg_Message li {
    height: 100%;
    width: 240px;
    margin: 0 20px 10px 0;
    border-radius: 2px;
    float: left;
    cursor: pointer;
    transition: all 150ms;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

#msg_Messagerie .msg_Message li:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

#msg_Messagerie .msg_Message .msg_UnLienBottom {
    width: 100%;
    height: 30%;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#msg_Messagerie .msg_Message .msg_UnLienIcon {
    width: 60%;
    height: 60%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: auto;
}

#msg_Messagerie .msg_Message .msg_UnLienTop {
    width: 100%;
    height: 70%;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    position: relative;
    display: flex;
    background-color: #607D8B;
}

#msg_Messagerie .msg_UnAvatar {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 2px solid #FFF;
    color: #FFF;
    line-height: 30px;
    text-align: center;
    margin: auto;
}

#msg_Messagerie .msg_Separe {
    width: 10px;
    height: 100%;
    float: left;
    padding: 100px 0 100px 0;
    box-sizing: border-box;
}

#msg_Messagerie .msg_Ligne {
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

#msg_PanelDestiMsg {
    height: 100%;
    width: 350px;
    background-color: #f9f9f9;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    z-index: 2;
    overflow: hidden;
    transition: width 300ms ease-in-out;
}

#msg_PanelDestiMsg .msg_PanDestCbo {
    float: left;
    width: 100%;
    height: 26px;
    padding: 0 10px 0 10px;
    box-sizing: border-box;
}

#msg_PanelDestiMsg .msg_PanDestCbo select {
    width: 100%;
    height: 100%;
}

#msg_PanelDestiMsg .msg_PanDestSearch {
    padding: 10px;
    float: left;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
}

#msg_PanelDestiMsg .msg_PanDestList {
    float: left;
    width: 100%;
    height: calc(100% - 145px);
    padding: 0 10px 0 10px;
    box-sizing: border-box;
    overflow-x: auto;
}

#msg_PanelDestiMsg .msg_PanDestList .msg_PanDestiStick {
    border-bottom: 1px solid #00000030;
    height: 30px;
    width: 100%;
    float: left;
    position: relative;
}

#msg_PanelDestiMsg .msg_PanDestiStickChk {
    width: 35px;
    margin: 9px 0 0 0;
    position: absolute;
    left: 0;
    z-index: -1;
}

#msg_PanelDestiMsg .msg_PanDestiStickChkAll {
    width: 35px;
    margin: 9px 0 0 0;
    position: absolute;
    left: 10;
    z-index: -1;
}

#msg_PanelDestiMsg .msg_PanDestiStickName {
    float: left;
    width: calc(100% - 30px);
    height: 100%;
    line-height: 30px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 35px;
    box-sizing: border-box;
}

#msg_PanelDestiMsg .msg_PanDestiStickStatutPres {
    float: left;
    margin: 8px 0 0 5px;
}

#msg_PanelDestiMsg .msg_PanDestCheckAll {
    float: left;
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    padding: 0 10px 0 10px;
}

#msg_PanelDestiMsg .msg_PanDestTop {
    float: left;
    width: 100%;
    height: 35px;
    box-sizing: border-box;
    padding: 0 10px 0 10px;
}

#msg_PanelDestiMsg .msg_PanDestTopBack {
    width: 30px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: contain;
    float: left;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 300ms;
    transform: rotate(180deg);
}

#msg_PanelDestiMsg .msg_PanDestTopTitle {
    font-size: 14px;
    line-height: 35px;
    color: #4e4e4e;
    cursor: pointer;
}

.msg_CircleAllPresAbs{
    width: 13px;
    height: 13px;
    border-radius: 13px;
}
.msg_CircleDemiPresAbs{
    width: calc(13px /2);
    height: 13px;
    border-top-left-radius: calc(13px /2);
    border-bottom-left-radius: calc(13px /2);
    background-color: #e65b5b;
}
/*.msg_CircleDemiPresAbs{
    width: 13px;
    height: 13px;
    border-radius: 13px;
}
.msg_CircleDemiPresAbs::before, .msg_CircleDemiPresAbs::after{
    content: "";
    width: calc(13px / 2);
    height: 13px;
}
.msg_CircleDemiPresAbs::before{
    float: left;
    border-top-left-radius: calc(13px /2);
    border-bottom-left-radius: calc(13px /2);
    background-color: #e65b5b;
}
.msg_CircleDemiPresAbs::after{
    float: left;
    border-top-right-radius: calc(13px /2);
    border-bottom-right-radius: calc(13px /2);
    background-color: #5be686;
} */

.msg_TopCtn {
    position: relative;
    float: left;
    width: 100%;
    height: 40px;
    background-color: #444;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.msg_TopCtn .msg_Close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 300ms;
}

.msg_TopCtn .msg_Close:hover {
    opacity: 1;
}

.msg_ColorPresent {
    background-color: #5be686;
}

.msg_ColorAbsent {
    background-color: #e65b5b;
}

.msg_MainCtn {
    float: left;
    width: 100%;
    height: calc(100% - 40px);
    padding: 5px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.msg_imgAddWhite24 {
    background-image: url(../../Images/Messagerie/Add_White_24.png);
}

.msg_imgSendWhite24 {
    background-image: url(../../Images/Messagerie/Send_White_24.png);
}

.msg_imgAddPersonGrey24 {
    background-image: url(../../Images/Messagerie/PersonAdd_Grey_24.png);
}

.msg_imgForwardGrey24 {
    background-image: url(../../Images/Messagerie/Forward_Msg.svg);
}

.msg_imgReplyGrey24 {
    background-image: url(../../Images/Messagerie/Reply_Msg.svg);
}

.msg_BackWhiteSvg {
    background-image: url(../../Images/Messagerie/Chevron_left_black_24px.svg);
}

.msg_CloseWhiteSvg {
    background-image: url(../../Images/Messagerie/Close_white_24px.svg);
}

.msg_CloseBlackSvg {
    background-image: url(../../Images/Messagerie/Close_Black_24.svg);
}

.msg_imgDelete {
    background-image: url(../../Images/Messagerie/imgDelete.png);
}

.msg_imgDelete:hover {
    background-image: url(../../Images/Messagerie/imgDeleteON.png);
}

.msg_imgDownloadWhiteSvg {
    background-image: url(../../Images/Messagerie/FileDownload_white_24px.svg);
}

.msg_imgLinkWhiteSvg {
    background-image: url(../../Images/Messagerie/Link_white_24px.svg);
}

.msg_imgMessageWhite30 {
    background-image: url(../../Images/Messagerie/Message_White_30.png);
}

.msg_imgNotifyWhite30 {
    background-image: url(../../Images/Messagerie/Notify_White_25.png);
}

.msg_imgSendWhite30 {
    background-image: url(../../Images/Messagerie/Send_White_24.svg);
}

.msg_imgRedirectionWhiteSvg {
    background-image: url(../../Images/Messagerie/redirections_white_24px.svg);
}

@media (max-width: 980px) {
    #msg_DetailMsg {
        width: calc(100% - 65px);
    }
    #msg_Messagerie .msg_BtnAdd:hover {
        margin-left: -30px;
    }
    #msg_Messagerie .msg_BtnSend:hover {
        margin-left: -30px;
    }
    #msg_DetailMsg .msg_Infos .msg_InfosClose {
        display: block;
    }
    #msg_DetailMsg .msg_Infos .msg_InfosLeft {
        float: left;
        width: calc(100% - 75px);
    }
    #msg_DetailMsg .msg_Infos .msg_InfosListDestinataire {
        width: calc(100% - 120px);
    }
    #msg_DetailMsg .msg_Infos .msg_InfosListDestinataire .msg_InfosStickDesti {
        width: 100%;
        box-sizing: border-box;
        margin: 0 0 5px 0;
    }
    #msg_Messagerie .msg_Container .msg_Open {
        width: 98%;
        height: 98%;
    }
    #msg_Messagerie .msg_Container .msg_Messagerie .msg_CtnMain .msg_LstMsg {
        width: calc(100% - 50px);
    }
    #msg_Messagerie .msg_Message li {
        width: 100%;
    }
}

@keyframes CounterWarning {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.2);
    }
    40% {
        transform: scale(1.4);
    }
    50% {
        transform: scale(1.6);
    }
    60% {
        transform: scale(1.8);
    }
    70% {
        transform: scale(2);
    }
    80% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes CounterFull {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.2);
    }
    40% {
        transform: scale(1.4);
    }
    50% {
        transform: scale(1.6);
    }
    60% {
        transform: scale(1.8);
    }
    70% {
        transform: scale(2);
    }
    80% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}