@import url(https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap);
@import url(/style/barcode.css);

*, ul {
    margin: 0;
    padding: 0
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;

    color: black;
    text-decoration: none;

}

#container, * {
    direction: rtl
}

body, html, #wrappingpanel {
    overflow: hidden;
}

.tr_alert {
    position: absolute;
    left: 50%;
    bottom: 5%;
    border-radius: 5px;
    opacity: 0;
    min-width: 150px;
    transform: translate(-50%, 0%);
    z-index: 90000;

    padding: 12px 25px;
    transition: 0.2s;
}

.tr_alert_on {
    opacity: 1;
    transform: translate(-50%, -170%)
}

.tranbtn {
    color: #4e4e4e;
    background-color: #fff;
    padding: .6rem .8rem;
    border-radius: 5px;
    border: none;
    transition: .4s;
    position: relative;

}


.tranbtn>div {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.811);
    white-space: nowrap;
    text-align: center;
    padding: 0.5rem 1.4rem;
    border-radius: 8px;
    color: white;
    left: 50%;
    transform: translate(-50%, 30%);
    z-index: 5000;
}

.tranbtn:hover>div {
    display: block;

}

.tranbtn:hover {
    background-color: #dbdbdb
}


.no {
    display: none;
}

.flex {
    gap: 10px
}

.fjc {
    justify-content: center
}

.fs {
    font-size: 13px
}

.skeleton {
    height: 20px;
    border-radius: 8px;
    background-color: #d6d6d6;
    animation: FRA forwards 1.5s infinite;
    animation-timing-function: linear;
}

@keyframes FRA {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}

.slide_in_right {



    opacity: 0;
    transform: translate(200%, 0%) !important;
    transition: all .3s ease-out;

}

.slide_in_left {
    opacity: 0;
    transform: translate(-200%, 0%) !important;
    transition: all .3s ease-out;
}

.slide_center {
    width: 100%;
    opacity: 1 !important;
    transform: translate(-50%, 0%) !important;
    transition: all .3s ease-out;
}

.pup_center {
    width: 100%;
    opacity: 1 !important;
    transform: translate(-50%, 0%);
    transition: all .3s ease-out;
}

.slide_left {
    z-index: 10;
    transform: translate(-150%, 0%) !important;
    opacity: 0 !important;
}

.slide_right {
    z-index: 10;
    transform: translate(150%, 0%) !important;
    opacity: 0 !important;
}

#panel, #oldpanel {
    left: 50%;
    width: 100%;
    position: fixed;
    transform: translate(-50%, 0%);
    opacity: 0;
    transition: .3s
}

.tr_info {
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    transform: translate(0, 100%);
    transition: .4s
}

.tr_info_on {
    opacity: 1;
    transform: translate(0, 0) !important
}

.fexcoolbtn {
    position: fixed;
    z-index: 1000;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    left: 0%;
    bottom: 0%;
    font-size: 13px;
    background: linear-gradient(90deg, #c82196 0, #9c19d4 100%);
    transform: translate(40%, -30%);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 11px 2px rgba(0, 0, 0, .09)
}

.fexcoolbtn:hover {
    box-shadow: 0 0 11px 3px rgba(156, 25, 212, .7);
}


