:root {
    --purple: #50318b;
    --purpleHover: #3b2466;
    --pink: #db308b;
    --blue: #2aa9db;
    --red: red;
    --black: #1f1f1f;
}
html,
body {
    width: 100%;
    height: 100% !important;
}
a {
    text-decoration: none;
}
.default-logo {
    width: 90%;
    max-width: 350px;
    height: auto;
}
.gradient .card-header {
    background-color: transparent;
}
.gradient-purple {
    background: rgb(80,49,139);
    background: -moz-linear-gradient(45deg, rgba(80,49,139,1) 0%, rgba(115,80,182,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(80,49,139,1) 0%, rgba(115,80,182,1) 100%);
    background: linear-gradient(45deg, rgba(80,49,139,1) 0%, rgba(115,80,182,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#50318b",endColorstr="#7350b6",GradientType=1);
    color: white;
}
.gradient-pink {
    background: rgb(219,48,139);
    background: -moz-linear-gradient(45deg, rgba(219,48,139,1) 0%, rgba(221,101,165,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(219,48,139,1) 0%, rgba(221,101,165,1) 100%);
    background: linear-gradient(45deg, rgba(219,48,139,1) 0%, rgba(221,101,165,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#db308b",endColorstr="#dd65a5",GradientType=1);
    color: white;
}
.gradient-blue {
    background: rgb(42,169,219);
    background: -moz-linear-gradient(45deg, rgba(42,169,219,1) 0%, rgba(95,187,223,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(42,169,219,1) 0%, rgba(95,187,223,1) 100%);
    background: linear-gradient(45deg, rgba(42,169,219,1) 0%, rgba(95,187,223,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2aa9db",endColorstr="#5fbbdf",GradientType=1);
    color: white;
}
.welcome {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.welcome img {
    width: 90%;
    max-width: 400px;
}
.logo-header {
    width: 80px;
    height: auto;
    margin-left: 5px;
}
.general-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.main {
    width: 100%;
    height: 100%;
    transition: 0.2s all ease;
}
.main.visible {
    width: calc(100% - 200px);
}
.button-menu {
    width: 40px;
    font-size: 25px;
    transition: 0.2s all;
    color: var(--pink);
}
.button-menu:hover {
    color: var(--purple);
}
.menu {
    width: 0;
    height: 100%;
    background-color: var(--purple);
    overflow: hidden;
    transition: 0.2s all ease;
    color: white;
}
.menu.visible {
    width: 200px;
}
.menu-container {
    width: 200px;
    height: 100%;
    overflow: auto;
}
.logo-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px 0;
}
.logo-menu img {
    max-width: 125px;
}
.image-profile {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 5px;
    border-radius: 50%;
    border: 2px solid white;
}
.menu-profile {
    margin-bottom: 10px;
    text-align: center;
}
.menu-profile .name {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}
.menu-profile .user-type {
    font-size: 12px;
}
.menu nav a {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    color: white;
    transition: 0.2s all;
    font-size: 14px;
    line-height: 16px;
    display: flex;
}
.menu nav a i {
    width: 30px;
}
.menu nav a span {
    width: calc(100% - 30px);
}
.menu nav a:hover {
    background-color: var(--purpleHover);
}
.menu nav a.active {
    background-color: var(--pink);
}
.box-header {
    height: 50px;
}
.content-header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.content-header h2 {
    margin: 0;
}
.content-header h2 i {
    margin-right: 5px;
    color: var(--purple);
}
main {
    width: 100%;
    height: calc(100% - 111px);
    overflow: auto;
}
.table-profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.btn-bax {
    background-color: var(--purple);
    text-decoration: none;
    color: white;
}
.btn-bax:hover {
    background-color: var(--purpleHover);
    color: white;
}
.page-item.active .page-link {
    background-color: var(--purple) !important;
    color: white !important;
    border: 1px solid var(--purple) !important;
}
.swal2-popup .swal2-styled.swal2-confirm {
    background-color: var(--purple) !important;
}
.h-full {
    height: 100%;
}
.pay-order-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.title {
    color: var(--purple);
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 0;
}
/*====================================================
======================= INPUT ========================
====================================================*/
.row-input {
    margin-bottom: 15px;
}
.row-input input[type="file"] {
    width: 100%;
}
.row-input a {
    color: var(--yellow);
}
.row-input a:hover {
    color: var(--yellow);
}
select.form-control {
    background-color: #fff;
    border-color: #ced4da;
    border-width: 1px;
    border-radius: 5px;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
}
select.form-control:focus {
    outline: none;
}
.btn-block {
    width: 100%;
}
.box-status {
    display: flex;
    align-items: center;
}
.status {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 5px;
}
.box-transaction {
    display: flex;
    align-items: center;
}
.box-transaction img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}
/*====================================================
=================== PREVIEW IMAGE ====================
====================================================*/
.preview-image {
    max-width: 300px;
    position: relative;
}
.preview-image img {
    width: 100%;
}
.preview-image .btn-close,
.box-prev-image .btn-close {
    width: 30px;
    height: 30px;
    background-color: red;
    color: white;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.2s all;
    opacity: 0.8;
}
.preview-image .btn-close:hover,
.box-prev-image .btn-close:hover {
    opacity: 1;
}
/*====================================================
==================== CONTENT MENU ====================
====================================================*/
.content-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-nav,
.content-nav a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-nav {
    padding-left: 20px;
}
.content-nav a {
    height: 30px;
    margin-right: 15px;
    color: var(--black);
}
.content-nav a:hover {
    color: var(--black);
}
.content-nav a.active {
    border-bottom: 2px solid var(--pink);
}
/*====================================================
====================== DASHBOARD =====================
====================================================*/
.dashboard h2 {
    font-size: 20px;
    color: var(--purple);
}
.card-header {
    color: white;
}
.purple {
    background-color: var(--purple);
}
.pink {
    background-color: var(--pink);
}
.blue {
    background-color: var(--blue);
}
.graph-filter button {
    margin-bottom: 15px;
}
.graph {
    width: 100%;
    height: auto;
    border-radius: 10px;
    background-color: white;
    padding: 20px;
}
.graph-title {
    color: var(--purple);
}
.table-image {
    width: 150px;
}
.square {
    width: 50px;
    height: 50px;
}
/*====================================================
======================== LOGIN =======================
====================================================*/
.formLayout_container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.formLayout_column {
    width: 50%;
    height: 100%;
}
.formLayout_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.formLayout_form {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.formLayout_form form {
    width: 90%;
    max-width: 400px;
    margin-bottom: 20px;
}
.login-logo {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
    .formLayout_container {
        flex-direction: column;
        overflow: auto;
        display: block;
    }
    .formLayout_column {
        width: 100%;
        height: auto;
    }
    .formLayout_left {
        height: 300px;
        margin-bottom: 20px;
    }
}
/*====================================================
=================== COMPANY DETAIL ===================
====================================================*/
.order-detail-a {
    width: 100%;
    height: auto;
    display: block;
    padding: 10px;
    border: 1px solid #868e96;
    border-radius: 10px;
    background-color: white;
    transition: .2s all;
}
.order-detail-a:hover {
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);
}
.order-detail-a h5 {
    text-align: center;
    color: #868e96;
    font-weight: bold;
    margin-bottom: 5px;
}
.order-detail-user {
    display: flex;
    align-items: center;
}
.order-detail-user img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 50%;
}
.order-detail-user h6 {
    color: var(--purple);
    margin: 0;
    text-transform: uppercase;
}
.list-stars {
    display: flex;
}
.list-stars i {
    margin-right: 3px;
    color: #FFC600;
}
.product-detail h3 {
    color: var(--purpleHover);
    font-size: 20px;
    font-weight: bold;
}
.product-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.product-images img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 5px 10px;
}
.admin-list {
    margin-bottom: 0;
    list-style: disc;
}