.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    line-height: 3.5rem;
    display: flex;
    justify-content: space-around;
    z-index: 2;
    align-items: stretch;
    background-color: #0d1a26;
    color: snow!important;
}

.logo {
    color: snow!important;
    font-weight: bold;
    font-size: 35px;
}

.logo:hover {
    color: #cccccc!important;
}

.sidebar-header {
    flex: 0 0 14rem;
    background-color: #0d1a26;
}

.body-header {
    width: calc(100% - 14rem);
}

.search {
    background-color: #dcdcdc;
    padding-inline: .3rem .6rem;
    box-shadow: 0 1px 20px 0 rgba(70, 90, 100, .7);

}

.search-input {
    background-color: rgba(0, 0, 0, 0);
    outline: none;
    border: none;
    height: 1.6rem;
    margin: 0 .6rem;
}

.header-notification {
    position: absolute;
    left: 0;
    margin-top: .2rem;
    width: 20rem;
    background-color: white;
    color: #1a1e21;
    box-shadow: 0 1px 20px 0 rgba(70, 90, 100, .7);
    display: none;
}

.eye-card {
    position: absolute;
    right: 0;
    margin-top: .2rem;
    width: 10rem;
    height: 2rem;
    background-color: white;
    color: #1a1e21;
    box-shadow: 0 1px 20px 0 rgba(70, 90, 100, .7);
    display: none;
}

.eye-card p {
    margin-top: -.8rem;
}

.notification-img {
    width: 4rem;
    border-radius: 30px;
    height: 4rem;
}

.notification-user {
    font-size: 1rem;
    font-weight: bold;
    margin-top: .3rem;
}

.notification-text {
    font-size: .9rem;
    line-height: .6rem;
    color: dimgray;
}

.notification-time {
    margin-bottom: -.7rem;
}

.header-comment {
    position: absolute;
    left: 0;
    margin-top: .2rem;
    width: 20rem;
    height: 50vh;
    background-color: white;
    color: #1a1e21;
    box-shadow: 0 1px 20px 0 rgba(70, 90, 100, .7);
    display: none;
}

.header-comment-wrapper {
    height: calc(100% - 6rem);
    overflow: auto;
}

.header-comment-wrapper::-webkit-scrollbar {
    display: none;
}

.comment-user {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 1.3rem;
}

.comment-dot {
    font-size: 0.5rem;
    margin-right: 6rem;
    margin-top: .4rem;
}

.header-avatar {
    width: 2.5rem;
    height: 2.5rem;
    margin: .2rem;
}

.header-username {
    font-weight: bold;
}

.header-profile-toggle {
    border: none;
    background-color: transparent;
    color: #cccccc!important;
}

.header-profile-menu {
    color: #cccccc!important;
}

.header-profile-link {
    height: 2rem;
}

.header-profile-link > i {
    width: 2rem;
    text-align: center;
}

.header-profile-link:hover {
    background: #4d4d4d !important;
}

.item-active {
    background: linear-gradient(to right, #0072ff, #00c6ff);
}

@media only screen and (max-width: 768px) {
    .header {
        display: block;
    }

    .sidebar-header {
        width: 100%;
    }

    .body-header {
        display: none;
        width: 100%;
    }
}


body::-webkit-scrollbar {
    border-radius: 20px;
    display: none;
}

.body-container {
    margin-top: 3.5rem;
    position: relative;
    display: flex;
    /*height: calc(100vh + 20rem);*/

}

.sidebar {
    border: none;
    position: fixed;
    z-index: 1;
    flex: 0 0 14rem;
    color: snow !important;
    background-color: #0d1a26;
}

.sidebar-container {
    right: 0;
    top: 3.5rem;
    z-index: 1;
    width: 14rem;
    color: snow !important;

}

.sidebar-main-container {
    height: 100%;
    color: snow !important;
}

.sidebar-wrapper {
    padding-inline: 1rem 0;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    color: snow !important;

}

.sidebar-wrapper::-webkit-scrollbar {
    display: none;
}

.sidebar-title {
    font-size: .9rem;
    padding: 0 1rem;
    margin-top: 1rem;
}

.sidebar-link {
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: bold;
    padding: .4rem 1rem;
    display: block;
    outline: none;
    border: none;
    color: snow;
    transition: all .3s;
}

.sidebar-link:hover {
    text-decoration: none;
    color: #cccccc;
}

.sidebar-link > i {
    width: 2rem;
    text-align: center;
}

.sidebar-group-link {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
    padding: .4rem 0;
    color: snow;
}

.sidebar-group-link > .sidebar-dropdown {
    display: none;
    height: 0;
}

.sidebar-group-link-active > .sidebar-dropdown {
    height: auto !important;
    display: block !important;
}

.sidebar-dropdown-toggle {
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    padding: .4rem 1rem;
    transition: all .3s;
}

.sidebar-dropdown-toggle:hover {
    color: #cccccc;
}

.sidebar-dropdown-toggle > .icon {
    width: 2rem;
    text-align: center;
}

.sidebar-dropdown-toggle > .angle {
    float: left;
    padding: 0.4rem 0;
}

.sidebar-dropdown > a, .button {
    padding: .2rem 1rem;
    display: block;
    text-decoration: none;
    background-color: inherit;
    outline: none;
    border: none;
    transition: all .3s;
    color: snow;
}

.sidebar-dropdown > a::before, .button::before {
    content: '»';
    margin: .8rem;
}

.sidebar-dropdown > a:hover, .button:hover {
    color: #cccccc;
    transform: translateX(-.5rem);
}

.main-body {
    width: calc(100% - 14rem);
    position: absolute;
    left: 0;
    padding: 1rem;
    height: calc(100vh - 3.5rem);
    background-color: #cbcdcd;
    overflow: auto;
}

.main-body::-webkit-scrollbar {
    display: none;
}

.card-main {
    border: none;
    box-shadow: 0 1px 7px 0 rgba(70, 90, 100, .8);
}

.info-box-body > h5 {
    font-size: 1.2rem;
    line-height: 1rem;
}

.info-box-body > p {
    font-size: 1rem;
    line-height: 1rem;
}

.info-box-icon {
    font-size: 2rem;
}

.info-box-footer {
    font-size: .7rem;
    background: none;
}

.main-body-container {
    margin: 0 1rem;
}

.main-body-container-header > h3 {
    font-weight: bold;
}

.main-body-container-header > p {
    margin: .8rem 1.2rem;
}

.main-body-container-body > p {
    margin: .5rem 1.2rem;
}

@media only screen and (max-width: 768px) {
    .sidebar {
        display: none;
        width: 220px;
        position: absolute;
        right: 0;
        z-index: 1000;
    }

    .sidebar-container {
        position: relative;
        width: 220px;
        top: 0;
    }

    .main-body {
        width: 100%;
    }

}

.see-button:hover {
    text-decoration: none;
    background-color: rgba(255, 255, 255, .4);
    color: #323539;
}

.mobile-search-input {
    border-radius: 50px;
    outline: none;
    border: none;
    margin: 0 .6rem;
}

.mobile-search-modal {
    background-color: transparent;
    border-radius: 50px;
    border: none;
}

.mobile-search-modal-button {
    margin-right: -50px;
    border: none;
    background-color: transparent;
    margin-top: 5px;
}

ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    border: 1px solid rgba(99, 100, 100, .2);
    box-shadow: 0 1px 5px 0 rgba(70, 90, 100, .1);
    background-color: rgba(229, 230, 230, .6);
    border-radius: 15px;
}

ul.breadcrumb li {
    display: inline;
    font-size: 18px;
}

ul.breadcrumb li + li:before {
    padding: 8px;
    color: black;
    content: ">";
}

ul.breadcrumb li a {
    color: #0a53be;
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: none;
}

.bc-active > a {
    color: #1a1e21 !important;
    border-bottom: rgba(99, 100, 100, .5) 1px solid;

}

.btn {
    box-shadow: 0 1px 5px 0 rgba(70, 90, 100, .6);
}

.btn:hover {
    box-shadow: none;
}

.form-control {
    box-shadow: 0 1.3px 5px 0 rgba(70, 90, 100, .6);
}

.form-control:focus {
    box-shadow: 0 5px 8px -3px rgb(166 196 198 / 35%);
    border: none;
}

.btn {
    border: none;
    box-shadow: 0 5px 8px -3px rgb(166 196 198 / 35%);
}

.custom-card {
    box-shadow: 0 1.3px 5px 0 rgba(70, 90, 100, 1);

}

.comment-show-title {
    box-shadow: 0 1.3px 5px 0 rgba(70, 90, 100, 1);
    padding: .6rem;
    border-radius: 50px;
}

.comment-show-title h4 {
    margin-top: 10px;
}

.comment-show-body {
    box-shadow: 0 1.3px 5px 0 rgba(70, 90, 100, 1);
    border-radius: 20px;
    padding: 1rem;
    background-color: #f2f3f3;
    margin-top: 2rem;
}

.comment-response {
    box-shadow: 0 1.3px 5px 0 rgba(70, 90, 100, 1);
    border-radius: 20px;
    padding: 1rem;
    background-color: #f2f3f3;
    margin-top: 2rem;
}

.generator-btn {
    position: inherit;
    margin-right: -2rem;
    width: 4rem;
}

.table-responsive::-webkit-scrollbar {
    display: none;
}

.settings {
    align-content: center;
    align-items: center;
    align-self: center;
}

.product-list-image {
    width: 30px;
    height: 30px;
    border-radius: 20px;
}

hr {
    background-color: snow;
}

.badge {
    box-shadow: 0 1.3px 5px 0 rgba(70, 90, 100, 1);
}

.comment-show-body p {
    padding: 0 2rem;
}

.edit-image {
    border-radius: 100%;
    box-shadow: 0 1.3px 5px 0 rgba(0, 0, 0, 1) !important;
    border: none;
    width: 200px;
    height: 200px;
}

.company-logo-admin-panel-img {
    border-radius: 100%;
    box-shadow: 0 1.3px 5px 0 rgba(0, 0, 0, .6) !important;
    width: 100px;
    height: 100px;
    border: none;
}

.invalid {
    border: 1px solid #ff1a1a;
}

.invalid-btn {
    border-left: 1px solid #ff1a1a;
    border-top: 1px solid #ff1a1a;
    border-bottom: 1px solid #ff1a1a;
}

.swal-style {
    border-radius: 20px !important;
    box-shadow: 0 1.3px 5px 0 rgba(70, 90, 100, 1) !important;
}

.swal-style::-webkit-scrollbar {
    display: none !important;
}

.swal2-actions button {
    border-radius: 20px !important;
    box-shadow: 0 1.3px 5px 0 rgba(0, 0, 0, .7) !important;
}

.swal2-actions button:hover {
    box-shadow: 0 1.3px 5px 0 rgba(70, 90, 100, .1) !important;
}

.error-message {
    margin-right: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
}

select::-webkit-scrollbar {
    display: none;
}

.document-body {
    border: 1px rgba(0, 0, 0, .6) solid;
    box-shadow: 0 1.3px 5px 0 rgba(0, 0, 0, .5) !important;
    background-color: rgba(255, 255, 255, .3);
    border-radius: 50px;
    padding: 1rem;

}

.document-img {
    box-shadow: 0 1.3px 5px 0 rgba(0, 0, 0, .7) !important;
    width: 3rem;
    height: 3rem;
    border-radius: 50px;
    border: none;
}

.current-status-body {
    border-radius: 50px;
    font-size: 25px;
    font-weight: bold;
    align-items: center;
    width: 80%;
    padding: .2rem 0 .3rem 0;
}


.current-status-awaiting {
    background-color: rgba(255, 193, 7, .3);
    color: rgb(102, 77, 0);
}

.current-status-approved {
    background-color: rgba(25, 135, 84, .3);
    color: rgba(25, 135, 84, 1);
}

.current-status-ejected {
    background-color: rgba(220, 53, 69, .3);
    color: rgba(220, 53, 69, 1);
}

.current-status-ejected:hover {
    box-shadow: 0 1.3px 5px 0 rgba(0, 0, 0, .7) !important;
}

.reject-reason-body {
    background-color: rgba(236, 147, 156, .9);
    padding: .5rem;
    color: rgba(130, 23, 34, 1);
    margin-right: -50rem;
    min-width: 20rem;
}

.waiting-reason-body {
    padding: .5rem;
    background-color: rgba(255, 193, 7, .8);
    color: rgb(102, 77, 0);
    margin-right: -50rem;
    min-width: 20rem;
}

.member-body {
    border: 1px rgba(0, 0, 0, .6) solid;
    box-shadow: 0 1.3px 5px 0 rgba(0, 0, 0, .5) !important;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 1rem;

}

.member-img {
    box-shadow: 0 1.3px 5px 0 rgba(0, 0, 0, .7) !important;
    width: 3rem;
    height: 3rem;
    border-radius: 50px;
    border: none;
}

.text-waiting {
    color: rgb(102, 77, 0);
}

.text-waiting:hover {
    color: rgb(102, 77, 0);
}
