*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
:root {
    --primary: #ff6600;
    --primary-dark: #cc2c00;
    /*--secondary: #33d6ff;*/
    --secondary: orange;
    --primary-light: #B7FFDB;
    --secondary-light: #ebfaff;
    --dark: #000e14;
    --primary-tone: #897b76;
    --secondary-tone: #768489;
    --dark-text: #000e14;
    /*--normal-text: #897b76;*/
    --normal-text: #595959;
    --normal-text-darker: #595959;
    --light-ash: #eee;
    --light-text: #ffffff;
}
.emph-text {
    font-weight: bold;
}
.primary-bg {
    background-color: var(--primary) !important;
}
.primary-text {
    color: var(--primary) !important;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Gilroy", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /*background: #eee;*/
    letter-spacing: .3px;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}
p {
/*    color: var(--normal-text);*/
    color: #333;
    font-size: 18px;
    line-height: 26px;
}
button {
    outline: none;
    border: none;
}
.container {
    width: 90%;
    margin: auto;
}
.relative {
    position: relative;
}
.text-center {
    text-align: center;
}
.img-fluid {
    display: block;
    width: 100%;
}
/* grid and flex */
.grid-2-in-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
}
/* input container */
@media(max-width: 450px) {
    .grid-2-in-1-wrap {
        grid-template-columns: 1fr;
        /*grid-column-gap: 50px;*/
        grid-row-gap: 20px;
    }
}
.input-container { 
    background-color: white;
    height: 55px;
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}
.input-container.show-overflow {
    overflow: visible !important;
}

.input-container input, .input-container select {
    background-color: white;
    padding: 0 1rem;
    width: 100%;
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
    outline: none;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 10px;
/*    border: 1px solid red;*/
}
.input-container-empty { 
    background-color: white;
    height: 55px;
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    /*overflow: hidden;*/
}
.input-container-empty input {
    background-color: white;
    padding: 0 1rem;
    width: 100%;
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
    outline: none;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 10px;
}

.input-container select {
/*    border: 1px solid red;*/
/*    height: 55px;*/
}

.input-container textarea:focus, .input-container input:focus, .input-container select:focus {
/*    border: 1.5px solid var(--primary);*/
    border: none;
/*    border: 1px solid var(--secondary-tone);*/

}
.transaction-form .gender-container {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    padding-left: 15px;
    background: white;
}
.gender-container .gender-label {
    font-size: 13px;
    cursor: pointer;
}
.gender-container .gender-label:first-child {
    margin-right: 1rem;
}
.gender-container .main-label {
    color: var(--normal-text);
    display: block;
    margin-top: 5px;
    font-size: 12px;
    margin-bottom: 7px;
}
.gender-container input {
    display: inline-block;
    margin-right: 10px;
    accent-color: var(--primary);
}

.contact-form-div textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 5px 1rem;

}
.input-container:focus {
    border-color: dodgerblue;
}

.auth-container .input-container {
    border: none;
    border: 1px solid var(--secondary-tone);
    border-radius: 0;
}
.auth-container .input-container-focus {
    border-color: dodgerblue;
}

.auth-container textarea:focus, .auth-container input:focus {
    border: none;
    border-bottom: 1px solid var(--secondary-tone);
}


.input-container > label {
    color: var(--normal-text);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 2;
    padding-left: 1rem;
    left: 0;
    right: 0;
    font-size: 14px;
}

.input-container-empty > label {
    color: var(--normal-text);
    position: absolute;
    top: 15px;
    transform: translate(0, -50%);
    z-index: 2;
    padding-left: 1rem;
    left: 0;
    right: 0;
    font-size: 12px;
}

/*input:focus ~ label, input:active ~ label{
    font-size: 10px;
    color: red;
    bottom: 40px;
}*/
.label-up {
    font-size: 12px !important;
    top: 15px !important;
    transition: 1s ease;
}
.input-container-focus {
    border-color: dodgerblue;
}
.input-icon {
    color: #aaa;
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translate(0, -50%);
    right: .75rem;
    font-size: 18px;
    cursor: pointer;
}
.invalid {
    border-color: red !important;
}
.valid {
    border-color: #ccc !important;
}

/* // input container */
.login {
    background-image: url('../images/login-bg.png');
    background-repeat: no-repeat;
    background-position: top left;
    /*background-size: cover;*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    /*padding-top: 2rem;*/
}

.login-left {
    position: relative;
    /*border: 1px solid black;*/
    height: 100vh;
    padding: 60px;
}
.login-logo {
    display: block;
    /*margin-top: 2rem;*/
    margin-bottom: 1.5rem;
    width: 170px;
}

.login-left-content {
    padding: 30px;
    width: 480px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*background-color: rgba(255, 255, 255, 0.5);*/
    /*backdrop-filter: blur(80px);*/

}
.login-left h2 {
    font-size: 54px;
    margin-bottom: 2rem;
}
.login-left p {
    font-size: 14px;
    color: var(--normal-text);
}
.login-right {
    position: relative;
    background: linear-gradient(to right, transparent, #eee, #eee);
}
.login-sec {
    width: 480px;
    padding: 25px;
    /*border-radius: 15px;*/
    /*box-shadow: 3px 3px 9px 0px rgba(31, 45, 61, 0.1);*/
    /*background-color: red;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.login-sec h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 1.5rem;
}
@media(max-width: 970px) {
    .login-sec, .login-left-content {
        width: 400px;
    }
    .login-right {
        background: transparent;
    }
}
@media(max-width: 810px) {
    .login-logo {
        margin: auto;
        margin-bottom: 1.5rem;

        width: 170px;
    }

     .login {
        grid-template-columns: 1fr;
        /*background-color: red;*/

    }
    .login-left {
        height: auto;
        padding: 0;
        text-align: center;
    }
    .login-right {
        /*background: linear-gradient(to right, #fff, #fff);*/
        /*background: transparent;*/
    }
    .login-sec, .login-left-content {
        position: static;
        transform: translate(0%, 0%);
        width: 70%;
        /*max-width: 90%;*/
        margin: auto;
        top: unset;
        left: unset;
    }   
}
@media(max-width: 570px) {
    .login-sec, .login-left-content {
        position: static;
        transform: translate(0%, 0%);
        width: 100%;
        /*max-width: 90%;*/
        margin: auto;
        top: unset;
        left: unset;
    }
    .login-sec h3 {
        /*text-align: center;*/
    }
    
}

@media(max-width: 430px) {
    .login {
        grid-template-columns: 1fr;
        /*background-color: red;*/
    }
    .login-left {
        height: auto;
        padding: 0;
    }
    .login-right {
        background: linear-gradient(to right, #fff, #fff);
        background: transparent;
    }
}


.login-sec .terms-check {
    font-size: 12px;
    color: var(--normal-text);
}
.login-sec .terms-check input {
    accent-color: var(--primary);
}
.login-sec .login-option {
    margin-top: 1rem;
    font-size: 12px;
}
.login-sec .login-option a {
    color: var(--normal-text);
}
.login-option div:nth-child(2) a {
    display: block;
    text-align: right;
}
.login-sec .ref {
    color: #888;
    font-size: 12px;
    text-align: center;
    margin-top: 1rem;
}
.btn-full {
    display: block;
    width: 100%;
    margin-top: 1rem;
    outline: none;
    padding: 12px 20px;
    border-radius: 5px;
    /*background: var(--primary);*/
    background: black;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
}

.btn-full:hover {
    opacity: 0.9;
}


/* dashboard form */
.transaction-form {
    max-width: 450px;
    margin: auto;
    padding-bottom: 0 auto 3rem;
}
.update-form {
    padding: 2rem 0;
}
/* alert */

.alert {
    /*display: none;*/
    position: fixed;
    top: 0;
    right: -350px;
/*    min-width: 350px;*/
    width: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
    min-height: 50px;
    /*line-height: 50px;*/
    background: white;
    color: var(--dark-text);
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    z-index: 1001;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.05);
    /*transition: width 2s ease;*/
    transition: all 0.5s ease;

}
.alert .close-alert {
/*    padding: 8px;*/
    font-size: 20px;
/*    border-radius: 15px;*/
    cursor: pointer;
}
.alert-flex {
    display: flex;
    height: inherit;
}
.alert-flex div:first-child {
    width: calc(100% - 50px);
    padding: 10px;
}
.alert-flex div:last-child {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
}
.alert-flex div:last-child span {
    color: black;
    cursor: pointer;
}

.alert-failed {
    background-color: #ffcccc;
}

.alert-success {
    background-color: #99ffbb;
}
.alert-info {
    background: #b3e0ff;
}
/* // alert */

/* page title */
.page-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: bold;
}
.page-title-and-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 18px;
}
.page-title-and-action .page-title {
    margin-bottom: 0;
}

.page-title-and-action a svg {
    margin-right: 15px;
}
@media(max-width: 810px) {
    .page-title, .page-title-and-action {
        font-size: 14px;
    }
    
    
}
/* // page title */


.cbt-control-btn {
    display: inline-block;
    width: 90px;
    margin-top: 2rem;
    outline: none;
    padding: 12px 20px;
    border-radius: 5px;
    background: var(--primary);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    margin-right: 1rem;
    text-align: center;
}

.cbt-control-btn:hover {
    opacity: 0.9;
}

.btn-small {
    display: inline-block;
    /*width: 100%;*/
    /*margin-top: 20px;*/
    /*margin-bottom: 1rem;*/
    outline: none;
    padding: 7px 20px;
    border-radius: 5px;
    background: black;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    /*margin-right: 1rem;*/
    text-align: center;
}

.btn-small:hover {
    opacity: 0.9;
}


/* Table */
table {
    width: 100%;
    white-space: nowrap;
    border-collapse: collapse;
}
.table {
    border-radius: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #212529;
    /*border: 2px solid var(--border-lighter);*/
    background: var(--bg-lighter);
    background: #fff;
}

.table th,
.table td {
    text-align: left;
    padding: 0.85rem;
    vertical-align: top;
    border: none;
}
.table td {
    border-top: 1px solid var(--light-text);
}
.table thead {
    border-radius: 10px;
    background-color: var(--light-theme);
}
.table thead th, .table thead th label {
    color: #4d4d4d;
    font-weight: 600;
    vertical-align: bottom;
    /*border-bottom: 2px solid var(--border-lighter);*/
}
.table thead th label {
    padding: 0px;
    margin: 0px;
}
/*.table tbody+tbody {
    border-top: 2px solid var(--border-lighter);
}*/


.table th {
    color: var(--dark-text);
    font-size: 13px;
    font-weight: 600 !important;
}

.table td {
    color: var(--normal-text);
    font-size: 12px;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(#eee, 0.05);
}
/*tr:nth-of-type(odd) td {*/
.table td {
    border-top: 1px solid #eee;
}
/*.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}*/
@media (max-width: 430px) {
    .table {
        padding: 5px;
    }

}

.table-filters {
    /*padding: 10px;*/
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.table-filters input[type='search'], .table-filters .select-filter, .select-filter {
    padding: 5px 7px 5px 20px !important;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white !important;
    /*display: inline-block;*/
    width: 130px;
}
/*.table-filters input[type='checkbox'] {
    width: 40px !important;
}
.table-filters .select-all {
    width: 40px !important;
}*/
.table-filters .export {
    padding: 3px 10px;
    border: none;
    background: var(--secondary);
    color: black;
    font-size: 10px;
    cursor: pointer;
    border-radius: 5px;
}
.table-filters .export:hover {
/*  background: var(--secondary);*/
    opacity: 0.8;
/*  color: black;*/
}
.input-filter {
    position: relative;
    width: 200px;
}
.input-filter .left-search-icon {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 5px;
    color: #aaa;
    font-size: 13px;
}
.table-pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.table-pagination button {
    margin: 5px;
}
.table-pagination-button {
    display: inline-block;
    width: 40px;
    height: 40px;
    /*padding: 7px;*/
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #eee;
    cursor: pointer;
}
.table-pagination button.active {
    background-color: var(--primary);
}
.table-row-setter {
    padding: 5px;
    margin-left: 0px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-transform: capitalize;
}

/* // table */

.body-background {
    /*padding: 5px 15px;*/
    background-color: #eee;
}
/* header */
.header {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eee;
    /*border-bottom: 1px solid #444;*/
    margin-bottom: 1rem;
    position: sticky;
    margin-bottom: 40px;
    top: 0;
    z-index: 4;
}
/* nav toggler */
.nav-toggler {
    /*display: none;*/
    background-color: white;
    outline: none;
    border: none;
    color: black;
    /*font-size: 32px;*/
    padding: 10px;
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.nav-toggler .nav-toggler-icon {
    cursor: pointer;
    color: var(--primary);

}

.header-logo {
    /*background: white;*/
    padding-left: 1.5rem;
}
.dashboard-logo {
    width: 130px;
    vertical-align: middle;
    /*height: auto;*/
    /*display: inline-block;*/
}
.header-left {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.header-user-info {
    display: flex;
    align-items: center;
    /*background: teal;*/
}
.header-user-info span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
}
.header-user-info small {
    font-size: 12px;
    display: inline-block;
    padding-left: 1rem;
    color: var(--normal-text);
}
.nav-toggler svg, .header-user-info span svg {
    width: 20px;
    height: 20px;
}
@media(max-width: 450px) {
    .dashboard-logo {
        width: 100px;
    }
    .header-user-info span {
        width: 25px;
        height: 25px;
    }
    .nav-toggler {
        width: 25px;
        height: 25px;
        padding: 0;   
    }
    .nav-toggler svg, .header-user-info span svg {
        width: 14px;
        height: 14px;
    }
    .header .notification-link {
        display: none;   
    }

}
/* // end of header */

.logo {
    width: 100px;
}

.page-content {
    /*position: fixed;
    top: 0;
    right: 0;
    overflow-y: auto;*/
    width: calc(100% - 250px);
    margin-left: 250px;
    /*width: 100%;*/
    min-height: 100%;
    background: #eee;
    padding: 0 20px 120px 20px ;
    /*padding-top: 1rem;*/
    /*padding-bottom: 2rem;*/
    /*padding-top: 50px;*/
    transition: all 0.5s ease;

}
@media(max-width:  430px) {
    .page-content {
        padding-bottom: 80px;
    }
}
/* sidebar */
.sidebar {
    position: relative;
    width: 250px;
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 8;
    background: #eee;
    height: 100%;
    padding: 50px 15px 5px 15px;
    transition: all 0.5s ease;
    background: linear-gradient(90deg, #fff, #eee);
    /*background: white;*/
    overflow-y: auto;
    -ms-overflow-style: none;
    /*scrollbar-width: none;*/
    scrollbar-width: thin;
}
.sidebar::-webkit-scrollbar {
  width: 8px; /* or any other value */
}
.sidebar::-moz-scrollbar {
  width: 8px; /* or any other value */
}

.sidebar ul {
    display: block;
}
.sidebar li {
    /*display: block;*/
    list-style-type: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 5px 15px;
}
.sidebar .active {
    background: #eee;
    border-left: 3px solid var(--primary);
}
.sidebar a {
    width: 100%;
    display: flex;
    align-items: center;
    color: black;
}
.sidebar a:hover {
    color: var(--primary);
}
.sidebar a:hover svg {
    /*stroke: var(--primary);*/
    fill: var(--primary);
}
.sidebar svg {
    margin-right: 15px;
    width: 20px;
    height: 20px;
}

body.active .sidebar {
    left: -250px;
}
body.active .page-content {
    width: 100%;
    margin-left: 0px;
}

.nav-toggler .close {
    display: block;
}
.nav-toggler .open {
    display: none;
}
body.active .nav-toggler .close {
    display: none;
    /*background: brown;*/
}
body.active .nav-toggler .open {
    display: block;
    /*background: brown;*/
}

@media (max-width: 1080px) {
    .nav-toggler .close {
        display: none;
    }
    .nav-toggler .open {
        display: block;
    }
    body.active .nav-toggler .close {
        display: block;
        /*background: brown;*/
    }
    body.active .nav-toggler .open {
        display: none;
        /*background: brown;*/
    }

    .sidebar {
        left: -250px;

    }
    .page-content {
        width: 100%;
        margin-left: 0;
    }
    body.active .sidebar {
        left: 0px;
        top: 80px;
        height: calc(100% - 80px);
    }
    body.active .page-content {
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 430px) {
    .desktop-only {
        display: none;
    }
    
    .sidebar {
        /*top: 80px;*/
        /*border-radius: 0 15px 15px 0;*/
    }
    
    /*.container {
        width: 95%;
    }*/
    .page-content {
        /*padding: 80px 10px;*/
    }
    
}

/* //sidebar */


/* task ui */
.launch-task {
    display: block;
    margin: auto;
}
.launch-task img {
    /*width: 200px;*/
}
.launch-task-button {
    position: fixed;
    left: calc(50% - 100px);
    width: 200px;
    bottom: 70px;
    z-index: 7;
}

.ripple-container {
    position: relative;
    width: 150px;
    margin: auto;
}

.ripple-image {
    display: block;
    margin: auto;
    width: 150px;
    height: auto;
    position: relative; /* Added position relative */
    z-index: 1; /* Added z-index */
    animation: pulse 2s infinite;
}
.ripple-image:hover {
    animation: none;
    cursor: pointer;
}

.ripple-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px; /* Adjust size based on your needs */
    height: 150px; /* Adjust size based on your needs */
    background-image: radial-gradient(circle at center, #fff 50%, transparent 40%);
    /*background-color: rgba(255, 255, 255, 0.3); /* Adjust color and opacity */*/
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple-animation 2s linear infinite;
    z-index: 0;
}

@keyframes ripple-animation {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}


.pulsating-image {
    width: 150px;
    animation: pulse 2s infinite;
    /*box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);*/
}

.pulsating-image:hover {
    animation: none;
    cursor: pointer;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        /*box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);*/
    }
    50% {
        transform: scale(1.1);
        /*box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.5);*/
    }
    100% {
        transform: scale(1);
        /*box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);*/
    }
}
.task-form-top {
    max-width: 200px;
}
.task-form-top select {
    padding: 5px 7px 5px 20px !important;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white !important;
    width: 100%;
}
.task-form-top label {
    font-size: 12px;
    display: block;
    margin-bottom: 7px;
}
.task-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}
@media (max-width: 780px) {
    .task-container {
        grid-template-columns: 1fr;
        grid-column-gap: 10px;
    }
}
.task-filter-container {
    font-size: 14px;
    color: black;
    /*font-weight: bold;*/
    margin-bottom: 1rem;
}
.task {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    /*margin-bottom: 1rem;*/
}
.task-status-success {
    border-left: 5px solid #00e699;
}
.task-status-pending {
    border-left: 5px solid tomato;
}
.task .img-and-name {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 10px;
    margin-bottom: 10px;
    /*border-bottom: 1px solid #ddd;*/
}
.task .img-and-name div:first-child {

}

.img-and-name div:last-child {
    font-size: 12px;
    color: var(--normal-text-darker);
    /*height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;*/
    letter-spacing: .3px;
}
.finance {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-top: 10px;
}
.finance div {
    text-align: center;
}
.finance div:first-child {
    /*border-right: 1px solid black;*/
}
.finance div:last-child {
    /*border-left: 1px solid black;*/
}
.finance .label {
    font-size: 11px;
    color: var(--primary);
    display: block;
    font-weight: bold;
}
.finance .value {
    font-size: 12px;
    color: black;

}
.generated-info {
    padding-top: 5px;
}
.generated-info div:last-child {
    /*display: flex;
    justify-content: flex-end;
    align-items: center;*/
    text-align: right;

}
.generated-info div span {
    display: block;
}

.generated-info .label {
    font-size: 11px;
    /*color: var(--primary);*/
}
.generated-info .value {
    font-size: 12px;
    color: black;
}

.task-executor {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    max-width: 430px;
}
.task-executor .task .img-and-name {
    grid-template-columns: 1fr 3fr;
}
.task-executor .task .img-and-name div:last-child {
    font-size: 12px;
    height: 43px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: .3px;
}
.task-action {
    border-top: 2px solid #eee;
    margin-top: .5rem;
    padding-top: 1rem;
    font-size: 12px;
}
.task-action i {
    font-size: 16px;
    color: gold;
    cursor: pointer;
    /*float: right;*/
}
.task-action a, .task-action button {
    /*text-align: right;*/
    /*background-color: blueviolet;*/
    display: inline-block;
    float: right;
}


/* dashboard widget */
.widget-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    margin-bottom: 1.5rem;
}
@media(max-width: 700px) {
    .widget-container {
        grid-template-columns: 1fr;
        grid-column-gap: 20px;
    }

}
.widget {
    background: white;
    overflow: hidden;
    border-radius: 10px;
    /*max-width: 320px;*/
    margin-bottom: 1rem;
    min-height: 150px;
}
.widget-top-item {
    padding: 15px;
    background-color: #fff6e6;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.widget-top-item span {
    margin-right: 1rem;
    background: transparent !important;
}
.widget-bottom-item {
    padding: 1rem;
    font-size: 12px;
}
.widget span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #eee;
}
.customer-care {
    /*background-color: var(--primary);*/
    padding: 15px;
    /*background: var(--primary) url('../images/customer-care.png') no-repeat top right;*/
    background-color: #e65c00;
    background-image: url('../images/customer-care.png');
    background-repeat: no-repeat;
    background-position: top right;
    position: relative;
}
.customer-care svg path {
    stroke: var(--primary);
    /*fill: transparent;*/
}
.dashboard-links {
    padding: 5px 10px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: ghostwhite;
    position: absolute;
    bottom: 15px;
    left: 15px;
/*    width: 100px;*/
    width: 150px;
}
.dashboard-whatsapp svg path{
    stroke: transparent !important;
    fill: #00e699;
}
.dashboard-telegram svg path{
    stroke: transparent !important;
    fill: dodgerblue;
}
.customer-care p {
    font-size: 12px;
    color: white;
    margin-right: 100px;
    line-height: 1.2;
    margin-top: 10px;
}
.dashboard-links a {
    display: flex;
    width: 50px;
/*    flex-direction: column;*/
    align-content: center;
    justify-content: center;
    position: relative;
}
.dashboard-links a small {
/*    flex-direction: column;*/
/*    display: block;*/
    position: absolute;
    bottom: -15px;
    font-size: 9px;
    color: white;
    background-color: black;
    border-radius: 5px;
    padding: 1px 4px;
}

.widget-slim {
    background: white;
    overflow: hidden;
    border-radius: 10px;
    /*max-width: 320px;*/
    margin-bottom: 1rem;
    min-height: 80px;
    padding: 10px;
    background-color: white;
    border-radius: 40px;
}


.widget-slim .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    /*background: #eee;*/
}
.divided {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.divided .left, .divided .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.divided .left div, .divided .right .div {
    /*display: flex;
    align-items: center;
    justify-content: space-between;*/
    width: calc(100% - 40px);
}

.divided .right {
    text-align: right;
    /*border-left: 4px solid #eee;*/
}
.widget-slim svg path{
    stroke: transparent;
    fill: #00e699;
}
.widget-slim .label {
    color: var(--primary);
    display: block;
    font-size: 12px;
}
.widget-slim .value {
    font-weight: 600;
    font-size: 15px;
    display: block;
    margin-top: 5px;
}

@media(max-width: 450px) {
    .widget-slim, .widget {
        max-width: 100%;
        width: 100%;
    }
    .widget-slim .label {
        color: var(--primary);
        display: block;
        font-size: 10px;
    }
    .widget-slim .value {
        font-weight: 600;
        font-size: 12px;
        display: block;
        margin-top: 5px;
    }
}

.widget-button {
    width: 55px;
    height: 55px;
    margin-right: 10px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.5);
}
.widget-button:hover {
    opacity: .5;
}
.widget-button svg path {
    stroke: white;
    fill: white;
}
.customer-care-link {
    padding: 20px;
    background: white;
    border-radius: 45px;
    display: flex;
    align-items: center;
}
.customer-care-link input {
    padding: 7px;
    margin: 0 10px;
    /*outline: none;*/
    border-radius: 5px;
    border: 1px solid #ccc;
}
/* extras */
.remove-row {
    cursor: pointer;
    color: tomato;
}
.add-item {
    display: inline-block;
    margin: 1rem 0;
}
table select {
    padding: 5px;
    background: white;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 3px;
}
table input {
    padding: 1rem 1rem .5rem 1rem;
    width: 100%;
    background: ghostwhite;

    border: none;
    border-bottom: 1px solid var(--secondary-tone);
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    outline: none;
    font-family: "Poppins", "inter", Arial, Helvetica, sans-serif;
    font-weight: 300;
}
table input[type="file"] {
    background: transparent;
}
.table-image-holder {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 15px;
}
.bottom-quick-link {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #eee;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    height: 60px;
    padding: 0 1rem;
    border-radius: 20px 20px 0 0;
    z-index: 6;
    display: none;
    align-items: center;
    justify-content: space-evenly;
}
@media(max-width: 810px) {
    .bottom-quick-link {
        display: flex;
    }
}
/*.bottom-quick-link a span {

}*/
.bottom-quick-link a {
    /*background: beige;*/
}

/*.bottom-quick-link {*/
    /*position: relative;*/
/*}*/
.bottom-quick-link span i, .header i {
    position: absolute;
    top: 10px;
    left: 25px;
    color: white;
    font-size: 10px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-style: normal;
}
.header i {
    /*position: absolute;*/
    left: unset;
    top: -10px;
    right: 0px;
}
.bottom-quick-link a span svg {
    display: block;
    margin: auto;
    width: 18px;
    height: 18px;
}
.bottom-quick-link a {
    /*margin-left: 1rem;*/
}
.bottom-quick-link a:first-child {
    /*margin-left: 0;*/
}
.bottom-quick-link a span svg path {
    stroke: black;
}
.bottom-quick-link a span small {
    font-size: 8px;
    color: var(--normal-text);
}

/*.bottom-quick-link .launch-task {
    width: 100px;
    height: 100px;
    border-radius: 50%;

}
.bottom-quick-link .launch-task span {
    display: flex;
    justify-content: center;
}*/

/* Modal  */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*padding: 15px;*/
    overflow-y: auto;
    overflow-x: hidden;
    outline: none;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    /* background: rgba(var(--modal-bg), 0.4); */
    /*opacity: 0.4;*/
    /*transition: transform 0.8s ease-out;*/
    transition: all 0.5s ease;

}
.fade {
    transition: opacity 0.15s linear;
}
/*@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    } 
}
.fade:not(.show) {
    opacity: 0; 
}*/
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    /*transform: translate(0, -50px); */
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none; 
    } 
}

.modal-content-full-screen {
  width: 100%;
  min-height: 100%;
  /*background: teal;*/
}
.modal-content {
    
    padding: 0 1rem;
    margin: 0 auto;
    border-radius: 0.3rem;
    background: white;
    overflow-y: auto;

}
.modal-content-full {
    width: 100%;
    height: 100%;
    border-radius: 0.3rem;
}
.modal-content-lg {
    width: 980px;
    border-radius: 0.3rem;
}
.modal-content-medium {
    width: 700px;
    border-radius: 0.3rem;
}

.modal-content-small {
    width: 380px;
}
.modal-body {

}
@media (max-width: 1080px) {
    /*.modal-content {
        margin-right: 20px;
        margin-left: 20px;
    }*/

    .modal-content-lg {
        width: 800px;
    }

}
@media (max-width: 810px) {
    /*.modal-content {
        margin-right: 20px;
        margin-left: 20px;
    }*/

    .modal-content-lg, .modal-content-medium {
        width: 95%;
    }

}

@media (max-width: 440px) {

    .modal-content-lg, .modal-content-medium, .modal-content-small {
        width: 95%;
    }
    
}

.modal-dialog-top {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.modal-dialog-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-dialog-bottom {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 0;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    height: 60px;
}
.modal-header h3 {
    font-weight: normal;
}
.modal .close {
    font-size: 32px;
    line-height: inherit;
    font-weight: bold;
    cursor: pointer;
    /*color: var(--dark-text);*/
    /*border-radius: 25px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .close:hover {
    color: #000;
}
.modal-header .close svg {
    width: 16px;
    height: 16px;
    z-index: 999999;
}

/* // Modal */
.read {
    width: 90%;
    margin: 0 auto;
}
.read h3 {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin-top: 15px;
    margin-bottom: 5px;
}
.read p {
    display: block;
    font-size: 13px;
    color: var(--normal-text);
    line-height: 1.7;
}

/* progress bar */
.right-for-progress {
    display: grid;
    grid-template-columns: 2fr 1fr;
}
.progress-circle {
    position: relative;
    width: 70px;
    height: 70px;
    /*margin-right: -10px;*/
    /*background: black;*/
    /*border-radius: 50%;*/

}

.progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle-bar {
    fill: none;
    stroke: var(--primary);
    stroke-width: 5;
    stroke-linecap: round;
    transition: stroke-dasharray 0.3s;
    transform-origin: center;
}

.progress-circle-bg {
    fill: none;
    stroke: #ddd;
    stroke-width: 5;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* 404 page */
.page-404 {

}
.img-box-404 {
    max-width: 450px;
    margin: auto;
}
.page-404 p {
    font-size: 16px;
    text-align: center;
}
.page-404 a {
    padding: 7px 20px;
    border-radius: 5px;
    color: whitesmoke;
    /*background: var(--primary);*/
    background-color: black;
    display: block;

    width: 150px;
    text-align: center;
    margin: auto;
    margin-top: 1rem;
    /*margin-bottom: 2rem;*/
}
/* // 404 page */

/*.whatsapp {
    position: fixed;
    bottom: 98px;
    right: 15px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    width: 80px;
    height: 80px;
    background: red;
    border-radius: 50%;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    padding: 0;
}*/

.whatsapp span.fa-whatsapp {
    vertical-align: middle;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: #33cc33;
}

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../images/Preloader_11.gif) center no-repeat rgba(255, 255, 255, 0.80);
}


/* notification */

 .notification input, .notification textarea {
    display: block;
    width: 100%;
    padding: 7px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 12px;
}

.notification label {
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}
.notifications-container {

}
.notifications-container .message {
    background: white;
    padding: 10px;
    margin-bottom: 20px;
    max-width: 520px;
    font-size: 12px;
    border-radius: 5px;
    color: var(--normal-text);
}
.notifications-container .message  pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: inherit;
}
.notifications-container .date {
    font-size: 10px;
    color: black;
    margin-top: 10px;
}

.modal-image {
    max-width: 900px;
    margin: 20px auto;
}

.invite-code-container {
    margin-bottom: 1.5rem;
    max-width: 210px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    padding: 10px;
    font-size: 13px;
}
.invite-code-container input {
    display: inline-block;
    margin: 0 10px;
    color: var(--primary);
    font-weight: bold;
    border: none;
    width: 50px;
}

.invite-code-container svg {
    cursor: pointer;
}
.invite-code-container svg:hover .invite-code-container svg path {
    stroke: var(--primary);
    fill: var(--primary);
}


/* autocomplete css */
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background-color: var(--white-bg);
}

.autocomplete-items div {
    /* height: 40px; */
    line-height: 40px;
    padding-left: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9; 
}

.autocomplete-items a {
    display: block;
    line-height: 40px;
    padding-left: 10px;
    border-bottom: 1px solid #d4d4d4;
    color: var(--dark-text);
    font-size: 14px;
}

.autocomplete-items a:hover {
    color: var(--emphasized-text);
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important; 
    color: #ffffff; 
}
/* // autocomplete css */