@charset "UTF-8";
/*
---------------------
	: CSS Table :
---------------------
1. Custom Variables
2. Custom General
3. Custom Helper
4. Custom Example
5. Custom Bootstrap
6. Custom Icons
7. Custom Menu
8. Custom Topbar
9. Custom Alerts
10. Custom Badges
11. Custom Buttons
12. Custom Calender
13. Custom Card
14. Custom Charts
15. Custom Chat
16. Custom Collapse
17. Custom Dashboard
18. Custom Ecommerce
19. Custom Email
20. Custom Form Colorpicker
21. Custom Form Datepicker
22. Custom Form Editor
23. Custom Form Elements
24. Custom Form Select
25. Custom Form Upload
26. Custom Form Validation
27. Custom Form Wizard
28. Custom Gallery
29. Custom Invoice
30. Custom jQuery Confirm
31. Custom jstree
32. Custom Kanban Board
33. Custom Maps
34. Custom Modal
35. Custom Nestable
36. Custom Onboarding Screens
37. Custom Pagination
38. Custom Pnotify
39. Custom Popover Tooltips
40. Custom Pricing
41. Custom Print
42. Custom Progressbar
43. Custom Range-slider
44. Custom Rating
45. Custom Security
46. Custom Summernote
47. Custom Sweet-alert
48. Custom Switchery
49. Custom Tables
50. Custom Tabs
51. Custom Timeline
52. Custom Toolbar
53. Custom Tour
54. Custom Widgets
55. Custom Responsive
----------------------------
*/
@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");

/*
--------------------------------
    : Custom - General css :
--------------------------------
*/
html {
    position: relative;
    min-height: 100%;
    font-display: optional;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    background: #f5f9fc;
    font-size: 16px;
    font-weight: 400;
    color: #8a98ac;
    line-height: 1.5;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: #282828;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

b {
    font-weight: 700;
}

strong {
    font-weight: 700;
}

p {
    line-height: 1.3;
    margin-bottom: 10px;
}

label {
    vertical-align: middle;
}

* {
    outline: none !important;
}

a {
    color: #00999a;
}

a:hover {
    color: #007bff;
    outline: 0;
    text-decoration: none;
}

a:active {
    color: #007bff;
    outline: 0;
    text-decoration: none;
}

a:focus {
    color: #007bff;
    outline: 0;
    text-decoration: none;
}

code {
    color: #00999a;
}

.logobar {
    padding: 20px 0;
    text-align: center;
}

.logobar .logo.logo-small {
    display: none;
}

.logobar .logo img {
    width: 155px;
}

.leftbar {
    width: 220px;
    height: 100%;
    position: fixed;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9;
    transition: all 0.3s ease;
}

.profilebar {
    padding: 15px 30px 25px 30px;
}

.profilebar img {
    width: 50px;
}

.profilename {
    padding: 10px 0;
}

.profilename h5 {
    margin-bottom: 5px;
    font-size: 18px;
}

.profilename p {
    color: #282828;
    opacity: 0.6;
    margin-bottom: 5px;
    font-size: 15px;
}

.userbox .profile-icon {
    background-color: #00999a40;
    padding: 7px 10px 11px;
    color: #282828;
    border-radius: 50%;
}

/* .userbox .profile-icon:hover {
  background-color: #00999a;
} */
/* .userbox .profile-icon:hover img {
  filter: invert(0) sepia(0) saturate(14) hue-rotate(225deg);
  width: 20px;
} */
.userbox .profile-icon img {
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
    width: 20px;
}

.rightbar {
    margin-left: 220px;
    overflow: hidden;
    min-height: 100vh;
    transition: all 0.3s ease;
    background: #f6ffff;
}

.contentbar {
    padding: 30px;
    margin-bottom: 30px;
}

.footerbar {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0px;
    padding: 10px 30px 30px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    background: #fff0;
    top: 100%;
}

.toggle-menu .footerbar {
    left: 0;
}

.slimScrollBar {
    z-index: 0 !important;
}

.navigationbar {
    height: calc(100vh - 100px);
    overflow: auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

::-webkit-scrollbar {
    width: 0;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

body.with-mBody::-webkit-scrollbar {
    width: 5px;
}

body.with-mBody::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body.with-mBody::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #00999a40;
}

/*
-------------------------------
    : Custom - Helper css :
-------------------------------
*/
/* -- Padding -- */
.p-t-5 {
    padding-top: 5px;
}

.p-t-10 {
    padding-top: 10px;
}

.p-t-15 {
    padding-top: 15px;
}

.p-t-20 {
    padding-top: 20px;
}

.p-t-25 {
    padding-top: 25px;
}

.p-t-30 {
    padding-top: 30px;
}

.p-t-35 {
    padding-top: 35px;
}

.p-t-40 {
    padding-top: 40px;
}

.p-t-45 {
    padding-top: 45px;
}

.p-t-50 {
    padding-top: 50px;
}

.p-r-5 {
    padding-right: 5px;
}

.p-r-10 {
    padding-right: 10px;
}

.p-r-15 {
    padding-right: 15px;
}

.p-r-20 {
    padding-right: 20px;
}

.p-r-25 {
    padding-right: 25px;
}

.p-r-30 {
    padding-right: 30px;
}

.p-r-35 {
    padding-right: 35px;
}

.p-r-40 {
    padding-right: 40px;
}

.p-r-45 {
    padding-right: 45px;
}

.p-r-50 {
    padding-right: 50px;
}

.p-b-5 {
    padding-bottom: 5px;
}

.p-b-10 {
    padding-bottom: 10px;
}

.p-b-15 {
    padding-bottom: 15px;
}

.p-b-20 {
    padding-bottom: 20px;
}

.p-b-25 {
    padding-bottom: 25px;
}

.p-b-30 {
    padding-bottom: 30px;
}

.p-b-35 {
    padding-bottom: 35px;
}

.p-b-40 {
    padding-bottom: 40px;
}

.p-b-45 {
    padding-bottom: 45px;
}

.p-b-50 {
    padding-bottom: 50px;
}

.p-l-5 {
    padding-left: 5px;
}

.p-l-10 {
    padding-left: 10px;
}

.p-l-15 {
    padding-left: 15px;
}

.p-l-20 {
    padding-left: 20px;
}

.p-l-25 {
    padding-left: 25px;
}

.p-l-30 {
    padding-left: 30px;
}

.p-l-35 {
    padding-left: 35px;
}

.p-l-40 {
    padding-left: 40px;
}

.p-l-45 {
    padding-left: 45px;
}

.p-l-50 {
    padding-left: 50px;
}

/* -- Margin -- */
.m-t-5 {
    margin-top: 5px;
}

.m-t-10 {
    margin-top: 10px;
}

.m-t-15 {
    margin-top: 15px;
}

.m-t-20 {
    margin-top: 20px;
}

.m-t-25 {
    margin-top: 25px;
}

.m-t-30 {
    margin-top: 30px;
}

.m-t-35 {
    margin-top: 35px;
}

.m-t-40 {
    margin-top: 40px;
}

.m-t-45 {
    margin-top: 45px;
}

.m-t-50 {
    margin-top: 50px;
}

.m-r-5 {
    margin-right: 5px;
}

.m-r-10 {
    margin-right: 10px;
}

.m-r-15 {
    margin-right: 15px;
}

.m-r-20 {
    margin-right: 20px;
}

.m-r-25 {
    margin-right: 25px;
}

.m-r-30 {
    margin-right: 30px;
}

.m-r-35 {
    margin-right: 35px;
}

.m-r-40 {
    margin-right: 40px;
}

.m-r-45 {
    margin-right: 45px;
}

.m-r-50 {
    margin-right: 50px;
}

.m-b-5 {
    margin-bottom: 5px;
}

.m-b-10 {
    margin-bottom: 10px;
}

.m-b-15 {
    margin-bottom: 15px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-b-25 {
    margin-bottom: 25px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-b-35 {
    margin-bottom: 35px;
}

.m-b-40 {
    margin-bottom: 40px;
}

.m-b-45 {
    margin-bottom: 45px;
}

.m-b-50 {
    margin-bottom: 50px;
}

.m-l-5 {
    margin-left: 5px;
}

.m-l-10 {
    margin-left: 10px;
}

.m-l-15 {
    margin-left: 15px;
}

.m-l-20 {
    margin-left: 20px;
}

.m-l-25 {
    margin-left: 25px;
}

.m-l-30 {
    margin-left: 30px;
}

.m-l-35 {
    margin-left: 35px;
}

.m-l-40 {
    margin-left: 40px;
}

.m-l-45 {
    margin-left: 45px;
}

.m-l-50 {
    margin-left: 50px;
}

/* -- Line Height -- */
.l-h-20 {
    line-height: 20px;
}

.l-h-22 {
    line-height: 22px;
}

.l-h-24 {
    line-height: 24px;
}

.l-h-26 {
    line-height: 26px;
}

.l-h-28 {
    line-height: 28px;
}

.l-h-30 {
    line-height: 30px;
}

.l-h-32 {
    line-height: 32px;
}

.l-h-34 {
    line-height: 34px;
}

.l-h-36 {
    line-height: 36px;
}

.l-h-38 {
    line-height: 38px;
}

.l-h-40 {
    line-height: 40px;
}

/* -- Font Size -- */
.font-10 {
    font-size: 10px !important;
}

.font-11 {
    font-size: 11px !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-13 {
    font-size: 13px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-15 {
    font-size: 15px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-17 {
    font-size: 17px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-19 {
    font-size: 19px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-21 {
    font-size: 21px !important;
}

.font-22 {
    font-size: 22px !important;
}

.font-23 {
    font-size: 23px !important;
}

.font-24 {
    font-size: 24px !important;
}

.font-25 {
    font-size: 25px !important;
}

.font-26 {
    font-size: 26px !important;
}

.font-27 {
    font-size: 27px !important;
}

.font-28 {
    font-size: 28px !important;
}

.font-29 {
    font-size: 29px !important;
}

.font-30 {
    font-size: 30px !important;
}

.font-31 {
    font-size: 31px !important;
}

.font-32 {
    font-size: 32px !important;
}

.font-33 {
    font-size: 33px !important;
}

.font-34 {
    font-size: 34px !important;
}

.font-35 {
    font-size: 35px !important;
}

.font-36 {
    font-size: 36px !important;
}

.font-37 {
    font-size: 37px !important;
}

.font-38 {
    font-size: 38px !important;
}

.font-39 {
    font-size: 39px !important;
}

.font-40 {
    font-size: 40px !important;
}

/* -- Font Weight -- */
.f-w-3 {
    font-weight: 300;
}

.f-w-4 {
    font-weight: 400;
}

.f-w-5 {
    font-weight: 500;
}

.f-w-6 {
    font-weight: 600;
}

.f-w-7 {
    font-weight: 700;
}

/* -- Border Radius -- */
.b-r-1 {
    border-radius: 1px;
}

.b-r-2 {
    border-radius: 2px;
}

.b-r-3 {
    border-radius: 3px;
}

.b-r-4 {
    border-radius: 4px;
}

.b-r-5 {
    border-radius: 5px;
}

.b-r-6 {
    border-radius: 6px;
}

.b-r-7 {
    border-radius: 7px;
}

.b-r-8 {
    border-radius: 8px;
}

.b-r-9 {
    border-radius: 9px;
}

.b-r-10 {
    border-radius: 10px;
}

.b-r-15 {
    border-radius: 15px;
}

.b-r-20 {
    border-radius: 20px;
}

.b-r-25 {
    border-radius: 25px;
}

.b-r-30 {
    border-radius: 30px;
}

.b-r-35 {
    border-radius: 35px;
}

.b-r-40 {
    border-radius: 40px;
}

.b-r-45 {
    border-radius: 45px;
}

.b-r-50 {
    border-radius: 50px;
}

.b-r-100 {
    border-radius: 100px;
}

/* -- Extra -- */
.chart-height {
    height: 320px;
}

.v-a-m {
    vertical-align: middle;
}

.psn-abs {
    position: absolute;
}

.bx-shadow {
    -moz-box-shadow: 0 0 30px 0 rgba(200, 200, 200, 0.2);
    -webkit-box-shadow: 0 0 30px 0 rgba(200, 200, 200, 0.2);
    box-shadow: 0 0 30px 0 rgba(200, 200, 200, 0.2);
}

.bg-primary-gradient {
    background-image: linear-gradient(58deg, #00999a 0, #969efa 100%);
}

.bg-secondary-gradient {
    background-image: linear-gradient(58deg, #718093 0, #e6e8f0 100%);
}

.bg-success-gradient {
    background-image: linear-gradient(58deg, #5fc27e 0, #45e396 100%);
}

.bg-danger-gradient {
    background-image: linear-gradient(58deg, #f44455 0, #ff8181 100%);
}

.bg-warning-gradient {
    background-image: linear-gradient(58deg, #fcc100 0, #fef07f 100%);
}

.bg-info-gradient {
    background-image: linear-gradient(58deg, #72d0fb 0, #a7daf5 100%);
}

.bg-light-gradient {
    background-image: linear-gradient(58deg, #dcdde1 0, #f8fbff 100%);
}

.bg-dark-gradient {
    background-image: linear-gradient(58deg, #2d3646 0, #4c4c4c 100%);
}

.text-primary-gradient {
    background: -webkit-linear-gradient(#4cc6f3, #00999a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: -webkit-linear-gradient(#cfd2d6, #718093);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-success-gradient {
    background: -webkit-linear-gradient(#9acd2b, #5fc27e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-danger-gradient {
    background: -webkit-linear-gradient(#ff7e4b, #f44455);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-warning-gradient {
    background: -webkit-linear-gradient(#faec51, #fcc100);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-info-gradient {
    background: -webkit-linear-gradient(#2ce9ad, #72d0fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-light-gradient {
    background: -webkit-linear-gradient(#f3f3f3, #dcdde1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-dark-gradient {
    background: -webkit-linear-gradient(#666666, #2d3646);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.primary-rgba {
    background-color: #00999a40;
}

.secondary-rgba {
    background-color: rgba(113, 128, 147, 0.1);
}

.success-rgba {
    background-color: rgba(95, 194, 126, 0.1);
}

.danger-rgba {
    background-color: rgba(244, 68, 85, 0.1);
}

.warning-rgba {
    background-color: rgba(252, 193, 0, 0.1);
}

.info-rgba {
    background-color: rgba(114, 208, 251, 0.1);
}

.light-rgba {
    background-color: rgba(220, 221, 225, 0.1);
}

.dark-rgba {
    background-color: rgba(45, 54, 70, 0.1);
}

/*
--------------------------------
    : Custom - Example css :
--------------------------------
*/
/* -- Icons -- */
.icon-box-list div {
    color: #8a98ac;
    border-radius: 50px;
    line-height: 38px;
    white-space: nowrap;
}

.icon-box-list div p {
    margin: 10px;
    line-height: inherit;
}

.icon-box-list div p i {
    display: inline-block;
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
    margin-right: 12px;
    margin-bottom: 1px;
    margin-top: 1px;
    transition: transform 0.2s;
}

.icon-box-list div p i.flag {
    background-size: cover;
    background-position: center;
}

.icon-box-list div p span.text-alias {
    color: #d4d4d4;
}

.icon-box-list div:hover p {
    color: #00999a;
}

.icon-box-list div:hover p i {
    color: #00999a;
    background-color: #00999a40 !important;
    transform: scale(1.2);
}

.icon-box-list div:hover p span.text-alias {
    color: #00999a;
}

.icon-svg-list div p span {
    padding: 9px 12px 13px;
    border-radius: 50%;
    margin-right: 12px;
    width: 40px;
    height: 40px;
}

.icon-svg-list div p span .icon-svg {
    filter: invert(0.5) sepia(1) saturate(0) hue-rotate(235deg);
    width: 20px;
    transition: transform 0.2s;
}

.icon-svg-list div p:hover span {
    background-color: #00999a40 !important;
}

.icon-svg-list div p:hover span .icon-svg {
    filter: invert(0.7) sepia(1) saturate(9) hue-rotate(235deg);
    transform: scale(1.2);
}

/* -- Grid -- */
.example-row .grid-example {
    position: relative;
    padding: 1rem;
    margin: 1rem -15px 0;
    border: solid #fefeff;
    border-width: 0.2rem 0 0;
}

.example-row .row > .col,
.example-row .row > [class^="col-"] {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: #00999a40;
    border: 1px solid #c0c8f0;
    color: #00999a;
}

.example-row .row + .row {
    margin-top: 1rem;
}

.example-row.example-row-flex-cols .row {
    min-height: 10rem;
    background-color: #e9ecfa;
}

@media (min-width: 576px) {
    .grid-example {
        padding: 1.5rem;
        margin-right: 0;
        margin-left: 0;
        border-width: 0.2rem;
    }
}

.docs-data > .input-group > span {
    min-width: 2rem !important;
}

/* -- Custom Checkbox -- */
.custom-checkbox-button input[type="checkbox"] {
    cursor: pointer;
    opacity: 0;
    outline: 0 !important;
    z-index: 1;
}

.custom-checkbox-button input[type="checkbox"]:checked + label:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.custom-checkbox-button label {
    position: relative;
    display: inline-block;
}

.custom-checkbox-button label:before {
    content: "";
    position: absolute;
    top: 0;
    left: -18px;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 3px;
    border: 2px solid transparent;
    outline: 0 !important;
}

.custom-checkbox-button label:after {
    content: "";
    position: absolute;
    top: 4px;
    left: -12px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 3px;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
}

.custom-checkbox-button
    .checkbox-primary
    input[type="checkbox"]
    + label:before {
    border-color: #00999a;
}

.custom-checkbox-button .checkbox-primary input[type="checkbox"] + label:after {
    border-color: #ffffff;
}

.custom-checkbox-button
    .checkbox-primary
    input[type="checkbox"]:checked
    + label:before {
    background-color: #00999a;
}

.custom-checkbox-button
    .checkbox-primary
    input[type="checkbox"]:checked
    + label:after {
    background-color: #00999a;
}

.custom-checkbox-button
    .checkbox-secondary
    input[type="checkbox"]
    + label:before {
    border-color: #718093;
}

.custom-checkbox-button
    .checkbox-secondary
    input[type="checkbox"]
    + label:after {
    border-color: #ffffff;
}

.custom-checkbox-button
    .checkbox-secondary
    input[type="checkbox"]:checked
    + label:before {
    background-color: #718093;
}

.custom-checkbox-button
    .checkbox-secondary
    input[type="checkbox"]:checked
    + label:after {
    background-color: #718093;
}

.custom-checkbox-button
    .checkbox-success
    input[type="checkbox"]
    + label:before {
    border-color: #5fc27e;
}

.custom-checkbox-button .checkbox-success input[type="checkbox"] + label:after {
    border-color: #ffffff;
}

.custom-checkbox-button
    .checkbox-success
    input[type="checkbox"]:checked
    + label:before {
    background-color: #5fc27e;
}

.custom-checkbox-button
    .checkbox-success
    input[type="checkbox"]:checked
    + label:after {
    background-color: #5fc27e;
}

.custom-checkbox-button .checkbox-danger input[type="checkbox"] + label:before {
    border-color: #f44455;
}

.custom-checkbox-button .checkbox-danger input[type="checkbox"] + label:after {
    border-color: #ffffff;
}

.custom-checkbox-button
    .checkbox-danger
    input[type="checkbox"]:checked
    + label:before {
    background-color: #f44455;
}

.custom-checkbox-button
    .checkbox-danger
    input[type="checkbox"]:checked
    + label:after {
    background-color: #f44455;
}

.custom-checkbox-button
    .checkbox-warning
    input[type="checkbox"]
    + label:before {
    border-color: #fcc100;
}

.custom-checkbox-button .checkbox-warning input[type="checkbox"] + label:after {
    border-color: #ffffff;
}

.custom-checkbox-button
    .checkbox-warning
    input[type="checkbox"]:checked
    + label:before {
    background-color: #fcc100;
}

.custom-checkbox-button
    .checkbox-warning
    input[type="checkbox"]:checked
    + label:after {
    background-color: #fcc100;
}

.custom-checkbox-button .checkbox-info input[type="checkbox"] + label:before {
    border-color: #72d0fb;
}

.custom-checkbox-button .checkbox-info input[type="checkbox"] + label:after {
    border-color: #ffffff;
}

.custom-checkbox-button
    .checkbox-info
    input[type="checkbox"]:checked
    + label:before {
    background-color: #72d0fb;
}

.custom-checkbox-button
    .checkbox-info
    input[type="checkbox"]:checked
    + label:after {
    background-color: #72d0fb;
}

.custom-checkbox-button .checkbox-light input[type="checkbox"] + label:before {
    border-color: #dcdde1;
}

.custom-checkbox-button .checkbox-light input[type="checkbox"] + label:after {
    border-color: #ffffff;
}

.custom-checkbox-button
    .checkbox-light
    input[type="checkbox"]:checked
    + label:before {
    background-color: #dcdde1;
}

.custom-checkbox-button
    .checkbox-light
    input[type="checkbox"]:checked
    + label:after {
    background-color: #dcdde1;
}

.custom-checkbox-button .checkbox-dark input[type="checkbox"] + label:before {
    border-color: #2d3646;
}

.custom-checkbox-button .checkbox-dark input[type="checkbox"] + label:after {
    border-color: #ffffff;
}

.custom-checkbox-button
    .checkbox-dark
    input[type="checkbox"]:checked
    + label:before {
    background-color: #2d3646;
}

.custom-checkbox-button
    .checkbox-dark
    input[type="checkbox"]:checked
    + label:after {
    background-color: #2d3646;
}

/* -- Custom Radio Button -- */
.custom-radio-button input[type="radio"] {
    cursor: pointer;
    opacity: 0;
    outline: 0 !important;
    z-index: 1;
}

.custom-radio-button input[type="radio"]:checked + label:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.custom-radio-button label {
    position: relative;
    display: inline-block;
}

.custom-radio-button label:before {
    content: "";
    position: absolute;
    top: 0;
    left: -18px;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: 0 !important;
}

.custom-radio-button label:after {
    content: "";
    position: absolute;
    top: 4px;
    left: -12px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
}

.custom-radio-button .radio-primary input[type="radio"] + label:before {
    border-color: #00999a;
}

.custom-radio-button .radio-primary input[type="radio"] + label:after {
    border-color: #ffffff;
}

.custom-radio-button .radio-primary input[type="radio"]:checked + label:before {
    background-color: #00999a;
}

.custom-radio-button .radio-primary input[type="radio"]:checked + label:after {
    background-color: #00999a;
}

.custom-radio-button .radio-secondary input[type="radio"] + label:before {
    border-color: #718093;
}

.custom-radio-button .radio-secondary input[type="radio"] + label:after {
    border-color: #ffffff;
}

.custom-radio-button
    .radio-secondary
    input[type="radio"]:checked
    + label:before {
    background-color: #718093;
}

.custom-radio-button
    .radio-secondary
    input[type="radio"]:checked
    + label:after {
    background-color: #718093;
}

.custom-radio-button .radio-success input[type="radio"] + label:before {
    border-color: #5fc27e;
}

.custom-radio-button .radio-success input[type="radio"] + label:after {
    border-color: #ffffff;
}

.custom-radio-button .radio-success input[type="radio"]:checked + label:before {
    background-color: #5fc27e;
}

.custom-radio-button .radio-success input[type="radio"]:checked + label:after {
    background-color: #5fc27e;
}

.custom-radio-button .radio-danger input[type="radio"] + label:before {
    border-color: #f44455;
}

.custom-radio-button .radio-danger input[type="radio"] + label:after {
    border-color: #ffffff;
}

.custom-radio-button .radio-danger input[type="radio"]:checked + label:before {
    background-color: #f44455;
}

.custom-radio-button .radio-danger input[type="radio"]:checked + label:after {
    background-color: #f44455;
}

.custom-radio-button .radio-warning input[type="radio"] + label:before {
    border-color: #fcc100;
}

.custom-radio-button .radio-warning input[type="radio"] + label:after {
    border-color: #ffffff;
}

.custom-radio-button .radio-warning input[type="radio"]:checked + label:before {
    background-color: #fcc100;
}

.custom-radio-button .radio-warning input[type="radio"]:checked + label:after {
    background-color: #fcc100;
}

.custom-radio-button .radio-info input[type="radio"] + label:before {
    border-color: #72d0fb;
}

.custom-radio-button .radio-info input[type="radio"] + label:after {
    border-color: #ffffff;
}

.custom-radio-button .radio-info input[type="radio"]:checked + label:before {
    background-color: #72d0fb;
}

.custom-radio-button .radio-info input[type="radio"]:checked + label:after {
    background-color: #72d0fb;
}

.custom-radio-button .radio-light input[type="radio"] + label:before {
    border-color: #dcdde1;
}

.custom-radio-button .radio-light input[type="radio"] + label:after {
    border-color: #ffffff;
}

.custom-radio-button .radio-light input[type="radio"]:checked + label:before {
    background-color: #dcdde1;
}

.custom-radio-button .radio-light input[type="radio"]:checked + label:after {
    background-color: #dcdde1;
}

.custom-radio-button .radio-dark input[type="radio"] + label:before {
    border-color: #2d3646;
}

.custom-radio-button .radio-dark input[type="radio"] + label:after {
    border-color: #ffffff;
}

.custom-radio-button .radio-dark input[type="radio"]:checked + label:before {
    background-color: #2d3646;
}

.custom-radio-button .radio-dark input[type="radio"]:checked + label:after {
    background-color: #2d3646;
}

/*
----------------------------------
    : Custom - Bootstrap css :
----------------------------------
*/
/* -- Borders -- */
.border {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.border-right {
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.border-left {
    border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.border-primary {
    border-color: #00999a !important;
}

.border-secondary {
    border-color: #718093 !important;
}

.border-success {
    border-color: #5fc27e !important;
}

.border-danger {
    border-color: #f44455 !important;
}

.border-warning {
    border-color: #fcc100 !important;
}

.border-info {
    border-color: #72d0fb !important;
}

.border-light {
    border-color: #dcdde1 !important;
}

.border-dark {
    border-color: #2d3646 !important;
}

/* -- Breacrumb -- */
.breadcrumb {
    display: inline-flex;
    background-color: transparent;
    margin: 0;
    padding: 10px 0 0;
}

/* -- Toasts -- */
.toast {
    background-color: #ffffff;
    width: 320px;
    border: none;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.toast .toast-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast .toast-header .toast-title {
    font-size: 16px;
    font-weight: 600;
    color: #282828;
}

.toast .toast-header .close {
    color: #282828;
    background-color: transparent;
}

/* -- Dropdown -- */
.dropdown-menu {
    padding: 5px 0;
    font-size: 16px;
    border: none;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.27);
    background-color: #ffffff;
}

.dropdown-menu .dropdown-item {
    padding: 0.5rem 1.5rem;
    color: #333;
}

.dropdown-menu .dropdown-item.active {
    background-color: rgba(0, 0, 0, 0.05);
    color: #282828;
    text-decoration: none;
}

.dropdown-menu .dropdown-item:active {
    background-color: rgba(0, 0, 0, 0.05);
    color: #282828;
    text-decoration: none;
}

.dropdown-menu .dropdown-item:hover {
    color: #282828;
    background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* -- Background color -- */
.bg-primary {
    background-color: #00999a !important;
}

.bg-secondary {
    background-color: #718093 !important;
}

.bg-success {
    background-color: #5fc27e !important;
}

.bg-danger {
    background-color: #f44455 !important;
}

.bg-warning {
    background-color: #fcc100 !important;
}

.bg-info {
    background-color: #72d0fb !important;
}

.bg-light {
    background-color: #dcdde1 !important;
}

.bg-dark {
    background-color: #2d3646 !important;
}

.bg-muted {
    background-color: #8a98ac !important;
}

.bg-white {
    background-color: #ffffff !important;
}

/* -- Background color rgba -- */
.bg-primary-rgba {
    background-color: #00999a40 !important;
}

.bg-secondary-rgba {
    background-color: rgba(113, 128, 147, 0.1) !important;
}

.bg-success-rgba {
    background-color: rgba(95, 194, 126, 0.1) !important;
}

.bg-danger-rgba {
    background-color: rgba(244, 68, 85, 0.1) !important;
}

.bg-warning-rgba {
    background-color: rgba(252, 193, 0, 0.1) !important;
}

.bg-info-rgba {
    background-color: rgba(114, 208, 251, 0.1) !important;
}

.bg-light-rgba {
    background-color: rgba(220, 221, 225, 0.1) !important;
}

.bg-dark-rgba {
    background-color: rgba(45, 54, 70, 0.1) !important;
}

/* -- Text Color -- */
.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #282828 !important;
}

.text-muted {
    color: #8a98ac !important;
}

.text-primary {
    color: #00999a !important;
}

.text-secondary {
    color: #718093 !important;
}

.text-success {
    color: #5fc27e !important;
}

.text-danger {
    color: #f44455 !important;
}

.text-warning {
    color: #fcc100 !important;
}

.text-info {
    color: #72d0fb !important;
}

.text-light {
    color: #dcdde1 !important;
}

.text-dark {
    color: #2d3646 !important;
}

a.text-primary:focus {
    color: #007bff !important;
}

a.text-primary:hover {
    color: #007bff !important;
}

a.text-secondary:focus {
    color: #657385 !important;
}

a.text-secondary:hover {
    color: #657385 !important;
}

a.text-success:focus {
    color: #4dbb6f !important;
}

a.text-success:hover {
    color: #4dbb6f !important;
}

a.text-danger:focus {
    color: #f32c3f !important;
}

a.text-danger:hover {
    color: #f32c3f !important;
}

a.text-warning:focus {
    color: #e3ad00 !important;
}

a.text-warning:hover {
    color: #e3ad00 !important;
}

a.text-info:focus {
    color: #59c8fa !important;
}

a.text-info:hover {
    color: #59c8fa !important;
}

a.text-light:focus {
    color: #ced0d5 !important;
}

a.text-light:hover {
    color: #ced0d5 !important;
}

a.text-dark:focus {
    color: #232a36 !important;
}

a.text-dark:hover {
    color: #232a36 !important;
}

/* -- Blockquote -- */
.blockquote {
    font-size: 1.05rem;
}

/* -- Touch Spin -- */
.bootstrap-touchspin .btn {
    box-shadow: none;
}

/* -- Media -- */
.media .media-body {
    word-break: break-word;
}

.list-group-item {
    background-color: transparent;
}

.mark {
    background-color: rgba(252, 193, 0, 0.1);
    color: #282828;
}

mark {
    background-color: rgba(252, 193, 0, 0.1);
    color: #282828;
}

/*
------------------------------
    : Custom - Icons css :
------------------------------
*/
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
    font-display: swap;
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0")
            format("embedded-opentype"),
        url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),
        url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),
        url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),
        url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular")
            format("svg");
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
    font-size: 1.3333333333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.2857142857em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.1428571429em;
    list-style-type: none;
}

.fa-ul > li {
    position: relative;
}

.fa-li {
    position: absolute;
    left: -2.1428571429em;
    width: 2.1428571429em;
    top: 0.1428571429em;
    text-align: center;
}

.fa-li.fa-lg {
    left: -1.8571428571em;
}

.fa-border {
    padding: 0.2em 0.25em 0.15em;
    border: solid 0.08em #eee;
    border-radius: 0.1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left {
    margin-right: 0.3em;
}

.fa.fa-pull-right {
    margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: 0.3em;
}

.fa.pull-right {
    margin-left: 0.3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
   .fa-glass:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-envelope-o:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-o:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-gear:before,
.fa-cog:before {
    content: "";
}

.fa-trash-o:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-file-o:before {
    content: "";
}

.fa-clock-o:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-arrow-circle-o-down:before {
    content: "";
}

.fa-arrow-circle-o-up:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-play-circle-o:before {
    content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "";
}

.fa-refresh:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-video-camera:before {
    content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "";
}

.fa-pencil:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "";
}

.fa-share-square-o:before {
    content: "";
}

.fa-check-square-o:before {
    content: "";
}

.fa-arrows:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-play:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-times-circle-o:before {
    content: "";
}

.fa-check-circle-o:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-arrows-v:before {
    content: "";
}

.fa-arrows-h:before {
    content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-gears:before,
.fa-cogs:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-thumbs-o-up:before {
    content: "";
}

.fa-thumbs-o-down:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-heart-o:before {
    content: "";
}

.fa-sign-out:before {
    content: "";
}

.fa-linkedin-square:before {
    content: "";
}

.fa-thumb-tack:before {
    content: "";
}

.fa-external-link:before {
    content: "";
}

.fa-sign-in:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-lemon-o:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-square-o:before {
    content: "";
}

.fa-bookmark-o:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-feed:before,
.fa-rss:before {
    content: "";
}

.fa-hdd-o:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-hand-o-right:before {
    content: "";
}

.fa-hand-o-left:before {
    content: "";
}

.fa-hand-o-up:before {
    content: "";
}

.fa-hand-o-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-group:before,
.fa-users:before {
    content: "";
}

.fa-chain:before,
.fa-link:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-cut:before,
.fa-scissors:before {
    content: "";
}

.fa-copy:before,
.fa-files-o:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-money:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "";
}

.fa-legal:before,
.fa-gavel:before {
    content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "";
}

.fa-comment-o:before {
    content: "";
}

.fa-comments-o:before {
    content: "";
}

.fa-flash:before,
.fa-bolt:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "";
}

.fa-lightbulb-o:before {
    content: "";
}

.fa-exchange:before {
    content: "";
}

.fa-cloud-download:before {
    content: "";
}

.fa-cloud-upload:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-bell-o:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cutlery:before {
    content: "";
}

.fa-file-text-o:before {
    content: "";
}

.fa-building-o:before {
    content: "";
}

.fa-hospital-o:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "";
}

.fa-circle-o:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-folder-o:before {
    content: "";
}

.fa-folder-open-o:before {
    content: "";
}

.fa-smile-o:before {
    content: "";
}

.fa-frown-o:before {
    content: "";
}

.fa-meh-o:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-keyboard-o:before {
    content: "";
}

.fa-flag-o:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-code-fork:before {
    content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-shield:before {
    content: "";
}

.fa-calendar-o:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-ticket:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-minus-square-o:before {
    content: "";
}

.fa-level-up:before {
    content: "";
}

.fa-level-down:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-pencil-square:before {
    content: "";
}

.fa-external-link-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "";
}

.fa-euro:before,
.fa-eur:before {
    content: "";
}

.fa-gbp:before {
    content: "";
}

.fa-dollar:before,
.fa-usd:before {
    content: "";
}

.fa-rupee:before,
.fa-inr:before {
    content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "";
}

.fa-won:before,
.fa-krw:before {
    content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-text:before {
    content: "";
}

.fa-sort-alpha-asc:before {
    content: "";
}

.fa-sort-alpha-desc:before {
    content: "";
}

.fa-sort-amount-asc:before {
    content: "";
}

.fa-sort-amount-desc:before {
    content: "";
}

.fa-sort-numeric-asc:before {
    content: "";
}

.fa-sort-numeric-desc:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-youtube-play:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitbucket-square:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-long-arrow-down:before {
    content: "";
}

.fa-long-arrow-up:before {
    content: "";
}

.fa-long-arrow-left:before {
    content: "";
}

.fa-long-arrow-right:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "";
}

.fa-sun-o:before {
    content: "";
}

.fa-moon-o:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-vk:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-arrow-circle-o-right:before {
    content: "";
}

.fa-arrow-circle-o-left:before {
    content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "";
}

.fa-dot-circle-o:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "";
}

.fa-plus-square-o:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-pied-piper-pp:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-fax:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-spoon:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-automobile:before,
.fa-car:before {
    content: "";
}

.fa-cab:before,
.fa-taxi:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-file-pdf-o:before {
    content: "";
}

.fa-file-word-o:before {
    content: "";
}

.fa-file-excel-o:before {
    content: "";
}

.fa-file-powerpoint-o:before {
    content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "";
}

.fa-file-code-o:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "";
}

.fa-circle-o-notch:before {
    content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "";
}

.fa-ge:before,
.fa-empire:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-circle-thin:before {
    content: "";
}

.fa-header:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-sliders:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-newspaper-o:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bell-slash-o:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-eyedropper:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-area-chart:before {
    content: "";
}

.fa-pie-chart:before {
    content: "";
}

.fa-line-chart:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-cc:before {
    content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "";
}

.fa-meanpath:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-dashcube:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-diamond:before {
    content: "";
}

.fa-ship:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-intersex:before,
.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-facebook-official:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-hotel:before,
.fa-bed:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-train:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-sticky-note-o:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-hourglass-o:before {
    content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "";
}

.fa-hand-scissors-o:before {
    content: "";
}

.fa-hand-lizard-o:before {
    content: "";
}

.fa-hand-spock-o:before {
    content: "";
}

.fa-hand-pointer-o:before {
    content: "";
}

.fa-hand-peace-o:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-tv:before,
.fa-television:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-500px:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-calendar-plus-o:before {
    content: "";
}

.fa-calendar-minus-o:before {
    content: "";
}

.fa-calendar-times-o:before {
    content: "";
}

.fa-calendar-check-o:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-map-o:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-commenting:before {
    content: "";
}

.fa-commenting-o:before {
    content: "";
}

.fa-houzz:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

.fa-reddit-alien:before {
    content: "";
}

.fa-edge:before {
    content: "";
}

.fa-credit-card-alt:before {
    content: "";
}

.fa-codiepie:before {
    content: "";
}

.fa-modx:before {
    content: "";
}

.fa-fort-awesome:before {
    content: "";
}

.fa-usb:before {
    content: "";
}

.fa-product-hunt:before {
    content: "";
}

.fa-mixcloud:before {
    content: "";
}

.fa-scribd:before {
    content: "";
}

.fa-pause-circle:before {
    content: "";
}

.fa-pause-circle-o:before {
    content: "";
}

.fa-stop-circle:before {
    content: "";
}

.fa-stop-circle-o:before {
    content: "";
}

.fa-shopping-bag:before {
    content: "";
}

.fa-shopping-basket:before {
    content: "";
}

.fa-hashtag:before {
    content: "";
}

.fa-bluetooth:before {
    content: "";
}

.fa-bluetooth-b:before {
    content: "";
}

.fa-percent:before {
    content: "";
}

.fa-gitlab:before {
    content: "";
}

.fa-wpbeginner:before {
    content: "";
}

.fa-wpforms:before {
    content: "";
}

.fa-envira:before {
    content: "";
}

.fa-universal-access:before {
    content: "";
}

.fa-wheelchair-alt:before {
    content: "";
}

.fa-question-circle-o:before {
    content: "";
}

.fa-blind:before {
    content: "";
}

.fa-audio-description:before {
    content: "";
}

.fa-volume-control-phone:before {
    content: "";
}

.fa-braille:before {
    content: "";
}

.fa-assistive-listening-systems:before {
    content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "";
}

.fa-glide:before {
    content: "";
}

.fa-glide-g:before {
    content: "";
}

.fa-signing:before,
.fa-sign-language:before {
    content: "";
}

.fa-low-vision:before {
    content: "";
}

.fa-viadeo:before {
    content: "";
}

.fa-viadeo-square:before {
    content: "";
}

.fa-snapchat:before {
    content: "";
}

.fa-snapchat-ghost:before {
    content: "";
}

.fa-snapchat-square:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-first-order:before {
    content: "";
}

.fa-yoast:before {
    content: "";
}

.fa-themeisle:before {
    content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "";
}

.fa-handshake-o:before {
    content: "";
}

.fa-envelope-open:before {
    content: "";
}

.fa-envelope-open-o:before {
    content: "";
}

.fa-linode:before {
    content: "";
}

.fa-address-book:before {
    content: "";
}

.fa-address-book-o:before {
    content: "";
}

.fa-vcard:before,
.fa-address-card:before {
    content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "";
}

.fa-user-circle:before {
    content: "";
}

.fa-user-circle-o:before {
    content: "";
}

.fa-user-o:before {
    content: "";
}

.fa-id-badge:before {
    content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "";
}

.fa-quora:before {
    content: "";
}

.fa-free-code-camp:before {
    content: "";
}

.fa-telegram:before {
    content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "";
}

.fa-shower:before {
    content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "";
}

.fa-podcast:before {
    content: "";
}

.fa-window-maximize:before {
    content: "";
}

.fa-window-minimize:before {
    content: "";
}

.fa-window-restore:before {
    content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "";
}

.fa-bandcamp:before {
    content: "";
}

.fa-grav:before {
    content: "";
}

.fa-etsy:before {
    content: "";
}

.fa-imdb:before {
    content: "";
}

.fa-ravelry:before {
    content: "";
}

.fa-eercast:before {
    content: "";
}

.fa-microchip:before {
    content: "";
}

.fa-snowflake-o:before {
    content: "";
}

.fa-superpowers:before {
    content: "";
}

.fa-wpexplorer:before {
    content: "";
}

.fa-meetup:before {
    content: "";
}
/*
-----------------------------
    : Custom - Menu css :
-----------------------------
*/
.vertical-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 200px 0;
}

.vertical-menu > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.vertical-menu > li > a {
    padding: 10px 30px;
    display: block;
    color: #282828;
}

.vertical-menu > li > a > i {
    display: inline-block;
    width: 30px;
    font-size: 16px;
    vertical-align: middle;
    text-align: center;
}

.vertical-menu > li > a > img {
    display: inline-block;
    width: 20px;
    vertical-align: middle;
    margin-right: 10px;
    filter: invert(0.6) sepia(1) saturate(1) hue-rotate(185deg);
}

.vertical-menu > li > a > span {
    vertical-align: middle;
}

.vertical-menu > li:hover > a {
    background-color: transparent;
    color: #00999a;
}

.vertical-menu > li:hover > a > img {
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
}

.vertical-menu > li.active > a {
    background-color: transparent;
    color: #00999a;
}

.vertical-menu > li.active > a > img {
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
}

.vertical-menu > li.active {
    background-color: transparent;
}

.vertical-menu > li .label,
.vertical-menu > li .badge {
    margin-top: 4px;
}

.vertical-menu li.vertical-header {
    padding: 15px 25px 5px 25px;
    color: #8a98ac;
    text-transform: uppercase;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.vertical-menu li:first-child.vertical-header {
    padding: 5px 25px 5px 25px;
}

.vertical-menu li > a > .icon-chevron-right {
    width: auto;
    height: auto;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.vertical-menu li.active > a > .icon-chevron-right {
    transform: rotate(90deg);
}

.vertical-menu li.active > .vertical-submenu {
    display: block;
}

.vertical-menu a {
    color: #8a98ac;
    text-decoration: none;
}

.vertical-menu .vertical-submenu {
    display: none;
    list-style: none;
    padding: 2px 0 5px 2px;
    margin: 0 1px;
    background: transparent;
}

.vertical-menu .vertical-submenu .vertical-submenu {
    padding-left: 15px;
}

.vertical-menu .vertical-submenu > li > a {
    padding: 6px 15px 6px 30px;
    display: flex;
    font-size: 13px;
    color: #282828;
}

.vertical-menu .vertical-submenu > li > a > .mdi {
    font-size: 6px;
    margin: 6px 8px 0 0;
    color: #282828;
    display: block;
}

.vertical-menu .vertical-submenu > li > a > .icon-chevron-right,
.vertical-menu .vertical-submenu > li > a > .icon-chevron-down {
    width: auto;
}

.vertical-menu .vertical-submenu > li.active > a {
    color: #00999a;
}

.vertical-menu .vertical-submenu > li.active > a > .mdi {
    color: #00999a;
}

.vertical-menu .vertical-submenu > li > a:hover,
.vertical-menu .vertical-submenu > li > a.active {
    color: #00999a;
}

.vertical-menu .vertical-submenu > li > a:hover > .mdi {
    color: #00999a;
}

.vertical-menu-rtl {
    list-style: none;
    margin: 0;
    padding: 0 0 200px 0;
}

.vertical-menu-rtl > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.vertical-menu-rtl > li > a {
    padding: 30px 10px;
    display: block;
    color: #282828;
}

.vertical-menu-rtl > li > a > i {
    display: inline-block;
    width: 30px;
    font-size: 16px;
    vertical-align: middle;
}

.vertical-menu-rtl > li > a > img {
    display: inline-block;
    width: 20px;
    vertical-align: middle;
    margin-right: 10px;
    filter: invert(0.6) sepia(1) saturate(1) hue-rotate(185deg);
}

.vertical-menu-rtl > li > a > span {
    vertical-align: middle;
}

.vertical-menu-rtl > li:hover > a {
    background-color: transparent;
    color: #00999a;
}

.vertical-menu-rtl > li:hover > a > img {
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
}

.vertical-menu-rtl > li.active > a {
    background-color: transparent;
    color: #00999a;
}

.vertical-menu-rtl > li.active > a > img {
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
}

.vertical-menu-rtl > li.active {
    background-color: transparent;
}

.vertical-menu-rtl > li .label,
.vertical-menu-rtl > li .badge {
    margin-top: 4px;
}

.vertical-menu-rtl li.vertical-header {
    padding: 10px 15px 10px 25px;
    color: #8a98ac;
    text-transform: uppercase;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.vertical-menu-rtl li:first-child.vertical-header {
    padding: 5px 25px 5px 25px;
}

.vertical-menu-rtl li > a > .icon-chevron-right {
    width: auto;
    height: auto;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.vertical-menu-rtl li.active > a > .icon-chevron-right {
    transform: rotate(90deg);
}

.vertical-menu-rtl li.active > .vertical-submenu {
    display: block;
}

.vertical-menu-rtl a {
    color: #8a98ac;
    text-decoration: none;
}

.vertical-menu-rtl .vertical-submenu {
    display: none;
    list-style: none;
    padding-right: 5px;
    margin: 0 1px;
    background: transparent;
}

.vertical-menu-rtl .vertical-submenu .vertical-submenu {
    padding-right: 15px;
}

.vertical-menu-rtl .vertical-submenu > li > a {
    padding: 8px 45px 8px 55px;
    display: block;
    font-size: 14px;
    color: #282828;
}

.vertical-menu-rtl .vertical-submenu > li > a > .mdi {
    font-size: 5px;
    margin-right: 10px;
    vertical-align: middle;
    color: #282828;
}

.vertical-menu-rtl .vertical-submenu > li > a > .icon-chevron-right,
.vertical-menu-rtl .vertical-submenu > li > a > .icon-chevron-down {
    width: auto;
}

.vertical-menu-rtl .vertical-submenu > li.active > a {
    color: #00999a;
}

.vertical-menu-rtl .vertical-submenu > li.active > a > .mdi {
    color: #00999a;
}

.vertical-menu-rtl .vertical-submenu > li > a:hover {
    color: #00999a;
}

.vertical-menu-rtl .vertical-submenu > li > a:hover > .mdi {
    color: #00999a;
}

/*
-------------------------------
    : Custom - Topbar css :
-------------------------------
*/
.toggle-menu .leftbar {
    position: fixed;
    width: 250px;
    margin-left: 0;
    transition: all 0.3s ease;
}

.toggle-menu .rightbar {
    margin-left: 80px;
}

.toggle-menu .rightbar .topbar {
    left: 80px;
}

.topbar-mobile {
    display: none;
    background-color: #ffffff;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.topbar-mobile .mobile-logobar {
    display: inline-block;
}

.topbar-mobile .mobile-logobar img {
    width: 120px;
}

.topbar-mobile .mobile-togglebar {
    display: inline-block;
    float: right;
    margin-top: 2px;
}

.topbar-mobile .mobile-togglebar a.topbar-toggle-hamburger img {
    width: 24px;
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
}

.topbar-mobile
    .mobile-togglebar
    a.topbar-toggle-hamburger
    img.menu-hamburger-vertical {
    display: none;
}

.topbar-mobile .mobile-togglebar .menu-hamburger img {
    width: 24px;
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
}

.topbar-mobile .mobile-togglebar .menu-hamburger a.menu-hamburger-close {
    display: none;
}

.topbar .rightBar {
    display: flex;
    align-items: center;
}

.topbar {
    background-color: #ffffff;
    padding: 12px 20px;
    position: fixed;
    z-index: 99;
    left: 220px;
    right: 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.topbar .dropdown-toggle::after {
    display: none;
}

.topbar .searchbar input[type="search"] {
    background-color: #dff5f5;
    color: #000;
    font-size: 14px;
    padding-left: 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    box-shadow: none;
    height: 40px;
}

.topbar .searchbar ::placeholder {
    color: #00999a;
}

.topbar .searchbar .input-group-append {
    margin-left: 0px;
}

.topbar .searchbar .btn {
    background-color: #dff5f5;
    color: #00999a;
    font-weight: 700;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0 50px 50px 0;
    padding: 3px 15px 3px 5px;
    box-shadow: none;
}

.topbar .searchbar .btn img {
    width: 21px;
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
}

.topbar .togglebar {
    padding: 8px 5px;
}

.topbar .togglebar .menu-hamburger img {
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
    width: 20px;
}

.topbar .infobar > ul > li {
    margin-left: 15px;
    margin-right: 0;
}

.topbar .infobar > ul > li:first-child {
    margin-left: 0;
}

.topbar .infobar .infobar-icon {
    background-color: #00999a36;
    border-radius: 50%;
    display: flex;
    padding: 10px;
    width: 40px;
}

.topbar .dropdown #languagelink {
    border: 0px;
    padding: 5px 6px 5px 8px;
    border-radius: 4px;
    box-shadow: 0px 2px 8px -2px #9f9f9f9e;
    background: #afafaf;
    color: #fff;
}

.topbar .infobar .infobar-icon img {
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
}

.topbar .infobar .infobar-icon i {
    padding: 12px;
}

.topbar .infobar .infobar-icon .live-icon {
    position: absolute;
    bottom: -5px;
    margin: 0px 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: #00999a;
}

.topbar .infobar .infobar-icon:hover {
    background-color: #00999a;
    color: #ffffff;
}

.topbar .infobar .infobar-icon:hover img {
    filter: invert(0) sepia(0) saturate(14) hue-rotate(225deg);
}

.topbar .infobar .flag {
    display: inline-block;
    font-size: 18px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    vertical-align: middle;
    text-align: center;
    background-color: #ffffff;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-top: -12px;
}

.breadcrumbbar {
    padding: 15px 25px 15px 25px;
    margin-top: 70px;
}

.breadcrumbbar .page-title {
    font-size: 20px;
    color: #282828;
    margin-bottom: 5px;
    margin-top: 10px;
}

.breadcrumbbar .breadcrumb-list {
    text-align: left;
}

.breadcrumbbar .breadcrumb {
    padding: 0 0 0;
}

.breadcrumbbar .breadcrumb .breadcrumb-item a {
    color: #8a98ac;
}

.breadcrumbbar .breadcrumb .breadcrumb-item.active {
    color: #282828;
}

.breadcrumbbar .widgetbar {
    text-align: right;
}

.infobar-notifications-sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    transition: 0.5s;
}

.infobar-notifications-sidebar.sidebarshow {
    width: 420px;
}

.infobar-notifications-sidebar .infobar-notifications-sidebar-head {
    background: #ffffff;
    color: #282828;
    padding: 14px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.infobar-notifications-sidebar .infobar-notifications-sidebar-head h4 {
    margin-bottom: 0;
    line-height: 40px;
    font-size: 20px;
    color: #282828;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-head
    .infobar-notifications-close {
    background-color: #00999a40;
    padding: 4px 10px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-head
    .infobar-notifications-close:hover {
    background-color: #00999a;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-head
    .infobar-notifications-close:hover
    img {
    filter: invert(0) sepia(0) saturate(14) hue-rotate(225deg);
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-head
    .infobar-notifications-close
    img {
    width: 20px;
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
}

.infobar-notifications-sidebar .infobar-notifications-sidebar-body .nav {
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.infobar-notifications-sidebar .infobar-notifications-sidebar-body .nav-link {
    padding: 8px 14px;
    border-radius: 0;
    color: #00999a;
    background-color: #00999a40;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .nav-link:hover {
    background-color: rgba(110, 129, 220, 0.25);
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .nav-link.active:hover {
    background-color: #00999a;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content {
    padding: 15px 0;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    .media {
    padding: 15px 30px;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    .media:hover {
    background-color: rgba(113, 128, 147, 0.1);
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    .media
    img {
    width: 42px;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    .media
    .img-icon {
    width: 46px;
    height: 46px;
    line-height: 46px;
    background-color: #dcdde1;
    color: #8a98ac;
    font-weight: 600;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    .media
    .action-icon {
    width: 46px;
    height: 46px;
    line-height: 38px;
    font-weight: 600;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    h5 {
    font-size: 16px;
    color: #282828;
    margin-top: 0;
    margin-bottom: 5px;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    h5
    .badge {
    margin-left: 7px;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    h5
    .timing {
    color: #8a98ac;
    float: right;
    font-size: 12px;
    margin-top: 3px;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    h5.action-title {
    margin-top: 12px;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    p {
    margin-bottom: 0;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    p
    span {
    margin-right: 5px;
}

.infobar-notifications-sidebar
    .infobar-notifications-sidebar-body
    .tab-content
    p
    .timing {
    color: #8a98ac;
    float: right;
    font-size: 12px;
    margin-top: 3px;
}

.infobar-notifications-sidebar-overlay {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: 1000;
}

.infobar-settings-sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    transition: 0.5s;
}

.infobar-settings-sidebar.sidebarshow {
    width: 420px;
}

.infobar-settings-sidebar .infobar-settings-sidebar-head {
    background-color: #ffffff;
    color: #282828;
    padding: 14px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.infobar-settings-sidebar .infobar-settings-sidebar-head h4 {
    margin-bottom: 0;
    line-height: 40px;
    font-size: 20px;
    color: #282828;
}

.infobar-settings-sidebar
    .infobar-settings-sidebar-head
    .infobar-settings-close {
    background-color: #00999a40;
    padding: 4px 10px;
    color: #282828;
    border-radius: 50%;
    font-size: 20px;
}

.infobar-settings-sidebar
    .infobar-settings-sidebar-head
    .infobar-settings-close:hover {
    background-color: #00999a;
}

.infobar-settings-sidebar
    .infobar-settings-sidebar-head
    .infobar-settings-close:hover
    img {
    filter: invert(0) sepia(0) saturate(14) hue-rotate(225deg);
}

.infobar-settings-sidebar
    .infobar-settings-sidebar-head
    .infobar-settings-close
    img {
    filter: invert(0.62) sepia(1) saturate(4.5) hue-rotate(129deg);
    width: 20px;
}

.infobar-settings-sidebar .infobar-settings-sidebar-body .custom-color-setting {
    padding: 30px;
}

.infobar-settings-sidebar .infobar-settings-sidebar-body .custom-mode-setting {
    padding: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.infobar-settings-sidebar
    .infobar-settings-sidebar-body
    .custom-layout-setting {
    padding: 30px;
}

.infobar-settings-sidebar-overlay {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: 1000;
}

.languagebar .dropdown-menu {
    top: 18px !important;
    border-radius: 3px;
}

.languagebar .dropdown-menu .dropdown-item {
    color: #8a98ac;
}

.languagebar .dropdown-menu .dropdown-item:focus {
    color: #282828;
    background-color: rgba(0, 0, 0, 0.05);
}

.languagebar .dropdown-menu .dropdown-item:hover {
    color: #282828;
    background-color: rgba(0, 0, 0, 0.05);
}

.languagebar .dropdown-menu i {
    margin-right: 10px;
}

.languagebar .dropdown-menu .flag {
    width: 26px;
    height: 26px;
    line-height: 26px;
    margin-top: 0;
}

.account-box {
    background-color: #dcdde1;
    border-radius: 3px;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 30px;
}

.account-box h5 {
    color: #282828;
    margin: 15px 0 5px;
}

.account-box p {
    margin-bottom: 0;
}

.account-box.active {
    background-color: #00999a;
}

.account-box.active h5 {
    color: #ffffff;
}

.account-box.active p {
    color: #ffffff;
}

.account-box:hover {
    background-color: #00999a;
}

.account-box:hover h5 {
    color: #ffffff;
}

.account-box:hover p {
    color: #ffffff;
}

/*
-------------------------------
    : Custom - Alerts css :
-------------------------------
*/
.alert {
    border: 0;
}

.alert .alert-heading {
    font-size: 20px;
}

.alert .alert-link {
    font-weight: 800;
}

.alert-primary {
    color: #00999a;
    background-color: #00999a40;
    border-color: #00999a40;
}

.alert-primary .alert-link {
    color: #00999a;
}

.alert-primary hr {
    border-top-color: #00999a;
}

.alert-secondary {
    color: #718093;
    background-color: rgba(113, 128, 147, 0.1);
    border-color: rgba(113, 128, 147, 0.1);
}

.alert-secondary .alert-link {
    color: #718093;
}

.alert-secondary hr {
    border-top-color: #718093;
}

.alert-success {
    color: #5fc27e;
    background-color: rgba(95, 194, 126, 0.1);
    border-color: rgba(95, 194, 126, 0.1);
}

.alert-success .alert-link {
    color: #5fc27e;
}

.alert-success hr {
    border-top-color: #5fc27e;
}

.alert-danger {
    color: #f44455;
    background-color: rgb(244 68 85 / 0%);
    border-color: rgba(244, 68, 85, 0.1);
    font-size: 12px;
    padding-top: 5px;
    padding-left: 0;
}

.alert-danger .alert-link {
    color: #f44455;
}

.alert-danger hr {
    border-top-color: #f44455;
}

.alert-warning {
    color: #fcc100;
    background-color: rgba(252, 193, 0, 0.1);
    border-color: rgba(252, 193, 0, 0.1);
}

.alert-warning .alert-link {
    color: #fcc100;
}

.alert-warning hr {
    border-top-color: #fcc100;
}

.alert-info {
    color: #72d0fb;
    background-color: rgba(114, 208, 251, 0.1);
    border-color: rgba(114, 208, 251, 0.1);
}

.alert-info .alert-link {
    color: #72d0fb;
}

.alert-info hr {
    border-top-color: #72d0fb;
}

.alert-light {
    color: #8a98ac;
    background-color: rgba(220, 221, 225, 0.1);
    border-color: rgba(220, 221, 225, 0.1);
}

.alert-light .alert-link {
    color: #8a98ac;
}

.alert-light hr {
    border-top-color: #8a98ac;
}

.alert-dark {
    color: #2d3646;
    background-color: rgba(45, 54, 70, 0.1);
    border-color: rgba(45, 54, 70, 0.1);
}

.alert-dark .alert-link {
    color: #2d3646;
}

.alert-dark hr {
    border-top-color: #2d3646;
}

/*
-------------------------------
    : Custom - Badges css :
-------------------------------
*/
.badge {
    font-weight: 600;
}

.badge-default {
    background-color: #00999a;
    color: #ffffff;
}

/* .badge-default[href]:hover {
  background-color: #0080ff;
}
.badge-default[href]:focus {
  background-color: #007bff;
} */

.badge-primary {
    background-color: #00999a;
}

/* .badge-primary[href]:hover {
  background-color: #007bff;
}
.badge-primary[href]:focus {
  background-color: #007bff;
} */

.badge-secondary {
    background-color: #718093;
}

.badge-secondary[href]:hover {
    background-color: #657385;
}

.badge-secondary[href]:focus {
    background-color: #657385;
}

.badge-success {
    background-color: #5fc27e;
}

.badge-success[href]:hover {
    background-color: #4dbb6f;
}

.badge-success[href]:focus {
    background-color: #4dbb6f;
}

.badge-danger {
    background-color: #f44455;
}

.badge-danger[href]:hover {
    background-color: #f32c3f;
}

.badge-danger[href]:focus {
    background-color: #f32c3f;
}

.badge-warning {
    color: #ffffff;
    background-color: #fcc100;
}

.badge-warning[href]:hover {
    background-color: #e3ad00;
}

.badge-warning[href]:focus {
    background-color: #e3ad00;
}

.badge-info {
    background-color: #72d0fb;
}

.badge-info[href]:hover {
    background-color: #59c8fa;
}

.badge-info[href]:focus {
    background-color: #59c8fa;
}

.badge-light {
    color: #8a98ac;
    background-color: #dcdde1;
}

.badge-light[href]:hover {
    background-color: #ced0d5;
}

.badge-light[href]:focus {
    background-color: #ced0d5;
}

.badge-dark {
    background-color: #2d3646;
}

.badge-dark[href]:hover {
    background-color: #232a36;
}

.badge-dark[href]:focus {
    background-color: #232a36;
}

.badge-default-inverse {
    background-color: #00999a40;
    color: #00999a;
}

.badge-default-inverse[href]:hover {
    background-color: #007bff;
}

.badge-default-inverse[href]:focus {
    background-color: #007bff;
}

.badge-primary-inverse {
    background-color: #00999a40;
    color: #00999a;
}

.badge-primary-inverse[href]:hover {
    background-color: #007bff;
    color: #ffffff;
}

.badge-primary-inverse[href]:focus {
    background-color: #007bff;
    color: #ffffff;
}

.badge-secondary-inverse {
    background-color: rgba(113, 128, 147, 0.1);
    color: #718093;
}

.badge-secondary-inverse[href]:hover {
    background-color: #657385;
    color: #ffffff;
}

.badge-secondary-inverse[href]:focus {
    background-color: #657385;
    color: #ffffff;
}

.badge-success-inverse {
    background-color: rgba(95, 194, 126, 0.1);
    color: #5fc27e;
}

.badge-success-inverse[href]:hover {
    background-color: #4dbb6f;
    color: #ffffff;
}

.badge-success-inverse[href]:focus {
    background-color: #4dbb6f;
    color: #ffffff;
}

.badge-danger-inverse {
    background-color: rgba(244, 68, 85, 0.1);
    color: #f44455;
}

.badge-danger-inverse[href]:hover {
    background-color: #f32c3f;
    color: #ffffff;
}

.badge-danger-inverse[href]:focus {
    background-color: #f32c3f;
    color: #ffffff;
}

.badge-warning-inverse {
    background-color: rgba(252, 193, 0, 0.1);
    color: #fcc100;
}

.badge-warning-inverse[href]:hover {
    background-color: #e3ad00;
    color: #ffffff;
}

.badge-warning-inverse[href]:focus {
    background-color: #e3ad00;
    color: #ffffff;
}

.badge-info-inverse {
    background-color: rgba(114, 208, 251, 0.1);
    color: #72d0fb;
}

.badge-info-inverse[href]:hover {
    background-color: #59c8fa;
    color: #ffffff;
}

.badge-info-inverse[href]:focus {
    background-color: #59c8fa;
    color: #ffffff;
}

.badge-light-inverse {
    background-color: rgba(220, 221, 225, 0.1);
    color: #8a98ac;
}

.badge-light-inverse[href]:hover {
    background-color: #ced0d5;
    color: #8a98ac;
}

.badge-light-inverse[href]:focus {
    background-color: #ced0d5;
    color: #8a98ac;
}

.badge-dark-inverse {
    background-color: rgba(45, 54, 70, 0.1);
    color: #2d3646;
}

.badge-dark-inverse[href]:hover {
    background-color: #232a36;
    color: #ffffff;
}

.badge-dark-inverse[href]:focus {
    background-color: #232a36;
    color: #ffffff;
}

/*
--------------------------------
    : Custom - Buttons css :
--------------------------------
*/
.button-list .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-group .btn {
    margin-right: 0;
}

.dropdown-list .btn {
    margin-bottom: 5px;
}

.btn {
    border-radius: 3px;
    font-size: 16px;
    padding: 6px 12px;
}

.btn-rounded {
    border-radius: 20px;
}

.btn-round {
    width: 40px;
    height: 40px;
    padding: 6px 11px;
    border-radius: 50%;
}

.btn-sm {
    padding: 4px 12px;
}

.btn-white {
    color: #282828;
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: none;
}

.btn-link {
    color: #00999a;
    text-decoration: none;
}

.btn-link:hover {
    color: #00999a;
    text-decoration: none;
}

.btn-link.focus {
    text-decoration: none;
}

.btn-link:focus {
    text-decoration: none;
}

/* -- Primary Button -- */
.btn-primary {
    color: #ffffff;
    background-color: #00999a;
    border-color: #00999a;
    box-shadow: none;
}

.btn-primary .disabled {
    color: #ffffff;
    background-color: #00999a;
    border-color: #00999a;
}

.btn-primary:disabled {
    color: #ffffff;
    background-color: #00999a;
    border-color: #00999a;
}

.btn-primary:active {
    background-color: #00999a;
    border-color: #00999a;
}

.btn-primary:hover {
    background-color: #03acac;
    border-color: #03acac;
}

.btn-primary.focus {
    color: #ffffff;
    background-color: #03acac;
    border-color: #03acac;
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-primary:focus {
    color: #ffffff;

    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-primary:not(:disabled):not(.disabled).active {
    background-color: #03acac;
    border-color: #03acac;
}

.btn-primary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

/* -- Primary Button Outline -- */
.btn-outline-primary {
    color: #00999a;
    border-color: #00999a;
}

.btn-outline-primary:active {
    background-color: #00999a;
    border-color: #00999a;
}

.btn-outline-primary:hover {
    color: #ffffff;
    background-color: #00999a;
    border-color: #00999a;
}

.btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-outline-primary:visited {
    background-color: #00999a;
    border-color: #00999a;
}

.btn-outline-primary:not(:disabled):not(.disabled).active {
    background-color: #00999a;
    border-color: #00999a;
}

.btn-outline-primary:not(:disabled):not(.disabled):active {
    background-color: #00999a;
    border-color: #00999a;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.open > .dropdown-toggle.btn-primary {
    background-color: #00999a;
    border-color: #00999a;
}

.show > .btn-outline-primary.dropdown-toggle {
    background-color: #00999a;
    border-color: #00999a;
}

.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.show > .btn-primary.dropdown-toggle {
    background-color: #00999a;
    border-color: #00999a;
}

.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

/* -- Secondary Button -- */
.btn-secondary {
    color: #ffffff;
    background-color: #718093;
    border-color: #718093;
    box-shadow: none;
}

.btn-secondary .disabled {
    color: #ffffff;
    background-color: #718093;
    border-color: #718093;
}

.btn-secondary:disabled {
    color: #ffffff;
    background-color: #718093;
    border-color: #718093;
}

.btn-secondary:active {
    background-color: #657385;
    border-color: #657385;
}

.btn-secondary:hover {
    background-color: #657385;
    border-color: #657385;
}

.btn-secondary.focus {
    color: #ffffff;
    background-color: #657385;
    border-color: #657385;
    box-shadow: 0 0 0 0.2rem #7f8d9e;
}

.btn-secondary:focus {
    color: #ffffff;
    background-color: #657385;
    border-color: #657385;
    box-shadow: 0 0 0 0.2rem #7f8d9e;
}

.btn-secondary:visited {
    background-color: #657385;
    border-color: #657385;
}

.btn-secondary:not(:disabled):not(.disabled).active {
    background-color: #657385;
    border-color: #657385;
}

.btn-secondary:not(:disabled):not(.disabled):active {
    background-color: #657385;
    border-color: #657385;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #7f8d9e;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #7f8d9e;
}

/* -- Secondary Button Outline -- */
.btn-outline-secondary {
    color: #718093;
    border-color: #718093;
}

.btn-outline-secondary:active {
    background-color: #657385;
    border-color: #657385;
}

.btn-outline-secondary:hover {
    color: #626262;
    background-color: #657385;
    border-color: #657385;
}

.btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem #7f8d9e;
}

.btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.2rem #7f8d9e;
}

.btn-outline-secondary:visited {
    background-color: #657385;
    border-color: #657385;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active {
    background-color: #657385;
    border-color: #657385;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active {
    background-color: #657385;
    border-color: #657385;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #7f8d9e;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #7f8d9e;
}

.open > .dropdown-toggle.btn-secondary {
    background-color: #657385;
    border-color: #657385;
}

.show > .btn-outline-secondary.dropdown-toggle {
    background-color: #657385;
    border-color: #657385;
}

.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #abb4bf;
}

.show > .btn-secondary.dropdown-toggle {
    background-color: #657385;
    border-color: #657385;
}

.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #abb4bf;
}

/* -- Success Button -- */
.btn-success {
    color: #ffffff;
    background-color: #5fc27e;
    border-color: #5fc27e;
    box-shadow: none;
}

.btn-success .disabled {
    color: #ffffff;
    background-color: #5fc27e;
    border-color: #5fc27e;
}

.btn-success:disabled {
    color: #ffffff;
    background-color: #5fc27e;
    border-color: #5fc27e;
}

.btn-success:active {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.btn-success:hover {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.btn-success.focus {
    color: #ffffff;
    background-color: #4dbb6f;
    border-color: #4dbb6f;
    box-shadow: 0 0 0 0.2rem #a9deba;
}

.btn-success:focus {
    color: #ffffff;
    background-color: #4dbb6f;
    border-color: #4dbb6f;
    box-shadow: 0 0 0 0.2rem #a9deba;
}

.btn-success:visited {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.btn-success:not(:disabled):not(.disabled).active {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.btn-success:not(:disabled):not(.disabled):active {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.btn-success:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #a9deba;
}

.btn-success:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #a9deba;
}

/* -- Success Button Outline -- */
.btn-outline-success {
    color: #5fc27e;
    border-color: #5fc27e;
}

.btn-outline-success:active {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.btn-outline-success:hover {
    color: #ffffff;
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem #a9deba;
}

.btn-outline-success:focus {
    box-shadow: 0 0 0 0.2rem #a9deba;
}

.btn-outline-success:visited {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.btn-outline-success:not(:disabled):not(.disabled).active {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.btn-outline-success:not(:disabled):not(.disabled):active {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #a9deba;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #a9deba;
}

.open > .dropdown-toggle.btn-success {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.show > .btn-outline-success.dropdown-toggle {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #a9deba;
}

.show > .btn-success.dropdown-toggle {
    background-color: #4dbb6f;
    border-color: #4dbb6f;
}

.show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #a9deba;
}

/* -- Danger Button -- */
.btn-danger {
    color: #ffffff;
    background-color: #f44455;
    border-color: #f44455;
    box-shadow: none;
}

.btn-danger .disabled {
    color: #ffffff;
    background-color: #f44455;
    border-color: #f44455;
}

.btn-danger:disabled {
    color: #ffffff;
    background-color: #f44455;
    border-color: #f44455;
}

.btn-danger:active {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.btn-danger:hover {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.btn-danger.focus {
    color: #ffffff;
    background-color: #f32c3f;
    border-color: #f32c3f;
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

.btn-danger:focus {
    color: #ffffff;
    background-color: #f32c3f;
    border-color: #f32c3f;
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

.btn-danger:visited {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.btn-danger:not(:disabled):not(.disabled).active {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.btn-danger:not(:disabled):not(.disabled):active {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.btn-danger:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

.btn-danger:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

/* -- Danger Button Outline -- */
.btn-outline-danger {
    color: #f44455;
    border-color: #f44455;
}

.btn-outline-danger:active {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.btn-outline-danger:hover {
    color: #ffffff;
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

.btn-outline-danger:focus {
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

.btn-outline-danger:visited {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.btn-outline-danger:not(:disabled):not(.disabled).active {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.btn-outline-danger:not(:disabled):not(.disabled):active {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

.open > .dropdown-toggle.btn-danger {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.show > .btn-outline-danger.dropdown-toggle {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

.show > .btn-danger.dropdown-toggle {
    background-color: #f32c3f;
    border-color: #f32c3f;
}

.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

/* -- Warning Button -- */
.btn-warning {
    color: #ffffff;
    background-color: #fcc100;
    border-color: #fcc100;
    box-shadow: none;
}

.btn-warning .disabled {
    color: #ffffff;
    background-color: #fcc100;
    border-color: #fcc100;
}

.btn-warning:disabled {
    color: #ffffff;
    background-color: #fcc100;
    border-color: #fcc100;
}

.btn-warning:active {
    color: #ffffff;
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.btn-warning:hover {
    color: #ffffff;
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.btn-warning.focus {
    color: #ffffff;
    background-color: #e3ad00;
    border-color: #e3ad00;
    box-shadow: 0 0 0 0.2rem #ffda63;
}

.btn-warning:focus {
    color: #ffffff;
    background-color: #e3ad00;
    border-color: #e3ad00;
    box-shadow: 0 0 0 0.2rem #ffda63;
}

.btn-warning:visited {
    color: #ffffff;
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.btn-warning:not(:disabled):not(.disabled).active {
    color: #ffffff;
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.btn-warning:not(:disabled):not(.disabled):active {
    color: #ffffff;
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.btn-warning:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #ffda63;
}

.btn-warning:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #ffda63;
}

/* -- Warning Button Outline -- */
.btn-outline-warning {
    color: #fcc100;
    border-color: #fcc100;
}

.btn-outline-warning:active {
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.btn-outline-warning:hover {
    color: #ffffff;
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem #ffda63;
}

.btn-outline-warning:focus {
    box-shadow: 0 0 0 0.2rem #ffda63;
}

.btn-outline-warning:visited {
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.btn-outline-warning:not(:disabled):not(.disabled).active {
    color: #ffffff;
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.btn-outline-warning:not(:disabled):not(.disabled):active {
    color: #ffffff;
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #ffda63;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #ffda63;
}

.open > .dropdown-toggle.btn-warning {
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.show > .btn-outline-warning.dropdown-toggle {
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #ffda63;
}

.show > .btn-warning.dropdown-toggle {
    background-color: #e3ad00;
    border-color: #e3ad00;
}

.show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #ffda63;
}

/* -- Info Button -- */
.btn-info {
    color: #ffffff;
    background-color: #72d0fb;
    border-color: #72d0fb;
    box-shadow: none;
}

.btn-info .disabled {
    color: #ffffff;
    background-color: #72d0fb;
    border-color: #72d0fb;
}

.btn-info:disabled {
    color: #ffffff;
    background-color: #72d0fb;
    border-color: #72d0fb;
}

.btn-info:active {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.btn-info:hover {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.btn-info.focus {
    color: #ffffff;
    background-color: #59c8fa;
    border-color: #59c8fa;
    box-shadow: 0 0 0 0.2rem #d5f1fe;
}

.btn-info:focus {
    color: #ffffff;
    background-color: #59c8fa;
    border-color: #59c8fa;
    box-shadow: 0 0 0 0.2rem #d5f1fe;
}

.btn-info:visited {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.btn-info:not(:disabled):not(.disabled).active {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.btn-info:not(:disabled):not(.disabled):active {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.btn-info:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #d5f1fe;
}

.btn-info:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #d5f1fe;
}

/* -- Info Button Outline -- */
.btn-outline-info {
    color: #72d0fb;
    border-color: #72d0fb;
}

.btn-outline-info:active {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.btn-outline-info:hover {
    color: #ffffff;
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem #d5f1fe;
}

.btn-outline-info:focus {
    box-shadow: 0 0 0 0.2rem #d5f1fe;
}

.btn-outline-info:visited {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.btn-outline-info:not(:disabled):not(.disabled).active {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.btn-outline-info:not(:disabled):not(.disabled):active {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #d5f1fe;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #d5f1fe;
}

.open > .dropdown-toggle.btn-info {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.show > .btn-outline-info.dropdown-toggle {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #d5f1fe;
}

.show > .btn-info.dropdown-toggle {
    background-color: #59c8fa;
    border-color: #59c8fa;
}

.show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #d5f1fe;
}

/* -- Light Button -- */
.btn-light {
    color: #8a98ac;
    background-color: #dcdde1;
    border-color: #dcdde1;
    box-shadow: none;
}

.btn-light .disabled {
    color: #ffffff;
    background-color: #dcdde1;
    border-color: #dcdde1;
}

.btn-light:disabled {
    color: #ffffff;
    background-color: #dcdde1;
    border-color: #dcdde1;
}

.btn-light:active {
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.btn-light:hover {
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.btn-light.focus {
    color: #8a98ac;
    background-color: #ced0d5;
    border-color: #ced0d5;
    box-shadow: 0 0 0 0.2rem #dfe0e3;
}

.btn-light:focus {
    color: #8a98ac;
    background-color: #ced0d5;
    border-color: #ced0d5;
    box-shadow: 0 0 0 0.2rem #dfe0e3;
}

.btn-light:visited {
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.btn-light:not(:disabled):not(.disabled).active {
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.btn-light:not(:disabled):not(.disabled):active {
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.btn-light:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #dfe0e3;
}

.btn-light:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #dfe0e3;
}

/* -- Light Button Outline -- */
.btn-outline-light {
    color: #dcdde1;
    border-color: #dcdde1;
}

.btn-outline-light:active {
    color: #ffffff;
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.btn-outline-light:hover {
    color: #ffffff;
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem #dfe0e3;
}

.btn-outline-light:focus {
    box-shadow: 0 0 0 0.2rem #dfe0e3;
}

.btn-outline-light:visited {
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.btn-outline-light:not(:disabled):not(.disabled).active {
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.btn-outline-light:not(:disabled):not(.disabled):active {
    color: #ffffff;
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #dfe0e3;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #dfe0e3;
}

.open > .dropdown-toggle.btn-light {
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.show > .btn-outline-light.dropdown-toggle {
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #dfe0e3;
}

.show > .btn-light.dropdown-toggle {
    background-color: #ced0d5;
    border-color: #ced0d5;
}

.show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #dfe0e3;
}

/* -- Dark Button -- */
.btn-dark {
    color: #ffffff;
    background-color: #2d3646;
    border-color: #2d3646;
    box-shadow: none;
}

.btn-dark .disabled {
    color: #ffffff;
    background-color: #2d3646;
    border-color: #2d3646;
}

.btn-dark:disabled {
    color: #ffffff;
    background-color: #2d3646;
    border-color: #2d3646;
}

.btn-dark:active {
    background-color: #232a36;
    border-color: #232a36;
}

.btn-dark:hover {
    background-color: #232a36;
    border-color: #232a36;
}

.btn-dark.focus {
    color: #ffffff;
    background-color: #232a36;
    border-color: #232a36;
    box-shadow: 0 0 0 0.2rem #556684;
}

.btn-dark:focus {
    color: #ffffff;
    background-color: #232a36;
    border-color: #232a36;
    box-shadow: 0 0 0 0.2rem #556684;
}

.btn-dark:visited {
    background-color: #232a36;
    border-color: #232a36;
}

.btn-dark:not(:disabled):not(.disabled).active {
    background-color: #232a36;
    border-color: #232a36;
}

.btn-dark:not(:disabled):not(.disabled):active {
    background-color: #232a36;
    border-color: #232a36;
}

.btn-dark:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #556684;
}

.btn-dark:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #556684;
}

/* -- Dark Button Outline -- */
.btn-outline-dark {
    color: #2d3646;
    background-image: none;
    background-color: transparent;
    border-color: #2d3646;
}

.btn-outline-dark:active {
    background-color: #232a36;
    border-color: #232a36;
}

.btn-outline-dark:hover {
    color: #ffffff;
    background-color: #232a36;
    border-color: #232a36;
}

.btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem #556684;
}

.btn-outline-dark:focus {
    box-shadow: 0 0 0 0.2rem #556684;
}

.btn-outline-dark:visited {
    background-color: #232a36;
    border-color: #232a36;
}

.btn-outline-dark:not(:disabled):not(.disabled).active {
    background-color: #232a36;
    border-color: #232a36;
}

.btn-outline-dark:not(:disabled):not(.disabled):active {
    background-color: #232a36;
    border-color: #232a36;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #556684;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #556684;
}

.open > .dropdown-toggle.btn-dark {
    background-color: #232a36;
    border-color: #232a36;
}

.show > .btn-outline-dark.dropdown-toggle {
    background-color: #232a36;
    border-color: #232a36;
}

.show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #556684;
}

.show > .btn-dark.dropdown-toggle {
    background-color: #232a36;
    border-color: #232a36;
}

.show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #556684;
}

/* -- Default Button -- */
.btn-default {
    color: #ffffff;
    background-color: #00999a;
    border-color: #00999a;
    box-shadow: none;
}

.btn-default .disabled {
    color: #ffffff;
    background-color: #00999a;
    border-color: #00999a;
}

.btn-default:disabled {
    color: #ffffff;
    background-color: #00999a;
    border-color: #00999a;
}

.btn-default:active {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-default:hover {
    color: #ffffff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-default.focus {
    color: #ffffff;
    background-color: #007bff;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-default:focus {
    color: #ffffff;
    background-color: #007bff;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-default:visited {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-default:not(:disabled):not(.disabled).active {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-default:not(:disabled):not(.disabled):active {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-default:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-default:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

/* -- Default Button Outline -- */
.btn-outline-default {
    color: #00999a;
    border-color: #00999a;
}

.btn-outline-default:active {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-default:hover {
    color: #ffffff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-default.focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-outline-default:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-outline-default:visited {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-default:not(:disabled):not(.disabled).active {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-default:not(:disabled):not(.disabled):active {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-default:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-outline-default:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.open > .dropdown-toggle.btn-default {
    background-color: #007bff;
    border-color: #007bff;
}

.show > .btn-outline-default.dropdown-toggle {
    background-color: #007bff;
    border-color: #007bff;
}

.show > .btn-outline-default.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.show > .btn-default.dropdown-toggle {
    background-color: #007bff;
    border-color: #007bff;
}

.show > .btn-default.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

/* -- Link Buttons -- */
.btn-primary-rgba {
    background-color: #00999a40;
    border: none;
    color: #00999a;
}

.btn-primary-rgba:hover {
    background-color: #00999a;
    border: none;
    color: #ffffff;
}

.btn-primary-rgba:focus {
    background-color: #00999a;
    border: none;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem #c0c8f0;
}

.btn-secondary-rgba {
    background-color: rgba(113, 128, 147, 0.1);
    border: none;
    color: #718093;
}

.btn-secondary-rgba:hover {
    background-color: #718093;
    border: none;
    color: #ffffff;
}

.btn-secondary-rgba:focus {
    background-color: #718093;
    border: none;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem #7f8d9e;
}

.btn-success-rgba {
    background-color: rgba(95, 194, 126, 0.1);
    border: none;
    color: #5fc27e;
}

.btn-success-rgba:hover {
    background-color: #5fc27e;
    border: none;
    color: #ffffff;
}

.btn-success-rgba:focus {
    background-color: #5fc27e;
    border: none;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem #a9deba;
}

.btn-danger-rgba {
    background-color: rgba(244, 68, 85, 0.1);
    border: none;
    color: #f44455;
}

.btn-danger-rgba:hover {
    background-color: #f44455;
    border: none;
    color: #ffffff;
}

.btn-danger-rgba:focus {
    background-color: #f44455;
    border: none;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

.btn-warning-rgba {
    background-color: rgba(252, 193, 0, 0.1);
    border: none;
    color: #fcc100;
}

.btn-warning-rgba:hover {
    background-color: #fcc100;
    border: none;
    color: #ffffff;
}

.btn-warning-rgba:focus {
    background-color: #fcc100;
    border: none;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem #ffda63;
}

.btn-info-rgba {
    background-color: rgba(114, 208, 251, 0.1);
    border: none;
    color: #72d0fb;
}

.btn-info-rgba:hover {
    background-color: #72d0fb;
    border: none;
    color: #ffffff;
}

.btn-info-rgba:focus {
    background-color: #72d0fb;
    border: none;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem #d5f1fe;
}

.btn-light-rgba {
    background-color: rgba(220, 221, 225, 0.1);
    border: none;
    color: #8a98ac;
}

.btn-light-rgba:hover {
    background-color: #dcdde1;
    border: none;
    color: #ffffff;
}

.btn-light-rgba:focus {
    background-color: #dcdde1;
    border: none;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem #e4e5e8;
}

.btn-dark-rgba {
    background-color: rgba(45, 54, 70, 0.1);
    border: none;
    color: #2d3646;
}

.btn-dark-rgba:hover {
    background-color: #2d3646;
    border: none;
    color: #ffffff;
}

.btn-dark-rgba:focus {
    background-color: #2d3646;
    border: none;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem #556684;
}

/*
---------------------------------
    : Custom - Calender css :
---------------------------------
*/
.fc-toolbar h2 {
    margin: 0;
    font-size: 18px;
    color: #282828;
}

.fc-toolbar .fc-state-active {
    z-index: 4;
    background-color: #00999a;
    border-color: #00999a;
    color: #ffffff;
}

.fc-toolbar .ui-state-active {
    z-index: 4;
    background-color: #00999a;
    border-color: #00999a;
    color: #ffffff;
}

.fc-toolbar .fc-left {
    margin-bottom: 10px;
}

.fc-toolbar .fc-center {
    margin-bottom: 10px;
}

.fc-toolbar .fc-right {
    margin-bottom: 10px;
}

.fc-button {
    background: #dcdde1;
    border: 1px solid #ced0d5;
    color: #282828;
    outline: 0;
    box-shadow: none;
    text-transform: capitalize;
    height: auto !important;
    padding: 6px 15px !important;
}

.fc-state-hover {
    background: #ced0d5;
    border: 1px solid #ced0d5;
}

.fc-state-default.fc-corner-left {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.fc-state-default.fc-corner-right {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.fc-widget-header {
    background-color: #eaeaed;
    border: 1px solid #ced0d5;
}

.fc th.fc-widget-header {
    padding: 12px 0;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
}

.fc-unthemed .fc-content {
    border-color: rgba(0, 0, 0, 0.05);
}

.fc-unthemed .fc-divider {
    border-color: rgba(0, 0, 0, 0.05);
}

.fc-unthemed .fc-popover {
    border-color: rgba(0, 0, 0, 0.05);
}

.fc-unthemed .fc-row {
    border-color: rgba(0, 0, 0, 0.05);
}

.fc-unthemed tbody {
    border-color: rgba(0, 0, 0, 0.05);
}

.fc-unthemed td {
    border-color: rgba(0, 0, 0, 0.05);
}

.fc-unthemed th {
    border-color: rgba(0, 0, 0, 0.05);
}

.fc-unthemed thead {
    border-color: rgba(0, 0, 0, 0.05);
}

.fc-event {
    background-color: #00999a;
    color: #ffffff !important;
    border: none;
    border-radius: 3px;
    text-align: center;
    font-size: 14px;
    margin: 5px 0;
    padding: 5px 5px;
    cursor: move;
}

/*
------------------------------
    : Custom - Cards css :
------------------------------
*/
.card {
    border: none;
    border-radius: 3px;
    background-color: #ffffff;
}

.card.border-primary {
    border: 1px solid;
}

.card.border-secondary {
    border: 1px solid;
}

.card.border-success {
    border: 1px solid;
}

.card.border-danger {
    border: 1px solid;
}

.card.border-warning {
    border: 1px solid;
}

.card.border-info {
    border: 1px solid;
}

.card.border-light {
    border: 1px solid;
}

.card.border-dark {
    border: 1px solid;
}

.card-primary {
    background-color: #00999a !important;
    border-color: #00999a;
}

.card-secondary {
    background-color: #718093 !important;
    border-color: #718093;
}

.card-success {
    background-color: #5fc27e !important;
    border-color: #5fc27e;
}

.card-danger {
    background-color: #f44455 !important;
    border-color: #f44455;
}

.card-warning {
    background-color: #fcc100 !important;
    border-color: #fcc100;
}

.card-info {
    background-color: #72d0fb !important;
    border-color: #72d0fb;
}

.card-light {
    background-color: #dcdde1 !important;
    border-color: #dcdde1;
}

.card-dark {
    background-color: #2d3646 !important;
    border-color: #2d3646;
}

.card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: transparent;
}

.card-header:first-child {
    border-radius: calc(5px - 1px) calc(5px - 1px) 0 0;
    padding: 15px 20px;
}

.card .card-header .card-title {
    font-size: 16px;
    margin-bottom: 0;
}

.card .card-header .card-title:before {
    content: "";
    background-color: #00999a;
    width: 7px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 16px;
    border-radius: 0 50px 50px 0;
    display: none;
}

.card .card-header .row .card-title {
    font-size: 16px;
}

.card .card-header .row .card-title:before {
    left: -5px;
    top: 0;
}

.card-subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #8a98ac;
    margin-bottom: 15px;
}

.card-img {
    width: 100%;
    border-radius: calc(5px - 1px);
}

.card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: transparent;
}

.card-arrow {
    background-color: #00999a40;
    color: #00999a;
    border-radius: 50%;
    display: flex;
    line-height: 25px;
    width: 25px;
    height: 25px;
}

.card-arrow i {
    padding: 5px;
}

.card-arrow:hover {
    background-color: #00999a;
    color: #ffffff;
}

.amount-spent-select .form-control {
    font-size: 12px;
    padding: 0px 5px;
    line-height: 24px;
    height: 24px;
}

.card-statistics .nav-pills {
    float: right;
}

.card-statistics .nav-pills .nav-link {
    padding: 0 6px 16px 6px;
    margin-bottom: -16px;
    font-size: 14px;
}

.card-statistics .nav-pills .nav-link.active {
    color: #00999a;
    background-color: transparent;
    border-bottom: 2px solid #00999a;
    border-radius: 0;
}

.card-statistics .nav-tabs {
    float: right;
}

/*
-------------------------------
    : Custom - Charts css :
-------------------------------
*/
.chart-label {
    text-align: center;
}

.chart-label li {
    margin: 0 15px;
    padding: 0;
    border: none;
}

.chart-label li p {
    font-size: 16px;
    color: #8a98ac;
}

.chart-label li p i {
    margin-right: 5px;
}

.chart-label li.list-inline-item:not(:last-child) {
    margin-right: 0;
}

/* -- Chartist chart -- */
.ct-chart {
    height: 320px;
}

.ct-golden-section:before {
    float: none;
    padding-bottom: 0;
}

.ct-grid {
    stroke: rgba(0, 0, 0, 0.05);
    stroke-width: 0.5px;
    stroke-dasharray: 0;
}

.ct-label {
    fill: #8a98ac;
    color: #8a98ac;
    font-size: 14px;
}

.chartist-simple-pie-chart .ct-label {
    fill: #ffffff;
    color: #ffffff;
}

.chartist-donut-fill-rather-chart .ct-label {
    fill: #ffffff;
    color: #ffffff;
}

.chartist-gauge-fill-rather-chart .ct-label {
    fill: #ffffff;
    color: #ffffff;
}

.ct-point {
    cursor: pointer;
}

.ct-series-a .ct-point {
    stroke: #00999a;
}

.ct-series-a .ct-line {
    stroke: #00999a;
}

.ct-series-a .ct-bar {
    stroke: #00999a;
}

.ct-series-a .ct-slice-donut {
    stroke: #00999a;
}

.ct-series-a .ct-slice-pie {
    fill: #00999a;
}

.ct-series-a .ct-slice-donut-solid {
    fill: #00999a;
}

.ct-series-a .ct-area {
    fill: #00999a;
}

.ct-series-b .ct-point {
    stroke: #fcc100;
}

.ct-series-b .ct-line {
    stroke: #fcc100;
}

.ct-series-b .ct-bar {
    stroke: #fcc100;
}

.ct-series-b .ct-slice-donut {
    stroke: #fcc100;
}

.ct-series-b .ct-slice-pie {
    fill: #fcc100;
}

.ct-series-b .ct-slice-donut-solid {
    fill: #fcc100;
}

.ct-series-b .ct-area {
    fill: #fcc100;
}

.ct-series-c .ct-point {
    stroke: #dcdde1;
}

.ct-series-c .ct-line {
    stroke: #dcdde1;
}

.ct-series-c .ct-bar {
    stroke: #dcdde1;
}

.ct-series-c .ct-slice-donut {
    stroke: #dcdde1;
}

.ct-series-c .ct-slice-pie {
    fill: #dcdde1;
}

.ct-series-c .ct-slice-donut-solid {
    fill: #dcdde1;
}

.ct-series-c .ct-area {
    fill: #dcdde1;
}

.ct-series-d .ct-point {
    stroke: #5fc27e;
}

.ct-series-d .ct-line {
    stroke: #5fc27e;
}

.ct-series-d .ct-bar {
    stroke: #5fc27e;
}

.ct-series-d .ct-slice-donut {
    stroke: #5fc27e;
}

.ct-series-d .ct-slice-pie {
    fill: #5fc27e;
}

.ct-series-d .ct-slice-donut-solid {
    fill: #5fc27e;
}

.ct-series-d .ct-area {
    fill: #5fc27e;
}

.ct-series-e .ct-point {
    stroke: #f44455;
}

.ct-series-e .ct-line {
    stroke: #f44455;
}

.ct-series-e .ct-bar {
    stroke: #f44455;
}

.ct-series-e .ct-slice-donut {
    stroke: #f44455;
}

.ct-series-e .ct-slice-pie {
    fill: #f44455;
}

.ct-series-e .ct-slice-donut-solid {
    fill: #f44455;
}

.ct-series-e .ct-area {
    fill: #f44455;
}

.ct-series-f .ct-point {
    stroke: #72d0fb;
}

.ct-series-f .ct-line {
    stroke: #72d0fb;
}

.ct-series-f .ct-bar {
    stroke: #72d0fb;
}

.ct-series-f .ct-slice-donut {
    stroke: #72d0fb;
}

.ct-series-f .ct-slice-pie {
    fill: #72d0fb;
}

.ct-series-f .ct-slice-donut-solid {
    fill: #72d0fb;
}

.ct-series-f .ct-area {
    fill: #72d0fb;
}

.ct-series-g .ct-point {
    stroke: #2d3646;
}

.ct-series-g .ct-line {
    stroke: #2d3646;
}

.ct-series-g .ct-bar {
    stroke: #2d3646;
}

.ct-series-g .ct-slice-donut {
    stroke: #2d3646;
}

.ct-series-g .ct-slice-pie {
    fill: #2d3646;
}

.ct-series-g .ct-slice-donut-solid {
    fill: #2d3646;
}

.ct-series-g .ct-area {
    fill: #2d3646;
}

.ct-series-h .ct-point {
    stroke: #718093;
}

.ct-series-h .ct-line {
    stroke: #718093;
}

.ct-series-h .ct-bar {
    stroke: #718093;
}

.ct-series-h .ct-slice-donut {
    stroke: #718093;
}

.ct-series-h .ct-slice-pie {
    fill: #718093;
}

.ct-series-h .ct-slice-donut-solid {
    fill: #718093;
}

.ct-series-h .ct-area {
    fill: #718093;
}

.ct-series-i .ct-point {
    stroke: #f05b4f;
}

.ct-series-i .ct-line {
    stroke: #f05b4f;
}

.ct-series-i .ct-bar {
    stroke: #f05b4f;
}

.ct-series-i .ct-slice-donut {
    stroke: #f05b4f;
}

.ct-series-i .ct-slice-pie {
    fill: #f05b4f;
}

.ct-series-i .ct-slice-donut-solid {
    fill: #f05b4f;
}

.ct-series-i .ct-area {
    fill: #f05b4f;
}

.ct-series-j .ct-point {
    stroke: #dda458;
}

.ct-series-j .ct-line {
    stroke: #dda458;
}

.ct-series-j .ct-bar {
    stroke: #dda458;
}

.ct-series-j .ct-slice-donut {
    stroke: #dda458;
}

.ct-series-j .ct-slice-pie {
    fill: #dda458;
}

.ct-series-j .ct-slice-donut-solid {
    fill: #dda458;
}

.ct-series-j .ct-area {
    fill: #dda458;
}

.ct-series-k .ct-point {
    stroke: #eacf7d;
}

.ct-series-k .ct-line {
    stroke: #eacf7d;
}

.ct-series-k .ct-bar {
    stroke: #eacf7d;
}

.ct-series-k .ct-slice-donut {
    stroke: #eacf7d;
}

.ct-series-k .ct-slice-pie {
    fill: #eacf7d;
}

.ct-series-k .ct-slice-donut-solid {
    fill: #eacf7d;
}

.ct-series-k .ct-area {
    fill: #eacf7d;
}

.ct-series-l .ct-point {
    stroke: #86797d;
}

.ct-series-l .ct-line {
    stroke: #86797d;
}

.ct-series-l .ct-bar {
    stroke: #86797d;
}

.ct-series-l .ct-slice-donut {
    stroke: #86797d;
}

.ct-series-l .ct-slice-pie {
    fill: #86797d;
}

.ct-series-l .ct-slice-donut-solid {
    fill: #86797d;
}

.ct-series-l .ct-area {
    fill: #86797d;
}

.ct-series-m .ct-point {
    stroke: #b2c326;
}

.ct-series-m .ct-line {
    stroke: #b2c326;
}

.ct-series-m .ct-bar {
    stroke: #b2c326;
}

.ct-series-m .ct-slice-donut {
    stroke: #b2c326;
}

.ct-series-m .ct-slice-pie {
    fill: #b2c326;
}

.ct-series-m .ct-slice-donut-solid {
    fill: #b2c326;
}

.ct-series-m .ct-area {
    fill: #b2c326;
}

.ct-series-n .ct-point {
    stroke: #6188e2;
}

.ct-series-n .ct-line {
    stroke: #6188e2;
}

.ct-series-n .ct-bar {
    stroke: #6188e2;
}

.ct-series-n .ct-slice-donut {
    stroke: #6188e2;
}

.ct-series-n .ct-slice-pie {
    fill: #6188e2;
}

.ct-series-n .ct-slice-donut-solid {
    fill: #6188e2;
}

.ct-series-n .ct-area {
    fill: #6188e2;
}

.ct-series-o .ct-point {
    stroke: #a748ca;
}

.ct-series-o .ct-line {
    stroke: #a748ca;
}

.ct-series-o .ct-bar {
    stroke: #a748ca;
}

.ct-series-o .ct-slice-donut {
    stroke: #a748ca;
}

.ct-series-o .ct-slice-pie {
    fill: #a748ca;
}

.ct-series-o .ct-slice-donut-solid {
    fill: #a748ca;
}

.ct-series-o .ct-area {
    fill: #a748ca;
}

.chartist-tooltip {
    position: absolute;
    display: inline-block;
    opacity: 0;
    min-width: 12px;
    padding: 3px 12px;
    background: #2d3646;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: center;
    border-radius: 3px;
    pointer-events: none;
    z-index: 1;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.chartist-tooltip:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top-color: #2d3646;
}

.chartist-tooltip.tooltip-show {
    opacity: 1;
}

.ct-area,
.ct-line {
    pointer-events: none;
}

/* -- Chartjs chart -- */
.chartjs-chart {
    height: 350px;
}

canvas {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* -- C3 chart -- */
.c3 svg {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.c3 path {
    fill: none;
    stroke: rgba(0, 0, 0, 0.05);
}

.c3 line {
    fill: none;
    stroke: rgba(0, 0, 0, 0.05);
}

.c3-line {
    stroke-width: 3px;
}

.c3-bar {
    stroke-width: 0;
}

.c3 text {
    fill: #8a98ac;
}

.c3-chart-arc path {
    stroke: transparent;
    fill: #ffffff;
}

.c3-chart-arc .c3-gauge-value {
    fill: #ffffff;
}

.c3-chart-arc text {
    fill: #ffffff;
}

.c3-chart-arcs-title {
    font-size: 14px;
    color: #ffffff;
}

.c3-legend-item {
    font-size: 14px;
    padding-right: 10px;
}

.c3-tooltip {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
    empty-cells: show;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    opacity: 1;
    border-radius: 3px;
}

.c3-tooltip tr {
    border: none;
}

.c3-tooltip th {
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 2px 5px;
    text-align: left;
    color: #282828;
}

.c3-tooltip td {
    font-size: 13px;
    padding: 3px 6px;
    background-color: #ffffff;
    border-left: none;
    color: #8a98ac;
}

.c3-tooltip td > span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
}

.c3-tooltip td.value {
    text-align: right;
}

/* -- Flot chart -- */
.flot-chart {
    height: 320px;
}

.flot-chart .legend div {
    background-color: transparent !important;
}

.flotTip {
    padding: 3px 5px;
    background-color: #ffffff;
    z-index: 100;
    color: #ffffff;
    opacity: 0.8;
    filter: alpha(opacity=85);
    font-size: 14px;
}

.legendLabel {
    color: #8a98ac;
    font-size: 14px;
}

/* -- Morris chart -- */
.morris-chart {
    width: 100%;
    height: 320px;
}

.morris-chart tspan {
    font-family: "Poppins", sans-serif;
    color: #8a98ac;
    font-size: 14px;
    font-weight: 400;
}

.morris-hover.morris-default-style {
    border-radius: 3px;
    padding: 10px;
    color: #ffffff;
    background: #2d3646;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    text-align: center;
}

.morris-hover.morris-default-style .morris-hover-point {
    font-weight: 400;
    font-size: 14px;
    color: #8a98ac !important;
}

.morris-hover.morris-default-style .morris-hover-row-label {
    background-color: #2d3646;
    font-weight: 500;
    color: #ffffff;
    padding: 5px;
    border-radius: 3px 3px 0 0;
    margin: -5px -5px 0;
}

/* -- jQuery Knob Chart -- */
.knob {
    font: 600 30px "Poppins", sans-serif !important;
}

.knob-superpose {
    position: relative;
    width: 150px;
    margin: 0 auto;
}

.knob-superpose .knob-minute {
    position: absolute;
    left: 30px;
    top: 30px;
}

.knob-superpose .knob-second {
    position: absolute;
    left: 55px;
    top: 55px;
}

/* -- jQuery Sparkline Chart -- */
.jqstooltip {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border: none !important;
    border-radius: 3px !important;
    background-color: #282828 !important;
    padding: 5px 10px !important;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.jqsfield {
    font: 12px poppins !important;
    color: #ffffff !important;
    text-align: center !important;
}

/*
-------------------------------
    : Custom - Chat css :
-------------------------------
*/
.chat-list {
    background-color: #ffffff;
    border-radius: 3px;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.chat-list .chat-search {
    padding: 21px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-list .chat-search input[type="search"] {
    background-color: rgba(113, 128, 147, 0.1);
    color: #8a98ac;
    font-size: 16px;
    padding-left: 20px;
    border: none;
    border-radius: 3px 0 0 3px;
}

.chat-list .chat-search ::placeholder {
    color: #8a98ac;
}

.chat-list .chat-search .input-group-append {
    margin-left: 0px;
}

.chat-list .chat-search .btn {
    background-color: rgba(113, 128, 147, 0.1);
    color: #8a98ac;
    font-size: 18px;
    border-radius: 0 3px 3px 0;
    padding: 5px 15px 3px 5px;
    box-shadow: none;
    z-index: 0;
}

.chat-list .chat-user-list li {
    padding: 15px 30px;
}

.chat-list .chat-user-list li img {
    width: 35px;
    margin-right: 10px;
}

.chat-list .chat-user-list li h5 {
    font-size: 16px;
    margin-bottom: 3px;
}

.chat-list .chat-user-list li h5 .timing {
    color: #8a98ac;
    float: right;
    font-size: 12px;
    margin-top: 3px;
}

.chat-list .chat-user-list li p {
    margin-bottom: 0;
}

.chat-list .chat-user-list li:hover {
    background-color: rgba(113, 128, 147, 0.1);
}

.chat-detail {
    background-color: #ffffff;
    border-radius: 3px;
    margin-bottom: 30px;
}

.chat-detail .chat-head {
    padding: 15px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-detail.order-chat-detail .chat-body {
    padding: 0 20px;
}

.chat-detail .chat-body {
    padding: 30px 40px;
}

.chat-detail .chat-body .chat-message {
    margin-bottom: 20px;
}

.chat-detail .chat-body .chat-message .chat-message-text {
    background-color: #dcdde1;
    color: #282828;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 3px;
    position: relative;
}

.chat-detail .chat-body .chat-message .chat-message-meta {
    margin-top: 5px;
    font-size: 14px;
}

.chat-detail .chat-body .chat-message.chat-message-left {
    text-align: left;
}

.chat-detail
    .chat-body
    .chat-message.chat-message-left
    .chat-message-text:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: -10px;
    right: auto;
    top: auto;
    bottom: 0;
    border: 6px solid #dcdde1;
    border-color: transparent #dcdde1 #dcdde1 transparent;
}

.chat-detail .chat-body .chat-message.chat-message-right {
    text-align: right;
}

.chat-detail .chat-body .chat-message.chat-message-right .chat-message-text {
    background-color: #00999a;
    color: #ffffff;
}

.chat-detail
    .chat-body
    .chat-message.chat-message-right
    .chat-message-text:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: -10px;
    top: auto;
    bottom: 0;
    border: 6px solid #00999a;
    border-color: transparent transparent #00999a #00999a;
}

.chat-detail .chat-body .chat-message.chat-message-right .chat-message-meta {
    text-align: right;
}

.chat-detail .chat-bottom {
    padding: 15px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-detail .chat-bottom .chat-messagebar input[type="text"] {
    background-color: transparent;
    color: #8a98ac;
    font-size: 16px;
    border: none;
    border-radius: 0;
}

.chat-detail .chat-bottom .chat-messagebar ::placeholder {
    color: #8a98ac;
}

.chat-detail .chat-bottom .chat-messagebar .input-group-append {
    margin-left: 0px;
}

.chat-detail .chat-bottom .chat-messagebar .btn {
    border-radius: 50% !important;
    margin: 0 5px;
}

/*
---------------------------------
    : Custom - Collapse css :
---------------------------------
*/
.accordion > .card {
    overflow: hidden;
}

.accordion > .card .card-header {
    background-color: rgba(113, 128, 147, 0.1);
    border: none;
    padding: 0;
    margin-bottom: 0;
}

.accordion > .card h2 {
    line-height: 20px;
}

.accordion > .card h2 .btn-link {
    font-size: 16px;
    font-weight: 600;
    color: #00999a;
    width: 100%;
    text-align: left;
    padding: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid transparent;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
}

.accordion > .card h2 .btn-link.collapsed {
    color: #282828;
}

.accordion > .card h2 .btn-link:hover {
    text-decoration: none;
}

.accordion > .card h2 .btn-link:focus {
    text-decoration: none;
}

.accordion > .card .collapse {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.accordion > .card .collapse.show {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion > .card:last-of-type h2 .btn-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion > .card:last-of-type .collapse {
    border-bottom: 1px solid transparent;
}

.accordion > .card:last-of-type .collapse.show {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion.accordion-outline > .card {
    border-radius: 0;
    margin-bottom: 10px;
}

.accordion.accordion-outline > .card .card-header {
    background-color: transparent;
}

.accordion.accordion-outline > .card h2 {
    line-height: 20px;
}

.accordion.accordion-outline > .card h2 .btn-link {
    border-top: 1px solid #00999a;
    border-left: 1px solid #00999a;
    border-bottom: 1px solid #00999a;
    border-right: 1px solid #00999a;
}

.accordion.accordion-outline > .card h2 .btn-link.collapsed {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.accordion.accordion-outline > .card .collapse {
    border-left: 1px solid #00999a;
    border-bottom: 1px solid #00999a;
    border-right: 1px solid #00999a;
}

.accordion.accordion-outline > .card:last-of-type .collapse {
    border-bottom: 1px solid transparent;
}

.accordion.accordion-outline > .card:last-of-type .collapse.show {
    border-bottom: 1px solid #00999a;
}

.accordion.accordion-light > .card {
    border-radius: 0;
    margin-bottom: 10px;
}

.accordion.accordion-light > .card .card-header {
    background-color: transparent;
}

.accordion.accordion-light > .card h2 {
    line-height: 20px;
}

.accordion.accordion-light > .card h2 .btn-link {
    padding: 15px 0;
    border-top: none;
    border-left: none;
    border-bottom: 1px solid #00999a;
    border-right: none;
}

.accordion.accordion-light > .card h2 .btn-link.collapsed {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.accordion.accordion-light > .card .collapse {
    border-left: none;
    border-bottom: none;
    border-right: none;
}

.accordion.accordion-light > .card:last-of-type .collapse {
    border-bottom: none;
}

/*
----------------------------------
    : Custom - Dashboard css :
----------------------------------
*/
.dash-social-icon {
    margin-top: 15px;
    margin-bottom: 30px;
}

.dash-social-icon i {
    background-color: #00999a40;
    color: #00999a;
    border-radius: 50%;
    font-size: 24px;
    padding: 14px 15px;
}

.dash-flag-icon .flag {
    display: inline-block;
    font-size: 18px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    background-color: #ffffff;
    border-radius: 50%;
}

.dash-analytic-icon {
    margin-top: 15px;
    margin-bottom: 30px;
}

.dash-analytic-icon i {
    border-radius: 50%;
    font-size: 24px;
    padding: 14px 15px;
}

.analytic-chart-label .analytic-label-perform {
    margin-bottom: 0;
    text-align: center;
}

.analytic-chart-label .list-inline {
    text-align: center;
}

.analytic-chart-label .analytic-chart-piety {
    text-align: right;
}

.ecommerce-widget .card-header {
    border-bottom: none;
}

.ecommerce-widget .card-header .dash-analytic-icon {
    margin-top: 20px;
    margin-bottom: 20px;
}

.ecommerce-widget .card-footer {
    border-top: none;
}

.product-file-type .img-icon {
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-weight: 600;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
}

.ecommerce-upload .dropzone {
    min-height: 278px;
    border-top: 1px dashed #00999a;
    border-right: 1px dashed #00999a;
    border-left: 1px dashed #00999a;
    border-bottom: none;
    background: #00999a40;
    border-radius: 0;
    margin: 0 1px 0 0;
}

.ecommerce-upload .dropzone .dz-message {
    font-size: 20px;
}

.ecommerce-upload img {
    margin-top: -22%;
    width: 100%;
}

#latestorder_wrapper .dataTables_length {
    display: none !important;
}

#topproducts_wrapper .dataTables_length {
    display: none !important;
}

/*
-----------------------------------
    : Custom - eCommerce css :
-----------------------------------
*/
.product-bar .product-head p {
    position: relative;
    text-align: center;
    margin-top: -60px;
    margin-bottom: 40px;
}

.ecommerce-sortby {
    margin-bottom: 30px;
}

.ecommerce-sortby .button-list {
    text-align: right;
}

.ecommerce-sortby .button-list .btn {
    margin-bottom: 0;
}

.ecommerce-pagination p {
    margin-bottom: 0;
}

.ecommerce-pagination .pagination {
    float: right;
}

.product-slider-box.product-box-for .product-preview img {
    width: 100%;
}

.product-slider-box.product-box-for .product-preview p {
    position: relative;
    text-align: center;
    margin-top: -60px;
    margin-bottom: 50px;
}

.product-slider-box.product-box-nav .product-preview img {
    padding: 0 5px;
}

.rating-average span {
    font-weight: 600;
    border-radius: 50%;
    font-size: 18px;
    padding: 15px;
}

.cart-container {
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.cart-container .cart-body {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px 0 20px;
    margin: 20px 0 30px;
}

.cart-qty {
    width: 75px;
}

.forgot-psw-link {
    text-align: right;
}

.partition {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: 600;
}

.partition hr {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.partition h6 {
    position: relative;
    margin-top: -27px;
}

.partition h6 span {
    background-color: #ffffff;
    padding: 0 10px;
}

.jp-card .jp-card-front {
    background: #718093 !important;
}

.jp-card .jp-card-back {
    background: #718093 !important;
}

/* My Account CSS */
.ecom-dashboard-widget i {
    font-size: 40px;
    margin-right: 20px;
}

.ecom-dashboard-widget h5 {
    font-size: 18px;
    color: #282828;
    margin-bottom: 5px;
}

.ecom-dashboard-widget p {
    margin-bottom: 0;
}

.ecom-dashboard-widget:hover {
    color: #00999a;
}

.ecom-dashboard-widget:hover h5 {
    color: #00999a;
}

.order-box .card-header h5 {
    margin-bottom: 0;
}

.order-box .card-header h6 {
    text-align: right;
}

.order-box .card-footer h5 {
    margin-bottom: 0;
    font-size: 16px;
}

.order-box .card-footer h6 {
    text-align: right;
}

.wallet-box {
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px;
    margin-top: 60px;
    border-radius: 3px;
}

.wallet-box h4 {
    margin-bottom: 0;
}

.wallet-box p {
    text-align: right;
}

.ecom-notification-box .media {
    padding: 15px;
}

.ecom-notification-box .media:hover {
    background-color: rgba(188, 196, 220, 0.1);
}

.ecom-notification-box .media .action-icon {
    width: 46px;
    height: 46px;
    line-height: 38px;
    font-weight: 600;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
}

.ecom-notification-box .media h5 {
    font-size: 16px;
    color: #282828;
    margin-top: 12px;
    margin-bottom: 5px;
}

.ecom-notification-box .media p {
    margin-bottom: 0;
}

.ecom-notification-box .media p span {
    margin-right: 8px;
}

@media (max-width: 1199px) {
    .ecommerce-sortby .button-list {
        margin-top: 15px;
        text-align: left;
    }

    .ecommerce-pagination p {
        margin-bottom: 15px;
    }

    .ecommerce-pagination .pagination {
        float: none;
    }
}

@media (max-width: 767px) {
    .profilebox img {
        width: 100px;
    }

    .cart-container {
        padding: 10px;
    }
}

@media (max-width: 575px) {
    .order-box .card-header h5 {
        text-align: center;
        margin-bottom: 10px;
    }

    .order-box .card-header h6 {
        text-align: center;
    }

    .order-box .card-footer h5 {
        text-align: center;
        margin-bottom: 15px;
    }

    .order-box .card-footer h6 {
        text-align: center;
    }

    .wallet-box h4 {
        text-align: center;
        margin-bottom: 15px;
    }

    .wallet-box p {
        text-align: center;
    }

    .forgot-psw-link {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .jp-card {
        left: -80px;
    }
}

/*
-------------------------------
    : Custom - Emails css :
-------------------------------
*/
.email-leftbar ul li {
    border: none;
    padding: 12px 0 !important;
    background-color: transparent;
}

.email-leftbar ul li a {
    color: #8a98ac;
}

.email-leftbar ul li a:hover {
    color: #00999a;
}

.email-leftbar ul li a.active {
    color: #00999a;
}

.email-rightbar .card-header ul li a i {
    padding: 8px 5px;
    color: #8a98ac;
}

.email-rightbar .card-header ul li a:hover i {
    color: #00999a;
}

.email-rightbar .card-body tr td {
    color: #8a98ac;
    vertical-align: top;
}

.email-rightbar .card-body tr td a {
    color: #8a98ac;
}

.email-rightbar .card-body tr:hover {
    background-color: rgba(113, 128, 147, 0.1);
}

.email-rightbar .card-body tr.email-unread td {
    font-weight: 600;
    color: #2d3646;
}

.email-rightbar .card-body tr.email-unread td a {
    color: #2d3646;
}

.email-rightbar .email-open-box .media img {
    width: 50px;
    border-radius: 50%;
}

.email-rightbar .email-open-box .open-email-head ul {
    text-align: right;
}

.email-rightbar .email-open-box .open-email-head ul li a i {
    color: #8a98ac;
}

.email-rightbar .email-open-box .open-email-head ul li a:hover i {
    color: #00999a;
}

.email-rightbar .email-open-box .open-email-head ul {
    text-align: right;
}

.email-rightbar .email-open-box .open-email-head ul li a i {
    color: #8a98ac;
}

.email-rightbar .email-open-box .open-email-head ul li a:hover i {
    color: #00999a;
}

/*
-----------------------------------------
    : Custom - Form Colorpicker css :
-----------------------------------------
*/
.colorpicker-input-addon:before {
    height: 20px;
    width: 20px;
    border-radius: 3px;
}

.colorpicker-input-addon i {
    height: 20px;
    width: 20px;
    border-radius: 3px;
}

.colorpicker-saturation {
    border-radius: 5px;
    box-shadow: none;
    cursor: pointer;
}

.colorpicker-saturation .colorpicker-guide {
    height: 10px;
    width: 10px;
    box-shadow: none;
}

.colorpicker-hue {
    border-radius: 5px;
    box-shadow: none;
    cursor: pointer;
}

.colorpicker-hue .colorpicker-guide {
    height: 5px;
}

.colorpicker-alpha {
    cursor: pointer;
}

.colorpicker-alpha .colorpicker-alpha-color {
    border-radius: 5px;
    box-shadow: none;
}

.colorpicker-alpha .colorpicker-guide {
    height: 5px;
}

.colorpicker-bar {
    border-radius: 5px;
    box-shadow: none;
}

.colorpicker-bar > div {
    border-radius: 5px;
    box-shadow: none;
}

/*
-----------------------------------------
    : Custom - Form Date Picker css :
-----------------------------------------
*/
.datepicker {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #8a98ac;
    border: none;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.datepicker--day-name {
    color: #00999a;
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
}

.datepicker--cell-day.-other-month- {
    color: #dcdde1;
}

.datepicker--cell-year.-other-decade- {
    color: #dcdde1;
}

.datepicker--nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.datepicker--nav .datepicker--nav-title {
    color: #282828;
    border-radius: 50px;
    font-weight: 700;
}

.datepicker--nav .datepicker--nav-title i {
    font-style: normal;
    color: #282828;
    margin-left: 5px;
}

.datepicker--nav-action:hover {
    background: transparent;
}

.datepicker--nav-title:hover {
    background: transparent;
}

.datepicker--pointer {
    border-top: none;
    border-right: none;
    background: #ffffff;
}

.datepicker--cell {
    border-radius: 50px;
}

.datepicker--cell.-selected- {
    color: #ffffff;
    background: #00999a;
}

.datepicker--cell.-selected-.-current- {
    color: #ffffff;
    background: #00999a;
}

.datepicker--cell.-selected-.-focus- {
    background: #00999a;
}

.datepicker--cell.-focus- {
    background: transparent;
    color: #282828;
}

.datepicker--cell.-current- {
    color: #00999a;
}

.datepicker--cell.-range-from- {
    border: 1px solid #00999a;
    background-color: #00999a;
    border-radius: 50px 0 0 50px;
}

.datepicker--cell.-range-to- {
    border: 1px solid #00999a;
    background-color: #00999a;
    border-radius: 0 50px 50px 0;
    color: #ffffff;
}

.datepicker--cell.-in-range- {
    background: #00999a40;
    color: #282828;
    border-radius: 0;
}

.datepicker--time-current-hours {
    font-family: "Poppins", sans-serif;
}

.datepicker--time-current-minutes {
    font-family: "Poppins", sans-serif;
}

.datepicker--buttons {
    border-top: 1px solid #eaeaed;
    padding: 5px;
}

.datepicker--time {
    border-top: 1px solid #eaeaed;
    padding: 5px;
}

.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
    color: #ffffff;
    background: #e9ecfa;
}

.datepicker--time-row {
    background: linear-gradient(to right, #dcdde1, #dcdde1) left 50%/100% 1px
        no-repeat;
}

.datepicker--time-row input[type="range"]:hover::-webkit-slider-thumb {
    background: #00999a;
    border-color: #00999a;
}

.datepicker--time-row input[type="range"]:hover::-moz-range-thumb {
    background: #00999a;
    border-color: #00999a;
}

.datepicker--time-row input[type="range"]:hover::-ms-thumb {
    background: #00999a;
    border-color: #00999a;
}

.datepicker--time-row input[type="range"]:focus::-webkit-slider-thumb {
    background: #00999a;
    border-color: #00999a;
}

.datepicker--time-row input[type="range"]:focus::-moz-range-thumb {
    background: #00999a;
    border-color: #00999a;
}

.datepicker--time-row input[type="range"]:focus::-ms-thumb {
    background: #00999a;
    border-color: #00999a;
}

.datepicker--time-row input[type="range"]::-webkit-slider-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 50px;
    border: 1px solid #00999a;
    background: #ffffff;
    cursor: pointer;
    transition: background 0.2s;
}

.datepicker--time-row input[type="range"]::-moz-range-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 50px;
    border: 1px solid #00999a;
    background: #ffffff;
    cursor: pointer;
    transition: background 0.2s;
}

.datepicker--time-row input[type="range"]::-ms-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 50px;
    border: 1px solid #00999a;
    background: #ffffff;
    cursor: pointer;
    transition: background 0.2s;
}

.datepicker-inline .datepicker {
    border-color: transparent;
    box-shadow: none;
    position: static;
    left: auto;
    right: auto;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    width: 100%;
}

.datepicker-inline .datepicker .datepicker--day-name {
    color: #00999a;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}

.datepicker-inline .datepicker .datepicker--cell-day {
    width: 14.28571%;
    height: 43px;
}

.datepicker-inline .datepicker .datepicker--cell.-current- {
    color: #00999a;
    background-color: transparent;
}

.datepicker-inline .datepicker .datepicker--nav-title {
    border-radius: 15px;
    padding: 4px 15px;
    font-size: 16px;
}

/*
-------------------------------------
    : Custom - Form Editors css :
-------------------------------------
*/
.mce-panel {
    border-color: rgba(0, 0, 0, 0.05) !important;
    background-color: #ffffff !important;
    border-radius: 3px !important;
}

.mce-flow-layout-item {
    margin: 5px 0 5px 5px !important;
}

.mce-menubar .mce-menubtn {
    border-color: transparent !important;
    background: #dcdde1 !important;
    border-radius: 3px;
}

.mce-menubar .mce-menubtn button span {
    color: #8a98ac !important;
}

.mce-btn {
    border: 1px solid transparent !important;
    background-color: #dcdde1 !important;
    border-radius: 3px;
}

.mce-btn .mce-txt {
    color: #8a98ac !important;
}

.mce-btn button {
    padding: 5px 10px !important;
}

.mce-btn-group .mce-btn {
    margin-left: 5px !important;
}

.mce-btn-group:not(:first-child) {
    border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding-left: 0 !important;
}

.mce-caret {
    border-top-color: #8a98ac !important;
}

.mce-ico {
    color: #8a98ac !important;
}

.mce-label {
    text-shadow: none !important;
    color: #282828 !important;
}

.mce-menu-item .mce-ico {
    color: #8a98ac !important;
}

.mce-menu-item .mce-text {
    color: #8a98ac !important;
}

.mce-menu-item:hover {
    background-color: #00999a !important;
}

.mce-menu-item:hover .mce-ico {
    color: #ffffff !important;
}

.mce-menu-item:hover .mce-text {
    color: #ffffff !important;
}

.mce-menu-item.mce-selected {
    background-color: #00999a !important;
}

.mce-menu-item.mce-selected .mce-ico {
    color: #ffffff !important;
}

.mce-menu-item.mce-selected .mce-text {
    color: #ffffff !important;
}

.mce-menu-item:focus {
    background-color: #00999a !important;
}

.mce-menu-item:focus .mce-ico {
    color: #ffffff !important;
}

.mce-menu-item:focus .mce-text {
    color: #ffffff !important;
}

.mce-grid-border a {
    border-color: #8a98ac !important;
}

.mce-grid-border a:hover {
    border-color: #00999a !important;
    background: #00999a !important;
}

.mce-grid-border a.mce-active {
    border-color: #00999a !important;
    background: #00999a !important;
}

/*
--------------------------------------
    : Custom - Form Elements css :
--------------------------------------
*/
label {
    font-weight: 500;
}

input:-internal-autofill-selected {
    background-color: transparent !important;
    color: #8a98ac !important;
}

.form-control {
    background-color: #ffffff;
    font-size: 16px;
    color: #8a98ac;
    border: 1px solid rgb(0 0 0 / 48%);
    border-radius: 3px;
    min-height: 38px;
    padding: 6px;
}

.form-control:focus {
    border-color: #00999a;
    box-shadow: none !important;
}

.form-control:focus:disabled {
    background-color: #dcdde1;
    opacity: 1;
}

.form-control:disabled {
    background-color: #dcdde1;
    opacity: 1;
}

.form-control[readonly] {
    background-color: #dcdde1;
    opacity: 1;
}

.form-control .form-check-input {
    margin-top: 0.25rem;
}

.form-control::placeholder {
    font-size: 14px;
}

.form-control-plaintext {
    color: #8a98ac;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #00999a;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #00999a;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #ffffff;
    background-color: #00999a;
    border-color: #00999a;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem #d5daf5;
}

.custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #dcdde1;
    border-color: rgba(0, 0, 0, 0.05);
}

.custom-control-label::before {
    background-color: transparent;
    border: 1px solid #8a98ac;
}

.custom-control-label::before:focus {
    border-color: #00999a;
}

.input-group-addon {
    border-radius: 5px;
    border: none;
}

.input-group-text {
    border: 1px solid #dcdde1;
    background: #e4e5e8;
    color: #8a98ac;
}

.custom-select {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #8a98ac;
}

.custom-select:focus {
    border-color: #00999a;
    outline: 0;
    box-shadow: none;
}

.custom-file-label {
    color: #8a98ac;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.23);
    line-height: 1.6;
    font-weight: 400;
}

.custom-file-label::after {
    background-color: #00999a;
    border: none;
    color: #ffffff;
    height: 37px;
    line-height: 24px;
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: #00999a;
    box-shadow: none !important;
}

.custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #ceecd7;
    color: #8a98ac;
}

.custom-file-input.is-invalid ~ .custom-file-label .form-control[readonly] {
    background-color: #dcdde1;
    opacity: 1;
}

.custom-select.is-valid {
    border-color: #ceecd7;
    background-color: #ffffff;
}

.custom-select.is-valid:focus {
    border-color: #5fc27e;
}

.form-control.is-valid {
    border-color: #ceecd7;
    background-color: #ffffff;
}

.form-control.is-valid:focus {
    border-color: #5fc27e;
}

.was-validated .custom-select:valid {
    border-color: #ceecd7;
    background-color: #ffffff;
}

.was-validated .custom-select:valid:focus {
    border-color: #5fc27e;
    box-shadow: none !important;
}

.was-validated .custom-select:invalid {
    border-color: #fdd5d8;
    background-color: #ffffff;
}

.was-validated .custom-select:invalid:focus {
    border-color: #f44455;
    box-shadow: none !important;
}

.was-validated .form-control:valid {
    border-color: #ceecd7;
    background-color: #ffffff;
}

.was-validated .form-control:valid:focus {
    border-color: #5fc27e;
}

.was-validated .form-control:invalid {
    border-color: #fdd5d8;
    background-color: #ffffff;
}

.was-validated .form-control:invalid:focus {
    border-color: #f44455;
}

.was-validated .custom-control-input:valid ~ .custom-control-label {
    color: #5fc27e;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label {
    color: #f44455;
}

.was-validated
    .custom-control-input:valid:checked
    ~ .custom-control-label::before {
    background-color: #5fc27e;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label {
    border-color: #fdd5d8;
    color: #8a98ac;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
    border-color: #f44455;
}

.valid-feedback {
    color: #5fc27e;
}

.custom-select.is-invalid {
    border-color: #fdd5d8;
    background-color: #ffffff;
}

.form-control.is-invalid {
    border-color: #fdd5d8;
    background-color: #ffffff;
}

.form-control.is-invalid:focus {
    border-color: #f44455;
}

.valid-tooltip {
    background-color: #71c98d;
}

.invalid-tooltip {
    background-color: #f55c6b;
}

.custom-control-input.is-valid ~ .custom-control-label {
    color: #5fc27e;
}

.custom-control-input.is-invalid ~ .custom-control-label {
    color: #f44455;
}

.custom-control-input.is-invalid ~ .custom-control-label::before {
    background-color: #f44455;
}

.custom-control-input.is-valid:checked ~ .custom-control-label::before {
    background-color: #5fc27e;
}

.invalid-feedback {
    color: #f44455;
}

.form-check-input.is-invalid ~ .form-check-label {
    color: #f44455;
}

.was-validated .form-check-input:invalid ~ .form-check-label {
    color: #f44455;
}

.editable-click,
a.editable-click,
a.editable-click:hover {
    border-bottom: dashed 1px #00999a;
}

.editable-empty,
.editable-empty:hover,
.editable-empty:focus {
    color: #f44455;
}

.editable-submit {
    padding: 4px 8px;
}

.editable-cancel {
    padding: 4px 8px;
}

.custom-range {
    width: 100%;
    height: calc(1rem + 0.4rem);
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-range:focus {
    outline: 0;
}

.custom-range:focus::-webkit-slider-thumb,
.custom-range:focus::-moz-range-thumb,
.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem #d5daf5;
}

.custom-range::-moz-focus-outer {
    border: 0;
}

.custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #00999a;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}

.custom-range::-webkit-slider-thumb:active {
    background-color: #dcdde1;
}

.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dcdde1;
    border-color: transparent;
    border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
    appearance: none;
}

.custom-range::-moz-range-thumb:active {
    background-color: #b3d7ff;
}

.custom-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}

.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}

.custom-range::-ms-thumb:active {
    background-color: #b3d7ff;
}

.custom-range::-ms-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
    background-color: #dee2e6;
    border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dee2e6;
    border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
    cursor: default;
}

.custom-range:disabled::-ms-thumb {
    background-color: #adb5bd;
}

input[type="range"] {
    appearance: none;
    -webkit-appearance: none;
    color: rgba(0, 0, 0, 0.05);
    background-color: rgba(0, 0, 0, 0.05);
    height: 5px;
    cursor: default;
    padding: initial;
    border: initial;
    margin: 2px;
}

input[type="range"]:focus {
    background-color: rgba(0, 0, 0, 0.05);
}

/*
-------------------------------------
    : Custom - Form Selects css :
-------------------------------------
*/
.select2-container {
    width: 100% !important;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
    line-height: 38px;
    margin-top: 0;
    line-height: 38px;
    color: #282828;
}

.select2-container .select2-selection--single {
    border: none;
    height: 38px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    padding-left: 15px;
    color: #8a98ac;
}

.select2-container .select2-selection--multiple {
    border: none;
    min-height: 38px;
}

.select2-container--default.select2-container--focus
    .select2-selection--multiple {
    border: 1px solid #00999a;
    outline: 0;
    background-color: #ffffff;
}

.select2-container--default .select2-selection--multiple {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    cursor: text;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__rendered {
    padding: 0 15px;
    vertical-align: bottom;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: #00999a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 2px 10px;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice__remove {
    color: #ffffff;
    margin-right: 5px;
}

.select2-container--default .select2-selection--single {
    background-color: #ffffff;
    font-size: 16px;
    color: #8a98ac;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 38px;
    width: 30px;
    top: 0;
    right: 0;
}

.select2-container--default .select2-results__option {
    padding: 6px 15px;
    font-size: 14px;
}

.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background-color: #00999a !important;
    color: #ffffff;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: rgba(0, 0, 0, 0.05);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    color: #282828;
}

.select2-dropdown {
    background-color: #ffffff;
    border: none;
    border-radius: 3px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

/* --- Tags Input -- */
.bootstrap-tagsinput {
    background-color: #ffffff;
    font-size: 12px;
    color: #8a98ac;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 0.375rem 0.75rem;
    line-height: 24px;
    box-shadow: none;
    width: 100%;
}

.bootstrap-tagsinput.focus {
    border: 1px solid #00999a;
}

.bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: #ffffff;
    background-color: #00999a;
    border-radius: 5px;
    padding: 4px 10px;
    line-height: 25px;
}

.bootstrap-tagsinput .tag.label.label-success {
    background-color: #5fc27e;
}

.bootstrap-tagsinput .tag.label.label-danger {
    background-color: #f44455;
}

.bootstrap-tagsinput .tag.label.label-warning {
    background-color: #fcc100;
}

.bootstrap-tagsinput .tag.label.label-default {
    background-color: #72d0fb;
}

.tt-menu {
    border: 1px solid #eaeaed;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.tt-suggestion {
    color: #282828;
}

.tt-suggestion:hover,
.tt-suggestion:focus {
    background-color: #00999a;
}

/*
-----------------------------------------
    : Custom - Form File Upload css :
-----------------------------------------
*/
/* -- Dropzone -- */
.dropzone {
    min-height: 250px;
    border: 2px dashed rgba(0, 0, 0, 0.05);
    background: white;
    border-radius: 6px;
}

.dropzone .dz-message {
    font-size: 30px;
}

/*
----------------------------------------
    : Custom - Form Validation css :
----------------------------------------
*/
.error {
    color: ff0000;
}

.parsley-error {
    border-color: #f44455;
}

.parsley-errors-list {
    display: none;
    margin: 0;
    padding: 0;
}

.parsley-errors-list > li {
    font-size: 12px;
    list-style: none;
    color: #f44455;
    margin-top: 5px;
}

.parsley-errors-list.filled {
    display: block;
}

/*
------------------------------------
    : Custom - Form Wizard css :
------------------------------------
*/
.wizard > .steps {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.wizard > .steps .form-wizard-line {
    height: 3px;
    background-color: #dcdde1;
    -webkit-transform: translateY(1.7rem);
    transform: translateY(1.7rem);
    margin: 0 15%;
    position: relative;
    z-index: 0;
    top: 26px;
}

.wizard > .steps > ul > li {
    display: flex;
    z-index: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    flex-basis: auto;
    font-weight: 500;
    font-size: 1.1rem;
}

.wizard > .steps a {
    display: block;
    width: auto;
    background-color: #eaeaed;
    color: #8a98ac;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 0;
    text-decoration: none;
    border-radius: 30px;
    cursor: default;
    text-align: center;
}

.wizard > .steps .current a {
    color: #282828;
    cursor: default;
}

.wizard > .steps .current a .number {
    background: #00999a;
    color: #ffffff;
}

.wizard > .steps .done a {
    color: #282828;
}

.wizard > .steps .done a .number {
    background: #dcdde1;
    color: #8a98ac;
}

.wizard > .steps .current-info {
    position: absolute;
    left: -999em;
}

.wizard > .steps .number {
    background-color: #dcdde1;
    color: #8a98ac;
    font-size: 20px;
    font-weight: 600;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 15px auto;
}

.wizard ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
    display: flex;
}

.wizard > .actions {
    position: relative;
    display: block;
    text-align: right;
}

.wizard > .actions > ul {
    display: inline-block;
    text-align: right;
}

.wizard > .actions > ul > li {
    display: inline-block;
    margin: 0 0 15px 15px;
}

.wizard > .actions > ul > li:first-child a {
    background-color: #00999a40;
    border: none;
    color: #00999a;
    box-shadow: none;
}

.wizard > .actions a {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 3px;
    color: #ffffff;
    background-color: #00999a;
    border: none;
    box-shadow: none;
}

.wizard > .actions .disabled a {
    display: none;
}

.wizard > .content {
    background: #ffffff;
    display: block;
    padding: 30px;
    margin: 30px 0;
    border-radius: 3px;
    min-height: 250px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.wizard > .content > .title {
    position: absolute;
    left: -999em;
}

.wizard > .content > .body ul {
    display: block !important;
}

.wizard > .content > .body ul > li {
    line-height: 30px;
}

.wizard > .content > .body ul.nav-pills {
    display: flex !important;
}

.tabcontrol ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.tabcontrol > .steps .current-info {
    position: absolute;
    left: -999em;
}

.tabcontrol > .content > .title {
    position: absolute;
    left: -999em;
}

/* -- Vertical Wizard -- */
.wizard.vertical > .steps {
    display: inline;
    float: left;
    width: 30%;
    padding: 10px;
}

.wizard.vertical > .steps > ul {
    display: block;
}

.wizard.vertical > .steps > ul > li {
    display: block;
}

.wizard.vertical > .steps > ul > li a {
    display: block;
    text-align: left;
}

.wizard.vertical > .steps > ul > li a .number {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 10px;
}

.wizard.vertical > .content {
    display: inline;
    float: left;
    margin: 0 2.5% 30px 2.5%;
    width: 65%;
}

.wizard.vertical > .actions {
    display: inline;
    float: right;
    margin: 0 2.5%;
    width: 95%;
}

/* -- Responsive Wizard -- */
@media (max-width: 991px) {
    .wizard.vertical > .content {
        width: 100%;
        margin: 30px 0;
    }

    .wizard.vertical > .steps {
        width: 100%;
    }

    .wizard > .steps > ul > li {
        width: 100%;
    }
}

/*
-------------------------------
    : Custom - Gallery css :
-------------------------------
*/
.gallery-filter ul {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-filter ul .filter-item {
    line-height: 46px;
    text-transform: capitalize;
    cursor: pointer;
    color: #282828 !important;
    font-weight: 600;
    border-radius: 0;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    padding: 0.7rem 0;
    margin-right: 1.5rem;
}

.gallery-filter ul .filter-item:hover {
    color: #00999a !important;
    border-bottom: 2px solid #00999a;
}

.gallery-filter ul .filter-item.current {
    color: #00999a !important;
    border-bottom: 2px solid #00999a;
}

.gallery-box {
    overflow: hidden;
    position: relative;
    padding: 0;
    border-radius: 3px;
    margin-bottom: 30px;
    transition: transform 0.8s;
}

.gallery-box .gallery-preview {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.gallery-box .gallery-preview img {
    transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.gallery-box .gallery-preview:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.gallery-box .gallery-content {
    opacity: 0;
    color: #ffffff;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    overflow: hidden;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.gallery-box .gallery-content p {
    margin-bottom: 0;
    color: #ccc;
    font-size: 15px;
}

.gallery-box .gallery-content h5 {
    margin-bottom: 0;
    margin-top: 5px;
}

.gallery-box .gallery-content h5 a {
    font-size: 18px;
    color: #ffffff;
}

.gallery-box:hover {
    transform: scale(1.1);
}

.gallery-box:hover .gallery-preview img {
    transform: scale(1.1);
}

.gallery-box:hover .gallery-preview:after {
    background: rgba(110, 129, 220, 0.8);
}

.gallery-box:hover .gallery-content {
    transform: translateY(-100%);
    z-index: 3;
    opacity: 1;
}

/*
--------------------------------
    : Custom - Invoice css :
--------------------------------
*/
.invoice .invoice-logo img {
    width: 120px;
    margin-bottom: 20px;
}

.invoice .invoice-head {
    margin-top: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.invoice .invoice-head .invoice-name {
    text-align: right;
}

.invoice .invoice-billing {
    margin-top: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.invoice .invoice-billing .invoice-address {
    margin-bottom: 30px;
}

.invoice .invoice-summary {
    padding-top: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.invoice .invoice-summary-total {
    padding-top: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.invoice .invoice-meta {
    padding-top: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.invoice .invoice-meta .invoice-meta-box {
    margin-bottom: 30px;
}

.invoice .invoice-footer {
    padding-top: 20px;
}

.invoice .invoice-footer .invoice-footer-btn {
    text-align: right;
}

@media (max-width: 767px) {
    .invoice .invoice-head .invoice-name {
        margin-top: 30px;
        text-align: left;
    }

    .invoice .invoice-meta {
        text-align: left;
    }

    .invoice .invoice-footer {
        text-align: center;
    }

    .invoice .invoice-footer .invoice-footer-btn {
        text-align: center;
        margin-top: 30px;
    }
}

/*
---------------------------------------
    : Custom - jQuery Confirm css :
---------------------------------------
*/
.jconfirm.jconfirm-white .jconfirm-box {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button {
    border-radius: 3px;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

.jconfirm.jconfirm-white
    .jconfirm-box
    .jconfirm-buttons
    button.btn-default:hover {
    background: #657385;
}

.jconfirm.jconfirm-light .jconfirm-box {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
    border-radius: 3px;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

.jconfirm.jconfirm-light
    .jconfirm-box
    .jconfirm-buttons
    button.btn-default:hover {
    background: #657385;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
    background-color: #718093;
    color: #ffffff !important;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue {
    background-color: #00999a;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue:hover {
    background-color: #007bff;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green {
    background-color: #5fc27e;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green:hover {
    background-color: #4dbb6f;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green:focus {
    background-color: #4dbb6f;
    box-shadow: 0 0 0 0.2rem #a9deba;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red {
    background-color: #f44455;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:hover {
    background-color: #f32c3f;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:focus {
    background-color: #f32c3f;
    box-shadow: 0 0 0 0.2rem #faa4ad;
}

.jconfirm .jconfirm-box .jconfirm-title-c .jconfirm-title {
    font-size: 20px !important;
    color: #282828;
}

.jconfirm .jconfirm-box .jconfirm-content {
    color: #8a98ac;
}

.jconfirm .jconfirm-box.jconfirm-type-red {
    border-top: none;
}

.jconfirm .jconfirm-box.jconfirm-type-green {
    border-top: none;
}

/*
-------------------------------
    : Custom - jsTree css :
-------------------------------
*/
.jstree-default .jstree-hovered {
    background: #00999a40;
    color: #00999a;
    border-radius: 3px;
    box-shadow: inset 0 0 1px #00999a40;
}

.jstree-default .jstree-clicked {
    background: #00999a40;
    color: #00999a;
    border-radius: 3px;
    box-shadow: inset 0 0 1px #00999a40;
}

.jstree-default .jstree-wholerow-hovered {
    background: #00999a40;
}

.jstree-default .jstree-wholerow-clicked {
    background: #00999a40;
}

.jstree-default .jstree-node {
    min-height: 30px;
    line-height: 30px;
    margin-left: 30px;
    min-width: 30px;
}

.jstree-default .jstree-icon:empty {
    width: 26px;
    height: 26px;
    line-height: 26px;
}

/*
--------------------------------------
    : Custom - Kanban Board css :
--------------------------------------
*/
.kanban-menu {
    text-align: right;
}

.kanban-users {
    text-align: right;
}

.avatar-group {
    display: inline-flex;
}

.avatar-group .avatar {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 1rem;
    margin-left: -0.8rem;
    transition: transform 0.2s;
}

.avatar-group .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid #ffffff;
}

.avatar-group .avatar:hover {
    -webkit-mask-image: none;
    mask-image: none;
    z-index: 1;
    transform: scale(1.1);
}

/*
-----------------------------
    : Custom - Maps css :
-----------------------------
*/
.gmaps {
    height: 300px;
    background: #dcdde1;
    border-radius: 3px;
}

.gmaps-panaroma {
    height: 300px;
    background: #dcdde1;
    border-radius: 3px;
}

.gmaps-overlay {
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 40px;
    background: #00999a;
    border-radius: 4px;
    padding: 10px 20px;
}

.gmaps-overlay_arrow {
    left: 50%;
    margin-left: -16px;
    width: 0;
    height: 0;
    position: absolute;
}

.gmaps-overlay_arrow.above {
    bottom: -15px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #00999a;
}

.gmaps-overlay_arrow.below {
    top: -15px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #00999a;
}

.vector-world-map {
    height: 420px;
    margin-bottom: 40px;
}

/* Responsive css */
@media (max-width: 991px) {
    .vector-world-map {
        height: 250px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .vector-world-map {
        height: 200px;
    }
}

/*
------------------------------
    : Custom - Modal css :
------------------------------
*/
.example-modal {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    display: block;
}

.modal-content {
    border: none;
    background-color: #ffffff;
    border-radius: 14px;
}

.modal-header {
    background-color: #00999a;
    border: 1px solid #00999a;
    border-radius: 14px 14px 0 0;
}

.modal-header .close {
    color: #ffffff;
}

.modal-title {
    color: #ffffff;
    font-size: 18px;
}

.modal-body {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-footer {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#session-timeout-dialog .modal-header {
    display: block;
}

/*
---------------------------------
    : Custom - Nestable css :
---------------------------------
*/
.dd-list .dd-item > button {
    height: 27px;
    margin: 5px 0 5px 10px;
}

.dd-list .dd-item > button:before {
    color: #8a98ac;
}

.dd-list .dd-item .dd-list {
    padding-left: 40px;
}

.dd-list .dd-item .dd-handle {
    display: block;
    height: auto;
    margin: 10px 0;
    padding: 10px 15px;
    color: #8a98ac;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border-radius: 3px;
    box-sizing: border-box;
}

.dd-list .dd-item .dd-handle:hover {
    color: #00999a;
    background: #ffffff;
    border: 1px solid #00999a;
    cursor: move;
}

/* -- Nestable List 2 -- */
#nestable2 .dd-list .dd-item > button :before {
    color: #8a98ac;
}

#nestable2 .dd-list .dd-item .dd-handle {
    color: #8a98ac;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

#nestable2 .dd-list .dd-item .dd-handle:hover {
    color: #00999a;
    background: #ffffff;
    border: 1px solid #00999a;
}

/* -- Nestable Draggable Handles -- */
.dd-list .dd-item.dd3-item > button {
    margin-left: 40px;
}

.dd-list .dd-item .dd3-handle {
    position: absolute;
    margin: 0;
    left: 0;
    top: 0;
    cursor: pointer;
    width: 40px;
    text-indent: 40px;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #dcdde1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
}

.dd-list .dd-item .dd3-handle:hover {
    color: #00999a;
    background: #00999a40;
    border: 1px solid #00999a;
    cursor: move;
}

.dd-list .dd-item .dd3-handle:hover:before {
    color: #00999a;
}

.dd-list .dd-item .dd3-handle:before {
    content: "";
    font-family: "feather" !important;
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    width: 100%;
    text-align: center;
    text-indent: 0;
    color: #8a98ac;
    font-size: 20px;
    font-weight: 400;
}

.dd-list .dd-item .dd3-content {
    display: block;
    margin: 10px 10px 10px 0;
    padding: 10px 15px 10px 50px;
    color: #8a98ac;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border-radius: 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.dd-list .dd-item .dd3-content:hover {
    color: #00999a;
    background: #ffffff;
    border: 1px solid #00999a;
}

.dd-placeholder {
    background-color: #00999a40;
    border-color: #00999a;
    border-radius: 3px;
}

/*
-------------------------------------------
    : Custom - Onboarding Screens css :
-------------------------------------------
*/
.onboard-screen {
    margin-bottom: 90px !important;
}

.onboard-screen .onboard-screen-list {
    text-align: center;
}

.onboard-screen .onboard-screen-list img {
    margin: 0 auto 60px;
    width: 60%;
}

.onboard-screen .slick-dots {
    bottom: -65px;
    left: 12px;
}

.onboard-screen .slick-dots li {
    margin: 0;
}

.onboard-screen .slick-dots li button:before {
    font-size: 12px;
    opacity: 0.25;
    color: #00999a;
}

.onboard-screen .slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: #00999a;
}

.onboard-screen .slick-arrow {
    font-family: "Poppins", sans-serif;
    width: auto;
    height: auto;
    top: auto;
    bottom: -90px;
    z-index: 999;
}

.onboard-screen .slick-prev {
    left: 0;
}

.onboard-screen .slick-prev:before {
    content: none;
}

.onboard-screen .slick-next {
    right: 0;
}

.onboard-screen .slick-next:before {
    content: none;
}

/*
-----------------------------------
    : Custom - Pagination css :
-----------------------------------
*/
.page-item .page-link {
    color: #00999a;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.page-item .page-link:focus {
    background-color: #dcdde1;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 0.2rem #e9ecfa;
}

.page-item .page-link:hover {
    color: #2d3646;
    background-color: #dcdde1;
    border-color: rgba(0, 0, 0, 0.05);
}

.page-item.active .page-link {
    color: #ffffff;
    background-color: #00999a;
    border-color: #00999a;
}

.page-item.disabled .page-link {
    color: #8a98ac;
    pointer-events: none;
    cursor: auto;
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.05);
}

/*
--------------------------------
    : Custom - Pnotify css :
--------------------------------
*/
.ui-pnotify .ui-pnotify-shadow {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.ui-pnotify .brighttheme {
    border: none;
    border-radius: 3px;
}

.ui-pnotify .brighttheme .ui-pnotify-action-button {
    text-transform: capitalize;
    font-weight: 600;
    padding: 4px 8px;
    border: none;
    background: 0 0;
}

.ui-pnotify .brighttheme .ui-pnotify-action-button.btn-primary {
    background-color: #fcc100;
    color: #282828;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.ui-pnotify .brighttheme .ui-pnotify-action-button.btn-primary:focus {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.ui-pnotify .brighttheme.ui-pnotify-container {
    padding: 15px;
}

.ui-pnotify .brighttheme.brighttheme-notice {
    background-color: #fcc100;
    color: #282828;
}

.ui-pnotify .brighttheme.brighttheme-success {
    background-color: #5fc27e;
    color: #282828;
}

.ui-pnotify .brighttheme.brighttheme-info {
    background-color: #72d0fb;
    color: #282828;
}

.ui-pnotify .brighttheme.brighttheme-error {
    background-color: #f44455;
    background-image: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 35px,
        rgba(255, 255, 255, 0.3) 35px,
        rgba(255, 255, 255, 0.3) 70px
    );
    border: none;
    color: #282828;
}

.ui-pnotify-title {
    display: block;
    margin-bottom: 0.4em;
    margin-top: 0;
    font-size: 20px;
}

/*
--------------------------------------------
    : Custom - Popovers & Tooltips css :
--------------------------------------------
*/
/* -- Popovers -- */
.popover {
    font-family: "Poppins", sans-serif;
    border-radius: 3px;
    border: none;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.popover-header {
    margin-top: 0;
    background-color: #ffffff;
    font-size: 16px;
    color: #282828;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.popover-body {
    padding: 0.5rem 0.75rem;
    color: #8a98ac;
    background-color: #ffffff;
}

.bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::before {
    border-top-color: #ffffff;
}

.bs-popover-auto[x-placement^="right"] > .arrow::before,
.bs-popover-right > .arrow::before {
    border-right-color: #ffffff;
}

.bs-popover-auto[x-placement^="bottom"] > .arrow::before,
.bs-popover-bottom > .arrow::before {
    border-bottom-color: #ffffff;
}

.bs-popover-auto[x-placement^="left"] > .arrow::before,
.bs-popover-left > .arrow::before {
    border-left-color: #ffffff;
}

.bs-popover-auto[x-placement^="top"] .arrow::after,
.bs-popover-top .arrow::after {
    border-top-color: #ffffff;
}

.bs-popover-auto[x-placement^="right"] > .arrow::after,
.bs-popover-right > .arrow::after {
    border-right-color: #ffffff;
}

.bs-popover-auto[x-placement^="bottom"] > .arrow::after,
.bs-popover-bottom > .arrow::after {
    border-bottom-color: #ffffff;
}

.bs-popover-auto[x-placement^="left"] > .arrow::after,
.bs-popover-left > .arrow::after {
    border-left-color: #ffffff;
}

.popover-title {
    margin-top: 0;
}

/* -- Tooltips -- */
.tooltip .tooltip-inner {
    padding: 4px 10px;
}

/*
--------------------------------
    : Custom - Pricing css :
--------------------------------
*/
.pricing > p span {
    padding: 8px 20px;
    border-radius: 0 0 3px 3px;
}

.pricing .pricing-top {
    padding-top: 30px;
    padding-bottom: 20px;
}

.pricing .pricing-top img {
    width: 150px;
}

.pricing .pricing-top img.price-pro-image {
    width: 180px;
}

.pricing .pricing-middle .list-group-item {
    border: none;
    padding: 5px 0;
}

.pricing .pricing-bottom.pricing-bottom-basic {
    /* background: url(/assets/images/pricing/pricing-basic-bg.svg); */
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 30px;
}

.pricing .pricing-bottom.pricing-bottom-professional {
    /* background: url(/assets/images/pricing/pricing-professional-bg.svg); */
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 30px;
}

.pricing .pricing-bottom.pricing-bottom-enterprise {
    /* background: url(/assets/images/pricing/pricing-enterprise-bg.svg); */
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 30px;
}

/*
------------------------------
    : Custom - Print css :
------------------------------
*/
@media print {
    .leftbar {
        display: none;
    }

    .topbar {
        display: none;
    }

    .footerbar {
        display: none;
    }

    .breadcrumbbar {
        display: none;
    }

    .rightbar {
        margin-left: 0;
    }
}

/*
------------------------------------
    : Custom - Progressbar css :
------------------------------------
*/
.progress {
    background-color: #dcdde1;
}

.progress-bar {
    background-color: #00999a;
}

/*
-------------------------------------
    : Custom - Range Slider css :
-------------------------------------
*/
.irs-line-mid {
    background: url(../plugins/ion-rangeSlider/sprite-skin-flat.png) repeat-x;
}

.irs-line-left {
    background: url(../plugins/ion-rangeSlider/sprite-skin-flat.png) repeat-x;
}

.irs-line-right {
    background: url(../plugins/ion-rangeSlider/sprite-skin-flat.png) repeat-x;
}

.irs-bar {
    background: url(../plugins/ion-rangeSlider/sprite-skin-flat.png) repeat-x;
}

.irs-bar-edge {
    background: url(../plugins/ion-rangeSlider/sprite-skin-flat.png) repeat-x;
}

.irs-slider {
    background: url(../plugins/ion-rangeSlider/sprite-skin-flat.png) repeat-x;
}

.irs {
    height: 40px;
}

.irs-with-grid {
    height: 60px;
}

.irs-line {
    height: 8px;
    top: 25px;
    border-radius: 15px;
}

.irs-line-left {
    height: 8px;
    background-position: 0 -30px;
    border-radius: 15px;
}

.irs-line-mid {
    height: 8px;
    background-position: 0 0;
}

.irs-line-right {
    height: 8px;
    background-position: 100% -30px;
    border-radius: 15px;
}

.irs-bar {
    height: 8px;
    top: 25px;
    background-position: 0 -60px;
}

.irs-bar-edge {
    top: 25px;
    height: 8px;
    width: 10px;
    background-position: 0 -90px;
    border-radius: 15px 0 0 15px;
}

.irs-shadow {
    height: 3px;
    top: 34px;
    background: #282828;
    opacity: 0.25;
}

.lt-ie9 .irs-shadow {
    filter: alpha(opacity=25);
}

.irs-slider {
    width: 20px;
    height: 20px;
    top: 18px;
    background-color: #ffffff;
    border: 2px solid #00999a;
    border-radius: 50%;
    background: #ffffff;
    background-position: 0 -120px;
    z-index: 0;
}

.irs-slider.type_last {
    z-index: 0;
}

.irs-slider.state_hover {
    background-position: 0 -150px;
}

.irs-slider:hover {
    background-position: 0 -150px;
}

.irs-min {
    color: #8a98ac;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    top: 0;
    padding: 1px 3px;
    background: #dcdde1;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.irs-max {
    color: #8a98ac;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    top: 0;
    padding: 1px 3px;
    background: #dcdde1;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.irs-from {
    color: #ffffff;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background: #00999a;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.irs-to {
    color: #ffffff;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background: #00999a;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.irs-single {
    color: #ffffff;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background: #00999a;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.irs-from:after {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #00999a;
}

.irs-to:after {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #00999a;
}

.irs-single:after {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #00999a;
}

.irs-grid-pol {
    background: #dcdde1;
}

.irs-grid-text {
    color: #8a98ac;
}

/*
-------------------------------
    : Custom - Rating css :
-------------------------------
*/
/* -- 1 to 10 Rating -- */
.br-theme-bars-1to10 .br-widget {
    height: 50px;
    white-space: nowrap;
}

.br-theme-bars-1to10 .br-widget a {
    display: block;
    width: 12px;
    padding: 5px 0;
    height: 28px;
    float: left;
    background-color: #00999a40;
    margin: 1px;
    text-align: center;
}

.br-theme-bars-1to10 .br-widget a.br-active {
    background-color: #00999a;
}

.br-theme-bars-1to10 .br-widget a.br-selected {
    background-color: #00999a;
}

.br-theme-bars-1to10 .br-widget .br-current-rating {
    font-size: 20px;
    line-height: 30px;
    float: left;
    padding: 0 20px 0 20px;
    color: #00999a;
    font-weight: 400;
    vertical-align: middle;
}

.br-theme-bars-1to10 .br-readonly a {
    cursor: default;
}

.br-theme-bars-1to10 .br-readonly a.br-active {
    background-color: #f2cd95;
}

.br-theme-bars-1to10 .br-readonly a.br-selected {
    background-color: #f2cd95;
}

.br-theme-bars-1to10 .br-readonly .br-current-rating {
    color: #f2cd95;
}

@media print {
    .br-theme-bars-1to10 .br-widget a {
        border: 1px solid #00999a;
        background: #ffffff;
        height: 38px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .br-theme-bars-1to10 .br-widget a.br-active {
        border: 1px solid #00999a;
        background: #00999a;
    }

    .br-theme-bars-1to10 .br-widget a.br-selected {
        border: 1px solid #00999a;
        background: #00999a;
    }

    .br-theme-bars-1to10 .br-widget .br-current-rating {
        color: #00999a;
    }
}

/* -- Movie Rating -- */
.br-theme-bars-movie .br-widget {
    height: 50px;
    white-space: nowrap;
}

.br-theme-bars-movie .br-widget a {
    display: block;
    width: 60px;
    height: 8px;
    float: left;
    background-color: #00999a40;
    margin: 1px;
}

.br-theme-bars-movie .br-widget a.br-active {
    background-color: #00999a;
}

.br-theme-bars-movie .br-widget a.br-selected {
    background-color: #00999a;
}

.br-theme-bars-movie .br-widget .br-current-rating {
    clear: both;
    width: 240px;
    text-align: center;
    font-weight: 600;
    display: block;
    padding: 0.5em 0;
    color: #00999a;
    font-weight: 400;
}

.br-theme-bars-movie .br-readonly a {
    cursor: default;
}

.br-theme-bars-movie .br-readonly a.br-active {
    background-color: #00999a40;
}

.br-theme-bars-movie .br-readonly a.br-selected {
    background-color: #00999a40;
}

.br-theme-bars-movie .br-readonly .br-current-rating {
    color: #00999a40;
}

@media print {
    .br-theme-bars-movie .br-widget a {
        border: 1px solid #00999a;
        background: #ffffff;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .br-theme-bars-movie .br-widget a.br-active {
        border: 1px solid #00999a;
        background: #00999a;
    }

    .br-theme-bars-movie .br-widget a.br-selected {
        border: 1px solid #00999a;
        background: #00999a;
    }

    .br-theme-bars-movie .br-widget .br-current-rating {
        color: #00999a;
    }
}

/* -- Square Rating -- */
.br-theme-bars-square .br-widget {
    height: 50px;
    white-space: nowrap;
}

.br-theme-bars-square .br-widget a {
    display: block;
    width: 30px;
    height: 30px;
    float: left;
    border: 2px solid #00999a40;
    background-color: #ffffff;
    margin: 2px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    text-align: center;
    color: #00999a40;
    font-weight: 600;
}

.br-theme-bars-square .br-widget a.br-active {
    border: 2px solid #00999a;
    color: #00999a;
}

.br-theme-bars-square .br-widget a.br-selected {
    border: 2px solid #00999a;
    color: #00999a;
}

.br-theme-bars-square .br-widget .br-current-rating {
    clear: both;
    width: 330px;
    text-align: center;
    font-weight: 600;
    display: block;
    padding: 0.5em 0;
    color: #00999a;
}

.br-theme-bars-square .br-readonly a {
    cursor: default;
}

.br-theme-bars-square .br-readonly a.br-active {
    border: 2px solid;
    color: #00999a;
}

.br-theme-bars-square .br-readonly a.br-selected {
    border: 2px solid;
    color: #00999a;
}

@media print {
    .br-theme-bars-square .br-widget a {
        border: 2px solid #00999a;
        color: #00999a;
    }

    .br-theme-bars-square .br-widget a.br-active {
        border: 2px solid #00999a;
        color: #00999a;
    }

    .br-theme-bars-square .br-widget a.br-selected {
        border: 2px solid #00999a;
        color: #00999a;
    }
}

/* -- Pill Rating -- */
.br-theme-bars-pill .br-widget {
    height: 50px;
    white-space: nowrap;
}

.br-theme-bars-pill .br-widget a {
    padding: 7px 15px;
    background-color: #00999a40;
    color: #00999a;
    text-decoration: none;
    font-size: 13px;
    line-height: 3;
    text-align: center;
    font-weight: 400;
}

.br-theme-bars-pill .br-widget a:first-child {
    -webkit-border-top-left-radius: 999px;
    -webkit-border-bottom-left-radius: 999px;
    -moz-border-radius-topleft: 999px;
    -moz-border-radius-bottomleft: 999px;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
}

.br-theme-bars-pill .br-widget a:last-child {
    -webkit-border-top-right-radius: 999px;
    -webkit-border-bottom-right-radius: 999px;
    -moz-border-radius-topright: 999px;
    -moz-border-radius-bottomright: 999px;
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
}

.br-theme-bars-pill .br-widget a.br-active {
    background-color: #00999a;
    color: #ffffff;
}

.br-theme-bars-pill .br-widget a.br-selected {
    background-color: #00999a;
    color: #ffffff;
}

.br-theme-bars-pill .br-readonly a {
    cursor: default;
}

.br-theme-bars-pill .br-readonly a.br-active {
    background-color: #00999a40;
}

.br-theme-bars-pill .br-readonly a.br-selected {
    background-color: #00999a40;
}

@media print {
    .br-theme-bars-pill .br-widget a {
        border: 1px solid #00999a;
        border-left: none;
        background: #ffffff;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .br-theme-bars-pill .br-widget a:first-child {
        border-left: 1px solid #00999a;
    }

    .br-theme-bars-pill .br-widget a.br-active {
        border: 1px solid #00999a;
        border-left: none;
        background: #ffffff;
        color: #00999a;
    }

    .br-theme-bars-pill .br-widget a.br-selected {
        border: 1px solid #00999a;
        border-left: none;
        background: #ffffff;
        color: #00999a;
    }
}

/* -- Reversed Rating -- */
.br-theme-bars-reversed .br-widget {
    height: 50px;
    white-space: nowrap;
}

.br-theme-bars-reversed .br-widget a {
    display: block;
    width: 22px;
    height: 22px;
    float: left;
    background-color: #00999a40;
    margin: 1px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #00999a;
    text-align: center;
}

.br-theme-bars-reversed .br-widget a.br-active {
    background-color: #00999a;
    color: #ffffff;
}

.br-theme-bars-reversed .br-widget a.br-selected {
    background-color: #00999a;
    color: #ffffff;
}

.br-theme-bars-reversed .br-widget .br-current-rating {
    line-height: 1.3;
    float: left;
    padding: 0 20px 0 20px;
    color: #00999a;
    font-size: 17px;
    font-weight: 400;
}

.br-theme-bars-reversed .br-readonly a {
    cursor: default;
}

.br-theme-bars-reversed .br-readonly a.br-active {
    background-color: #00999a;
}

.br-theme-bars-reversed .br-readonly a.br-selected {
    background-color: #00999a;
}

.br-theme-bars-reversed .br-readonly .br-current-rating {
    color: #00999a;
}

@media print {
    .br-theme-bars-reversed .br-widget a {
        border: 1px solid #00999a;
        background: #ffffff;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .br-theme-bars-reversed .br-widget a.br-active {
        border: 1px solid #00999a;
        background: white;
    }

    .br-theme-bars-reversed .br-widget a.br-selected {
        border: 1px solid #00999a;
        background: white;
    }

    .br-theme-bars-reversed .br-widget .br-current-rating {
        color: #00999a;
    }
}

/* -- Horizontal Rating -- */
.br-theme-bars-horizontal .br-widget {
    width: 50px;
    white-space: nowrap;
}

.br-theme-bars-horizontal .br-widget a {
    display: block;
    width: 120px;
    height: 5px;
    background-color: #00999a40;
    margin: 1px;
}

.br-theme-bars-horizontal .br-widget a.br-active {
    background-color: #00999a;
}

.br-theme-bars-horizontal .br-widget a.br-selected {
    background-color: #00999a;
}

.br-theme-bars-horizontal .br-widget .br-current-rating {
    width: 120px;
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
    text-align: center;
    color: #00999a;
}

.br-theme-bars-horizontal .br-readonly a {
    cursor: default;
}

.br-theme-bars-horizontal .br-readonly a.br-active {
    background-color: #00999a;
}

.br-theme-bars-horizontal .br-readonly a.br-selected {
    background-color: #00999a;
}

.br-theme-bars-horizontal .br-readonly .br-current-rating {
    color: #00999a;
}

@media print {
    .br-theme-bars-horizontal .br-widget a {
        border: 1px solid #00999a;
        background: #ffffff;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .br-theme-bars-horizontal .br-widget a.br-active {
        border: 1px solid #00999a;
        background: white;
    }

    .br-theme-bars-horizontal .br-widget a.br-selected {
        border: 1px solid #00999a;
        background: white;
    }

    .br-theme-bars-horizontal .br-widget .br-current-rating {
        color: #00999a;
    }
}

/* -- CSS Rating -- */
.br-theme-css-stars .br-widget {
    height: 50px;
    white-space: nowrap;
}

.br-theme-css-stars .br-widget a {
    text-decoration: none;
    height: 18px;
    width: 18px;
    float: left;
    font-size: 23px;
    margin-right: 5px;
}

.br-theme-css-stars .br-widget a:after {
    content: "★";
    color: #00999a40;
}

.br-theme-css-stars .br-widget a.br-active:after {
    color: #00999a;
}

.br-theme-css-stars .br-widget a.br-selected:after {
    color: #00999a;
}

.br-theme-css-stars .br-widget .br-current-rating {
    display: none;
}

.br-theme-css-stars .br-readonly a {
    cursor: default;
}

@media print {
    .br-theme-css-stars .br-widget a:after {
        content: "☆";
        color: #00999a;
    }

    .br-theme-css-stars .br-widget a.br-active:after {
        content: "★";
        color: #00999a;
    }

    .br-theme-css-stars .br-widget a.br-selected:after {
        content: "★";
        color: #00999a;
    }
}

/* -- Font Awesome Rating -- */
.br-theme-fontawesome-stars .br-widget {
    height: 50px;
    white-space: nowrap;
}

.br-theme-fontawesome-stars .br-widget a {
    font: normal normal normal 20px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    margin-right: 2px;
}

.br-theme-fontawesome-stars .br-widget a:after {
    content: "";
    color: #00999a40;
}

.br-theme-fontawesome-stars .br-widget a.br-active:after {
    color: #00999a;
}

.br-theme-fontawesome-stars .br-widget a.br-selected:after {
    color: #00999a;
}

.br-theme-fontawesome-stars .br-widget .br-current-rating {
    display: none;
}

.br-theme-fontawesome-stars .br-readonly a {
    cursor: default;
}

@media print {
    .br-theme-fontawesome-stars .br-widget a:after {
        content: "";
        color: #00999a;
    }

    .br-theme-fontawesome-stars .br-widget a.br-active:after {
        content: "";
        color: #00999a;
    }

    .br-theme-fontawesome-stars .br-widget a.br-selected:after {
        content: "";
        color: #00999a;
    }
}

/* -- Font Awesome Franctional Rating -- */
.br-theme-fontawesome-stars-o .br-widget {
    height: 30px;
    white-space: nowrap;
}

.br-theme-fontawesome-stars-o .br-widget a {
    font: normal normal normal 20px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    margin-right: 2px;
}

.br-theme-fontawesome-stars-o .br-widget a:after {
    content: "";
    color: #00999a40;
}

.br-theme-fontawesome-stars-o .br-widget a.br-active:after {
    content: "";
    color: #00999a;
}

.br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
    content: "";
    color: #00999a;
}

.br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
    content: "";
    color: #00999a;
}

.br-theme-fontawesome-stars-o .br-widget .br-current-rating {
    display: none;
}

.br-theme-fontawesome-stars-o .br-readonly a {
    cursor: default;
}

.br-theme-fontawesome-stars-o .br-reverse a.br-fractional {
    display: inline-block;
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

@media print {
    .br-theme-fontawesome-stars-o .br-widget a:after {
        content: "";
        color: #00999a;
    }

    .br-theme-fontawesome-stars-o .br-widget a.br-active:after {
        content: "";
        color: #00999a;
    }

    .br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
        content: "";
        color: #00999a;
    }

    .br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
        content: "";
        color: #00999a;
    }
}

/*
---------------------------------------
    : Custom - Security Pages css :
---------------------------------------
*/
.authenticate-bg {
    background: url(/assets/images/authentication/authentication-bg.svg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.auth-box > .row {
    height: 100vh;
    padding: 15px 0;
}

.auth-box .auth-box-left .card {
    background-color: #ffffff;
    border-radius: 3px 0 0 3px;
}

.auth-box .auth-box-left .card .card-body {
    padding: 30px;
}

.auth-box .auth-box-left .auth-box-icon {
    margin: 83px 0;
}

.auth-box .auth-box-left .auth-box-logo {
    width: 150px;
}

.auth-box .auth-box-right .card {
    border-radius: 0 3px 3px 0;
}

.auth-box .auth-box-right .card .card-body {
    padding: 30px;
}

.auth-box .auth-box-right .error-title {
    font-size: 90px;
}

.auth-box .auth-box-right .web-logo img {
    margin: 30px 0;
}

.auth-box .auth-box-right .user-logo {
    position: relative;
    z-index: 999;
}

.auth-box .auth-box-right .user-logo img {
    height: 80px;
    width: 80px;
}

.auth-box .auth-box-right .login-or {
    position: relative;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.auth-box .auth-box-right .login-or:before {
    content: "";
    background: rgba(0, 0, 0, 0.05);
    height: 1px;
    width: 45%;
    top: 45%;
    left: 0;
    position: absolute;
}

.auth-box .auth-box-right .login-or:after {
    content: "";
    background: rgba(0, 0, 0, 0.05);
    height: 1px;
    width: 45%;
    top: 45%;
    right: 0;
    position: absolute;
}

.auth-box .auth-box-right .forgot-psw {
    text-align: right;
}

.auth-box .auth-box-right .custom-checkbox .custom-control-label:before {
    margin-top: -2px;
}

.auth-box .auth-box-right .custom-checkbox .custom-control-label:after {
    margin-top: -2px;
}

.auth-box.login-box .auth-box-right .card {
    padding-bottom: 12px;
}

.auth-box.register-box .auth-box-right .card {
    padding-bottom: 50px;
}

.auth-box.forgot-password-box .auth-box-right .card {
    padding-bottom: 188px;
}

.auth-box.lock-screen-box .auth-box-right .card {
    padding-bottom: 104px;
}

.auth-box.error-box .error-logo {
    width: 150px;
}

.auth-box.error-box .error-image {
    margin: 30px 0;
}

.auth-box.error-box > .row {
    height: 100vh;
}

.auth-box .countdown-block {
    display: inline-block;
    padding: 30px;
}

@media (max-width: 767px) {
    .auth-box > .row {
        height: auto;
    }

    .auth-box .auth-box-left .card {
        border-radius: 3px 3px 0 0;
    }

    .auth-box .auth-box-left .auth-box-icon {
        margin: 30px 0;
    }

    .auth-box .auth-box-left .auth-box-icon img {
        width: 150px;
    }

    .auth-box .auth-box-left .auth-box-logo {
        width: 100px;
    }

    .auth-box .auth-box-left h4 {
        font-size: 22px;
    }

    .auth-box .auth-box-right .card {
        border-radius: 0 0 3px 3px;
    }

    .auth-box .auth-box-right h4 {
        font-size: 22px;
    }

    .auth-box.login-box .auth-box-right .card {
        padding-bottom: 0;
    }

    .auth-box.register-box .auth-box-right .card {
        padding-bottom: 0;
    }

    .auth-box.forgot-password-box .auth-box-right .card {
        padding-bottom: 0;
    }

    .auth-box.lock-screen-box .auth-box-right .card {
        padding-bottom: 0;
    }
}

@media (max-width: 575px) {
    .auth-box .auth-box-right .forgot-psw {
        text-align: left;
    }
}

/*
-----------------------------------
    : Custom - Summernote css :
-----------------------------------
*/
.note-btn-group .dropdown-menu > li > a {
    display: block;
    padding: 5px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #282828;
    white-space: nowrap;
}

.note-btn-group .dropdown-menu > li > a:hover {
    background-color: #e1e2e6;
}

.note-image-popover {
    display: none;
}

.note-image-popover .dropdown-toggle::after {
    margin-left: 0;
}

.note-air-popover {
    display: none;
}

.note-air-popover .dropdown-toggle::after {
    margin-left: 0;
}

.note-link-popover {
    display: none;
}

.note-link-popover .dropdown-toggle::after {
    margin-left: 0;
}

.note-icon-caret {
    display: none;
}

.note-editor {
    position: relative;
}

.note-editor .btn-default {
    background-color: transparent;
    border-color: transparent;
}

.note-editor .btn-group-sm > .btn,
.note-editor .btn-sm {
    padding: 8px 12px;
}

.note-editor .note-toolbar {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
}

.note-editor .note-toolbar .btn-light {
    color: #8a98ac;
    background-color: #dcdde1;
    border-color: transparent;
    box-shadow: none;
}

.note-editor .note-statusbar {
    background-color: transparent !important;
}

.note-editor .note-statusbar .note-resizebar {
    border-top: none;
    height: 15px;
    padding-top: 3px;
}

.note-editor.note-frame {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.note-editor.note-frame .note-editing-area .note-editable {
    background-color: transparent;
    color: #8a98ac;
}

.note-popover .popover .popover-content {
    padding: 5px 0 10px 5px;
}

.note-popover .btn-default {
    background-color: transparent;
    border-color: transparent;
}

.note-popover .btn-group-sm > .btn,
.note-popover .btn-sm {
    padding: 8px 12px;
}

.note-toolbar {
    padding: 5px 0 10px 5px;
}

/*
------------------------------------
    : Custom - Sweet Alert css :
------------------------------------
*/
.swal2-modal {
    font-family: "Poppins", sans-serif;
    border-radius: 3px;
    border: none;
}

.swal2-modal .swal2-title {
    font-weight: 400;
    font-size: 20px;
    color: #282828;
}

.swal2-modal .swal2-content {
    font-size: 16px;
    font-weight: 400;
    color: #8a98ac;
}

.swal2-modal .swal2-spacer {
    margin: 10px 0;
}

.swal2-modal .swal2-file,
.swal2-modal .swal2-input,
.swal2-modal .swal2-textarea {
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    box-shadow: none !important;
    background-color: transparent;
}

.swal2-modal .swal2-file:focus,
.swal2-modal .swal2-input:focus,
.swal2-modal .swal2-textarea:focus {
    border: 1px solid #00999a;
}

.swal2-modal .swal2-styled {
    border: inherit;
    font-size: 14px;
    font-weight: 400;
    margin: 0 5px;
    padding: 6px 12px;
}

.swal2-modal .swal2-confirm {
    background-color: #00999a !important;
    border: none;
}

.swal2-modal .swal2-confirm.btn-success {
    background-color: #5fc27e !important;
    box-shadow: none;
    border: none;
    border-radius: 3px;
}

.swal2-modal .swal2-cancel {
    background-color: #f44455 !important;
    border: none;
    border-radius: 3px;
}

.swal2-modal .swal2-icon.swal2-error {
    color: #f44455;
    border-color: #faa4ad;
}

.swal2-modal .swal2-icon.swal2-question {
    color: #00999a;
    border-color: #c0c8f0;
}

.swal2-modal .swal2-icon.swal2-warning {
    color: #fcc100;
    border-color: #ffda63;
}

.swal2-modal .swal2-icon.swal2-info {
    color: #72d0fb;
    border-color: #d5f1fe;
}

.swal2-modal .swal2-icon.swal2-success {
    color: #5fc27e;
    border-color: #5fc27e;
}

.swal2-modal .swal2-icon.swal2-success .line {
    background-color: #5fc27e;
}

.swal2-modal .swal2-icon.swal2-success .placeholder {
    border: 4px solid #ceecd7;
}

.swal2-modal .swal2-icon.swal2-success:before {
    background: transparent;
}

.swal2-modal .swal2-icon.swal2-success:after {
    background: transparent;
}

.swal2-modal .swal2-icon.swal2-success .fix {
    background: transparent;
}

.swal2-modal
    .swal2-progresssteps
    .swal2-progresscircle.swal2-activeprogressstep {
    background: #00999a;
}

.swal2-modal
    .swal2-progresssteps
    .swal2-progresscircle.swal2-activeprogressstep
    ~ .swal2-progresscircle {
    background: #c0c8f0;
}

.swal2-modal
    .swal2-progresssteps
    .swal2-progresscircle.swal2-activeprogressstep
    ~ .swal2-progressline {
    background: #c0c8f0;
}

.swal2-modal .swal2-progresssteps .swal2-progresscircle {
    background: #00999a;
}

.swal2-modal .swal2-progresssteps .swal2-progressline {
    background: #00999a;
}

.swal2-modal .swal2-validationerror {
    background-color: #dcdde1;
    color: #8a98ac;
    font-weight: 400;
}

.swal2-modal .swal2-validationerror:before {
    background-color: #f44455;
}

/*
----------------------------------
    : Custom - Switchery css :
----------------------------------
*/
.switchery {
    background-color: #ffffff;
    border: 1px solid tranparent;
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    position: relative;
    vertical-align: middle;
    width: 50px;
    margin-bottom: 5px;
}

.switchery-small {
    border-radius: 20px;
    height: 20px;
    width: 33px;
}

.switchery-small > small {
    height: 20px;
    width: 20px;
}

.switchery-large {
    border-radius: 40px;
    height: 40px;
    width: 66px;
}

.switchery-large > small {
    height: 40px;
    width: 40px;
}

/*
-------------------------------
    : Custom - Tables css :
-------------------------------
*/
.table {
    margin-bottom: 10px;
    color: #282828;
}

.table th {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.7rem;
}

.table td {
    color: #8a98ac;
    vertical-align: middle;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px 6px;
    font-size: 14px;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.table .thead-light th {
    color: #282828;
    background-color: #dcdde1;
    border-color: rgba(0, 0, 0, 0.05);
}

.table .thead-dark th {
    color: #ffffff;
    background-color: #2d3646;
    border-color: rgba(0, 0, 0, 0.05);
}

.table-bordered {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-bordered th {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-bordered td {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    color: #282828;
    background-color: #dcdde1;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #dcdde1;
}

.thead-default th {
    background-color: #dcdde1;
}

.table-dark {
    color: #ffffff;
    background-color: #2d3646;
}

.table-dark td {
    border-color: rgba(255, 255, 255, 0.05);
    color: #8a98ac;
}

.table-dark th {
    border-color: rgba(255, 255, 255, 0.05);
}

.table-dark thead th {
    border-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.table-borderless tbody + tbody {
    border: 0 !important;
}

.table-borderless td {
    border: 0 !important;
}

.table-borderless th {
    border: 0 !important;
}

.table-borderless thead th {
    border: 0 !important;
}

.table-primary {
    background-color: #00999a40;
}

.table-primary > td {
    background-color: #00999a40;
    color: #00999a;
}

.table-primary > th {
    background-color: #00999a40;
    color: #00999a;
}

.table-secondary {
    background-color: rgba(113, 128, 147, 0.1);
}

.table-secondary > td {
    background-color: rgba(113, 128, 147, 0.1);
    color: #718093;
}

.table-secondary > th {
    background-color: rgba(113, 128, 147, 0.1);
    color: #718093;
}

.table-success {
    background-color: rgba(95, 194, 126, 0.1);
}

.table-success > td {
    background-color: rgba(95, 194, 126, 0.1);
    color: #5fc27e;
}

.table-success > th {
    background-color: rgba(95, 194, 126, 0.1);
    color: #5fc27e;
}

.table-danger {
    background-color: rgba(244, 68, 85, 0.1);
}

.table-danger > td {
    background-color: rgba(244, 68, 85, 0.1);
    color: #f44455;
}

.table-danger > th {
    background-color: rgba(244, 68, 85, 0.1);
    color: #f44455;
}

.table-warning {
    background-color: rgba(252, 193, 0, 0.1);
}

.table-warning > td {
    background-color: rgba(252, 193, 0, 0.1);
    color: #fcc100;
}

.table-warning > th {
    background-color: rgba(252, 193, 0, 0.1);
    color: #fcc100;
}

.table-info {
    background-color: rgba(114, 208, 251, 0.1);
}

.table-info > td {
    background-color: rgba(114, 208, 251, 0.1);
    color: #72d0fb;
}

.table-info > th {
    background-color: rgba(114, 208, 251, 0.1);
    color: #72d0fb;
}

.table-light {
    background-color: rgba(220, 221, 225, 0.1);
}

.table-light > td {
    background-color: rgba(220, 221, 225, 0.1);
    color: #8a98ac;
}

.table-light > th {
    background-color: rgba(220, 221, 225, 0.1);
    color: #8a98ac;
}

/* -- Table Data Table -- */
.table.dataTable {
    border-spacing: 0;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before {
    background-color: #00999a;
    border: none;
    box-shadow: none;
    height: 18px;
    width: 18px;
    line-height: 18px;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
    background-color: #00999a;
    border: none;
    box-shadow: none;
    height: 18px;
    width: 18px;
    line-height: 18px;
}

div.dt-button-info {
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border: none !important;
    border-radius: 3px !important;
}

div.dt-button-info h2 {
    color: #282828;
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.05);
    font-size: 20px;
    border-radius: 3px 3px 0 0 !important;
}

div.dt-button-info div {
    color: #8a98ac;
}

/* -- Table Editable -- */
button.tabledit-edit-button {
    background-color: #00999a;
    border: none;
    border-radius: 3px !important;
    width: 35px;
    height: 35px;
}

button.tabledit-edit-button:active {
    background-color: #007bff !important;
    box-shadow: none !important;
}

button.tabledit-edit-button:hover {
    background-color: #007bff !important;
    box-shadow: none !important;
}

button.tabledit-edit-button:focus {
    background-color: #007bff !important;
    box-shadow: none !important;
}

button.tabledit-edit-button:visited {
    background-color: #007bff !important;
    box-shadow: none !important;
}

button.tabledit-edit-button:not(:disabled):not(.disabled).active {
    background-color: #007bff !important;
    box-shadow: none !important;
}

button.tabledit-delete-button {
    background-color: #f44455;
    border: none !important;
    border-radius: 3px !important;
    width: 35px;
    height: 35px;
}

button.tabledit-delete-button:active {
    background-color: #f32c3f !important;
    box-shadow: none !important;
}

button.tabledit-delete-button:hover {
    background-color: #f32c3f !important;
    box-shadow: none !important;
}

button.tabledit-delete-button:focus {
    background-color: #f32c3f !important;
    box-shadow: none !important;
}

button.tabledit-delete-button:visited {
    background-color: #f32c3f !important;
    box-shadow: none !important;
}

button.tabledit-delete-button:not(:disabled):not(.disabled).active {
    background-color: #f32c3f !important;
    box-shadow: none !important;
}

.tabledit-save-button {
    border-radius: 3px;
}

.tabledit-confirm-button {
    border-radius: 3px;
}

/* -- RWD Table -- */
table.focus-on tbody tr.focused th {
    background-color: #00999a;
    color: #ffffff;
}

table.focus-on tbody tr.focused td {
    background-color: #00999a;
    color: #ffffff;
}

table.focus-on tfoot tr.focused th {
    background-color: #00999a;
    color: #ffffff;
}

table.focus-on tfoot tr.focused td {
    background-color: #00999a;
    color: #ffffff;
}

.table-wrapper .btn-toolbar {
    display: block;
    margin-bottom: 15px;
}

.table-responsive[data-pattern="priority-columns"] {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* -- Footable -- */
.footable-paging .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.footable-paging .pagination > li {
    display: inline;
}

.footable-paging .pagination > li a.footable-page-link {
    position: relative;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #00999a;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.footable-paging .pagination > li:first-child a.footable-page-link {
    margin-left: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.footable-paging .pagination > li:last-child a.footable-page-link {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.footable-paging .pagination > li.active a.footable-page-link {
    color: #ffffff;
    background-color: #00999a;
    border: 1px solid #00999a;
}

.footable-paging .label {
    background-color: #dcdde1;
    color: #8a98ac;
    padding: 2px 10px;
    border-radius: 3px;
}

.footable-filtering .form-inline {
    display: block;
    float: right;
}

.footable-filtering .open > .dropdown-menu {
    display: block;
    padding: 15px;
    color: #8a98ac;
}

.footable-filtering
    .open
    > .dropdown-menu
    li
    a.checkbox
    input[type="checkbox"] {
    margin-top: 5px;
}

.footable-filtering .input-group-btn .btn {
    margin-left: 5px;
    padding: 7px 12px;
}

.footable-filtering .input-group-btn .fooicon-search:before {
    content: "";
    font-family: "feather" !important;
}

/*
-----------------------------
    : Custom - Tabs css :
-----------------------------
*/
/* -- Navs & Tabs -- */
.nav-tabs {
    border-bottom: 1px solid rgb(0 0 0 / 0%);
}

.nav-tabs .nav-link {
    color: #2d3646;
}

.nav-tabs .nav-link:hover {
    border-color: rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.05) #ffffff;
}

.nav-tabs .nav-link:focus {
    border-color: rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.05) #ffffff;
}

.nav-tabs .nav-link.active {
    color: #00999a;
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.05) #ffffff;
}

.nav-tabs .nav-link.disabled {
    color: #718093;
}

.nav-tabs .nav-item.show .nav-link {
    color: #00999a;
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.05) #ffffff;
}

.nav-pills .nav-link {
    color: #2d3646;
}

.nav-pills .nav-link.disabled {
    color: #718093;
}

.nav-pills .nav-link.active {
    color: #ffffff;
    background-color: #00999a;
}

.nav-pills .show > .nav-link {
    color: #ffffff;
    background-color: #00999a;
}

/* -- Custom Tabs -- */
.nav-tabs.custom-tab-line .nav-item {
    margin-right: 20px;
}

.nav-tabs.custom-tab-line .nav-item.show .nav-link {
    color: #00999a;
    background-color: #ffffff;
    border-color: #ffffff #ffffff #00999a;
}

.nav-tabs.custom-tab-line .nav-link {
    border-bottom-width: 2px;
    padding-left: 0;
    padding-right: 0;
}

.nav-tabs.custom-tab-line .nav-link.active {
    color: #00999a;
    background-color: #ffffff;
    border-color: #ffffff #ffffff #00999a;
}

.nav-tabs.custom-tab-line .nav-link:focus {
    color: #00999a;
    background-color: #ffffff;
    border-color: #ffffff #ffffff #00999a;
}

.nav-tabs.custom-tab-line .nav-link:hover {
    color: #00999a;
    background-color: #ffffff;
    border-color: #ffffff #ffffff #00999a;
}

.nav-pills.custom-tab-button {
    text-align: center;
}

.nav-pills.custom-tab-button .nav-item {
    margin-right: 20px;
}

.nav-pills.custom-tab-button .nav-link .tab-btn-icon {
    display: block;
}

/*
---------------------------------
    : Custom - Timeline css :
---------------------------------
*/
.timeline-container {
    padding: 2.5em 0;
}

/*
--------------------------------
    : Custom - Toolbar css :
--------------------------------
*/
.btn-toolbar {
    margin: 0 auto;
}

.tool-bottom .tool-item:first-child,
.tool-top .tool-item:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.tool-bottom .tool-item:last-child,
.tool-top .tool-item:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.btn-toolbar > i {
    color: #ffffff;
    font-size: 20px;
}

.toolbar-primary .tool-item {
    background: #00999a;
}

.toolbar-primary .tool-item > .feather {
    color: #ffffff;
}

.toolbar-primary.tool-top .arrow {
    border-color: #00999a transparent transparent;
}

.toolbar-primary .tool-item.selected {
    background: #007bff;
}

.toolbar-primary .tool-item:hover {
    background: #007bff;
}

.btn-toolbar-primary.pressed {
    background: #007bff;
}

.toolbar-secondary .tool-item {
    background: #718093;
}

.toolbar-secondary .tool-item > .feather {
    color: #ffffff;
}

.toolbar-secondary.tool-top .arrow {
    border-color: #718093 transparent transparent;
}

.toolbar-secondary .tool-item.selected {
    background: #657385;
}

.toolbar-secondary .tool-item:hover {
    background: #657385;
}

.btn-toolbar-secondary.pressed {
    background: #657385;
}

.toolbar-success .tool-item {
    background: #5fc27e;
}

.toolbar-success .tool-item > .feather {
    color: #ffffff;
}

.toolbar-success.tool-top .arrow {
    border-color: #5fc27e transparent transparent;
}

.toolbar-success.tool-right .arrow {
    border-color: transparent #5fc27e transparent transparent;
}

.toolbar-success .tool-item.selected {
    background: #4dbb6f;
}

.toolbar-success .tool-item:hover {
    background: #4dbb6f;
}

.btn-toolbar-success.pressed {
    background: #4dbb6f;
}

.toolbar-danger .tool-item {
    background: #f44455;
}

.toolbar-danger .tool-item > .feather {
    color: #ffffff;
}

.toolbar-danger.tool-top .arrow {
    border-color: #f44455 transparent transparent;
}

.toolbar-danger.tool-bottom .arrow {
    border-color: transparent transparent #f44455;
}

.toolbar-danger .tool-item.selected {
    background: #f32c3f;
}

.toolbar-danger .tool-item:hover {
    background: #f32c3f;
}

.btn-toolbar-danger.pressed {
    background: #f32c3f;
}

.toolbar-warning .tool-item {
    background: #fcc100;
}

.toolbar-warning .tool-item > .feather {
    color: #ffffff;
}

.toolbar-warning.tool-top .arrow {
    border-color: #fcc100 transparent transparent;
}

.toolbar-warning.tool-left .arrow {
    border-color: transparent transparent transparent #fcc100;
}

.toolbar-warning .tool-item.selected {
    background: #e3ad00;
}

.toolbar-warning .tool-item:hover {
    background: #e3ad00;
}

.btn-toolbar-warning.pressed {
    background: #e3ad00;
}

.toolbar-info .tool-item {
    background: #72d0fb;
}

.toolbar-info .tool-item > .feather {
    color: #ffffff;
}

.toolbar-info.tool-top .arrow {
    border-color: #72d0fb transparent transparent;
}

.toolbar-info .tool-item.selected {
    background: #59c8fa;
}

.toolbar-info .tool-item:hover {
    background: #59c8fa;
}

.btn-toolbar-info.pressed {
    background: #59c8fa;
}

.toolbar-light .tool-item {
    background: #dcdde1;
}

.toolbar-light .tool-item > .feather {
    color: #ffffff;
}

.toolbar-light.tool-top .arrow {
    border-color: #dcdde1 transparent transparent;
}

.toolbar-light .tool-item.selected {
    background: #ced0d5;
}

.toolbar-light .tool-item:hover {
    background: #ced0d5;
}

.btn-toolbar-light.pressed {
    background: #ced0d5;
}

.toolbar-dark .tool-item {
    background: #2d3646;
}

.toolbar-dark .tool-item > .feather {
    color: #ffffff;
}

.toolbar-dark.tool-top .arrow {
    border-color: #2d3646 transparent transparent;
}

.toolbar-dark .tool-item.selected {
    background: #232a36;
}

.toolbar-dark .tool-item:hover {
    background: #232a36;
}

.btn-toolbar-dark.pressed {
    background: #232a36;
}

/*
-------------------------------
    : Custom - Tour css :
-------------------------------
*/
.tourbar .card-body {
    padding: 20px;
}

.cd-single-step .cd-more-info {
    font-family: "Poppins", sans-serif !important;
    border-radius: 3px;
    border: none;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
}

.cd-single-step .cd-more-info:before {
    color: #ffffff;
}

.cd-single-step .cd-more-info h2 {
    font-size: 18px;
    color: #282828;
    line-height: 1.2;
    margin-bottom: 0.4em;
}

.cd-single-step .cd-more-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.4em;
    font-family: "Poppins", sans-serif;
    color: #8a98ac;
}

.cd-single-step .cd-more-info img {
    margin-bottom: 1.4em;
    max-width: 100%;
    width: 150px;
}

.cd-single-step .cd-more-info span {
    float: left;
    padding-top: 0.1em;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}

.cd-single-step .cd-more-info .cd-close:before {
    background-color: #8a98ac;
}

.cd-single-step .cd-more-info .cd-close:after {
    background-color: #8a98ac;
}

.cd-single-step .cd-more-info .cd-tour-nav li:first-of-type {
    margin-right: 15px;
}

.cd-single-step .cd-more-info .cd-tour-nav a {
    font-size: 14px;
    color: #00999a;
    font-weight: 400;
    background-color: #00999a40;
    padding: 6px 12px;
    border-radius: 3px;
}

.cd-single-step .cd-more-info .cd-tour-nav a.cd-prev.inactive {
    background-color: rgba(113, 128, 147, 0.1);
    border: none;
    color: #718093;
}

.cd-single-step .cd-more-info .cd-tour-nav a.cd-next.inactive {
    background-color: rgba(113, 128, 147, 0.1);
    border: none;
    color: #718093;
}

@media only screen and (min-width: 768px) {
    .cd-single-step .cd-more-info {
        font-family: "Poppins", sans-serif;
        border-radius: 3px;
        border: none;
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        background-color: #ffffff;
        padding: 20px;
    }

    .cd-single-step .cd-more-info:before {
        color: #ffffff;
    }

    .cd-single-step .cd-more-info h2 {
        font-size: 18px;
        color: #282828;
        line-height: 1.2;
        margin-bottom: 0.4em;
    }

    .cd-single-step .cd-more-info p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 1.4em;
        font-family: "Poppins", sans-serif;
        color: #8a98ac;
    }

    .cd-single-step .cd-more-info span {
        float: left;
        padding-top: 0.1em;
        font-size: 14px;
        font-family: "Poppins", sans-serif;
    }

    .cd-single-step .cd-more-info .cd-close:before {
        background-color: #8a98ac;
    }

    .cd-single-step .cd-more-info .cd-close:after {
        background-color: #8a98ac;
    }

    .cd-single-step .cd-more-info .cd-tour-nav li:first-of-type {
        margin-right: 15px;
    }

    .cd-single-step .cd-more-info .cd-tour-nav a {
        font-size: 14px;
        color: #00999a;
        font-weight: 400;
        background-color: #00999a40;
        padding: 6px 12px;
        border-radius: 3px;
    }

    .cd-single-step .cd-more-info .cd-tour-nav a.cd-prev.inactive {
        background-color: rgba(113, 128, 147, 0.1);
        border: none;
        color: #718093;
    }

    .cd-single-step .cd-more-info .cd-tour-nav a.cd-next.inactive {
        background-color: rgba(113, 128, 147, 0.1);
        border: none;
        color: #718093;
    }
}

/*
--------------------------------
    : Custom - Widgets css :
--------------------------------
*/
/* -- Widget - Basic -- */
.widget-icon-bg {
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto;
}

/* --  Widget - To Do Lists -- */
.to-do-list .list-group-item {
    border: none;
}

.to-do-list .custom-control-label {
    color: #282828;
}

.to-do-list-remove {
    float: right;
    vertical-align: middle;
    cursor: pointer;
}

.to-do-list-remove:hover {
    color: #f44455 !important;
}

/* -- Widget - Action History -- */
.activities-history-list {
    position: relative;
}

.activities-history-list i {
    position: absolute;
    color: #00999a;
    top: 9px;
    left: 9px;
    font-size: 18px;
}

.activities-history-list:before {
    content: "";
    position: absolute;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 3px;
    background-color: #00999a40;
}

.activities-history-list:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 3px;
    top: 36px;
    left: 16px;
    background: #dcdde1;
}

.activities-history-list .activities-history-item {
    margin-left: 55px;
    margin-bottom: 36px;
}

.activities-history-list.activities-success i {
    color: #5fc27e;
}

.activities-history-list.activities-success:before {
    background-color: rgba(95, 194, 126, 0.1);
}

.activities-history-list.activities-danger i {
    color: #f44455;
}

.activities-history-list.activities-danger:before {
    background-color: rgba(244, 68, 85, 0.1);
}

.activities-history-list.activities-info i {
    color: #72d0fb;
}

.activities-history-list.activities-info:before {
    background-color: rgba(114, 208, 251, 0.1);
}

.icon-timer i {
    width: 30px;
    height: 30px;
    padding: 15px;
    font-size: 20px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.2);
}

.widget-newsletter .form-control {
    background-color: #ffffff;
    border-radius: 50px;
}

.widget-newsletter .form-control:focus {
    background-color: #ffffff;
}

.widget-newsletter .input-group-append {
    padding: 3px;
    background: #ffffff;
    border-radius: 0 50px 50px 0;
}

.widget-newsletter .input-group-append .btn {
    border-radius: 50px;
    background-color: #f44455;
    color: #ffffff;
    padding: 4px 10px;
    font-weight: 700;
}

.chartist-widget-color {
    height: 194px !important;
}

.chartist-widget-color .ct-series-a .ct-bar {
    stroke: #ffffff;
}

.chartist-widget-color .ct-label {
    fill: #ffffff;
    color: #ffffff;
    font-size: 14px;
    margin-top: 5px;
}

.blog-meta {
    text-align: right;
    font-size: 14px;
}

@media (max-width: 767px) {
    .blog-link {
        text-align: center;
    }

    .blog-meta {
        text-align: center;
        margin-top: 15px;
    }
}

/*
-----------------------------------
    : Custom - Responsive css :
-----------------------------------
*/
@media (min-width: 768px) and (max-width: 991px) {
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .vertical-layout.toggle-menu .leftbar {
        position: fixed;
        width: 80px;
        margin-left: 0;
        transition: all 0.3s ease;
    }

    .vertical-layout.toggle-menu .leftbar:hover {
        width: 250px;
    }

    .vertical-layout.toggle-menu .leftbar:hover ~ .rightbar {
        margin-left: 250px;
    }

    .vertical-layout.toggle-menu .leftbar:hover .vertical-menu > li > a > span {
        display: inline-block;
    }

    .vertical-layout.toggle-menu .leftbar:hover .vertical-menu > li > a > i {
        font-size: 16px;
    }

    .vertical-layout.toggle-menu
        .leftbar:hover
        .vertical-menu
        li
        > a
        > .icon-chevron-right {
        display: inline-block;
    }

    .vertical-layout.toggle-menu
        .leftbar:hover
        .vertical-menu
        li.active
        > .vertical-submenu {
        display: block !important;
    }

    .vertical-layout.toggle-menu .leftbar:hover .profilename {
        display: block;
    }

    .vertical-layout.toggle-menu .leftbar:hover .userbox {
        display: block;
    }

    .vertical-layout.toggle-menu .leftbar:hover .vertical-header {
        display: block;
    }

    .vertical-layout.toggle-menu .leftbar:hover .profilebar {
        padding: 15px 30px 15px 30px;
    }

    .vertical-layout.toggle-menu .leftbar:hover .logobar .logo.logo-small {
        display: none;
    }

    .vertical-layout.toggle-menu .leftbar:hover .logobar .logo.logo-large {
        display: block;
    }

    .vertical-layout.toggle-menu .leftbar:hover .logobar .logo img {
        width: 120px;
    }

    .vertical-layout.toggle-menu .leftbar:hover ~ .rightbar .topbar {
        left: 250px;
    }

    .vertical-layout.toggle-menu .vertical-menu > li > a > i {
        font-size: 18px;
    }

    .vertical-layout.toggle-menu .vertical-menu > li > a > span {
        display: none;
    }

    .vertical-layout.toggle-menu .vertical-menu li > a > .icon-chevron-right {
        display: none;
    }

    .vertical-layout.toggle-menu .vertical-menu li.active > .vertical-submenu {
        display: none !important;
    }

    .vertical-layout.toggle-menu .profilename {
        display: none;
    }

    .vertical-layout.toggle-menu .userbox {
        display: none;
    }

    .vertical-layout.toggle-menu .vertical-header {
        display: none;
    }

    .vertical-layout.toggle-menu .profilebar {
        padding: 15px 15px 15px 15px;
    }

    .vertical-layout.toggle-menu .logobar .logo.logo-small {
        display: block;
    }

    .vertical-layout.toggle-menu .logobar .logo.logo-large {
        display: none;
    }

    .vertical-layout.toggle-menu .logobar .logo img {
        width: 75px;
    }
}

@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 15px;
    }

    .leftbar {
        position: fixed;
        margin-left: -250px;
    }

    .rightbar {
        margin-left: 0 !important;
    }

    .topbar-mobile {
        display: block;
        position: fixed;
        width: 100%;
        z-index: 99;
    }

    .topbar {
        display: none;
    }

    .topbar .togglebar {
        display: none;
    }

    .topbar .infobar {
        margin-right: 0;
    }

    .topbar-toggle-menu .topbar {
        display: block;
        position: fixed;
        right: 0;
        left: 0;
        z-index: 1;
        margin-top: 71px;
    }

    .menubar {
        text-align: right;
    }

    .footerbar {
        left: 0;
    }

    .email-rightbar .email-open-box .open-email-head ul {
        text-align: left;
        margin-top: 15px;
    }

    .breadcrumbbar {
        padding: 30px 0 0 0;
    }

    .breadcrumbbar .page-title {
        text-align: center;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .breadcrumbbar .breadcrumb-list {
        text-align: center;
    }

    .breadcrumbbar .widgetbar {
        text-align: center;
        margin-top: 10px;
    }

    .analytic-chart-label .analytic-label-perform {
        text-align: left;
        margin-bottom: 30px;
    }

    .analytic-chart-label .list-inline {
        text-align: left;
    }

    .analytic-chart-label .analytic-chart-piety {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .infobar-notifications-sidebar.sidebarshow {
        width: 100%;
    }

    .infobar-settings-sidebar.sidebarshow {
        width: 100%;
    }
}

.theme-dark .infobar-settings-sidebar,
.theme-dark .infobar-settings-sidebar-head,
.theme-dark .infobar-notifications-sidebar,
.theme-dark .infobar-notifications-sidebar-head,
.theme-dark .topbar,
.theme-dark .footerbar {
    background: #212229 !important;
    color: white !important;
}

.theme-dark .card {
    background: #212229;
    color: white !important;
}

.theme-dark .text-dark {
    color: #fff !important;
}

/* .topbar {
  background: #fff0;
  color:white !important;
} */

.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6 {
    color: white !important;
}

.theme-dark a,
.theme-dark .vertical-menu > li > a,
.theme-dark .breadcrumb-item.active {
    color: #8a98ac !important;
}

.theme-dark .sidebar {
    background: #212229;
    border-right: 1px solid rgb(255 255 255 / 9%) !important;
    color: #8a98ac !important;
}

.theme-dark .rightbar,
.theme-dark .k-grid-header {
    background: #21222900;
}

.theme-dark .modal-body {
    /* background-color: #212229; */
}

.theme-dark {
    background: #14161c !important;
    color: white !important;
}

.round-corner {
    border-radius: 5px;
}

/* timeline css start */

.main-timeline:after {
    content: "";
    display: block;
    clear: both;
}

.main-timeline .timeline {
    width: calc(50% + 60px);
    padding: 20px 0 0 60px;
    margin: 0 5px 15px 0;
    float: right;
}

.main-timeline .timeline-content {
    color: #fff;
    background: #f07c5a;
    text-align: center;
    padding: 20px 20px 20px 160px;
    display: block;
    position: relative;
}

.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.main-timeline .timeline-content:before {
    content: "";
    background: linear-gradient(to top left, transparent 50%, #952000 52%);
    width: 60px;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.main-timeline .timeline-icon {
    font-size: 35px;
    line-height: 54px;
    width: 60px;
    height: 60px;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 80px;
    top: 50%;
}

.main-timeline .timeline-year {
    background: #f07c5a;
    font-size: 18px;
    font-weight: 600;
    line-height: 110px;
    width: 120px;
    height: 100%;
    position: absolute;
    top: -20px;
    left: -60px;
}

.main-timeline .title {
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 7px 0;
}

p.tDate {
    position: relative;
    top: 40%;
}

.main-timeline .description {
    font-size: 15px;
    letter-spacing: 1px;
    margin: 0;
}

.main-timeline .timeline:nth-child(even) {
    padding: 20px 60px 0 0;
    float: left;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 20px 160px 20px 20px;
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
    transform: rotateY(180deg);
    left: auto;
    right: 0;
}

.main-timeline .timeline:nth-child(even) .timeline-year {
    right: -60px;
    left: auto;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
    left: auto;
    right: 80px;
}

.main-timeline .timeline:nth-child(4n + 2) .timeline-content {
    background: #1862f787;
}

.main-timeline .timeline:nth-child(4n + 2) .timeline-content:before {
    background: linear-gradient(to top left, transparent 50%, #012e95 52%);
}

.main-timeline .timeline:nth-child(4n + 2) .timeline-year {
    background: #759aec;
}

.main-timeline .timeline:nth-child(4n + 3) .timeline-content {
    background: #7bdc67;
}

.main-timeline .timeline:nth-child(4n + 3) .timeline-content:before {
    background: linear-gradient(to top left, transparent 50%, #123a0a 52%);
}

.main-timeline .timeline:nth-child(4n + 3) .timeline-year {
    background: #91f17e;
}

.main-timeline .timeline:nth-child(4n + 4) .timeline-content {
    background: #ff91a7;
}

.main-timeline .timeline:nth-child(4n + 4) .timeline-content:before {
    background: linear-gradient(to top left, transparent 50%, #95001d 52%);
}

.main-timeline .timeline:nth-child(4n + 4) .timeline-year {
    background: #e98698;
}

@media screen and (max-width: 990px) {
    .main-timeline .timeline {
        width: calc(50% + 120px);
    }
}

@media screen and (max-width: 767px) {
    .main-timeline .timeline {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even) {
        text-align: center;
        padding: 42px 20px 0 0;
        margin: 0 0 30px;
    }

    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(even) .timeline-content {
        padding: 150px 20px 20px;
    }

    .main-timeline .timeline-content:before,
    .main-timeline .timeline:nth-child(even) .timeline-content:before {
        width: 60px;
        transform: rotate(90deg);
        bottom: auto;
        top: 20px;
        left: -20px;
    }

    .main-timeline .timeline-year,
    .main-timeline .timeline:nth-child(even) .timeline-year {
        line-height: 100px;
        width: 100%;
        height: 100px;
        left: auto;
        right: -20px;
        top: -42px;
    }

    .main-timeline .timeline-icon,
    .main-timeline .timeline:nth-child(even) .timeline-icon {
        transform: translateX(-50%) translateY(0);
        top: 75px;
        left: 50%;
        right: auto;
    }

    .main-timeline .title {
        font-size: 20px;
    }
}

.agentTimeline.modal {
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 auto;
    width: 75%;
    left: 12%;
    border-radius: 20px;
    max-height: 84vh;
    height: 100%;
}

.theme-dark .agentTimeline .modal-content {
    background: linear-gradient(135deg, rgb(255 255 255) 18%, #555656 100%);
}

.theme-dark .agentTimeline.modal .modal-header {
    background: linear-gradient(
        114deg,
        rgba(255, 255, 255, 1) 18%,
        rgb(101 106 106) 100%
    );
}

.agentTimeline .modal-content {
    border: none;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 18%,
        #8bf4f5 100%
    );
    border-radius: 20px !important;
}

.agentTimeline .modal-dialog {
    max-width: initial;
    margin: 0;
}

.agentTimeline .close {
    color: #000000;
    font-size: 37px;
    font-weight: 400;
}

.main-timeline {
    padding-top: 35px;
}

.timesline {
    min-height: 250px;
    max-height: 600px;
    height: auto;
    overflow-y: auto;
}

.timesline::-webkit-scrollbar {
    width: 12px;
    margin: 10px;
    /* width of the entire scrollbar */
}

.timesline::-webkit-scrollbar-track {
    background: #00999a;
    /* color of the tracking area */
}

.timesline::-webkit-scrollbar-thumb {
    background-color: #fff;
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 3px solid #00999a;
    /* creates padding around scroll thumb */
}

.existTbs .common-table::-webkit-scrollbar {
    width: 12px;
    margin: 10px;
    /* width of the entire scrollbar */
}

.existTbs .common-table::-webkit-scrollbar-track {
    background: #00999a;
    /* color of the tracking area */
}

.existTbs .common-table::-webkit-scrollbar-thumb {
    background-color: #fff;
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 3px solid #00999a;
    /* creates padding around scroll thumb */
}

.agentTimeline.modal .modal-header {
    border: none;
    background: linear-gradient(
        114deg,
        rgba(255, 255, 255, 1) 18%,
        rgb(0 153 154) 100%
    );
    z-index: 99;
    border-top-left-radius: 20px;
    border-top-right-radius: 13px;
}

/* time linecss end */
/* This is hr code  */
hr {
    border-top: 3px dotted #c0c0c0;
    height: 3px;
    width: 100%;
}

/* This is for stars that are coming in for a review module. */
button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.on {
    color: yellow;
}

.off {
    color: #ccc;
}

.custom-dropdown {
    position: relative;
}

.months-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.month-item {
    padding: 5px;
    cursor: pointer;
    background-color: #f8f9fa;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.month-item:hover {
    background-color: #007bff;
    color: white;
}
