/*-----------------------------general actions-----------------------------*/
.divGeneralActions{
    display: flex;
    column-gap: 20px;
    position: absolute;
    z-index: 1;
}

.divGeneralAction{
    border: var(--color1) dashed 3px;
    font-size: 23px;
    height: 37px;
    width: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
}

.dga-s{
    border: var(--color1) solid 2px;
    font-size: 17px;
    height: 23px;
    width: 23px;
}

.dga-m{
    border: var(--color1) solid 2px;
    font-size: 20px;
    height: 30px;
    width: 30px;
    column-gap: 3px;
}

.divGeneralAction:hover{
    color:var(--color2);
    background-color: var(--color1);
}

.divGeneralAction:hover .showActionPopup{
    display: block;
}

.DGAerrors{
    color: var(--errorColor);
    font-size: 13px;
    font-weight: bold;
    row-gap: 20px;
    position: absolute;
    display: none;
    flex-direction: column;
    row-gap: 5px;
}

.dgas-ts{
    top: 10vh;
}

.dgas-tm{
    top: 12vh;
}

.dgas-rs{
    right: 6vw;
}

.dgas-rm{
    right: 15vw;
}

#DGAorders{
    right: 14vh;
    top: 22vh;
}

#DGAordersDetails{
    right: 15vh;
    top: 21vh;
}

#DGAordersErrors{
    right: 18vw;
    top: 37vh;
    width: 230px;
}

@media screen and (max-width: 1300px) {
    #DGAorders, #DGAordersDetails{
        right: 7vh;
    }
    #DGAordersErrors{
        right: 5vh;
        width: 120px;
    }
}


/*---PRODUCTS.EJS---*/
#DGAproducts{
    right: 15vh;
    top: 23vh;
}

#DGAcustomers{
    right: 15vh;
    top: 23vh;
}

#DGApaymentMethods{
    right: 30vw;
    top: 23vh;
}

#DGAordersCreateEdit{
    right: 70px;
    top: -80px;
    z-index: 2;
}