@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@font-face {
    font-family: "mmc";
    src: url("../webfonts/MMC-Regular.otf");
}

@font-face {
    font-family: "mmc";
    src: url("../webfonts/MMC-Medium.otf");
    font-weight: 600;
}

@font-face {
    font-family: "mmc";
    src: url("../webfonts/MMC-Bold.otf");
    font-weight: bold;
}

/* $red: #e60013 */

html, body {
    min-height: 100vh;
}

body {
    background-color: #f0f0ff;
    position: relative;
    font-family: 'mmc';
}

/* body:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-size: cover;
    background-position: left top;
    background-image: url(../images/background.jpg);
    z-index: -1;
    opacity: .05;
} */

.sidebar {
    background-color: #111;
    color: white;
    width: 260px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    transition: ease all .5s;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 10;
}

.hide_sidebar .sidebar {
    left: -260px;
}

.sidebar_logo {
    padding: 15px 10px;
    text-align: center;
    background-color: #fff;
}

.sidebar_logo img {
    max-height: 50px;
}

.sidebar>ul, .sidebar ._dropdown>ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar>ul>li>a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none !important;
    font-size: 15px;
    transition: ease all .5s;
    border-bottom: 1px solid #222;
    text-transform: uppercase;
}

.sidebar>ul>li>a:hover {
    color: #ddd;
}

.sidebar>ul>li.active>a {
    background-color: #e60013;
}

.sidebar ._dropdown>ul {
    background-color: #f0f0ff;
    overflow: hidden;
    transition: ease all .5s;
}

.sidebar ._dropdown>ul>li>a {
    padding: 8px 10px;
    padding-left: 15px;
    font-size: 14px;
    display: block;
    color: #555;
    text-decoration: none !important;
    transition: ease all .5s;
    border-bottom: 1px solid #ddd;
}

.sidebar ._dropdown>ul>li>a:hover, .sidebar ._dropdown>ul>li>a.active {
    color: #111;
}

.sidebar ._dropdown>ul>li>a.active {
    background-color: #d8d8f0;
    font-weight: bold;
}

.topbar {
    background-color: #fff;
    justify-content: space-between;
    display: flex;
    height: 80px;
    width: 100%;
    align-items: center;
    padding: 10px 20px;
    padding-left: 260px;
    transition: ease all .5s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 1px 1px 15px rgba(54, 54, 54, .2);
}

.hide_sidebar .topbar {
    padding-left: 20px;
}

.hamburger {
    transform: scale(.8);
    margin-top: 2px;
    padding: 15px 0;
    outline: none !important;
}

.dropdown .btn {
    background-color: transparent;
    box-shadow: none !important;
    padding: 0;
}

.topbar .dropdown .profile_img {
    width: 25px;
    height: 25px;
    position: relative;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 100%;
    overflow: hidden;
}

.topbar .dropdown button {
    text-transform: uppercase;
}

.topbar .dropdown .profile_img img {
    max-width: 25px;
    position: absolute;
    left: -100px;
    right: -100px;
    top: -100px;
    bottom: -100px;
    margin: auto;
}

.content_wrapper {
    padding: 20px;
    padding-top: 100px;
    padding-left: 280px;
    padding-bottom: 30px;
    transition: ease all .5s;
    height: 100vh;
    overflow-y: auto;
}

.hide_sidebar .content_wrapper {
    padding-left: 20px;
}

.info_box {
    padding: 20px 20px 30px;
    padding-top: 45px;
    background-color: #fff;
    box-shadow: 1px 1px 15px rgba(54, 54, 54, .1);
    border-radius: 10px;
    margin-top: 25px;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.info_box i {
    background-color: #e60013;
    color: white;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 1px 1px 15px rgba(54, 54, 54, .1);
    font-size: 25px;
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info_box h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 25px;
    line-height: 1.2em;
    color: #222;
}

.info_box p {
    color: #999;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.info_box ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0;
    width: 100%;
    left: 0;
    padding: 0 20px;
    display: flex;
    position: absolute;
    justify-content: space-between;
}

.info_box ul>li {
    text-align: left;
    font-size: 18px;
    text-align: center;
}

.info_box ul>li span {
    display: block;
    padding: 3px 10px 0;
    border-radius: 25px;
    font-size: 12px;
    color: white;
    background-color: #28a745;
    text-transform: uppercase;
    font-weight: 100;
}

.info_box ul>li.text-danger span {
    background-color: #dc3545;
}

.info_box .row {
    margin: 0 -5px;
}

.info_box [class*="col-"] {
    padding: 0 5px;
}

.info_box>span {
    font-size: 14px;
    color: #e60013;
    text-transform: uppercase;
    display: block;
    margin-bottom: -22px;
    margin-top: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.h4 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 100;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.h4:before {
    content: "";
    width: 70px;
    border-bottom: 5px solid #e60013;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.h1 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #e60013;
    text-shadow: 1px 1px 1px rgba(54, 54, 54, .3);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.form-label {
    display: block;
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
}

.form-label.checkbox {
    margin-bottom: 15px;
}

.form-label.required:after {
    content: "*";
    color: #e60013;
    padding-left: 3px;
}

/* .form-label:before{
    content: "";
    display: inline-block;
    vertical-align: top;
    margin-top: 3px;
    margin-right: 5px;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/icon.png);
} */

.form-control {
    font-size: 15px;
    border-radius: 10px;
    border: none;
    padding: 7px 10px;
    margin-bottom: 15px;
    height: 35px !important;
    box-shadow: none !important;
    background-color: #f0f0ff9f !important;
}

textarea.form-control {
    height: auto !important;
}

.form-control:focus, .form-control:active {
    border-color: #e60013;
}

.form-control[type="checkbox"] {
    display: inline-block;
    height: 20px !important;
    width: 20px;
    vertical-align: middle;
    margin-bottom: 0;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

.checkbox_label {
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 15px;
}

.tab-content>.tab-pane {
    padding: 15px;
    background-color: #f0f0ff;
}

.nav-tabs, .nav-tabs .nav-link {
    border: none;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-tabs .nav-link {
    padding: 15px 20px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #f0f0ff;
    color: #e60013;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.btn_special {
    border: none;
    background-color: #e60013;
    padding: 10px 40px;
    color: white;
    font-size: 15px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 2px;
    box-shadow: 1px 1px 10px rgba(54, 54, 54, .2);
    cursor: pointer;
    transition: ease all .5s;
    outline: none !important;
}

.btn_special.black {
    background-color: #111;
}

.btn_special:hover {
    background-color: #b30211;
    color: white;
}

.btn_special.black:hover {
    background-color: #222;
    color: #ddd;
}

.btn_special.disabled {
    pointer-events: none;
    filter: brightness(0.5);
    opacity: 0.8;
}

footer {
    padding: 10px 20px;
    padding-left: 280px;
    margin: 20px -20px -20px;
    background-color: #fff;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 100;
    color: #999;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.hide_sidebar footer {
    padding-left: 20px;
}

.btn-xs, .badge {
    font-size: 12px;
    padding: 3px 10px 1px;
    border-radius: 25px;
}

.badge {
    padding: 6px 10px;
    font-weight: normal;
}

.badge_1, .badge_2 {
    font-size: 12px;
    padding: 3px 10px;
    color: #111;
    border-radius: 25px;
}

.badge_1+.badge_2, .badge_2+.badge_1 {
    margin-left: 10px;
}

.badge_1 {
    background-color: #e60013;
    color: white;
}

.badge_2 {
    background-color: #eedc82;
}

.dataTable td {
    font-size: 14px;
}

.dataTable thead th {
    font-size: 16px;
    font-weight: 400 !important;
    background-color: #f0f0ff;
    border-bottom: 0 !important;
    padding: 10px !important;
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
    background-color: #fff;
}

table.dataTable.display tbody tr.odd>.sorting_1, table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
    background-color: inherit;
}

.box_container {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(54, 54, 54, .2);
}

.dataTables_wrapper .dataTables_filter input, .dataTables_wrapper .dataTables_length select {
    background-color: #f0f0ff;
    border-radius: 5px;
    border: none;
}

table.dataTable {
    padding-top: 10px;
    margin-bottom: 15px;
}

table.dataTable.no-footer {
    border-color: #ddd;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
    font-size: 14px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    min-width: 30px;
    line-height: 30px;
    padding: 0;
    transition: ease all .5s;
    border-radius: 50%;
    border: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: transparent;
    color: #111 !important;
}

.dataTables_wrapper .dataTables_paginate span>.paginate_button.current, .dataTables_wrapper .dataTables_paginate span>.paginate_button.current:hover, .dataTables_wrapper .dataTables_paginate span>.paginate_button:hover {
    border: none;
    background: #e60013;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate span {
    padding: 0 10px;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #ebebf9 !important;
}

.btn_action {
    margin: 0 5px;
    border-radius: 5px;
}

hr {
    margin: 30px 0;
}

.task_container {
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
}

.task-list h3 {
    font-size: 15px;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
    position: relative;
    background-color: #ebebf9;
}

.task_container>.task-list:first-child>h3 {
    background-color: #f0d2da;
}

.task_container>.task-list:nth-child(2)>h3 {
    background-color: #faebd7;
}

.task_container>.task-list:nth-child(3)>h3 {
    background-color: #dbf0cb;
}

.task_container>.task-list:nth-child(4)>h3 {
    background-color: #bae1ff;
}

.task_container>.task-list:last-child>h3 {
    background-color: #ddddee;
}

/* .task-list h3:before{
    content: "";
    width: 60px;
    height: 0;
    border-bottom: 3px solid #e60013;
    position: absolute;
    left: 15px;
    bottom: 1px;
} */

.task-list {
    flex: 0 0 calc((100% / 5) - 2px);
    border: 1px solid #eee;
    margin: 1px;
    background-color: #f9f9f9;
    min-height: 50px;
    order: 1;
    /* box-shadow: 1px 1px 5px rgba(54,54,54,.2); */
}

.task-list.special {
    order: 0;
    flex: 0 0 100%;
    min-height: auto;
    background-color: transparent;
    margin: 0;
    box-shadow: none;
}

.task-list:last-child {
    border: none;
}

.task-list input:not([type="button"]) {
    height: 30px;
}

.todo-task {
    border-radius: 5px;
    background-color: #fff;
    margin: 10px;
    padding: 10px;
    box-shadow: 1px 1px 5px rgba(54, 54, 54, .2);
    cursor: pointer;
}

.todo-task>.task-header {
    font-weight: bold;
}

.todo-task>.task-date {
    font-size: small;
    font-style: italic;
}

.todo-task>.task-description {
    font-size: smaller;
}

#delete-div {
    display: block !important;
    background-color: #f5f5f5;
    margin: 15px 0 20px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    color: #888;
    transition: ease all .5s;
}

.add_task {
    margin-top: 15px;
    margin-bottom: 15px;
}

.login_bg {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.login_bg:before {
    content: "";
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-image: url(../images/4Sure-Homepage-Banner-30-Sept.jpg);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: .15;
}

.login_box {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    /* background-color: #e60013; */
    background-color: #000;
    box-shadow: 1px 1px 5px rgba(54, 54, 54, .4);
    border-radius: 5px;
    overflow: hidden;
}

.login_box .row {
    align-items: center;
    margin: 0;
}

.login_box .row [class*="col-"] {
    padding: 40px;
}

.login_box img {
    display: block;
    margin: 0 auto;
}

.login_box .row [class*="col-"]:first-child img {
    filter: brightness(0) invert(1);
}

.login_box .row [class*="col-"]:last-child img {
    max-width: 250px;
    margin-bottom: 25px;
}

.login_box .row [class*="col-"]:last-child {
    color: #fff;
    background-color: #000;
    padding: 60px 40px;
}

.login_box .row [class*="col-"]:last-child .form-label {
    color: #fff;
}
.login_box .row [class*="col-"]:last-child .form-control {
    color: #ffffff;
}

.login_box .btn_special {
    width: 100%;
}

.login_box hr {
    margin: -5px 0 20px;
}

.login_box h3 {
    font-size: 18px;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-align: center;
}

.login_box a {
    display: block;
    text-align: right;
    font-size: 13px;
    color: #aaa;
    font-style: italic;
    margin-top: -5px;
}

.scoring {
    font-weight: bold;
    color: #aaa;
}

.scoring>b:last-child {
    color: #888;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -5px;
}

.terms_conditions, .quiz_box {
    background-color: #e9e9e9;
    border-radius: 10px;
    padding: 20px;
    font-size: 14px;
    max-height: 450px;
    overflow-y: auto;
}

.swiper-wrapper {
    padding-bottom: 25px;
}

.quiz_box {
    background-color: #fff;
    padding: 20px;
}

.quiz_box ol {
    padding-left: 20px;
}

.quiz_box .form-control {
    margin-top: 5px;
}

.btn_special.prev, .btn_special.next {
    padding: 5px 15px;
    font-size: 14px;
    background-color: #eedc82;
    color: #111;
    font-weight: bold;
}

.btn_special.prev:hover, .btn_special.next:hover {
    background-color: #ddc965;
}

.news_box {
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(54, 54, 54, .2);
    position: relative;
    overflow: hidden;
    transition: ease all .5s;
    margin-bottom: 20px;
}

.news_box:hover {
    transform: scale(1.02);
}

.news_box .badge {
    padding: 7px 10px 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    box-shadow: 1px 1px 5px rgba(54, 54, 54, .3);
    position: absolute;
    top: 10px;
    left: 10px;
}

.news_header img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.news_content {
    padding: 15px 15px 0;
    background-color: #f7f0f0;
}

.news_content h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
    color: #111;
}

.news_content p {
    font-size: 12px;
    line-height: 1.3em;
    color: #777;
    margin-bottom: 0;
    text-align: justify;
}

.news_footer {
    font-size: 11px;
    color: #e60013;
    font-style: italic;
    padding: 10px 15px 10px;
    text-align: right;
    background-color: #f7f0f0;
}

a:hover {
    text-decoration: none;
}

.btn_submit {
    visibility: hidden;
    opacity: 0;
    transition: ease all .5s;
}

.btn_submit.show {
    visibility: visible;
    opacity: 1;
}

.btn_edit_info {
    float: right;
    font-size: 13px;
    z-index: 9;
    position: relative;
}

.ck-editor__editable_inline {
    min-height: 300px !important;
}

.task_list, .task_list_info {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.task_list i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    line-height: 40px;
    text-align: center;
    box-shadow: 1px 1px 5px rgba(54, 54, 54, .2);
    position: absolute;
    left: 0;
}

.task_list>li {
    padding: 15px;
    padding-left: 55px;
    position: relative;
}

.task_list h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 3px;
}

.task_list p {
    font-size: 14px;
    margin-bottom: 7px;
}

.task_list a {
    color: #e60013;
}

.task_list_info li {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #ccc;
    display: inline-block;
    font-size: 12px;
    color: #333;
}

.task_list_info li:last-child {
    margin: 0;
    padding: 0;
    border-right: 0;
}

.task_list_info li a {
    color: #777;
    transition: ease all .5s;
}

.task_list_info li a:hover {
    color: #e60013;
}

.task_list_info li.title {
    color: #e60013;
}

.profile {
    position: relative;
}

.profile_page_img {
    text-align: center;
    margin-bottom: 20px;
}

.profile_page_img>img {
    width: 200px;
    height: 200px;
    border: 10px solid #f5f5f5;
    box-shadow: 1px 1px 5px rgba(54, 54, 54.2);
    border-radius: 50%;
    object-fit: cover;
}

.profile_upload {
    cursor: pointer;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 20px;
    background-color: #e60013;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: -100px;
    bottom: 0;
    margin: auto;
}

.profile_upload * {
    cursor: pointer;
}

.profile_upload input {
    visibility: hidden;
    position: absolute;
    opacity: 0;
}

.showcase_img {
    max-height: 300px;
    width: 100%;
    object-fit: contain;
    padding: 20px;
}

td>img {
    max-width: 100px;
}

/* .training_box{
    padding: 15px;
    background-color: #e60013;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(54,54,54,.2);
} */

.question_box {
    padding-left: 20px;
    margin: 0;
    /* color: white; */
}

.question_box>li {
    padding-left: 10px;
}

.question_box>li:first-child .btn_remove {
    display: none;
}

.training_box>.question_box>li:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.amsify-suggestags-area .amsify-suggestags-input-area .amsify-suggestags-input {
    background: transparent;
}

.amsify-suggestags-area .amsify-suggestags-input-area {
    display: flex;
    padding-left: 15px !important;
    min-height: 45px !important;
    height: auto !important;
    border: none;
    border-bottom: 3px solid #d9d9f1;
}

.modal-dialog {
    max-width: 800px;
}

.simple_title {
    font-size: 15px;
    font-weight: 300;
    color: #888;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.otp_btn {
    min-width: 100px;
}

.resend_otp {
    color: #888;
    font-size: 13px;
    margin-top: -8px;
    display: block;
}

.resend_otp.disabled {
    pointer-events: none;
    color: #aaa;
    text-decoration: line-through;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #e60013;
}

.training_score {
    padding-left: 25px;
    margin-bottom: 0;
    max-height: 400px;
    overflow-y: auto;
}

.training_score li>h5 {
    font-size: 16px;
}

.training_score li div>h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.training_score li div>p {
    font-size: 14px;
}

.star_rating i {
    color: orange;
}

.btn.float-right {
    position: relative;
    z-index: 9;
}

.accessories_option {
    display: flex;
}

.accessories_option {
    list-style-type: none;
    padding: 0;
    margin-bottom: 10px;
    padding: 10px;
    box-shadow: 1px 1px 5px rgba(54, 54, 54, .1);
    background-color: #ebebf9;
    font-size: 14px;
    color: #222;
}

.accessories_option input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.accessories_option>li:nth-child(2) {
    width: 65%;
}

.accessories_option>li:nth-child(3) {
    color: #888;
}

.accessories_option>li {
    width: 30%;
}

.accessories_option>li:last-child {
    width: 5%;
    text-align: right;
}

.accessorise_option_remove {
    cursor: pointer;
}

.accessorise_option_remove.locked {
    pointer-events: none;
    color: #999;
}

.accessories_option .accessories_price {
    color: #e60013;
    font-weight: bold;
}

.accessories_option .accessories_price:before {
    content: "RM ";
}

.smaller_hr {
    margin: 10px 0;
}

.accessories_total {
    text-align: right;
    font-size: 16px;
}

.accessories_total span {
    font-weight: bold;
    color: #e60013;
    font-size: 24px;
}

.accessories_box {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.modal-title {
    font-size: 20px;
    color: #e60013;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.acc_list_option {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.acc_list_option li span {
    color: #777;
    font-size: 12px;
}

.acc_list_option>li:last-child {
    font-weight: bold;
    color: #e60013;
}

.acc_list_option>li:last-child:before {
    content: "RM ";
}

.acc_list_option li input[type="checkbox"] {
    margin-right: 5px;
    top: 2px;
    position: relative;
}

.acc_list_option>li label {
    margin: 0;
    display: block;
}

.card-body {
    padding: 10px;
    border: none;
    background-color: #f9f9f9;
}

.card-header button {
    padding: 0;
    display: block;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
    text-decoration: none !important;
}

.card-header button:hover {
    color: #ccc;
}

.card-header {
    background-color: #e61003;
    border: none;
    padding: 8px 1.25rem;
}

.card {
    border: none;
}

.acc_apply_btn {
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #e60013;
}

.showcase_img.special {
    max-height: 231px;
}

.invoice_div .img_logo {
    max-width: 140px;
    width: 100%;
}

.invoice_div hr {
    margin: 30px 0;
    border-color: #e60013;
}

.invoice_div h1 {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
}

.invoice_div h5 {
    font-size: 15px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.invoice_div h3 {
    font-size: 20px;
    margin-top: 30px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.invoice_div h4 {
    font-size: 17px;
    margin-bottom: 0;
}

.invoice_div p {
    color: #555;
    font-size: 14px;
}

.social_media {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.social_media li {
    padding-right: 15px;
}

.social_media li a {
    color: #888;
}

.social_media li i {
    color: #e60013;
    margin-right: 5px;
}

.invoice_table, .invoice_small_table {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.invoice_table td {
    padding: 10px 15px 0;
}

.invoice_table tr:last-child>td {
    padding-bottom: 10px;
}

.invoice_table tr>td:last-child {
    text-align: right;
    font-weight: bold;
    color: #e60013;
}

.invoice_total_table {
    width: 100%;
    text-align: right;
}

.invoice_small_table td {
    padding: 6px 15px 0;
}

.invoice_small_table tr:last-child>td {
    padding-bottom: 6px;
}

.text-red {
    color: #e60013;
}

.invoice_div a {
    color: #777;
    font-size: 16px;
}

.input-group>.custom-select:not(:last-child), .input-group>.form-control:not(:last-child) {
    height: 45px !important;
}

.task {
    padding: 10px;
    margin: 4px;
    width: calc(100% - 8px);
    border: 1px solid #ccc;
    background-color: #fff;
}

.task h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 2px;
}

.task p {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.task span {
    font-size: 11px;
    padding: 2px 10px;
    display: inline-block;
    color: white;
    border-radius: 5px;
    margin-right: 5px;
}

.task span.danger {
    background-color: #e60013;
}

.task span.warning {
    background-color: orange;
}

.task span.success {
    background-color: rgb(18, 175, 18);
}

.task i {
    position: relative;
    top: 4px;
}

.modal-header span {
    display: inline-block;
    padding: 2px 10px;
    font-size: 12px;
    border-radius: 25px;
    border: 2px solid #ddd;
    vertical-align: middle;
    margin-left: 10px;
    position: relative;
    top: 2px;
}

.modal-header span.danger {
    border-color: #e60013;
    color: #e60013;
}

.modal-header span.warning {
    border-color: orange;
    color: orange;
}

.modal-header span.success {
    border-color: #1a941a;
    color: #1a941a;
}

.ui-autocomplete {
    position: absolute;
    z-index: 99999 !important;
    cursor: default;
    padding: 0;
    margin-top: 2px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.ui-autocomplete>li {
    padding: 3px 20px;
}

.ui-autocomplete>li.ui-state-focus {
    background-color: #DDD;
}

.ui-helper-hidden-accessible {
    display: none;
}

.task_table {
    width: 100%;
}

.task_table td {
    padding: 8px;
    font-size: 14px;
    vertical-align: middle;
}

.task_table td:first-child {
    width: 1%;
    color: #e60013;
    white-space: nowrap;
    font-size: 18px;
}

.task_table td:last-child {
    white-space: nowrap;
    text-align: right;
    color: #e60013;
    font-style: italic;
    border-left: 1px solid #ddd;
}

.modal-body .table-responsive {
    max-height: 300px;
}

.fc-h-event {
    background-color: #e60013;
    border: none;
}

.fc a[data-navlink], .fc .fc-col-header-cell-cushion {
    color: #e60013;
}

.fc-daygrid-event-dot {
    border-color: #e60013;
}

.fc .fc-button-primary {
    background-color: #111;
}

.fc .fc-button-primary:not(:disabled):active, .fc .fc-button-primary:not(:disabled).fc-button-active {
    background-color: #000;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: #f5f5f5;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background-color: #e60013;
    border-color: #e60013;
    color: white !important;
}

.fc .fc-toolbar.fc-header-toolbar>.fc-toolbar-chunk:last-child>.fc-button-group {
    display: none;
}

.task-list h3 .badge {
    padding: 4px 10px;
    position: relative;
    top: -2px;
    margin-left: 5px;
}

.row.special {
    margin: 0 -2px;
}

.row.special>div[class*="col-"] {
    padding: 0 2px;
}

.dropdown_container {
    display: flex;
}

.btn_alert {
    color: #666;
    margin-right: 20px;
    font-size: 16px;
}

.btn_alert .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e60013;
    display: inline-block;
    position: absolute;
}

.btn_alert.dropdown-toggle::after {
    display: none;
}

.dropdown-header {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 12px;
    padding: 0.5rem .8rem;
}

.dropdown-item {
    font-size: 14px;
    color: #555;
}

.calendar_task>div[class*="col-"]:not(:last-child) {
    border-right: 1px solid #ddd;
    margin-bottom: 20px;
}

.calendar_task h3 {
    background-color: #f0f0ff;
    font-size: 15px;
    padding: 10px;
    text-align: center;
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
    margin: 0 -15px 15px;
}

.calendar_task h3.today {
    background-color: #ffccd3;
}

.calendar_task h3 span:not(.badge) {
    display: block;
    font-size: 12px;
    color: #999;
}

.calendar_task h3 .badge {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 30px;
    width: 30px;
    line-height: 23px;
    background-color: white;
    box-shadow: 1px 1px 5px rgba(54, 54, 54, .2);
}

.calendar_task ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.calendar_task ul li {
    padding-left: 25px;
    position: relative;
}

.calendar_task ul li i {
    position: absolute;
    left: 0;
    top: 5px;
}

.calendar_task ul li h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.calendar_task ul li p {
    font-size: 14px;
    color: #999;
}

.calendar_task ul li p span {
    color: #e60013;
}

.nav_days {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.nav_days a {
    color: #e60013;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav_days i {
    color: #222;
}

.staff_box {
    background-color: #f0f0ff;
    padding: 25px;
    margin: 10px 60px;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(54, 54, 54, .3);
}

.staff_box h3 {
    font-style: italic;
    color: #e60013;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.staff_box ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.staff_box ul i {
    color: #b3b3b3;
    min-width: 30px;
}

.staff_box ul a, .staff_box ul li {
    color: #111;
}

.deal_btn {
    display: flex;
    max-width: 400px;
}

.deal_btn button {
    background-color: #ddd;
    color: #111;
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    border: none;
    min-width: 100px;
    text-transform: uppercase;
    padding: 5px;
    letter-spacing: 1px;
    outline: none !important;
    box-shadow: none !important;
    transition: ease all .5s;
    cursor: pointer;
}

.deal_btn button:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.deal_btn button:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.deal_btn button.active, .deal_btn button:hover {
    background-color: #e60013;
    color: white;
}

.lead_table thead{
    background-color: #f2f2f2;
}

.lead_table tr td{
    transition: ease all .5s;
}

.lead_table tr.selected td{
    background-color: #ffdee4;
}

.lead_radio{
    padding: 15px 15px 10px;
    background-color: #f0f0ff;
    color: #808080;
    border-radius: 15px;
    display: flex;
    flex-flow: column;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 1px 1px 5px rgba(54,54,54,.3);
    transition: ease all .5s;
}

.lead_radio i{
    font-size: 40px;
}

.lead_radio input{  
    display: none;
}

.lead_radio i{
    color: #e60013;
    transition: ease all .5s;
}

.lead_radio_input{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    opacity: 0;
}

.lead_radio_input:checked + .lead_radio{
    background-color: #e60013;
    color: white;
}

.lead_radio_input:checked + .lead_radio i{
    color: white !important;
}

.smaller_row{
    margin: 0 -5px;
}

.smaller_row > div[class*="col-"]{
    padding: 0 5px;
}

.extra_table tr > td{
    padding: 5px 10px;
}

.extra_table tr:not(:last-child){
    border-bottom: 1px solid #ddd;
}

.extra_table tr > td:last-child{
    width: 1%;
    white-space: nowrap;
}

.purple_bg{
    background-color: #f0f0ff;
    padding: 15px;
    margin-top: 5px;
}

.accessories_total{
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 20px;
    letter-spacing: 1px;
}

.accessories_total span{
    color: #e60013;
    font-weight: bold;
}

@media screen and (max-width: 992px) {
    .calendar_task>div[class*="col-"]:not(:last-child) {
        border: none;
    }
}

@media screen and (max-width: 768px) {
    .content_wrapper {
        padding-left: 20px;
        left: 0;
        position: relative;
        transition: ease all .5s;
    }
    footer, .topbar {
        padding-left: 20px;
    }
    footer {
        /* position: relative; */
        margin-top: 20px;
        margin-bottom: -60px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .hide_sidebar .content_wrapper, .hide_sidebar .topbar {
        left: 260px;
    }
    .sidebar {
        left: -260px;
    }
    .hide_sidebar .sidebar {
        left: 0;
    }
    .login_box {
        border-radius: 0;
    }
    .task-list {
        flex: 0 0 100%;
    }
}


.activity_table{
    width: 100%;
}

.activity_table tr > td{
    padding: 5px;
}

.activity_table tr > td a{
    visibility: hidden;
    pointer-events: none;
}

.activity_table tr:hover > td a{
    visibility: visible;
    pointer-events: initial;
}

.activity_table tr > td:first-child{
    width: 1%;
    white-space: nowrap;
    text-align: center;
    color: #aaa;
}

.activity_table tr > td:last-child{
    color: #aaa;
}

.tab-pane .box_container .form-control{
    background-color: #f0f0ff !important;
}

.customer_profile .nav-pills .nav-link{
    font-weight: 600;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-transform: uppercase;
    color: #000;
}

.customer_profile .nav-pills .nav-link.active, 
.customer_profile .nav-pills .show>.nav-link{
    background-color: #f0f0ff;
}

.customer_profile.special .nav{
    flex-wrap: nowrap;
    font-size: 12px;
    margin-top: 25px;
    overflow-x: auto;
}

.customer_profile.special .nav li a{
    white-space: nowrap;
}

.car_box{
    padding: 15px;
    background-color: #f0f0ff;
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
    height: calc(100% - 63px);
    border-radius: 5px;
}

.car_box img{
    max-width: 100%;
}

.car_box hr{
    width: 100%;
}

.white_box{
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
}

.white_box.bordered{
    border-radius: 0;
    border: 1px solid #ccc;
}

.white_box table{
    width: 100%;
}

.white_box table tr td{
    border-bottom: 1px solid #ccc;
}

.white_box table td{
    padding: 5px;
}

.white_box table td:last-child{
    width: 1%;
    white-space: nowrap;
}

.amsify-suggestags-input-area .amsify-select-tag.col-bg{
    background-color: #fff;
    white-space: nowrap;
    font-size: 12px;
}

.red_title{
    font-size: 30px;
    font-weight: 600;
    color: #ff0c1b;
    letter-spacing: 2px;
}

.form-label.special{
    font-size: 12px;
    text-transform: uppercase;
    color: #111111;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 15px;
}

.modal-header ul{
    display: flex;
    list-style-type: none;
    color: #999;
    font-weight: 600;
    padding-left: 0;
    margin-bottom: 0;   
}

.modal-header ul li{
    padding-right: 10px;
}

.modal-header ul li:not(:first-child){
    padding-left: 10px;
}

.modal-header ul li:not(:last-child){
    border-right: 1px solid #999;
}

.padding-10px {
    padding: 10px;
}

.margin-10px {
    margin: 10px !important;
}

.marginlr-0px {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.paddinglr-0px {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.dashboard-widget-name {
    font-weight: normal !important;
    color: #000 !important;
}

.font-white {
    color: #FFF !important
}

.widget-labels {
    font-size : 14px !important;
    font-weight: bold !important;
}
