
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

body {
  background-color: #f8f8f8;
  font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
} */


/* 👉 Login Page  */

.login-body{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box{
    width: 350px;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px;
    border-radius: 5px;
}

.login-panel .form-item{
    width: 100%;
}
.login-panel .form-item input{
    width: 100%;
    font-size: 15px;
    margin-top: 10px;
    height: 30px;
    border-radius: 3px;
    background-color: #eee;
    padding: 0 10px;
}

/* 👉 Admin Body  */

.admin-header{
    width: 100%;
    height: 70px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    z-index: 9;
    transition: .3s ease-in-out;
}
.side-panel{
    width: 240px;
    height: 100vh;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: fixed;
}
.side-panel-inner{
    background-color: var(--white_color);
}
.side-panel a.sidenav-item{
    font-size: 15px;
    color: var(--black_color);
}
.side-panel a.sidenav-item:hover{
    background-color: var(--lite_grey_color);
}
.side-panel.mini-side{
    width: 60px;
    overflow: hidden;
}
.admin-max-section.full-head{
    width: 100%;
    margin-left: 60px;
}
.side-panel.mini-side .sidenav-item-name{
    display: none;
}
.sidenav-item.nav-active {
    background-color: var(--lite_grey_color);
}
.side-panel a.sidenav-item.nav-active{
    color: var(--primary_color);
}
.admin-max-section{
    width: 100%;
    margin-left: 240px;
    height: 100%;
}

/* .side-panel-inner{
    padding: 0 20px;
} */
.admin-logo{
    height: 70px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-bottom: solid 1px #eee;
}
.sidenav-item{
    padding: 12px 20px;
    border-bottom: solid 1px #eee;
}
.toggle-icon ion-icon {
    font-size: 8px;
    width: 18px;
    height: 18px;
    background-color: rgba(20, 64, 160, 0.308);
    padding: 5px;
    border-radius: 5px;
    color: var(--primary_color);
}

.admin_profile-item{
    position: absolute;
    top: 70px;
    right: 0;
    width: 150px;
    padding: 16px;
    background-color: var(--white_color);
    z-index: 9;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.admin-header-profile ion-icon {
    font-size: 7px;
    width: 15px;
    height: 15px;
    background-color: rgb(20 64 160 / 57%);
    padding: 5px;
    border-radius: 50%;
    color: var(--primary_color);
}
.user-toggle-item{
    margin: 8px 0;
}
.admin-content-section{
    padding: 15px;
}

.admin-body-header {
    padding: 10px 15px;
    border-radius: 3px;
    margin-bottom: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
a.admin-edit-button, a.admin-delete-button{
    width: 80px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white_color);
    font-size: 12px;
    font-weight: 400;
    height: 28px;
    border-radius: 3px;
    letter-spacing: 1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .3s ease-in-out;
    cursor: pointer;
}
a.admin-edit-button:hover, a.admin-delete-button:hover{
    color: var(--white_color);
}
a.admin-edit-button {
    background-color: var(--primary_color);
}
a.admin-delete-button{
    background-color: var(--red_color);
}

.update-sorting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 130px;
    background: rgb(208 208 208 / 56%);
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.update-sorting input{
    width: 60px;
    text-align: center;
}
.status-text {
    font-size: 13px;
    font-weight: 500;
    width: 60px;
    height: 28px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.active-blue{
    color: var(--primary_color);
    border: solid 1px var(--primary_color);
}  
.inactive-red{
    color: var(--red_color);
    border: solid 1px var(--red_color);
} 
.admin-body-table{
    font-size: 14px;
    color: var(--grey_color);
}
.admin-body-table th{
    font-size: 14px;
    font-weight: 500;
}
.admin-body-table thead{
background-color: var(--lite_white_color);
}
.admin-body-table td{
    font-size: 14px;
}
/* .box{
  padding: 20px 10px;
  max-width: 1000px;
  margin: 0 auto;
} */
.center-table-element {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.admin-table-image{
    
}
.admin-table-image img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}

/* 👉 Modal  */

.modal-section{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(51 51 51 / 75%);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .modal-form{
    width: 50%;
    padding: 10px;
    height: auto;
    background-color: var(--white_color);
    border-radius: 3px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
} */
.modal-head{
    height: 50px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 3px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.modal-input-box label{
    font-size: 14px;
    display: block;
}
.modal-input-box input[type=text], .modal-input-box input[type=number], .modal-input-box input[type=email], .modal-input-box input[type=file]{
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
}
.modal-input-box input[type=text], .modal-input-box input[type=number], .modal-input-box input[type=email]{
    background-color: var(--lite_white_color);
    height: 35px;
    padding: 10px;
    border-radius: 3px;
}
.modal-input-box select {
    width: 120px;
    font-size: 14px;
    margin-bottom: 20px;
    background-color: var(--lite_white_color);
    height: 35px;
    padding: 0 10px;
    border-radius: 3px;
}
.cross-button ion-icon{
    font-size: 24px;
    color: var(--red_color);
    cursor: pointer;
}

.table-section-20{
    width: 20px;
}
.table-section-30{
    width: 30px;
}
.table-section-50{
    width: 50px;
}

.admin-footer {
    width: 100%;
    height: 40px;
    padding: 0 20px;
    /* border-top: solid 1px #ccc; */
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.admin-footer p{
    font-size: 12px;
    color: var(--grey_color);
}
.admin-section{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px;
}
.add-item-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--black_color);
}
.add-item-button.primary_button {
    padding: 8px 18px;
    font-size: 12px;
}
.admin-content-field {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    justify-content: space-between;
}
.content-field-30{
width: 29%;
}
.content-field-50{
width: 49%;
}
.content-field-70{
width: 69%;
}
.content-field-100{
width: 100%;
}
.ck-content p{
    font-size: 14px !important;
    color: var(--grey_color);
}
.admin-input, .admin-textarea {
    font-size: 14px;
    color: var(--grey_color);
}
.admin-input {
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
    padding: 5px 15px;
    background-color: var(--lite_white_color);
}
.admin-field-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary_color);
}