/* @import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
	box-sizing: border-box;
}

body {
	background: #f6f5f7;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: 'Montserrat', sans-serif;
	height: 100vh;
	margin: -20px 0 50px;
} */
/* Animate Background*/
@keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes cube {
    from {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: 1;
    }
    to {
        transform: scale(20) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}
.background {
    background: linear-gradient(132deg, #2196f3, #4caf50, #212335);
    background-size: 400% 400%;
    animation: Gradient 15s ease infinite;
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0px;
}
.bor-hidden {
    background: rgba(255, 255, 255, 0.13);
    border-radius: 2px;
    color: #fff;
    -webkit-box-shadow: 0px 0px 16px 9px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 0px 16px 9px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 16px 9px rgba(0, 0, 0, 0.07);
}
.loginpage {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    /*  background: white */ /* linear-gradient(to right, #26ba7e, #009688) */
    background-image: url(https://diginet.com.vn/wp-content/uploads/2020/08/7-loi-ich-cua-he-thong-crm-doi-voi-nhiem-vu-cham-soc-khach-hang-3.jpg);
    z-index: 99;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.login h1 {
    font-weight: bold;
    margin: 0;
}

.loginh2 {
    text-align: center;
}

.login p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

.login span {
    font-size: 12px;
}

.login a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

.login .button {
    border-radius: 20px;
    /* border: 1px solid #FF4B2B;
	background-color: #FF4B2B; */
    border: 1px solid #1bbb7b;
    background-color: #1bbb7b;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

.login button:active {
    transform: scale(0.95);
}

.login button:focus {
    outline: none;
}

.login button.ghost {
    background-color: transparent;
    border-color: #ffffff;
}

.login .form_lg {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    height: 100%;
    text-align: center;
}

/* .login input {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
	font-size: 14px;
} */

.login .container-login {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 550px;
    top: 18%;
    /*  left: 23%; */
}

.container-login .form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.container-login .sign-in-container {
    left: 0;
    z-index: 2;
}

.container-login.right-panel-active .sign-in-container {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
}

.container-login .sign-up-container {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.container-login.right-panel-active .sign-up-container {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.container-login .overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container-login.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.container-login .overlay {
    background: #ff416c;
    background: -webkit-linear-gradient(to right, #ff4b2b, #ff416c);
    /* background: linear-gradient(to right, #FF4B2B, #FF416C); */
    /* background: linear-gradient(to right, #135d3f, #5fa836); */
    background: linear-gradient(to right, #26ba7e, #009688);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #ffffff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container-login.right-panel-active .overlay {
    transform: translateX(50%);
}

.container-login .overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container-login .overlay-left {
    transform: translateX(-20%);
}

.container-login.right-panel-active .overlay-left {
    transform: translateX(0);
}

.container-login .overlay-right {
    right: 0;
    transform: translateX(0);
}

.container-login.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.container-login .social-container {
    margin: 20px 0;
}

.container-login .social-container a {
    border: 1px solid #dddddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
}

.modal-content-login {
    width: 73ch;
    margin-left: -22%;
    margin-top: 18%;
}

.Hidden_pass {
    position: absolute;
    margin-top: 23px;
    border-left: 1px solid #9e9e9e;
    padding-left: 5px;
    right: 34px;
}

.Hidden_pass_Register {
    position: absolute;
    margin-top: 95px;
    border-left: 1px solid #9e9e9e;
    padding-left: 5px;
    right: 34px;
}

.Hidden_pass_enter_Register {
    position: absolute;
    margin-top: 195px;
    border-left: 1px solid #9e9e9e;
    padding-left: 5px;
    right: 34px;
}

/* responsive */
@media screen and (max-width: 768px) {
    .login .container-login {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
        position: relative;
        overflow: hidden;
        width: 762px;
        max-width: 99% !important;
        min-height: 550px;
        top: 18%;
        left: 0% !important;
    }
    .mt-25-xs {
        margin-top: -25px !important;
    }
    .Hidden_pass {
        position: absolute;
        margin-top: 16px !important;
        border-left: 1px solid #9e9e9e;
        padding-left: 5px;
        right: 10px !important;
    }

    .Hidden_pass_Register {
        position: absolute;
        margin-top: 89px !important;
        border-left: 1px solid #9e9e9e;
        padding-left: 5px;
        right: 10px !important;
    }

    .Hidden_pass_enter_Register {
        position: absolute;
        margin-top: 189px !important;
        border-left: 1px solid #9e9e9e;
        padding-left: 5px;
        right: 10px !important;
    }

    .modal-content-login {
        width: 100%;
        margin-left: 0;
        margin-top: 30%;
    }

    .login button {
        border-radius: 20px;
        /*  border: 1px solid #FF4B2B;
        background-color: #FF4B2B; */
        border: 1px solid #1bbb7b;
        background-color: #1bbb7b;
        color: #ffffff;
        font-size: 11px !important;
        font-weight: bold;
        padding: 7px 30px !important;

        text-transform: uppercase;
        transition: transform 80ms ease-in;
        width: 150px !important;
    }

    .login button :hover {
        background-color: #009688 !important;
    }

    .login .form_lg {
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 6px !important;
        height: 100%;
        text-align: center;
        width: 100%;
    }

    .login h1 {
        font-weight: bold;
        margin: 0;
        font-size: 25px !important;
    }

    .container-login .overlay-panel {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 5px !important;
        text-align: center;
        top: 0;
        height: 100%;
        width: 50%;
        transform: translateX(0);
        transition: transform 0.6s ease-in-out;
    }
}
.Perrow {
    height: 40px;
}
.Perrow:hover {
    background: #adb5bd;
    margin-left: -8px;
    margin-right: -8px;
}
.checkbox-animate {
    display: flex;
    justify-content: center;
    align-items: center;
    /*  width: 100%;
    height: 100vh; */
    font-family: arial;
    font-size: 25px;
}
.checkbox-animate label {
    position: relative;
    cursor: pointer;
}
.checkbox-animate label input {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.input-check {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    border: 2px solid #ccc;
    position: relative;
    top: 6px;
    margin-right: 7px;
    transition: 0.4s;
}

.input-check::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 6px;
    border-bottom: 4px solid #fff;
    border-left: 4px solid #fff;
    transform: scale(0) rotate(-45deg);
    position: absolute;
    top: 6px;
    left: 4px;
    transition: 0.4s;
}

.checkbox-animate label input:checked ~ .input-check {
    background-color: #1bbb7b;
    border-color: #1bbb7b;
    animation-name: input-animate;
    animation-duration: 0.7s;
}

.checkbox-animate label input:checked ~ .input-check::before {
    transform: scale(1) rotate(-45deg);
    animation-name: input-check;
    animation-duration: 0.2s;
    animation-delay: 0.3s;
}

@keyframes input-animate {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.3, 0.7);
    }
    55% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.2, 0.8);
    }
    80% {
        transform: scale(1);
    }
    90% {
        transform: scale(1.1, 0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes input-check {
    0% {
        transform: scale(0) rotate(-45deg);
    }
    100% {
        transform: scale(1) rotate(-45deg);
    }
}

.toggle {
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 0;
    border-radius: 4px;
    padding: 8px 12px;
    position: absolute;
    top: 100px;
}

.toggle:focus {
    outline: none;
}

.clock-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.clock {
    position: relative;
    width: 200px;
    height: 200px;
}

.needle {
    background-color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 65px;
    width: 3px;
    transform-origin: bottom center;
    transition: all 0.5s ease-in;
}

.needle.hour {
    transform: translate(-50%, -100%) rotate(0deg);
}

.needle.minute {
    transform: translate(-50%, -100%) rotate(0deg);
    height: 100px;
}

.needle.second {
    transform: translate(-50%, -100%) rotate(0deg);
    height: 100px;
    background-color: #e74c3c;
}

.center-point {
    background-color: #e74c3c;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.center-point::after {
    content: '';
    background-color: var(--primary-color);
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.clock-container .time {
    font-size: 60px;
}

.clock-container .date {
    color: white;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    background: #2eb981;
    padding: 20px 50px;
}

.clock-container .date .circle {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    height: 18px;
    width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 18px;
    transition: all 0.5s ease-in;
    font-size: 12px;
}

.calendar-wrapper {
    width: 460px;
    margin: 3em auto;
    padding: 2em;
    border: 1px solid #dcdcff;
    border-radius: 5px;
    background: #fff;
}
table:not(.table-reset):not(.jexcel):not(.fix-TableAntd table) {
    clear: both;
    width: 100%;
    border: 1px solid #dcdcff;
    border-radius: 3px;
    border-collapse: collapse;
    color: #444;
}

table:not(.table-reset) td.not-current {
    color: #c0c0c0;
}

table:not(.table-reset) td.today {
    font-weight: 700;
    color: #28283b;
    font-size: 1.5em;
}

table:not(.table-reset):not(.fix-TableAntd table) thead th {
    /* border: none; */
    border-right: 1px solid #dcdcff;
    border-top: 1px solid #dcdcff;
    padding: 5px 10px;
}
#btnPrev {
    float: left;
    margin-bottom: 20px;
}
#btnPrev:before {
    /* content: '\f104'; */
    font-family: FontAwesome;
    padding-right: 4px;
}
#btnNext {
    float: right;
    margin-bottom: 20px;
}
#btnNext:after {
    /* content: '\f105'; */
    font-family: FontAwesome;
    padding-left: 4px;
}
#btnPrev,
#btnNext {
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #c0c0c0;
    cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
#btnPrev:hover,
#btnNext:hover {
    color: #28283b;
    font-weight: bold;
}
.ShowCalendar {
    min-height: 91vh;
    background: #26ba7e;
}

.Fixrow {
    margin-left: 0px;
    margin-right: 0px;
}
.H-50 {
    height: 50px !important;
}
.pd-r-20 {
    padding-right: 20px;
}

.table-avatar {
    border-radius: 50%;
    display: inline;
    width: 30px;
    height: 30px;
    margin-top: -10px;
}

.SelectMeno {
    width: 94%;
    /* background-color: #ebf5e5; */
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: inherit;
    align-items: stretch;
    width: 100%;
}

.wl .css-13cymwt-control,
.react-datetimerange-picker {
    /* border-radius: 30px !important; */
    padding-left: 10px;
    padding-right: 5px;
}

.iconof {
    width: 30px;
    height: 30px;
    line-height: 27px;
    border-radius: 50%;
    border: 1px solid #999;
    text-align: center;
    top: -22px;
    position: absolute;
    font-size: 12px;
}
.background-blue {
    background: #009688 !important;
}
.color-while {
    color: white;
}
.IP {
    border-bottom: 2px solid rgb(0, 150, 136) !important;
}
.WK {
    border-bottom: 2px solid rgb(220, 53, 69) !important;
}
.TRQ {
    border-bottom: 2px solid rgb(218, 201, 38) !important;
}
.DN {
    border-bottom: 2px solid rgb(40, 167, 69) !important;
}
.DL {
    border-bottom: 2px solid rgb(121, 83, 9) !important;
}
.Fi {
    border-bottom: 2px solid rgb(220, 53, 69) !important;
}

.itemtaskcontent {
    height: 300px;
    overflow-y: scroll;
}
.itemtaskcontent img {
    max-width: 100%;
}
.form-control2 {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 15px !important;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control2:active,
.form-control2:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.1rem #14b8a6;
}

.z-index-1000 {
    z-index: 1000;
}

.z-index-100 {
    z-index: 100;
}
