/*===========================
		COMMON css
===========================*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");



html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins";
    font-weight: normal;
    font-style: normal;
    color: #5d657b;
    overflow-x: hidden;
    background: #f1f5f9;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
    color: #242424;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

a:hover {
    color: #242424;
}

button,
a {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    color: #242424;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

i,
span {
    display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin: 0px;
}

.img-bg {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.para-width-500 {
    max-width: 500px;
    width: 100%;
}

@media (max-width: 767px) {
    .container {
        padding: 0 30px;
    }
}

/* ========== cart style ========== */
.card-style {
    background: #fff;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
    border-radius: 5px;
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
    .card-style {
        padding: 20px;
    }
}

.card-style .jvm-zoom-btn {
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    right: 30px;
    bottom: 30px;
    cursor: pointer;
}

.card-style .jvm-zoom-btn.jvm-zoomin {
    bottom: 70px;
}

.card-style .dropdown-toggle {
    border: none;
    background: none;
}

.card-style .dropdown-toggle::after {
    display: none;
}

.card-style .dropdown-menu {
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
}

.card-style .dropdown-menu li:hover a {
    color: #242424 !important;
}

.card-style .dropdown-menu li a {
    display: block;
    font-size: 14px;
}

/* ======= Border Radius ========= */
.radius-4 {
    border-radius: 4px;
}

.radius-10 {
    border-radius: 10px;
}

.radius-30 {
    border-radius: 30px;
}

.radius-50 {
    border-radius: 50px;
}

.radius-full {
    border-radius: 50%;
}

.scroll-top {
    width: 45px;
    height: 45px;
    background: #242424;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.scroll-top:hover {
    color: #fff;
    background: rgba(74, 108, 247, 0.8);
}

.form-control:focus {
    box-shadow: none;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus,
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus,
.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus,
.form-check-input:focus,
.radio-style.radio-success .form-check-input:focus,
.radio-style.radio-warning .form-check-input:focus,
.radio-style.radio-danger .form-check-input:focus {
    box-shadow: none;
}

.hover-underline:hover {
    text-decoration: underline;
}

/* ============= typography css ============= */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #262d3f;
    margin: 0;
}

h1,
.h1 {
    font-size: 32px;
    font-weight: 700;
}

h2,
.h2 {
    font-size: 28px;
    font-weight: 600;
}

h3,
.h3 {
    font-size: 24px;
    font-weight: 500;
}

h4,
.h4 {
    font-size: 20px;
    font-weight: 600;
}

h5,
.h5 {
    font-size: 16px;
    font-weight: 700;
}

h6,
.h6 {
    font-size: 16px;
    font-weight: 600;
}

.text-bold {
    font-weight: 700;
}

.text-semi-bold {
    font-weight: 600;
}

.text-medium {
    font-weight: 500;
}

.text-regular {
    font-weight: 400;
}

.text-light {
    font-weight: 300;
}

.text-sm {
    font-size: 14px;
    line-height: 22px;
}

/* ========== breadcrumb ============ */
.breadcrumb-wrapper {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .breadcrumb-wrapper {
        justify-content: flex-start;
    }
}

.breadcrumb-wrapper .breadcrumb li {
    font-size: 14px;
    color: #242424;
}

.breadcrumb-wrapper .breadcrumb li a {
    color: #5d657b;
}

.breadcrumb-wrapper .breadcrumb li a:hover {
    color: #242424;
}

/* ========== Buttons css ========== */
/* buttons base styles */
.main-btn {
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s ease-in-out;
    border: 1px solid transparent;
    background-color: #ff002e;
    color: #FFF;
}
.main-btn:hover {
    background-color: #ff002e;
    border: 1px solid #ff002e ;
    box-shadow: 0 0.5rem 1.125rem -0.5rem #ff002e ;
    color: #ffffff ;
}



.btn-sm {
    padding: 10px 20px;
    font-weight: 400;
}

/* dark buttons */
.dark-btn {
    background-color: #242424;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s ease-in-out;
    border: 1px solid transparent;
}

.dark-btn:hover {
    background-color: #242424;
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(0,0,0,0.9);
    color: #FFF;
    border: 1px solid #242424;
}


/* ========== buttons group css ========= */
.buttons-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.buttons-group li {
    margin: 10px;
}


/* ============ alerts css ============ */
.alert-box {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .alert-box {
        padding-left: 0px !important;
    }
}

.alert-box .left {
    max-width: 75px;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: #d50100;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .alert-box .left {
        display: none;
    }
}

.alert-box .left h5 {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #fff;
}

.alert-box .alert {
    margin-bottom: 0px;
    padding: 25px 40px;
}

@media (max-width: 767px) {
    .alert-box .alert {
        padding: 20px;
    }
}

/* Alert Primary */
.primary-alert .left {
    background: #242424;
}

.primary-alert .alert {
    color: #242424;
    border: 1px solid #242424;
    background: rgba(74, 108, 247, 0.2);
    width: 100%;
}

.primary-alert .alert .alert-heading {
    color: #242424;
    margin-bottom: 15px;
}

/* Alert Danger */
.danger-alert .left {
    background: #d50100;
}

.danger-alert .alert {
    color: #d50100;
    border: 1px solid #d50100;
    background: rgba(213, 1, 0, 0.2);
    width: 100%;
}

.danger-alert .alert .alert-heading {
    color: #d50100;
    margin-bottom: 15px;
}

/* Alert warning */
.warning-alert .left {
    background: #f7c800;
}

.warning-alert .alert {
    color: #f7c800;
    border: 1px solid #f7c800;
    background: rgba(247, 200, 0, 0.2);
    width: 100%;
}

.warning-alert .alert .alert-heading {
    color: #f7c800;
    margin-bottom: 15px;
}

/* Alert warning */
.warning-alert .left {
    background: #f7c800;
}

.warning-alert .alert {
    color: #f7c800;
    border: 1px solid #f7c800;
    background: rgba(247, 200, 0, 0.2);
    width: 100%;
}

.warning-alert .alert .alert-heading {
    color: #f7c800;
    margin-bottom: 15px;
}

/* Alert info */
.info-alert .left {
    background: #97ca31;
}

.info-alert .alert {
    color: #97ca31;
    border: 1px solid #97ca31;
    background: rgba(151, 202, 49, 0.2);
    width: 100%;
}

.info-alert .alert .alert-heading {
    color: #97ca31;
    margin-bottom: 15px;
}

/* Alert success */
.success-alert .left {
    background: #219653;
}

.success-alert .alert {
    color: #219653;
    border: 1px solid #219653;
    background: rgba(33, 150, 83, 0.2);
    width: 100%;
}

.success-alert .alert .alert-heading {
    color: #219653;
    margin-bottom: 15px;
}

/* Alert secondary */
.secondary-alert .left {
    background: #00c1f8;
}

.secondary-alert .alert {
    color: #00c1f8;
    border: 1px solid #00c1f8;
    background: rgba(0, 193, 248, 0.2);
    width: 100%;
}

.secondary-alert .alert .alert-heading {
    color: #00c1f8;
    margin-bottom: 15px;
}

/* Alert gray */
.gray-alert .left {
    background: #5d657b;
}

.gray-alert .alert {
    color: #5d657b;
    border: 1px solid #5d657b;
    background: rgba(93, 101, 123, 0.2);
    width: 100%;
}

.gray-alert .alert .alert-heading {
    color: #5d657b;
    margin-bottom: 15px;
}

/* Alert black */
.black-alert .left {
    background: #242424;
}

.black-alert .alert {
    color: #242424;
    border: 1px solid #242424;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
}

.black-alert .alert .alert-heading {
    color: #242424;
    margin-bottom: 15px;
}

/* Alert orange */
.orange-alert .left {
    background: #f2994a;
}

.orange-alert .alert {
    color: #f2994a;
    border: 1px solid #f2994a;
    background: rgba(242, 153, 74, 0.2);
    width: 100%;
}

.orange-alert .alert .alert-heading {
    color: #f2994a;
    margin-bottom: 15px;
}

/* ========== cards css =========== */
/* card-style-1 */
.card-style-1 {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 10px;
    padding: 25px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.card-style-1:hover {
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.card-style-1 .card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 30px;
}

@media (max-width: 767px) {
    .card-style-1 .card-meta {
        padding: 0 20px;
    }
}

.card-style-1 .card-meta .image {
    max-width: 40px;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.card-style-1 .card-meta .image img {
    width: 100%;
}

.card-style-1 .card-meta .text p {
    color: #262d3f;
}

.card-style-1 .card-meta .text p a {
    color: inherit;
}

.card-style-1 .card-meta .text p a:hover {
    color: #242424;
}

.card-style-1 .card-image {
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
}

.card-style-1 .card-image a {
    display: block;
}

.card-style-1 .card-image img {
    width: 100%;
}

.card-style-1 .card-content {
    padding: 0px 30px;
}

@media (max-width: 767px) {
    .card-style-1 .card-content {
        padding: 0px 20px;
    }
}

.card-style-1 .card-content h4 a {
    color: inherit;
    margin-bottom: 15px;
    display: block;
}

.card-style-1 .card-content h4 a:hover {
    color: #242424;
}

/* card-style-2 */
.card-style-2 {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 4px;
    padding: 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.card-style-2:hover {
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.card-style-2 .card-image {
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.card-style-2 .card-image a {
    display: block;
}

.card-style-2 .card-image img {
    width: 100%;
}

.card-style-2 .card-content {
    padding: 0px 10px;
}

@media (max-width: 767px) {
    .card-style-2 .card-content {
        padding: 0px;
    }
}

.card-style-2 .card-content h4 a {
    color: inherit;
    margin-bottom: 15px;
    display: block;
}

.card-style-2 .card-content h4 a:hover {
    color: #242424;
}

/* card-style-3 */
.card-style-3 {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 4px;
    padding: 25px 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.card-style-3:hover {
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.card-style-3 .card-content h4 a {
    color: inherit;
    margin-bottom: 15px;
    display: block;
}

.card-style-3 .card-content h4 a:hover {
    color: #242424;
}

.card-style-3 .card-content a.read-more {
    font-weight: 500;
    color: #262d3f;
    margin-top: 20px;
}

.card-style-3 .card-content a.read-more:hover {
    color: #242424;
    letter-spacing: 2px;
}

/* ======= icon-card ======== */
.icon-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
}

.icon-card.icon-card-3 {
    display: block;
    padding: 0px;
}

.icon-card.icon-card-3 .card-content {
    display: flex;
    padding: 20px;
    padding-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .icon-card h3 {
        font-size: 20px;
    }
    .icon-card h6 {
        font-size: 15px;
    }
}

.icon-card.icon-card-2 {
    display: block;
}

.icon-card.icon-card-2 .progress {
    height: 7px;
}

.icon-card.icon-card-2 .progress .progress-bar {
    border-radius: 4px;
}

.icon-card .icon {
    max-width: 46px;
    width: 100%;
    height: 46px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-right: 20px;
    font-weight: 700;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .icon-card .icon {
        margin-right: 10px;
    }
}

.icon-card .icon.purple {
    background: rgba(0,0,0, 0.05);
}

.icon-card .icon.success {
    background: rgba(0,0,0, 0.05);
}

.icon-card .icon.primary {
    background: rgba(0,0,0, 0.05);
}

.icon-card .icon.orange {
    background: rgba(0,0,0, 0.05);
}

.icon-card .icon.opacity-100.purple {
    background: #9b51e0;
    color: #fff;
}

.icon-card .icon.opacity-100.success {
    background: #219653;
    color: #fff;
}

.icon-card .icon.opacity-100.primary {
    background: #242424;
    color: #fff;
}

.icon-card .icon.opacity-100.orange {
    background: #f2994a;
    color: #fff;
}

.icon-card .icon.opacity-100.deep-blue {
    background: #345d9d;
    color: #fff;
}

/* =========== tables css =========== */
.table {
    border-collapse: inherit;
    border-spacing: 0px;
}

.table > :not(caption) > * > * {
    padding: 15px 0;
    border-bottom-color: #efefef;
    vertical-align: middle;
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: #efefef;
}

.table tbody tr:first-child > * {
    padding-top: 20px;
}

.table tbody tr:last-child > * {
    border-bottom-color: transparent;
    padding-bottom: 0px;
}

.table th h6 {
    font-weight: 500;
    color: #262d3f;
    font-size: 14px;
}

.table td.min-width {
    padding: 5px;
}

@media (max-width: 767px) {
    .table td.min-width {
        min-width: 150px;
    }
}

.table td p {
    font-size: 14px;
    line-height: 1.5;
    color: #5d657b;
}

.table td p a {
    color: inherit;
}

.table td p a:hover {
    color: #242424;
}

.table .lead-info {
    min-width: 200px;
}

.table .lead-email {
    min-width: 150px;
    white-space: nowrap;
}

.table .lead-phone {
    min-width: 160px;
}

.table .lead-company {
    min-width: 180px;
}

.table .referrals-image {
    min-width: 150px;
}

.table .referrals-image .image {
    width: 55px;
    max-width: 100%;
    height: 55px;
    border-radius: 4px;
    overflow: hidden;
}

.table .referrals-image .image img {
    width: 100%;
}

.table .lead {
    display: flex;
    align-items: center;
}

.table .lead .lead-image {
    max-width: 50px;
    width: 100%;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.table .lead .lead-image img {
    width: 100%;
}

.table .lead .lead-text {
    width: 100%;
}

.table .employee-image {
    width: 50px;
    max-width: 100%;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.table .employee-image img {
    width: 100%;
}

.table .action {
    display: flex;
    align-items: center;
}

.table .action button {
    border: none;
    background: transparent;
    padding: 0px 6px;
    font-size: 18px;
}

.table .action button.edit:hover {
    color: #242424;
}

.table .action button::after {
    display: none;
}

.table .action .dropdown-menu {
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
}

.table .action .dropdown-menu li:hover a {
    color: #242424 !important;
}

.table .action .dropdown-menu li a {
    display: block;
}

.top-selling-table tr th,
.top-selling-table tr td {
    vertical-align: middle;
    padding: 15px 5px;
}

.top-selling-table tr .min-width {
    min-width: 80px;
    white-space: nowrap;
}

.top-selling-table .form-check-input[type="checkbox"] {
    margin-left: 5px;
}

.top-selling-table .product {
    display: flex;
    align-items: center;
    min-width: 150px;
}

.top-selling-table .product .image {
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
    max-width: 50px;
    width: 100%;
    height: 50px;
}

.top-selling-table .product .image img {
    width: 100%;
}

.top-selling-table .product p {
    margin-bottom: 5px;
    color: #242424;
}
.top-selling-table .product p.ad-date {
    color: #999;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .referrals-table-card .title .right {
        width: 100%;
    }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
    .referrals-table-card .title .right {
        width: auto;
    }
}

.referrals-table-card .referrals-table td {
    padding: 10px;
}

/* ===== lead-table ===== */
.lead-table th,
.lead-table td {
    padding: 10px 5px;
}

.lead-table .name {
    min-width: 120px;
}

.lead-table .email {
    min-width: 130px;
}

.lead-table .project {
    min-width: 150px;
}

.lead-table .status {
    min-width: 120px;
    text-align: center;
}

.lead-table .action {
    min-width: 60px;
}

.clients-table-card .table .employee-info {
    min-width: 150px;
}

.clients-table th,
.clients-table td {
    padding: 5px;
}

.clients-table th.min-width,
.clients-table td.min-width {
    min-width: 150px;
}

.clients-table .employee-image {
    margin-right: 0px;
}

/* =========== form elements css ========== */
/* ===== input style ===== */
.input-style-1 {
    position: relative;
    margin-bottom: 30px;
}

.input-style-1 label {
    font-size: 14px;
    font-weight: 500;
    color: #262d3f;
    display: block;
    margin-bottom: 10px;
}
.input-style-1 label .color-red {
    color: red;
}

.input-style-1 input,
.input-style-1 textarea, textarea  {
    width: 100%;
    background: rgba(239, 239, 239, 0.5);
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 10px 15px;
    color: #5d657b;
    resize: none;
    transition: all 0.3s;
}

.input-style-1 input:focus,
.input-style-1 textarea:focus {
    border-color: #242424;
    background: #fff;
}

.input-style-1 input[type="date"], .input-style-1 input[type="time"],
.input-style-1 textarea[type="date"],
.input-style-1 textarea[type="time"] {
    background: transparent;
}

.input-style-2 {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.input-style-2 label {
    font-size: 14px;
    font-weight: 500;
    color: #262d3f;
    display: block;
    margin-bottom: 10px;
}

.input-style-2 input,
.input-style-2 textarea {
    width: 100%;
    background: rgba(239, 239, 239, 0.5);
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 16px;
    color: #5d657b;
    resize: none;
    transition: all 0.3s;
}

.input-style-2 input:focus,
.input-style-2 textarea:focus {
    border-color: #242424;
    background: #fff;
}

.input-style-2 input[type="date"], .input-style-2 input[type="time"],
.input-style-2 textarea[type="date"],
.input-style-2 textarea[type="time"] {
    background: transparent;
}

.input-style-2 input[type="date"]::-webkit-inner-spin-button,
.input-style-2 input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.input-style-2 input[type="date"] ~ .icon {
    z-index: -1;
}

.input-style-2 .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 17px;
}

.input-style-3 {
    position: relative;
    margin-bottom: 30px;
}

.input-style-3 label {
    font-size: 14px;
    font-weight: 500;
    color: #262d3f;
    display: block;
    margin-bottom: 10px;
}

.input-style-3 input,
.input-style-3 textarea {
    width: 100%;
    background: rgba(239, 239, 239, 0.5);
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 16px;
    padding-left: 45px;
    color: #5d657b;
    resize: none;
    transition: all 0.3s;
}

.input-style-3 input:focus,
.input-style-3 textarea:focus {
    border-color: #242424;
    background: #fff;
}

.input-style-3 .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 16px;
}

/* ========= select style ========== */
.select-style-1 {
    margin-bottom: 30px;
}

.select-style-1 label {
    font-size: 14px;
    font-weight: 500;
    color: #262d3f;
    display: block;
    margin-bottom: 10px;
}

.select-style-1 .select-position {
    position: relative;
}

.select-style-1 .select-position::after {
    border-bottom: 2px solid #5d657b;
    border-right: 2px solid #5d657b;
    content: "";
    display: block;
    height: 10px;
    width: 10px;
    margin-top: -5px;
    pointer-events: none;
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.select-style-1 .select-position.select-sm::after {
    margin-top: -8px;
}

.select-style-1 .select-position.select-sm select {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
}

.select-style-1 .select-position select {
    width: 100%;
    background: #F7F7F7;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 10px 15px;
    padding-right: 38px;
    color: #5d657b;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.select-style-1 .select-position select:focus {
    border-color: #242424;
    outline: none;
}

.select-style-1 .select-position select.light-bg {
    background: rgba(239, 239, 239, 0.5);
}

.select-style-1 .select-position select.light-bg:focus {
    background: #fff;
}

.select-style-1 .select-position select.radius-30 {
    border-radius: 30px;
}

.select-style-2 {
    margin-bottom: 30px;
}

.select-style-2 .select-position {
    position: relative;
}

.select-style-2 .select-position.select-sm::after {
    margin-top: -8px;
}

.select-style-2 .select-position.select-sm::before {
    margin-top: 0;
}

.select-style-2 .select-position.select-sm select {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
}

.select-style-2 .select-position::before, .select-style-2 .select-position::after {
    content: "";
    display: block;
    height: 8px;
    width: 8px;
    pointer-events: none;
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.select-style-2 .select-position::before {
    margin-top: 0px;
    border-bottom: 1px solid #5d657b;
    border-right: 1px solid #5d657b;
}

.select-style-2 .select-position::after {
    margin-top: -8px;
    border-top: 1px solid #5d657b;
    border-left: 1px solid #5d657b;
}

.select-style-2 .select-position select {
    width: 100%;
    background: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 16px;
    padding-right: 38px;
    color: #5d657b;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.select-style-2 .select-position select:focus {
    border-color: #242424;
    outline: none;
}

.select-style-2 .select-position select.light-bg {
    background: rgba(239, 239, 239, 0.5);
}

.select-style-2 .select-position select.light-bg:focus {
    background: #fff;
}

.select-style-2 .select-position select.select-sm {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
}

.select-style-3 {
    margin-bottom: 30px;
}

.select-style-3 .select-position {
    position: relative;
}

.select-style-3 .select-position::after {
    border-bottom: 2px solid #5d657b;
    border-right: 2px solid #5d657b;
    content: "";
    display: block;
    height: 10px;
    width: 10px;
    margin-top: -7px;
    pointer-events: none;
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.select-style-3 .select-position.select-sm::after {
    margin-top: -8px;
}

.select-style-3 .select-position.select-sm select {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
}

.select-style-3 .select-position select {
    width: 100%;
    background: transparent;
    border: transparent;
    border-radius: 10px;
    padding-right: 38px;
    color: #242424;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.select-style-3 .select-position select:focus {
    border-color: #242424;
    outline: none;
}

.select-style-3 .select-position select.light-bg {
    background: rgba(239, 239, 239, 0.5);
}

.toggle-switch {
    padding-left: 60px;
    min-height: 30px;
}

.toggle-switch .form-check-input {
    width: 50px;
    height: 28px;
    margin-left: -60px;
    cursor: pointer;
}

.toggle-switch label {
    margin-top: 6px;
    font-size: 14px;
    color: #262d3f;
    cursor: pointer;
    user-select: none;
}

.checkbox-style {
    padding-left: 40px;
    min-height: 28px;
}

.checkbox-style .form-check-input {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    margin-left: -40px;
    cursor: pointer;
}

.checkbox-style .form-check-input:disabled {
    cursor: auto;
}

.checkbox-style .form-check-input:disabled ~ label {
    cursor: auto;
}

.checkbox-style label {
    margin-top: 6px;
    cursor: pointer;
    user-select: none;
}

.checkbox-style.checkbox-success .form-check-input:checked {
    background-color: #219653;
    border-color: #219653;
}

.checkbox-style.checkbox-warning .form-check-input:checked {
    background-color: #f7c800;
    border-color: #f7c800;
}

.checkbox-style.checkbox-danger .form-check-input:checked {
    background-color: #d50100;
    border-color: #d50100;
}

.radio-style {
    padding-left: 40px;
    min-height: 28px;
}

.radio-style .form-check-input {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-left: -40px;
    cursor: pointer;
}

.radio-style .form-check-input:disabled {
    cursor: auto;
}

.radio-style .form-check-input:disabled ~ label {
    cursor: auto;
}

.radio-style label {
    margin-top: 6px;
    cursor: pointer;
    user-select: none;
}

.radio-style.radio-success .form-check-input:checked {
    background-color: #219653;
    border-color: #219653;
}

.radio-style.radio-warning .form-check-input:checked {
    background-color: #f7c800;
    border-color: #f7c800;
}

.radio-style.radio-danger .form-check-input:checked {
    background-color: #d50100;
    border-color: #d50100;
}

@media (max-width: 767px) {
    .button-group .main-btn {
        width: 100%;
    }
}

.buy-sell-form .input-group {
    display: flex;
}

.buy-sell-form .input-group input {
    width: 60%;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    color: #5d657b;
}

.buy-sell-form .input-group input:focus {
    border-color: #242424;
}

.buy-sell-form .input-group .select-style-1 {
    width: 40%;
}

.buy-sell-form .input-group .select-style-1 .select-position::after {
    width: 8px;
    height: 8px;
}

.buy-sell-form .input-group select {
    border: 1px solid #e2e8f0;
    border-radius: 0px 4px 4px 0px;
    padding: 8px 16px;
    padding-right: 24px;
    font-size: 14px;
    color: #5d657b;
}

.buy-sell-form .buy-sell-btn .main-btn {
    display: block;
    width: 100%;
    font-weight: 500;
}

.buy-sell-form .buy-sell-btn .main-btn:hover {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.buy-sell-form .buy-sell-btn .main-btn.success-btn {
    background: #08c18d;
}

.buy-sell-form .buy-sell-btn .main-btn.danger-btn {
    background: #eb5757;
}

.buy-sell-form .field-group-2 label {
    font-size: 12px;
}

.buy-sell-form .field-group-2 .input-group input {
    font-size: 12px;
    width: 70%;
}

.buy-sell-form .field-group-2 .input-group span {
    font-size: 12px;
    padding: 8px 16px;
    width: 30%;
    background: #e2e8f0;
    text-align: center;
    border-radius: 0px 4px 4px 0px;
    border: 1px solid #e2e8f0;
}

.buy-sell-form .input-group-2 label {
    font-size: 12px;
    color: #5d657b;
    margin-bottom: 8px;
    display: block;
}

.buy-sell-form .input-group-2 .select-position::after {
    width: 8px;
    height: 8px;
}

.buy-sell-form .input-group-2 select {
    padding: 8px 12px;
    font-size: 12px;
    color: #5d657b;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    width: 100%;
}

/* ============= notification css ============= */
.single-notification {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #efefef;
}

.single-notification.readed {
    opacity: 0.7;
}

.single-notification:first-child {
    padding-top: 0px;
}

.single-notification:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
}

.single-notification .checkbox {
    max-width: 50px;
    width: 100%;
    padding-top: 10px;
}

@media (max-width: 767px) {
    .single-notification .checkbox {
        display: none;
    }
}

.single-notification .checkbox input {
    background-color: #efefef;
    border-color: #e5e5e5;
}

.single-notification .checkbox input:checked {
    background-color: #242424;
    border-color: #242424;
}

.single-notification .notification {
    display: flex;
    width: 100%;
}

@media (max-width: 767px) {
    .single-notification .notification {
        flex-direction: column;
    }
}

.single-notification .notification .image {
    max-width: 50px;
    width: 100%;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-right: 15px;
}

@media (max-width: 767px) {
    .single-notification .notification .image {
        margin-bottom: 15px;
    }
}

.single-notification .notification .image img {
    width: 100%;
}

.single-notification .notification .content {
    display: block;
    max-width: 800px;
}

.single-notification .notification .content h6 {
    margin-bottom: 15px;
}

.single-notification .notification .content p {
    margin-bottom: 10px;
}

.single-notification .action {
    display: inline-flex;
    justify-content: flex-end;
    padding-top: 10px;
}

@media (max-width: 767px) {
    .single-notification .action {
        display: none;
    }
}

.single-notification .action button {
    border: none;
    background: transparent;
    color: #5d657b;
    margin-left: 20px;
    font-size: 18px;
}

.single-notification .action button.delete-btn:hover {
    color: #d50100;
}

.single-notification .action .dropdown-toggle::after {
    display: none;
}

/* ========== header css ========== */
.header {
    padding: 20px 30px;
    background: #fff;
}

.header .header-left .menu-toggle-btn .main-btn {
    padding: 0px 15px;
    height: 46px;
    line-height: 46px;
    border-radius: 10px;
}

.header .header-left .header-search form {
    max-width: 270px;
    position: relative;
}

.header .header-left .header-search form input {
    width: 100%;
    border: 1px solid #efefef;
    background: rgba(239, 239, 239, 0.5);
    border-radius: 10px;
    height: 46px;
    padding-left: 44px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.header .header-left .header-search form input:focus {
    border-color: #242424;
    background: #fff;
}

.header .header-left .header-search form button {
    position: absolute;
    border: none;
    background: transparent;
    left: 16px;
    top: 0;
    height: 46px;
    color: #5d657b;
    font-weight: 700;
}

.header .header-right {
    display: flex;
    justify-content: flex-end;
}

.header .header-right button {
    border: 1px solid #efefef;
    background: rgba(239, 239, 239, 0.5);
    border-radius: 10px;
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header .header-right button::after {
    display: none;
}

.header .header-right button span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #242424;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -8px;
    right: -6px;
    font-size: 12px;
    font-weight: 500;
}

.header .header-right .dropdown-menu {
    width: 350px;
    border: none;
    padding: 10px 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    top: 15px !important;
    right: 0;
    position: absolute;
    transform: translate3d(0px, 60px, 0px);
    border-radius: 5px;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}

.header .header-right .dropdown-menu li {
    padding: 3px 0px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-bottom: 1px solid #efefef;
    position: relative;
    z-index: 2;
}

.header .header-right .dropdown-menu li:hover a {
    color: #ff002e;
}

.header .header-right .dropdown-menu li:last-child {
    border-bottom: none;
}

.header .header-right .dropdown-menu li a {
    padding: 8px 12px;
    display: flex;
    color: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
}

.header .header-right .dropdown-menu li a .image {
    max-width: 35px;
    width: 100%;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.header .header-right .dropdown-menu li a .image img {
    width: 100%;
}

.header .header-right .dropdown-menu li a .content {
    width: 100%;
}

.header .header-right .dropdown-menu li a .content h6 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1;
}

.header .header-right .dropdown-menu li a .content p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0px;
    line-height: 1.4;
}

.header .header-right .dropdown-menu li a .content span {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.header .header-right .dropdown-box {
    position: relative;
}

.header .header-right .notification-box,
.header .header-right .header-message-box {
    position: relative;
}

.header .header-right .notification-box .dropdown-menu.dropdown-menu-end {
    transform: translate3d(0px, 60px, 0px);
}

.header .header-right .header-message-box .dropdown-menu.dropdown-menu-end {
    transform: translate3d(0px, 60px, 0px);
}

.header .header-right .profile-box {
    display: flex;
    position: relative;
}

.header .header-right .profile-box button {
    width: auto;
}

.header .header-right .profile-box .dropdown-menu {
    width: 230px;
}

.header .header-right .profile-box .dropdown-menu.dropdown-menu-end {
    transform: translate3d(0px, 60px, 0px);
}

.header .header-right .profile-box .dropdown-menu li {
    border-bottom: none;
}

.header .header-right .profile-box .dropdown-menu li a {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.header .header-right .profile-box .dropdown-menu li a i {
    margin-right: 15px;
    font-weight: 700;
}

.header .header-right .profile-box .profile-info {
    margin: 0 5px;
}

.header .header-right .profile-box .profile-info .info {
    display: flex;
    align-items: center;
}

.header .header-right .profile-box .profile-info .info .image {
    border: 2px solid #f9f9f9;
    -webkit-box-shadow: 0px 21px 25px rgba(218, 223, 227, 0.8);
    -moz-box-shadow: 0px 21px 25px rgba(218, 223, 227, 0.8);
    box-shadow: 0px 21px 25px rgba(218, 223, 227, 0.8);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-left: 16px;
    position: relative;
}

.header .header-right .profile-box .profile-info .info .image .status {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    background: #219653;
    position: absolute;
    bottom: 0;
    right: 0;
    top: auto;
}

.header .header-right .profile-box .profile-info .info .image img {
    width: 100%;
    border-radius: 50%;
}

/* ========== Dashboards css ================= */
@media (max-width: 767px) {
    #doughnutChart1 {
        height: 250px !important;
    }
}

.legend3 li {
    margin-right: 25px;
}

.legend3 li div {
    white-space: nowrap;
}

.legend3 li .bg-color {
    position: relative;
    margin-left: 12px;
    border-radius: 50%;
}

.legend3 li .bg-color::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: inherit;
    left: -12px;
    top: 5px;
}

.legend3 li .text {
    margin-left: 10px;
}

.legend3 li .text p {
    display: flex;
    align-items: center;
    width: 100%;
}

.todo-list-wrapper ul li.todo-list-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    margin-bottom: 25px;
}

.todo-list-wrapper ul li.todo-list-item:last-child {
    margin-bottom: 0px;
}

.todo-list-wrapper ul li.todo-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
}

@media (max-width: 767px) {
    .todo-list-wrapper ul li.todo-list-item {
        display: block;
    }

    .todo-list-wrapper ul li.todo-list-item .todo-status {
        margin-top: 20px;
    }
}

.todo-list-wrapper ul li.todo-list-item.success::before {
    background: #219653;
}

.todo-list-wrapper ul li.todo-list-item.primary::before {
    background: #242424;
}

.todo-list-wrapper ul li.todo-list-item.orange::before {
    background: #f2994a;
}

.todo-list-wrapper ul li.todo-list-item.danger::before {
    background: #d50100;
}

/* ============ signin css ============= */
.auth-row {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.auth-cover-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px;
    position: relative;
    z-index: 1;
    height: 100%;
}

@media (max-width: 767px) {
    .auth-cover-wrapper {
        padding: 30px 20px;
    }
}

.auth-cover-wrapper .auth-cover .title {
    text-align: cover;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .auth-cover-wrapper .auth-cover .title h1 {
        font-size: 24px;
    }
}

.auth-cover-wrapper .auth-cover .cover-image {
    max-width: 100%;
    margin: auto;
}

.auth-cover-wrapper .auth-cover .cover-image img {
    width: 100%;
}

.auth-cover-wrapper .auth-cover .shape-image {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 5%;
}

.signin-wrapper {
    background: #fff;
    padding: 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .signin-wrapper {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .signin-wrapper {
        padding: 30px;
    }
}

.signin-wrapper .form-wrapper {
    width: 100%;
}

.signin-wrapper .singin-option button {
    font-size: 16px;
    font-weight: 600;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .signin-wrapper .singin-option button {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .signin-wrapper .singin-option button {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .signin-wrapper .singin-option button {
        width: 100%;
    }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
    .signin-wrapper .singin-option button {
        width: auto;
    }
}

.signin-wrapper .singin-option a:hover {
    text-decoration: underline;
}

/* ============ signup css ============= */
.auth-row {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.auth-cover-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px;
    position: relative;
    z-index: 1;
    height: 100%;
}

@media (max-width: 767px) {
    .auth-cover-wrapper {
        padding: 30px 20px;
    }
}

.auth-cover-wrapper .auth-cover .title {
    text-align: cover;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .auth-cover-wrapper .auth-cover .title h1 {
        font-size: 24px;
    }
}

.auth-cover-wrapper .auth-cover .cover-image {
    max-width: 100%;
    margin: auto;
}

.auth-cover-wrapper .auth-cover .cover-image img {
    width: 100%;
}

.auth-cover-wrapper .auth-cover .shape-image {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 5%;
}

.signup-wrapper {
    background: #fff;
    padding: 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .signup-wrapper {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .signup-wrapper {
        padding: 30px;
    }
}

.signup-wrapper .form-wrapper {
    width: 100%;
}

.signup-wrapper .singup-option button {
    font-size: 16px;
    font-weight: 600;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .signup-wrapper .singup-option button {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .signup-wrapper .singup-option button {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .signup-wrapper .singup-option button {
        width: 100%;
    }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
    .signup-wrapper .singup-option button {
        width: auto;
    }
}

.signup-wrapper .singup-option a:hover {
    text-decoration: underline;
}

/* =========== settings css ============== */
.settings-card-1 .profile-info .profile-image {
    max-width: 75px;
    width: 100%;
    height: 75px;
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.settings-card-1 .profile-info .profile-image img {
    width: 100%;
    border-radius: 50%;
}

.settings-card-1 .profile-info .profile-image .update-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: #efefef;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99;
}

.settings-card-1 .profile-info .profile-image .update-image:hover {
    opacity: 0.9;
}

.settings-card-1 .profile-info .profile-image .update-image input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 99;
}

.settings-card-1 .profile-info .profile-image .update-image label {
    cursor: pointer;
    z-index: 99;
}

/* =========== Invoice Css ============= */
.invoice-card .invoice-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 1;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .invoice-card .invoice-header {
        flex-direction: column;
    }
}

.invoice-card .invoice-header .invoice-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
}

@media (max-width: 767px) {
    .invoice-card .invoice-header .invoice-logo {
        order: -1;
        margin-bottom: 30px;
    }
}

.invoice-card .invoice-header .invoice-logo img {
    width: 100%;
}

@media (max-width: 767px) {
    .invoice-card .invoice-header .invoice-date {
        margin-top: 30px;
    }
}

.invoice-card .invoice-header .invoice-date p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

.invoice-card .invoice-header .invoice-date p span {
    font-weight: 500;
}

.invoice-card .invoice-address {
    padding-top: 30px;
    display: flex;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .invoice-card .invoice-address {
        display: block;
    }
}

.invoice-card .invoice-address .address-item {
    margin-right: 30px;
    min-width: 250px;
}

.invoice-card .invoice-address .address-item h5 {
    margin-bottom: 15px;
}

.invoice-card .invoice-address .address-item h1 {
    margin-bottom: 10px;
    font-size: 24px;
}

.invoice-card .invoice-address .address-item p {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .invoice-card .invoice-action ul li {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .invoice-card .invoice-action ul li a {
        width: 100%;
    }
}

.invoice-table th,
.invoice-table td {
    padding: 10px 8px;
}

.invoice-table .service {
    min-width: 150px;
}

.invoice-table .desc {
    min-width: 150px;
}

.invoice-table .qty {
    min-width: 150px;
}

.invoice-table .amount {
    min-width: 100px;
}

/* ============== Icons Css ===========*/
.icons-wrapper .icons,
.icons-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.icons-wrapper .icons > div,
.icons-wrapper .icons li,
.icons-wrapper ul > div,
.icons-wrapper ul li {
    display: flex;
    align-items: center;
    margin: 10px;
    flex-basis: 215px;
}

@media (max-width: 400px) {
    .icons-wrapper .icons > div,
    .icons-wrapper .icons li,
    .icons-wrapper ul > div,
    .icons-wrapper ul li {
        flex-basis: 100%;
    }
}

.icons-wrapper .icons > div i,
.icons-wrapper .icons li i,
.icons-wrapper ul > div i,
.icons-wrapper ul li i {
    max-width: 45px;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #efefef;
    border-radius: 4px;
    background: transparent;
    color: #262d3f;
    font-size: 20px;
    margin-right: 10px;
}

.icons-wrapper .icons > div span,
.icons-wrapper .icons li span,
.icons-wrapper ul > div span,
.icons-wrapper ul li span {
    color: #262d3f;
    user-select: all;
}

/* ============ Calendar Css ============= */
.calendar-card .fc {
    height: 450px;
}

.calendar-card .fc#calendar-full {
    height: 600px;
}

.calendar-card .fc table {
    border: none;
}

.calendar-card .fc .fc-toolbar-title {
    font-size: 16px;
    font-weight: 500;
}

.calendar-card .fc .fc-button {
    background: transparent;
    border: none;
    color: #5d657b;
    text-transform: capitalize;
}

.calendar-card .fc .fc-button:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #242424;
}

.calendar-card .fc th {
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-right: 0px;
}

.calendar-card .fc th a {
    color: #5d657b;
    font-weight: 400;
}

.calendar-card .fc .fc-day {
    border-width: 4px;
    background: #fff;
}

.calendar-card .fc .fc-day.fc-day-today .fc-daygrid-day-frame {
    background: rgba(74, 108, 247, 0.8);
}

.calendar-card .fc .fc-day.fc-day-today .fc-daygrid-day-frame a {
    color: #fff;
}

.calendar-card .fc .fc-day .fc-daygrid-day-frame {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: #f9f9f9;
    border-radius: 6px;
}

.calendar-card .fc .fc-day .fc-daygrid-day-frame a {
    color: #5d657b;
}

.calendar-card .fc-theme-standard td,
.calendar-card .fc-theme-standard th {
    border-color: transparent;
}

/* =========== Sidebar css =========== */
.sidebar-nav-wrapper {
    background: #fff;
    width: 300px;
    padding: 60px 20px;
    height: 100vh;
    position: fixed;
    overflow-x: hidden;
    top: 0;
    left: 0;
    z-index: 99;
    padding-top: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .sidebar-nav-wrapper {
        -webkit-transform: translateX(-300px);
        -moz-transform: translateX(-300px);
        -ms-transform: translateX(-300px);
        -o-transform: translateX(-300px);
        transform: translateX(-300px);
    }
}

.sidebar-nav-wrapper.active {
    -webkit-transform: translateX(-300px);
    -moz-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    -o-transform: translateX(-300px);
    transform: translateX(-300px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .sidebar-nav-wrapper.active {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.sidebar-nav-wrapper .navbar-logo {
    text-align: center;
    padding: 0 25px;
    margin-bottom: 30px;
}

.sidebar-nav-wrapper .sidebar-nav .divider {
    padding: 5px 25px;
    width: 100%;
}
.sidebar-nav-wrapper .sidebar-nav > ul {
    padding: 0;
    margin-bottom: 30px;
}

.sidebar-nav-wrapper .sidebar-nav .divider hr {
    height: 1px;
    background: #e2e2e2;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item {
    position: relative;
    margin: 5px 0px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children > a {
    color: #262d3f;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children > a::before {
    opacity: 1;
    visibility: visible;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children > a::after {
    content: "\ea5e";
    font: normal normal normal 1em/1 "LineIcons";
    position: absolute;
    right: 10px;
    top: 20px;
    font-size: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children > a.collapsed {
    color: #5d657b;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children > a.collapsed::before {
    opacity: 0;
    visibility: hidden;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children > a.collapsed::after {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul {
    padding: 0px 15px;
    padding-left: 30px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li {
    position: relative;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a {
    font-size: 14px;
    font-weight: 400;
    border-radius: 6px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a.active, .sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a:hover {
    color: #242424;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a i {
    font-size: 16px;
    margin-right: 15px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a span.text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a span.pro-badge {
    background: #242424;
    color: #fff;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 10px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a {
    display: flex;
    align-items: center;
    color: #5d657b;
    font-size: 14px;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 10px 25px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #242424;
    border-radius: 0 3px 3px 0px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a span.text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a span.pro-badge {
    background: #242424;
    color: #fff;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 10px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a .icon {
    margin-right: 12px;
    font-size: 18px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.active > a,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item.active > a.collapsed, .sidebar-nav-wrapper .sidebar-nav ul .nav-item:hover > a,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item:hover > a.collapsed {
    color: #262d3f;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.active > a::before,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item.active > a.collapsed::before, .sidebar-nav-wrapper .sidebar-nav ul .nav-item:hover > a::before,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item:hover > a.collapsed::before {
    opacity: 1;
    visibility: visible;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 11;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 1400px), only screen and (min-width: 1200px) and (max-width: 1399px) {
    .overlay {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .overlay.active {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

.main-wrapper {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-left: 300px;
    min-height: 100vh;
    padding-bottom: 85px;
    position: relative;
    background-color: #f6f6f6;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .main-wrapper {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .main-wrapper {
        padding-bottom: 110px;
    }
}

.main-wrapper.active {
    margin-left: 0;
}

.main-wrapper .footer {
    padding: 25px 0;
    justify-items: flex-end;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.main-wrapper .footer .copyright p a {
    color: inherit;
}

.main-wrapper .footer .copyright p a:hover {
    color: #242424;
}

@media (max-width: 767px) {
    .main-wrapper .footer .terms {
        margin-bottom: 10px;
        text-align: center;
    }
}

.main-wrapper .footer .terms a {
    color: #5d657b;
}

.main-wrapper .footer .terms a:hover {
    color: #242424;
}

.promo-box {
    position: relative;
}

.promo-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.promo-box p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.promo-box .dark-btn {
    padding: 12px;
    width: 100%;
}
#chart-loading-dash, #chart-loading-profile-views {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

#chart-container {
    position: relative;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#chart-loading-dash-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

.user-dp-container #img-upload {
    border-radius: 50%;
    width: 80px !important;
    height: 80px !important;
}

.user-dp-container #upload_user_dp {
    color: #fff;
    font-size: 20px;
    padding: 12px;
}

.user-dp-container .edit-dp {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
}

.dashboard-user-rating {
    padding-top: 10px;
}
.dashboard-user-rating .rating i {
    color: #ea9a00;
}
.dashboard-user-rating .rating span {
    color: #242424;
}
.profile-main-body {
    position: relative;
    margin-top: 20px;
}

.profile-main-body .dashboard-user-info {
    text-align: center;
}

.profile-main-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.custom-dashboard-form-label {
    font-size: 14px;
    font-weight: 500;
    color: #262d3f;
    display: block;
    margin-bottom: 10px;
}

div.tagsinput{
    width: 100%;
    background: rgba(239, 239, 239, 0.5);
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 16px;
    color: #5d657b;
    resize: none;
    transition: all 0.3s;
}

div.tagsinput:focus,
div.tagsinput:active{
    border-color: #242424;
    background: #fff;
}

.jqte, .dropzone, .featured-duration {
    border: 1px solid #e5e5e5;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(239, 239, 239, 0.5);
}

.jqte_focused {
    border-color: #242424;
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#featured-duration .featured-duration-list {
    padding-left: 0;
}

#my-bookings-listing select .select2-container,
#my-bookings-listing select .select2-selection
{
    width: 500px !important;
}

#my-bookings-listing .select2-container--default .select2-selection--single,
#my-bookings-listing .select2-container,
#my-bookings-listing .selection{
    width: 100% !important; /* Default to full width for smaller screens */
}

.sbchat_upload_items {
    background-color: #ff002e;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}
.adforest-dashboard-section {
    padding: 30px;
    position: relative;
}
.adforest-dashboard-section .title-wrapper {
    margin-bottom: 20px;
}
.adforest-dashboard-section .title-wrapper h2 {
    margin-bottom: 0;
    font-size: 24px;
}
.button-container {
    position: relative;
    display: flex;
    justify-content: space-between;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 570px !important;
    }
}
.change-pass-modal .modal-header {
    padding: 10px 20px;
    background-color: #242424;
}
.change-pass-modal .modal-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: #FFF;
}
.change-pass-modal .modal-content {
    margin-top: 100px;
    overflow: hidden;
    border-radius: 4px;
}
.change-pass-modal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}
.menu-toggle-btn {
    background-color: #e1e1e1;
    padding: 10px 20px;
}
.adforest-dashboard-section .dropdown-item.active, .adforest-dashboard-section .dropdown-item:active {
    background-color: #e1e1e1;
}
.jconfirm-content ul li {
    line-height: 30px;
}
.ad_action_container {
    margin: 0 10px;
}
.dashboard-my-ads .action .dropdown-menu  {
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0;
}
.dashboard-my-ads .action .dropdown-menu .dropdown-item {
    padding: 10px 20px;
}
.adforest-dashboard-section .all-packages {
    position: relative;
}
.adforest-dashboard-section .all-packages h3 {
    font-size: 20px;
    margin-bottom: 20px;
}
.adforest-dashboard-section .all-packages .card-style h6 {
    font-size: 18px;
    margin-bottom: 20px;
}
.adforest-dashboard-section .all-packages .card-style ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1;
}
.adforest-dashboard-section .all-packages .card-style ul li:last-child {
    border:none;
}
.nothing-found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 20px;
    line-height: 45px;
    font-size: 14px;
}
.select2-container--default .select2-selection--single {
    width: 100%;
    background: #F7F7F7;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    color: #5d657b;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: 45px;
}
.sidebar-nav-wrapper .sidebar-nav {
    margin: 30px 0;
}
.jconfirm .jconfirm-box.jconfirm-type-red, .jconfirm .jconfirm-box.jconfirm-type-blue {
    border-top: solid 7px #242424 !important;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane {
    margin-bottom: 0 !important;
}
#make_listing_bump_up_dashboard .btn-primary {
    background-color: #242424;
    padding: 10px 20px;
    border-color: #242424;
}

@media (min-width: 320px) and (max-width: 991.98px){
    .adforest-dashboard-section {
        padding: 20px 0;
        position: relative;
    }
}