/*Start Main-Rulze */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    background-color: #e7e7e7;
    position: relative;
}
.form {
    background-color: #175154;
    width: 100%;
    height: 100%;
    position: fixed;
}
.buy-it {
    font-size: 24px;
}
.btn-system {
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    color: black;
    padding: 4px  10px;
    background-color: #ff902c;
    border-radius: 4px;
    border: 1px solid black;
    top: 28px;
    left: 30px;
    transition: var(--main-transition);
}
.btn-system:hover{ 
    color: #ff902c;
    background-color: white;
    border: 1px solid #ff902c;;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
td {
    border: 1px solid var(--color-hover) !important;
}
a:hover {
    text-decoration: none;
}
:root {
    --main-transition: .5s;
    --main-color: #0c3c38 ;
    --main-alt-color: #668b8b;
}
.title-page {
    margin: 30px auto;
    text-align: center;
    padding: 3px 15px;
    background-color: var(--color-alt-brand);
    border-radius: 4px;
    border: 1px solid black;
    width: fit-content;
    color: white;
}
.carousel {
    margin-bottom: 59px !important;
}
/* End Main-Rulze */
/* Start Nice Form */

:root {
    --asm-default-transition: 300ms;
}
:root {
    --asm-color-warning: #ffc107;
    --asm-color-danger: #dc3545;
    --asm-color-dark: #343a40;
    --asm-color-focus: rgba(0, 123, 255, 0.25);
    --asm-color-secondary: #3f5c80;
    --asm-color-accent: #b4c2c9;
    --asm-color-flat: #6a9ed3;
    --asm-color-sidenav-item: rgba(29, 54, 86, .6);
    --asm-color-input-border: rgba(52, 58, 64, .25);
    --asm-color-btn-secondary: #64c3f0;
    --asm-color-background: #fff;
    --asm-color-text: #343a40;
    --asm-color-secondary-text: #fff;
    --asm-color-social: #fff;
    --color-brand: #032330;
    --color-alt-brand: #073149;
    --color-hover: #1f475e;
    --color-background: #eee;
}
*,
*::before,
*::after {
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: var(--asm-default-transition);
    transition: var(--asm-default-transition);
}
.asm-form {
    display: -webkit-box;
    display: -ms-flexbox;
    position: absolute;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 90%;
    max-width: 30rem;
    margin: 0 auto;
    font-family: inherit;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.15);
    color: var(--asm-color-text);
    background-color: var(--asm-color-background);
    font-size: .8rem;
    right: 50%;
    top: 50%;
    transform: translate(50%,-50%);
}

.asm-form:not(.active) {
    max-height: 0;
    overflow: hidden;
}

.asm-form__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.75rem 2rem;
    font-family: inherit;
    color: var(--asm-color-text);
    background-color: var(--asm-color-background);
}

.asm-form__footer, .asm-form__header {
    padding: 0.75rem 2rem;
    color: var(--asm-color-secondary-text);
    background-color: var(--color-brand);
}

.asm-form__footer {
    border-radius: 0 0 .5rem .5rem;
}

.asm-form__header {
    border-radius: .5rem .5rem 0 0;
}
.asm-form__inputbox, .asm-form__leverbox {
    position: relative;
    margin: 0.5rem 0;
    --error-opacity: 0;
    --error-top: -3rem;
    --error-z-index: -1;
    --input-box-shadow: none;
}
.asm-form__inputbox.invalid, .asm-form__leverbox.invalid {
    --error-opacity: 1;
    --error-top: 100%;
    --error-z-index: 10;
    --input-box-shadow: inset 0 0 4px var(--asm-color-warning)
        ;
}
.asm-form__icon {
    position: absolute;
    top: 50%;
    max-width: 1rem;
    color: inherit;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.asm-form__icon.prepend {
    left: 1rem;
}
.asm-form__icon.append {
    right: 1rem;
}
.asm-form__inputlabel {
    position: absolute;
    top: 50%;
    left: 0;
    font-family: inherit;
    color: inherit;
    -webkit-transition: var(--asm-default-transition);
    transition: var(--asm-default-transition);
    -webkit-transform: translate(3rem, -50%);
            transform: translate(3rem, -50%);
}
.asm-form__inputlabel:not(.active) {
    font-size: 1.25em;
}
.asm-form__inputlabel.active {
    top: 0;
    font-size: 1em;
    -webkit-transform: translate(1rem, -100%);
            transform: translate(1rem, -100%);
    color: var(--asm-color-text);
    text-transform: capitalize;
}
.asm-form__input {
    width: 100%;
    padding: 0.75rem 3rem;
    font-family: inherit;
    font-size: 1.25em;
    color: inherit;
    background-color: inherit;
    border: 1px solid var(--asm-color-input-border);
    border-radius: .3rem;
    -webkit-box-shadow: var(--input-box-shadow);
            box-shadow: var(--input-box-shadow);
}

.asm-form__input::-webkit-input-placeholder {
    color: transparent;
}

.asm-form__input:-ms-input-placeholder {
    color: transparent;
}

.asm-form__input::-ms-input-placeholder {
    color: transparent;
}

.asm-form__input::placeholder {
    color: transparent;
}

.asm-form__input:active, .asm-form__input:focus, .asm-form__input:hover {
    outline: none;
    -webkit-box-shadow: inset 0 0 4px var(--asm-color-sidenav-item);
            box-shadow: inset 0 0 4px var(--asm-color-sidenav-item);
}

.asm-form__leverbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (min-width: 576px) {
.asm-form__leverbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 2rem;
}
}

.asm-form__leverlabel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
}

@media (max-width: 575px) {
    .asm-form__leverlabel {
        margin-bottom: 1rem;
    }
}

.asm-form__lever {
    position: relative;
    -moz-appearance: none;
            appearance: none;
    -webkit-appearance: none;
    width: 2rem;
    height: 1rem;
    margin-right: 1rem;
    background-color: var(--background);
    border: 1px solid var(--asm-color-secondary);
    border-radius: 1rem;
    outline: none;
    -webkit-transition: var(--asm-default-transition);
    transition: var(--asm-default-transition);
    cursor: pointer;
    --background: transparent;
    --ball-background: var(--asm-color-secondary);
    --ball-left: 0.15rem;
}

.asm-form__lever:checked {
    --background: var(--asm-color-secondary);
    --ball-background: #fff;
    --ball-left: calc(100% - .85rem);
}

.asm-form__lever:focus {
    -webkit-box-shadow: 0 0 0 0.2rem var(--asm-color-focus);
            box-shadow: 0 0 0 0.2rem var(--asm-color-focus);
}

.asm-form__lever::before {
    position: absolute;
    top: 50%;
    left: var(--ball-left);
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    content: '';
    -webkit-transition: var(--asm-default-transition);
    transition: var(--asm-default-transition);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: var(--ball-background);
    border-radius: 50%;
    }

.asm-form__linkbox {
    text-align: right;
}

.asm-form__link {
    text-decoration: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: var(--asm-color-flat);
    font-size: 1em;
}

.asm-form__link:hover {
    color: var(--asm-color-accent);
}

.asm-form__btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.3rem;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.2em;
    color: var(--asm-color-dark);
    background: #e8f0fe;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.form-nice {
    width: 100%;
    height: 100vh;
    background-color: var(--color-background);
}
.form-nice input[type="text"],
.form-nice input[type="password"] {
    transition: var(--main-transition);
}
.form-nice input:not([type="submit"]):focus + label{  
    opacity: 0;
}
.item_link_vi a i {
    color: black;
    line-height: 86px;
    font-size: 25px;
}
/* End Nice Form */
/* Start Dashboard */
.dashboard {
    background-color: #E4E4E4;
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}
.dashboard .content-dash {
    width: 94%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 11px;
    justify-content: space-around;
    height: 500px;
}
.dashboard .content-dash h4 {
    width: 100%;
    font-size: 31px;
    font-weight: bold;
    margin-bottom: 11px;
}
.dashboard .content-dash > div {
    width: 98%;
    background-color: #f3f3f3;
    text-align: center;
    display: flex;
    border-radius: 15px;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%), 0px 2px 4px 0px rgb(0 0 0 / 12%);
    font-size: 20px;
    opacity: 1;
}
.dashboard .content-dash > div.statistics {
    height: 41%;
}
.dashboard .content-dash > div.storages {
    height: 64%;
}
.dashboard .content-dash > div.statistics > div {
    padding: 32px;
    width: 18%;
    border-radius: 7px;
    border: 1px solid black;
    height: 90%;
    transition: var(--main-transition);
}
.dashboard .content-dash > div > div i {
    color: white;
    font-size: 41px;
}
.dashboard .content-dash > div.statistics > div p {
    color: black;
    font-weight: bold;
    padding-top: 16px;
}
.dashboard .content-dash > div.statistics > div span {
    color: black;
    font-weight: bold;
    font-size: 29px;
}
.dashboard .content-dash > div.statistics > div:first-child {
    background-color: #ff902c;
}
.dashboard .content-dash > div.statistics > div:nth-child(2) {
    background-color: #b16363;
}
.dashboard .content-dash > div.statistics > div:nth-child(3) {
    background-color: #725d9f;
}
.dashboard .content-dash > div.statistics > div:nth-child(4){
    background-color: #3babc7;
}
.dashboard .content-dash > div.statistics > div:last-child {
    background-color: #77bc5f;
}
.dashboard .content-dash > div:last-child > div{
    width: 48%;
    border-radius: 4px;
    border: 1px solid black;
    height: 90%;
}
.dashboard .content-dash > div:last-child > div:first-child {
    background-color: #f44336;

}
.dashboard .content-dash > div:last-child > div:last-child {
    background-color: #898686;
}
.dashboard .content-dash > div:last-child > div p.title {
    font-size: 27px;
    font-weight: bold;
    padding-top: 4px;
    margin-bottom: 7px;
}
.dashboard .content-dash > div:last-child > div ul.list-s {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.dashboard .content-dash > div:last-child > div ul.list-s li {
    display: flex;
    background-color: #e7e7e7;
    margin: 3px;
    justify-content: start;
    align-items: center;
    min-width: 60%;
    direction: rtl;
    border-radius: 6px;
    padding-right: 10px;
}
.dashboard .content-dash > div:last-child > div ul.list-s li p.product-name {
    margin-bottom: 0;
    font-weight: bold;
    padding: 3px;
}
.dashboard .content-dash > div:last-child > div ul.list-s li span.product-number {
    font-size: 22px;
    font-weight: bold;
    color: white;
    background-color: black;
    margin: 3px;
    padding: 0 6px;
    border-radius: 4px;
}
@media (max-width: 576px) {
    .dashboard .content-dash h4 {
        font-size: 31px;
    }
    .dashboard .content-dash > div {
        font-size: 20px;
    }
    .dashboard .content-dash > div > div i {
        font-size: 41px;
    }
    .dashboard .content-dash > div:last-child > div ul.list-s li p.product-name {
        font-weight: bold;
        padding: 3px;
    }
    .dashboard .content-dash > div:last-child > div ul.list-s li span.product-number {
        font-size: 22px;
        margin: 3px;
        padding: 0 6px;
    }
}
@media (max-width: 969px) {
    .dashboard .content-dash h4 {
        font-size: 24px;
    }
    .dashboard .content-dash > div {
        font-size: 20px;
    }
    .dashboard .content-dash > div.statistics {
        height: 25%;
    }
    .dashboard .content-dash > div.statistics > div{
        padding: 3px;
    }
    .dashboard .content-dash > div.statistics > div p {
        padding: 0;
        font-size: 13px;
    }
    .dashboard .content-dash > div.statistics > div span {
        font-size: 22px;
    }
    .dashboard .content-dash > div > div i {
        font-size: 26px;
        padding-top: 9px;
    }
    .dashboard .content-dash > div:last-child > div p.title {
        font-size: 17px;
    }
    .dashboard .content-dash > div:last-child > div ul.list-s li {
        font-size: 13px;
    }
    .dashboard .content-dash > div:last-child > div ul.list-s li p.product-name {
        font-weight: bold;
        padding: 3px;
    }
    .dashboard .content-dash > div:last-child > div ul.list-s li span.product-number {
        font-size: 16px;
    }
}
.nav-dash {
    width: 6%;
    background-color: #032330;
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    z-index: 1000;
    opacity: 1;
    top: 0;
    height: 100vh;
}
.nav-dash p {
    display: none;
    position: relative;
    bottom: 33px
}
.nav-dash .img {
    height: 112px;
    margin-bottom: 32px;
}
.nav-dash .img img{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-top: 70px;
}
.nav-dash .user {
    font-size: 16px;
    background-color: var(--color-alt-brand);
    width: 87%;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    border-radius: 10px;
    border: 2px solid black;
    justify-content: center;
}
.nav-dash .links {
    position: relative;
}
.nav-dash .links li:not(:nth-child(2)) i {
    color: #ebebeb;
    font-size: 25px;
    position: absolute;
    left: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-dash .links li:nth-child(2) i {
    color: #ebebeb;
    font-size: 25px;
    position: absolute;
    left: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-dash .links .links-main{
    padding: 15px;
    transition: 0.5s;
}
.home-s {
    position: relative;
}
.home-s i {
    font-size: 26px !important;
}
.home-s i span {
    border: 1px solid black;
    color: black;
    position: absolute;
    top: -8px;
    right: -6px;
    border-radius: 50%;
    width: 21px;
    height: 21px;
    font-size: 10px;
    background: var(--color-background);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-dash .for {
    color: white;
    position: absolute;
    top: 20px;
    left: 10px;
    font-size: 30px;
    cursor: pointer;
}
.nav-dash .out {
    left: 10px;
    font-size: 19px;
}
.nav-dash .in {
    left: 38px;
    font-size: 19px;
}
.nav-dash .links .links-main li.li{
    border-bottom: 2px solid black;
    background-color: var(--color-alt-brand);
    padding: 10px 20px;
    margin-bottom: 5px;
    transition: all .5s;
    cursor: pointer;
    width: 51px;
    border-radius: 7px;
    height: 40px;
}
.nav-dash .links .links-main li.li:hover,
.nav-dash .links .links-mega li:hover {
    background-color: var(--color-hover);
}
.nav-dash .links .links-main li.first{
    position: relative;
}
.nav-dash .links .links-main li.li.first::before,
.nav-dash .links .links-main li.li.first::after {
    content: "";
    position: absolute;
}
.nav-dash .links .links-main li.first::before {
    left: -15px;
    height: 100%;
    width: 9px;
    background-color: var(--color-brand);
    top: 0;
}
.nav-dash .links .links-main li.first::after {
    border-width: 10px;
    border-style: solid;
    border-color: transparent white transparent transparent;
    left: -21px;
    top: 50%;
    transform: translateY(-50%);
}
.nav-dash .links .links-main li.first:hover .links-mega{
    display: block;
}
.nav-dash .links li a{
    text-decoration: none;
    color: white;
    font-size: 17px;
    padding-left: 35px;
}
.nav-dash .links .links-mega {
    position: absolute;
    top: 0;
    left: -168px;
    border: 2px solid black;
    display: block;
    padding: 9px 16px;
    background-color: var(--color-brand);
    display: none;
    transition: var(--main-transition);
    opacity: 1;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: none;
}
.nav-dash .links .links-mega li {
    background-color: var(--color-alt-brand);
    height: 50px;
    width: 100%;
    border-bottom: 2px solid black;
    padding: 0px 7px;
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
    align-items: center;
}
/* End Dashboard */
/* Start Orders Nav*/
nav.link {
    background-color: #032330;
    width: 95%;
}
nav .nav-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
nav .nav-bar .brand {
    width: 11%;
}
nav .nav-bar .brand span {
    font-size: 35px;
    font-weight: bold;
    color: white;
}
nav .nav-bar .brand,
nav .nav-bar .links-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}
nav .nav-bar .links-nav{
    display: flex;
    font-size: 13px;
    direction: rtl;
    width: 100%;
    justify-content: right;
    margin-bottom: 0;
    margin-right: 0;
    padding-right: 0;
}
nav .nav-bar .links-nav li{
    margin-left: 3px;
    transition: var(--main-transition);
}
nav .nav-bar .links-nav li.active,
nav .nav-bar .links-nav li:hover{
    background-color: var(--color-alt-brand);
    padding: 2px 20px;
    border: 1px solid white;
    border-radius: 2px;
}
nav .nav-bar .links-nav li a{
    color: white;
    text-decoration: none;
    line-height: 2;
    padding: 5px 4px;
    transition: var(--main-transition);
    font-size: 15px;
}
.container .img {
    width: 100%;
    margin: 50px auto;
}
.container .img img {
    width: 100px;
    height: 100px;
}
.container .eddit {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    background-color: var(--main-color);
    Padding: 30px;
    border-radius: 10px;
}
.container .eddit > div {
    background-color: var(--main-alt-color);
    height:50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .main-table {
    direction: rtl;
}
.container .main-table td:first-child {
    width: 30px;
}
.container .main-table tr:first-child {
    background-color: #032330;
    color: white;
}
.btn-danger,
.btn-success,
.btn-primary {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid black;
}
/* End Orders Nav*/
/* Start Items Form */
.items .img-slider {
    width: 95%;
    margin-bottom: 5px;
}
.items .img-slider img {
    width: 100%
}
body.new-body{
    background-color: #1d6b87;
}
.items .vertical {
    flex-direction: column !important;
    align-items: center !important;
}
.items .vertical lable {
    width: 30% !important;
    margin-bottom: 5px !important;
}
.items .vertical .info {
    width: 100% !important;
}
.items {
    background-color: #1d6b87 !important;
    padding: 1px;
}
/* Start Main Page */
.order,
.order form .add-item-btn {
    background-color: #0c3c38 !important;
}
.order form .add-item-btn:hover {
    background-color: white !important;
}
.items .carousel-inner {
    width: 80%;
    margin: 30px auto;
}
.items .carousel-item img{
    width: 100%;
}

.carousel-indicators li {
    position: relative;
    top: 52px;
    width: 16px;
    height: 16px;
    border: 2px solid black;
    background-color: white;
    cursor: pointer;
    /* border-radius: 50%; */
}
.carousel-indicators li.active {
    width: 16px;
    height: 16px;
    border: 2px solid black;
    background-color: rgb(194, 18, 18);
}
.items a i{
    font-size: 37px;
    font-weight: bold;
    color: #61ceff;
}
.items .image-item {
    width: 80%;
    margin: 30px auto;
    padding: 30px;
}
.fancy-border {
    border: 25px solid white;
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='75' height='75'%3E%3Cg fill='none' stroke='%23B88846' stroke-width='2'%3E%3Cpath d='M1 1h73v73H1z'/%3E%3Cpath d='M8 8h59v59H8z'/%3E%3Cpath d='M8 8h16v16H8zM51 8h16v16H51zM51 51h16v16H51zM8 51h16v16H8z'/%3E%3C/g%3E%3Cg fill='%23B88846'%3E%3Ccircle cx='16' cy='16' r='2'/%3E%3Ccircle cx='59' cy='16' r='2'/%3E%3Ccircle cx='59' cy='59' r='2'/%3E%3Ccircle cx='16' cy='59' r='2'/%3E%3C/g%3E%3C/svg%3E") 25;
}
.items .image-item img {
    width: 100%;
}
.items .image-slider {
    border: 2px solid white;
    border-radius: 8px;
    width: 80%;
    margin: 30px auto;
}
.items .logo {
    width: 50%;
    margin: 15px auto;
    padding: 10px 40px;
    border-radius: 3px;
    color: black;
    border: 2px solid black;
    background-color: #a2b7be;
}
.items .logo h2 {
    margin-top: 14px;
}
.items .form-add {
    padding: 80px 20px;
    border: 2px solid black;
    margin-bottom: 30px;
    background-color: #a2b7be;
    position: relative;
    width: 95%;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-top: 0;
}
.items form .form-group{
    margin-bottom: 40px;
    direction: rtl;
    display: flex;
    padding-right: 20px;
}
.items form .form-group lable{
    color: white;
    display: flex;
    border: 2px solid black;
    justify-content: center;
    align-items: center;
    background: #1d6b87;
}
.items form .form-group input{
    border-radius: 5px;
    border: 2px solid black;
}
.items form .form-group select {
    border-radius: 5px;
    border: 2px solid black;
}
.items form .form-group input::placeholder{
    font-size: 16px;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 20px;
}
.items .name-product {
    color: black;
    width: 95%;
    background-color: #a2b7be;
    padding: 10px 20px;
    font-weight: bold;
    border-bottom: 0;
    border-top: 2px solid black;
    border-right: 2px solid black;
    border-left: 2px solid black;

    margin-bottom: 0 !important;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: var(--main-transition);
}
.items form .add-item-btn {
    background-color: #a2b7be;
    color: black;
    border: 2px solid black;
    font-weight: bold;
    padding: 10px 38px;
    font-size: 18px;
    position: absolute !important;
    right: 50% !important;
    transform: translateX(50%) !important;
    transition: var(--main-transition);
    height: 50px !important;
    z-index: 1000000;
    top: 90% !important;
}
.items form .add-item-btn:hover,
.items .book:hover{
    background-color: #1d6b87;
    color: white;
}
.items .book {
    color: black;
    font-weight: bold;
    background-color: #a2b7be;
    border: 2px solid black;
    position: fixed;
    top: 316px;
    right: 20px;
    padding: 10px 20px;
    font-size: 20px;
    transition: var(--main-transition);
    width: 97px;
    display: flex;
    justify-content: center;
    z-index: 10;
}

@media  (max-width: 576px){
    .items form .form-group lable {
        height: 44px;
        font-size: 14px;
        border-radius: 4px;
    }
    
    .items form .form-group input {
        padding: 9px;
    }
    .items .book {
        font-size: 13px;
        width: 74px;
        padding: 3px;
        right: 5;
    }
    .items form .form-group select {
        width: 227px;
        height: 45px;
        background-color: white;
    }
    .items .name-product {
        padding: 4px 12px;
    }
    .items form .add-item-btn {
        padding: 7px 14px !important;
        font-size: 19px !important;
    }
    .items .logo h1,
    .items .logo h2 {
        color: white;
    }
    .items .logo h1{
        font-size: 20px;
        font-weight: bold;
    }
    .items .logo h2 {
        font-size: 16px;
    }
    .wats {
        font-size: 14px !important;
    }
    .items .form-add {
        padding: 40px 0;
    }
    .des-item-fo {
        font-size:16px !important;
    }
}
@media  (min-width: 576px){
    .items .logo h1,
    .items .logo h2 {
        font-size: 25px;
        color: black;
    }
    .items .name-product {
        font-size: 26px;
        padding: 4px 12px;
    }
    .items form .form-group lable {
        height: 44px;
        font-size: 14px;
        border-radius: 4px;
    }
    .items form .form-group input {
        padding: 9px;
    }
    .items form .form-group select {
        min-width: 293px;
        height: 45px;
    }
    .items .book {
        font-size: 13px;
        width: 74px;
        padding: 3px;
        right: 37px;
    }
    .items form .add-item-btn {
        padding: 7px 14px ;
        font-size: 19px;
    }
}
@media  (min-width: 720px){
    .items .logo h1,
    .items .logo h2 {
        font-size: 40px;
        color: black;
    }
    .items .name-product {
        font-size: 26px;
        padding: 4px 12px;
    }
    .items form .form-group lable {
        height: 44px;
        font-size: 16px;
        border-radius: 4px;
    }
    .items form .form-group input {
        padding: 9px;
    }
    .items form .form-group select {
        width: 428px;
        height: 45px;
    }
    .items .book {
        font-size: 17px;
        width: 74px;
        padding: 7px 10px;
        right: 5px;
    }
    .items form .add-item-btn {
        padding: 7px 14px ;
        font-size: 19px;
    }
}
@media  (min-width: 960px){
    .items .name-product {
        font-size: 27px;
        padding: 13px 42px;
    }
    .items form .form-group lable {
        height: 54px;
        font-size: 22px;
        border-radius: 4px;
    }
    .items form .form-group input {
        padding: 14px;
    }
    .items form .form-group select {
        width: 880px;
        height: 54px;
    }
    .items .book {
        font-size: 20px;
        width: 74px;
        padding: 8px 48px;
        right: 14px;
    }
    .items form .add-item-btn {
        padding: 7px 14px ;
        font-size: 22px;
    }

}
@media (max-width:767px) {
    .items form .form-group select {
        width: 328px
    }
    .items .name-product  {
        font-size: 17px;
    }
}
/* End Items Form */

.image_item {
    width: 100px;
    height: 100px;
}
/* End AddItem Form */
/* Start Members */
.member {
    background-color: var(--colo);
    position: relative;
    min-height: 100vh;
}
.member .img img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-top: 50px;
    margin-bottom: 40px;
}
.member h1 {
    font-weight: bold;
    color: black;
    padding-top: 30px;
}
.member form {
    width: 1200px;
    border-radius: 6px;
    border: 3px solid black;
    padding: 40px 50px;
    background-color: var(--color-brand);
    margin: 30px auto;
    position: relative;
    transform: translateX(-50%);
    right: -50%;
}
@media (max-width:767px) {
    .member form {
        width: 800px;
    }
}
.member form .filed {
    direction: rtl;
    margin-bottom: 7px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.member form .permission, 
.member form .color {
    display: flex;
}
.member form .filed > label{
    text-align: center;
    width:25%;
    background-color: var(--color-alt-brand);
    color: white;
    padding: 10px 20px;
    border: 2px solid black;
    border-radius: 5px;
}
.color .content-permission {
    width: 70%;
    padding: 12px;
    border-radius: 5px;
    border: 2px solid black;
    background-color: white;
    min-height: 54px !important;
    font-size: 16px;
}
.member form .filed input[type="text"],
.member form .filed input[type="password"],
.member form .filed input[type="file"],
.member form .filed select,
.content-permission {
    width: 70%;
    padding: 12px;
    border-radius: 5px;
    border: 2px solid black;
    background-color: white;
    min-height: 54px;
    font-size: 16px;
}
.form-check {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 29px;
}
.content-permission {
    margin-right: 4px;
    display: flex;
    flex-wrap: wrap;
}
.member .submit-or {
    width: 160px;
    height: 50px;
    font-size: 16px !important;
}
.member form .filed.select label {
    min-width: 254px;
    height: 54px;
}
.member form .filed.select select {
    min-width: 707px;
    height: 54px;
    margin-bottom: 7px;
}
.member form .filed:last-child {
    text-align: center;
}
.member form input[type="submit"] {
    padding: 10px 20px;
    margin-top: 7px;
    font-size: 25px;
    font-weight: bold;
    border-radius: 9px;
    border: 2px solid black;
    background-color: var(--color-alt-brand);
    color: white;
}
.form-check-label {
    font-size: 13px;
}
.members {
    background-color: #f3f3f3;
    width: 100%;
    min-height: 100vh;
    padding-top: 1px;
}
.members .img img {
    width: 150px;
    height: 150px;
    margin-top: 50px;
    border-radius: 50%;
}
.members h1 {
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 40px;
}
.members .img img {
    width: 150px;
    height: 150px;
    margin-top: 50px;
}
.members .container a.add-member {
    width: 160px;
    padding: 10px 20px;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background-color: var(--color-alt-brand);
    border: 1px solid black;
} 

.members .member-merge {
    display: flex;
    justify-content: right;
    gap: 10px;
    margin-bottom: 10px;
}

/* End Members */
/* Start AddItem */
.additem-m {
    background-color: #f3f3f3;
    padding-top: 1px;
    min-height: 100vh;
}
.additem-m .title {
    padding: 10px 50px;
    background-color: #497f81;
    width: fit-content;
    margin: 20px auto;
    border-radius: 8px;
    border: 1px solid black;
}
.additem-m .title a {
    color: white;
    font-weight: bold;
    font-size: 30px;
}
.additem-m h3 {
    background-color: var(--color-brand);
    width: fit-content;
    margin: 30px auto;
    padding: 10px 65px;
    font-weight: bold;
    border-radius: 5px;
    color: white;
    border: 1px solid black;
}
.additem-m .item-table {
    direction: rtl;
}
.additem-m .item-table tr:first-child {
    background-color: var(--color-brand);
    color:white;
    font-weight: bold;
}
.additem-m .item-table tr:not(:first-child) {
    color: black;
}
.additem-m .item-table tr td:first-child {
    width: 40px;
}
.additem-m .trush-ic {
    line-height: 87px;
}
.additem-m .trush i,
.trash i{
    color: red;
    line-height: 82px;
    font-size: 22px;
}
.additem-m .add-item {
    width: 134px;
    background-color: var(--color-brand);
    color: white;
    border: 1px solid black;
    display: block;
    margin-left: auto;
    margin-bottom: 10px;
    margin-top: 10px;
}
/* End AddItem */
/* Features */
.alert-danger {
    text-align: end;
    padding-right: 40px;
}
.alert-success {
    margin: 30px auto;
    text-align: center;
}
.search {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search input {
    border: 2px solid black;
    font-size: 24px;
    border-radius: 5px;
    padding-right: 20px;
    width: 219px;
    transition: var(--main-transition);
}
.search input:focus {
    outline: none;
    border: 4px solid white;
}
.search input::placeholder {
    font-size: 20px;
}
.search i {
    height: 0;
    position: absolute;
    left: 34px;
    top: 28px;
    font-size: 24px;
    color: var(--main-color);
}
.search::after {
    font-family: "Font Awesome 6 Free";
    content: "\f002";
    font-weight: 900;
    position: absolute;
    left: 97px;
    transform: translateY(-50%);
    top: 50%;
    color: var(--color-brand);
    font-size: 26px;
}
@media (max-width:767px) {
    .search::after {
        left: 10px;
        font-size: 18px;
    }
}
td a i.fa-whatsapp {
    color: green;
    font-size: 41px;
    font-weight: bold;
    line-height: 2;
}
td a.edit i,
td a.printer i,
td a.trush i,
td a.tr {
    font-size: 24px;
    line-height: 80px;
}
td a.edit i {
    color: #497f81;
}
td a.trush i {
    color: #ff0909;
}
td {
    font-size: 16px;
}
/* a.btn {
    font-size: 13px;
    width: 63px;
    display: flex;
    justify-content: center;
} */
td.date {
    width: 111px;
}
.print-all {
    font-size: 30px;
    color: white;
    border: 2px solid black;
    padding: 3px 27px;
    border-radius: 5px;
    background-color: #39bad7;
}
.prints {
    padding: 0;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}
.form-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0c3c38;
    border-radius: 10px;
    margin-top: 14px;
    height: 76px;
}
.filter,.filter-is,.filter-co {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: normal;
    align-items: center;
    background-color: #95b4b5;
    border: 2px solid black;
    padding-right: 30px;
}
.filter {
    z-index: 2;
}
.edi {
    right: 948px !important
}
.price-box {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}
.price-box > div {
    margin-bottom: 5px;
}
.all-content .price-box span {
    background: var(--color-background);
    padding: 2px 4px;
    margin-top: 37px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: bold;
}
.price-box div > span {
    margin-left:15px;
}
.filter-is,
.filter-co {
    position: absolute;
    top: 263px;
    width: 264px;
    border-radius: 10px;
    z-index: 3;
    right: 955px;
}
.filter-is .first,
.filter-is .second,
.filter-co .first,
.filter-co .second {
    display: flex;
    justify-content: center;
    align-items: center;
}
.filter button:first-child,
.filter-is button:first-child,
.filter-co  button:first-child {
    margin-left: 0px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 2px solid black;
    background-color: white;
    padding: 5px 20px;
    margin-right: 16px;
}
.filter button:first-child i,
.filter-is button:first-child i,
.filter-co button:first-child i {
    font-size: 27px;
    color: black;
}
.filter label,
.filter-is label,
.filter-co label {
    color: white;
    font-weight: bold;
    margin-right: 19px;
}
#from,#to {
    border-radius: 5px;
    border: 2px solid black;
    text-align: center;
    width: 108px;
    font-size: 16px;
}
.filter-b {
    right: 15px;
    position: absolute;
    border-radius: 33%;
    background: white;
    color: #0a4444;
    top: 19px;
    cursor: pointer;
    border: 1px solid black;
    transition: var(--main-transition);
}
.filter-b:hover {
    background-color: #497f81;
    color: white;
    border: 1px solid white;
}
.all-content {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border: 2px solid black;
    background: #032330;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom: 1px solid white;
}
.all-content > div {
    width: 32%;
    background-color: var(--color-alt-brand);
    border-radius: 2px;
    height: 79px;
    border: 1px solid white;
}
.print {
    display: flex;
    justify-content: center;
    align-items: center;
}
.select {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 5px;
    padding:3px
}
.select select {
    font-size: 17px;
    font-weight: bold;
    border: 2px solid #000;
    width: 132px;
    border-radius: 4px;
    text-align: center;
}
.select .suc,
.select .dan {
    padding: 7px 20px;
    border: 1px solid #f8f9fa;
    border-radius: 2px;
}
.brand-nav {
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    position:relative;
}
.nav-brand {
    font-size: 48px;
    background-color: var(--color-brand);
    padding: 2px 87px;
    color: white;
    font-weight: bold;
    border: 4px solid var(--color-alt-brand);
}
.navbar-toggler-icon {
    color: white;
    background-color: white;
    width: 2px;
    height: 82%;
}
.navbar-toggler {
    border: 1px solid white;
    width: 31px;
    padding: 2px;
    margin: 3px;
    display: none;
}
.active-na {
    display: block !important;
}
.hidde-na {
    display: none !important;
}
.nav-hi {
    display: flex;
    font-size: 13px;
    direction: rtl;
    width: 89%;
    justify-content: right;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .navbar-toggler {
        display: inline-block
    }
    nav .nav-bar .nav-hi {
        display: none;
    }
    nav .nav-bar .brand span {
        font-size: 24px;
    }
    .nav-dash {
        /* width: 12% !important; */
    }
    nav.link {
        width: 88% !important;
    }
    .nav-dash .img img {
        width: 42px;
        height: 42px;
    }
    .nav-dash .user {
        font-size: 10px;
    }
    .nav-dash .links .links-main {
        padding: 5px
    }
    .nav-dash .links .links-main li.li {
        width: 42px;
        margin-left: 10px;  
        position: relative;  
    }
    .nav-dash .links li.li > a {
        position: absolute;
        right: 26px;
        bottom: 33px;
    }   
    .nav-dash .links li:nth-child(2) i  {
        right: -30px;
    }
    .links-nav {
        display: flex !important;
        justify-content: center !important;
        position: absolute;
        background-color: var(--color-brand);
        top: 36px;
        right: 50%;
        transform: translateX(50%);
        width: 88% !important;
        flex-wrap: wrap;
        margin-right: 41px !important;
        padding-bottom: 10px;
    }
    .nav-dash .links .links-mega  {
        left: -144px;
        width: 129px;
    }
    .nav-dash .links .links-mega  li{
        display: flex;
        justify-content: center;
        align-items: center;
        padding:0
    }
    .nav-dash .links .links-mega li a {
        font-size: 13px;
    }
    .nav-dash .links .links-mega li i {
        right: 80px;
    }
    .nav-dash .links .links-mega li i span {
        top: -4px;
        right: -15px;
        border-radius: 50%;
        width: 14px;
        height: 14px;
        font-size: 10px;
    }
    .nav-brand {
        font-size: 23px;
        padding: 2px 24px;
        border: 1px solid #468f99;
    }
    .print .prints {
        background-color: var(--color-alt-brand);
        display: flex;
        justify-content: center;
    }
    .print-all {
        font-size: 11px;
        border: 1px solid black;
        padding: 4px 24px;
        border-radius: 2px;
    }
    .table td {
        padding: 2px;
    }
    td {
        font-size: 13px;
    }
    .table-responsive tr:first-child {
        font-size: 13px;
        padding: 0;
        font-weight: bold;
    }
    .table-responsive tr:not(:first-child) {
        font-size: 13px;
    }
    .table-responsive tr td {
        font-size: 9px;
    }
    td a.edit i, td a.printer i, td a.trush i, td a.tr, .trash i, td a i.fa-whatsapp{
        font-size: 15px;
    }
    td a i.fa-whatsapp {
        line-height: 5;
    }
    .search input {
        width: 90%;
        height: 87%;
        border: 1px solid black;
        font-size: 17px;
    }
    .search i {
        font-size: 18px;
        left: 10px;
        top: 7px;
    }
    .search input::placeholder {
        font-size: 15px;
    }
    .all-content {
        height: 56px;
    }
    .all-content > div {
        height: 100%;
        border: 1px solid black;
        border-radius: 4px;
    }
    .select .suc, .select .dan {
        padding: 0px 3px;
        border: 1px solid black;
        font-size: 10px;
        font-weight: normal;
    }
    .select select {
        font-size: 7px;
        border: 1px solid black;
        width: 29%;
        border-radius: 2px;
    }
    .filter-is {
        display: none;
    }

}
/* Features */
/* Start Storage */
.storage {
    background-color: #ededed;
    padding-top: 1px;
    min-height: 100vh;
    padding-bottom: 16px;
}
.storage-b {
    display: flex;
    justify-content: end;
    position: absolute;
    top: 90px;
    right: 130px;
    border: 2px solid var(--color-brand);
    padding: 3px 10px;
    border-radius: 3px;
}
@media (max-width:767px) {
    .storage-b {
        right: 100px;
        font-size: 13px;
        top: 73px;
    }
}
.storage-b div {
    background-color: var(--color-alt-brand);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
}
.storage-b .number-s {
    margin-right: 14px;
}
.storage .title-st {
    font-size: 30px;
    width: 24%;
    margin: 30px auto 60px;
    background: var(--color-brand);
    padding: 2px 4px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    border: 2px solid black;
}
@media (max-width:767px) {
    .storage .title-st {
        font-size: 20px;
        margin-bottom: 44px;
    } 
}
.storage .st-main {
    direction: rtl;
    width: 83%;
    margin:auto ;
    position: relative;
}
@media (max-width:767px) {
    .storage .st-main {
        margin-left: 30px !important;
    }
}
.storage .st-main tr {
    border: 1px solid black;
}
.storage .st-main tr:first-child {
    background-color: var(--color-brand);
    font-weight: bold;
    color: white;
}
.storage .btn-st {
    background-color: var(--color-alt-brand);
    color: white;
    border: 1px solid black;
}
.addit-st {
    background-color: var(--color-background);
    padding-bottom: 37px;
}
.addit-st h1{
    padding: 13px;
    font-size: 43px;
    color: black;
}
.storage .btn-st-e i{
    line-height: 46px;
    color: #0c3c38;
    font-size: 24px;
}
.storage .btn-st-d i{
    color: #ed3022;
    font-size: 24px;
    line-height: 46px;
}
.addit-st form {
    border: 2px solid black;
    padding: 40px;
    margin: 50px;
    display: flex;
    flex-direction: column;
    background-color: var(--color-brand);
    justify-content: center;
    align-items: center;
    direction: rtl;
    border-radius: 4px;
}
.addit-st form .filed{
    display: flex;
    margin-bottom: 24px;
    width: 80%;
    justify-content: space-between;
}
.addit-st form .filed label{ 
    width: 28%;
    color: white;
    border-radius: 4px;
    text-align: center;
    height: 40px;
    border: 2px solid black;
    background-color: var(--color-alt-brand);
}
.addit-st form .filed input,
.addit-st form .filed select{ 
    width: 70%;
    height: 40px;
    border-radius: 4px;
    border: 2px solid black;
}
.addit-st form .submit-st input[type="submit"]{
    border: 1px solid black;
    padding: 3px 25px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--main-transition);
}
.addit-st form .submit-st input[type="submit"]:hover {
    background-color: var(--color-brand);
    color: white;
    border: 1px solid white;
}
.storage .btn-primary:hover {
    border-color: var(--color-hover);
}
/* End Storage */
/* Start Statistic */
.statistic {
    background-color: #f3f3f3;
    padding-top: 1px;
    min-height: 100vh;
    position: relative;
    width: 97%;
}
.statistic .ad .calc {
    background: var(--color-brand);
    border: 1px solid var(--asm-color-background);
    border-radius: 4px;
    margin-right: 10px;
    color: white;
}
.statistic .content {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    background-color: var(--color-brand);
    align-items: center;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border: 1px solid black;
    padding: 0 40px;
    border-bottom: 1px solid white;
}
.statistic .filte {
    border: 1px solid white;
    padding: 3px 10px;
    margin: 9px;
    border-radius: 4px;
}
.statistic .filte form {
    direction: rtl;
}
.statistic .filte label {
    color: white;
    font-weight: bold;
}
.statistic .filte .filter-st {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 10px;
}
.statistic .filte .filter-st .first {
    margin-left: 10px;
}
.statistic .filte .filter-st .second {
    margin-left: 10px;

}
.statistic .filte .submit-st {
    height: 30px;
    width: 50px;
    border: 2px solid black;
    border-radius: 4px;
    background-color: white;
}
.statistic .filte .submit-st i {
    color: var(--color-brand);
}
.statistic .stat {
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.statistic .number {
    border: 2px solid white;
    padding: 3px 10px;
    border-radius: 4px;
    margin-right: 12px;
}
.statistic .table-stat {
    direction: rtl;
}
.statistic .table-responsive .ad {
    position: absolute;
    right: 99px;
    top: 66px;
    display: flex;
    direction: rtl;
    border: 1px solid black;
    background-color: var(--color-brand);
    padding: 4px 30px;
    justify-content: space-between;
    border-radius: 4px;
    transition: var(--main-transition);
}
@media (max-width:767px) {
    .statistic .table-responsive .ad {
        width:250px
    }
    .statistic .table-responsive .ad input{
        width:150px
    }
}
.statistic .table-responsive .ad:hover {
    background-color: var(--color-hover);
}a
.statistic .table-responsive .ad input{
    width: 144px;
    border: 1px solid black;
    border-radius: 4px;
    margin-left: 10px;
}
.statistic .table-stat tr:first-child {
    background-color: var(--color-brand);
    color: white;
    font-weight: bold;
}
.statistic .table-stat tr:not(:first-child) {
    background-color: #f3f3f3;
    transition: var(--main-transition);
}
.statistic .table-stat tr:not(:first-child):hover,
tr:not(:first-child):hover{
    background-color: #d7d7d7;
}
.statistic #firstNameChange {
    cursor: text;
}
.statistic #firstName {
    text-align: center;
}
/* End Statistic */
/* Start Store */
.cart-st {
    background-color: #f3f3f3;
}
.st-ma {
    margin: 0;
}
.store {
    background-color: #f3f3f3;
    position: relative;
}
.card-sha img {
        height: 250px !important;
}

.shadow {
    box-shadow: 0 0 7px 0px;
}
.text-free {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
img {
    max-width: 100%;
    height: auto;
    background: lightblue;
    background: radial-gradient(white 30%, lightblue 70% );
}
.fa-star,
.fa-star-half {
    color: yellowgreen;
    padding: 3px 0;
}
.tr-move {
    transition: var(--main-transition)
}
.tr-move:hover {
    transform: translateY(-10px)
}
#cart_count {
    text-align: center;
    padding: 0 0.9rem 0.1rem 0.9rem;
    border-radius: .9rem;;
}
.shopping-cart {
    padding-top: 20px;
}
.cart-items + .cart-items {
    padding: 10px;
}
.price-details h6 {
    padding: 3% 2%;
}
.nice-box {
    position: fixed;
    right: 30px;
    top: 95px;
    direction: rtl;
    text-align: center;
    height: 256px !important;
}
.btn-book {
    position: fixed;
    right: 111px;
    bottom: 165px;
    color: white;
    background: #dc3545;
    border: 1px solid black;
    border-radius: 4px;
    padding: 4px 20px;
    cursor: pointer;
}
.overlay{
    position: relative;
    width: 100%;
    min-height: 88.4vh;
    background-color: #4f5356;
    text-align: center;
    z-index: 999;
}
.overlay .content {
    height: 190px;
    position: absolute;
    width: 61%;
    border: 2px solid black;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    padding: 6%;
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 0 7px 0px;
}

.cart-cont {
    min-height: 88.4vh;
}
.st-ma-f {
    margin-bottom: 10px
}
.cart-items + .cart-items {
    padding: 0 !important
}
.content-item {
    position: fixed;
    z-index: 10;
    background-color: #e9e9e9;
    width: 44%;
    min-height: 30%;
    top: 50%;
    border-radius: 5px;
    border: 2px solid black;
    right: 50%;
    transform: translate(50%, -50%);
    box-shadow: 0 0 7px 0px;
    padding: 12px;
    display: none;
}
@media (max-width: 720px) {
    .content-item {
        width: 60%;
    }
}
.content-item-o {
    direction: rtl;
    padding: 14px;
    border-radius: 5px;
    background-color: #b9b8b8;
}
.item-name {
    font-size: 17px;
}
.close-btn {
    position: absolute;
    left: -14px;
    top: -12px;
    color: red;
    font-weight: bold;
    font-size: 26px;
    width: 30px;
    height: 30px;
    background: #e9e9e9;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    border-radius: 50%;
    border: 2px solid black;
}
.edit-s {
    padding: 5px !important;
    display: block;
    width: fit-content;
    text-align: center;
    margin: 5px auto;
}
.book-s,.total-price {
    color: black;
    font-weight: bold;
    background-color: white;
    padding: 2px 8px;
    margin: 3px auto;
    border-radius: 4px;
    border: 1px solid black;
    display: block;
    transition: var(--main-transition);
}
.book-s:hover,
.appear-list:hover,
.total-price:hover {
    background-color: black;
    color: white;
    border: 2px solid white;
}
.appear-list {
    position: fixed;
    z-index: 10;
    padding: 4px 5px;
    border: 1px solid black;
    border-radius: 4px;
    top: 400px;
    right: 13px;
    font-weight: bold;
    transition: var(--main-transition);
}
.price-s {
    color: red;
    font-weight: bold;
    float: left;
    font-size: 16px;
}
.price-s-s {
    color: black;
    font-weight: bold;
    padding-right: 11px;
    font-size: 16px;
    float: left;
}
.total-price {
    width: fit-content;
    padding: 3px 10px;
}
.overlay-item {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #00000042;
}
.overlay-item .content {
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    border: 2px solid black;
    right: 0;
    transform: translate(-20%, 25%);
    text-align: center;
    color: white;
    background-color: black;

}
.overlay-item .content .video {
    width: 100%;
    height: 70%;
}
.content-item-info {
    width: 100%;
    height: 30%;
}
.overlay-item .content .video video {
    width: 100%;
    height: 100%;
}
.item-name {
    font-weight: bold;
    padding-top: 10px;
    font-size: 16px;
}
.item-price {
    direction: rtl;
}
/* End Store */
/* Start Form For Store */
.forms {
    position: fixed;
    width: 61%;
    border: 1px solid black;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 6px;
    padding: 20px;
    background-color: #619791;
}
.img-st-it {
    width:100%;
    height:200px;
}
.card-title {
    height:50px;
    padding-top: 14px;
}
.img-st-it img {
    width:100%;
    height:100%;
}
@media (max-width: 960px){
    .forms {
        width: 80%;
    }
}
.st-fo {
    display: flex;
    direction: rtl;
}
.forms .form-group lable {
    color: white;
    display: flex;
    border: 2px solid black;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
}
@media (max-width: 740px) {
    .forms .form-group lable {
        font-size: 14px;
    }
}
.forms .form-group input {
    border-radius: 5px;
    border: 2px solid black;
}
.info-cu {
    text-align: center;
    color: white;
    margin-bottom: 17px;
}
.btn-buy-s {
    color: white;
    background-color: #0c3c38;
    border: 1px solid white;
    font-weight: bold;
    transition: var(--main-transition);
}
.btn-buy-s:hover {
    color: black;
    border: 1px solid black;
    background-color: white;;
}
.p-cart {
    top: 54%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 4px;
    color: black;
    border: 1px solid black;
    width: 195px;
    font-weight: bold;
}
.select-s {
    border: 2px solid black;
    width: 100%;
    border-radius: 4px;
}
@media (max-width: 575px) {
    .card-sha img {
        height: 364px !important;
    }
    .p-cart {
        top: 63%;
    }
}
/* End Form For Store */
/* Start System */
.system {
    background: #d1d1d1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.system h1 {
    width: 100%;
    justify-content: center;
    display: flex;
    padding: 21px;
    font-weight: bold;
}
.system > div {
    width: 32%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 8px;
    min-height: 38vh;
    border-radius: 4px;
    border: 2px solid black;
    transition: var(--main-transition);
}
.system > div:hover,
.dashboard .content-dash > div.statistics > div:hover {
    opacity: .7;
}
.system > div:nth-child(2) {
    background: #4d648d ;
}
.system > div:nth-child(3) {
    background: #851e3e;
}
.system > div:nth-child(4) {
    background: #ffa700;
}
.system > div:nth-child(5) {
    background: #29a8ab;   
}
.system > div:nth-child(6) {
    background: #8d5524 ;   
}
.system > div:last-child {
    background: #fe4a49;
}

.system > div a {
    color: black
}
.system > div i {
    font-size: 55px;
    color: white;
}
.system > div .title {
    font-size: 30px;
    font-weight: bold;
}
/* End System */
.overlay-b{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #1d6b87;
    text-align: center;
    z-index: 999;
}
.overlay-b .content {
    min-height: 190px;
    position: absolute;
    width: 90%;
    border: 2px solid black;
    top: 20%;
    right: 50%;
    transform: translate(50%, -50%);
    padding: 1%;
    background-color: #a2b7be;
    border-radius: 6px;
    padding: 15px 15px 47px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wats {
    color: #0c3c38;
    font-size: 19px;
    font-weight: bold;
    position: fixed;
    right: 14px;
    top: 142px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
    text-align: center;
}
.price-item {
        text-align: center;
    font-size: 27px;
    font-weight: bold;
    background-color: #668b8b;
    width: fit-content;
    margin: 10px auto;
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 4px;
    color: white; 
}
.text-free .price {
    direction: rtl;
}

.wats:hover {
    color: black;
}
.wats i {
    padding-right: 13px;
    font-size: 36px;
}
.button-alert {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    padding: 6px 20px;
    background: #2f3154;
    font-size: 20px;
    font-weight: bold;
    color: white;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
    bottom: 5px;
}
.button-alert:hover {
    background-color: #0a4444;
    color: black
}
.video-add video {
    width: 101px;
    height: 88px;
    background: #f3f3f3;
}
.add-item-btn {
    padding: 2px 45px;
    border: 1px solid #000000;
    border-radius: 4px;
    background-color: var(--color-alt-brand);
    color: white;
    display: block;
    width: 45%;
    height: 30px;
    margin-left: auto;
    margin-bottom: 4px;
}
.storage-merge {
    margin-right: 130px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}
.storage-merge a,
.storage-merge button {
    display: inline-block;
    width: 100px;
    height: 38px;
}
.storage-merge button {
    text-align: center;
    margin-left: 5px;
}
@media (max-width:767px) {
    .storage-merge {
        margin-right: 101px;
        margin-bottom: 4px;
    }
    .storage-merge a,
    .storage-merge button {
        width: 83px;
        height: 30px;
        font-size: 13px;
    }
    td {
        font-size: 10px !important;
    }

}
.mem-btn {
    background-color: var(--color-alt-brand);
    width: 100px;
    height: 40px;
    padding: 0 23px;
    border-radius: 4px;
    border: 1px solid black;
    color: white;
    font-weight: bold;
}
/* Start Make Slider */
@media (min-width:768px) {
    .nav-dash:hover {
        width: 20% !important;
    }
    .nav-dash:hover p {
        display: block;
    }
    .nav-dash:hover .links .links-main li.li {
        width: 270px;
    }
    .nav-dash:hover > p {
        opacity: 1;
    }
}
@media (max-width:767px) {
    .nav-dash {
        width: 12% !important;
    }
    .nav-dash p {
        display: none;
    }
    .links .links-main li.li {
        width: 54px;
    }
    .nav-dash > p {
        opacity: 0;
    }
}
/* End Make Slider  */
/* Start Edit Finally */
@media (max-width:767px) {
    .shrink-search {
        width: 170px;
    }
    .shrink-button {
        
    }
    .items {
        width: 100%;
    }
}
.items .form-add .control-label {
    width: 24%;
}
.items .form-add .info{
    width: 74%
}
.items .form-add .info select {
    width: 100%;
}
.items .form-add .form-group {
    gap: 2%;
}
.items footer {
    width: 95%
}
/* End Edit Finally */