 #app{
    width: 100vw;
    height: 100vh;
}
.status_btns{
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: absolute;
    left: 20px;
    bottom: 10px;
    z-index: 1000;
    gap: 12px;
}
.status_btns .status, .status_mobile {
    background-color: var(--white);
    display: flex;
    align-items: center;
    width: 100px;
    height: 35px;
    border-radius: 10px;
    box-shadow: 0px 3px 10px 0px #0000001A;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}
.status_btns .status span, .status_mobile span {
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'yekanBakh';
    font-size: 13px;
    font-weight: 600;
    line-height: 31px;
    text-align: center;
    color: var(--TextColor1);
    position: relative;
    z-index: 10;
}
.status_btns .status:after,.status_mobile:after{
    content: '';
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background-color: var(--Primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0px;
    transition: 0.5s;
}
.status_btns .status .icon_box,.status_mobile .icon_box{
    width: 35px;
    height: 35px;
    /*border-radius: 10px;*/
    /*background-color: var(--Primary);*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 10;
}
.status_btns .status .icon_box img,.status_mobile .icon_box img{
    max-height: 30px;
    max-width: 22px !important;
}

.status_btns .status:hover:after,.status_mobile:hover:after{
    width: 100%;
}
.status_btns .status:hover span,.status_mobile:hover span{
    color: var(--white);
}
.status_btns .status.active:after,.status_mobile.active:after{
    width: 100%;
}
.status_btns .status.active span,.status_mobile.active span{
    color: var(--white);
}


.level_box{
    display: flex;
    flex-direction: column;
    width: 55px;
    position: absolute;
    bottom: 10px;
    right: 20px;

    z-index: 1000;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.03);
    border-radius: 5px;
}
.level_box .cell{
    height: 30px;

    font-family: "yekanBakh";
    font-size: 15px;
    font-weight: 400;
    color: var(--TextColor2);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

}
.level_box .cell:first-child{
    border-radius: 5px 5px 0 0;
}
.level_box .cell:last-child{
    border-radius: 0px 0px 5px 5px;
}

 .parentDiv {
     background-color: #fff;
     box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
     font-size: 12px;
     font-family: Yekan;
     min-height: 30px;
     padding: 10px;
     border: 1px solid rebeccapurple;
     border-radius: 5px;
     justify-content: center;
     align-items: end;
     width: fit-content;
     margin-right: 10px;
     text-wrap: nowrap;
     display: flex;
     flex-direction: column;
     gap: 5px;
     flex-direction: column;


 }
.my-div-close{
    position: absolute;
    top: -5px;
    left: -10px;
    background: lightgray;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 9px;
    /* padding: 4px 7px; */
    font-size: 10px;
    font-weight: bold;
    border: 1px solid grey;
    cursor: pointer;
}
 .selectType{
     position: absolute;
     right: 80px;
     top: 15px;
     z-index: 1000;
     height: 50px;
     width: 120px;
     border-radius: 5px;
     padding:0 10px;
     /*box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;*/
     background: #fff;
     border: none;
 }
 .selectType:focus-visible{
     border:none;
     outline: none;
 }
.dontShow{
    display: none;
}