@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
::before,
::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: #17242a;
    background: #fbf7f4;
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
}

:focus-visible,
a:focus-visible,
a:focus {
    outline: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

input,
button,
select,
textarea {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #17242a;
    background: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
    padding: 11px 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
}

textarea {
    height: auto;
}

select,
.c-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../../images/icon-chevron.svg) !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 24px !important;
    cursor: pointer;
    width: 100%;
    padding: 10px 36px 10px 16px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    line-height: 22px;
}
input:focus,
input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
    outline: none;
}

input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
    outline: none;
    border-color: #17242a;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    height: auto;
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
    outline: 0;
    box-shadow: none;
}

iframe {
    border: 0;
    width: 100%;
}

svg:not(:root) {
    overflow: hidden;
}

ol,
ul {
    padding: 0;
    list-style-type: none;
}

a {
    color: #f59635;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

a:hover {
    color: #17242a;
}

input[type="password"] {
    padding-right: 45px;
}
.toggle-password {
    position: absolute;
    top: 10px;
    right: 16px;
}
.show-password,
.hide-password {
    padding: 0;
    border: none;
    width: 24px;
    height: 24px;
    display: block;
}
.show-password {
    display: none;
    background: url("../../images/icon_show_eye.svg") no-repeat center;
}
.hide-password {
    background: url('../../images/icon_hidden_eye.svg') no-repeat center;
}
.show-hide-password .hide-password {
    display: none;
}
.show-hide-password .show-password {
    display: block;
}
.btn-danger.focus, .btn-danger:focus {
	color: #fff;
	background-color: #333d4c;
	border-color: #333d4c;
}
.padding .box form .bulk-action button {
	color: #333d4c;
	border: 1px solid #333d4c;
	border-radius: 6px;
}
.padding .box form .bulk-action button:hover, 
.padding .box form .bulk-action button:focus {
	background-color: #333d4c;
	color: #fff;
	box-shadow: none;
}
#aside ul.nav {
    overflow-x: auto !important;
    height: 100vh;
    border-right: 1px solid rgb(23 36 42 / 8%);
}
/* Typography */
h1,
.heading-one {
    font-size: 24px;
    line-height: 30px;
}
h2,
.heading-two {
    font-size: 22px;
    line-height: 30px;
}
h3,
.heading-three {
    font-size: 20px;
    line-height: 30px;
}
h4,
.heading-four {
    font-size: 18px;
    line-height: 30px;
}
h5,
.heading-five {
    font-size: 16px;
    line-height: 28px;
}
p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #17242a;
}
address,
pre,
blockquote,
dl,
dd,
menu,
ol,
ul,
table,
caption,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0 0 16px 0;
}
.text-danger {
    font-size: 16px;
    line-height: normal;
}
/* Typography End */

/* Buttons */
.solid-button,
.btn-primary {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #ffffff !important;
    background-color: #f59635;
    border: 0;
    border-radius: 6px;
    padding: 12px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease-in-out;
}
.solid-button:hover,
.solid-button:focus,
.btn-primary:hover,
.btn-primary:focus {
    color: #ffffff;
    background-color: #333d4c;
    transition: 0.3s ease-in-out;
}
.solid-button:disabled,
.solid-button:disabled:hover,
.solid-button:disabled:focus {
  color: #565656;
  background-color: #d3d3d3;
  pointer-events: none;
}
.border-btn,
.btn-danger {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #333d4c;
    background-color: #ffffff;
    border: 1px solid #333d4c;
    border-radius: 6px;
    padding: 11px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease-in-out;
}
.border-btn:hover,
.btn-danger:hover {
    color: #ffffff;
    background-color: #333d4c;
    border: 1px solid #333d4c;
    transition: 0.3s ease-in-out;
}
.fs-12 {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.05rem;
}
.fs-14 {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
}
.text-black { color: #17242a !important;}
.text-orange { color: #f59635 !important;}
.text-green { color: #46A44A !important;}
.text-red { color: #C93737; }
.text-light-blue { color: #31b0d5;}
.text-light-grey { color: #565656;}
.bg-light-orange { background-color: #fbf7f4;}
.fw-400 { font-weight: 400;}
.fw-500 { font-weight: 500;}
.fw-600 { font-weight: 600;}
.fw-700 { font-weight: 700;}
/* Buttons End */

.table-outer div.dataTables_wrapper div.dt-row {
    position: relative;
    overflow-x: scroll;
}

/* Checkbox */
input[type=checkbox]:before { display: none;}
.check-box-group {
    display: block;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #565656;
}
.check-box-group p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #565656;
    margin-bottom: 0;
    text-align: left;
}
.check-box-group p a {
    text-decoration: underline;
}
.check-box-group input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 16px;
    width: 16px;
    border: 2px solid #d3d3d3;
    border-radius: 3px;
}
.check-box-group input:checked~.checkmark {
    background-color: #f59635;
    border-color: #f59635;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.check-box-group input:checked~.checkmark:after {
    display: block;
}
.check-box-group .checkmark:after {
    left: 4px;
    top: 0;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* Checkbox End */

/* Common Styling */
.border-grey {
    border: 1px solid #d3d3d3;
}
/* Spacing */
.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.p-30 { padding: 30px;}
.p-24 { padding: 24px;}
.py-24 {
    padding-top: 24px;
    padding-bottom: 24px;
}
.px-40 {
    padding-left: 40px;
    padding-right: 40px;
}
.px-12 {
    padding-left: 12px;
    padding-right: 12px;
}
.p-0 { padding: 0;}
.mb-30 { margin-bottom: 30px;}
.mb-20 { margin-bottom: 20px;}
.mb-24 { margin-bottom: 24px;}
.mb-8 { margin-bottom: 8px;}
.mt-16 { margin-top: 16px;}
.mb-16 { margin-bottom: 16px;}
.mb-12 { margin-bottom: 12px;}
.mb-4 { margin-bottom: 4px;}
/* Spacing End */

/* Common Styling */

/* Authentication */
.form-box-warpper {
    max-width: 548px;
}
.auth_app {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-image: none;
    background-color: #fff;
    padding: 60px;
    overflow: hidden;
}
.edit-profile-box {
    max-width: 728px;
}
/* Authentication End */

/* App.css */
.navbar {
    border: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    min-height: auto;
    display: flex;
    align-items: center;
}
.navbar-md .navbar-nav > .nav-link, .navbar-md .navbar-nav > .nav-item > .nav-link, .navbar-md .navbar-item, .navbar-md .navbar-brand {
    line-height: normal;
}
.avatar {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 1;
    border-radius: 500px;
    white-space: nowrap;
    font-weight: bold;
    top: 0;
}
.navbar .avatar {
    top: 0;
}
.user-profile-circle > a { width: 40px; height: 40px;}
.show {
    display: inherit !important;
}
.dropdown-menu.show {
    transform: inherit !important;
    max-height: inherit;
    opacity: inherit;
    pointer-events: inherit;
}
.row {
    margin-left: -12px;
    margin-right: -12px;
}
.row>* {
    padding-right: 12px;
    padding-left: 12px;
}
.form-control {
    height: auto;
    min-height: inherit;
    border-color: #d3d3d3;
    color: #161717 !important;
    border: 1px solid #d3d3d3 !important;
    border-radius: 6px !important;
    padding: 10px 15px;
    transition: 0.3s ease-in-out;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}
.form-control::placeholder {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.form-control:focus {
    box-shadow: none;
    border-color: #161717 !important;
}
.btn {
    padding: 11px 15px;
}
.app-footer:not(.hide) ~ .app-body {
    padding-bottom: 0;
}
.edit-action .box-body form, 
.edit-program .box-body form, 
.edit-package .box-body form, 
.edit-shout-out .box-body form, 
.edit-questions .box-body form, 
.edit-take-action .box-body form {
    padding: 0;
}
.navside [flex] {
    overflow: auto;
}
.navside .nav li a {
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
}
.navside .nav > li > a .nav-text {
    font-size: 12px;
    color: #17242a;
    font-weight: 500;
}
.navside .nav > li.active > a .nav-text {
    color: #F59635;
}
.navside .nav li.active .nav-sub li .sub-link:after,
.navside .nav li.active .nav-sub li.active .nav-sub li a.sub-link::after {
    content: '' !important;
    position: absolute;
    width: 5px;
    height: 5px;
    background: #17242a !important;
    border-radius: 100%;
    left: 25px;
    opacity: 0.6 !important;
}
.navside .nav li li a .nav-text {
    padding: 5px 0;
    font-size: 11px;
    font-weight: 500;
}
.app-header {
    padding: 18px 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: inherit;
    z-index: 1020;
    border-bottom: 1px solid transparent;
}
#aside .navbar,
.app-header.white {
    background-color: #fff;
}
#aside .navbar {
    padding: 12px 16px;
}
#aside ul.nav::-webkit-scrollbar-thumb{
    background: #F59635;
}
#aside ul.nav::-webkit-scrollbar-track{
    box-shadow: inset 0px 0px 2px #dedede;
}
#aside ul.nav::-webkit-scrollbar{
    width: 2px;
    height: 2px;
}
select.form-control:not([size]):not([multiple]) {
    height: auto;
}
.padding .box form {
    background: transparent;
    border-radius: 10px;
    padding: 0;
}
.card-body .form-group {
    position: static;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 16px;
}
body .bulk-action {
    display: flex!important;
    justify-content: flex-end!important;
    padding: 0 !important;
    margin-top: 35px;
}
.box-header {
    padding: 0;
}
.padding .box .box-header small {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-block;
}
.box-header small {
    display: block;
    margin-top: 4px;
    opacity: 1;
}
.box, .box-color {
    background-color: #fbf7f4;
}
.show_blade_div {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25;
    background-color: transparent;
    border-color: #d3d3d3 !important;
    color: #000 !important;
    border: 1px solid #d3d3d3 !important;
    border-radius: 6px !important;
}
.form-group label {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #17242a;
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 0;
}
/* App.css End */

/* Datatable CSS */
.table .text-center br{
    display: none;
}
.table .text-center a, .table .text-center button{
    padding: 0;
    margin: 0 5px;
}
.table .text-center a i, .table .text-center button i {
    padding: 0px;
}
.table a.success, .table a.success small i,
.table button.warning, .table button.warning small i {
    background: transparent;
    color: #17242a;
    font-size: 19px;
}
.table a.success:hover i, .table button.warning:hover i,
.table a.success:hover , .table button.warning:hover,
.table  a.success:focus , .table  button.warning:focus {
    color: #f59635;
    background: transparent;
    box-shadow: none !important;
    transition: 0.3s ease-in-out;
}
.padding .box form .table-responsive .dataTables_wrapper .dataTables_info{
    padding: 0 0 0 15px;
    line-height: 23px;
}
.padding .box form .table-responsive .dataTables_wrapper .paging_simple_numbers{
    padding: 0 15px 0 0;
}
.padding .box .table-responsive .dataTables_wrapper .paging_simple_numbers span a,
.padding .box form .table-responsive .dataTables_wrapper .paging_simple_numbers span a {
    padding: 2px 8px;
    background: #fff;
    color: #17242a !important;
    border: 1px solid #17242a !important;
    border-radius: 5px;
    margin: 0 5px;
}
.padding .box .table-responsive .dataTables_wrapper .paging_simple_numbers span a:focus
.padding .box form .table-responsive .dataTables_wrapper .paging_simple_numbers span a:focus {
    outline: none;
}
.padding .box .table-responsive .dataTables_wrapper .paging_simple_numbers span a.current,
.padding .box form .table-responsive .dataTables_wrapper .paging_simple_numbers span a.current{
    background: #f49540 !important;
    border-color: #f49540 !important;
    color: #fff !important;
}
.padding .box .table-responsive .dataTables_wrapper .paging_simple_numbers span a:hover,
.padding .box .table-responsive .dataTables_wrapper .paging_simple_numbers span a:focus,
.padding .box form .table-responsive .dataTables_wrapper .paging_simple_numbers span a:hover,
.padding .box form .table-responsive .dataTables_wrapper .paging_simple_numbers span a:focus{
    background: #f49540 !important;
    color: #fff !important;
    border: 1px solid #f49540 !important;
}
table.dataTable thead td,.table-bordered td, .table-bordered th{
    border: none !important;
}
.table > thead > tr > th{
    border-bottom: 1px solid #dfdfdf !important;
}
table.dataTable.no-footer{
    border-bottom: none !important;
    border-top: 1px solid #dfdfdf;
  
}
table.dataTable tbody td{
    border-bottom: 1px solid #dfdfdf !important;
}
table.dataTable tbody th, table.dataTable tbody td,table.dataTable thead th{
    padding: 8px 15px !important;
    vertical-align: middle;
}
.padding .box form .table-responsive::-webkit-scrollbar-thumb{
    background: #dedede;
}
.padding .box form .table-responsive::-webkit-scrollbar-track{
    box-shadow: inset 0px 0px 3px #dedede;
}
.padding .box form .table-responsive::-webkit-scrollbar{
    width: 6px;
    height: 6px;
}
.paginate_button.previous { margin-right: 10px;}
/* Header */
.app-body {
    margin-top: 77px;
    padding: 0 !important;
}
.app-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: inherit;
}
.header-menu .sub-menu .dropdown-menu,
.header-right .dropdown-menu,
.data-table .dropdown-menu,
.dataTable .dropdown-menu {
    padding: 8px 0;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.14));
    border: none;
    border-radius: 6px;
    transform: translate(0, 60px) !important;
    transition: 0.4s;
    background: #fff;
    z-index: 4;
    -webkit-animation-name: DropDownSlide;
    animation-name: DropDownSlide;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute !important;
    top: 100% !important;
    left: inherit !important;
    right: 0 !important;
    overflow: hidden;
    font-size: 14px;
    line-height: 18px;
    color: #161717;
    min-width: 144px;
}
.header-menu .sub-menu .dropdown-menu li,
.header-right .dropdown-menu li,
.data-table .dropdown-menu li,
.dataTable .dropdown-menu li {
    margin-bottom: 4px;
}
.header-menu .sub-menu .dropdown-menu li:last-child,
.header-right .dropdown-menu li:last-child,
.data-table .dropdown-menu li:last-child,
.dataTable .dropdown-menu li:last-child {
    margin-bottom: 0;
}
.header-menu .sub-menu .dropdown-menu.show,
.header-right .dropdown-menu.show {
    transform: translate(0, 25px) !important;
    transition: 0.4s;
}
.header-menu .sub-menu .dropdown-menu > li:not(.dropdown-item) > a,
.header-right .dropdown-menu > li:not(.dropdown-item) > a,
.data-table .dropdown-menu > li:not(.dropdown-item) > a,
.dataTable .dropdown-menu > li:not(.dropdown-item) > a {
    display: block;
    padding: 6px 16px;
    border-bottom: 0;
    border-radius: 6px;
    color: #161717;
}
.header-menu .sub-menu .dropdown-menu > li:last-child a,
.header-right .dropdown-menu > li:last-child a,
.data-table .dropdown-menu > li:last-child a,
.dataTable .dropdown-menu > li:last-child a {
    border-bottom: 0;   
}
.header-menu .sub-menu .dropdown-menu > li:not(.dropdown-item) > a:hover, 
.header-menu .sub-menu .dropdown-menu > li:not(.dropdown-item) > a:focus,
.header-right .dropdown-menu > li:not(.dropdown-item) > a:hover, 
.header-right .dropdown-menu > li:not(.dropdown-item) > a:focus,
.data-table .dropdown-menu > li:not(.dropdown-item) > a:hover, 
.data-table .dropdown-menu > li:not(.dropdown-item) > a:focus,
.dataTable .dropdown-menu > li:not(.dropdown-item) > a:hover, 
.dataTable .dropdown-menu > li:not(.dropdown-item) > a:focus {
    background-color: #F7F7F7;
}
[data-popper-placement="top-start"] {
    animation-name: DropDownSlideDown;
}
@keyframes DropDownSlide {
    100% {
        margin-top: -1px;
    }

    0% {
        margin-top: 8px;
    }
}
@keyframes DropDownSlideDown {
    100% {
        margin-bottom: 0;
    }

    0% {
        margin-bottom: 8px;
    }
}
.navside {
    background-color: #fff;
}
.navside .nav li:first-child a {
    border-top: 1px solid rgb(23 36 42 / 10%);
}
.navside .nav li a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 10px 14px;
    border-bottom: 1px solid rgb(211 211 211 / 50%);
    line-height: normal;
    color: #17242a;
}
.navside > .nav > li > a {
    line-height: 2rem;
    padding-left: 3.5rem;
}
/* .navside .nav > li.active > a .nav-icon {
    filter: brightness(100);
} */
.navside .nav li a .nav-caret {
    position: absolute;
    right: 15px;
    margin: 0;
    opacity: 1;
}
.navside .nav li a:hover, 
.navside .nav li a:focus {
    background-color: transparent;
}
.navside .nav li li > a.sub-link {
    padding-left: 3.5rem;
}
.nav-active-primary .nav-link.active, 
.nav-active-primary .nav > li.active > a,
.nav-active-primary .nav > li:hover > a .nav-text {
    color: #F59635 !important;
    background-color: #fff !important;
    opacity: 1 !important;
    transition: all 0.3s;
}
.navside .nav > li.active > ul > li.active > a .nav-text,
.navside .nav > li.active > ul > li:hover > a .nav-text,
.navside .nav > li.active > ul > li.active > a {
     color: #F59635 !important;
}
.nav-active-primary .nav-link.active svg path, 
.nav-active-primary .nav > li.active > a svg path,
.nav-active-primary .nav > li:hover > a svg path,
.navside .nav > li.active > ul > li.active > a svg path,
.navside .nav > li.active > ul > li:hover > a svg path {
    fill: #F59635;
    transition: all 0.3s;
}
.navside .nav li.active .nav-sub li.active .sub-link::after, 
.navside .nav li.active a:focus .sub-link::after, 
.navside a.sub-link:hover.sub-link::after,
.navside .nav li.active .nav-sub li.active .nav-sub li.active a.sub-link::after,
.navside .nav li.active .nav-sub li.active .nav-sub li:hover a.sub-link::after {
    background: #F59635 !important;
    opacity: 1 !important;
    transition: all 0.3s;
}
.navside > .nav > li.active > .nav-sub > .nav-text,
.navside a.sub-link:hover .nav-text,
.navside .nav li.active .nav-sub li.active .nav-sub li.active a.sub-link .nav-text {
    color: #F59635;
    transition: all 0.3s;
}
.nav-caret i {
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    font-size: 16px;
}
.nav-active-primary .nav > li:hover > a .nav-caret i,
.navside .nav > li.active > ul > li:hover > a .nav-caret i {
    color: #F59635;
    transition: all 0.3s;
}
/* Header */

/* Icons */
i {
    display: flex;
}
i::before {
    content: "";
    display: block;
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    background-size: cover !important;
}
.icon-notification::before {
    -webkit-mask-image: url(../../images/icon-notification.svg);
    mask-image: url(../../images/icon-notification.svg);
    width: 24px;
    height: 24px;
    background: #161717;
}
.icon-inquiry::before {
    -webkit-mask-image: url(../../images/icon-inquiry.svg);
    mask-image: url(../../images/icon-inquiry.svg);
    width: 22px;
    height: 22px;
    background: #161717;
}
.icon-plus::before {
    -webkit-mask-image: url(../../images/icon-plus.svg);
    mask-image: url(../../images/icon-plus.svg);
    width: 18px;
    height: 18px;
    background: #565656;
    transition: all 0.5s;
}
.icon-edit::before {
    -webkit-mask-image: url(../../images/icon-edit.svg);
    mask-image: url(../../images/icon-edit.svg);
    width: 18px;
    height: 18px;
    background: #83A7B2;
    transition: all 0.5s;
}
.icon-delete::before {
    -webkit-mask-image: url(../../images/icon-delete.svg);
    mask-image: url(../../images/icon-delete.svg);
    width: 30px;
    height: 30px;
    background: #83A7B2;
    transition: all 0.5s;
}
.icon-edit-small::before {
    -webkit-mask-image: url(../../images/icon-edit.svg);
    mask-image: url(../../images/icon-edit.svg);
    width: 16px;
    height: 16px;
    background: #83A7B2;
    transition: all 0.5s;
}
.icon-delete-small::before {
    -webkit-mask-image: url(../../images/icon-delete.svg);
    mask-image: url(../../images/icon-delete.svg);
    width: 16px;
    height: 16px;
    background: #83A7B2;
    transition: all 0.5s;
}
.icon-delete-red::before {
    -webkit-mask-image: url(../../images/icon-delete.svg);
    mask-image: url(../../images/icon-delete.svg);
    width: 30px;
    height: 30px;
    background: #C93737;
    transition: all 0.5s;
}
.icon-back-arrow::before {
    -webkit-mask-image: url(../../images/icon-expand_more.svg);
    mask-image: url(../../images/icon-expand_more.svg);
    width: 14px;
    height: 14px;
    background: #565656;
    transition: all 0.5s;
    transform: rotate(90deg);
}
.icon-calender::before {
    -webkit-mask-image: url(../../images/icon-calender.svg);
    mask-image: url(../../images/icon-calender.svg);
    width: 16px;
    height: 16px;
    background: #565656;
    transition: all 0.5s;
}
.icon-cancel::before {
    -webkit-mask-image: url(../../images/icon-cancel.svg);
    mask-image: url(../../images/icon-cancel.svg);
    width: 16px;
    height: 16px;
    background: #C93737;
    transition: all 0.5s;
}
.icon-completed::before {
    -webkit-mask-image: url(../../images/icon-completed.svg);
    mask-image: url(../../images/icon-completed.svg);
    width: 16px;
    height: 16px;
    background: #46A44A;
    transition: all 0.5s;
}
.icon-error::before {
    background-image: url(../../images/icon-error.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 24px;
    transition: all 0.5s;
}
.icon-logout::before {
	-webkit-mask-image: url(../../images/icon-logout.svg);
	mask-image: url(../../images/icon-logout.svg);
	width: 30px;
	height: 30px;
	background: #C93737;
	transition: all 0.5s;
}
label.error { color: #c30202 !important;}
/* Icons End */

/* Dashboard */
.upskild-dashboard {
    margin: 0;
    padding: 30px;
    background: #fbf7f4;
}
.upskild-dashboard .title-right-col form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.box-inner-col {
    width: 20%;
}
.filter-button-block {
    display: flex;
    align-items: center;
    gap: 10px;
}
.upskild-dashboard .title-right-col form .filter-date-block input,
.upskild-dashboard .title-right-col form .filter-button-block input {
    width: auto;
}
.upskild-dashboard .marina-info-wrapper {
    justify-content: flex-end;
}
.filter-message {
    color: #001645;
    font-weight:500;
    width: 212px;
    margin-right: 0;
}
.calender-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    /* flex-wrap: wrap; */
}
.calender-wrapper input,
.date-range-picker input,
.date-range-picker .btn-danger {
    border-radius: 4px !important;
}
.calender-two-item {
    display: flex;
    gap: 10px;
    align-items: center;
}
.calender-wrapper .solid-button {
    width: auto;
}
body .daterangepicker {
    right: 120px !important;
    left: auto !important;
    top: 75px !important;
    border-radius: 6px !important;
    border: none !important;
    padding: 10px;
    box-shadow: 0 0 13px rgb(0 0 0 / 6%) !important;
    z-index: 0 !important;
}
body .daterangepicker.show-calendar .drp-buttons {
    display: flex !important;
    /* flex-wrap: wrap; */
    justify-content: flex-end;
    align-items: center;
    gap:6px;
}
body .daterangepicker .drp-selected {
    display: inline-block;
    font-size: 12px;
    padding-right: 0;
    padding-bottom: 0;
    text-align: left;
}
body .daterangepicker .drp-buttons .btn {
    margin-left: 0;
    width: auto;
}
body .daterangepicker .drp-buttons .btn {
    border-radius: 6px !important;
}
.upskild-dashboard > .title-row { 
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.filter-date-block {
    position: relative;
}
.removeError1 {
    position: absolute;
    display: block;
    width: 100%;
    /* padding: 10px 10px 0 0; */
    clear: both;
    right: 0;
    left: 0;
    bottom: -30px;
    margin: 0 0 0 0;
    text-align: left;
}
/* .upskild-dashboard .box-inner-col {
    margin-bottom: 24px;
} */
.upskild-dashboard .box.p-a {
    background-color: #fff;
    padding: 16px !important;
    margin: 12px 0 0px;
    border: 0;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(251, 247, 244, 0.06) 0 0 15px 4px;
}
.upskild-dashboard .box.p-a a {
    display: block;
    text-align: left;
}
.upskild-dashboard .box.p-a a .clear {
    margin: 0;
}
.upskild-dashboard .box.p-a:hover {
    background-color: #fff;
    transition: 0.3s ease-in-out;
    box-shadow: none;
}
.upskild-dashboard .box.p-a a .m-r {
    margin-right: 0 !important;
    background-color: #fff;
    padding: 4px;
    border-radius: 6px;
}
.upskild-dashboard .box .icon-img {
    max-width: 50px;
    min-width: 50px;
}
.upskild-dashboard .box.p-a a .clear .text-muted {
    font-size: 16px;
    font-weight: 500;
    color: #878a99 !important;
}
.upskild-dashboard .box.p-a a .clear .text-md {
    margin: 0 0 10px 0!important;
    font-size: 22px;
    color: #495057;
}
.box-inner-row {
    margin-left: -6px !important;
    margin-right: -6px !important;
}
.box-inner-row > div {
    padding-left: 6px !important;
    padding-right: 6px !important;
}
.border-grey {
    border: 1px solid #d3d3d3;
}
/* Dashboard End */

/* Change Password */
.padding {
    padding: 30px;
}
.box .box-header.dker {
    padding: 0 0 30px;
}

.box .box-header h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 0;
    display: block;
}
/* Change Password End */
.table > thead > tr > th {
    border-bottom: none !important;
    padding: 16px !important;
    background-color: #F7F7F7;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #565656;
}
table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
    content: url(../../images/icon-up.svg);
    opacity: 1;
}
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
    content: url(../../images/icon-down.svg);
    opacity: 1;
}
table.dataTable>tbody>tr:hover td {
    background-color: #fbf7f4;
}
.table-outer table.dataTable tbody td {
    white-space: nowrap;
}
.table-outer table.dataTable tbody td {
    border-bottom: 1px solid #d3d3d3 !important;
    padding: 16px !important;
}
.table-outer table.dataTable thead tr:first-child th:first-child {
    border-top-left-radius: 8px;
}
.table-outer table.dataTable thead tr:first-child th:last-child {
    border-top-right-radius: 8px;
}
.table-outer table.dataTable tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}
.table-outer table.dataTable tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}
.table-outer div.dataTables_wrapper div.dataTables_length label,
.table-outer div.dataTables_wrapper div.dataTables_filter label {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #161717 !important;
}
.table-outer div.dataTables_wrapper div.dataTables_length select {
    width: auto;
    display: inline-block;
    margin: 0 8px;
    background: #F7F7F7;
    border: 0 !important;
    padding: 6px 48px 6px 16px !important;
    height: auto;
    font-size: 12px;
    line-height: 20px;
    background-position: right 8px center !important;
    border-radius: 6px !important;
}
.dataTables_length {
    text-align: left;
}
.text-link {
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    color: #565656;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    text-decoration: underline;
}
table.dataTable thead th, 
table.dataTable tfoot th {
    white-space: nowrap;
}
/* Dashboard End */

/* Empty State */
.empty-state-wrapper {
    padding: 100px 0;
}
.empty-state-box {
    max-width: 360px;
    margin: auto;
    text-align: center;
}
.empty-state-img {
    margin-bottom: 16px;
    max-width: 150px;
}
/* Empty State End */


.action-btn {
    border: 1px solid #f59635;
    border-radius: 6px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #f59635;
    padding: 3px 12px;
}
.data-table .dropdown-toggle,
.dataTable .dropdown-toggle {
    border: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.data-table .dropdown-toggle::after,
.dataTable .dropdown-toggle::after {
    display: none;
}
.data-table .dropdown-toggle span,
.dataTable .dropdown-toggle span {
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #565656;
    display: block;
}
.data-table .dropdown-menu > li:not(.dropdown-item) > a,
.dataTable .dropdown-menu > li:not(.dropdown-item) > a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
}
.data-table .dropdown-menu,
.dataTable .dropdown-menu {
    top: -20px !important;
    transform: translate(0, 0) !important;
    -webkit-animation-name: none;
    animation-name: none;
    -webkit-animation-duration: 0;
    animation-duration: 0;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
    transform: translate(-52px, 8px) !important;
}
.data-table .dropdown-menu.show,
.dataTable .dropdown-menu.show {
    transition: 0.4s;
}
.slip-info-wrapper .dataTable .dropdown-menu {
    top: -60px !important;
}
.data-table-footer {
    background-color: #F7F7F7;
    border-radius: 8px;
    padding: 12px 24px;
    margin-top: 0;
}
.data-table-footer .row {
    align-items: center;
}
div.dataTables_wrapper div.dataTables_info {
    padding-top: 0;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #161717;
}
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    gap: 14px;
    margin: 0;
}
.pagination > li > a {
    position: relative;
    float: none;
    padding: 4px 9px;
    font-size: 16px;
    line-height: normal;
    color: #565656 !important;
    text-decoration: none;
    background-color: #fff;
    border: 0;
    width: 27px;
    height: 27px;
}
.page-item:not(:first-child) .page-link {
    margin-left: 0;
}
.page-item.previous .page-link,
.page-item.next .page-link {
    font-size: 0;
    border: 1px solid #EFEFEF;
    border-radius: 3px;
    background-color: #fff !important;
    background-image: url("../../images/pagination-left.svg");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
}
.page-item.next .page-link {
    background-image: url("../../images/pagination-right.svg");
}
.pagination .page-item.active, 
.pagination > .active > a, 
.pagination > .active > span, 
.pager .page-item.active, 
.pager > .active > a, 
.pager > .active > span {
    color: #f59635 !important;
    background-color: transparent !important;
    border-color: transparent !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active, 
.dataTables_wrapper .dataTables_paginate .paginate_button:hover, 
.dataTables_wrapper .dataTables_paginate .paginate_button:focus {
    border: transparent !important;
    background: transparent !important;
    outline: none !important;
    border-radius: 3px;
}
body .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: #17242a !important;
}
.page-link:focus {
    box-shadow: none;
}
.action-heading::before,
.action-heading::after { display: none !important;}
table.dataTable thead>tr>th.sorting:before, 
table.dataTable thead>tr>th.sorting:after, 
table.dataTable thead>tr>th.sorting_asc:before, 
table.dataTable thead>tr>th.sorting_asc:after, 
table.dataTable thead>tr>th.sorting_desc:before, 
table.dataTable thead>tr>th.sorting_desc:after, 
table.dataTable thead>tr>th.sorting_asc_disabled:before, 
table.dataTable thead>tr>th.sorting_asc_disabled:after, 
table.dataTable thead>tr>th.sorting_desc_disabled:before, 
table.dataTable thead>tr>th.sorting_desc_disabled:after, 
table.dataTable thead>tr>td.sorting:before, 
table.dataTable thead>tr>td.sorting:after, 
table.dataTable thead>tr>td.sorting_asc:before, 
table.dataTable thead>tr>td.sorting_asc:after, 
table.dataTable thead>tr>td.sorting_desc:before, 
table.dataTable thead>tr>td.sorting_desc:after, 
table.dataTable thead>tr>td.sorting_asc_disabled:before, 
table.dataTable thead>tr>td.sorting_asc_disabled:after, 
table.dataTable thead>tr>td.sorting_desc_disabled:before, 
table.dataTable thead>tr>td.sorting_desc_disabled:after {
    font-size: 14px;
    line-height: 8px;
    color: #565656;
}
.backarrow {
    gap: 12px;
}
table.dataTable thead>tr>th.sorting,
table.dataTable thead>tr>th.sorting_asc,
table.dataTable thead>tr>th.sorting_desc,
table.dataTable thead>tr>th.sorting_asc_disabled,
table.dataTable thead>tr>th.sorting_desc_disabled,
table.dataTable thead>tr>td.sorting,
table.dataTable thead>tr>td.sorting_asc,
table.dataTable thead>tr>td.sorting_desc,
table.dataTable thead>tr>td.sorting_asc_disabled,
table.dataTable thead>tr>td.sorting_desc_disabled {
	padding-right: 26px !important;
}
table.dataTable tbody td {
    white-space: nowrap;
}

/* My Profile - Edit */
.box-body {
    padding: 24px;
    background-color: #fff;
    border-radius: 6px;
}
.box-shadow-z0, .box-shadow-z0 .box, .box-shadow-z0 .box-color {
    box-shadow: none;
}
.edit-user .form-group .images #user_photo .delete a, 
.edit-user .form-group .images #user_photo .delete a:hover, 
.edit-user .form-group .images #user_photo .delete a:focus {
    background: #f59635;
    border: 1px solid #f59635;
    color: #fff;
    padding: 6px 12px;
    margin: 0 10px 0 0;
}
body .edit-program .box-body form button[type="submit"], 
body .edit-package .box-body form button[type="submit"], 
body .edit-shout-out .box-body form button[type="submit"], 
body .edit-questions .box-body form button[type="submit"], 
body .edit-take-action .box-body form button[type="submit"] {
    margin-top: 0 !important;
    background: #f59635;
    border: 0;
    color: #fff;
    border-radius: 6px;
    transition: 0.3s;
}
.edit-program .box-body form button[type="submit"]:hover, 
.edit-program .box-body form button[type="submit"]:focus, 
.edit-package .box-body form button[type="submit"]:hover, 
.edit-package .box-body form button[type="submit"]:focus, 
.edit-shout-out .box-body form button[type="submit"]:hover, 
.edit-shout-out .box-body form button[type="submit"]:focus, 
.edit-questions .box-body form button[type="submit"]:hover, 
.edit-questions .box-body form button[type="submit"]:focus, 
.edit-take-action .box-body form button[type="submit"]:hover, 
.edit-take-action .box-body form button[type="submit"]:focus {
    background: #17242a;
    border: 0;
    transition: 0.3s;
}
.profile-image {
    position: relative;
}
.edit-profile-box-inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.image-block {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    overflow: hidden;
}
.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-photo-edit {
    position: absolute;
    right: 0;
    left: auto;
    bottom: 0;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border: 3px solid #fff;
    border-radius: 50%;
}
.profile-img-file-input {
    display: none;
}
.avatar-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: #f59635;
    border-radius: 50%
}
.profile-content {
    width: 100%;
}
.edit-profile-box .country-code-overlap input.floating-input {
    padding-left: 70px;
}
.country-code-overlap .country-code-type {
    padding-left: 60px;
}
.country-code-overlap select#country_code {
    position: absolute;
    width: 66px;
    top: 0;
    border: none;
    height: 42px;
    padding: 12px 16px 12px 16px !important;
    background-position: right 0 center !important;
}
/* End My Profile - Edit */

/* Date Picker */
.daterangepicker select.yearselect {
    width: 50% !important;
    padding: 13px 24px 12px 12px !important;
    background-position: right 12px center !important;
}
.drp-calendar.left .table-condensed > thead > tr > th:first-child, 
.drp-calendar.right .table-condensed > thead > tr > th:first-child, 
.drp-calendar.right .table-condensed > thead > tr > th:nth-child(2) {
    display: none;
}
.daterangepicker td.active, 
.daterangepicker td.active:hover, 
.daterangepicker td.available:hover, 
.daterangepicker th.available:hover {
    background-color: #f59635 !important;
    color: #fff !important;
}
.daterangepicker td.start-date {
    border-radius: 4px;
}
.daterangepicker .drp-buttons .btn.cancelBtn {
    color: #f59635 !important;
    background: transparent !important;
    border: 1px solid #f59635 !important;
}
.daterangepicker .drp-buttons .btn.applyBtn {
    background: #f59635 !important;
    border: 1px solid #f59635 !important;
}
.daterangepicker .drp-buttons .btn.cancelBtn:hover, 
.daterangepicker .drp-buttons .btn.cancelBtn:focus {
    background: #f59635 !important;
    color: #fff !important;
}
.daterangepicker .drp-buttons .btn.applyBtn:hover, 
.daterangepicker .drp-buttons .btn.applyBtn:focus {
    color: #f59635 !important;
    background: transparent !important;
}
.ui-datepicker .ui-datepicker-title select {
    background-position: right 12px center !important;
    padding: 5px 10px !important;
}
/* Date Picker End */

/* Old Datatable CSS */
table.dataTable, 
table.dataTable th, 
table.dataTable td {
    box-sizing: border-box !important;
}
.table-outer table.dataTable.no-footer,
table.dataTable.no-footer {
    border: 1px solid #E0E8EF !important;
    margin-top: 16px !important;
    margin-bottom: 16px !important;
    border-radius: 8px;
}
table.dataTable thead .sorting::before,
table.dataTable thead .sorting::after { display: none !important;}

/* .dataTables_wrapper table.dataTable thead .sorting,
.dataTables_wrapper table.dataTable thead .sorting_asc,
.dataTables_wrapper table.dataTable thead .sorting_desc {
    background-image: url(../../images/icon-sorting.svg) !important;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px;
} */
table.dataTable > thead > tr > th {
    padding: 16px !important;
    border-bottom: 0;
}
table.dataTable > thead > tr > th {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #565656;
    background-color: #F7F7F7;
}
table.dataTable.stripe tbody tr.odd, 
table.dataTable.display tbody tr.odd {
    background-color: #fff !important;
}
table.dataTable > tbody > tr > td {
    padding: 16px !important;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #161717;
    text-decoration: none !important;
}
table.dataTable > tbody > tr > td a { 
    text-decoration: none !important;
}
table.dataTable tbody td {
    border-bottom: 0 !important;
}
table.dataTable > thead > tr:first-child > th:first-child {
    border-top-left-radius: 8px;
}
table.dataTable > thead > tr:first-child > th:last-child {
    border-top-right-radius: 8px;
}
table.dataTable > tbody > tr:last-child > td:first-child {
    border-bottom-left-radius: 8px;
}
table.dataTable > tbody > tr:last-child > td:last-child {
    border-bottom-right-radius: 8px;
}
table.dataTable.stripe > tbody > tr:nth-child(odd) > *, 
table.dataTable.display > tbody > tr:nth-child(odd) > * {
    box-shadow: none;
}
table.dataTable.hover tbody tr:hover, 
table.dataTable.display tbody tr:hover {
    background-color: #EFF6F6;
}
table.dataTable.hover > tbody > tr:hover > *, 
table.dataTable.display > tbody > tr:hover > * {
    box-shadow: none;
    box-shadow: none;
}
div.dataTables_wrapper div.dataTables_length select {
    width: 85px;
    height: auto;
    display: inline-block;
    background: #F7F7F7;
    border-radius: 4px !important;
    border: 0 !important;
    padding: 10px 28px 10px 16px !important;
    font-size: 12px;
    line-height: 20px;
    color: #111111;
    font-weight: 400;
    background-image: url(../../images/icon-chevron.svg) !important;
    background-position: right 8px center !important;
    margin: 0 8px;
    appearance: none;
    -webkit-appearance: none;
}
div.dataTables_wrapper div.dataTables_length label {
    text-align: left;
    white-space: nowrap;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #161717 !important;
    margin-bottom: 16px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: auto;
    padding: 0 !important;
    margin-left: 0 !important;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    color: #333 !important;
    border-radius: 0;
    border: 0 !important;
}
table.dataTable.row-border tbody th, 
table.dataTable.row-border tbody td, 
table.dataTable.display tbody th, 
table.dataTable.display tbody td {
    border-top: 1px solid #D9DADC !important;
}
table.dataTable.display tbody td input { 
    height: auto;
    background-color: transparent;
    border: 0 !important;
    padding: 0;
    width: auto;
}
table.dataTable.display tbody td input.btn-success { 
    color: #46A44A;
}
table.dataTable.display tbody td input.btn-primary { 
    color: #565656;
}
table.dataTable.display tbody td input.btn-check:checked+.btn, 
table.dataTable.display tbody td input.btn.active, 
table.dataTable.display tbody td input.btn.show, 
table.dataTable.display tbody td input.btn:first-child:active, 
table.dataTable.display tbody td input:not(.btn-check)+.btn:active {
    background-color: transparent
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    box-shadow: none !important;
}
div.dataTables_wrapper div.dataTables_filter label {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #161717 !important;
    margin-bottom: 16px;
}
div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 6px;
    display: inline-block;
    width: auto;
    background-color: #F7F7F7;
    border: 0 !important;
    padding: 10px 8px 10px 10px !important;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #161717;
    height: auto;
    border-radius: 4px !important;
    min-width: 300px;
}
.pagination > li > a:hover {
    color: #f59635 !important;
    transition: 0.5s;
}
div.table-responsive>div.dataTables_wrapper>div.dt-row > div {
    margin: 0;
    overflow-x: scroll;
}
.date-range-picker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.date-range-picker label {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 21px;
}
.date-range-picker .clear_button {
    margin-top: 36px;
}
table.dataTable.display tbody tr.odd>.sorting_1, 
table.dataTable.order-column.stripe tbody tr.odd>.sorting_1,
table.dataTable.display tbody tr.even>.sorting_1, 
table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
    background-color: #fff !important;
    box-shadow: none !important;
}
table.dataTable.display tbody tr.odd:hover>.sorting_1, 
table.dataTable.order-column.stripe tbody tr.odd:hover>.sorting_1,
table.dataTable.display tbody tr.even:hover>.sorting_1, 
table.dataTable.order-column.stripe tbody tr.even:hover>.sorting_1 {
    background-color: #EFF6F6 !important;
}
/* Old Datatable CSS End */

/* Talotsing Datatable */
.table { background-color: #fff; border-color: #E0E8EF;}
.table_data {
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 6px;
}
.box-header {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.box-tool {
    position: static;
}
.table_data .table .dker {
    background: #F7F7F7;
}
.show-eyes.list {
    position: relative;
    font-size: 0;
    background: transparent;
    border: none;
    padding: 10px !important;
    box-shadow: none;
    margin: 0 !important;
    margin-bottom: 0 !important;
}
.show-eyes.list::after {
	content: '\f06e ';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 16px;
	left: 0;
	right: 0;
	top: 2px;
	transform: translate(0, -2px);
	color: #808080;
    transition: all 0.3s;    
}
.show-eyes.list:hover::after {
    color: #f49540;
    transition: all 0.3s;
}
.fa-thumbs-up {
    font-size: 16px;
}
.table a.success, 
.table a.success small i, 
.table button.warning, 
.table button.warning small i {
    background: transparent;
    color: #808080;
    font-size: 16px;
    padding: 0;
    border: 0;
}
.padding .box form .table-responsive .dataTables_wrapper .dataTables_length ,
.padding .box form .table-responsive .dataTables_wrapper .dataTables_filter {
    padding: 0;
}
.padding .box form .bulk-action select#action {
    border-radius: 6px;
    margin: 0 10px 0 0;
    width: auto;
}
.card-body .row {
	margin-left: -6px;
	margin-right: -6px;
}
.card-body .row [class*="col-"] {
	padding-left: 6px;
	padding-right: 6px;
}
.box-tool .nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.app-footer .text-muted a {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -25px;
	right: 20px;
	background: #fff;
	padding: 12px;
	opacity: 1;
	border-radius: 10px;
	animation-name: bounce-1;
	animation-timing-function: ease-in-out;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
	border: 1px solid #808080;
	border-radius: 16px;
}
.table-action-btn {
    background: transparent !important;
}
table.dataTable.no-footer .ui-check i {
    background-color: #fff !important;
    box-shadow: none;
    border: 1px solid #808080;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    position: relative;
}
.ui-check input:checked + i:before {
    background-color: #808080;
}
.view-table-data {
    margin-bottom: 20px;
}
a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus, 
a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}
.padding .box .dataTables_wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
}   
.app-content textarea {
    border-radius: 6px !important;
}

.table tbody+tbody tr,
.table tbody+tbody tr th {
    border-left: 2px solid #eceeef;
    border-right: 2px solid #eceeef;
}
.view-table-content .table { border-top: 0;}
.view-table-content .table tr th {
    border-bottom: 2px solid #eceeef !important;
    border-right: 2px solid #eceeef !important;
    border-left: 2px solid #eceeef !important;
}
.view-table-content .table tr td {
    border-right: 2px solid #eceeef !important;
    border-bottom: 2px solid #eceeef !important;
}
#user_photo a img {
    max-width: 100px;
}

.warning-btn,
.order-placed-btn,
.success-btn,
.default-btn {
    font-size: 14px;
    line-height: normal;
    border-radius: 6px !important;
    padding: 6px 8px;
}
.order-placed-btn {
    background-color: rgba(245, 184, 73, 0.2) !important;
    color: rgb(245, 184, 73) !important;
    border: 1px solid rgb(245, 184, 73) !important;;
}
.warning-btn {
    background-color: rgba(230, 83, 60, 0.1) !important;
    color: rgb(230, 83, 60) !important;
    border: 1px solid rgb(230, 83, 60) !important;;
}
.default-btn,
.success-btn {
    background-color: rgba(38, 191, 148, 0.2) !important;
    color: rgb(38, 191, 148) !important;
    border: 1px solid rgb(38, 191, 148) !important;
}
.website-label-show .form-group {
    display: block;
}
table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
    font-weight: 400;
    font-size: 14px;
}

th {
    font-weight: 500;
    background-color: #f2f2f2;
}
.edit-action .box-body form .form-group label, 
.edit-program .box-body form .form-group label, 
.edit-package .box-body form .form-group label, 
.edit-shout-out .box-body form .form-group label, 
.edit-questions .box-body form .form-group label
.edit-take-action .box-body form .form-group label {
    font-size: 14px;
    line-height: normal;
}
#user_photo {
    border: 1px solid #d3d3d3;
}
#user_photo a img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 100px;
}
img {
    max-width: 100%;
    display: block;
}
.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
    margin-right: 2%;
    width: 56%;
    padding: 6px 26px 6px 12px !important;
    background-position: right 6px center !important;
    background-size: 18px !important;
}
.btn-success {
    font-size: 14px;
    color: #fff;
    border-radius: 6px;
}
.dynamic_field .add-more {
    font-size: 24px;
    padding: 4px;
    width: 40px !important;
    height: 40px !important;
}
.dynamic_field .remove {
    font-size: 28px;
    width: 40px !important;
    height: 40px !important;
}
.card-body {
    position: relative;
    padding-top: 0;
}
.highcharts-figure {
    padding: 24px;
    background-color: #fff;
    border-radius: 6px;
}
.general-setting .nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.general-setting .nav .nav-item .nav-link {
    padding: 0.5rem 1rem;
    border: 1px solid #f59635;
    color: #f59635;
    border-radius: 6px;
    font-size: 16px;
    margin-right: 0;
}
.general-setting .nav .nav-item .nav-link.active, 
.general-setting .nav .nav-item .nav-link:hover, 
.general-setting .nav .nav-item .nav-link:focus {
    background: #f59635;
    color: #fff;
}
.old-img-wrapper {
    position: relative;
    border: 1px solid #dedede;
} 
.old-img-wrapper img {
    max-width: 100px;
    width: 100%;
    object-fit: cover;
}
.delete {
    position: absolute;
    top: -4px;
    right: -6px;
    width: 16px;
    height: 16px;
}
.old-img-wrapper .delete .btndeleteprofile {
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../../images/icon-cross-round.svg) !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 0;
    padding: 0;
}
.allergy-select label { display:block; }
.select2-container {
    width: 100% !important;
}
.select2-container--default .select2-selection--multiple {
    border: 1px solid #d3d3d3 !important;
    padding: 10px 36px 10px 16px !important;
}
/* Talotsing Datatable */

.marina-form-input-box {
    gap: 0;
}

/* Checkout */
.coupon-code-box-wrapper {
    max-width: 594px;
}
.coupon-code-box {
    border: 1px solid #d3d3d3;
    padding: 30px;
    border-radius: 12px;
}
.coupon-input-block {
    display: flex;
    align-items: center;
    gap: 16px;
}
/* Checkout End */

.address-group {
    position: relative;
}
.pac-container {
    top: 940px !important;
}

@media only screen and (max-width: 1366px) { 
     /* Spaciing */
     .px-40 {
        padding-left: 20px;
        padding-right: 20px;
    }
    /* Spaciing End */

    /* Header */
    .upskild-dashboard {
        padding: 30px 20px;
    }
    /* Header End */

    /* Dashboard */
    .upskild-dashboard .box.p-a a .clear .text-md {
        margin: 8px 0 0 !important;
        font-size: 20px;
    }
    /* Dashboard End */
}
@media only screen and (max-width: 1199px) { 
    /* Typography */
    h2, .heading-two {
        font-size: 20px;
        line-height: 30px;
    }
    /* Typography */

    /* Spaciing */
    .px-40 {
        padding-left: 16px;
        padding-right: 16px;
    }
    .p-30,
    .padding {
        padding: 26px;
    }
    .mb-30 {
        margin-bottom: 26px;
    }
    .py-60 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    /* Spaciing End */

    /* Buttons */
	.solid-button {
		padding: 11px 14px;
        font-size: 15px;
	}
    .border-btn,
    .btn-danger {
        padding: 10px 15px;
        font-size: 15px;
    }
    .form-control {
        padding: 10px 15px;
    }
	/* Buttons End */

    /* App.css */
    body .bulk-action {
        justify-content: flex-start !important;
        margin-top: 0;
    }
    .padding .box form .single-action .bulk-action { margin-top: 16px;}
    select {
        padding: 10px 36px 10px 16px !important;
    }
    /* App.css End */

    /* Dashboard */
    .upskild-dashboard {
        padding: 20px 16px;
    }
    .upskild-dashboard > .title-row {
        display: block;
        margin-bottom: 16px;
    }
    .upskild-dashboard .title-right-col form {
        justify-content: flex-start;
        margin-top: 16px;
        gap: 24px;
    }
    .upskild-dashboard .title-right-col form .filter-date-block input {
        width: 100%;
    }
    .box-inner-col {
        width: 33.33%;
    }
    .filter-date-block {
        width: 50%;
    }
    .upskild-dashboard .title-right-col form .filter-button-block a { display: block; width: 100%;}
    .upskild-dashboard .title-right-col form .filter-button-block input {
        width: 100%;
    }
    
    .upskild-dashboard .title-right-col form input {
        width: 100%;
    }
    .filter-button-block {
        width: 50%;
    }
    /* Dashboard End */

    /* My Profile - Edit */
    .edit-profile-box-inner {
        gap: 50px;
    }
    /* End My Profile - Edit */

    /* Custom */
    select, .c-select {
        background-position: right 8px center !important;
    }
    .clear-button-col a { display: block;}
    .clear-button-col button { width: 100%;}
    .bulk-action-col { margin-top: 16px;}
    .box-body {
        padding: 20px;
    }
    body .daterangepicker {
        right: auto !important;
        left: 290px !important;
        top: 106px !important;
    }
    body .daterangepicker:before, 
    body .daterangepicker:after { display: none;}
}
@media  only screen and (max-width: 991px) { 
    /* Buttons */
    .solid-button {
        padding: 10px 14px;
        font-size: 14px;
    }
    .border-btn,
    .btn-danger {
        padding: 9px 14px;
        font-size: 14px;
    }
    .form-control {
        padding: 8px 14px;
    }
    /* Spacing */
    .p-24 {
        padding: 20px;
    }
    .py-24 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .p-30,
    .padding {
        padding: 24px;
    }
    .mb-30 {
        margin-bottom: 22px;
    }
    .py-60 {
        padding-top: 40px;
        padding-bottom: 40px;
    } 
    /* Spacing End */

    /* App.css */
    .row {
        margin-left: -12px;
        margin-right: -12px;
    }
    .row [class*="col-"] {
        padding-left: 12px;
        padding-right: 12px;
    }
    .app-aside, .app-aside .scroll {
        width: auto;
    }
    .app-aside:not(.hide) ~ .app-content {
        margin-left: 0;
    }
    /* App.css End */

    /* Header */
    .form-box-warpper .logo-img {
        max-width: 150px;
    }
    .logo-img {
        max-width: 50px;
    }
    .app-header {
        padding: 12px;
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }
    .app-header .navbar ul.nav.navbar-nav.pull-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
    }
    .navbar {
        min-height: auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-md .navbar-nav > .nav-link, 
    .navbar-md .navbar-nav > .nav-item > .nav-link, 
    .navbar-md .navbar-item, 
    .navbar-md .navbar-brand {
        line-height: normal;
    }
    .app-body {
        margin-top: 64px;
    }
    a:not([href]):not([tabindex]) {
        color: #17242a;
    }
    .app-header .navbar .material-icons {
        font-size: 28px;
        width: 28px;
        height: 28px;
    }
    .navside .nav li a {
        display: inline-flex;
        align-items: center;
        width: 100%;
        position: relative;
        padding: 10px 14px;
        border-bottom: 1px solid rgb(211 211 211 / 10%);
        /* color: #fff; */
    }
    .navbar .avatar {
        top: 0;
    }
    /* Header End */

    /* Dashboard */
    .upskild-dashboard .marina-info-wrapper {
        justify-content: flex-start;
    }
    .upskild-dashboard .info-btn-wrapper {
		flex-direction: column;
		width: 100%;
	}
	.upskild-dashboard .info-btn-wrapper form {
		width: 100%;
	}
	.calender-single-item,
	.calender-two-item {
		width: 50%;
	}
	.calender-single-item input,
	.calender-two-item > a,
	.calender-two-item .solid-button,
	.calender-two-item .btn-danger {
		width: 100%;
	}
    /* Dashboard End */

    /* Add Marina */
    .three-col-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Add Marina End */

    .info-btn-wrapper {
        gap: 12px;
    }
    .calender-wrapper {
        gap: 12px;
    }
    .upskild-dashboard .info-btn-wrapper { 
        flex-wrap: wrap;
        width: 100%;
    }
    .info-btn-wrapper select {
        background-position: right 10px center !important;
        padding: 10px 26px 10px 12px !important;
        font-size: 12px;
    }
    .icon-delete::before {
        width: 24px;
        height: 24px;
    }

    /* My Profile - Edit */
    .edit-profile-box-inner {
        gap: 40px;
    }
    .image-block {
        width: 110px;
        height: 110px;
    }
    .toggle-password {
        top: 8px;
        right: 12px;
    }
    input[type="password"] {
        padding-right: 35px;
    }
    /* End My Profile - Edit */

    /* Checkout */
    .coupon-code-box {
        padding: 24px;
    }
    /* Checkout End */

    /* Custom */
    .clear-btn-link { display: block;}
    .clear-btn-link button { width: 100%;}
    .padding .box form .bulk-action select#action,
    .padding .box form .bulk-action button {
        width: 50%;
    }

    .padding .box .bulk-action-col form .bulk-action {
        gap: 24px;
    }
    .padding .box .bulk-action-col form .bulk-action select#action {
        margin: 0;
    }
    .box-body {
        padding: 16px;
    }

    body .daterangepicker {
        left: 16px !important;
    }
}
@media only screen and (max-width: 767px) {  
    /* Spacing */
    .p-24 {
        padding: 16px;
    }
    .p-30,
    .padding {
        padding: 20px;
    }
    .mb-30 {
        margin-bottom: 18px;
    }
    .mb-24 {
        margin-bottom: 20px;
    }
    .py-60 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    /* Spacing End */

    /* Dashboard */
    .upskild-dashboard .title-bar {
        margin-bottom: 18px;
    }
    .calender-wrapper {
        justify-content: space-between;
    }
    /* .upskild-dashboard .box-inner-col {
        margin-bottom: 20px;
    } */
    .box-inner-col {
        width: 50%;
    }
    table.dataTable thead > tr > th.sorting_asc, 
    table.dataTable thead > tr > th.sorting_desc, 
    table.dataTable thead > tr > th.sorting, 
    table.dataTable thead > tr > td.sorting_asc, 
    table.dataTable thead > tr > td.sorting_desc, 
    table.dataTable thead > tr > td.sorting {
        padding-right: 26px !important;
    }
    /* Dashboard End */

    /* Marina Info */
    .marina-info-slider-col {
        height: 100%;
    }
    .info-btn-wrapper select {
        background-position: right 8px center !important;
        padding: 8px 20px 8px 10px !important;
    }
    /* Marina Info End */

    /* My Profile - Edit */
    .edit-profile-box-inner {
        gap: 30px;
    }
    .image-block {
        width: 100px;
        height: 100px;
    }
    .toggle-password {
        top: 6px;
        right: 8px;
    }
    .floating-label {
        top: 5px;
    }
    /* End My Profile - Edit */

    /* Old Datatable CSS */
    .dataTables_wrapper .dataTables_length,
    div.dataTables_wrapper div.dataTables_filter {
        float: none !important;
    }
    div.dataTables_wrapper div.dataTables_filter {
        margin-top: 0;
    }
    div.dataTables_wrapper div.dataTables_length, 
    div.dataTables_wrapper div.dataTables_filter, 
    div.dataTables_wrapper div.dataTables_info, 
    div.dataTables_wrapper div.dataTables_paginate {
        text-align: left;
    }
    .dataTables_wrapper .dataTables_paginate {
        padding-top: 15px !important;
    }
    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        justify-content: flex-start !important;
    }
    /* Old Datatable CSS End */

    /* Checkout */
    .coupon-code-box-wrapper {
        max-width: 100%;
    }
    .coupon-code-box {
        padding: 20px;
    }
    /* Checkout End */

    /* Custom */
    .padding .box form .table-responsive .dataTables_wrapper .dataTables_info {
        padding: 0;
    }
    .clear_button.clear-button-col {
        margin-top: 20px;
    }
    .general-setting .nav {
        gap: 10px;
    }
    /* Custom End */
}
@media only screen and (max-width: 640px) {  
    /* My Profile - Edit */
    .profile-image {
        margin-bottom: 16px;
    }
    .edit-profile-box-inner {
        gap: 20px;
        flex-wrap: wrap;
    }
    .image-block {
        width: 80px;
        height: 80px;
    }
    .profile-photo-edit {
        width: 30px;
        height: 30px;
        right: -4px;
        bottom: -2px;
    }
    /* End My Profile - Edit */
}
@media only screen and (max-width: 575px) {  
    /* Typography */
    h1, .heading-one {
        font-size: 22px;
        line-height: 26px;
    }
    h4, .heading-four {
        font-size: 16px;
        line-height: 26px;
    }
    /* Typography End */

    /* Spacing */
    .p-30,
    .padding {
        padding: 16px;
    }
    .py-60 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    /* Spacing End */

    /* App.css */
    .row {
        margin-left: -12px;
        margin-right: -12px;
    }
    .row [class*="col-"] {
        padding-left: 12px;
        padding-right: 12px;
    }
    /* App.css End */

    /* Header */
   
    /* Header End */

    /* Dashboard */
    .box-inner-col {
        width: 100%;
    }
	.calender-wrapper {
		flex-wrap: wrap;
	}
    .calender-single-item, .calender-two-item {
        width: 100%;
    }
    .upskild-dashboard .box.p-a a .clear .text-muted {
        font-size: 16px;
    }
    .upskild-dashboard .title-right-col form {
        flex-direction: column;
        gap: 10px;
    }
    .filter-date-block,
    .filter-button-block {
        width: 100%;
    }
    .filter-date-block,
    .upskild-dashboard .title-right-col form input {
        width: 100%;
    }
	/* Dashboard End */

	.two-col-layout,
	.three-col-layout {
		grid-template-columns: repeat(1, 1fr);
	}

    .info-btn-wrapper,
    .calender-wrapper {
        gap: 10px;
    }
    .date-range-picker {
		gap: 12px;
		flex-wrap: wrap;
	}
	.date-range-picker .clear_button {
		margin-top: 0;
		width: 100%;
	}
	.date-range-picker .clear_button a { display: block;}
	.date-range-picker .clear_button button {
		width: 100%;
	}
	.date-range-picker > div { width: 48%;}

    .dynamic_field .add-more,
    .dynamic_field .remove {
        margin-top: 0;
    }
    /* .dynamic_field .add-more {
        font-size: 20px;
        padding: 4px;
        width: 34px !important;
        height: 34px !important;
    } */
    .general-setting .nav {
        flex-direction: column;
    }
    .general-setting .nav .nav-item,
    .general-setting .nav .nav-item .nav-link { width: 100%;}
    .general-setting .nav .nav-item .nav-link { text-align: center;}
    .box-body {
        padding: 12px;
    }
    /* Checkout */
    .coupon-code-box {
        padding: 16px;
    }
    .coupon-code-box .two-col-layout {
        gap: 16px;
    }
    /* Checkout End */
}
@media only screen and (max-width: 543px) {  
    .country-code-input { margin-bottom: 16px;}
}
@media only screen and (max-width: 480px) {  
    /* Dashboard */
    
    /* Dashboard End */

    .ch-pwd-wrap {
        flex-wrap: wrap;
    }

    /* Old Datatable CSS */
    .date-range-picker {
        /* flex-direction: column; */
        gap: 10px;
    }
    .date-range-picker > div { width: 100%;}
    .date-range-picker .clear_button {
        margin-top: 0;
    }
    div.dataTables_wrapper div.dataTables_filter input {
        min-width: 215px;
    }
    div.dataTables_wrapper div.dataTables_paginate ul.pagination .paginate_button {
        display: none;
    }
    div.dataTables_wrapper div.dataTables_paginate ul.pagination .paginate_button:nth-child(-n + 3) {
        display: flex;
    }
    /* Old Datatable CSS End */

    /* Checkout */
    .coupon-input-block {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .coupon-input-block .green-border-btn { 
        width: 100%;
    }
    /* Checkout End */

    /* Custom */
    .bulk-action-col .bulk-action { flex-wrap: wrap;}
    .padding .box .bulk-action-col form .bulk-action select#action, 
    .padding .box .bulk-action-col form .bulk-action button {
        width: 100% !important;
    }
    .padding .box .bulk-action-col form .bulk-action {
        gap: 16px;
    }
    /* Custom End */


}