body {
    /*font-family: 'Noto Kufi Arabic', sans-serif;*/
    background-color: #47888C;
    overflow-x: hidden;
}

input[type="email"]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    opacity: 1; /* Firefox */
    text-align: right;
}
input[type="email"]:-ms-input-placeholder { /* Internet Explorer 10-11 */
    text-align: right;
}
input[type="email"]::-ms-input-placeholder { /* Microsoft Edge */
    text-align: right;
}

.sidebar {
    position: fixed;
    background: white;
    height: 100%;
    right: 0;
    top: 0;
    width: 300px;
    border-top-left-radius: 16px;
    transition: right 0.3s;
    z-index: 10;

    box-shadow: 0px 0px 20px 0px #00000050;
}

.sidebar .title {
    color: white;
    background: #E2A609;
    display: block;
    text-align: center;
    font-size: 20px;
    padding: 5px 0;
    border-top-left-radius: 15px;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
}

.sidebar ul li:hover a {
    background: #a3a3a3;
}

.sidebar ul li a {
    text-decoration: none;
    color: black;
    background: #D9D9D999;
    display: block;
    margin-bottom: 15px;
    padding: 7px 15px;
    text-align: center;
    transition: background 0.2s;
    font-weight: bold;
}

.main {
    padding-top: 5px;
    /*padding-right: 300px;*/
    transition: padding 0.3s;
}

#sidebar_checkbox {
    display: none;
}

#sidebar_checkbox:checked~.sidebar {
    right: -300px;
}

#sidebar_checkbox:checked~.main {
    padding-right: 0px;
}
#sidebar_checkbox:checked~.menu_overlay {
    display:none
}

@media only screen and (max-width: 768px) {
    .sidebar {
        width: 250px;
    }
    /*.main {*/
    /*    padding-right: 250px;*/
    /*}*/
    #sidebar_checkbox:checked~.sidebar {
        right: -250px;
    }
}

label.sidebar_btn {
    cursor: pointer;
    background: #e2a609;
    padding: 5px;
    border-radius: 50%;
    margin-right: 5px;
    margin-bottom: 22px;
    z-index: 10;
    position: fixed;

    /**/
    position: absolute;
    left: -45px;
    top: 5px;
}

.sidebar_btn img {
    width: 30px;
}

.main .content .title {
    background: #e2a609;
    color: white;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.main .content {
    padding: 0 30px;
    padding-top: 60px;
}

.menu_overlay {
    background: #0000006b;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: block;
}

.main .customers {}

.main .customers .customer {
    background-color: #F3EEEE;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 10px 10px 0px;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}

.main .customers .customer p {
    margin-bottom: 6px;
    font-size: 17px;
}

.main .customers .customer .customer_btn {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    text-align: center;
    width: 70px;
    background-color: #E2A609;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .customers .customer .customer_btn p {
    font-weight: normal;
    font-size: 15px;
}

.main .customers .customer .customer_btn img {
    width: 35px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 450px) {
    .main .customers .customer {
        padding-left: 10px
    }
    .main .customers .customer .customer_btn {
    position: initial;
    width: 100%;
    height: initial;
}
    .main .customers .customer .customer_btn img {
    display: inline-block;
    margin: 7px 0;
    width: 30px;
}
    .main .customers .customer .customer_btn p {
    display: inline-block;
}
    .main .customers .customer .customer_btn p br {
    display: none;
}
}

.main .customers .customer a {
    text-decoration: none;
}
.main .customers .customer > a:first-of-type {
    position: absolute;
    top: 2px;
    left: 14px;
    z-index: 1;
    font-size: 15px;
    color: #3030e1;
}

#notifi {
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
    color: white;
    width: 260px;
    border-radius: 5px;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 30%);
    margin-bottom: 10px;
}
#notifi.success {
    background: #419d48;
}
#notifi.error {
    background: #c35b63;
}
