/* Global */ 
.mt-0{
    margin-top: 0rem;
}
.mt-5{
    margin-top: 1.25rem;
}
.mb-0{
    margin-bottom: 0rem;
}
.mb-2{
    margin-bottom: 0.5rem;
}
.mb-4{
    margin-bottom: 1rem;
}
.mb-7{
    margin-bottom: 1.75rem;
}
.mb-8{
    margin-bottom: 2rem;
}
.d-flex{
    display: flex;
}
.d-none{
    display: none;
}
.d-flex{
    display: flex;
}
.flex-row{
    flex-direction: row;
}
.justify-content-between{
    justify-content: space-between;
}
.text-center{
    text-align: center;
}
.text-start{
    text-align: left;
}
.text-end{
    text-align: right;
}
.text-success{
    color: green;
}
.text-danger{
    color: red;
}
.text-black{
    color: black;
}
.text-decoration-none{
    text-decoration: none;
}
.badge-purple, .badge-yellow, .badge-orange, .badge-green, .badge-blue{
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    display: inline-flex;
}
.badge-purple{
    background-color: #6f42c1;
    color: white;
}
.badge-yellow{
    color: #000;
    background-color: #ffc107;
}
.badge-orange{
    color: #000;
    background-color: #fd7e14;
}
.badge-green{
    color: #fff;
    background-color: #198754;
}
.badge-blue{
    color: #fff;
    background-color: #0d6efd;
}
a{
    text-decoration: none;
    background-color: transparent;
    color: #3949ab;
    font-size: 0.9rem;
}
.material-icons{
    font-size: 2rem;
}
.form-group{
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
}
.form-group label{
    position: absolute;
    top: 1rem;
    left: 3.2rem;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
    font-size: 1rem;
}
.form-group input[type="text"]:focus + label, 
.form-group input[type="password"]:focus + label,
.form-group label.active{
    color: #ff4081;
    top: -0.3rem;
    font-size: 0.7rem;
}
/* Global */
#main.wrap{
    direction: ltr;
    padding: 0;
    margin: 0;
}
#wpcontent{
    padding-left: 0 !important;
}
/* Login */
#main.login-main{
    min-height: 576px; 
    height: 100vh; 
    background-image: url('./../media/flat-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
#login-box{
    background-color: rgba(255,255,255,.8);
    border-radius: 0.4rem;
    box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 12%), 0 8px 10px -7px rgb(0 0 0 / 20%);
    padding: 1rem;
    min-width: 23rem;
    width: 300px;
}
input[type="text"], input[type="password"], input[type="email"]{
    border: none;
    border-bottom: 1px solid #9e9e9e;
    background: none;
    border-radius: 0;
    width: calc(100% - 3rem);
    background-color: transparent;
    outline: 0;
    height: 3rem;
    font-size: 1rem;
    margin: 0 0 8px 0;
    padding: 0;
    box-shadow: none;
    box-sizing: content-box;
    font-size: 1rem;
}
input[type="text"]:focus, input[type="text"]:active, 
input[type="password"]:focus, input[type="password"]:active,
input[type="email"]:focus, input[type="email"]:active{
    border-bottom: 1px solid #ff4081;
    box-shadow: 0 1px 0 0 #ff4081;
}
input[type="submit"]{
    background: -webkit-linear-gradient(45deg,#8e24aa,#ff6e40);
    background: linear-gradient(45deg,#8e24aa,#ff6e40);
    display: block;
    width: 100%;
    border-radius: 150px;
    -webkit-appearance: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    text-align: center;
    letter-spacing: .5px;
    font-size: 1rem;
    outline: 0;
    border: none;
    height: 2.25rem;
    line-height: 2.25rem;
    padding: 0 2rem;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}
/* Login */
/* Invoice */
#main.invoice-main{
    margin: 1rem;
}
#main.invoice-main .details{
    padding: 1rem 2rem;
    background-color: white;
    border-radius: 0.7rem;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}
#main.invoice-main .material-icons{
    width: inherit;
    display: inline-block;
    color: #fff;
    font-size: 1.6rem;
    line-height: 40px;
}
#main.invoice-main table{
    width: 100%;
    vertical-align: middle;
    border-spacing:0;
    border-collapse: collapse; 
    border-bottom:1px solid gray;
    font-size: 1rem;
}
#main.invoice-main table thead tr th:first-child, #main.invoice-main table tbody tr td:first-child{
    border-left:1px solid gray;
    padding-left: 0.5rem;
    min-width: 8rem;
}
#main.invoice-main table thead tr th:last-child, #main.invoice-main table tbody tr td:last-child{
    border-right:1px solid gray;
    padding-right: 0.5rem;
}
#main.invoice-main table thead tr th{
    border-top:1px solid gray;
    background-color: #e9ecef;
}
#main.invoice-main table thead tr th, #main.invoice-main table tbody tr td{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom:1px solid gray;
}
#main.invoice-main table tbody tr td{
    height: 3rem;
}
#main.invoice-main table tbody tr td .action{
    display: flex;
    gap: 0.5rem;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
    height: 0;
}
#main.invoice-main table tbody tr td:hover .action{
    opacity: 1;
    visibility: visible;
    height: auto;
}
#main.invoice-main .btn-floating{
    display: inline-block;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    border-radius: 50%;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    cursor: pointer;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
    background-color: #ff4081;
    text-align: center;
    letter-spacing: .5px;
    font-size: 1rem;
    outline: 0;
    border: none;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}
#main.invoice-main .next-page{
    background-color: #198754;
}
#main.invoice-main .prev-page{
    background-color: #dc3545;
}
/* Invoice */ 
/* Alert */
#alert-box{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 40px;
    width: 80%;
    background-color: #4caf50;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 3px rgb(0 0 0 / 50%);
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2;
}
#alert-box[data-type="danger"]{
    background-color: #f44336;
}
#alert-box[data-show="true"]{
    opacity: 1;
    visibility: visible;
}
#alert-box .message{
    font-size: 15px;
}
#alert-box .close{
    background-color: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    color: white;
    opacity: 0.8;
}
#alert-box .close:hover{
    opacity: 1;
    cursor: pointer;
}
/* Alert */
/* Active */
.active-box{
    background-color: #fff3e0; 
    padding: 1rem 2rem; 
    margin: 2rem 0; 
    border-radius: 0.7rem; 
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}
.active-box #change-email{
    -webkit-text-size-adjust: 100%;
    font-family: Muli,sans-serif !important;
    font-weight: 400;
    box-sizing: inherit;
    -webkit-tap-highlight-color: transparent;
    border: none;
    height: 36px;
    line-height: 36px;
    padding: 0 2rem;
    font-size: 1rem;
    outline: 0;
    text-decoration: none;
    color: #fff;
    text-align: center;
    letter-spacing: .5px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    overflow: hidden;
    user-select: none;
    vertical-align: middle;
    z-index: 1;
    transition: .3s ease-out;
    border-radius: 150px !important;
    margin-right: 1% !important;
    box-shadow: none !important;
    background: linear-gradient(45deg,#0288d1,#26c6da) !important;
    text-transform: capitalize;
}
.active-box #resend-email{
    -webkit-text-size-adjust: 100%;
    font-family: Muli,sans-serif !important;
    font-weight: 400;
    box-sizing: inherit;
    -webkit-tap-highlight-color: transparent;
    border: none;
    height: 36px;
    line-height: 36px;
    padding: 0 2rem;
    font-size: 1rem;
    outline: 0;
    text-decoration: none;
    color: #fff;
    text-align: center;
    letter-spacing: .5px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    overflow: hidden;
    user-select: none;
    vertical-align: middle;
    z-index: 1;
    transition: .3s ease-out;
    border-radius: 150px !important;
    margin-right: 1% !important;
    box-shadow: none !important;
    background: -webkit-linear-gradient(45deg,#ff6f00,#ffca28) !important;
    background: linear-gradient(45deg,#ff6f00,#ffca28) !important;
    text-transform: capitalize;
}
/* Active */
