p {
    margin: 0;
}

.LoginFormContainer {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    padding-right: 120px;
    padding-top: 100px;
    padding-bottom: 35px;
}

.ResetFormContainer {
    width: 450px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
    margin-top: 180px;
    padding-top: 32px;
    padding-right: 50px;
    padding-left: 50px;
}

#id1 {
    cursor: pointer;
    font-size: 28px;
    margin-left: 85%;
    padding-top: 0.5%;
}

#emailicon {
    border: 0px white;
    height: 23px;
    margin-left: 0.5%;
}

#id2 {
    border: 0px white;
    height: 30px;
    margin-left: 300px;
    margin-top: 1.5px;
    color: #027581;
}

.LoginFormContainer * {
    display: table;
    margin: 0 auto;
}

#loginTitle,
#resetTitle {
    color: black;
    line-height: 1.2;
    text-align: center;
    display: block;
    padding-bottom: 37px;
    /* padding-top: 10%; */
    font-family: arial;
    font-weight: 600;
}

#exampleInputEmail1,
#exampleInputPassword1 {
    border-radius: 15px;
    outline: 0;
    border-width: 1px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
    border-style: solid;
    font-size: 16px;
    line-height: 1.2;
    display: block;
    width: 150%;
    height: 62px;
    background: transparent;
    padding: 0 20px 0 23px;
    border: none;
    font-family: sans-serif;
    box-shadow: 0px 0px 31px -9px rgba(204, 204, 204, 1);
}


/* #ResetEmail {
    border-radius: 15px;
    outline: 0;
    border-width: 1px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
    border-style: solid;
    font-size: 16px;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 62px;
    background: transparent;
    padding: 0 20px 0 23px;
    border: none;
    font-family: sans-serif;
    box-shadow: 0px 0px 31px -9px rgba(204, 204, 204, 1);
} */

.InputEmail,
.InputPassword,
#ResetEmail {
    margin-bottom: 20px;
    border-radius: 3px;
    outline: 0;
    border-width: 1px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
    border-style: solid;
    font-size: 13px;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 44px;
    background: transparent;
    padding: 0 20px 0 23px;
    border: 1px solid rgba(0, 0, 0, .125);
    ;
    font-family: sans-serif;
    /* box-shadow: 0px 0px 24px -9px rgb(204, 204, 204);
    box-shadow: 0px 0px 24px -9px rgb(150, 150, 150); */
    /* outline: none; */
}


/* .InputPassword {
    border-radius: 15px;
    outline: 0;
    border-width: 1px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
    border-style: solid;
    font-size: 16px;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 62px;
    background: transparent;
    padding: 0 20px 0 23px;
    border: none;
    font-family: sans-serif;
    box-shadow: 0px 0px 31px -9px rgba(204, 204, 204, 1);
    margin-bottom: 20px;
    box-shadow: 0px 0px 31px -9px rgba(150, 150, 150, 1);
    outline: none;
} */

.Signup,
.ResetButton {
    font-size: 13px;
    font-weight: 600;
    height: 40px;
    background-color: #bd1622 !important;
    width: 100%;
    transition: all 0.4s ease-in-out;
}


/*
Dashboard styles
*/

:root {
    --main-color: rgb(247, 247, 247);
    --color-dark: #1D2231;
    --text-grey: #8390A2;
}

.bg-grey {
    background: #f1f5f9;
}

.bg-main {
    background: var(--main-color);
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
}

#sidebar-toggle {
    display: none;
}

.sidebar {
    height: 100%;
    width: 240px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background: var(--main-color);
    color: #bd1622;
    padding: 1rem;
    overflow-y: auto;
    transition: width 500ms;
    border-right: 1px solid #e3ebf6;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0rem 1rem;
}

.sidebar-menu {
    padding: 1rem;
}


/* .sidebar li {
    margin-bottom: 1rem;
} */

.left-sidenav hr.hr-dashed.hr-menu {
    border-color: #8c8f93;
}

hr.hr-dashed {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px dashed #8c8f93;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

.btn-sm {
    padding: .1rem .3rem;
    font-size: .7rem;
}

.sidebar a {
    text-decoration: none;
    color: #000;
    font-size: .9rem;
    font-weight: 400;
    padding: 1px 0px;
    margin-left: 5px;
}

.sidebar a span:last-child {
    padding-left: .6rem;
}

#sidebar-toggle:checked~.sidebar {
    width: 60px;
}

#sidebar-toggle:checked~.sidebar .sidebar-header h3 span,
#sidebar-toggle:checked~.sidebar li span:last-child {
    display: none;
}

#sidebar-toggle:checked~.sidebar .sidebar-header,
#sidebar-toggle:checked~.sidebar li {
    display: flex;
    justify-content: center;
}

#sidebar-toggle:checked~.main-content {
    margin-left: 60px;
}

#sidebar-toggle:checked~.main-content header {
    left: 60px;
}

.main-content {
    position: relative;
    margin-left: 240px;
    transition: margin-left 500ms;
}

header {
    /* position: fixed; */
    left: 240px;
    top: 0;
    z-index: 100;
    width: calc(95%);
    background: #fff;
    height: 60px;
    padding: 0rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e3ebf6;
    transition: left 500ms;
    /* border-left: 1px solid #fff; */
}

.search-wrapper {
    display: flex;
    align-items: center;
}

.search-wrapper input {
    border: 0;
    outline: 0;
    padding: 1rem;
    height: 38px;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons span,
.social-icons div {
    margin-left: 1.2rem;
}

.social-icons div {
    height: 40px;
    width: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/avatar.jpeg);
    border-radius: 50%;
}

.sidebar-menu ul li a:hover {
    color: #bd1622;
    background: none;
}

.dropdown-menu.show a {
    margin: 0 !important;
    padding: 15px 15px;
}

main {
    background: #fff;
    min-height: 100vh;
    padding: 4rem 3rem;
}

.dash-title {
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.dash-cards {
    width: 100%;
    overflow-x: auto;
}

.card-single {
    background: #fff;
    border-radius: 7px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}

.dash-card-body {
    padding: 1.3rem 2rem;
    display: flex;
    align-items: center;
}

.dash-card-body span {
    font-size: 1.5rem;
    color: #777;
    padding-right: 1.4rem;
}

.dash-card-body h5 {
    color: var(--text-grey);
    font-size: 1rem;
}

.dash-card-footer {
    padding: .2rem 1rem;
    background: #f9fafc;
    position: relative;
    bottom: 0;
    left: 0;
}

.dash-card-footer a {
    color: var(--main-color);
}

.recent {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.activity-grid {
    /* display: ; */
    grid-template-columns: 75% 25%;
    grid-column-gap: 1.5rem;
}

.activity-card,
.summary-card,
.bday-card {
    /* background: #fff; */
    border-radius: 7px;
}

.activity-card h3 {
    color: var(--text-grey);
    margin: 1rem;
}

.activity-card table {
    width: 100%;
    border-collapse: collapse;
}

.activity-card thead {
    background: #007bff;
    text-align: left;
    color: #fff;
    font-size: 14px;
}

.activity-card thead tr th {
    font-weight: normal !important;
}

.table-bordered td,
.table-bordered th {
    border: none;
}

table {
    border: none;
}

table tbody tr.even {
    background: #f7fafe;
}

table tbody tr:hover {
    background: #dee2ee;
    color: #1c355d;
    cursor: pointer;
}

.badge.success {
    background: #BD1622;
    color: var(--main-color);
}

.badge.warning {
    background: #F0F6B2;
    color: orange;
}

.td-team {
    display: flex;
    align-items: center;
}

.img-1,
.img-2,
.img-3 {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    margin-left: -15px;
    border: 3px solid #efefef;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-1 {
    background-image: url(../images/avatar.jpeg);
}

.img-2 {
    background-image: url(../images/avatar.jpeg);
}

.img-3 {
    background-image: url(../images/avatar.jpeg);
}

.text-center {
    text-align: center;
}

.text-center button {
    background: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    padding: .4rem;
}

.table-responsive {
    overflow-x: auto;
    border: 1px black;
}

.breadcrumb-link {
    color: darkgray;
    cursor: pointer;
}

.breadcrumb-link:hover {
    color: var(--main-color);
}

.session-btn {
    font-size: 1rem;
    font-weight: 600;
    height: auto;
    text-align: center;
    border-radius: 50px;
    border-color: rgb(189, 22, 34);
    background: rgb(189, 22, 34);
    color: var(--main-color);
}

.session-btn:hover {
    background: var(--main-color);
    color: rgb(189, 22, 34);
}

.new-session-btn {
    width: auto;
    height: auto;
    text-align: center;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

#db-btn {
    height: auto;
}

.modal-close-btn {
    font-size: 1rem;
    font-weight: normal;
    height: auto;
    text-align: center;
}

#scan img {
    margin-top: -50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 36%;
}

#toast-message {
    display: none;
    border: 1px solid red;
    padding: 1rem;
    position: relative;
    top: -10px;
    background-color: #fff;
    color: red;
}

#toast-message.is_success {
    border: 1px solid green !important;
    color: green;
}

#toast-message.show {
    display: block;
}

.db-input-table {
    background: transparent;
    border: none;
}

.hide-import {
    display: none;
}

.all-cat-span {
    cursor: pointer;
}

#badge-template-img,
.badge-template-img {
    display: block;
    /* visibility: hidden; */
    position: absolute;
    top: 0;
    z-index: -1;
}

div#badge-template-container,
div.badge-template-container {
    background-size: contain;
    overflow: hidden;
    background-repeat: no-repeat;
    position: relative;
}

@media only screen and (max-width: 1200px) {
    .sidebar {
        width: 60px;
        z-index: 150;
    }

    .sidebar .sidebar-header h3 span,
    .sidebar li span:last-child {
        display: none;
    }

    .sidebar .sidebar-header,
    .sidebar li {
        display: flex;
        justify-content: center;
    }

    .main-content {
        margin-left: 60px;
    }

    .main-content header {
        left: 60px;
        width: calc(100% - 60px);
    }

    #sidebar-toggle:checked~.sidebar {
        width: 240px;
    }

    #sidebar-toggle:checked~.sidebar .sidebar-header h3 span,
    #sidebar-toggle:checked~.sidebar li span:last-child {
        display: inline;
    }

    #sidebar-toggle:checked~.sidebar .sidebar-header {
        display: flex;
        justify-content: space-between;
    }

    #sidebar-toggle:checked~.sidebar li {
        display: block;
    }

    #sidebar-toggle:checked~.main-content {
        margin-left: 60px;
    }

    #sidebar-toggle:checked~.main-content header {
        left: 60px;
    }
}

@media only screen and (max-width: 860px) {
    .dash-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-single {
        margin-bottom: 1rem;
    }

    .activity-grid {
        display: block;
    }

    .summary {
        margin-top: 1.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .dash-cards {
        grid-template-columns: 100%;
    }
}

@media only screen and (max-width: 450px) {
    main {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

div.dataTables_wrapper {
    /* width: 800px; */
    margin: 0 auto;
}

.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: #fff;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 5%;
    right: 6.3%;
    background-color: #bd1622;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
}

.my-float {
    font-size: 24px;
}

.float:hover {
    background-color: #fff;
    color: #bd1622;
}

.bloc-bottom-right {
    color: #000;
    text-align: center;
    width: 150px;
    right: 3.4%;
    position: fixed;
    bottom: 31%;
    height: 150px;
    border-radius: 50%;
}

.loading-button {
    font-size: 12px;
    padding: 2px 5px 1px 6px;
    margin-top: -4px;
    /* border: none;
    padding: 16px 40px 16px 40px;
    box-shadow: 0px 10px 0px 0px #1d7f8a, 0px 0px 10px 0px rgba(120, 120, 120, 0.4);
    color: white; */
    background: #bd1622;
    /* cursor: pointer;
    transition: all 0.16s;
    position: relative;
    top: 0;
    border-radius: 50%;
    margin: 25% 45%; */
    border-radius: 50%;
}


/* .loading-button:focus {
    outline: none;
}

.loading-button:active {
    box-shadow: 0px 5px 0px 0px #1d7f8a;
    top: 5px;
} */

.col-md-6.mx-auto.text-center.margetopProgress {
    margin-top: 20%;
}

#requestProgress {
    background: #1f3b69d6;
    position: fixed;
    z-index: 111111111;
    height: 100%;
    width: 100%;
    top: 0;
}

.dropdown-toggle::after {
    display: none !important;
}

.note-btn-group.btn-group.note-font {
    display: flex;
    justify-content: space-between;
    background: #f1f1f1;
    width: 100%;
}

.note-btn-group,
.note-btn {
    width: 100% !important;
}

.note-editor .note-toolbar {
    margin: 0;
    padding: 0;
}

.spinner-border.cusromized {
    width: 28px;
    height: 28px;
    border-width: 2px;
    float: right;
}

#messageline {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
}

#data-center h5,
#data-center h3,
#data-center p {
    line-height: 2em;
}

.hovertext:hover {
    color: green;
}

.float-line {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 8%;
    right: 40px;
    background-color: #0C9;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    font-size: 30px;
}

.my-float2 {
    font-size: 30px;
}

#fullloader {
    position: fixed;
    width: 100%;
    background: #262626e8;
    height: 100%;
    top: 0;
    z-index: 111;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 100px;
    height: 100px;
    -webkit-animation: animate 1s linear infinite;
    animation: animate 1s linear infinite;
}

.loader-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #f00;
    box-shadow: 2px 2px 5px 1px #000;
    -webkit-animation: rotate 1s linear infinite;
    animation: rotate 1s linear infinite;
}

.loader-item_1 {
    top: 0;
    left: 0;
    background: #f79f1f;
}

.loader-item_2 {
    top: 0;
    right: 0;
    background: #12cbc4;
}

.loader-item_3 {
    bottom: 0;
    left: 0;
    background: #ed4c67;
}

.loader-item_4 {
    bottom: 0;
    right: 0;
    background: #a3cb38;
}

@-webkit-keyframes animate {
    0% {
        width: 100px;
        height: 100px;
    }

    10% {
        width: 100px;
        height: 100px;
    }

    50% {
        width: 150px;
        height: 150px;
    }

    90% {
        width: 100px;
        height: 100px;
    }

    100% {
        width: 100px;
        height: 100px;
    }
}

@keyframes animate {
    0% {
        width: 100px;
        height: 100px;
    }

    10% {
        width: 100px;
        height: 100px;
    }

    50% {
        width: 150px;
        height: 150px;
    }

    90% {
        width: 100px;
        height: 100px;
    }

    100% {
        width: 100px;
        height: 100px;
    }
}

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

    10% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(90deg);
    }

    90% {
        transform: rotate(90deg);
    }

    100% {
        transform: rotate(90deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(90deg);
    }

    90% {
        transform: rotate(90deg);
    }

    100% {
        transform: rotate(90deg);
    }
}

#shownotific {
    position: fixed;
    top: 39%;
    width: 50%;
    left: 25%;
    z-index: 11;
}

.selectorcolname {
    height: 30px;
    padding: 5px;
    font-size: 12px;
    background: transparent;
    border: 1px solid #d0d2d5;
}

#importlist {
    position: fixed;
    top: 10%;
    right: 5%;
    border: none;
    padding: 10px 20px;
    border-radius: 5%;
    font-weight: bold;
    color: #fff;
    background: #bd1622;
}

#previewlist {
    position: fixed;
    top: 10%;
    right: 30%;
    border: none;
    padding: 10px 20px;
    border-radius: 5%;
    font-weight: bold;
    color: #fff;
    background: #bd1622;
}

#closepreview {
    position: fixed;
    top: 10%;
    right: 15%;
    border: none;
    padding: 10px 20px;
    border-radius: 5%;
    font-weight: bold;
    color: #fff;
    background: #bd1622;
}

#sidebar-toggle:checked~.sidebar li.menu-label {
    font-size: 10px;
}

.previewTables {
    display: none !important;
}

.note-dropdown-menu.dropdown-menu.note-check.dropdown-fontname.show {
    font-size: 12px !important;
    font-weight: normal;
    line-height: 2;
}

.note-dropdown-menu.dropdown-menu.note-check.dropdown-fontsize.show {
    max-height: 200px;
    overflow: scroll;
}

.btn-rounded-info-dup {
    position: fixed;
    top: 27%;
    right: 3%;
    border-color: #bd1622;
    color: #bd1622;
    font-size: 13px;
    font-weight: bold;
}

.btn-rounded-info-dup:host {
    color: #fff;
    text-decoration: none;
    background: #bd1622;
}

#avatarHolder {
    aspect-ratio: 1;
    object-fit: contain;
    /* border-radius: 100%; */
    border: 1px solid #0000001a !important;
}