@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");


/* * Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --primary-color: #0088ff;
    --light-blue: #e2f1ff;
    --input-bg: #f6f6f6;
    --placeholder-grey: #a0a0a2;
    --dark-grey: #424242;
    --dark-blue: #1f2b5d;
    --darker-blue: #002648;
    --text-color: #0e2654;
    --tab-border-color: #bdbdbd;
    --tab-text-color: #959696;
    --tab-text-active-color: #212121;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    overflow: auto;
}

body.padded {
    padding: 67px 0;
}
body.padded-sm {
    padding: 61px 0 0 0;
}
body.custom-padded-sm {
    padding: 50px 0 0 0;
}
/* body.dash-pad{
    padding-top: 50px;
} */
body.bg-light-blue {
    background-color: #0088ff0b;
}

li {
    list-style: none;
}
i {
    color: var(--primary-color);
}
i.icon.bars:before {
    content: "\f0c9";
}
a {
    text-decoration: none;
    color: var(--primary-color);
}
.text-primary {
    color: var(--primary-color) !important;
}
h6 {
    font-weight: 500;
    color: var(--darker-blue);
}
h3 {
    font-weight: 700;
    color: var(--dark-blue);
}
h5.intro {
    color: var(--dark-blue);
    font-weight: 500;
}
textarea {
    width: 100%;
    border-radius: 4px;
    height: 150px;
}
textarea::placeholder {
    color: var(--placeholder-grey);
}
textarea:hover,
textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

/* Utilities */
/* .container {
    
    background-color: red;
} */
.container--box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container-scroll {
    width: 600px;
    overflow: scroll;
}

.container-scroll::-webkit-scrollbar {
    height: 0;
}
.container-scroll--box {
    display: flex;
    gap: 50px;
    align-items: center;
    width: 100%;
    height: 300px;
    position: relative;
}


@keyframes slidertoleft {
    0% {
        left: 0px;
    }

    25% {
        left: -600px;
    }

    50% {
        left: -1210px;
    }
    75% {
        left: -1500px;
    }

    100% {
        left: 0px;
    }
}

.scroll-dot {
    gap: 10px;
    width: 600px;
    justify-content: center;
}

.scroll-dotted {
    width: 10px;
    height: 10px;
    background-color: rgb(170, 170, 170);
    border-radius: 50%;
}

.container-scroll--box img {
    width: 250px;
    height: 180px;
}
.btn {
    text-transform: none;
}
.badge {
    box-shadow: none;
}
.badge {
    font-size: 13px !important;
}
.badge-warning {
    background-color: #e07000 !important;
}
.badge-dark {
    background-color: var(--darker-blue) !important;
    font-weight: normal;
}
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    border: none !important;
}
.btn-light {
    color: #28363a;
    box-shadow: 0 1px 2px 0 rgb(0, 0, 0, 0.16);
    border-radius: 4px;
}
.btn-light-blue {
    background: #0088ff22;
    color: var(--darker-blue);
}
.btn-outline-primary {
    color: var(--primary-color);
    border-radius: 4px;
    box-shadow: none;
    border-color: var(--primary-color);
}
.form-control:focus {
    box-shadow: none;
}
.header {
    font-size: 25px;
}
.btn-outline-warning {
  color: #e07000 !important;
  box-sizing: none !important;
  border: 1px solid #d2752b !important;
  box-shadow: 0px 0px 1px#D2752B;
}
.btn-outline-warning:not([disabled]):not(.disabled).active {
  background: #e07000 !important;
  color: #fff !important;
  transition: all 1s ease;
}
.btn-outline-default {
  color: #32a65a !important;
  box-sizing: none !important;
  border: 1px solid #56a362 !important;
  box-shadow: 0px 0px 1px#56A362;
}
.btn-outline-default:not([disabled]):not(.disabled).active {
  background: #32a65a !important;
  color: #fff !important;
  transition: all 1s ease;
}
.btn-default {
  color: #fff;
  background: #32a65a !important;
}
.btn-default-custom {
  background: rgb(214, 237, 222) !important;
  color: rgba(50, 166, 90, 100%) !important;
  font-weight: 500;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  border: none !important;
  outline: none;
}
 
.btn-warning-custom {
  color: rgb(224, 205, 0) !important;
  background: rgba(250, 193, 5, 0.519) !important;
  font-weight: 500;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  border: none !important;
  outline: none;
}
.btn-trial-custom {
  color: rgb(224, 205, 0) !important;
  background: rgba(70, 70, 69, 0.519) !important;
  font-weight: 500;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  border: none !important;
  outline: none;
}
.btn-default:disabled {
  background: rgb(214, 237, 222) !important;
  color: rgba(50, 166, 90, 100%) !important;
  font-weight: 500;
  box-shadow: none;
  font-size: inherit;
}
.btn-outline-danger {
  color: #d0021b !important;
  box-sizing: none !important;
  border: 1px solid #d0021b !important;
  box-shadow: 0px 0px 1px #d0021b;
}
.btn-outline-danger:not([disabled]):not(.disabled).active {
  background: #d0021b !important;
  color: #fff !important;
  transition: all 1s ease;
}
.btn-warning:disabled {
  color: rgba(224, 112, 0, 100%) !important;
  background: rgba(251, 234, 217, 100%) !important;
  font-weight: 500;
  box-shadow: none;
  font-size: inherit;
}
 
 
.btn-danger:disabled {
  background: #d0021b;
  font-weight: 500;
  box-shadow: none;
  font-size: inherit;
}
.btn-white,
.btn-white:hover {
  color: var(--primary-color) !important;
  font-weight: 400;
  border-radius: 4px;
}
.btn-outline-light {
  box-shadow: none;
  border: 0.5px solid #494949 !important;
  color: #494949 !important;
  border-radius: 4px;
}
.btn-outline-light:hover {
  box-shadow: none;
}
.txt-primary {
  color: var(--primary-color);
}
.table-responsive {
  width: 100%;
}
.day {
    background: var(--darker-blue);
    max-width: 200px;
    text-align: center;
    color: #fff;
    padding: 3px;
    border-radius: 50px;
    font-size: 12px;
}
.btn-danger {
    background-color: #d0021b !important;
    border-radius: 4px;
}
.accordion a,
.accordion a i {
    color: var(--dark-grey);
}
.bg-light-blue {
    background: var(--light-blue);
}
.alert-warning {
    background: transparent;
    position: relative;
    color: #1f2b5d;
    font-weight: 500;
    border: none;
}
.alert-warning::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #e07000;
    opacity: 21%;
    border-radius: inherit;
}
.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item:active {
    background-color: transparent;
    color: #212529 !important;
}

table td {
    vertical-align: middle !important;
    font-size: 14px;
    font-weight: 300;
}
table th {
    font-size: 1rem;
}

.fade:not(.show) {
    display: none;
}

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

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

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

.h-100 {
    height: 100%;
}

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

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

/* Homepage Styles */
.smarter-way {
    min-height: 100vh;
    background: url("../assets/img/home-bg-new.png") no-repeat center
        center/cover;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.smarter-way.forgot-pass {
    background: url("../assets/img/forgot-password.png") no-repeat center
        center/cover;
}

.smarter-way h1 {
    font-weight: 600;
}

.register-sec {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.register-sec-lg {
    height: auto;
}

.register-sec h3,
.register-sec p {
    color: var(--dark-grey);
}
.register-sec p.light {
    color: #707070;
}

#register-form {
    width: 100%;
}

#register-form #passwordStrength {
    display: none;
}

#register-form #passwordStrength p {
    font-weight: normal;
}
#register-form #passwordStrength p i {
    color: var(--dark-grey);
}

#register-form #passwordStrength p.head {
    font-weight: 600;
}

#register-form .btn {
    font-size: 0.9rem;
}

#register-form h2,
.verification h2 {
    font-weight: 700;
    color: var(--dark-grey);
}
#register-form p {
    font-weight: 600;
}
.form-group p {
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 14px;
}
.verify-content p {
    font-size: 14px;
}
#register-form ::placeholder {
    color: var(--placeholder-grey);
}
select.form-control {
    height: 48px !important;
    line-height: 48px !important;
}


#register-form input,
#register-form select,
#settings input,
.filter-controls input {
  font-size: 14px;
  background: var(--input-bg);
  cursor: pointer;
  border: none;
}
#register-form .form-error,
#report-container .form-error {
  color: #d0021b;
  font-size: 0.8rem;
}


#register-form label {
    color: var(--dark-grey);
}
.reg-footer a,
.register-sec a {
    font-weight: 600;
    font-size: 14px;
}
.s-up {
    color: var(--placeholder-grey);
}

.form-control::placeholder {
    color: var(--placeholder-grey);
}
.form-control:disabled,
textarea {
    background-color: inherit;
}

#register-form label.tnc {
    font-weight: 100;
    font-size: 13px;
}
#register-form p.tiny {
    color: var(--placeholder-grey);
}

#register-form input,
#settings input,
.filter-controls input {
    font-size: 14px;
    background: var(--input-bg);
    cursor: pointer;
    border: none;
}
#register-form .form-error,
#report-container .form-error {
    color: #d0021b;
    font-size: 0.8rem;
}

#report-container .form-error {
    display: none;
}

.input-error {
    border-color: #d0021b !important;
}

.filter-controls {
    width: 100%;
}

.filter-controls input,
.filter-controls .input-group {
    background: #fff !important;
    color: var(--dark-grey);
}
.filter-controls input::placeholder {
    color: var(--placeholder-grey);
}
.filter-controls .input-group {
    border: 1px solid #00000029 !important;
}

.filter-controls .dropdown .btn,
.filter-controls .custom-dropdown {
    color: var(--dark-grey);
    font-weight: 400;
    box-shadow: none;
    border: 1px solid var(--input-bg);
    border-radius: 5px;
    height: 100%;
    width: 100%;
}

.filter-controls .dropdown .btn-primary {
    color: #fff;
    border: none;
}

.filter-controls .btn {
    font-size: 14px;
}

#register-form .input-group,
#settings .input-group,
.filter-controls .input-group {
    background: var(--input-bg);
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid var(--input-bg) !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
#register-form .input-group:hover,
#settings .input-group:hover {
    box-shadow: 0 0 5px var(--primary-color);
}
#register-form .options {
    transition: display 2s ease;
}

.reg-footer {
    height: 5vh;
    color: var(--placeholder-grey);
    font-size: 12px;
    display: flex;
    flex-direction: column;
}
.support {
    order: 1;
}
.copyright {
    order: 2;
}

/* Email Verification */
.verification p {
    color: #707070;
}
.verification a {
    font-weight: normal;
}
.verification p span.font-weight-bold {
    color: #2c2c2c;
}
.verify-content p {
    color: var(--dark-grey);
}

/* line */
.line {
    border-bottom: 1px solid var(--placeholder-grey);
}
/* Double Nav Styles */
.navbar {
    background: #fff;
    z-index: 1010;
    box-shadow: 0 1px 1px #00000029;
}
#mobile-nav {
    background: #f6f6f6;
    width: 100%;
}
#mobile-nav a {
    color: var(--primary-color);
    font-weight: 500;
}
#mobile-nav #back-link {
    color: var(--dark-grey);
}
#mobile-nav p {
    font-weight: 500;
}

.breadcrumb-dn p {
    color: var(--dark-grey);
    font-weight: 500;
}

/* Notifications */
.notification-wrapper {
    position: relative;
}

.notification-content {
    display: none;
    position: absolute;
    top: 102%;
    border-radius: 5px;
    min-width: 300px;
    height: 350px;
    overflow: auto;
    background: #fff;
    box-shadow: 0 1px 2px #55555552;
    z-index: 99;
}

.notification-content .notification-body {
    min-height: 70%;
}

.notification-content #clearAllNotfications a {
    color: var(--placeholder-grey);
    font-size: 0.8rem;
}

.admin-notification {
    left: -265px;
}

.notification-content.open {
    display: block;
}

.notification-content ul {
    padding: 0.5rem;
}

.notification-content a {
    color: var(--primary-color);
    display: inline;
    font-size: 1rem;
}

.notification-header {
    border-bottom: 1px solid #55555552;
    color: var(--darker-blue);
    font-size: 1.1rem;
}

.notification i {
    color: #d0021b;
    font-size: 12px;
}

.notification:hover {
    background: var(--input-bg);
    border-radius: 5px;
}

/* SideNav */
.side-nav {
    background: var(--darker-blue);
    z-index: 1000;
}
.side-nav .collapsible-body a {
    height: 35px;
    line-height: 35px;
    padding-left: 35px;
}
.side-nav .collapsible > li a.collapsible-header.active,
.side-nav .collapsible > li a.collapsible-header:hover {
    background-color: inherit;
}
.side-nav a,
.side-nav button {
    height: 35px;
    line-height: 35px;
    padding-left: 10px;
}
.side-nav button {
    display: block;
    font-size: 14px;
    background-color: transparent;
    border: none;
}
.side-nav a svg,
.side-nav .side-link button svg {
    width: 15px;
    margin-bottom: 3px;
    margin-right: 0.5rem;
}
.side-nav .side-links {
    height: 97%;
    display: flex;
    flex-direction: column;
}
.side-nav .logo a {
    padding-left: 0;
}
.side-nav a i {
    color: #fff;
}
.side-nav > ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.side-nav .avatar {
    height: 90px;
    width: 90px;
}
#logout-link {
    justify-self: flex-end;
}
.avatar {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    background-color: var(--primary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff !important;
    text-align: center;
    position: relative;
    box-shadow: 0 1px 2px #00000029;
}
#slide-out .avatar h1 {
    font-size: 35px;
}

.editProfilePic {
    position: absolute;
    right: -5%;
    top: 65%;
}
#user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#user-info p {
    font-size: 14px;
}
#user-info a {
    line-height: initial;
}
.side-nav .btn-outline-primary {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}
.side-nav .btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}
.side-link a {
    font-size: 14px !important;
    color: #fff !important;
}
.side-link.current,
.side-link.current:hover {
    background: var(--primary-color);
}
.side-link.active a,
.side-link:hover a {
    font-weight: 500;
}
.side-link:hover {
    background: var(--dark-blue);
}
.icon {
    width: 40px;
}

.envelope-img {
    width: 200px;
}

/* Search Employees */
#isCollapsible {
    height: 100%;
}

#searchInput {
    border: 1px solid #00000029;
    border-radius: 4px;
    padding-right: 15px;
    margin-left: 10px;
    width: 320px;
    position: relative;
}

#searchInput img {
    position: absolute;
    right: 15px;
    top: 30%;
}

#searchInput > input {
    width: 90%;
    border: none;
    outline: none;
}

#searchInput > input::placeholder {
    font-size: 15px;
}

#searchInput > button {
    background: none;
    border: none;
}

.side-nav .collapsible-body a {
    padding-left: 60px;
}

/* Reports Page */
#report-container {
    width: 100%;
    margin: auto;
}

#report-container h5 {
    font-size: 20px;
    font-weight: 900;
    color: var(--darker-blue);
}

#report-container h5.big-tag {
    font-weight: 600;
    font-size: 16px;
}

#report-container h4 {
    font-size: 17px;
    font-weight: 900;
    color: var(--darker-blue);
}

#report-container p {
    font-weight: 400;
    color: var(--dark-blue);
}
#report-container p.text-black {
    color: #000;
}
#report-container p.hint {
    font-size: 0.9rem;
}

.category-header {
    border-bottom: 1px solid #00000029;
}

#incident,
#accident {
    width: 100%;
    position: relative;
    height: 220px;
    border-radius: 3px;
    box-shadow: 0 0 2px #bdbdbd;
}

#incident.selected::before,
#accident.selected::before {
    content: "";
    position: absolute;
    background: var(--light-blue);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    border-radius: 3px;
    box-shadow: 0 0 2px var(--primary-color);
}

#report-container input:radio,
#report-container label {
    font-size: 14px;
}
#newReportFooter {
    background: #fff;
    z-index: 996;
}
#newReportFooter p {
    font-weight: 500;
    color: #424242;
}

#accident label,
#incident label {
    color: var(--darker-blue);
}

#guestName .form-control {
    width: 80%;
}
#guestName {
    display: none;
}
.who-options label {
    color: #424242;
}

.progress-bar {
    background: var(--primary-color) !important;
}
.progress {
    background: var(--light-blue) !important;
}

/* Step 2 */
#report-container h6 {
    color: #212121;
}
#report-container .header-content h3 {
    color: var(--darker-blue);
}
#report-container .header-content p {
    font-size: 16px;
}

.where {
    font-weight: 400;
    color: var(--dark-grey);
}

.date-time .form-control {
    border: none;
    background: #fff;
}

.date-time .input-group {
    border: 1px solid #00000029;
    cursor: pointer;
    border-radius: 4px;
}

.howInjurySevere,
.howDamageSevere,
.nameOfWitness {
    display: none;
}

/* Modal Styles */
.modal {
    z-index: 1060;
}
.modal-title {
    font-weight: 600;
    font-size: 20px;
    color: #06232c;
}
.modal-body p {
    font-size: 16px;
    color: #605d71;
}
.modal-body .avatar p {
    color: #fff;
}
.modal-body h5 {
    color: var(--darker-blue);
    font-weight: 600;
}
.modal-body .assign .btn-primary {
    height: 100%;
}
.modal-content {
    border-radius: 5px !important;
    position: relative;
    scroll-behavior: smooth;
}

.modal-close {
    font-size: 18px;
    position: absolute;
    top: -15px;
    right: -35px;
}
.modal-close i {
    color: var(--input-bg) !important;
}

.modal-footer .btn {
    padding-left: 3.7rem;
    padding-right: 3.7rem;
}
.modal-header {
    border-top-right-radius: 5px !important;
    border-top-left-radius: 5px !important;
    background-color: var(--light-blue);
}
/* Delete Modal Buttons */
.modal-delete {
    background-color: #d0021b;
}

.modal-body .form-control:hover,
.modal-body .form-control:focus {
    border-color: #0088ff;
    outline: none;
}
.modal-body label {
    color: #424242;
    font-weight: 500;
}
.modal-body .edit-user {
    color: #212121;
}
/* Your Report Modal */
.your-report p {
    font-size: 16px;
    color: #212121;
}

.modal-body .custom-dropdown {
    height: 45px;
}

.your-reports-table thead {
    background: #f6f6f6;
}
.your-reports-table td {
    vertical-align: middle;
    font-size: 14px;
}

/* Department Members */
#members-list {
    position: relative;
}

#members-list .deleteicon {
    position: absolute;
    right: 5%;
}

#members-list .member .employeeName {
    font-weight: 500;
    color: var(--dark-grey);
}

/*Assign Report Dropdown*/
.custom-dropdown,
.user-dropdown,
.leads-dropdown {
    width: 100%;
    display: inline-block;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 2px var(--dark-grey);
    transition: all 0.5s ease;
    position: relative;
    font-size: 14px;
    color: var(--dark-grey);
    height: 100%;
    text-align: left;
}

.user-dropdown,
.leads-dropdown {
    box-shadow: none;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.custom-dropdown .select,
.user-dropdown .select,
.leads-dropdown .select {
    cursor: pointer;
    display: block;
    padding: 7px;
    height: 100%;
    display: grid;
    align-items: center;
}

.user-dropdown .select-role,
.user-dropdown .select-role i,
.leads-dropdown .select-role,
.leads-dropdown .select-role i {
    color: var(--placeholder-grey);
}

.custom-dropdown:hover,
.user-dropdown:hover,
.leads-dropdown:hover {
    box-shadow: 0 0 4px var(--primary-color);
}
.custom-dropdown:active,
.user-dropdown:active,
.leads-dropdown:active {
    background-color: #f8f8f8;
    outline: none;
}
.custom-dropdown.active:hover,
.user-dropdown.active:active,
.leads-dropdown:hover,
.leads-dropdown:active,
.leads-dropdown.active,
.custom-dropdown.active,
.user-dropdown.active {
    box-shadow: 0 0 4px var(--primary-color);
    border-radius: 2px 2px 0 0;
    background-color: #f8f8f8;
}
.custom-dropdown .custom-dropdown-menu,
.user-dropdown .user-dropdown-menu,
.leads-dropdown .leads-dropdown-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px var(--primary-color);
    border-radius: 0 1px 2px 2px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9;
}

.user-dropdown .user-dropdown-menu,
.leads-dropdown .leads-dropdown-menu {
    max-height: none;
}

.custom-dropdown .custom-dropdown-menu li p,
.custom-dropdown .select p,
.user-dropdown .select p,
.leads-dropdown .select p {
    color: #596b71;
    font-size: 15px;
}

.user-dropdown .user-dropdown-menu li p,
.leads-dropdown .leads-dropdown-menu li p {
    color: var(--darker-blue);
    font-size: 14px;
    font-weight: 100;
}

.user-dropdown .user-dropdown-menu li p.actual {
    font-size: 15px;
    font-weight: 600;
}

.custom-dropdown .custom-dropdown-menu li,
.user-dropdown .user-dropdown-menu li,
.leads-dropdown .leads-dropdown-menu li {
    padding: 7px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.user-dropdown .user-dropdown-menu li,
.leads-dropdown .leads-dropdown li {
    border-bottom: 1px solid #ccc;
}

.custom-dropdown .custom-dropdown-menu,
.user-dropdown .user-dropdown-menu,
.leads-dropdown .leads-dropdown-menu {
    padding: 0;
    list-style: none;
}
.custom-dropdown .custom-dropdown-menu li:hover,
.user-dropdown .user-dropdown-menu li:hover,
.leads-dropdown .leads-dropdown-menu li:hover {
    background-color: #f2f2f2;
}
.custom-dropdown .custom-dropdown-menu li:active,
.user-dropdown .user-dropdown-menu li:active,
.leads-dropdown .leads-dropdown-menu li:active {
    background-color: #e2e2e2;
}

.custom-dropdown .custom-dropdown-menu li .avatar,
.user-dropdown .user-dropdown-menu li .avatar,
.leads-dropdown .leads-dropdown-menu li .avatar {
    height: 30px;
    width: 30px;
    align-self: flex-start;
}

.custom-dropdown .select .avatar,
.user-dropdown .select .avatar,
.leads-dropdown .select .avatar {
    height: 25px;
    width: 25px;
}
.custom-dropdown .select .avatar p,
.user-dropdown .select .avatar p,
.leads-dropdown .select .avatar p {
    font-size: 10px;
}

.custom-dropdown .custom-dropdown-menu li .avatar p,
.custom-dropdown .select .avatar p,
.user-dropdown .user-dropdown-menu li .avatar p,
.user-dropdown .select .avatar p,
.leads-dropdown .leads-dropdown-menu li .avatar p,
.leads-dropdown .select .avatar p {
    color: #fff;
}

/* Upload Csv Modal */
.upload-csv {
    width: 100%;
    height: 200px;
    border: 1px dashed #bac3c6;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upload-csv.over,
.upload-csv:hover {
    border: 1px solid var(--primary-color);
}

/* Dashboard Modals */
#adminOnboard .modal-content {
    border-radius: 30px !important;
}

#adminOnboard .modal-header {
    border-top-right-radius: 30px !important;
    border-top-left-radius: 30px !important;
    border-bottom: none;
}

#adminOnboard .modal-body h5 {
    color: #06232c;
}

#adminOnboard .modal-body p {
    font-size: 14px;
}

#adminOnboard .modal-footer a {
    color: #001a03;
    font-size: 13px;
}

#adminOnboard .modal-footer p {
    color: #596b71;
    font-size: 13px;
    opacity: 60%;
}

/* Dashboard Styles */
.dash-main,
.dash-footer,
.dash-header .navbar {
    padding-left: 200px !important;
}

.dashboard-links {
    font-size: 12px;
}

#welcome-sec {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #e2f1ff;
    box-shadow: 0 1px 2px#0088FF50;
    border-radius: 10px;
}

#welcome-sec img {
    order: 1;
    width: 100%;
}
#welcome-sec .welcome-greeting {
    order: 2;
}
#welcome-sec .welcome-greeting h1 {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.7rem;
}
#welcome-sec .welcome-greeting p {
    color: var(--dark-blue);
}

#welcome-sec .welcome-greeting .btn-primary {
    box-shadow: 0px 1px 3px #00000033;
}

.activity-grid {
    display: grid;
}

#activity-sec #activityCards {
    order: 2;
}

#activity-sec h5 {
    color: var(--dark-grey);
    font-weight: 500;
}

#activity-sec .analytics {
    height: 245px;
}

.activity-text h6 {
    font-weight: normal;
    text-align: left;
}

.activites .activity .activity-details,
.notification {
    display: flex;
    align-items: center;
}

.activites .activity .activity-details .avatar,
.notification .avatar {
    height: 50px;
    width: 50px;
    align-self: flex-start;
}

.number-stat p {
    color: var(--dark-grey);
    font-size: 13px;
    font-weight: 200;
}

.number-stat h5 {
    font-size: 1.6rem;
    color: var(--dark-grey);
    font-weight: 500;
}

.num-stat-grid .number-stat:hover {
    background-color: var(--input-bg);
    cursor: pointer;
}

.time {
    color: var(--placeholder-grey);
    font-size: 12px;
}

.number-stat {
    box-shadow: 0 1px 2px #55555552;
    display: flex;
    align-items: center;
    border-radius: 3px;
    height: 100%;
}

.chart-container {
    box-shadow: 0 1px 2px #55555552;
    border-radius: 3px;
}

.chart-container p {
    font-size: 14px;
    color: var(--dark-grey);
    font-weight: 400;
}

#quick-links > p {
    color: var(--dark-grey);
    font-weight: 500;
}

.quick-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    box-shadow: 0 1px 2px #5555551f;
    transition: transform 0.2 ease;
}

.quick-link:hover {
    transform: scale(1.025);
}

.quick-link .badge {
    position: absolute;
    top: -5px;
    left: 70%;
    border-radius: 50%;
    font-weight: normal;
    background-color: #e54600;
    box-shadow: none;
    padding: 5px 8px;
}

.quick-link img {
    width: 30px;
}

#toProfile {
    background-color: #49aee3e6;
}
#toReport {
    background-color: #8c8ece;
}
#toAnnouncement {
    background-color: #364962;
}
#toCalendar {
    background-color: #dd6c8a;
}
#toPolicy {
    background-color: #6eba7d;
}
#toEmployee {
    background-color: #e0872de6;
}
#toTimeoff {
    background-color: #0088ff;
}

/* Reports Dashboard */
#reports-nav {
    width: 100%;
}
#reports-nav ul {
    display: flex;
    border-bottom: 0.2px solid #e8e8e8;
}
#reports-nav ul li a {
    color: var(--dark-grey);
    font-weight: 400;
    display: inline-block;
}
#reports-nav ul li a.active {
    border-bottom: 3px solid var(--primary-color);
    color: var(--primary-color);
}

#no-drafts {
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#no-drafts p {
    color: var(--dark-blue);
    width: 50%;
}

/* Assign-Report Modal */
.assign-report h6 {
    color: #06232c;
}
.assign-report p {
    color: #212121;
}

/* Reports Views Page */
#resolution {
    position: absolute;
    top: 0;
    background: #fff;
    box-shadow: 0 0 2px #00000029;
    display: none;
}

#resolution.showing {
    display: block;
}

#back-link,
#back-link i {
    color: var(--dark-grey);
}

#resolution .avatar {
    height: 35px;
    width: 35px;
    font-size: 16px;
}

#resolution .btn.btn-sm {
    font-size: 13px;
}

#resolution .resolution {
    border-bottom: 0.2px solid #70707058;
}

#resolution h5 {
    font-size: 24px;
    font-weight: 900;
    color: var(--darker-blue);
}

#resolution .bold {
    font-weight: 700;
}

#resolution .small {
    font-size: 12px;
    color: #596b71;
}
.comments .small {
    font-size: 10px;
    color: var(--placeholder-grey);
}

.comments .chat .message {
    border: 1px solid #55555552;
    border-radius: 5px;
}

.comments .chat i {
    color: var(--dark-grey);
}

.comments .chat #show-replies {
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 12px;
}

.comments .chat .msg {
    font-weight: 500;
    font-size: 14px;
}

/* Admin Views */
.comments .select-wrapper {
    width: 150px;
    border: none;
    border-radius: 4px;
    box-shadow: none;
    background: #e2f1ff;
}

.comments .select-wrapper .form-control {
    color: var(--primary-color);
}

.md-form input[type="text"]:not(.browser-default) {
    border-bottom: none;
}

.select-wrapper span.caret {
    right: 5px;
}

.comments textarea {
    border: 2px solid #e2f1ff;
}

.comments a#cancelComment {
    color: var(--dark-grey);
}

/* Your Report Modal */

.yourReport p {
    font-size: 16px;
}

/* Add Photo Page */

.image-preview {
    width: 100%;
    height: 270px;
}

.dropzone {
    border: 2px dashed #00000029;
    border-radius: 5px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.dropzone.hover {
    border-color: var(--primary-color);
}

.caption {
    background: var(--input-bg);
    border: 1px solid var(--placeholder-grey);
    border-radius: 4px;
    color: var(--dark-blue);
}
.caption::placeholder {
    color: var(--placeholder-grey);
}
.caption:focus {
    outline: none;
}

.icons {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
    transition: display 1s ease;
}
.icons a i {
    color: #fff;
}
.icons a#icon-delete i:hover {
    color: red;
}
.icons a#icon-change i:hover {
    color: var(--primary-color);
}

.image-thumbnail {
    width: 100%;
    height: 270px;
    border-radius: 5px;
    box-shadow: 1px 2px 4px var(--input-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.image-thumbnail:hover > .icons {
    display: block;
}

.image-thumbnail:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    border-radius: 5px;
    opacity: 0.4;
}

.photo-row {
    width: 100%;
    overflow: auto;
}

.add-another {
    width: 100%;
    height: 270px;
    overflow: hidden;
    border: 2px dotted #00000029;
    border-radius: 5px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    align-items: center;
}

.add-another:hover {
    border-color: #56a362;
}

/* Settings Page */
#settings {
    border-radius: 5px;
    height: 100vh;
}

#settings #personalDetails .avatar {
    width: 75px;
    height: 75px;
}

#settings .page-header h3 {
    color: var(--placeholder-grey);
    font-weight: 900;
}

#settings p {
    color: var(--dark-grey);
}

#settings #personalDetails a,
#settings h5,
#settings label {
    color: var(--dark-grey);
    font-weight: 500;
}

#settings h6 {
    color: #06232c;
    font-weight: 600;
    font-size: 1.1rem;
}

#settings #generalSettings h6 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-grey);
}

#settings .change-warning {
    font-size: 12px;
}

/* Report */
.reports-table {
    border: 2px solid #f6f6f6;
}

/* Coming soon */
#coming_soon {
    border-radius: 5px;
    height: 80vh;
    box-shadow: 0 1px 2px #ccc;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#coming_soon h1 {
    font-weight: 500;
    color: var(--darker-blue);
}

#coming_soon p {
    font-size: 20px;
    color: var(--placeholder-bg);
    font-weight: 400;
    line-height: 2;
}

.reports-table thead,
.reports-table tfoot {
    background: #f6f6f6;
}

.reports-table thead th {
    color: var(--dark-grey);
    font-weight: 500;
}

.table-ctrls,
.table-ctrls i {
    color: var(--dark-grey);
}

.table-ctrls .dropdown-lt {
    background: #e2f1ff;
    border: 0.2px solid var(--primary-color);
    border-radius: 5px;
}

.table-ctrls .dropdown .btn {
    box-shadow: none;
}

.table-ctrls .dropdown {
    border: 0.2px solid var(--placeholder-grey);
    border-radius: 4px;
}

.deleteBtn {
    height: 80%;
}

.table-ctrls .deleteBtn,
.table-ctrls .deleteBtnMobile {
    display: none;
}

.table-ctrls .deleteBtn.show,
.table-ctrls .deleteBtnMobile.show {
    display: inline-block;
}

#showOlder,
#showNewer {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 45%;
    text-align: center;
}

#showOlder:hover,
#showNewer:hover {
    background-color: var(--light-blue);
    cursor: pointer;
}

/* Users */
.no-users {
    height: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #f6f6f6;
}

#employeesTable .avatar {
    height: 40px;
    width: 40px;
    font-size: 16px;
}

.employee-details a {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.employee-details p {
    color: var(--dark-grey);
    font-weight: 100;
}

/* Add Users */
#users-selected {
    background: var(--light-blue);
    color: var(--primary-color);
    display: inline-block;
    font-weight: 500;
    font-size: 0.8rem;
    border-radius: 50px;
}

#addUsersForm .custom-select {
    color: var(--placeholder-grey);
}

.pg-header h4 {
    font-weight: 700;
    color: var(--darker-blue);
}
.pg-header p {
    font-weight: 400;
    color: var(--darker-blue);
}

/* Alerts */
.alert-success {
    background: rgba(242, 249, 244, 100%);
    border-color: var(--light-blue);
}
.alert-success p {
    color: #212121;
    font-weight: lighter !important;
}

/* Admin Dashboard */
.admin-welcome {
    background: var(--light-blue);
    border-radius: 8px;
}

.admin-welcome p {
    color: #1f2b5d;
}

.admin-activities > h6 {
    font-size: 1.1rem;
}

.admin-activities > h6 span {
    font-size: 0.8em;
}

.activity-card {
    box-shadow: 0 1px 2px #55555552;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.activity {
    border-bottom: 0.2px solid #70707043;
    padding: 15px 0;
    display: flex;
}

.activity-card-header {
    background-color: #e2f1ff;
    display: flex;
    align-items: center;
    padding: 15px 20px;
}

.activity-card-header img {
    width: 20px;
    height: 20px;
}

.activity-card-body {
    padding: 0 20px;
    min-height: 150px;
    max-height: 370px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}
.activity-card-body .activity {
    width: 100%;
}

.activity > div:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
}

.activity-card-body label {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.activity-card-body .employee-details {
    font-size: 14px;
}

.activity-card-body .employee-details a {
    font-weight: normal;
}

.activity-card-body .avatar h1 {
    font-size: 16px;
}

.admin-personal h5,
.admin-analytics h3 {
    color: var(--dark-blue);
    font-weight: 700;
}

.admin-personal p {
    color: var(--dark-blue);
    font-size: 14px;
}

.admin-analytics .chart-container {
    width: 100%;
    height: 230px;
}

/* Analytics Page */
#analyticsCanvas,
#analyticsTable {
    box-shadow: 0 1px 2px #00000029;
}
.analytics-filter .btn-primary {
    background-color: #0088ff22 !important;
    color: var(--dark-blue);
    border: 1px solid var(--primary-color);
    box-shadow: none;
}

.analytics-filter .btn {
    box-shadow: 0px 2px 4px #55555552;
}

/* Employees Table */
.profile-pct {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
}

.profile-pct.profile-high {
    background-color: #6dd390;
}

.profile-pct.profile-mid {
    background-color: #ffa852;
}

.profile-pct.profile-low {
    background-color: #ff6074fc;
}

/* User Profile Pages */
#profile-header {
    width: 100%;
    max-height: 250px;
    height: 33vh;
    display: flex;
    background: url("../assets/img/profile-bg.png") no-repeat center
        center/cover;
}

#profile-header .profile-info {
    flex: 1;
    align-self: center;
}

#profile-header .avatar {
    width: 110px;
    height: 110px;
}

#profile-header .info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

#profile-header .info-content p#user_title {
    color: #b1bcc7;
    font-size: 14px;
}

#profile-body {
    background-color: #f7fbff;
    height: 80vh;
}

#profile-nav {
    background-color: #fff;
    box-shadow: 0 1px 2px #65656560;
    display: none;
}

#profile-nav li {
    width: 100%;
    border-bottom: 0.2px solid #00000029;
    border-right: 0.2px solid #00000029;
    padding: 0;
}

#profile-nav li:hover {
    background-color: #ddefff;
}

#profile-nav li a {
    color: var(--darker-blue);
    font-weight: 400;
    display: block;
    padding: 1.1rem 1.4rem;
    width: 100%;
    height: 100%;
}

#profile-nav li a.active {
    background-color: #ddefff;
    border-right: 5px solid var(--primary-color);
}

.profile-content {
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 1px 2px #48484829;
}

.profile-content #refereesTable td {
    font-size: 13px !important;
}

.profile-content-item {
    margin-right: 5rem;
    margin-bottom: 1.3rem;
    position: relative;
}

.profile-content-item label {
    font-size: 13px;
    margin-left: 5px;
    margin-bottom: 0.2rem;
    color: #3d5974;
}

.profile-content-item .form-control {
    padding-left: 9px !important;
    min-width: 219px;
    color: #3d5974;
    border: 1px solid var(--input-bg);
}

.profile-content-item .form-control:hover {
    background-color: #f0f5fa;
}

.profile-content-item .form-control:focus {
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}

.profile-content-item .btn {
    box-shadow: none;
    border: 0.2px solid #3d5974;
    border-radius: 4px;
    color: #1c1d1d;
    padding: 2px;
    font-size: 14px;
    line-height: 0;
    margin: 0 3px 0 0;
}

.profile-content-item .material-icons {
    font-size: 20px;
}

.profile-content-item .select-wrapper {
    background-color: #fff;
    min-width: 219px;
    border: 1px solid var(--input-bg);
}

.profile-content-item .select-wrapper > span.caret {
    display: none;
}

.profile-content-item .select-wrapper:hover {
    background-color: #f0f5fa;
}

.profile-content-item .select-wrapper:hover span.caret {
    display: inline;
}

/* TimeOff */
.tab-caption {
    color: #364962;
    font-weight: 500;
}

#timeoffTypesTable th,
#timeoffAppsTable th {
    padding: 0.75rem;
}

#timeoffApplications .filter-controls,
#timeoffHistory .filter-controls {
    width: auto;
}

.used {
    color: #d0021b !important;
}

.available {
    color: #1bb715 !important;
}

#timeoffDetailsModal .modal-body .title {
    font-size: 0.9rem;
    color: #6c8095;
    margin-bottom: 0.5rem;
}

#timeoffDetailsModal .modal-body .value {
    color: var(--darker-blue);
    font-weight: 300;
}

/* Create Leave Type */
#newLeaveTypeForm .mdb-select {
    background-color: #fff;
    width: 97%;
}

.modal .select-wrapper {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding-left: 0.75rem;
}

.modal .select-wrapper input {
    margin-bottom: 0;
}

#newLeaveTypeForm .mdb-select input {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding-left: 0.75rem;
}

#newLeaveTypeForm label {
    font-size: 0.9rem;
    color: var(--dark-grey);
    font-weight: 500;
}

#newLeaveTypeForm .select-wrapper .form-control {
    color: var(--dark-grey);
}

#timeDayConfigModal .modal-body h6,
#timeDayConfigModal .modal-body .setup p #timeDayConfigModal .modal-body label {
    color: var(--dark-grey);
    font-size: 14px;
}

#timeDayConfigModal .modal-body h6 {
    font-weight: 600;
}

#timeDayConfigModal .modal-body .footer p {
    font-size: 13px;
    color: var(--dark-grey);
}

#timeDayConfigModal .form-check-input[type="checkbox"] + label:before,
#generalSettings .form-check-input[type="checkbox"] + label:before {
    width: 25px;
    height: 25px;
    background: #dfe2e3;
    border-color: transparent;
}

#timeDayConfigModal .form-check-input[type="checkbox"]:checked + label:before,
#generalSettings .form-check-input[type="checkbox"]:checked + label:before {
    width: 10px;
    height: 1.37rem;
    background-color: #fff;
    border-bottom-color: var(--primary-color);
    border-right-color: var(--primary-color);
}

#timeDayConfigModal .form-check-input[type="checkbox"] + label,
#generalSettings .form-check-input[type="checkbox"] + label {
    padding-left: 0px;
    padding-top: 35px;
    font-size: 15px;
}

/* View Leave Info Page */
.info-content {
    border: 1px solid #76757529;
    border-radius: 4px;
    /* width: 75%; */
}

.info-content .info-item span {
    color: #6c8095;
    font-size: 0.9rem;
    font-weight: 400;
}

.info-content .info-item .item-details p {
    color: var(--dark-grey);
    font-weight: lighter;
}

.info-content .info-item .item-details p.title {
    color: var(--darker-blue);
    font-weight: 500;
}

.fakerDropdownInput {
    position: relative;
    width: 100%;
}
.fakerDropdownInput > [class*="fa-"] {
    position: absolute;
    right: 15px;
    top: calc(50% - 16px / 2);
}
.fakerDropdownInput #whoIsEntitledID {
    cursor: pointer;
    padding-right: 30px;
}
.fakerDropdownInput #whoIsEntitledID::placeholder {
    color: #333333;
}
.fakerdropdown--item .menu > .item.active.selected {
    display: none;
}
.fakerdropdown--item .menu {
    height: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
}
.fakerdropdown--item .menu {
    font-size: 14px;
    height: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    position: relative;
}
.fakerdropdown--item .menu > .item:not(.disabled) {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}
.fakerdropdown--item .menu > .item:not(.disabled):before {
    content: "";
    background: #e2e8ed;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: calc(50% - 15px / 2);
}
.fakerdropdown--item .menu > .item:not(:last-child) {
    margin-bottom: 6px;
}
.fakerdropdown--item .menu .menu-search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}
.fakerdropdown--item .menu .menu-search [class*="fa-search"] {
    position: absolute;
    top: calc(50% - 14px / 2);
    right: 10px;
    color: #424242;
}
.fakerDropdownInput.active #whoIsEntitledID {
    border-radius: 4px 4px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.fakerDropdownInput #whoIsEntitledID {
    min-height: calc(1.5em + 0.75rem + 2px);
    height: 100%;
}

.fakerdropdown--item .d-flex-col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.fakerdropdown--item .d-flex-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    height: 100%;
    min-height: 145px;
    max-height: 145px;
}
.fakerdropdown--item.active .menu {
    border-top: 0;
}
a.fakerDropdownMulti-label {
    font-size: 13px;
    background: #e2e2e2;
    padding: 5px 10px;
    line-height: 1;
    border-radius: 3px;
    cursor: default;
}
a.fakerDropdownMulti-label > .fas.fa-times {
    color: #2a2a2a;
    font-size: 14px;
    margin-left: 5px;
    cursor: pointer;
    width: 15px;
    height: 15px;
    text-align: center;
}
#whoIsEntitledID .fakerDropdownMulti-label:not(:last-child) {
    margin-right: 5px;
}
#whoIsEntitledID .fakerDropdownMulti-label {
    margin-bottom: 5px;
}

/* Organization Policy Styles */
.docDropzone {
    height: 150px;
    border-width: 1px;
    font-size: 12px;
}

.docDropzone:hover {
    cursor: pointer;
}

/* Announcements Styles */
.note-toolbar {
    background: #fff !important;
}

.note-editor.note-frame {
    border: 1px solid #ced4da !important;
}

.note-btn-group {
    box-shadow: none !important;
}

.note-btn-group .note-btn {
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.note-btn-group .note-btn i {
    color: #333;
}

#no-announcements {
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#publish_button {
    position: sticky;
}

#newAnnouncementForm .card {
    box-shadow: none;
    border-radius: 0.25rem;
}

#newAnnouncementForm label {
    font-weight: 500;
    color: var(--dark-grey);
}

#newAnnouncementForm label span {
    font-weight: normal;
}

#announcement-dropzone {
    height: 300px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#announcement-dropzone.populated:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    opacity: 0.3;
    border-radius: inherit;
}

#announcement-dropzone p {
    color: var(--placeholder-grey);
    font-weight: normal;
}

.announcement-title {
    color: var(--darker-blue);
}

#announcementsComments > p {
    color: var(--darker-blue);
    font-weight: 500;
}

.cmt-links .cmt-cancel {
    color: var(--dark-grey);
    opacity: 0.52;
}

.like-icon {
    background-color: #f6f6f6;
    padding: 5px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    color: #002648;
    transition: transform 0.05s ease;
}

.like-icon:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.announcementComment {
    font-size: 12px;
}

.announcementComment .commenter {
    display: flex;
    align-items: center;
    color: var(--dark-grey);
}

.announcementComment .avatar {
    width: 28px;
    height: 28px;
}

.announcementComment .avatar h1 {
    font-size: 14px;
}

.announcementComment .comment-body p {
    color: var(--dark-grey);
}

.announcementComment .comment-body .comment-date {
    color: var(--placeholder-grey);
    font-size: 10px;
    font-weight: normal;
}

/* Timesheet Styles */
.timesheet-filters .btn-outline-light {
    height: 100%;
    padding: 0.9rem 20px;
    margin: 0;
    color: #06232c !important;
    border: 1px solid var(--input-bg) !important;
    font-size: 16px !important;
}

.task-input {
    background: #f6f6f6;
    border-radius: 4px;
    width: 80px;
    height: 35px;
    border: none;
    outline: none;
    padding: 7px 20px;
    font-size: 13px;
}

#timesheetTable .add-task {
    width: 600px;
    position: relative;
}

#timesheetTable button {
    background-color: transparent;
    color: #c4c4c4;
    border: none;
    outline: none;
}

#timesheetTable a {
    color: #c4c4c4;
}

#timesheetTable .add-task .new-task {
    position: absolute;
    top: 95%;
    left: 20%;
    z-index: 5;
    background-color: #fff;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 1px 2px 4px var(--placeholder-grey);
    display: none;
}

#timesheetTable .add-task .new-task .form-control {
    background-color: #f6f6f6;
    height: auto;
    width: 300px;
    border: none;
}

#timesheetTable .add-task .new-task .new-task-search {
    border-bottom: 1px solid #c4c4c4;
}

#timesheetTable .add-task i {
    color: #6c8095;
}
#timesheetTable .add-task .client p,
#timesheetTable .add-task .client button {
    color: #707070;
    font-weight: 500;
}

#timesheetTable .add-task p {
    margin-bottom: 0;
}

#timesheetTable .add-task .projects,
#timesheetTable .add-task .task {
    display: none;
}

#timesheetTable .add-task .project p,
#timesheetTable .add-task .project button {
    color: var(--primary-color);
}

#timesheetTable .add-task .task button {
    color: #424242;
    font-weight: 300;
}

#projectsTable button:not(.btn) {
    color: #596b71;
    border: none;
    background: transparent;
    outline: none;
}

#projectsTable i {
    color: #596b71;
}

#projectsTable .tasks-sec {
    position: relative;
}

#projectsTable .tasks-sec .show-tasks {
    position: absolute;
    top: 100%;
    left: 20%;
    z-index: 5;
    width: 300px;
    background-color: #fff;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 1px 2px 4px var(--placeholder-grey);
    display: none;
}

#projectsTable .tasks-sec .show-tasks .task-row {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#projectsTable .tasks-sec .show-tasks .task-row:hover {
    background: rgba(196, 196, 196, 0.24);
    cursor: pointer;
}

/* #timesheetTable .add-task .new-task */

/* Website Header */

#showcase {
    background: #0e2654;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}
#showcase .navbar {
    background: transparent;
    box-shadow: none;
}

#showcase .top-nav-collapse {
    background-color: #4285f4;
}

#showcase .navbar a {
    color: white;
    font-weight: 300;
    font-size: 15px;
}
#showcase .navbar a.btn {
    color: #fff;
}

#report-container {
    padding-bottom: 67px;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 1;
    flex: 1;
}

.showcase-content h1 {
    font-weight: 700;
    font-size: 2rem;
}
#showcase-img img {
    max-width: 100%;
}

.showcase-content h1 span.anytime {
    display: inline-block;
    position: relative;
}
.showcase-content h1 span.anytime::before {
    content: "";
    display: block;
    position: absolute;
    height: 15px;
    bottom: 5px;
    width: 100%;
    background-color: var(--primary-color);
    z-index: -1;
}

.showcase-content h1 span.anywhere {
    display: inline-block;
    position: relative;
}
.showcase-content h1 span.anywhere::before {
    content: "";
    display: block;
    position: absolute;
    height: 15px;
    bottom: 5px;
    width: 100%;
    background: rgb(224, 112, 0);
    z-index: -1;
}

.showcase-content .btn-primary {
    font-size: 1rem;
}

.showcase-content h1 span.cursor {
    display: inline-block;
    background-color: white;
    margin-left: 0.1rem;
    width: 2.5px;
    height: 50px;
    animation: blink 1s infinite;
}
.container p span.cursor.typing {
    animation: none;
}

.showcase-content p {
    font-weight: 300;
    line-height: 30px;
    color: white;
    font-size: 16px;
}

.showcase-content img {
    max-width: 100%;
    display: block;
    margin: auto;
}

/* Website Create Report Section */
#create-reports {
    position: relative;
}

.orange-underline {
    border-bottom: 3px solid #e6903a;
}

#features h4 {
    font-weight: 700;
    color: var(--darker-blue);
    line-height: 1.5;
}

#create-reports h5 {
    font-weight: 600;
    color: var(--text-color);
    font-size: 23px;
}

#create-reports p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
}

#create-reports p.bold {
    color: var(--darker-blue);
    font-weight: 600;
}

#create-reports .categories-list li {
    font-size: 15px;
}

span.bold {
    color: var(--darker-blue);
    font-weight: 700;
}

#features {
    position: relative;
    background-color: #e2f1ff;
    padding: 80px 20px;
}

#features #features-title p {
    color: var(--dark-grey);
    font-size: 15px;
    line-height: 2;
}

#create-reports h6,
#features h5 {
    font-weight: 700;
}

#features h5 {
    color: var(--darker-blue);
}

#features .feature {
    background-color: #fff;
    box-shadow: 0 3px 6px #00000014;
    border-radius: 4px;
    padding: 30px;
}

#features .feature img {
    width: 50px;
    margin-bottom: 15px;
}

#features .feature p {
    color: var(--dark-grey);
    line-height: 2;
    font-size: 14px;
}

#features .feature h5 {
    font-size: 1.15rem;
}

#create-reports .text-center h3 {
    font-weight: 600;
}
#create-reports .text-center p {
    color: var(--text-color);
    font-size: 15px;
}

#create-reports ul li {
    display: flex;
}

#create-reports #products {
    max-width: 800px;
    margin: auto;
}

#create-reports #product-tabs ul {
    border: 0.5px solid #c4c4c4;
    background-color: #fcfcfc;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 2px 4px 0px #a7a7a740;
}

#create-reports #product-tabs ul li {
    text-align: center;
}

#create-reports #product-tabs ul li a {
    display: inline-block;
    padding: 20px 40px;
    color: var(--text-color);
    font-size: 15px;
}

#create-reports #product-tabs ul li a.active {
    border-bottom: 4px solid #ed655a;
}

#create-reports #products .tabs-content .productTab.show {
    display: flex;
    flex-direction: column;
}

#create-reports #products .tabs-content .productTab .img {
    margin-bottom: 50px;
    text-align: center;
}

#create-reports #products .tabs-content .productTab img {
    max-width: 80%;
}

/* Call to action */
#call-to-action {
    height: 250px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin: auto;
    background-color: #071f44;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#call-to-action > div {
    color: #fff;
    text-align: center;
}

#call-to-action h2 {
    font-weight: 600;
}

#call-to-action p {
    font-weight: lighter;
    font-size: 14px;
}

#call-to-action img {
    display: none;
}

/* Pricing Page */
#pricing-sec h2 {
    color: var(--darker-blue);
}

#pricing-sec .switches-container {
    margin-left: auto;
}

/* Cookie Consent Popup */
#consent-popup {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: 20px;
    margin: auto;
    background: var(--light-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    transform: translate3d(0, 150%, 0);
    transition: transform 0.3s cubic-bezier(0.6, 0.4, 0, 1);
}

#consent-popup.is-visible {
    transform: translate3d(0, 0, 0);
}

#consent-popup div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

#consent-popup div span {
    color: rgba(0, 0, 0, 0.8);
    flex-grow: 1;
    line-height: 1.4em;
}

#consent-popup .btn {
    display: block;
    width: 100%;
}

/* Onboarding Popover */
.tour-backdrop {
    background-color: #27272795 !important;
}

.popover {
    position: relative;
}

#endTour {
    position: absolute;
    top: 20px;
    right: 25px;
}

#endTour i {
    color: #a2a2a2;
}

.popover-title {
    background-color: transparent !important;
    color: #06232c;
    padding: 8px !important;
    border-bottom: none !important;
}

.popover-content {
    color: #596b71;
    opacity: 90%;
    font-weight: normal !important;
    padding: 5px 9px 20px 9px !important;
}

.popover-footer {
    padding: 5px;
    border-top: 1px solid #7070704e;
}

.popover-footer .pop-count {
    flex: 1;
    color: #596b71;
    opacity: 60%;
}

.popover-footer a {
    color: #6c8095;
}

.popover.right > .arrow {
    border-right-color: transparent !important;
}

/* footer */

#footer {
    background: var(--darker-blue);
    color: #fff;
}

#footer a {
    color: #fff;
    font-size: 13px;
    font-weight: lighter;
}

.ctact a:hover {
    color: #fff !important;
}

#footer a:hover {
    color: var(--primary-color);
}

#footer hr {
    background: #0360b2;
}

#footer p {
    font-size: 13px;
    font-weight: lighter;
    line-height: 1.7;
}

#footer-content {
    border-bottom: 1px solid var(--dark-blue);
}

#footer #footer-about a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: lighter;
}

#footer #footer-follow a,
#footer #footer-follow a i {
    color: #fff;
}

#footer #footer-follow a:hover,
#footer #footer-follow a:hover i {
    color: var(--primary-color);
}

#footer .footer-sec p.footer-sec-title {
    font-weight: 400;
}

#footer .footer-sec a {
    display: block;
}

/* FAQs */
.website-header,
.website-footer {
    background-color: var(--darker-blue);
    color: white;
}

.faq-accordion {
    color: var(--darker-blue);
    padding-top: 1rem;
    padding-bottom: 2rem;
}
.accordion-header button {
    color: var(--primary-color);
}
.accordion-body {
    font-size: 15px;
    background-color: #e2f1ff;
}
.website-footer .row {
    border-bottom: 1px solid var(--dark-blue);
}
.footer-nav {
    font-size: 15px;
}
.website-footer ul {
    padding-left: 0;
}
.sm-logo img {
    width: 60%;
}
.faq-accordion .accordion-body,
.faq-accordion .accordion-button {
    padding: 1rem 4rem;
}

/* website-contact-us page */
.a-nav,
.a-nav .navbar {
    background-color: var(--darker-blue);
}
.a-nav .navbar {
    box-shadow: none;
}
.a-nav h2 {
    font-weight: 600;
}
.a-nav p {
    font-weight: 100 !important;
}
.a-nav p.light {
    color: #9c9c9d;
    font-size: 13px;
}
.message h4 {
    color: var(--darker-blue);
    font-weight: 600;
}
.message label {
    font-weight: 300;
}
.list-inline-item a {
    color: #ffffff;
}
.grey-1 {
    color: var(--dark-grey);
    font-weight: 200;
}

/* website success modal */
.success {
    color: #06232c;
}

.success-text {
    color: #605d71;
}

/* About us page */
.dark-text {
    margin-top: 60px;
    margin-bottom: 80px;
}

.dark-text h3 {
    color: var(--darker-blue);
    font-weight: 600;
}

.dark-text p {
    color: #424242;
    font-size: 16px;
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-word;
}

/* Privacy Policy */
.privacy-policy {
    position: relative;
    /* margin-top: 15rem; */
}

.privacy-policy h4 {
    color: var(--darker-blue);
    font-weight: 600;
}

.privacy-policy p {
    font-size: 15px;
    color: var(--darker-blue);
    line-height: 1.7;
}

.privacy-policy #pp-nav {
    position: sticky;
    top: 50px;
}

.privacy-policy #pp-nav li a {
    color: var(--darker-blue);
}

.privacy-policy #pp-nav li a.active {
    color: var(--primary-color);
    font-weight: 500;
}

#pp-callToAct {
    position: relative;
    z-index: 2;
}

#pp-callToAct h2 {
    color: var(--darker-blue);
    font-weight: 700;
}
#pp-callToAct p {
    color: var(--dark-grey);
}
.notification-symbol {
    padding: 4px;
    background-color: red;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 2px;
}
.reply_wrapper {
    border-radius: 5px;
    background-color: #e8e8e8;
    padding: 5px;
    margin-bottom: 5px;
}

.report-content-field .edit-previewed-content {
    display: none;
}

.report-content-field:hover .edit-previewed-content {
    display: block;
}

/* Term of Service */
.tos-date {
    font-size: 12px;
    color: #9c9c9d;
}
.tos {
    color: var(--darker-blue);
}
.tos h4 {
    font-weight: 500;
}
.tos p {
    font-size: 14px;
    padding-bottom: 0.5rem;
    text-align: justify;
    text-justify: inter-word;
}

#verification-send {
    color: #00afff;
    text-decoration: underline;
    border: none;
    background: transparent;
}
.w15 {
    width: 15% !important;
}
.w70 {
    width: 70% !important;
}
.qc-display-flex {
    display: flex !important;
}
.qc-justiy-content-between {
    justify-content: space-between !important;
}
.qc-padding-35 {
    padding: 35px !important;
}
.qc-announcement-new-notification {
    margin-left: 5px;
    font-size: 13px;
    padding: 2px 4px;
    background: #2d9d12;
    color: #ffffff;
    border-radius: 2px;
}
.col-5.qc-col--2 {
    flex: 0 0 50%;
    max-width: 50%;
}
@media only screen and (min-width: 576px) {
    .modal .qc-modal--default {
        max-width: 650px !important;
    }
    
}

@media (min-width: 992px) {
    .login-btn {
        display: none !important;
    }
    .wmd-7 {
        width: 7% !important;
    }
    .wmd-85 {
        width: 85% !important;
    }
}

/* 404 page */
.error-page {
    color: var(--darker-blue);
    padding: 1rem 34%;
}
.error-page h5 {
    font-weight: 600;
}
.qclose-margin-bottom-30 {
    margin-bottom: 30px !important;
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.placeholder {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 104px;
    height: 10px;
    position: relative;
}

/* User Guide Styles */
.guide h3 {
    font-weight: 600;
}

.guide p {
    font-weight: 300;
    font-size: 16px;
}

.guide li {
    list-style: auto;
    font-size: 15px;
    margin-bottom: 20px;
}

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

@keyframes blink {
    0% {
        background-color: var(--text-color);
    }
    49% {
        background-color: var(--text-color);
    }
    50% {
        background-color: transparent;
    }
    99% {
        background-color: transparent;
    }
    100% {
        background-color: var(--text-color);
    }
}

.calendar-icon-rtl {
    padding-right: 25px;
    background: url("/assets/img/calendar.svg") no-repeat right;
    background-size: 25px;
}

/* For datatable */
.qc.table {
    position: relative;
}
.qc-table {
    position: relative;
}
.qc-table--loader {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.qc-table--dttables-wrapper {
    position: relative;
}
.qc-table--dttables-wrapper .paginate_button {
    transition: 200ms ease-in-out;
}
.qc-table--dttables-wrapper.qc-table--dttables-gridtable {
    display: flex;
    flex-direction: column;
}
.qc-table--dttables-wrapper.qc-table--dttables-gridtable
    .qc-table--dttables--table-header-top {
    margin-bottom: 31px;
}
.qc-table--dttables-wrapper.qc-table--dttables-gridtable
    .qc-table--dttables--table-content
    .qc-table.qc-index-list-table
    > thead {
    display: none !important;
}
.qc-table--dttables-wrapper.qc-table--dttables-gridtable
    .qc-table--dttables--table-content
    .qc-table.qc-index-list-table
    > tbody
    tr {
    background: none;
}
.qc-table--dttables-wrapper.qc-table--dttables-gridtable
    .qc-table--dttables--table-content
    .qc-table.qc-index-list-table
    > tbody
    tr:not(:last-child) {
    margin-bottom: 1.5rem;
    display: table;
    width: 100%;
}
.qc.qc-table--dttables-wrapper.qc-table--dttables-gridtable
    .qc-table--dttables--table-content
    .qc-table.qc-index-list-table
    > tbody
    tr:not(:last-child) {
    position: relative;
}
.qc-table--dttables-wrapper.qc-table--dttables-gridtable
    .qc-table--dttables--table-content
    .qc-table.qc-index-list-table
    > tbody
    tr
    > td {
    border: 0 !important;
    padding: 0 !important;
}
.qc-table--dttables--table-header,
.qc-table--dttables--table-content {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
}
.qc-table--dttables--table-header-top {
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.qc-table--dttables--table-header-top--left,
.qc-table--dttables--table-header-top--right {
    display: flex;
    align-items: center;
}
.qc-table--dttables--table-header-top--filter
    .dataTables_filter.dataTables_filter.dataTables_filter
    label {
    margin: 0px;
}
.qc-table--dttables--table-header-top--filter
    .dataTables_filter.dataTables_filter.dataTables_filter
    input {
    margin: 0px;
    width: 271px;
    height: 48px;
    outline: none;
    border: 1px solid #707070;
    border-radius: 4px;
    padding: 12px 40px 12px 12px;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #333333;
}
.qc-table--dttables--table-header-top--filter
    .dataTables_filter.dataTables_filter.dataTables_filter
    input::-moz-placeholder {
    color: #757575;
}
.qc-table--dttables--table-header-top--filter
    .dataTables_filter.dataTables_filter.dataTables_filter
    input:-ms-input-placeholder {
    color: #757575;
}
.qc-table--dttables--table-header-top--filter
    .dataTables_filter.dataTables_filter.dataTables_filter
    input::placeholder {
    color: #757575;
}
.qc-table--dttables--table-header-bottom {
    margin-bottom: 21px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.qc-table--dttables--table-header-bottom--tableInfo {
    margin-right: 0.25rem;
}
.qc-table--dttables--table-header-bottom--tableInfo
    .dataTables_info.dataTables_info.dataTables_info {
    padding: 0px;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #212121;
}
.qc-table--dttables--table-header-bottom--pagination
    .dataTables_paginate.dataTables_paginate.dataTables_paginate {
    float: none;
    display: flex;
    align-items: center;
    padding: 0px;
}
.qc-table--dttables--table-header-bottom--pagination
    .dataTables_paginate.dataTables_paginate.dataTables_paginate
    .paginate_button {
    margin: 0px;
    display: flex;
    height: 25px;
    width: 25px;
    align-items: center;
    justify-content: center;
    padding: 0px;
}
.qc-table--dttables--table-header-bottom--pagination
    .dataTables_paginate.dataTables_paginate.dataTables_paginate
    .paginate_button:not(:last-child) {
    margin-right: 5px;
}
.qc-table--dttables--table-header-bottom--pagination
    .dataTables_paginate.dataTables_paginate.dataTables_paginate
    .paginate_button.next.disabled,
.qc-table--dttables--table-header-bottom--pagination
    .dataTables_paginate.dataTables_paginate.dataTables_paginate
    .paginate_button.previous.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.qc-table--dttables--table-content .qc-table.dataTable.no-footer {
    border-bottom: 0;
}
.qc-table--dttables--table-content
    .dataTables_processing.dataTables_processing.dataTables_processing {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.53);
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    height: 100%;
}
.qc-table--dttables.qc-table.qc-table thead {
    background: #f6f6f6;
}
.qc-table--dttables.qc-table.qc-table thead > tr > th {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    color: #424242;
    border-bottom: 0;
    padding: 16px 15px;
}
.qc-table--dttables.qc-table.qc-table tbody > tr td {
    border: 1px solid rgba(112, 112, 112, 0.2);
    border-right: 0;
    border-left: 0;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: #424242;
    padding: 16px 15px;
}
.qc-table--dttables.qc-table.qc-table tbody > tr td:first-child {
    border-left: 1px solid rgba(112, 112, 112, 0.2);
}
.qc-table--dttables.qc-table.qc-table tbody > tr td:last-child {
    border-right: 1px solid rgba(112, 112, 112, 0.2);
}
.qc-table--dttables.qc-table.qc-table tbody > tr td.dataTables_empty {
    padding: 0;
}
.qc-table--dttables.qc-table.qc-table tbody > tr:not(:first-child) td {
    border-top: 0;
}
.qc-table--dttables--table-footer {
    position: relative;
    margin-top: 59px;
}
@media (max-width: 599px) {
    
    .qc-table--dttables--table-footer {
        margin-top: 29px;
    }
    .container-scroll , .scroll-dot {
        width: 300px;
    }
    .container-scroll--box {
        gap: 0px;
    }
    .container-scroll--box img {
        width: 300px;
    }
}
.qc-table--dttables--table-footer--pagination
    .dataTables_paginate
    > *:not(:last-child) {
    margin-right: 6px !important;
}
.qc-table--dttables--table-footer--pagination
    .dataTables_paginate.paging_simple_numbers {
    float: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0px;
    text-align: right;
}
.qc-table--dttables--table-footer--pagination
    .dataTables_paginate.paging_simple_numbers
    > span {
    display: flex;
    align-items: center;
}
.qc-table--dttables--table-footer--pagination
    .dataTables_paginate.paging_simple_numbers
    > span
    > .paginate_button:not(:last-child) {
    margin-right: 6px !important;
}
.qc-table--dttables--table-footer--pagination
    .dataTables_paginate.paging_simple_numbers
    .paginate_button.paginate_button {
    margin: 0px;
    display: flex;
    height: 33px;
    width: 33px;
    align-items: center;
    justify-content: center;
    border-radius: 33px;
    padding: 0px;
    background: transparent;
    border: 0 !important;
    font-family: "Mulish", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    color: #424242;
}
.qc-table--dttables--table-footer--pagination
    .dataTables_paginate.paging_simple_numbers
    .paginate_button.paginate_button.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.qc-table--dttables--table-footer--pagination
    .dataTables_paginate.paging_simple_numbers
    .paginate_button.paginate_button:not(.previous):not(.next) {
    --tw-bg-opacity: 1;
    background-color: rgb(246 246 246 / var(--tw-bg-opacity));
}
.qc-table--dttables--table-footer--pagination
    .dataTables_paginate.paging_simple_numbers
    .paginate_button.paginate_button:not(.previous):not(.next).current,
.qc-table--dttables--table-footer--pagination
    .dataTables_paginate.paging_simple_numbers
    .paginate_button.paginate_button:not(.previous):not(.next):not([disabled]):not(.disabled):hover {
    background: var(--qclose-primary-color);
    border-color: var(--qclose-primary-color);
    color: #ffffff !important;
}
.qc-table--dttables--table-footer--pagination
    .dataTables_paginate.paging_simple_numbers
    .paginate_button.paginate_button.current,
.qc-table--dttables--table-footer--pagination
    .dataTables_paginate.paging_simple_numbers
    .paginate_button.paginate_button:not([disabled]):not(.disabled):hover {
    background: var(--qclose-primary-color);
    border-color: var(--qclose-primary-color);
    color: #ffffff !important;
}
.qc-table .qc-table-action-dropdownmenu.qc.dropdown .menu {
    filter: drop-shadow(0px 10px 63px rgba(0, 0, 0, 0.05))
        drop-shadow(0px 5.888px 32.8608px rgba(0, 0, 0, 0.03616))
        drop-shadow(0px 3.024px 15.4224px rgba(0, 0, 0, 0.02808))
        drop-shadow(0px 1.216px 6.7536px rgba(0, 0, 0, 0.02192))
        drop-shadow(0px 0.272px 2.9232px rgba(0, 0, 0, 0.01384));
    border-radius: 8px !important;
    border: 0 !important;
    box-shadow: none !important;
}
.qc-table .qc-table-action-dropdownmenu.qc.dropdown .menu:after {
    box-shadow: none !important;
    z-index: -1 !important;
}
.qc-table .qc-table-action-dropdownmenu.qc.dropdown .menu .item {
    padding: 10px 15px !important;
}
.qc-table .qc-table-action-dropdownmenu.qc.dropdown .menu .item:first-child {
    border-radius: 8px 8px 0 0 !important;
}
.qc-table
    .qc-table-action-dropdownmenu.qc.dropdown.upward
    .menu
    .item:last-child {
    border-radius: 0 0 8px 8px !important;
}

/* ---------------- MY STYLES ------------------ */
table th.so_sortable {
    background-image: url("https://cdn.datatables.net/1.10.25/images/sort_both.png");
    background-repeat: no-repeat;
    background-position: center right;
    cursor: pointer;
}
@media (min-width: 800px) {
    .so-modal .modal-dialog {
        max-width: 80% !important;
    }
}
.so-modal .modal-header {
    background-color: #fff;
    border: none !important;
}
@keyframes loader {
    0%,
    10%,
    100% {
        width: 80px;
        height: 80px;
    }
    65% {
        width: 150px;
        height: 150px;
    }
}
@keyframes loaderBlock {
    0%,
    30% {
        transform: rotate(0);
    }
    55% {
        background-color: #e2f1ff;
    }
    100% {
        transform: rotate(90deg);
    }
}
@keyframes loaderBlockInverse {
    0%,
    20% {
        transform: rotate(0);
    }
    55% {
        background-color: #e2f1ff;
    }
    100% {
        transform: rotate(-90deg);
    }
}
.loader-wrapper {
    height: 100vh;
    width: 100vw;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.loader-wrapper .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    animation: loader 1.2s infinite ease-in-out;
}
.loader-wrapper .loader span {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #0088ff;
    animation: loaderBlock 1.2s infinite ease-in-out both;
}
.loader-wrapper .loader span:nth-child(1) {
    top: 0;
    left: 0;
}
.loader-wrapper .loader span:nth-child(2) {
    top: 0;
    right: 0;
    animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}
.loader-wrapper .loader span:nth-child(3) {
    bottom: 0;
    left: 0;
    animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}
.loader-wrapper .loader span:nth-child(4) {
    bottom: 0;
    right: 0;
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    cursor: pointer;
  }

  /* trainings */
  .training-main {
    height: 90vh;
    padding-top: 10px;
    gap: 10px;
  }

  .training-side {
    height: 100%;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 250px;
    overflow-y: auto;
  }

.training-side-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.training-side-head h5 {
    font-weight: 500;
}

.training-side hr {
    padding-bottom: 0;
}

#training-nav {
    background-color: #fff;
    position: relative;
    /* box-shadow: 0 1px 2px #65656560;
    display: none; */
}

#training-nav li {
    width: 100%;
    border-bottom: 0.2px solid #00000029;
    border-right: 0.2px solid #00000029;
    padding: 0;
}

#training-nav li:hover {
    background-color: #ddefff;
}

#training-nav li a {
    color: var(--darker-blue);
    font-weight: 400;
    display: block;
    padding: 1.1rem 1.4rem;
    width: 100%;
    height: 100%;
}

#performanceDashboard {
    height: 100%;
}

#training-nav li a.active {
    background-color: #ddefff;
    border-right: 5px solid var(--primary-color);
}

.training-clicker:hover {
    background-color: rgba(112, 112, 112, 0.2);
    cursor: pointer;
}

  .training-side .shadow {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.training-right {
    flex: 4;
    overflow-y: auto;
}

.training-right button {
    outline: none;
    border: none;
}

.training-right .browse-training-btn {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    /* padding: 4px 8px; */
    /* border-radius: 5px; */
}

.training-tr {
    display: flex;
    justify-content:  space-between;
    align-items: center;
    padding: 2rem;
}

.training-btns-container {
    display: flex;
    align-items: center;
    position: relative;
}

.training-inputs {
    display: flex;
    gap: 4px;
    align-items: center;
}

.training-search {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--placeholder-grey) ;
    border-radius: 5px;
    width: 342px;
}

.training-search input {
    border: none;
}

.performance-dashboard {
    height: 100%;
}

.training-libraries-container {
    height: 100%;
}

.training_library_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 16px 0;
}

.training-dropdown-toggle-relative {
    position: relative;
}

.training-dropdown-toggle {
    position: absolute;
    background-color: rgb(254, 254, 254);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap : 20px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0 1px 2px 0 rgb(0, 0, 0, 0.16);
    z-index: 50;
}
.training-item-container {
    position: relative;
    height: 300px;
    border : 1px solid #BDBDBD4D;
    border-radius: 16px;
}

.ellipsis-libraries {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 40;
    display: flex;
    color: #fff;
    justify-content: end;
    align-items: center;
    padding-top: 10px;
    padding-right: 10px;
    font-size: 20px;
}

.ellipsis-container {
    position: absolute;
    display: flex;
    top: 5px;
    right: 5px;
    justify-content: center;
    align-items: center;
    /* padding-right: 5px; */
    /* padding-top: 5px; */
    font-size: 18px;
    width: 22px;
    height: 22px;
    margin: 0 auto;
    background: rgb(255, 255, 255);
    color: black;
    border-radius: 100%;
    /* align-items: center; */
}

.training-item-img-container img {
    height: 141px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.training-item-text {
    background-color: white;
}

.training-item-text h5 {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 2px;
}

.training-item-desc {
    margin-bottom: 2px;
    font-size: 12px;
    opacity: 70%;
}

.training-item-from {
    font-size: 10px;
    font-weight: 500;
}

@media (max-width: 800px) {
    .training_library_list {
        grid-template-columns: 1fr;
    }

    .training-inputs {
        flex-direction: column;
        /* gap: 5px; */
    }

    .training-tr {
        flex-direction: column;
        justify-content: start;
        gap: 5px;
    }
}

/* Show Add Training Chapters */
.add-chapter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dddddd;
    height: 10vh;
    padding:0 10px;
    background-color: #ffffff;
}

.add-chapter-header > * {
    padding: 0;
    margin: 0;
}

.add-chapter-header-btns-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-chapter-header-btns-container button {
    padding: 4px 14px;
    border-radius: 7px;
    border: 1px;
    font-size: 15px;
}

.add-chapter-header-btns-container div {
    font-size: 16px;
}

.add-chapter-header-btns-container .assign-btn {
    color: #494949;
    /* cursor: not-allowed; */
}

.add-chapter-header-btns-container .assign-btn i {
    color: #494949;
}

.add-chapter-header-btns-container .share-btn {
    color: #0088ff;
    background: none;
    border: 1px solid #0088ff;
}

.add-chapter-header-btns-container .publish-btn {
    color: #fff;
    background: #0088ff;
    border: 1px solid #0088ff;
}

.add-chapter-header-btns-container .publish-btn i {
    color: #fff;
}

.chapter-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 18px;
}

.chapter-breadcrumbs a:hover {
    text-decoration: underline;
}

.chapter-breadcrumbs h5 {
    font-weight: 500;
}

.add-training-main {
    display: flex;
    align-items: start;
    gap: 40px;
    height: 85vh;
}

.chapter-section-container {
    flex: 1;
    padding: 10px 0;
    border-right: 1px solid #dddddd ;
    border-bottom: 1px solid #dddddd ;
    height: 100%;
}

.chapter-section-container .lessons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 5px;
} 

.lessons-text-side {
    font-size: 18px;
    color: #0088ff;
    font-weight: 500;
}

.add-training-cta {
    display: flex;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    background-color: #0088ff;
    cursor: pointer;
}

.add-training-cta i {
    color: #fff;
}

.training-slides-co-container {
    padding: 10px 7px;
}

.training-side-title {
    height: 45px ;
    margin-bottom: 10px;
    border-left: 3px solid #0088ff;
    padding: 10px 7px;
    background: rgba(0, 136, 255, .1);
}

.slides-hyper-container .slide-picker {
    background-color: rgba(221, 221, 221, .3);
    cursor: pointer;
    padding: 3px;
    display: flex;
    align-items: center;
    /* padding: 3px 0px; */
    /* border-radius: 3.5px; */
    margin-bottom: 10px;
    text-transform: capitalize;
}

.slides-hyper-container .slide-picker:hover {
    background-color: rgba(221, 221, 221, 1);
}
.slide-picker-current {
    background-color: rgba(221, 221, 221, 1);
}

.slides-hyper-container .slide-picker .title-slide-no {
    background-color: rgba(221, 221, 221, .7);
    height: 100%;
    /* width: 18px;
    text-align: right; */
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slides-hyper-container .slide-picker .title-slide {
    height: 100%;
    font-weight: 500;
    /* padding: 3px; */
}

.add-new-slide-cta {
    color: #0088ff;
    display: flex;
    align-items: end;
    gap: 5px;
    cursor: pointer;
}

.add-new-slide-cta:hover {
    color: #0360b2;
}

.add-new-slide-cta i {
    color: #0088ff;
    font-size: 10px;
    font-weight: 300;
}

.plus-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid #0088ff;
    border-radius: 100%;
}

.new-slide-text {
    font-size: 12px;
}

.slides-section-container {
    flex: 4;
    display: flex;
    height: 100%;
}

#multi-slide-form {
    flex: 4;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    height: 100%;
    overflow-y: auto;
}

.slide-inv {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.slides-main {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 12px;
    gap:10px;
}

.slides-templates {
    border-left: 1px solid #dddddd;
    padding: 4px 8px;
    display: none;
    flex: 1;
    background-color: white;
}

.slides-templates.show {
    display: block;
}

.slides-templates h5 {
    flex: 1;
    color: #0088ff;
    margin-bottom: 4px;
}

.checked-border {
    border: 2px dashed gray;
    outline: none;
    display: block;
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 40px;
    text-align: center;
}

.checked-border.heading {
    font-size: 30px;
}

.checked-border.subheading {
    font-size: 20px;
}

.checked-border.body-text {
    /* height: auto; */
    font-size: 16px;
    text-align: left;
}

.all-slides {
    flex: 3.4;
   
}

.templates-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.templates-list > button {
    margin: 5px 0;
    background-color: transparent;
    border: none;
}

.templates-list > button:hover {
    text-decoration: underline;
    cursor: pointer;
}

.slide-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.course-description {
    border: none;
    font-size: 20px;
    width: 100%;
    padding: 3px;
    outline: none;
}



.input-placeholder {
    border: none;
    /* font-size: 20px; */
    /* width: 100%; */
    /* padding: 3px; */
    outline: none;
}

.pad-training {
    padding: 200px;
}

.simple-input {
    outline: none;
    background: none;
    border: none;
}

.color-picker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: none;
    border: none; 
}

.tour1 {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tour1-imgContainer {
    display: flex;
    width : 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tour1-textContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap : 10px;

}

.tour1-textContent h5 {
    font-weight: 500;
    margin-bottom: 15px;
}

.tour1-textContent p {
    font-size: 14px;
    color: #707070;
    margin-bottom: 20px;
    text-align: center;
}

.tours2-container {
    left: 105%;
    top: 10%;
    position: absolute;
}
.tour-bubble {
    width: 220px;
    background-color: #0088ff;
    color: #fff;
    padding: 8px;
    border-radius: 10px;
    position: relative;
}
.tour-bubble-left , .tour-bubble-upper {
    position: relative;
    z-index: 100;
}
.tour-bubble-left::before {
    content: "";
    position: absolute;
    border: 8px solid #0088ff;
    width: 15px;
    height: 15px;
    top: 10%;
    left: -3%;
    transform: rotate(45deg);
}

.tour-bubble-upper::before {
    content: "";
    position: absolute;
    border: 6px solid #0088ff;
    width: 15px;
    height: 15px;
    top: -3%;
    left: 50%;
    transform: rotate(45deg);
}
.tour-bubble h6 {
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.tour-bubble p {
    font-size: 12px;
}

.tour-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-bottom span {
    font-size: 10px;
    opacity: 70%;
}

.tour-bottom button {
    border: none;
    outline: none;
    padding: 3px 10px;
}

.tour-skip-btn {
    background-color: transparent;
    color: #fff;
}

.tour-next-btn {
    background-color: #ffffff;
    color: #0088ff;
    border-radius: 7px;
}

.quiz-list-container.hidden {
    display: none;
}

.benchmark-container {
    display: flex;
    gap: 5px;
}

.benchmark-container input {
    width: 50px;
    border-radius: 5px;
    padding-left: 5px;
}

#quiz-section-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    /* height: 100%; */
    overflow-y: auto;
}

.option {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.radio {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
}

.radio.selected {
    background-color: #007bff;
}

.radio-value {
    display: none;
}


#quiz-section-container form{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 12px;
    gap:10px;
    background-color: white;
}



@media (max-width: 800px) {
    .add-chapter-header-btns-container i {
        display: none;
    }   

    .all-slides {
        /* min-width: 800px; */
        overflow-x: scroll;
    }
    .training-side {
        height: auto;
    }
}

