li {
    box-sizing: border-box !important;
}

.navbar {
    padding: 0 !important;
}

.sidebar ul {
    list-style-type: none;
    padding: 0 8px !important;
}

.dropdown div .user-name {
    width: 40px;
    height: 40px;
    background: #fbbe28;
    border-radius: 100%;
    line-height: 40px;
    text-align: center;
    color: #000;
    padding: 0;
    justify-content: center;
    display: flex;
    margin-top: 12px;
}

li.nav-item .login-creator-container {
    min-height: 65px;
}

li.nav-item button.form-submit {
    padding: 7px 9px;
    color: #fff;
    background: var(--menu_dark);
    border-radius: 5px;
    border-color: var(--menu_dark);
}

li.nav-item div a.challenge-btn {
    padding: 10px 20px;
    color: #fff;
    background: var(--menu_dark);
    border-radius: 5px;
    font-size: 14px;
    margin: 0 10px;
    line-height: 64px;
}

li.nav-item div a:hover.challenge-btn {
    background: #0fadeb;
    transition: all 0.3s ease-in-out;
}

.l img {
    max-width: 100%;
    padding-top: 14px !important;
}

.l {
    display: block;
    padding: .3rem .5rem !important;
}

.loin-form h1 {
    color: #393939;
    font-weight: bold;
    font-size: 36px;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}


a:hover {
    text-decoration: none !important;
}

ul {
    list-style-type: none;
}


/* header */
.container-fluid {

    padding-right: 0px !important;
    padding-left: 0px !important;
}

.content-block {
    padding: 0px 0 !important;
}

header.payment {
    padding: 10px;
}

/* login page */

.loin-form {
    padding: 0 18% 0;
}

.injoy-logo {
    margin: -5px 0 0 12px;
}


/*.login-wrap {
    display: flex;
    align-items: center;
}*/
.login-wrap {
    padding: 30px 0;
}

.login-inner {
    margin: 15% 0;
}

.login-banner {
    background: url(../images/right-image.png);
    background-size: cover;
    height: 100vh;
    display: flex;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    justify-content: center;
    align-items: center;
}

.login-banner img {
    max-width: 100%;
}

.loin-form .logo {
    margin-bottom: 30px;
}

.step {
    margin: 12px 0 15px;
}

.loin-form input {
    width: 100%;
    background: #eff7ff;
    border: 1px solid #cbe2f8;
    border-radius: 5px;
    padding: 7px 15px;
    margin-bottom: 16px;
}

.no-challenge-cls .modal-title {
    font-weight: 600;
    font-size: 20px;
}

.btn-cls {
    background: var(--menu_dark);
    border: none;
    padding: 10px 40px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.btn-cls:hover,
.fill-deatils form button:hover {
    background: var(--main_button_hover);
    transition: 0.2s all;
}

.loin-form h1 {
    color: #393939;
    font-weight: bold;
    font-size: 36px;
}

.login-banner {
    height: 100vh;
}

.forgot-password {
    float: right;
}

.remember-me {
    float: left;
}

.login-btm {
    width: 100%;
    float: left;
    margin-bottom: 50px;
}

.captcha {
    width: 65%;
    margin: 0px auto;
    text-align: center;
    float: none;
}

.captcha img {
    margin-bottom: 30px;
    max-width: 100%;
}

.captcha label {
    float: left;
}

.or {
    position: relative;
    margin-top: 20px;
}

.or span {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    border: 1px solid var(--menu_dark);
    display: inline-block;
    line-height: 31px;
    text-transform: uppercase;
    color: var(--menu_dark);
}

.or::before,
.or::after {
    width: 46%;
    content: "";
    height: 1px;
    background: #dbdbdb;
    position: absolute;
    top: 15px;
}

.or::before {
    left: 0;
}

.or::after {
    right: 0;
}

/* check box */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.forgot-password a,
.forgot-password a:hover {
    color: var(--menu_dark);
}




/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 2px solid #b6d1eb;
    border-radius: 3px;
}


/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked~.checkmark {
    background-color: var(--menu_dark);
    border-color: var(--menu_dark);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark::after {
    left: 7px;
    top: 5px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Pricing */

.pricing {
    border: 2px solid #e4e4e4;
    padding-bottom: 35px;
}

.plan-title {
    background: #f4f9ff;
    text-align: center;
    padding: 5px;
    color: var(--menu_dark);
    text-transform: uppercase;
    font-size: 18px;
}

.plan-heading {
    background: var(--menu_dark);
    text-align: center;
    color: #fff;
    padding: 5px 0 15px;
    position: relative;
}

.plan-heading::after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    content: '';
    border-top: 10px solid var(--menu_dark);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.loin-form h1 {
    color: #393939;
    font-weight: bold;
    font-size: 36px;
}

.pricing .bold-txt {
    font-size: 50px;
    font-weight: bold;
}

.pricing .small-txt {
    font-size: 24px;
    font-weight: bold;
}

.plan-heading p {
    font-size: 19px;
    margin: 0;
    line-height: 20px;
    font-weight: bold;
}

.pricing ul {
    padding: 30px 30px 10px;
}

.pricing ul li {
    margin-bottom: 20px;
    font-size: 20px;
}

.pricing ul li img {
    margin: -2px 10px 0 0;
}

.pricing ul li span {
    float: left;
}

.pricing-page .login-banner img {
    max-width: 100%;
    min-height: 1000px;
    object-fit: cover;
}

/* payment page */
.payment-page {
    background: #f4f9ff;
    padding: 50px 0;
}

.back a {
    background: var(--menu_dark);
    padding: 5px 15px;
    border-radius: 5px;
    color: #fff;
    margin: 20px 0 30px;
    display: inline-block;
}

.payment-info h1 {
    color: #393939;
    font-weight: bolder;
    font-size: 30px;
    margin: 0;
}

.payment-info ul li::before {
    content: "\f00c";
    font-family: fontawesome;
    padding: 2px 8px 5px 0;
    color: #2bbf0e;
    float: left;
}

.payment-info ul li {
    margin-bottom: 15px;
    color: #393939;
    font-size: 16px;
}

.payment-info ul {
    margin-top: 40px;
}

.payment-method-img ul li {
    display: inline;
    padding: 0 5px 0 0;
}

.payment-method {
    background: #fff;
    display: inline-block;
    padding: 40px;
}

.payment-method .custom-select {
    height: auto;
    padding: 0;
    border: none;
    background: none;
}

.total-payment {
    width: 75%;
    background: #fff;
    border: 1px solid #cbe2f8;
    text-align: center;
    padding: 25px;
    margin: 45px 0 0 0;
}

.total-payment h1 {
    font-size: 46px;
    color: #59b5ea;
}

.total-payment p {
    font-size: 18px;
}


/* select */
/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    font-family: Arial;
    padding: 0 !important;
    height: auto !important;
    border: none !important;
    background: none !important;
}

.custom-select select {
    display: none;
    /*hide original SELECT element:*/
}


/*style the arrow inside the select element:*/
.select-selected::after {
    position: absolute;
    content: "";
    top: 18px;
    right: 16px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #444 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
    color: #495057;
    padding: 6px 16px;
    border: none;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

/*style items (options):*/
.select-items {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    border: 1px solid #ddd;
}

.select-items>div {
    border: none;
}

.ccv-info {
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 21px;
    color: #adadad;
}

.form-control.ccv-field {
    position: relative;
    padding: 20px 16px;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.payment-method-img ul {
    margin: 20px 0 40px;
}

/* dashboard page */
.main-header {
    border-bottom: 1px solid #2cc4fd;
    box-shadow: 0px 2px 20px rgba(44, 196, 253, 0.2);
}

.navbar-nav li.nav-item a.challenge-btn {
    padding: 10px 20px;
    color: #fff;
    background: var(--menu_dark);
    border-radius: 5px;
    font-size: 18px;
    margin: 0 10px;
}

.navbar-nav li.nav-item a:hover.challenge-btn {
    background: #0fadeb;
    transition: all 0.3s ease-in-out;
}

.injoy-logo img {
    width: 90px;
}

.main-header .dashboard-heading {
    float: left;
    width: auto;
    font-weight: normal;
    font-size: 20px;
}

.main-header .header-btns {
    float: right;
}

.main-header .header-btns ul {
    padding: 0;
}

.main-header .header-btns ul li {
    display: inline-block;
    margin: 0 15px 0 0;
}

.user-name {
    width: 40px;
    height: 40px;
    background: #fbbe28;
    border-radius: 100%;
    line-height: 40px;
    text-align: center;
    color: #000;
    padding: 0;
    justify-content: center;
    display: flex;
}

.main-menu-list ul li a img {
    margin: 0 15px 0 0;
}

.main-menu-list ul li.active {
    background: var(--menu_dark);
    padding: 10px 0;
    color: #fff;
    border-radius: 5px;
    margin: 10px 0;
}

.main-menu-list ul li {
    padding: 7px 0 12px;
    margin: 3px 0;
}

.main-menu-list ul li:hover {
    background: #ecf9ff;
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: .3s ease-in-out;
}

.main-menu-list ul li:hover.active {
    background: var(--menu_dark);
}

.main-menu-list ul li.active a {
    color: #fff;
}

.main-menu-list ul li a {
    padding: 0 20px;
    color: #000;
    font-size: 17px;
}

.main-menu {
    border-right: 1px solid #dfdfdf;
    height: 100vh;
}

.no-challenge-cls .modal-dialog {
    max-width: 900px;
}

.no-challenge p {
    /*color: rgba(19,19,19,0.4);*/
    padding-top: 30px;
    font-size: 18px;
}

.no-challenge {
    padding: 15px 0;
}

.no-challenge h3 {
    text-align: left;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.no-challenge img {
    margin: 0;
}

.no-challenge-cls .modal-body {
    padding: 30px;
}


/* banner & button */
header.challenge-header {
    border-bottom: 1px solid #e6eaec;
    padding: 15px 0;
}

.challenge-header .header-btns {
    float: right;
}

.challenge-header .header-btns ul {
    display: block;
    margin: 3px 0 0 0;
    padding: 0;
}

.challenge-header .header-btns ul li {
    display: inline-block;
}

.exit-dashboard a {
    font-size: 18px;
    color: #000;
}

.exit-dashboard a i {
    color: var(--menu_dark);
}

.dashboard-heading {
    color: #333;
    font-weight: 600;
    font-size: 24px;
    float: left;
}

.menu-categoty-1 {
    border-bottom: 1px solid #dadada;
}

.menu-categoty-1 li.active,
.menu-categoty-1 li:hover {
    background: #ecf9ff;
    border-left: 5px solid #50c4ff;
}

.menu-categoty-1 ul li {
    padding: 0px 15px 0px;
}

.menu-categoty-1 ul li:hover {
    transition: 0.2s all;
}

.menu-categoty-1 li a {
    color: #000;
    font-size: 16px;
    padding: 10px 0;
    display: block;
}

.menu-categoty-1 ul li img {
    margin: 0 5px 0 0;
}

.menu-categoty-1 h1::after {
    content: "\f078";
    font-family: fontAwesome;
    font-size: 14px;
    float: right;
    position: relative;
    top: 10px;
}

.menu-categoty-1 h1 {
    color: #000;
    font-size: 24px;
    margin: 30px 0 20px;
    cursor: pointer;
}

.challenge-header .header-btns li:last-child a {
    border: 2px solid var(--menu_dark);
    padding: 8px 25px;
    border-radius: 5px;
    color: var(--menu_dark);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.challenge-header .header-btns li:first-child a {
    background: var(--menu_dark);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    margin: 0 10px 0 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.menu {
    border-right: 1px solid #dbdbdb;
}

.challenge-inner {
    padding: 20px;
    position: relative;
    margin-bottom: 80px;
}

.choose-color {
    border: 1px solid #dbdbdb;
    padding: 20px 15px;
    margin: -1px 0 0 0;
}

.choose-color img {
    max-width: 100%;
}

.choose-color h2::before {
    width: 58px;
    height: 3px;
    position: absolute;
    background: var(--menu_dark);
    content: "";
    bottom: -2px;
}

.choose-color h2 {
    color: #000;
    font-size: 20px;
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 600;
}

.selected-color {
    margin-top: 10px;
}

.selected-box1,
.selected-box2,
.selected-box3 {
    width: 110px;
    height: 40px;
    display: inline-block;
    border-radius: 5px;
}

.selected-box1 {
    background: #66d74d;
}

.selected-box2 {
    background: #6554ff;
}

.selected-box3 {
    background: #0d3483;
}

.selected-color-text {
    vertical-align: top;
    margin: 0 8px;
    display: inline-block;
}

.selected-color-text input {
    display: inline-block;
    width: 110px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #dbdbdb;
    padding: 0 10px;
}

.video-block {
    padding: 1px 0;
    position: relative;
}

.video-block ul li {
    border-bottom: 1px solid #dbdbdb;
    padding: 15px;
}

ul.slide_box[style="left: 94%; border: 0px;"] {
    background-color: transparent;
}

.video-block ul li h2 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.video-block ul li img {
    max-width: 100%;
    margin: 10px 0;
}

.video-block ul li:last-child {
    border: none;
    padding-bottom: 0;
}

.sliding-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.sliding-arrow span {
    width: 26px;
    height: 37px;
    background: #eee;
    display: inline-block;
    text-align: center;
    line-height: 37px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #757575;
}

.app-frame {
    max-height: 1000px;
    overflow-y: scroll;
    text-align: center;
}

.app-frame img {
    max-width: 100%;
}

.menu-btn,
#mySidenav .closebtn {
    display: none;
}

/* daily Inspiration */
.profile_div img {
    width: 50px;
    border-radius: 50%;
    margin: 0 0 0 10px;
}

.box-cls {
    margin: 20px 0 40px;
}

.row.bottom-area {
    padding: 10px;
    margin: 0;
}

.select-box select {
    width: 100%;
    margin: 5px 15px 15px 0;
    font-size: 14px;
    padding: 6px;
    border-radius: 3px;
    border: 1px solid #888;
    color: #888;
}

.select-box button {
    background: var(--menu_dark);
    color: #fff;
    padding: 4px 17px;
    border-radius: 5px;
    margin: 0 10px 0 0;
    font-size: 18px;
    font-weight: 600;
    border: 0;
}

.app-box ul li a {
    background: var(--menu_dark);
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    border: 0;
}

.edit-icn {
    float: right;
}

.box-cls h6 {
    font-size: 20px;
    font-weight: 600;
}

.box-cls .progress {
    border-radius: 15px;
    margin-top: 15px;
}

.box-cls .progress-bar {
    background-color: var(--menu_dark);
}

.create-ur-own {
    background: #50c4ff;
    border: 1px solid #50c4ff;
    color: #fff;
    padding: 3px 15px 4px 15px;
    border-radius: 4px;
    display: flex;
    flex-direction: revert;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

.upcoming-challenge {
    background: #fff;
    border: 1px solid #e6e4e4;
    color: #585858;
    padding: 3px 15px 4px 15px;
    border-radius: 4px;
    display: flex;
    flex-direction: revert;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.upcoming-challenge:hover {
    transition: all .3s ease-in-out;
    border-color: #dddada;
    border-color: #999;
}

.challenge-header .header-btns li a:hover,
.create-ur-own:hover,
.select-box button:hover {
    background: #19b3ef;
    transition: all .3s ease-in-out;
    color: #fff;
}

.challenge-header .header-btns li:last-child a:hover {
    background: #19b3ef;
    transition: all .3s ease-in-out;
    color: #fff;
    border-color: #19b3ef;
}

.create-ur-own img {
    margin: 1px 7px 0 0;
}

.di-images {
    border-top: 1px solid #eee;
    margin-top: 20px;
    padding: 20px 0;
}

.days-no {
    top: 5px;
    position: absolute;
    background: #fff;
    padding: 2px 10px;
    border-radius: 5px;
    font-weight: 600;
    left: 20px;
    z-index: 9;
}

.di-image-description {
    width: 100%;
}

.select-checkbox {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    transform: translate(-50%);
    padding: 5px 10px;
    border-radius: 5px;
}

.di-img-grid {
    margin: 15px 0;
}

.select-checkbox .checkbox-container {
    padding-left: 32px;
    font-weight: 600;
}

.di-images p {
    color: rgba(19, 19, 19, 0.7);
    font-size: 18px;
}

.di-images h2 {
    color: #000;
    font-size: 26px;
    font-weight: 600;
}

/* editor */
.editor-header {
    border-top: 1px solid #dbdbdb;
    padding: 20px 0 0;
}

.editor-action ul {
    float: right;
}

.editor-action ul li {
    display: inline-block;
    margin: 0px 0 0 10px;
}

.editor-header p {
    font-size: 20px;
}

.ed-grid {
    padding-right: 0;
    padding-bottom: 15px;
}

.editor-sidebar {
    background: #fff;
    border: 1px solid #dbdbdb;
    border-left: none;
}

.ed-headning {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 0;
}

.di-background {
    margin: 15px;
    float: left;
}

.di-background ul {
    margin: 0 !important;
}

.di-background ul li {
    display: inline-block;
    max-width: 30%;
    margin: 0 11px 14px 0;
}

.di-background ul li:nth-of-type(3n) {
    margin: 0;
}

.ed-headning .create-ur-own {
    float: right;
}

.editor-body {
    background: #f6f6f6;
}

.di-image-editor .editor-content {
    padding: 0;
}

.ed-topbar {
    background: #fff;
    display: block;
    width: 100%;
    padding: 14px 40px 0;
    border: 1px solid #dbdbdb;
    border-left: none;
}

.ed-img-preview {
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.ed-topbar ul li {
    display: inline-block;
    padding: 0 10px 0 0;
}

.ed-topbar .custom-select {
    width: 120px;
}

.total-selected {
    border: 1px solid #dbdbdb;
    margin: 20px;
    padding: 15px;
    border-radius: 5px;
}

.total-selected h2 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 5px;
}

.total-selected p {
    font-size: 18px;
    margin: 0;
}

.di-background .di-bg-grid {
    padding: 0 10px 20px 10px;
}

.di-bg-grid img {
    width: 100%;
}

.input-group {
    width: 100%;
    margin: 25px 0;
}

.label-heading {
    width: 100%;
    padding-bottom: 6px;
    color: #85869e;
    font-weight: bold;
    font-size: 18px;
}

.input-group .form-control {
    border-radius: 5px !important;
}

.sub-drop-list .label-heading {
    font-weight: 400;
    font-size: 18px;
}

.sub-drop-list {
    padding: 0 15px;
}

.sub-drop-list .input-group input {
    position: relative;
}

.input-close {
    float: right;
    position: absolute;
    left: 87%;
    bottom: 0;
    border-left: 1px solid #ced4da;
    padding: 3px 12px;
    height: 37px;
    border-radius: 5px;
    cursor: pointer;
}

.input-close img {
    width: 12px;
}

.btn-outline {
    background: transparent;
    color: #50c4ff;
    font-weight: 400;
}

.create-ur-own.btn-outline:hover {
    border-color: #19b3ef;
    background: transparent;
    color: #19b3ef;
}

footer {
    text-align: center;
    border-top: 1px solid #2cc4fd !important;
    box-shadow: 0px 2px 20px rgba(44, 196, 253, 0.2);
    color: #474747 !important;
}

/* tabs */
.app-frame-tabs .nav-tabs {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 10px;
}

.app-frame-tabs .nav.nav-tabs li {
    text-align: center;
}

.app-frame-tabs .nav.nav-tabs li a.active {
    background: #50c4ff;
    color: #fff;
}

.app-frame-tabs .nav.nav-tabs li a {
    color: #50c4ff;
    border: 1px solid #50c4ff;
    padding: 10px 30px;
    margin: 0 -2px;
    border-radius: 5px;
    font-size: 18px;
}

.coachs-list {
    margin: 50px 0 0;
}

.btn-icon {
    background: transparent;
    border: none;
}

.coachs-list table tr td {
    vertical-align: middle;
}

.coachs-list .table thead th {
    border-bottom: 1px solid #dee2e6;
}

.coachs-list table tr td h5 {
    font-weight: 600;
}

.coachs-list table tr td img {
    margin-bottom: 10px;
}

.coach-name {
    font-size: 18px;
    padding: 14px 0;
}

/* custom file */
.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile+label {
    max-width: 100%;
    font-size: 16px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 6px .75rem;
    width: 100%;
    text-align: center;
    border-radius: .25rem;
}

.no-js .inputfile+label {
    display: none;
}

.inputfile:focus+label,
.inputfile.has-focus+label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile+label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile+label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}

.inputfile-2+label {
    color: #79797a;
    border: 1px solid #ced4da;
    margin: 0;
}

.inputfile-2:focus+label,
.inputfile-2.has-focus+label,
.inputfile-2+label:hover {
    color: #666;
}

.add-cocahes .custom-control {
    display: inline-block;
}

.add-coaches-form .co-input-group {
    margin-bottom: 20px;
}

.file-note {
    font-size: 14px;
    color: red;
    float: right;
    margin: 0;
}

.add-coaches-form .custom-control {
    padding-left: 50px;
}

.cancel-btn {
    background: #e4e4e4;
    border: transparent;
    padding: 10px 20px;
    border-radius: 4px;
    color: rgba(51, 51, 51, 0.5);
    font-weight: bold;
    font-size: 18px;
}

.modal-title {
    font-weight: 600;
    color: #000;
}

/* toogle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* ends */
.price-sign {
    border: 1px solid #ced4da;
    width: 38px;
    float: left;
    height: 38px;
    text-align: center;
    border-radius: .25rem;
    margin: 0 10px 0 0;
    line-height: 35px;
    font-weight: bold;
}

.form-control.price-snln {
    width: 88%;
    float: left;
}

.co-input-group label {
    vertical-align: middle;
}

.delete-block {
    margin: 4px 0px 0 10px;
    float: left;
}

.pricing-inner .co-input-group {
    margin-bottom: 30px;
}

.wdt-100 {
    width: 100%;
}

.coupens-grid {
    display: block;
}

.discount-copuon {
    border: 1px solid #c0c0c0;
    padding: 8px 15px;
    border-radius: 5px;
    width: 74%;
    line-height: 33px;
}

.coupens-grid h5 {
    width: 100%;
    padding: 0 15px;
    font-weight: 600;
}

.prizes-inner .co-input-group {
    margin-bottom: 20px;
}

.note-grey {
    color: #7e7e7e;
}

.brand-wdt50 {
    max-width: 45%;
    color: #666;
    line-height: normal;
}

.branding-page li.list-inline-item {
    vertical-align: top;
}

/* tooltip */
.tooltip-inner {
    background-color: #757575 !important;
}

.tooltip.bs-tooltip-right .arrow:before,
.tooltip.bs-tooltip-left .arrow:before,
.tooltip.bs-tooltip-bottom .arrow:before,
.tooltip.bs-tooltip-top .arrow:before {
    border-right-color: #757575 !important;
}

/* mutli select dropdown */
span.multiselect-native-select {
    position: relative
}

span.multiselect-native-select select {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px -1px -1px -3px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    left: 50%;
    top: 30px
}

.multiselect-container {
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.multiselect-container .input-group {
    margin: 5px
}

.multiselect-container>li {
    padding: 0
}

.multiselect-container>li>a.multiselect-all label {
    font-weight: 700
}

.multiselect-container>li.multiselect-group label {
    margin: 0;
    padding: 3px 20px 3px 20px;
    height: 100%;
    font-weight: 700
}

.multiselect-container>li.multiselect-group-clickable label {
    cursor: pointer
}

.multiselect-container>li>a {
    padding: 0
}

.multiselect-container>li>a>label {
    margin: 0;
    height: 100%;
    cursor: pointer;
    font-weight: 400;
    padding: 3px 0 3px 15px;
}

.multiselect-container>li>a>label.radio,
.multiselect-container>li>a>label.checkbox {
    margin: 0
}

.multiselect-container>li>a>label>input[type=checkbox] {
    margin-bottom: 5px
}

.btn-group>.btn-group:nth-child(2)>.multiselect.btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.form-inline .multiselect-container label.checkbox,
.form-inline .multiselect-container label.radio {
    padding: 3px 20px 3px 40px
}

.form-inline .multiselect-container li a label.checkbox input[type=checkbox],
.form-inline .multiselect-container li a label.radio input[type=radio] {
    margin-left: -20px;
    margin-right: 0
}

.tt {
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.multiselect-container.dropdown-menu {
    width: 100%;
    border-radius: 0;
    margin: 0;
}

.multiselect.dropdown-toggle {
    padding-left: 0;
}

.multiselect.dropdown-toggle:focus {
    box-shadow: none;
}

.multiselect-container li.multiselect-item.active {
    background: #eff0f1;
}

.multiselect-selected-text {
    width: 100%;
    float: left;
}

.multiselect-item a.multiselect-all {
    color: #000;
}

.multiselect.dropdown-toggle::after {
    border-top: .43em solid;
    border-right: .43em solid transparent;
    border-left: .43em solid transparent;
}

.team-grid li {
    display: inline;
}

.team-grid li:last-child {
    float: right;
}

.team-grid input:checked+.slider {
    background-color: #2196F3;
}

.slider::before {
    height: 20px;
    width: 20px;
    left: 8px;
    bottom: 4px;
}

.team-grid .switch {
    margin-top: 8px;
    margin-right: 6px;
}

.team-grid li a {
    color: var(--menu_dark);
    font-size: 17px;
    margin-top: 15px;
    display: inline-block;
}

input:checked+.slider {
    background-color: #50c4ff;
}

.switch {
    height: 28px;
}

/* help */
.main-title {
    color: #333333;
    font-weight: 600;
    font-size: 26px;
    margin: 15px 0;
}

.help-1 {
    background: #fff;
    padding: 20px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
}

.welcome-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-text h2 {
    font-weight: 600;
    font-size: 30px;
}

.get-started-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    margin-top: 25px;
    display: block;
    float: left;
    width: 100%;
}

.get-started-box:hover {
    box-shadow: 0 0px 13px rgba(0, 0, 0, .1);
    transition: .2s all;
    border-color: #c5c5c5;
}

.gets-box-img {
    float: left;
    margin-right: 15px;
}

.gets-desc h5 {
    color: #333;
    font-weight: 600;
    font-size: 21px;
    padding-bottom: 5px;
    padding-top: 10px;
}

.gets-desc p {
    color: #666;
    font-size: 16px;
    line-height: normal;
}

.dashboard-banner {
    background: url("/images/get-stared-banner.jpg") no-repeat;
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;

}

.dashboard-banner h2 {
    color: #fff;
    font-weight: 600;
    font-size: 36px;
    text-align: center;
}

.get-started-list .heading_ {
    border-bottom: 1px solid #e5e7e9;
}

.get-started-list h3 {
    font-weight: 600;
    font-size: 26px;
    padding: 0;
    margin: 0;

}

.get-started-list {
    background: #fff;
    border: 1px solid #e5e7e9;
    border-radius: 5px;
    margin-bottom: 25px;
    padding-bottom: 40px;
    padding: 0 15px 40px;
}

.gs-icon1 {
    width: 110px;
    height: 110px;
    border: 2px solid #eceded;
    text-align: center;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.gs-icon {
    width: 96px;
    height: 96px;
    background: #f3f5f5;
    text-align: center;
    line-height: 96px;
    border-radius: 20px;
}

.get-started-list a {
    font-size: 18px;
    color: #000;
    padding: 10px 0;
    display: block;
}

.getlist1:hover a {
    color: #000;
    transition: 0.3s ease-in-out;
}

.getlist1:hover .gs-icon1 {
    border-color: var(--menu_dark);
    transition: 0.3s ease-in-out;
}

.getlist1 {
    margin: 40px 0 10px;
}

.gt-listing ul {
    /* padding: 0 15px;*/
}

.gt-listing ul li a {
    font-size: 17px;
    color: #000;
    padding: 10px 4px;
    display: block;
    float: left;
}

.gt-listing ul li a::before {
    width: 26px;
    height: 26px;
    background: #dcf3fc;
    float: left;
    content: "\f054";
    display: block;
    border-radius: 100%;
    margin-right: 15px;
    color: var(--menu_dark);
    font-family: fontawesome;
    text-align: center;
    font-size: 11px;
    line-height: 26px;
    margin-top: 1px;
}

.gt-listing ul li.active a {
    color: #fff;
    font-weight: 600;
}

.gt-listing ul li.active {
    background: var(--menu_dark);
    float: left;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 5px;
}

.gt-listing ul li.active a::before {
    background: #fff;
}

.gt-listing {
    margin-top: 15px;
}

.get-stared-detail-desc {
    padding: 0 20px;
}

.gd-desc-box {
    margin: 25px 0 35px;
}

.gd-desc-box h6 {
    font-size: 22px;
    font-weight: 500;
}

.get-stared-detail-desc h5 {
    font-weight: 600;
    font-size: 22px;
    padding: 10px 0;
}

.contact-wdt {
    background: #fff;
    border: 1px solid #e5e7e9;
    display: flex;
    text-align: center;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    border-radius: 5px;
}

.contact-wdt a {
    border: 1px solid var(--menu_dark);
    color: var(--menu_dark);
    padding: 6px 10px;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 15px;
}

.contact-wdt a:hover {
    background: var(--menu_dark);
    color: #fff;
    transition: 0.3s ease-in-out;
}

.gt-listing li:hover {
    opacity: 0.7;
    transition: 0.3s ease-in-out;
}

.main-menu-list ul li.active a:hover {
    opacity: 1;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.loader p {
    font-size: 24px;
    margin-top: 15px;
}

/* Calender css */
.month {
    width: 100%;
    text-align: center;
    margin: 10px 0 20px;
}

.month ul {
    margin: 0;
    padding: 0;
}

.month ul li {
    color: #000;
    font-size: 20px;
}

.month ul li.month-heading {
    font-weight: 600;
}

.month .prev,
.month .next {
    width: 26px;
    height: 26px;
    border: 1px solid #dadada;
    border-radius: 100%;
    text-align: center;
    line-height: 23px;
    font-size: 14px;
    color: #9d9b9b;
}

.month .prev {
    float: left;
}

.month .next {
    float: right;
}

.weekdays {
    margin: 0;
    padding: 10px 0;
}

.weekdays li {
    display: inline-block;
    width: 13%;
    color: #000;
    text-align: center;
}

.days {
    padding: 10px 0 0;
    margin: 0;
}

.days li {
    list-style-type: none;
    display: inline-block;
    width: 14.5%;
    text-align: center;
    margin: 0 -3px 10px -3px;
    font-size: 14px;
    color: #777;
}

.days li .active {
    padding: 3px 9px;
    background: #4a73cb;
    color: white !important;
    border-radius: 3px;
}

/* ends */
.full-calander {
    width: calc(50% - 8px);
    float: left;
    margin: 30px 15px 4px 0px;
    border: 1px solid #dadada;
    padding: 10px 15px;
}

.select-year {
    margin: 15px 0;
    float: left;
    width: 100%;
}

.calender-strip ul li:first-child {
    background: var(--menu_dark);
    color: #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.calender-strip ul li:first-child::before {
    content: "\f0d7";
    font: 25px fontawesome;
    position: absolute;
    bottom: -17px;
    color: var(--menu_dark);
    left: 50%;
}

.calender-strip ul li:last-child {
    text-align: right;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin: 0 0 0 -3px;
}

.calender-strip ul li {
    width: 50%;
    float: left;
    border: 1px solid var(--menu_dark);
    padding: 3px 10px;
    line-height: normal;
    border-radius: 5px;
    position: relative;
}

.color-indication {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.color-indication li {
    width: calc(33% - 15px);
}

.cal-color {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: inline-block;
    vertical-align: top;
    margin-top: 3px;
    margin-right: 5px;
}

.yellow {
    background: #fcfc7a;
}

.blue {
    background: #4a73cb;
}

.light-blue {
    background: #bccbeb;
}

.purple {
    background: #cdb8d9;
}

.lite-purple {
    background: #cdb8d9;
}

.cal-desc {
    display: inline-block;
}

.cal-desc h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* need help block */
.need-help-block {
    display: flex;
    align-items: center;
    position: relative;
    right: 0;
    top: 50%;
    z-index: 9;
    justify-content: right;
}

.need-help-btn {
    background: var(--menu_dark);
    color: #fff;
    padding: 5px 10px 0;
    border-radius: 10px;
}

.need-help-btn span {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #86d9fa;
    vertical-align: top;
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    margin: 0 7px 0 0;
}

.need-help-btn h3 {
    display: inline-block;
    font-size: 18px;
    line-height: normal;
}

.dashboard-heading input[type="seacrh"] {
    border: 0;
    padding: 5px;
    font-size: 20px;
    text-transform: capitalize;
}

.Challenge-created-suc {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 7% 0;
}

.Challenge-created-suc ul li {
    vertical-align: middle;
}

.Challenge-created-suc h1 {
    font-weight: 600;
    margin: 30px 0 0;
}

.Challenge-created-suc p {
    font-size: 20px;
    margin: 5px 0 30px;
}

.contlibary-wdgt {
    border: 1px solid #dbdbdb;
    text-align: center;
    border-radius: 5px;
    box-shadow: 4px 3px 14px rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
    background: #fff;
}

.contlibary-wdgt img {
    margin: 5px 0;
}

.contlibary-wdgt h2 {
    font-weight: 600;
    margin: 8px 0 30px;
    font-size: 23px;
}

.bottom-btn-arrow {
    width: 100%;
    height: 162px;
    background: url(../images/cl-curve-bg-light.png) no-repeat;
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
    margin-top: 20px;
    background-size: cover;
}

.contlibary-wdgt:hover .bottom-btn-arrow {
    background: url(../images/cl-curve-bg.png) no-repeat;
    background-size: cover;
    transition: 0.3s all;
}

.cl-btm-arrow {
    width: 80px;
    height: 80px;
    background: #fff;
    float: right;
    position: absolute;
    left: 50%;
    margin-top: 15px;
    line-height: 80px;
    border-radius: 100%;
    font-size: 29px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}

.contlibary-wdgt:hover {
    border-color: #35c6ff;
    transition: .2s ease-in-out;
}

.scheduled-challenge {
    margin-bottom: 30px;
}

.scheduled-challenge .table {
    border-collapse: separate;
}

table .clone_challenge.disabled {
    pointer-events: none;
}

.error-box {
    background: #fef1f2;
    margin: 20px;
}

.error-box td {
    border: 1px solid #e46671;
    border-top: 1px solid #e46671 !important;
    border-radius: 5px;
}

.error-box-heading {
    font-weight: 600;
    margin-bottom: 5px;
    color: #e46671;
}

.click-to-update {
    color: #333;
    text-decoration: underline;
    margin-left: 10px;
}

.click-to-update:hover {
    color: #e46671;
    transition: .2s ease-in-out;
}

.error-box p {
    margin: 0;
}

.has-error {
    color: #dd4b39;
}

.pagination {
    justify-content: right;
}

.pagination .page-link:hover {
    color: #fff;
    background-color: var(--menu_dark);
    border-color: var(--menu_dark);
}

.pagination .page-link {
    color: #000;
}

.pagination li:first-child a,
.pagination li:last-child a {
    color: #333;
    background: #f3f3f3;
}

.footer-pagination nav {
    float: right;
}

.scheduled-challenge ul li {
    margin: 0 0px 0 7px;
}

/* admin lte css*/
/*.nav-sidebar li.nav-item a i, span.
 {
    margin: 0 10px 0 0;
}*/
[class*="sidebar-light-"] .nav-sidebar>.nav-item.menu-open>.nav-link,
[class*="sidebar-light-"] .nav-sidebar>.nav-item:hover>.nav-link {
    background-color: transparent;
    color: inherit;
}

.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active,
.sidebar-light-primary .nav-sidebar>.nav-item>.nav-link.active {
    background: var(--menu_dark) !important;
    color: #fff;
}

.nav-sidebar>.nav-item {
    margin-bottom: 5px;
}

.navbar-nav {
    align-items: center;
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: 8px;
    padding-left: 8px;
}

[class*="sidebar-light"] .brand-link {
    border-bottom: 1px solid #2cc4fd;
    color: rgba(0, 0, 0, .8);
    box-shadow: 0px 2px 20px rgba(44, 196, 253, 0.2);
}

.brand-link {
    padding: 5px .5rem 5px;
}

.nav-sidebar .nav-item>.nav-link {
    position: relative;
    display: flex;
    align-items: center;
}

/*.navbar {
    padding: 0 .5rem;
}*/
.far.fa-flag,
.far.fa-calendar-alt,
.far.fa-address-book {
    font-size: 20px;
}

.os-content {
    border-right: 1px solid #dbdbdb;
}

.brand-link img {
    max-width: 41%;
}

.main-header .input-group {
    width: 100%;
    margin: 17px 0;
}

.form-control.form-control-navbar {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.white-bg {
    background: #fff;
}

.footer-alternate {
    padding: 20px 0;
    float: left;
    width: 100%;
    position: absolute;
    left: 0;
    background: #fff;
    top: 100%;
    background: #fff;
}

.breadcrumb a {
    color: var(--menu_dark);
}

.sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused,
.sidebar-mini.sidebar-collapse .main-sidebar:hover {
    width: inherit;
}

.nav-sidebar li a {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/*.nav-sidebar li a:hover, .nav-sidebar li a:focus {
    color: white;
}*/
.nav-sidebar li a::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--menu_light);
    border: 1px solid var(--menu_dark);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.nav-sidebar li a:hover::before,
.nav-sidebar li a:focus::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    border-radius: 5px;
}

.nav-sidebar li a.active::before {
    background: var(--menu_dark);
    color: #fff;
}

.nav-sidebar .active:hover {
    background: var(--menu_dark) !important;
    border-radius: 5px;
}

.active {
    background: var(--menu_dark) !important;
    color: #fff !important;
    border-radius: 5px;
}

.w {
    width: 100% !important;
}

.sidebar-toggle .ti-menu {
    line-height: 65px !important;
}

.gs-icon img {
    width: 55% !important;
}

.dashboard-banner {
    background: url("/images/get-stared-banner.jpg") no-repeat;
    background-size: cover;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
    background-position: center;
}

i.fa {
    cursor: pointer;
}

section.content .col-12 {
    padding: 0;
}

.grid-item .img_delete1 {
    background: #F2F2F2 none repeat scroll 0 0;
    box-shadow: 0 0 1px #F2F2F2;
    padding: 0px 5px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 100;
    color: #000 !important;
}

.grid-item .img_delete {
    background: none repeat scroll 0 0 #f2f2f2;
    box-shadow: 0 0 1px #f2f2f2;
    color: #ff0000;
    cursor: pointer;
    left: 10px;
    padding: 10px;
    position: absolute;
    right: auto;
    top: 10px;
    z-index: 100;
}

.grid-item .box-item {
    margin: 5px;
}

.edit_effect span {
    position: absolute;
    left: 0;
    bottom: 0;
    color: black;
    font-weight: bold;
    width: 100%;
    opacity: 0.5;
    background-color: gray;
    text-align: center;
    visibility: hidden;
}

.success {
    color: green;
}

.fail {
    color: red;
}

.box {
    border: 1px solid #ddd;
}

/*-- neha css--*/
.no-challenge .challenge_button {
    padding: 10px 9px;
    font-size: 17px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 22px;
}

#mainContent h1.main-title {
    text-align: center;
}

table#dataTable tbody tr.odd {
    background-color: #f1f1f170;
}

a[rel="noopener noreferrer"] span.ti-link {
    vertical-align: middle;
    padding: 6px;
}

.accordion {
    background: var(--menu_dark);
    border-radius: 5px;
    padding: 12px 10px;
    font-weight: 600;
    color: #000;
    font-size: 17px;
}

.accordion ul li a {
    font-size: 15px;
}

.main_panel_div {
    margin-bottom: 20px;
}

.accordion:before {
    width: 26px;
    height: 26px;
    float: left;
    content: "\f054";
    display: block;
    border-radius: 100%;
    margin-right: 15px;
    color: var(--menu_dark);
    font-family: fontawesome;
    text-align: center;
    font-size: 11px;
    line-height: 26px;
    margin-top: 1px;
    background: #fff;
}

.edit-profile .row {
    padding: 0 15px;
}



@media only screen and (max-width: 1660px) {
    a.btn.btn-secondary.btn-sm {
        margin-top: -2px;
    }
}


@media only screen and (max-width: 767px) {
    .getlist1 {
        margin: 18px 0;
        padding: 0 20px;
    }

    .dashboard-banner h2 {
        font-size: 22px;
        margin: 0;
        padding: 0 20px;
    }

    .get-started-list h3 {
        font-size: 20px;
        padding: 15px;
    }

    .get-started-list a {
        font-size: 15px;
        line-height: 23px;
    }

    .dropdown div .user-name {
        width: 36px;
        height: 36px;
        line-height: 36px;
    }

    .user-profile .profile img {
        width: 100%;
    }

    .gs-icon {
        width: 102px;
        border-radius: 12px;
        height: 75px;
    }

    .gs-icon img {
        width: 35% !important;
    }

    .gs-icon1 {
        width: 116px;
        height: 90px;
        border: 1px solid #eceded;
        border-radius: 22px;
    }

    .l img {
        max-width: 68%;
    }

    li.nav-item div a.challenge-btn {
        margin-left: 0;
        padding: 8px 14px;
    }

    .header.navbar ul.nav-right a.nav-link.l {
        padding: 10px 2px !important;
    }

    .dashboard-banner {
        margin: 0;
        height: 160px
    }
}

@media screen and (min-width: 992px) and (max-width: 1439px) {
    .sidebar .sidebar-inner .sidebar-menu>li>a .title {
        display: inline-block;
    }

    .sidebar {
        width: 280px;
    }

    .page-container {
        padding-left: 280px;
    }

    .sidebar .sidebar-inner .sidebar-logo {
        padding: 0 20px;
    }

    .header {
        width: calc(100% - 280px);
    }
}

@media only screen and (max-width: 1600px) {
    table#dataTable th {
        font-size: 14px !important;
    }

    .table-bordered td,
    .table-bordered th {
        font-size: 14px !important;
    }

    .btn-group-sm>.btn,
    .btn-sm {
        font-size: 12px;
        height: 20px;
        width: 20px;
        line-height: 18px;
    }
}


.info-m-2 span {
    display: block;
}

.profile-m img {
    max-width: 45px;
    padding: 0;
    margin-right: 5px;
}

.client_name .client_image img {
    width: 50px !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    padding: 0 !important;

}

.client_name .client_image .client_name_plan {
    color: black;
    padding: 0 5px;

}

.client_name .create_button .challenge-btn {
    padding: 7px 9px;
    color: #fff;
    background: var(--menu_dark);
    border-radius: 5px;
    font-size: 13px;
    margin: 0 10px;
    line-height: 47px;
}

.details .overall_details {
    margin: 0;
    border-radius: 5px;
    /* padding: 0 15px;*/
}

.row.details .col-md-3 .overall_details {
    border: 1px solid var(--main_line);
    padding: 0 15px;
    border-radius: 10px;
}

/*.row.details .col-md-3 .overall_details h1 {
    padding-top: 14px;
}*/
.row.details .col-md-3 .overall_details ul.challenge_li {
    margin-bottom: 12px;
}

.overall_details .fa {
    font-size: 18px;
    color: black;
}

.challenge_li li a {
    display: inline-block;
    color: black;
    font-size: 14px;
    vertical-align: sub;
    line-height: normal;
}

.overall_details .bottom_right {
    text-align: right;
    /*min-height: 45px;*/
}

.overall_details li {
    padding: 2px 12px;
    border-radius: 5px;
    border: 1px solid #f2f0f0;
    margin: 2px 0;
}

.col-md-3.overall_details.li_hover a {
    border: 1px solid var(--main_line);
    display: grid;
    padding: 10px;
    border-radius: 10px;
}

.events {
    border: solid 1px var(--main_line);
    border-radius: 5px;
    padding: 4px 17px 28px;
    margin: 10px 0;
}

.affoliate_d {
    border: solid 1px var(--menu_dark);
    border-radius: 5px;
    padding: 25px;
    margin: 10px 0;
}

.details .overall_details h1 {
    font-size: 24px;
}

.details .overall_details li .fa {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

.details .overall_details li {
    padding-bottom: 6px;
    /* font-size: 19px;*/
}

.details .overall_details .middle_text {
    font-size: 49px;
    color: var(--main_text);
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    padding: 20px 0px;
}

.details .overall_details .middle_text .small_span {
    color: var(--main_text);
    font-size: 12px;
}

.events h1,
.affoliate_d h1 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 14px;
}

.events table,
.affoliate_dh1 table {
    width: 100%;
    font-size: 16px;
    line-height: 40px;
}

.affoliate_d .col-md-6:nth-child(even) {
    font-size: 16px;
    line-height: 25px;
    text-align: right;
}

.affoliate_d h1 {
    font-size: 24px;
}

.affoliate_d {
    padding: 9px 10px;
}

.affiliat .affoliate_ul_div {
    width: 40%;
    margin: auto;
    text-align: center;
    background-color: var(--menu_dark);
    border-radius: 5px;
    padding: 9px;
    font-size: 15px;
}

.affiliat .affoliate_ul_div li {
    color: white !important;
}

.affoliate_d .aresource_up {
    margin: 0 82px;
    display: block;
}

.affoliate_d .aresource_up a {
    float: left;
}

.affoliate_d .aresource_up li {
    margin: 0 10px;

}

.details .overall_details.li_hover a:hover {
    background-color: var(--menu_dark);
    color: white !important;
    transition: all .8s ease;
    -webkit-transition: all .8s ease;
    border-color: #fff;
}

.details .overall_details.li_hover:hover .text_heading {

    color: white !important;
}

.details .overall_details.li_hover:hover .middle_text {

    color: white !important;
}

.details .overall_details.li_hover:hover .small_span {

    color: white !important;
}

.details .overall_details.li_hover:hover .bottom_right {

    color: white !important;
}

/*.aresource_up{
    margin: auto !important;
}*/
.aresource_up li {
    margin: 0 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.card_resource {
    width: 107px;
}

.card_resource .card_image {
    width: 100%;
    height: 70px;
}

.aresource_up li img {
    padding: 0 !important;
    opacity: 1 !important;
}

.card_resource .ci1 {
    background-color: var(--menu_dark);
    overflow: hidden;
}

.card_resource .ci2 {
    background-color: #F9FAFB;
    overflow: hidden;
}

.card_resource .ci3 {
    background-color: #FF9800;
    overflow: hidden;
}

.card_resource .card_text {
    padding: 10px;
    text-align: center;
}

.my_impact_rect .style_myimpact {
    margin: 5px 0;
    padding: 10px 14px;
}

.my_impact_rect .style_myimpact .fa {
    font-size: 24px !important;
}

.color_blue_bg {
    background-color: #45BFF0;
}

.color_red_bg {
    background-color: #EE3B24;
}

.color_orange_bg {
    background-color: #FF9800;
}

.color_voilet_bg {
    background-color: #605CA8;
}

.color_brown_bg {
    background-color: #B28475;
}

.my_impact_rect .text {
    color: white !important;
    font-size: 21px;
    font-weight: 600;
}

.my_impact_rect .text .small_text {
    color: white !important;
    font-size: 14px;
    font-weight: 500;
}

/*.my_impact_rect  .fa{
    color: gray;
   
}*/

/*.my_impact_rect{    
    margin-top: 20px;
    margin: 0 10;
    background-color: #FFFFFF;
}

.my_impact_report{
    background-color: #FFFFFF;
    margin-top: 20px;
}*/

.my_impact_report .line_color {
    background-color: #45BFF0;
    height: 3px;
    width: 100%;
}

.help-icon {
    font-size: 20px;
}

.user_metrix {
    background: #afafaf;
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
    width: 100%;
    font-weight: bold;
    padding: 15px 0;
}

.user_div_heading {
    border: 1px solid #000;
    margin-top: 25px;
}

.user_div.heading {
    font-family: AvenirNextLTPro-Bold;
    font-size: 13px;
}

.user_div {
    float: left;
    text-align: center;
    min-height: 55px;
    font-family: AvenirNextLTPro-Regular;
    padding: 15px 0 0 0;
    border-right: 1px solid #000;
    height: 90px;
    width: 102.2px;
}

table#current_challenge_admin thead td {
    font-weight: 600;

}

table#current_challenge_admin tbody td {
    font-size: 12px;

}

.cke_editable p {
    margin: 0 !important;
}

/* css 07 Dec 2021 */
input[type="file"] {
    height: auto;
}

#userAddForm .form-group input[type="radio"] {
    vertical-align: middle;
    margin-right: 3px;
}

#userAddForm .form-group input[type="radio"]:last-child {
    margin-left: 10px;
}

body .swal2-popup .swal2-title {
    font-size: 25px;
}

#uploadUserDataFile .modal-header {
    display: block;

}

#uploadUserDataFile .modal-title {
    text-align: center;
    display: inline-block;
}

#uploadUserDataFile button.close {
    position: relative;
    float: right;
    display: inline-block;
}

#uploadUserDataFile .modal-footer {
    display: inline-block;
}

.modal-footer>div:first-child {
    text-align: right;
}

#modelForCloneChallenge .form-check-label {
    margin-right: 18px;
    margin-bottom: 0;
}

#modelForCloneChallenge .submitclone {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 100px;
    margin: 10px auto;
    display: block;
}

.add_div .btn:nth-child(3) {
    position: absolute;
    top: 55px;
    right: 260px;
    z-index: 1;
}

#uploadUserDataFile .modal-header span {
    text-align: left;
    /*display: block;*/
    font-size: 15px;
    /*color: #000;*/
    /*font-weight: 500;*/
}

#uploadUserDataFile .modal-footer a.dummyfile {
    float: left;
    color: #000;
    font-size: 17px;
    font-weight: 500;
}


/* 03-03-2026 */

.btn-primary {
    color: #fff;
    background-color: var(--menu_dark) !important;
    border-color: var(--menu_dark) !important;
}

.btn-danger {
    color: #fff;
    background-color: var(--btn_danger) !important;
    border-color: var(--btn_danger) !important;
}

.btn-info {
    color: #fff;
    background-color: var(--menu_dark) !important;
    border-color: var(--menu_dark) !important;
}

.btn-success {
    color: #fff;
    background-color: var(--menu_dark) !important;
    border-color: var(--menu_dark) !important;
}

#example .table-bordered thead td,
.table-bordered thead th {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background-color: var(--table_header_color);
    vertical-align: top;
    line-height: 18px;
}

/* 05-03-2026 */
.forget_password .btn-link {
    color: var(--menu_dark) !important;
}

.checkbox-info input[type=checkbox]:checked+label:before {
    background-color: var(--menu_dark) !important;
    border-color: var(--menu_dark) !important;

}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: 0 0 0 .2rem var(--menu_dark);
}


.integration_box {
    border: 2px solid var(--main_line) !important;
    text-align: center;
    padding: 60px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 5px;
    color: var(--main_text) !important;

}

.integration_box:hover {
    background: var(--menu_dark) !important;
    color: white;
}

#select_challenge {
    background-color: var(--menu_dark) !important;
    border-color: var(--menu_dark) !important;
    color: white;
}

.revenue_section .brown {
    background-color: var(--menu_dark) !important;
}

.revenue_section .green {
    background-color: #9dc79f !important;
}

.revenue_section .blue {
    background-color: #92cad1 !important;
}

.revenue_section .orange {
    background-color: #dcb275 !important;
}

.form-control:focus {

    box-shadow: 0 0 0 .2rem var(--menu_light) !important;

}

.btn-blue {
    background-color: var(--menu_dark) !important;
    color: white !important;
}

#example.table td a>.ti-link,
.fa-calendar-check-o {
    color: var(--main_text) !important;


}

select option:hover {
    background-color: var(--menu_light) !important;

}

.bottom-modal .row h6 a {
    color: var(--main_text) !important;

}

#chal_data .team h5 {
    color: #92cad1 !important;
}

.impact_section .blue , .color_blue_bg{
    background-color: #92cad1 !important;
}

.middle-modal .conHeading h5 {
    color: #dcb275 !important;
}

.impact_section .orange , .color_orange_bg{
    background-color: #dcb275 !important;
}

.bottom-modal h5 {
    color: #9dc79f !important;
}

.impact_section .green {
    background-color: #9dc79f !important;
}

.modal-footer button {
    background-color: var(--main_button) !important;
    border: var(--main_button) !important;
    color: #fff;
}

table#dataTable th {
    background-color: var(--main_button) !important;
}

.mB-20 a.btn {
    background-color: var(--main_button) !important;
}

.table-responsive .bttn a {
    color: var(--main_text) !important;
    ;
}

.color_red_bg {
    background-color: #f25642 !important;
}

.color_voilet_bg {
    background-color: #817dcc !important;;
}

.element_color {
    background-color:  var(--menu_dark) !important;
    color: white !important;
}

.title_module {
    background-color: var(--menu_dark) !important;
    text-align: center;
    padding: 14px 0;
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
    border-top-right-radius: 12px;
    box-shadow: 0 0 12px #ddd;
}

div#side_menu_pdf .list-items a{
    color: var(--main_line) !important;

}

.span_error_logs {
    background-color: #9dc79f !important;
    color: white;
    padding: 3px 10px !important;
}

h1.text_heading.text-center{
         color: var(--main_text) !important;
}

.row.details .col-md-3 .overall_details h1 {
    color: var(--main_text) !important;
}

.pdf_button a {
    background-color:var(--main_button) !important;

}       