﻿/*___________________index.css______________________*/
html {
    height: -webkit-fill-available;
    font-size: 14px;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #e5e5e5;
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 0.3s;
    animation-fill-mode: forwards;
    max-width: 100%;
    height: -webkit-fill-available;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes loading {
    0% {
        transform: translateY(0px);
        background-color: #CACACA;
    }

    50% {
        transform: translateY(50px);
        background-color: #8E8E8E;
    }

    100% {
        transform: translateY(0px);
        background-color: #CACACA;
    }
}
#wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    #wrapper .circle {
        display: inline-block;
        width: 50px;
        height: 50px;
        background-color: #fcdc29;
        border-radius: 50%;
        animation: loading 1.5s cubic-bezier(.8, .5, .2, 1.4) infinite;
        transform-origin: bottom center;
        position: relative;
    }



#wrapper .circle-1 {
    animation-delay: 0.1s;
}

#wrapper .circle-2 {
    animation-delay: 0.2s;
}

#wrapper .circle-3 {
    animation-delay: 0.3s;
}

#wrapper .circle-4 {
    animation-delay: 0.4s;
}

#wrapper .circle-5 {
    animation-delay: 0.5s;
}

#wrapper .circle-6 {
    animation-delay: 0.6s;
}

#wrapper .circle-7 {
    animation-delay: 0.7s;
}

#wrapper .circle-8 {
    animation-delay: 0.8s;
}
code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

#root {
}

.login-container {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar {
    width: 4px;
    border-radius: 25px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 25px;
    display: none;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 25px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.popup-item {
    width: 60%;
    margin: auto;
}

    .popup-item p {
        margin: auto;
        width: 80%;
        margin-bottom: 80px;
        margin-top: 40px;
    }

.margin-0 {
    margin: 0px !important;
}

.checkin-form INPUT {
    margin-bottom: 10px;
    width: 80%;
}

.checkin-form .row {
    width: 82%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

.react-select-container {
    width: 80%;
    margin: auto;
}

.react-select__control {
    margin: auto;
    margin-bottom: 10px;
    background: #eee !important;
    text-align: left;
    border-radius: 5px !important;
    border: none !important;
}

.react-select__menu-list {
    background-color: #eee !important;
    margin: auto !important;
    text-align: left !important;
}

.forget-password-container {
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.text-headline-1 {
    text-align: center;
    font-size: 2rem !important;
    color: #555 !important;
}

.reset-btn {
    margin-top: 40px;
}


/*___________________index.css______________________*/

/*___________________card.css______________________*/

.card-container {
    width: 100%;
}

.card-header {
    border-bottom: none !important;
    background: none !important;
}

    .card-header p {
        margin: 0px;
        font-weight: 400;
        margin-top: 10px;
        margin-left: 10px;
        font-size: 1.3rem;
        text-align: left;
    }

.card-contain {
    padding: 20px;
    display: flex;
    margin: auto !important;
    width: 100% !important;
}

/*___________________card.css______________________*/


/*___________________header.css______________________*/

header {
    height: auto;
    margin-top: 20px;
    border-bottom: solid 0.5px #cacaca;
    z-index: 1;
}

img {
    width: 50%;
    margin-top: 3.5%;
    margin-left: 6%;
}

i {
    font-size: 1.5rem;
    display: flex;
    margin: auto;
    color: #333333;
    transition: all ease 0.5s;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
    font-weight: 400;
}

.avatar {
    text-align: right;
}

    .avatar i {
        padding: 3px;
        border: solid 0.5px #333333;
        border-radius: 55px;
        font-size: 2.5rem;
        margin-right: 30px;
        margin-top: 5px;
    }

i:hover {
    color: #eda302;
    cursor: pointer;
    background-color: #d1d1d17e;
}

p {
    color: #333333;
    font-size: 1.3rem;
    text-align: right;
    padding-top: 5px;
    font-weight: 600;
}

.timestamp {
    font-size: 1rem;
}



/*___________________header.css______________________*/


/*___________________input.css______________________*/
input {
    width: 100%;
}
/*___________________input.css______________________*/

/*___________________listactivity.css______________________*/
.list-container {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    border-bottom: solid 0.5px rgb(210, 210, 210) !important;
}

.list-head {
    font-size: 0.95rem;
    color: rgb(155, 155, 155);
    padding: 0px !important;
    margin-top: 5px !important;
}

.list-item-typ-1 {
    /*padding: 0px !important;*/
    margin-top: -15px !important;
    font-size: 1.2rem;
    color: #555555;
}

.list-item-typ-2 {
    padding: 0px !important;
    margin-top: -15px !important;
    margin-bottom: 0px;
    font-size: 1.15rem;
    color: #555555;
    padding-bottom: 5px !important;
}

.label-checkin {
    margin-top: -5px;
    font-size: 1rem;
    color: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #ffb700;
    width: fit-content;
    border-radius: 55px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.label-checkout {
    margin-top: -5px;
    font-size: 1rem;
    color: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #ffe100;
    width: fit-content;
    border-radius: 55px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.label-success {
    margin-top: -5px;
    font-size: 1rem;
    color: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #029719;
    width: fit-content;
    border-radius: 55px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.label-failed {
    margin-top: -5px;
    font-size: 1rem;
    color: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #d90015;
    width: fit-content;
    border-radius: 55px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.label-status {
    margin-top: -5px;
    font-size: 1rem;
    color: #5c5c5c;
    background-color: transparent;
    width: fit-content;
    border-radius: 55px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.label-registered {
    margin-top: -5px;
    font-size: 1rem;
    color: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #ffb700;
    width: fit-content;
    border-radius: 55px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.label-overstay {
    margin-top: -5px;
    font-size: 1rem;
    color: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #ffb700;
    width: fit-content;
    border-radius: 55px;
    padding-top: 3px;
    padding-bottom: 3px;
}

/*___________________listactivity.css______________________*/

/*___________________LoginCol-1.css______________________*/

.login-col-1 {
    padding: 50px;
    background-image: url(../images/loginimg.png);
    background-size: cover;
    height: 100%;
    color: white;
    padding-bottom: 600px !important;
}

    .login-col-1 h1 {
        font-size: 2.8rem;
        font-weight: 600;
        color: rgb(53, 53, 53);
        margin-top: 50px;
        font-family: montserrat;
    }

    .login-col-1 p {
        margin-top: 20px;
        color: rgb(129, 129, 129);
        font-weight: 600;
        font-size: 1.1rem;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.312);
        border-radius: 5px;
        font-family: montserrat;
    }

/*___________________LoginCol-1.css______________________*/

/*___________________loginForm.css______________________*/
.login-form {
    padding-top: 50px;
    padding-bottom: 100px;
    padding-right: 100px;
    padding-left: 100px;
}

label {
    padding-bottom: 10px;
    padding-top: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 1.2rem;
}
 .filter-form {
    background-color: black;
    padding: 7px;
    border-radius: 5px;
}

.login-form p {
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #337ab7;
    transition: all ease 0.5s;
    font-weight: 500;
}

    .login-form p:hover {
        color: gray;
        cursor: pointer;
    }

button {
    padding: 8px;
    border: none;
    border-radius: 7px !important;
    background: #eda302;
    color: white;
    font-weight: 500;
    transition: all ease 0.5s;
    width: 100%;
}

    button:hover {
        background: gray;
        color: black;
        opacity: 70%;
    }

.login-form img {
    width: 45%;
    margin: auto;
    padding-bottom: 50px;
    padding-top: 50px;
}


/*___________________loginForm.css______________________*/

/*___________________navbar.css______________________*/
.navbar-container {
    width: 280px;
    position: absolute;
    background: rgb(55, 55, 55);
    z-index: 2;
    height: -webkit-fill-available;
    margin-top: -20px;
    box-shadow: 4px 0px 20px rgb(74, 74, 74);
    border-right: 6px solid #ffa200;
}

.projectsite-name {
    background-color: white;
    box-shadow: 4px 0px 20px rgba(74, 74, 74, 0.538);
    height: 50px;
    margin-right: -20px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
    display: flex;
    margin-bottom: 20px;
}

    .projectsite-name p {
        text-align: left;
        width: 60%;
        font-size: 1.6rem;
    }

    .projectsite-name i {
        width: fit-content;
        background-color: white;
        font-size: 2rem;
        padding: 15px;
        border-radius: 555px;
        margin-top: -8px;
        border: 3px solid rgb(255, 162, 0);
        box-shadow: 4px 0px 20px rgba(74, 74, 74, 0.538);
    }

.site-logo img {
    width: 55%;
    margin: auto;
    display: flex;
    margin-top: 30px;
    margin-bottom: 23px;
}

/*li {
    list-style-type: none;
    width: 100%;
    transition: all ease 0.5s;
    list-style: square;
    display: flex;
}

    li i {
        margin-left: 40px;
        color: white;
        font-size: 1.2rem;
        margin-top: 7px;
    }

    li p {
        margin-top: 9px;
        text-align: left;
        width: 65%;
        font-size: 1.1rem;
        color: white;
    }

    li:hover {
        background-color: #ffa20085;
        cursor: pointer;
    }

ul {
    width: 100%;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 500;
}*/

.ul-line-padding-unset {
    padding-inline-start: unset !important;
}

.logout-container {
    bottom: 0px;
    border-top: 1px gray solid;
    padding-top: 10px;
    position: absolute;
    width: 100%;
}

.nav-link {
    width: 100%;
    display: flex !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}

.active {
    background-color: #ffa200c8;
}


/*___________________navbar.css______________________*/

/*___________________piechart.css______________________*/
.pie-container {
    height: 453px;
    padding: 25px;
    display: flex;
    margin: auto;
    overflow: hidden;
    width: 100% !important;
}

    .pie-container canvas {
        width: 100% !important;
    }
/*___________________piechart.css______________________*/

/*___________________popup.css______________________*/

.k-window {
    border-radius: 10px;
    top: 105px !important;
}
.popup-box {
    background: white;
    width: 60%;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    color: black;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 5;
}


.k-window-titlebar.k-header {
    background-color: white !important;
    color: black;
    border-bottom: solid 1px #eda302;
    display: flex;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


.pop-header {
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: solid 1px #eda302;
    display: flex;
}

    .pop-header i {
        background: white;
        width: fit-content;
        padding: 5px;
        padding-left: 7px;
        padding-right: 7px;
        border: solid 0.5px white;
        border-radius: 500px;
        margin-top: 0px !important;
        position: absolute;
        right: -7px;
        top: -7px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    }

    .pop-header p {
        text-align: left;
        font-family: montserrat;
        font-size: 1.5rem;
        font-weight: 600;
        margin-left: 20px;
        margin-top: 20px;
    }

.pop-item {
    padding: 30px;
}

    .pop-item p {
        color: black;
        text-align: left;
    }

/*___________________popup.css______________________*/

/*___________________ToggleSwitch.css______________________*/
.container {
    text-align: center;
}

.toggle-switch {
    position: relative;
    width: 75px;
    display: inline-block;
    text-align: left;
    top: 8px;
}

.checkbox {
    display: none;
}

.label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 0 solid #bbb;
    border-radius: 20px;
}

.inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

    .inner:before,
    .inner:after {
        float: left;
        width: 50%;
        height: 36px;
        padding: 0;
        line-height: 36px;
        color: #fff;
        font-weight: bold;
        box-sizing: border-box;
    }

    .inner:before {
        content: "YES";
        padding-left: 10px;
        background-color: #060;
        color: #fff;
    }

    .inner:after {
        content: "NO";
        padding-right: 10px;
        background-color: #bbb;
        color: #fff;
        text-align: right;
    }

.switch {
    display: block;
    width: 24px;
    margin: 5px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 40px;
    border: 0 solid #bbb;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

.checkbox:checked + .label .inner {
    margin-left: 0;
}

.checkbox:checked + .label .switch {
    right: 0px;
}


/*___________________ToggleSwitch.css______________________*/



/*___________________totaldetail.css______________________*/

.total-container {
    width: -webkit-fill-available;
    margin-top: -30px !important;
}

.number-item p {
    font-size: 5rem;
    margin-top: 5px;
    margin-bottom: -30px;
    color: #ffa200;
}

    .number-item p:hover {
        cursor: default;
    }

.detailIcon-item {
    text-align: center;
    padding-top: 26px;
    padding-right: 20px;
    padding-left: 1px;
}

    .detailIcon-item i {
        font-size: 3.5rem;
        color: #ffa200;
    }

        .detailIcon-item i:hover {
            background-color: white !important;
            cursor: default;
        }

/*___________________totaldetail.css______________________*/

/*________________________pages.css_______________________*/

.standard-page-container {
    margin-top: -60px;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    margin-left: 330px;
    z-index: -1;
    overflow: auto;
}

.page-title {
    padding: 0px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgb(255, 255, 255);
    width: max-content;
    border-radius: 55px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-left: 20px !important;
}

    .page-title p {
        padding-top: 2px;
        margin-bottom: 5px;
        font-size: 1.5rem;
        width: max-content;
    }

.standard-page-container p {
    text-align: left;
}

.page-sections {
    margin-bottom: 10px;
}

.page-content {
    margin-top: 21px !important;
    padding-top: 20px;
    overflow: auto;
    height: 92vh !important;
    display: block !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1920px;
}

    .page-content::-webkit-scrollbar {
        display: none;
    }

.inner-section {
    margin-bottom: 10px;
    --bs-gutter-x: 0.5rem !important;
}

.card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.col-md-6 {
    --bs-gutter-x: 0.7rem !important;
}

.tab-item li {
    width: 100%;
    border-bottom: solid 0.5px rgb(194, 194, 194);
}

.tab-item {
    padding: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: white;
    height: 40vh;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    display: flex;
    margin: auto;
}

.tab-nav {
    width: 20%;
    display: flex;
    text-align: center;
    margin-bottom: 0px;
    background-color: #3f3f3f;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border: none 0px;
}

.react-tabs__tab {
    bottom: 0px !important;
    border-radius: 10px 10px 0 0 !important;
}

.react-tabs__tab--selected {
    background: rgb(255, 183, 0) !important;
    border: none !important;
    border-radius: 10px 10px 0 0 !important;
}

.react-tabs__tab:focus:after {
    background-color: rgba(240, 248, 255, 0) !important;
}

.nav-link2 {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    background-color: rgb(56, 56, 56);
}

.activeTab {
    padding-left: 50px;
    padding-right: 50px;
}

.react-tabs__tab-panel {
    display: none;
}

.react-tabs__tab-panel--selected {
    display: block;
    background-color: rgba(255, 255, 255, 0.845);
    border-radius: 0 10px 10px 10px !important;
    height: 40vh;
    overflow: auto;
    border-top: solid 15px #494949;
    border-bottom: solid 10px #494949;
    box-shadow: inset 0 8px 12px -6px rgba(0, 0, 0, 0.454);
}

.shapedividers_com-173 {
    overflow: hidden;
    position: relative;
}

    .shapedividers_com-173::before {
        content: "";
        font-family: "shape divider from ShapeDividers.com";
        position: absolute;
        bottom: -1px;
        left: -1px;
        right: -1px;
        top: -1px;
        z-index: -2;
        pointer-events: none;
        background-repeat: no-repeat;
        background-size: 100% 90px;
        background-position: 50% 0%;
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>');
    }

@media (min-width: 768px) {
    .shapedividers_com-173::before {
        background-size: 100% 90px;
        background-position: 50% 0%;
    }
}

@media (min-width: 1025px) {
    .shapedividers_com-173::before {
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw;
        background-size: 100% 225px;
        background-position: 50% 100%;
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23ffa200"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23ffa200"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23ffa200"/></svg>');
    }
}

@media (min-width: 2100px) {
    .shapedividers_com-173::before {
        background-size: 100% calc(2vw + 225px);
    }
}

.secondary-font {
    font-size: 1rem;
    margin-left: 10px;
}

.padding-all-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.margin-top--15 {
    margin-top: -15px !important;
}

.margin-top--55 {
    margin-top: -55px !important;
}

.margin-top--5 {
    margin-top: -5px !important;
}

.margin-top-37 {
    margin-top: 37px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.filter-input i {
    width: fit-content;
    padding: 0px;
    margin-right: 18px;
    margin-top: -28px;
}

.check-item {
    margin-top: 10px !important;
    display: flex;
}

.check-container {
    margin-top: 10px !important;
    display: flex;
    width: fit-content !important;
}

.padding-bot-20 {
    padding-bottom: 20px !important;
}

.padding-bot-30 {
    padding-bottom: 30px;
}

.center-element {
    display: flex;
    margin: auto !important;
}

.form-check-input:checked {
    background-color: #fdb60d !important;
    border-color: #fdc60d !important;
}

.form-switch .form-check-input {
    width: 60px !important;
    height: 30px !important;
    background-color: #e4e4e4;
}

    .form-switch .form-check-input:checked::after {
        content: "Yes";
    }

.list-action-btn {
    float: right;
    width: fit-content;
    margin: auto;
}

    .list-action-btn i {
        font-size: 2.5rem;
        color: #494949 !important;
        float: right;
    }

.table-list {
    height: 64vh;
    overflow: auto;
}

.avatarlist {
    text-align: center;
    width: 100%;
}

    .avatarlist i {
        padding: 3px;
        border: solid 0.5px #333333;
        color: #3f3f3f;
        border-radius: 55px;
        font-size: 6rem;
        margin-right: 30px;
        margin-top: 5px;
        margin-left: 0px;
    }

.contact-container {
    display: flex;
    width: max-content !important;
}

    .contact-container i {
        display: flex;
        width: max-content;
        color: #3f3f3f;
        margin-left: 0px !important;
        padding: 0px !important;
        margin-top: 0px;
    }

    .contact-container p {
        display: flex;
        width: max-content;
        margin-top: -5px !important;
        margin-left: 10px;
    }

.subhead {
    text-align: left !important;
}

.number-invite {
    text-align: right !important;
    margin-top: -10px !important;
    margin-bottom: 0px !important;
}

.login-form p {
    font-size: 1rem;
}


/*________________________pages.css_______________________*/



.totalValue {
    text-align:left;
}

.checkBox-analytic
{
   padding-top: 25px !important;
}

.menu-sidebar {
    width: 280px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: #373737;
    overflow-y: auto;
    z-index: 4;
    background: rgb(55, 55, 55);
}

.page-wrapper {
    overflow: hidden;
    background: #e5e5e5;
    padding-bottom: 8vh;
}

@media (max-width: 991px) {
    .page-wrapper {
        overflow: auto;
        background: #e5e5e5;
        padding-bottom: 12vh;
    }
}

/*SITE SETTINGS PAGE*/

.recent-report {
    margin-bottom: 80px;
}

/* Home Page */
@media (max-width: 900px) {
    .content-au-card-home {
        grid-gap: 20px !important;
        grid-template-columns: repeat(auto-fit, 243px) !important;
        grid-template-rows: repeat(3, 170px) !important;
        justify-content: center;
    }
}

.au-card {
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 50px 50px 50px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.au-card-home {
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 160px 160px 160px 160px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.content-au-card-home {
    display: grid;
    justify-items: center;
    grid-gap: 1rem !important;
    grid-template-columns: 377px 377px 377px !important;
}

.content-au-card {
    display: inline-flex;
    position: relative;
    max-width: 100% !important;
}

.au-card--border {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .au-card--border .au-card-title {
        -webkit-border-top-left-radius: 3px;
        -moz-border-radius-topleft: 3px;
        border-top-left-radius: 3px;
        -webkit-border-top-right-radius: 3px;
        -moz-border-radius-topright: 3px;
        border-top-right-radius: 3px;
    }

        .au-card--border .au-card-title .bg-overlay {
            -webkit-border-top-left-radius: 3px;
            -moz-border-radius-topleft: 3px;
            border-top-left-radius: 3px;
            -webkit-border-top-right-radius: 3px;
            -moz-border-radius-topright: 3px;
            border-top-right-radius: 3px;
        }

.au-card-bordered {
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 40px;
    padding-top: 42px;
    padding-right: 55px;
    margin-bottom: 40px;
}

.au-card--bg-blue {
    background-image: -moz-linear-gradient(90deg, #396afc 0%, #2948ff 100%);
    background-image: -webkit-linear-gradient(90deg, #396afc 0%, #2948ff 100%);
    background-image: -ms-linear-gradient(90deg, #396afc 0%, #2948ff 100%);
}

.au-card-top-countries {
    padding: 40px;
    padding-top: 25px;
    padding-bottom: 29px;
}

.au-card--no-shadow {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.au-card--no-pad {
    padding: 0;
}

.au-card-title {
    position: relative;
    padding: 40px;
    padding-top: 45px;
    padding-bottom: 47px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-border-top-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    border-top-right-radius: 10px;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}

    .au-card-title .bg-overlay {
        -webkit-border-top-left-radius: 10px;
        -moz-border-radius-topleft: 10px;
        border-top-left-radius: 10px;
        -webkit-border-top-right-radius: 10px;
        -moz-border-radius-topright: 10px;
        border-top-right-radius: 10px;
    }

    .au-card-title h3 {
        position: relative;
        z-index: 2;
        color: #fff;
        font-weight: 400;
    }

        .au-card-title h3 i {
            color: #fff;
            font-size: 24px;
            margin-right: 12px;
        }


@media (max-width: 992px) {
    .content-au-card-home {
        grid-gap: 20px !important;
        grid-template-columns: repeat(auto-fit, 190px) !important;
        grid-template-rows: repeat(1, 170px) !important;
        justify-content: center;
    }
}

@media (min-width: 993px) {
    .content-au-card-home {
        grid-gap: 20px !important;
        grid-template-columns: repeat(auto-fit, 243px) !important;
        grid-template-rows: repeat(3, 170px) !important;
        justify-content: center;
    }
}

@media (min-width: 1041px) {
    .content-au-card-home {
        grid-gap: 20px !important;
        grid-template-columns: repeat(auto-fit, 190px) !important;
        grid-template-rows: repeat(2, 170px) !important;
        justify-content: center;
    }
}

@media (min-width: 1261px) {
    .content-au-card-home {
        grid-gap: 20px !important;
        grid-template-columns: 190px 190px 190px !important;
        grid-template-rows: repeat(1, 170px) !important;
        justify-content: center;
    }
}

.form-control {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 5px;
    border: none;
    background-color: #e8ecef;
}

input.k-textbox {
    background-color: #e9ecef;
}

.k-input {
    background-color: #e9ecef;
}
/*.k-dropdown {
    background-color: #e9ecef;
}

.k-dropdown-wrap {
    background-color: #e9ecef;
}
.k-select {
    background-color: #e9ecef;
}

.k-dropdown-wrap .k-input {
    background-color: #e9ecef;
}*/

.wid-185 {
    width: 185px !important;
}

.wid-211 {
    width: 211px !important;
}

.wid-260 {
    width: 260px !important;
}

.wid-300 {
    width: 300px !important;
}

.wid-360 {
    width: 360px !important;
}

.wid-400 {
    width: 400px !important;
}

.wid-520 {
    width: 520px !important;
}

.wid-537 {
    width: 537px !important;
}

.wid-881 {
    width: 881px !important;
}
.wid-810 {
    width: 810px !important;
}

.wid-10 {
    width: 10px !important;
}

.wid-135 {
    width: 135px !important;
}

.wid-600 {
    width: 600px !important;
}

.wid-filter {
    width: 30% !important;
    margin: 8px !important;
}

.filter-box {
    padding-bottom: 5px;
    display: contents;
}

.subtitle {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
}
.optivolve-logo-settings {
    max-width: 35% !important;
    height: auto !important;
    padding-left: 0px !important;
}

.optivolve-logo {
    max-width: 25% !important;
    height: auto !important;
}

.padding-bottom-20 
{
    padding-bottom: 20px !important;
}

.padding-bottom-60 
{
    padding-bottom: 60px !important;
}

.padding-left-130 {

    padding-left: 130px !important;
}



.margin-left-90{
    margin-left:90px !important;
}
.margin-left-100{
    margin-left:100px !important;
}

.margin-left-120{
    margin-left:120px !important;
}

.margin-left-350{
    margin-left:350px !important;
}

.margin-top-42 
{
    margin-top: 42px !important;
}

.margin-top-40 
{
    margin-top: 40px !important;
}

.margin-top-52 
{
    margin-top: 52px !important;
}

.margin-top-55 
{
    margin-top: 55px !important;
}

.margin-top-60
{
    margin-top: 60px !important;
}

.filter-btn
{
    padding-top:2px;
    padding-bottom:2px;
    padding-right:5px;
    padding-left:5px;
}

.filter-btn-icon {
    font-size: 12px !important;
    color: white;
}
.download-btn {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 5px;
    padding-left: 5px;
}
.download-btn-icon {
    font-size: 12px !important;
    color: white;
}

/*GRID BORDER TRANSPARENT*/

.k-grid-header th.k-header {
    visibility: hidden !important;
}

.k-grid {
    border-width: 0;
}

.k-grid td {
    border-width: 0;
}


/*GRID BORDER TRANSPARENT*/



/*FORM*/

.checkin-form INPUT {
    margin-bottom: 10px;
    width: 80%;
}

.checkin-form .row {
    width: 82%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

.center-icon
{
    align-content: center;
}

.listIcon_invitation {
    font-size: 35px;
    color: #a2a5af;
}

.side-menu-list {
    list-style-type: none;
    width: 100%;
    transition: all ease 0.5s;
    list-style: square;
    display: flex;
}

    .side-menu-list i {
        margin-left: 40px;
        color: white;
        font-size: 1.2rem;
        margin-top: 7px;
    }

.side-menu-list p {
    margin-top: 9px;
    text-align: left;
    width: 65%;
    font-size: 1.1rem;
    color: white;
}

    .side-menu-list:hover {
        background-color: #ffa20085;
        cursor: pointer;
    }

 .side-menu-list ul{
    list-style-type: none;
    width: 100%;
    transition: all ease 0.5s;
    list-style: square;
    display: flex;
}

.list-unit-resident {
    color: #555555 !important;
}

.color-red {
    color: red !important;
}

.color-green {
    color: green !important;
}

.margin-top-23{
    margin-top: 23px !important;
}

.padding-bottom-5{
    padding-bottom: 5px !important;
}

.editor-field {
    margin-top: 23px !important;
}

.k-edit-form-container .k-edit-buttons {
    text-align:center;
}

.k-checkbox-label{
    padding-top: 2px !important;
}

.filter-dropdown {
    background: #e9ecef;
    width: 100%;
    color: #30364c;
    border-radius: 5px;
    resize: none;
    margin-bottom: 10px;
}

/*.k-pager-numbers {
    width: 5% !important;
}*/

.k-input {
    width: 100%;
    background-color: #e9ecef;
}

#role-name {
     padding-bottom: 2px; 
     padding-top: 2px;
}

.padding-top-8 {
    padding-top: 8px !important;
}
.padding-bottom-8 {
    padding-bottom: 8px !important;
}
 
 .padding-top-6 {
    padding-top: 6px !important;
}
.padding-top-25 {
    padding-top: 25px !important;
}
.padding-top-0 {
    padding-top: 0px !important;
}

.padding-radio-QR {
    padding-top: 25px !important;
    padding-right: 2px !important;
    padding-left: 2px !important;
}

.canvas-webcam {
    padding-left: 20px !important;
    margin-left: 40px !important;
}

.row_QR 
{
    margin-bottom: 1px !important;
    margin-top: 10px !important;
    margin-left: 1px !important;
}

.margin-top-2{
    margin-top : 2px !important;
}

.margin-bottom-2{
    margin-bottom: 2px !important;
}

.margin-right-55 {
    margin-right: 55px !important;
}

.margin-left-50{
    margin-left: 50px !important;
}

.margin-left-140 {
    margin-left: 140px !important;
}

.react-select-container {
    width: 80%;
    margin: auto;
}

.react-select__control {
    margin: auto;
    margin-bottom: 10px;
    background: #eee !important;
    text-align: left;
    border-radius: 5px !important;
    border: none !important;
}

.react-select__menu-list {
    background-color: #eee !important;
    margin: auto !important;
    text-align: left !important;
}

.padding-all-30
{
    padding: 30px 30px 30px 30px !important;
}

.dropdown-style {
    background-color: aqua !important;
}

.k-dropdown-wrap.k-state-default {
    background-color: #e9ecef !important;
}

/*POPUP NOTIFICATION*/
.popup-box-error {
    background: pink;
    width: 20%;
    position: fixed;
    top: 25%;
    left: 87%;
    transform: translate(-50%, -50%);
    color: red;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 5;
}

.popup-box-info {
    background: blue;
    width: 20%;
    position: fixed;
    top: 25%;
    left: 87%;
    transform: translate(-50%, -50%);
    color: #17a2b8;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 5;
}

.popup-box-success {
    background: #95d7aa;
    width: 20%;
    position: fixed;
    top: 25%;
    left: 87%;
    transform: translate(-50%, -50%);
    color: #1cb166;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 5;
}

.pop-header-noti {
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: none;
    display: flex;
}

    .pop-header-noti i {
        background: white;
        width: fit-content;
        padding: 5px;
        padding-left: 7px;
        padding-right: 7px;
        border: solid 0.5px white;
        border-radius: 500px;
        margin-top: 0px !important;
        position: absolute;
        right: -7px;
        top: -7px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    }

    .pop-header-noti p {
        text-align: left;
        font-family: montserrat;
        font-size: 1.5rem;
        font-weight: 600;
        margin-left: 20px;
        margin-top: 20px;
    }

.pop-item {
    padding: 30px;
}

    .pop-item p {
        color: black;
        text-align: left;
    }


.noti-content li{
    width:100%;
}

.k-button.k-button-icon .k-icon, .k-grid-filter .k-icon, .k-header .k-icon {
    color: black !important;
}

.k-grid tbody .k-grid-edit {
    border: 0 !important;
    background-color: transparent !important;
    color: black !important;
}

.k-grid .k-icon {
    opacity: 100;
    font-size: xx-large;
}

.k-grid tbody .k-grid-delete {
    border: 0 !important;
    background-color: transparent !important;
    color: black !important;
}

.k-grid tbody .k-grid-Disable {
    border: 0 !important;
    background-color: transparent !important;
    color: black !important;
}

.k-grid tbody .k-grid-Enable {
    border: 0 !important;
    background-color: transparent !important;
    color: black !important;
}

.k-grid tbody .k-grid-Approve {
    border: 0 !important;
    background-color: transparent !important;
    color: black !important;
}

.icon-size
{
    font-size: xx-large !important;
}
.k-numerictextbox .k-link {
    background-color: #e8ecef;
}

.k-datetimepicker .k-select {
    background-color: #e8ecef;
}

#Yes {
    background-color: #fd9f00 !important;
    color: white !important;
    border: 0 !important;
    border-radius: 5px;
}
#No {
    background-color: #fd9f00 !important;
    color: white !important;
    border: 0 !important;
    border-radius: 5px;
}
.k-window-content  {
    overflow-x: hidden !important;
}

#imageUpload {
    display: none;
}

#profileImage {
    cursor: pointer;
    /*width: 350px !important;
    height:350px !important;*/
}

#profile-container {
    width: 350px;
    height: 350px;
    overflow: hidden;
   margin-left:50px !important;
   margin-right: 100px !important;
    border-radius: 50%;
}

    #profile-container img {
        width: 350px;
        height: 350px;
    }

.label-profile-picture {
    color: #068BFF !important;
    padding-top: 50px !important;
    text-align: center !important;
}

#profileForm {
    margin-left: 100px !important;
}

.saveProfile-btn
{
    margin-top: 50px;
    width: 260px;
    float:right !important;
}

.account-dropdown__item a {
    display: block;
    color: #333;
    padding: 15px 25px;
    font-size: 14px;
}

    .account-dropdown__item a:hover {
        background: #eda302;
        color: #fff;
    }

    .account-dropdown__item a i {
        line-height: 1;
        margin-right: 20px;
        font-size: 18px;
        vertical-align: middle;
    }

.account-dropdown__body {
    padding: 12px 0;
}

.account-dropdown__footer {
    border-top: 1px solid #f2f2f2;
}

    .account-dropdown__footer a {
        display: block;
        color: #333;
        padding: 15px 25px;
        font-size: 14px;
    }


        .account-dropdown__footer a:hover {
            background: #eda302;
            color: #fff;
        }

        .account-dropdown__footer a i {
            line-height: 1;
            margin-right: 20px;
            font-size: 18px;
            vertical-align: middle;
        }

.setting-menu .account-dropdown__body {
    border-bottom: 1px solid #f2f2f2;
}

.setting-menu .account-dropdown__item a {
    color: #555;
}

    .setting-menu .account-dropdown__item a:hover {
        color: #fff;
    }

.add-premise-btn {
    margin-top: 60px !important;
    width: 185px !important;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    float:right !important;
}

#clearHistory_div
{
    width: 547px !important;
}

.padding-bottom-46 {
    padding-bottom: 46px !important;
}
.padding-bottom-30 {
    padding-bottom: 30px !important;
}

#LogoPreview {
    max-width: 200px;
    max-height: 150px;
}

#updatePass_btn {
    margin-top: 50px;
    width: 260px;
    float: right !important;
}



@media (min-width: 640px) {
    .textBox_fluid {
        width: 758px;
    }
}

@media (min-width: 768px) {
    .textBox_fluid {
        width: 813px;
    }
}



@media (min-width:2052px) and (max-width:5464px) {
    .textBox_fluid {
        width: 881px;
    }
}

@media (min-width: 768px) {
    #UserNameFilter {
        width: 818px;
    }
}



@media (min-width:2052px) and (max-width:5464px) {
    #UserNameFilter {
        width: 868px;
    }
}

.col-75 {
    float: left;
    width: 100%;
    margin-top: 6px;
}


@media screen and (max-width: 600px) {
    #register-form {
        max-width: none;
        padding: 10px;
    }
}

.margin-auto {
    margin: 0 auto !important;
}

#recover-submit {
    border: 0 !important;
    background-color: #fd9f00 !important;
    color: white !important;
    margin-top: 40px;
    padding: 8px;
    border-radius: 7px !important;
}


@media (max-width: 768px) {
    #register-form {
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
    }

    #renewPassword_form {
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
    }

    #imgPassword {
        width: 45%;
        margin: auto;
        padding-bottom: 50px;
        padding-top: 50px;
    }
}


/*50% zoom*/
@media (min-width:2052px) and (max-width:2732px) {
    #register-form {
        max-width: 700px;
        margin: 0 auto;
        padding: 20px;
    }

    #renewPassword_form {
        max-width: 700px;
        margin: 0 auto;
        padding: 20px;
    }

    #imgPassword {
        width: 45%;
        margin: auto;
        padding-bottom: 50px;
        padding-top: 50px;
    }
}

/*33% zoom*/
@media (min-width:2733px) and (max-width:4102px) {
    #register-form {
        width: 1040px;
        margin: 0 auto;
        padding: 20px;
    }

    #renewPassword_form {
        width: 1040px;
        margin: 0 auto;
        padding: 20px;
    }

    #imgPassword {
        width: 45%;
        margin: auto;
        padding-bottom: 50px;
        padding-top: 50px;
    }
}

/*25% zoom*/
@media (min-width:4103px) and (max-width:5464px) {
    #register-form {
        width: 1500px;
        margin: 0 auto;
        padding: 20px;
    }

    #renewPassword_form {
        width: 1500px;
        margin: 0 auto;
        padding: 20px;
    }

    #imgPassword {
        width: 45%;
        margin: auto;
        padding-bottom: 50px;
        padding-top: 50px;
    }
}

.textCenter {
    text-align: center !important;
}

.system-font {
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    margin-top: -10px;
    margin-left: -27px;
}
.vh-78 {
    height: 78vh !important;
}

.hidden_filter {
    visibility: hidden !important;
}

.apartmentImage {
    background-color: none;
    text-align: left !important;
}
    .apartmentImage i {
        padding: 20px;
        border: solid 5.5px #333333;
        color: #3f3f3f;
        border-radius: 98px;
        font-size: 6rem;
        margin-top: 5px;
        margin-left: 25px;
    }

.center-align {
    text-align: center !important;
}

.font-xl {
    font-size:x-large !important;
}

.td-apartmentImage {
    border-width: 0px !important;
    width: 200px !important;
}
.td-apartmentName {
    border-width: 0px !important;
}