/****************************** CSS FOR FORM LOGIN ***********************************************/
.content-login {
    background: url(/assets/img/index.png) no-repeat center top fixed;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 50px;
    height: 100vh;
    overflow-y: auto;
}

.container-login .form-control {
    background-color: #f8f9fa6e;
}

.container-login {
    border-radius: 30px;
    min-height: 100px;
    background-color: #ffffffe6;
    padding: 40px 30px;
    max-width: 540px;
}

.container-login .titlecolor {
    color: green;
    font-size: 25px;
}

.container-login .col-form-label {
    padding-top: calc(0.4375rem + 1px);
    padding-bottom: calc(0.4375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
    padding: 17px 5px 0 0;
    text-align: right;
}

.container-login .logocustom {
    margin-right: 10px;
    max-width: 20px;
}

.container-login .login-button {
    position: relative;
    z-index: 0;
    overflow: hidden;
    color: #d53e33;
    font-weight: bold;
    border-color: #399953;
    background-color: #399953;
}

.login-button:hover,
a:hover {
    color: #399953;
}

.login-button::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: #399953;
    background-repeat: no-repeat;
    background-size:
        50% 50%,
        50% 50%;
    background-position:
        0 0,
        100% 0,
        100% 100%,
        0 100%;
    background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300),
        linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
    animation: rotate 4s linear infinite;
}

.login-button::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    background: #fff;
    color: #d53e33;
    border-radius: 5px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

/********************************************* CSS for DashBoard ******************************************************/
.hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
    background: #f8f9fa;
    border-radius: 20px;
}

.hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    padding: 5px 20px;
}

.hovereffect img {
    display: block;
    position: relative;
    max-width: none;
    width: calc(100% + 20px);
    -webkit-transition:
        opacity 0.35s,
        -webkit-transform 0.35s;
    transition:
        opacity 0.35s,
        transform 0.35s;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hovereffect:hover img {
    opacity: 0.4;
    filter: alpha(opacity=40);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.hovereffect h2 {
    text-transform: uppercase;
    color: rgb(148, 25, 25);
    text-align: center;
    position: relative;
    font-size: 20px;
    overflow: hidden;
    padding: 0.1em 0;
    background-color: transparent;
}

.hovereffect h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(148, 25, 25);
    content: '';
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.hovereffect:hover h2:after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.hovereffect a,
.hovereffect p {
    color: rgb(148, 25, 25);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition:
        opacity 0.35s,
        -webkit-transform 0.35s;
    transition:
        opacity 0.35s,
        transform 0.35s;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.hovereffect:hover a,
.hovereffect:hover p {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.set:hover {
    cursor: pointer;
}

.rainbow {
    position: relative;
    z-index: 0;
    border-radius: 10px;
    overflow: hidden;
    padding: 1rem;
    font-weight: bold;
    color: #dee2e6;
    font-size: 11px;
}

.rainbow::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: #399953;
    background-repeat: no-repeat;
    background-size:
        50% 50%,
        50% 50%;
    background-position:
        0 0,
        100% 0,
        100% 100%,
        0 100%;
    background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300),
        linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
    animation: rotate 4s linear infinite;
}

.border-radius {
    border-radius: 25px;
}

.rainbow::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    background: #001f3f;
    border-radius: 5px;
}

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

.setwidth {
    max-width: 200px;
}

.head {
    padding-top: 12px;
    padding-bottom: 12px;
    background: cadetblue;
}

.Fright {
    float: right;
}

.body_content {
    padding: 0.2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background: #222;
    background-image: repeating-linear-gradient(to bottom,
            transparent 7px,
            rgba(0, 0, 0, 0.8) 9px,
            rgba(0, 0, 0, 0.8) 13px,
            transparent 13px);
}

.body_head {
    padding: 0.2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #222;
    height: 10vh;
    background-image: repeating-linear-gradient(to bottom,
            transparent 7px,
            rgba(0, 0, 0, 0.8) 9px,
            rgba(0, 0, 0, 0.8) 13px,
            transparent 13px);
}

.padding-left-25 {
    padding-left: 0;
}

.colorgreen {
    color: #8bc34a;
}

.logoimg {
    width: 200px;
}

.blind {
    font-size: 30px;
    /* line-height: calc(20px + 20vh);
    /*   text-shadow: 0 0 5px #f562ff, 0 0 15px #f562ff, 0 0 25px #f562ff,
        0 0 20px #f562ff, 0 0 30px #890092, 0 0 80px #890092, 0 0 80px #890092;
      color: #fccaff; */
    text-shadow:
        0 0 5px #ffa500,
        0 0 15px #ffa500,
        0 0 20px #ffa500,
        0 0 40px #ffa500,
        0 0 60px #ff0000,
        0 0 10px #ff8d00,
        0 0 98px #ff0000;
    color: #fff6a9;
    font-family: 'Sacramento', cursive;
    text-align: center;
    animation: blink 12s infinite;
    -webkit-animation: blink 12s infinite;
}

@-webkit-keyframes blink {

    20%,
    24%,
    55% {
        color: #111;
        text-shadow: none;
    }

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        /*     color: #fccaff;
        text-shadow: 0 0 5px #f562ff, 0 0 15px #f562ff, 0 0 25px #f562ff,
          0 0 20px #f562ff, 0 0 30px #890092, 0 0 80px #890092, 0 0 80px #890092; */
        text-shadow:
            0 0 5px #ffa500,
            0 0 15px #ffa500,
            0 0 20px #ffa500,
            0 0 40px #ffa500,
            0 0 60px #ff0000,
            0 0 10px #ff8d00,
            0 0 98px #ff0000;
        color: #fff6a9;
    }
}

@keyframes blink {

    20%,
    24%,
    55% {
        color: #111;
        text-shadow: none;
    }

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        /*     color: #fccaff;
        text-shadow: 0 0 5px #f562ff, 0 0 15px #f562ff, 0 0 25px #f562ff,
          0 0 20px #f562ff, 0 0 30px #890092, 0 0 80px #890092, 0 0 80px #890092; */
        text-shadow:
            0 0 5px #ffa500,
            0 0 15px #ffa500,
            0 0 20px #ffa500,
            0 0 40px #ffa500,
            0 0 60px #ff0000,
            0 0 10px #ff8d00,
            0 0 98px #ff0000;
        color: #fff6a9;
    }
}

@media screen and (max-width: 1024px) {
    .blind {
        font-size: 20px;
        text-shadow:
            0 0 5px #ffa500,
            0 0 15px #ffa500,
            0 0 20px #ffa500,
            0 0 40px #ffa500,
            0 0 60px #ff0000,
            0 0 10px #ff8d00,
            0 0 98px #ff0000;
        color: #fff6a9;
        font-family: 'Sacramento', cursive;
        text-align: center;
        animation: blink 12s infinite;
        -webkit-animation: blink 12s infinite;
    }

    .colorgreen {
        color: #8bc34a;
        font-size: 12px;
    }

    .rainbow {
        position: relative;
        z-index: 0;
        border-radius: 10px;
        overflow: hidden;
        padding: 1rem;
        font-weight: bold;
        color: #dee2e6;
        font-size: 10px;
    }

    .setwidth {
        max-width: 180px;
    }

    .logoimg {
        width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .mgt-10 {
        margin-top: 10px !important;
    }

    .container-login {
        border-radius: 10px !important;
        min-height: 100px;
        background-color: #ffffffe6;
        padding: 10px 10px !important;
        max-width: 540px;
    }

    .imglogin {
        width: 150px !important;
    }

    .Loginform .ant-radio-wrapper {
        font-size: 14px !important;
        /* Increase font size for the label */
    }

    .Loginform .ant-radio-input {
        width: 18px !important;
        height: 18px !important;
    }

    .Loginform .ant-radio {
        transform: scale(1.5);
        /* Scale the entire radio */
    }

    .Loginform .ant-radio-inner {
        width: 18px !important;
        height: 18px !important;
    }

    .Loginform .ant-radio-inner::after {
        width: 12px !important;
        height: 12px !important;
    }

    .body_content {
        padding: 0.2vw;
        align-items: center;
        height: 90vh;
        display: inline;
        background: none;
        background-image: none;
    }

    .body_head {
        padding: 0.2vw;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #222;
        height: 27vh;
        text-align: center;
        padding-top: 20px;
        background-image: repeating-linear-gradient(to bottom,
                transparent 7px,
                rgba(0, 0, 0, 0.8) 9px,
                rgba(0, 0, 0, 0.8) 13px,
                transparent 13px);
    }

    .padding-left-25 {
        padding-left: 25%;
    }

    .setwidth {
        max-width: 200px;
    }
}

/* aaaaaaa */
.blindindex {
    font-size: 30px;

    text-shadow:
        0 0 3px #28a745,
        0 0 3px #28a745,
        0 0 1px #28a745,
        0 0 1px #28a745,
        0 0 1px #3d9970,
        0 0 0px #212529,
        0 0 0px #3d9970;
    color: #029047;
    font-family: 'Sacramento', cursive;
    text-align: center;
    animation: blindindex 12s infinite;
    -webkit-animation: blindindex 12s infinite;
}

@-webkit-keyframes blindindex {

    20%,
    24%,
    55% {
        color: #111;
        text-shadow: none;
    }

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        /*     color: #fccaff;
    text-shadow: 0 0 5px #f562ff, 0 0 15px #f562ff, 0 0 25px #f562ff,
      0 0 20px #f562ff, 0 0 30px #890092, 0 0 80px #890092, 0 0 80px #890092; */

        text-shadow:
            0 0 3px #28a745,
            0 0 3px #28a745,
            0 0 1px #28a745,
            0 0 1px #28a745,
            0 0 1px #3d9970,
            0 0 0px #212529,
            0 0 0px #3d9970;
        color: #029047;

        color: #029047;
    }
}

@keyframes blindindex {

    20%,
    24%,
    55% {
        color: #111;
        text-shadow: none;
    }

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        /*     color: #fccaff;
    text-shadow: 0 0 5px #f562ff, 0 0 15px #f562ff, 0 0 25px #f562ff,
      0 0 20px #f562ff, 0 0 30px #890092, 0 0 80px #890092, 0 0 80px #890092; */
        /*   text-shadow: 0 0 5px #ffa500, 0 0 4px #ffa500, 0 0 1px #ffa500, 0 0 0px #ffa500, 0 0 1px #ff0000, 0 0 0px #ff8d00, 0 0 0px #ff0000; */
        text-shadow:
            0 0 3px #28a745,
            0 0 3px #28a745,
            0 0 1px #28a745,
            0 0 1px #28a745,
            0 0 1px #3d9970,
            0 0 0px #212529,
            0 0 0px #3d9970;
        color: #029047;
        color: #029047;
    }
}

/************************   CSS cho báo cáo ***********************************/
.bg-ripe-malin {
    background-image: linear-gradient(120deg, #29a745, #28a745) !important;
}

.icon-gradient {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-ripe-Pink {
    background-image: linear-gradient(120deg, #dc3545, #f012be) !important;
}

.bg-ripe-Pink1 {
    background-image: linear-gradient(120deg, #dc3545, #08f027) !important;
}

.react-calendar__navigation {
    text-align: center;
    margin-top: 15px;
}

.centerabc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.widget-chart.text-left {
    flex-direction: row;
    align-items: center;
}

.widget-chart.text-left .icon-wrapper {
    min-width: 30px;
    margin: 3px 1rem 4px 17px;
}

.icon-wrapper {
    width: 35px;
    height: 35px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-content: center;
    align-items: center;
}

.rounded-circle {
    border-radius: 50% !important;
}

.icon-wrapper .icon-wrapper-bg {
    /* position: absolute; */
    height: 100%;
    width: 100%;
    /* z-index: 3; */
    text-align: center;
}

.opacity-10 {
    opacity: 1 !important;
}

.widget-chart.text-left .widget-chart-content {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex: 1;
    position: relative;
}

.widget-chart .widget-chart-content {
    position: relative;
    /*  z-index: 5; */
}

.widget-chart .widget-subheading:first-child {
    margin-top: 0;
}

.widget-chart .widget-subheading {
    margin: -0.5rem 0 0;
    display: block;
    opacity: 0.6;
}

.widget-chart.text-left .widget-numbers {
    margin-left: 0;
}

.widget-chart .widget-subheading+.widget-numbers {
    margin-top: 0.5rem;
}

.widget-chart .widget-numbers {
    font-weight: bold;
    font-size: 1rem;
    display: block;
    line-height: 1;
    margin: 1rem auto;
}

.setsize {
    color: palevioletred;
    font-size: 23px;
}

.padding {
    padding: 4px;
    border-radius: 11px;
    font-size: 13px;
}

.avatarCustomer {
    width: 150px;
    height: 150px;
    border: solid 5px gray;
    border-radius: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
}

.fileUpload {
    opacity: 0;
    z-index: 1;
    width: 180px;
    position: absolute;
    margin-left: 12px;
    margin-top: 5px;
    height: 40px;
    cursor: pointer;
}

.file_upload {
    opacity: 0;
    z-index: 1;
    width: 105px;
    position: absolute;
    margin-left: 15px;
    margin-top: 20px;
    height: 40px;
    cursor: pointer;
}

.width {
    width: 100px;
}

/* tra cứu vận đơn */
.sales_card_wrapper_send {
    position: relative;
    /*  background-image: linear-gradient( 
140deg
,#3c8dbc,#28a745)!important; */
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: 100% 58%; */
    background-position: top left;
    border-radius: 10px;
}

.sales_card_wrapper_rec {
    position: relative;
    /*  background-image: linear-gradient( 
140deg
,#e83e8c,red)!important; */
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: 100% 58%; */
    background-position: top left;
    border-radius: 10px;
}

.sales_card_wrapper_recHinh {
    position: relative;
    /*  background-image: linear-gradient( 
140deg
,#ffc107,#28a745)!important; */
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: 100% 58%; */
    background-position: top left;
    border-radius: 10px;
}

.white_card {
    background-color: #ffffff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.sales_card_body {
    background: #fff;
    /* border-radius: 15px; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4px;
    padding: 37px 16px 10px 10px;
    position: relative;
    margin: -7px 15px 0px 15px;
    bottom: 10px;
    border: 1px dashed;
}

.sales_card_bodyt {
    background: #fff;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 8px;
    padding: 37px 16px 10px 10px;
    position: relative;
    margin: -7px 15px 0px 15px;
    bottom: 10px;
    border: 1px dashed;
}

.sales_card_bodyservice {
    background: #fff;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 8px;
    padding: 0px 5px 5px 5px;
    position: relative;
    margin: -5px -4px 0px -6px;
    bottom: 10px;
}

.sales_card_bodyphi {
    background: #fff;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 8px;
    padding: 37px 16px 10px 10px;
    position: relative;
    margin: -7px 15px 0px 15px;
    bottom: 10px;
    border: 1px dashed;
}

.sales_card_bodyhinh {
    background: #fff;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 8px;
    padding: 37px 16px 10px 10px;
    position: relative;
    margin: -7px 15px 0px 15px;
    bottom: 10px;
    min-height: 200px;
    border: 1px dashed;
}

.sales_card_Product {
    background: #fff;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 8px;
    padding: 37px 16px 10px 10px;
    position: relative;
    margin: -7px 15px 0px 15px;
    bottom: 10px;
    border: 1px dashed;
}

.sales_card_bodyover {
    background: #fff;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 8px;
    padding: 4px 4px 2px 7px;
    position: relative;
    margin: 9px 0px 0px 0px;
    bottom: 10px;
    min-height: 200px;
    border: 1px dashed;
    text-align: left;
}

.sales_card_bodyhis {
    background: #fff;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 8px;
    padding: 37px 16px 10px 10px;
    position: relative;
    margin: -7px 15px 0px 15px;
    bottom: 10px;
    min-height: 200px;
    border: 1px dashed;
}

.sales_card_bodyNodata {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    position: relative;
    margin: -7px 15px 0px 15px;
    bottom: 10px;
    border: 1px solid #f0f0f0;
    text-align: center;
    min-height: 500px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    max-width: 480px;
    width: 100%;
}

.error-icon {
    font-size: 96px;
    color: #ff4d4f;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(255, 77, 79, 0.08);
    border-radius: 50%;
}

.error-message {
    font-size: 26px;
    font-weight: 700;
    color: #ff4d4f;
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin: 10px 0 0 0;
}

.error-subtitle {
    font-size: 15px;
    color: #8c8c8c;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 10px;
}

.year-picker-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 320px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.picker-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #262626;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.label-icon {
    font-size: 18px;
    color: #ff4d4f;
    flex-shrink: 0;
}

.picker-input-wrapper {
    width: 100%;
}

.year-picker-input {
    width: 100% !important;
}

.year-picker-input .ant-picker {
    width: 100% !important;
    border-radius: 6px !important;
    border: 1px solid #d9d9d9 !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    height: 40px !important;
    transition: all 0.3s ease !important;
}

.year-picker-input .ant-picker:hover {
    border-color: #ff7875 !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.06) !important;
}

.year-picker-input .ant-picker:focus-within {
    border-color: #ff4d4f !important;
    box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.12) !important;
}

.search-btn {
    width: 100% !important;
    height: 38px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    margin-top: 8px !important;
    letter-spacing: 0.3px !important;
    border: 0 !important;
}

.search-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.25) !important;
}

.export_btn img {
    border-radius: 5px;
}

.export_btn {
    background: #4caf50;
    font-size: 14px;
    font-weight: 400;
    color: white;
    border-radius: 4px;
    padding: 10px 15px;
    display: inline-block;
    border: 0;
    z-index: 2;
    position: relative;
    margin-left: 80px;
}

.export_btngreen {
    background: #fdfdfd;
    font-size: 14px;
    font-weight: 400;
    color: #e91e63;
    border-radius: 4px;
    padding: 10px 15px;
    display: inline-block;
    border: 0;
    z-index: 2;
    position: relative;
    margin-left: 80px;
}

.export_btn_fast {
    background:  white;
    font-size: 16px;
    font-weight: 600;
    color: #4caf50;
    border-radius: 4px;
    padding: 10px 15px;
    display: inline-block;
    border: 0;
    z-index: 2;
    position: relative;
    margin-left: 80px;
    text-transform: uppercase
}

.export_btngreen_fast {
    background: #fdfdfd;
    font-size: 16px;
    font-weight: 600;
    color: #e91e63;
    border-radius: 4px;
    padding: 10px 15px;
    display: inline-block;
    border: 0;
    z-index: 2;
    position: relative;
    margin-left: 80px;
    text-transform: uppercase
}

.justify-content {
    -ms-flex-pack: end !important;
    justify-content: center;
}

.white_card_header {
    text-align: left;
    padding-left: 6px;
}

.inforcus .single_sales {
    font-size: 12px;
    padding: 1px;
}

.single_sales span {
    font-style: italic;
    font-weight: bold;
    color: #6c757d;
}

.sales_card_body img {
    vertical-align: middle;
    border-style: none;
    position: absolute;
    top: -23px;
    border-radius: 5px;
}

.sales_card_bodyt img {
    vertical-align: middle;
    border-style: none;
    position: absolute;
    top: -23px;
    border-radius: 5px;
}

.sales_card_bodyphi img {
    vertical-align: middle;
    border-style: none;
    position: absolute;
    top: -23px;
    border-radius: 5px;
}

.sales_card_bodyhinh .imh {
    vertical-align: middle;
    border-style: none;
    position: absolute;
    top: -23px;
    border-radius: 5px;
}

.sales_card_bodyhis img {
    vertical-align: middle;
    border-style: none;
    position: absolute;
    top: -23px;
    border-radius: 5px;
}

.ladingtracking .single_sales {
    font-size: 12px;
    padding: 0px;
}

.ladingtracking {
    min-height: 500px;
}

.bold {
    font-weight: bolder !important;
    color: #1f2d3d !important;
}

.sales_card_bodyhinh .single_sales img {
    width: 60px !important;
}

/* Container around content */
.sales_card_bodyhis .container {
    padding: 1px 1px 0px 42px;
    position: relative;
    background-color: inherit;
    width: 100%;
}

/* The circles on the timeline */
.sales_card_bodyhis .timeshow::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -15px;
    background-color: white;
    border: 2px solid #3d9970;
    top: 35px;
    border-radius: 50%;
    z-index: 1;
    left: 20px;
}

.margin-bottom-35 {
    margin-bottom: 35px !important;
}

/* Add arrows to the left container (pointing right) */
.sales_card_bodyhis .left::before {
    content: ' ';
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

/* The actual content */
.sales_card_bodyhis .contenttl {
    padding: 24px 10px 1px 28px;
}

.sales_card_bodyhis .contenttl_2 {
    padding: 0px 0px 15px 27px;
}

.sales_card_bodyhis .bor-bot {
    /* border-bottom: 1px dashed; */
    box-shadow: 1px 1px #28a745;
}

.contenttl .timeshow {
    background: #ffc107;
    /* left: -55px; */
    margin-left: -12px;
    margin-top: -16px;
    z-index: 2222222;
    border-radius: 10px;
    text-align: center;
    width: 145px;
    padding: 5px;
    font-weight: bolder;
    margin-bottom: 5px;
}

.contenttl_2 .timeshow2 {
    background: #8BC34A;
    margin-left: -6px;
    z-index: 2222222;
    border-radius: 5px;
    text-align: center;
    width: 120px;
    padding: 4px 4px 4px 7px;
    font-weight: bolder;
    margin-bottom: 5px;
    margin-right: 10px;
    color: black;
}

.contenttl_2 .timeshow3 {
    background: #bd2f24;
    margin-left: -6px;
    z-index: 2222222;
    border-radius: 5px;
    text-align: center;
    width: 280px;
    padding: 4px 4px 4px 7px;
    font-weight: bolder;
    margin-bottom: 5px;
    margin-right: 10px;
    color: white;
}

.contenttl_2 ._span1 {
    color: black;
    font-style: normal;
    font-weight: 700;
}

._span2 {
    font-weight: bolder !important;
    font-style: normal !important;
    color: black !important;
    padding: 5px;
}

._map {
    margin: 7px 4px;
    padding-left: 35px;
}

.dvtn #chart {
    max-height: 151px !important;
}

.nodatachart {
    background: white;

    z-index: 222;
    margin-top: -143px;
    padding-top: 23px;
    width: 158px;
    text-align: center;
    height: 147px;
    padding-left: 20px;
}

.nodatachart1 {
    background: white;
    z-index: 222;
    margin-top: -132px;
    padding-top: 23px;
    text-align: center;
    height: 130px;
}

.fiximg {
    vertical-align: middle;
    border-style: none;
    position: absolute;
    top: -23px;
    border-radius: 5px;
}

.sales_card_bodyhis .font14 {
    font-size: 14px;
}

.font14 {
    font-size: 14px;
}

.font12 {
    font-size: 12px;
}

.upper {
    text-transform: uppercase !important;
}

.font20 {
    font-size: 20px;
}

.TopTK {
    z-index: 22222;
    position: relative;
    margin-top: -10px;
    font-size: 12px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {

    /* Place the timelime to the left */
    .sales_card_bodyhis .timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .sales_card_bodyhis .container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    /* Make sure that all arrows are pointing leftwards */
    .sales_card_bodyhis .container::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .sales_card_bodyhis .left::after,
    .right::after {
        left: 15px;
    }
}

.wrap {
    white-space: break-spaces;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uppercase {
    text-transform: uppercase !important;
    font-size: 16px;
}

.lmenu {
    font-size: 14px;
}

.lmenulevel {
    width: 240px;
    font-size: 12px;
}

.lmenulevel i {
    margin-right: 4px;
}

.leftmenu .active {
    background: #125743;
}

.is-focused [class^='bmd-label'],
.is-focused [class*=' bmd-label'] {
    color: #008d4c;
}

/* ***********THỐNG KÊ ********** */
#DZ_W_TimeLine1 {
    padding: 3px;
    margin-bottom: -44px;
}

.widget-timeline {
    position: relative;
    /* height: 290px; */
}

.timeline-panel {
    box-shadow:
        0 0 1px rgb(0 0 0 / 13%),
        0 1px 3px rgb(0 0 0 / 20%);
}

.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
}

.dz-scroll {
    position: relative;
}

.widget-timeline .timeline {
    list-style: none;
    position: relative;
}

.widget-timeline .timeline:before {
    top: 20px;
    bottom: 0;
    position: absolute;
    content: ' ';
    width: 3px;
    left: 9px;
    margin-right: -1.5px;
    background: #ebeef6;
}

.widget-timeline .timeline>li {
    margin-bottom: 10px;
    position: relative;
}

.widget-timeline .timeline>li:before {
    content: ' ';
    display: table;
}

.widget-timeline .timeline>li>.timeline-badge {
    border-radius: 50%;
    height: 22px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 22px;
    border-width: 2px;
    border-style: solid;
    background: #fff;
    padding: 4px;
}

.widget-timeline .timeline-badge.primary {
    border-color: #ecf2ff;
}

.widget-timeline .timeline-badge.primary:after {
    background-color: #3a7afe !important;
    box-shadow: 0 5px 10px 0 rgb(58 122 254 / 20%);
}

.widget-timeline .timeline>li>.timeline-badge:after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    display: block;
}

.widget-timeline.style-1 .timeline .timeline-badge.primary+.timeline-panel {
    border-color: #3a7afe;
}

.widget-timeline.style-1 .timeline .timeline-badge.timeline-badge+.timeline-panel {
    background: transparent !important;
    border-style: solid;
    border-width: 0 0 0 5px;
    border-radius: 0;
    padding: 5px 10px 5px 15px;
}

.widget-timeline .timeline-badge.primary+.timeline-panel {
    background: #ecf2ff;
    border-color: #ecf2ff;
}

.widget-timeline .timeline>li>.timeline-panel {
    border-radius: 0.375rem;
    padding: 15px 20px;
    position: relative;
    display: block;
    margin-left: 35px;
    border-width: 1px;
    border-style: solid;
}

.widget-timeline .timeline>li>.timeline-panel span {
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.text-primary {
    color: #3a7afe !important;
}

.widget-timeline.style-1 .timeline .timeline-badge.primary+.timeline-panel:after {
    background: #3a7afe;
}

.widget-timeline.style-1 .timeline .timeline-badge.timeline-badge+.timeline-panel:after {
    border: 0;
    left: -9px;
    width: 7px;
    height: 7px;
}

.widget-timeline .timeline>li>.timeline-panel:after {
    content: '';
    width: 10px;
    height: 10px;
    background: inherit;
    border-color: inherit;
    border-style: solid;
    border-width: 0px 0px 1px 1px;
    display: block;
    position: absolute;
    left: -5px;
    transform: rotate(45deg);
    top: 15px;
}

.widget-timeline .timeline-badge.info {
    border-color: #e0f7ff;
}

.widget-timeline .timeline>li>.timeline-badge {
    border-radius: 50%;
    height: 22px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 22px;
    border-width: 2px;
    border-style: solid;
    background: #fff;
    padding: 4px;
}

.widget-timeline .timeline>li>.timeline-badge {
    border-radius: 50%;
    height: 22px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 22px;
    border-width: 2px;
    border-style: solid;
    background: #fff;
    padding: 4px;
}

.widget-timeline.style-1 .timeline .timeline-badge.timeline-badge+.timeline-panel:after {
    border: 0;
    left: -9px;
    width: 7px;
    height: 7px;
}

/* danger */
.widget-timeline.style-1 .timeline .timeline-badge.danger+.timeline-panel {
    border-color: #f25767;
}

.widget-timeline .timeline-badge.danger {
    border-color: #fde5e7;
}

.widget-timeline .timeline-badge.danger:after {
    background-color: #f25767 !important;
    box-shadow: 0 5px 10px 0 rgb(242 87 103 / 20%);
}

.widget-timeline.style-1 .timeline .timeline-badge.danger+.timeline-panel:after {
    background: #f25767;
}

/* success */
.widget-timeline.style-1 .timeline .timeline-badge.success+.timeline-panel {
    border-color: #17ad30;
}

.widget-timeline .timeline-badge.success {
    border-color: #61d77569;
}

.widget-timeline .timeline-badge.success:after {
    background-color: #17ad30 !important;
    box-shadow: 0 5px 10px 0 rgb(242 87 103 / 20%);
}

.widget-timeline.style-1 .timeline .timeline-badge.success+.timeline-panel:after {
    background: #17ad30;
}

/* yellow */
.widget-timeline.style-1 .timeline .timeline-badge.yellow+.timeline-panel {
    border-color: #bbce14;
}

.widget-timeline .timeline-badge.yellow {
    border-color: #bbce1494;
}

.widget-timeline .timeline-badge.yellow:after {
    background-color: #bbce14 !important;
    box-shadow: 0 5px 10px 0 rgb(242 87 103 / 20%);
}

.widget-timeline.style-1 .timeline .timeline-badge.yellow+.timeline-panel:after {
    background: #bbce14;
}

/* pink */
.widget-timeline.style-1 .timeline .timeline-badge.pink+.timeline-panel {
    border-color: #d3388d;
}

.widget-timeline .timeline-badge.pink {
    border-color: #d3388d73;
}

.widget-timeline .timeline-badge.pink:after {
    background-color: #d3388d !important;
    box-shadow: 0 5px 10px 0 rgb(242 87 103 / 20%);
}

.widget-timeline.style-1 .timeline .timeline-badge.pink+.timeline-panel:after {
    background: #d3388d;
}

/* blue */
.widget-timeline.style-1 .timeline .timeline-badge.blue+.timeline-panel {
    border-color: #4f29b9;
}

.widget-timeline .timeline-badge.blue {
    border-color: #a397c4;
}

.widget-timeline .timeline-badge.blue:after {
    background-color: #4f29b9 !important;
    box-shadow: 0 5px 10px 0 rgb(242 87 103 / 20%);
}

.widget-timeline.style-1 .timeline .timeline-badge.blue+.timeline-panel:after {
    background: #4f29b9;
}

/* oranges */
.widget-timeline.style-1 .timeline .timeline-badge.oranges+.timeline-panel {
    border-color: #e29127;
}

.widget-timeline .timeline-badge.oranges {
    border-color: #efc68f;
}

.widget-timeline .timeline-badge.oranges:after {
    background-color: #e29127 !important;
    box-shadow: 0 5px 10px 0 rgb(242 87 103 / 20%);
}

.widget-timeline.style-1 .timeline .timeline-badge.oranges+.timeline-panel:after {
    background: #e29127;
}

.fonttotal {
    font-weight: bolder;
    font-size: 15px;
}

.left50 {
    margin-left: 50px;
}

.mar-top-10 {
    margin-top: 10px;
}

.martop-20 {
    margin-top: -20px;
}

.w3-animate-left {
    position: relative;
    -webkit-animation: animateleft 0.4s;
    animation: animateleft 0.4s;
}

@-webkit-keyframes animateleft {
    from {
        left: -300px;
        opacity: 0;
    }

    to {
        left: 0;
        opacity: 1;
    }
}

@keyframes animateleft {
    from {
        left: -300px;
        opacity: 0;
    }

    to {
        left: 0;
        opacity: 1;
    }
}

.w3-animate-top {
    position: relative;
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

.w3-animate-left {
    position: relative;
    animation: animateleft 0.4s;
}

@keyframes animateleft {
    from {
        left: -300px;
        opacity: 0;
    }

    to {
        left: 0;
        opacity: 1;
    }
}

.w3-animate-right {
    position: relative;
    animation: animateright 0.4s;
}

@keyframes animateright {
    from {
        right: -300px;
        opacity: 0;
    }

    to {
        right: 0;
        opacity: 1;
    }
}

.w3-animate-bottom {
    position: relative;
    animation: animatebottom 0.4s;
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

/*************************** CSS FOR HOME PAGE ***************************/

@media screen and (min-height: 750px) {
    .contenthome .container-fluid {
        margin-top: 5%;
    }
}

.line1 {
    font:
        2rem/2.5rem 'Lato',
        sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.35rem;
    color: #9de7c5;
    text-shadow:
        -4px 3px 0 #424242,
        -6px 5px 0 rgba(255, 255, 255, 0.125);
    /* If I wanted to be extra-fancy, I could also define
     text-shadows in rems (instead of pixels) to make
     them resize when the font-size was adjusted */
}

.font11 {
    font-size: 11px;
}

.line6 {
    font:
        4.6rem/4.25rem 'Fredericka the Great',
        cursive;
    color: #fff;
    text-shadow:
        0 1px #2b2b2b,
        -1px 0 #000,
        -1px 2px #2b2b2b,
        -2px 1px #000,
        -2px 3px #2b2b2b,
        -3px 2px #000,
        -3px 4px #2b2b2b,
        -4px 3px #000,
        -4px 5px #2b2b2b,
        -5px 4px #000,
        -5px 6px #2b2b2b,
        -6px 5px #000,
        -6px 7px #2b2b2b,
        -7px 6px #000,
        -7px 8px #2b2b2b,
        -8px 7px #000;
}

.fontst {
    color: #d54d7b;
    font-family: 'Great Vibes', cursive;
    font-size: 16px;
    line-height: 15px;
    font-weight: normal;
    margin-bottom: 0px;
    margin-top: 9px;
    text-align: center;
    text-shadow: 0 1px 1px #12948e52;
}

* {
    box-sizing: border-box;
}

.container-homeofficer {
    border-radius: 30px;
    min-height: 100px;
    background-color: #ffffff94;
    padding: 40px 30px;
    max-width: 500px;
}

.timelineoc {
    display: flex;
    flex-direction: column;
    margin: 5px 0 0 0;
    position: relative;
}

.timeline__event {
    margin-bottom: 12px;
    position: relative;
    display: flex;
    /*  margin: 20px 0; */
    border-radius: 6px;
    align-self: center;
    max-width: 47vw;
}

.timeline__event:nth-child(2n + 1) {
    flex-direction: row-reverse;
}

.timeline__event:nth-child(2n + 1) .timeline__event__date {
    border-radius: 0 6px 6px 0;
}

.timeline__event:nth-child(2n + 1) .timeline__event__content {
    border-radius: 6px 0 0 6px;
}

.timeline__event:nth-child(2n + 1) .timeline__event__icon:before {
    content: '';
    width: 2px;
    height: 100%;
    background: #f6a4ec;
    position: absolute;
    top: 0%;
    left: 50%;
    right: auto;
    z-index: -1;
    transform: translateX(-50%);
    animation: fillTop 2s forwards 4s ease-in-out;
}

.timeline__event:nth-child(2n + 1) .timeline__event__icon:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #f6a4ec;
    position: absolute;
    right: 0;
    z-index: -1;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    animation: fillLeft 2s forwards 4s ease-in-out;
}

.timeline__event__title {
    font-size: 1.2rem;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    color: #ac5168;
    letter-spacing: 1.5px;
    margin-top: 21px;
}

.timeline__event__title2 {
    font-size: 1.2rem;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    color: #ad2648;
    letter-spacing: 1.5px;
    margin-top: 21px;
}

.timeline__event__content {
    padding: 2px;
    box-shadow:
        0 30px 60px -12px rgba(50, 50, 93, 0.25),
        0 18px 36px -18px rgba(0, 0, 0, 0.3),
        0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    background: #fff;
    width: calc(40vw - 84px);
    border-radius: 0 6px 6px 0;
}

.timeline__event__date {
    color: #f6a4ec;
    font-size: 15px;
    font-weight: 600;
    background: #9251ac;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 20px;
    border-radius: 6px 0 0 6px;
}

.timeline__event__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9251ac;
    padding: 20px;
    align-self: center;
    margin: 0 20px;
    background: #f6a4ec;
    border-radius: 100%;
    width: 40px;
    box-shadow:
        0 30px 60px -12px rgba(50, 50, 93, 0.25),
        0 18px 36px -18px rgba(0, 0, 0, 0.3),
        0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    padding: 40px;
    height: 40px;
    position: relative;
}

.timeline__event__icon i {
    font-size: 32px;
}

.timeline__event__icon:before {
    content: '';
    width: 2px;
    height: 100%;
    background: #f6a4ec;
    position: absolute;
    top: 0%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    animation: fillTop 2s forwards 4s ease-in-out;
}

.timeline__event__icon:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #f6a4ec;
    position: absolute;
    left: 0%;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    animation: fillLeftOdd 2s forwards 4s ease-in-out;
}

.timeline__event__description {
    flex-basis: 60%;
}

.timeline__event--type2:after {
    background: #555ac0;
}

.timeline__event--type2 .timeline__event__date {
    color: #87bbfe;
    background: #555ac0;
}

.timeline__event--type2:nth-child(2n + 1) .timeline__event__icon:before,
.timeline__event--type2:nth-child(2n + 1) .timeline__event__icon:after {
    background: #87bbfe;
}

.timeline__event--type2 .timeline__event__icon {
    background: #87bbfe;
    color: #555ac0;
}

.timeline__event--type2 .timeline__event__icon:before,
.timeline__event--type2 .timeline__event__icon:after {
    background: #87bbfe;
}

.timeline__event--type2 .timeline__event__title {
    color: #555ac0;
}

.timeline__event--type3:after {
    background: #24b47e;
}

.timeline__event--type3 .timeline__event__date {
    color: #aff1b6;
    background-color: #24b47e;
}

.timeline__event--type3:nth-child(2n + 1) .timeline__event__icon:before,
.timeline__event--type3:nth-child(2n + 1) .timeline__event__icon:after {
    background: #aff1b6;
}

.timeline__event--type3 .timeline__event__icon {
    background: #aff1b6;
    color: #24b47e;
}

.timeline__event--type3 .timeline__event__icon:before,
.timeline__event--type3 .timeline__event__icon:after {
    background: #aff1b6;
}

.timeline__event--type3 .timeline__event__title {
    color: #24b47e;
}

.timeline__event--type4:after {
    background: #fd7e14;
}

.timeline__event--type4 .timeline__event__date {
    color: #af5f30;
    background-color: #fd7e14;
}

.timeline__event--type4:nth-child(2n + 1) .timeline__event__icon:before,
.timeline__event--type4:nth-child(2n + 1) .timeline__event__icon:after {
    background: #af5f30;
}

.timeline__event--type4 .timeline__event__icon {
    background: #af5f30;
    color: #fd7e14;
}

.timeline__event--type4 .timeline__event__icon:before,
.timeline__event--type4 .timeline__event__icon:after {
    background: #af5f30;
}

.timeline__event--type4 .timeline__event__title {
    color: #fd7e14;
}

.timeline__event--type5:after {
    background: #edf012;
}

.timeline__event--type5 .timeline__event__date {
    color: #79711c;
    background-color: #edf012;
}

.timeline__event--type5:nth-child(2n + 1) .timeline__event__icon:before,
.timeline__event--type5:nth-child(2n + 1) .timeline__event__icon:after {
    background: #79711c;
}

.timeline__event--type5 .timeline__event__icon {
    background: #79711c;
    color: #edf012;
}

.timeline__event--type5 .timeline__event__icon:before,
.timeline__event--type5 .timeline__event__icon:after {
    background: #79711c;
}

.timeline__event--type5 .timeline__event__title {
    color: #edf012;
}

.timeline__event--type6:after {
    background: #dc3545;
}

.timeline__event--type6 .timeline__event__date {
    color: #630226de;
    background-color: #dc3545;
}

.timeline__event--type6:nth-child(2n + 1) .timeline__event__icon:before,
.timeline__event--type6:nth-child(2n + 1) .timeline__event__icon:after {
    background: #630226de;
}

.timeline__event--type6 .timeline__event__icon {
    background: #630226de;
    color: #dc3545;
}

.timeline__event--type6 .timeline__event__icon:before,
.timeline__event--type6 .timeline__event__icon:after {
    background: #630226de;
}

.timeline__event--type6 .timeline__event__title {
    color: #dc3545;
}

.timeline__event:last-child .timeline__event__icon:before {
    content: none;
}

.fixmenu {
    font-size: 12px;
    margin-top: 3px;
}

@media (max-width: 786px) {
    .timeline__event {
        flex-direction: column;
        align-self: center;
    }

    .timeline__event__content {
        width: 100%;
    }

    .timeline__event__icon {
        border-radius: 6px 6px 0 0;
        width: 100%;
        margin: 0;
        box-shadow: none;
    }

    .timeline__event__icon:before,
    .timeline__event__icon:after {
        display: none;
    }

    .timeline__event__date {
        border-radius: 0;
        padding: 20px;
    }

    .timeline__event:nth-child(2n + 1) {
        flex-direction: column;
        align-self: center;
    }

    .timeline__event:nth-child(2n + 1) .timeline__event__date {
        border-radius: 0;
        padding: 20px;
    }

    .timeline__event:nth-child(2n + 1) .timeline__event__icon {
        border-radius: 6px 6px 0 0;
        margin: 0;
    }
}

@keyframes fillLeft {
    100% {
        right: 100%;
    }
}

@keyframes fillTop {
    100% {
        top: 100%;
    }
}

@keyframes fillLeftOdd {
    100% {
        left: 100%;
    }
}

/* CSS DAY IN WEEK  */
.contente {
    position: relative;
}

.Thu h4 {
    color: #fff;
    font-size: 3em;
    /* 	position: absolute;
  transform: translate(4%, -50%); */
}

.Thu h4:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px #f1efef;
}

.Thu h4:nth-child(2) {
    color: green;
    animation: animate 4s ease-in-out infinite;
    margin-top: -65px;
}

.Thu h6 {
    color: #fff;
    font-size: 2em;
    /* 	position: absolute;
  transform: translate(4%, -50%); */
}

.Thu h6:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px #f1efef;
}

.Thu h6:nth-child(2) {
    color: green;
    animation: animate 4s ease-in-out infinite;
    margin-top: -42px;
}

@keyframes animate {

    0%,
    100% {
        clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}

/* CSS TIME LINE */
.timeline__event__date2 {
    color: #f6a4ec;
    font-size: 15px;
    font-weight: 600;
    background: #a70d1b;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 20px;
    border-radius: 6px 0 0 6px;
}

.imgtimekeeping {
    width: 78px;
    height: 78px;
    border-radius: 93px;
}

.imgscan {
    width: 50px;
    height: 25px;
    margin-top: 5px;
}

.imgtimekeeping2 {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

@keyframes battery-charging {
    0% {
        content: '\f244';
    }

    20% {
        content: '\f243';
    }

    40% {
        content: '\f242';
    }

    60% {
        content: '\f241';
    }

    80% {
        content: '\f240';
    }
}

.fa-battery-charging:before {
    content: '\f244';
    animation: 2s battery-charging infinite;
}

.contenthome {
    background: url(/assets/img/bg-5.jpg) no-repeat center top fixed;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow-y: auto;
}

/* ffffffffffff */
.calendar-container {
    position: relative;
    /* 	width: 450px; */
}

.bor-ra50 {
    border-radius: 50px;
}

.calendar-container .header {
    border-radius: 1em 1em 0 0;
    background: #029047;
    color: #fff;
    padding: 1em 2em;
    min-height: 200px;
}

.calendar-container .body {
    border-radius: 0 0 1em 1em;
    background: white;
    color: #191313;
    padding: 1em 2em;
    min-height: 200px;
    box-shadow:
        0 2px 1px rgb(0 0 0 / 20%),
        0 3px 1px #fff;
}

.day {
    font-size: 5em;
    font-weight: 900;
    line-height: 1em;
}

.month {
    font-size: 4em;
    line-height: 1em;
    text-transform: lowercase;
}

.calendar {
    background: #fff;
    border-radius: 0 0 1em 1em;
    -webkit-box-shadow:
        0 2px 1px rgba(0, 0, 0, 0.2),
        0 3px 1px #fff;
    box-shadow:
        0 2px 1px rgba(0, 0, 0, 0.2),
        0 3px 1px #fff;
    color: #555;
    display: inline-block;
    padding: 2em;
    /* min-width: 375px; */
}

.calendar thead {
    color: #e66b6b;
    font-weight: 700;
    text-transform: uppercase;
}

.calendar td {
    padding: 0.5em 1em;
    text-align: center;
}

.calendar tbody td:hover {
    background: #cacaca;
    color: #fff;
}

.current-day {
    color: #e66b6b;
}

.prev-month,
.next-month {
    color: #cacaca;
}

.ring-left,
.ring-right {
    position: absolute;
    top: 175px;
}

.ring-left1,
.ring-right1 {
    position: absolute;
    top: 220px;
}

.ring-left {
    left: 2em;
}

.ring-right {
    right: 2em;
}

.ring-left1 {
    left: 2em;
}

.ring-right1 {
    right: 2em;
}

.ring-left:before,
.ring-left:after,
.ring-right:before,
.ring-right:after {
    background: #fff;
    border-radius: 4px;
    -webkit-box-shadow:
        0 3px 1px rgba(0, 0, 0, 0.3),
        0 -1px 1px rgba(0, 0, 0, 0.2);
    box-shadow:
        0 3px 1px rgba(0, 0, 0, 0.3),
        0 -1px 1px rgba(0, 0, 0, 0.2);
    content: '';
    display: inline-block;
    margin: 8px;
    height: 32px;
    width: 8px;
}

@keyframes showTopText {
    0% {
        transform: translate3d(0, 100%, 0);
    }

    40%,
    60% {
        transform: translate3d(0, 50%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes showBottomText {
    0% {
        transform: translate3d(0, -100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.animated-title {
    color: #222;
    font-family: Roboto, Arial, sans-serif;
    height: 90vmin;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90vmin;
}

.animated-title>div {
    height: 50%;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.animated-title>div div {
    font-size: 12vmin;
    padding: 2vmin 0;
    position: absolute;
}

.animated-title>div div span {
    display: block;
}

.animated-title>div.text-top {
    border-bottom: 1vmin solid #000;
    top: 0;
}

.animated-title>div.text-top div {
    animation: showTopText 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    bottom: 0;
    transform: translate(0, 100%);
}

.animated-title>div.text-top div span:first-child {
    color: #767676;
}

.animated-title>div.text-bottom {
    bottom: 0;
}

.animated-title>div.text-bottom div {
    animation: showBottomText 0.5s;
    animation-delay: 1.75s;
    animation-fill-mode: forwards;
    top: 0;
    transform: translate(0, -100%);
}

.main {
    width: 330px;
    height: 330px;
    border: 1px solid #ccc;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
}

/********************************** Menu module in header **********************************/

.module .timeline__event__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9251ac;
    padding: 5px;
    align-self: center;
    margin: 0 10px;
    background: #f6a4ec;
    border-radius: 100%;
    width: 35px;
    box-shadow:
        0 30px 60px -12px rgb(50 50 93 / 25%),
        0 18px 36px -18px rgb(0 0 0 / 30%),
        0 -12px 36px -8px rgb(0 0 0 / 3%);
    padding: 2px;
    height: 35px;
    position: relative;
}

.module .timeline__event:nth-child(2n + 1) .timeline__event__date {
    border-radius: 0 6px 6px 0;
    padding: 9px;
}

.module .timeline__event {
    margin-bottom: 12px;
    position: relative;
    display: flex;
    border-radius: 6px;
    align-self: center;
    height: 25px;
}

.module .timeline__event__title {
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    color: #ac5168;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

.module .timeline__event__content {
    padding: 2px;
    box-shadow:
        0 30px 60px -12px rgb(50 50 93 / 25%),
        0 18px 36px -18px rgb(0 0 0 / 30%),
        0 -12px 36px -8px rgb(0 0 0 / 3%);
    background: #fff;
    width: 100%;
    border-radius: 0 6px 6px 0;
}

.module .imgtimekeeping2 {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.module .dropdown-item {
    padding: 0.4rem 1rem !important;
}

.Checkprint {
    padding-top: 30px;
    text-align: center;
}

.printbt {
    position: absolute;
    right: 0;
    top: 20px;
}

.printlenght {
    position: absolute;
    right: 0;
    top: 41pxpx;
}

/* checklist */
.cont_principal {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgb(250, 249, 247);
    background: -moz-linear-gradient(-45deg, rgba(250, 249, 247, 1) 0%, rgba(221, 218, 209, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(250, 249, 247, 1) 0%, rgba(221, 218, 209, 1) 100%);
    background: linear-gradient(135deg, rgba(250, 249, 247, 1) 0%, rgba(221, 218, 209, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faf9f7', endColorstr='#dddad1', GradientType=1);
}

.cont_centrar {
    position: relative;
    width: 500px;
}

.cont_todo_list_top {
    position: relative;
    float: left;
    width: 100%;
    height: 60px;
    margin-top: 20px;
    box-shadow: 1px 15px 25px -5px rgba(0, 0, 0, 0.3);
}

.cont_titulo_cont>h3 {
    text-spacign: 2px;
    text-align: left;
    margin-left: 25px;
    letter-spacing: 7px;
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    margin-top: 23px;
}

.cont_titulo_cont {
    position: relative;
    float: left;
    width: 430px;
    height: 60px;
    background: rgb(42, 72, 107);
    background: -moz-linear-gradient(left, rgba(42, 72, 107, 1) 0%, rgba(80, 122, 167, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(42, 72, 107, 1) 0%, rgba(80, 122, 167, 1) 100%);
    background: linear-gradient(to right, rgba(42, 72, 107, 1) 0%, rgba(80, 122, 167, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2a486b', endColorstr='#507aa7', GradientType=1);
    font-family: 'Open Sans', sans-serif;
}

.cont_add_titulo_cont {
    position: relative;
    float: left;
    width: 70px;
    height: 60px;
    background: rgb(42, 72, 107);
    background: -moz-linear-gradient(left, rgba(42, 72, 107, 1) 0%, rgba(80, 122, 167, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(42, 72, 107, 1) 0%, rgba(80, 122, 167, 1) 100%);
    background: linear-gradient(to right, rgba(42, 72, 107, 1) 0%, rgba(80, 122, 167, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2a486b', endColorstr='#507aa7', GradientType=1);
}

.cont_add_titulo_cont>a {
    display: block;
    color: #fff;
    font-size: 32px;
    margin-top: 14px;
}

body {
    background: rgb(250, 249, 247);
    background: -moz-linear-gradient(-45deg, rgba(250, 249, 247, 1) 0%, rgba(221, 218, 209, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(250, 249, 247, 1) 0%, rgba(221, 218, 209, 1) 100%);
    background: linear-gradient(135deg, rgba(250, 249, 247, 1) 0%, rgba(221, 218, 209, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faf9f7', endColorstr='#dddad1', GradientType=1);
}

.cont_crear_new {
    position: relative;
    float: left;
    width: 100%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    /* Propiedades Desactivadores */
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    height: 0px;
    margin: 0px;
}

.cont_crear_new_active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    height: 0px;
    margin: 10px 0px;
    height: 190px;
}

.cont_add_titulo_cont>a>i {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.cont_add_titulo_cont_active>a>i {
    -webkit-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
}

.tkbill .table th {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #607d8b;
}

.tkbill .table td {
    width: 33.33%;
}

.tkbill .table td select {
    width: 100%;
    padding: 10px 0px;
    background-color: #fff;
    box-shadow: 1px 5px 10px -5px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.tkbill .table td input {
    width: 93%;
    padding: 10px 2%;
    background-color: #fff;
    border: none;
    box-shadow: 1px 5px 10px -5px rgba(0, 0, 0, 0.5);
    text-align: left;
    outline: none;
}

.btn_add_fin {
    position: relative;
    padding: 10px 20px;
    background-color: #4c75a1;
    border: none;
    margin: 10px auto;
    box-shadow: 1px 5px 10px -5px rgba(0, 0, 0, 0.5);
    color: #fff;
    cursor: pointer;
}

.titl_description {
    padding-top: 10px;
    text-align: left;
    margin-left: 6%;
    position: relative;
    float: left;
}

.cont_princ_lists {
    position: relative;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.cont_princ_lists>ul>li {
    position: relative;
    float: left;
    width: 100%;
    height: 75px;
    left: 0;
    background-color: #f1f1ef;
    list-style: none;
    box-shadow: 1px 10px 20px 0px rgba(218, 215, 206, 0.8);
    z-index: 2;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.col_md_1_list {
    width: 125px;
    position: relative;
    float: left;
    height: 20px;
    top: 50%;
    margin-top: -10px;
}

.col_md_1_list>p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.col_md_2_list {
    width: 250px;
    position: relative;
    float: left;
    margin-top: 20px;
}

.col_md_2_list>h4 {
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.col_md_2_list>p {
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #999;
}

.col_md_3_list {
    width: 121px;
    position: relative;
    float: left;
    height: 14px;
    top: 50%;
    margin-top: -10px;
}

.col_md_3_list>.cont_text_date {
    text-align: right;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.col_md_3_list>.cont_text_date>p {
    text-align: right;
    margin-right: 20px;
}

.col_md_3_list:hover>.cont_btns_options {
    opacity: 1;
}

.col_md_3_list>.cont_btns_options {
    position: absolute;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #f1f1ef;
    width: 100%;
    height: 47px;
    top: 0px;
}

.col_md_3_list>.cont_btns_options>ul>li {
    position: relative;
    float: right;
    width: 100%;
    list-style-type: none;
}

.col_md_3_list>.cont_btns_options>ul>li>a {
    display: block;
    width: 20px;
    height: 15px;
    background-color: #4c75a1;
    padding: 5px 3px;
    border-radius: 50%;
    color: #fff;
    margin-top: -5px;
}

.col_md_3_list>.cont_btns_options>ul>li>a>i {
    font-size: 15px;
}

.list_dsp_none {
    display: none;
    opacity: 0;
    margin-top: 20px;
}

.list_dsp_true {
    margin: 0px;
    opacity: 1;
}

.list_work {
    z-index: 1;
}

.list_shopping>.col_md_1_list {
    border-left: 4px solid #e45;
    color: #e45;
}

.list_work>.col_md_1_list {
    border-left: 4px solid #2a476b;
    color: #2a476b;
}

.list_sport>.col_md_1_list {
    border-left: 4px solid #ef8a18;
    color: #ef8a18;
}

.list_music>.col_md_1_list {
    border-left: 4px solid #ee1e65;
    color: #ee1e65;
}

.list_finish_state {
    opacity: 0.3;
    margin: 15px 0px;
    z-index: 1;
}

.tags2 {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.tags2 li {
    float: left;
}

.tag2 {
    background: #ffc107;
    border-radius: 3px 0 0 3px;
    color: #1f2d3d;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
    font-size: 13px;
    width: 100%;
}

.tag2::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
}

.tag2::after {
    background: #fff;
    border-bottom: 13px solid #f4f6f9;
    border-left: 10px solid #ffc107;
    border-top: 13px solid #f4f6f9;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
}

.tag2:hover {
    background-color: crimson;
    color: white;
}

.tag2:hover::after {
    border-left-color: crimson;
}

/* product */

.tags {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.tags li {
    float: left;
}

.tag {
    background: #eee;
    border-radius: 3px 0 0 3px;
    color: #1f2d3d;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
    font-size: 13px;
    width: 100%;
}

.tag::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
}

.tag::after {
    background: #fff;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #eee;
    border-top: 13px solid transparent;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
}

.tag:hover {
    background-color: crimson;
    color: white;
}

.tag:hover::after {
    border-left-color: crimson;
}

.listcheck .contain {
    max-width: 450px;
    margin: 0 auto;
    border-top: 5px solid #435757;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.listcheck h1 {
    margin: 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    font-size: 1.8em;
    text-align: center;
}

.listcheck .items {
    display: flex;
    flex-direction: column;
    padding: 20px;
    counter-reset: done-items undone-items;
}

.listcheck h2 {
    position: relative;
    margin: 0;
    padding: 10px 0;
    font-size: 1.2em;
}

.listcheck .line {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: -20px;
    width: 5px;
    background-color: #435757;
}

.listcheck h2::after {
    display: block;
    float: right;
    font-weight: normal;
}

.listcheck .done {
    order: 1;
}

.listcheck .done::after {
    content: ' (' counter(done-items) ')';
}

.listcheck .undone {
    order: 3;
}

.listcheck .undone::after {
    content: ' (' counter(undone-items) ')';
}

/* hide inputs offscreen, but at the same vertical positions as the correpsonding labels, so that tabbing scrolls the viewport as expected */
.listcheck input {
    display: block;
    height: 53px;
    margin: 0 0 -53px -9999px;
    order: 4;
    outline: none;
    counter-increment: undone-items;
}

.listcheck input:checked {
    order: 2;
    counter-increment: done-items;
}

.listcheck label {
    display: block;
    position: relative;
    padding: 15px 0 15px 45px;
    border-top: 1px dashed #fff;
    order: 4;
    cursor: pointer;
    animation: undone 0.5s;
}

/* 
.listcheck label::before {
  content: '\f10c';
  display: block;
  position: absolute;
  top: 11px;
  left: 10px;
  font: 1.5em 'FontAwesome';
} */

.listcheck label:hover,
input:focus+label {
    background-color: rgba(255, 255, 255, 0.2);
}

.listcheck input:checked+label {
    order: 2;
    animation: done 0.5s;
}

.listcheck input:checked+label::before {
    content: '\f058';
    /* circle checkmark */
}

/* @keyframes done {
  0% {
    opacity: 0;
    background-color: rgba(255, 255, 255, .4);
    transform: translateY(20px);
  }
  50% {
    opacity: 1;
    background-color: rgba(255, 255, 255, .4);
  }
}

@keyframes undone {
  0% {
    opacity: 0;
    background-color: rgba(255, 255, 255, .4);
    transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    background-color: rgba(255, 255, 255, .4);
  }
} */
.bortop-dashed {
    border-bottom: 1px dashed #6c757d;
    border-left: 2px solid darkcyan;
    padding: 2px;
}

.iyes {
    font-size: 22px;
    background: #f12349;
    border-radius: 30px;
    background-image: linear-gradient(to bottom right, red, yellow);
}

.ino {
    font-size: 22px;
    background: #f12349;
    border-radius: 30px;
    background-image: linear-gradient(to bottom right, #f9f6f6, #585843);
}

.numbercheck {
    background: cadetblue;
    border-radius: 10px;
    padding: 0 7px;
    margin: 0 6px;
}

.MapOff .gm-style-iw {
    max-width: 250px !important;
}

.eyesShow {
    position: absolute;
    margin-left: -23px;
    margin-top: 11px;
    color: #607d8b;
}

#algn {
    height: 100vh;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#card {
    height: 100%;
    width: 100%;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow:
        0 4px 8px 0 #e7e9eb,
        0 6px 20px 0 #e7e9eb;
    background: #f4f8f5;
    overflow: auto;
}

#upper-bg {
    width: 100%;
    height: 15%;
    background-color: #4caf50;
    display: flex;
    justify-content: center;
    position: relative;
}

.profile-pic {
    width: 90px;
    background-color: white;
    border: 3px solid #8bc34a;
    border-radius: 50%;
    padding: 3px;
    position: absolute;
    top: 40px;
}

#lower-bg {
    width: 100%;
    /*   height: 65%; */
}

.text {
    text-align: center;
    padding-top: 35px;
}

.text .name {
    font-weight: 600;
    font-size: large;
    padding: 0;
    margin: 5px;
}

.text .title {
    padding: 0;
    margin: 0;
    font-size: 15px;
}

#icons {
    display: flex;
    justify-content: center;
    margin: 15px;
}

#icons img {
    width: 80%;
    height: 90%;
}

.ico {
    display: flex;
    justify-content: center;
    align-items: center;
}

#btn {
    display: flex;
    justify-content: center;
    margin: 15px;
}

#btn button {
    margin: 0 20px;
    padding: 10px 15px;
    background-color: #ffe400;
    border: none;
    border-radius: 50px;
    font-weight: 700;
}

#btn button:hover {
    box-shadow:
        0 4px 8px 0 #e7e9eb,
        0 6px 20px 0 #e7e9eb;
}

#l-c-s {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0px 10px;
    justify-content: space-between;
}

#l-c-s .num {
    display: flex;
}

#l-c-s .dvr {
    width: 2px;
    height: 25px;
    background-color: gray;
}

#l-c-s img {
    width: 50px;
    height: 50px;
}

.license {
    font-size: 12px;
    text-align: center;
}

.license .ll {
    padding: 0 10px;
    display: inline;
}

#container_card {
    display: flex;
    justify-content: center;
    width: auto;
    border-radius: 10px;
    cursor: pointer;
    /*  margin: 10px; */
}

#container_card section {
    display: flex;
    justify-content: center;
    align-items: center;
}

#container_card section div {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: white;
    position: relative;
    margin: 10px;
    border: 1px solid #607d8b4d;
    box-shadow:
        0 0 1px rgba(0, 0, 0, 0.125),
        0 1px 3px rgba(0, 0, 0, 0.2);
}

.Utilities .col-3 #container_card section div {
    width: 50px;
    height: 50px;
    border-radius: 10px !important;
    background: white;
    position: relative;
    margin: 10px;
    border: 1px solid #607d8b4d;
    box-shadow:
        0 0 1px rgba(0, 0, 0, 0.125),
        0 1px 3px rgba(0, 0, 0, 0.2);
}

#container_card section .aroundnone {
    width: 50px;
    height: 80px;
    border-radius: 200px;
    background: none !important;
    position: relative;
    margin: 10px;
    border: none !important;
}

#container_card section img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    /* object-position: 50% -4px; */
    position: absolute;
    bottom: 6px;
    transition: all 0.5s;
    left: 6px;
}

/* #container_card section img:hover {
  width: 90px;
  object-position: 50% -5px;
  border-radius: 0px 0px 80px 80px;
  height: 90px;
  left: -6px;
} */
.backmodule {
    position: absolute;
    right: 0;
    background: linear-gradient(45deg, #55ff00 10%, #01c0ff 90%);
    border: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 5px 10px;
    bottom: 15px;
}

.lmenu .hidden-button {
    display: none;
    background: rgb(33 142 119);
    border: none;
    position: absolute;
    right: 0px;
    padding: 0px 8px;
    z-index: 2000000;
    border-left: 1px solid #1d7e5d;
    height: 38px;
    margin-top: -9px;
}

.lmenu .hidden-button:active,
.lmenu .hidden-button:focus-visible,
.lmenu .hidden-button:focus,
.lmenu .hidden-button:active,
.lmenu button:focus {
    background: rgb(33 142 119);
    border: none;
    position: absolute;
    right: 0px;
    padding: 0px 8px;
    z-index: 2000000;
    border-left: 1px solid #1d7e5d;
    height: 38px;
    margin-top: -9px;
    outline: none !important;
}

.lmenu .hidden-button img {
    width: 20px;
}

/* Show the button when hovering over a specific element */
.lmenu .hover-container:hover .hidden-button {
    display: inline-block;
}

.mg010 {
    margin: 0px 10px;
}

.cancelicon {
    position: absolute;
    right: 11px;
    color: #d31010;
    font-size: 20px;
}

.addicon {
    position: absolute;
    right: 11px;
    color: white;
    font-size: 12px;
    background: green;
    border-radius: 30px;
    padding: 4px 5px;
}

.title-app {
    font-size: 11px;
    font-weight: bold;
    margin-left: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.Utilities .fixmar .fixmar {
    width: 100%;
}

.btn-success-radi {
    background: linear-gradient(45deg, #55ff00 10%, #01c0ff 90%);
}

.fixpost {
    position: fixed;
    background: white;
    z-index: 6;
    top: 0;
    padding-top: 10px;
    width: 100%;
}

.disablediv {
    pointer-events: none;
    opacity: 0.7;
}

.mg010 {
    margin: 0px 10px;
}

.cancelicon {
    position: absolute;
    right: 11px;
    color: #d31010;
    font-size: 20px;
}

.addicon {
    position: absolute;
    right: 11px;
    color: white;
    font-size: 12px;
    background: green;
    border-radius: 30px;
    padding: 4px 5px;
}

.title-app {
    font-size: 11px;
    font-weight: bold;
    margin-left: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.Utilities .fixmar .fixmar {
    width: 100%;
}

.btn-success-radi {
    background: linear-gradient(45deg, #55ff00 10%, #01c0ff 90%);
}

.fixpost {
    position: fixed;
    background: white;
    z-index: 6;
    top: 0;
    padding-top: 10px;
    width: 100%;
}

.disablediv {
    pointer-events: none;
    opacity: 0.7;
}

.loadingtracking {
    position: fixed;
    z-index: 9999999999999;
    background: #fbf7f76e;
    height: 100%;
    left: 0;
    top: 0;
    text-align: center;
}

.loadingtracking img {
    margin-top: 20%;
}

.bg-blue2-pastel {
    background: #03a9f478;
}

.bg-Violet-pastel {
    background: #9c27b09c;
}

.gender0 {
    padding: 10px;
    background: #8bc34a73;
}

.gender1 {
    padding: 10px;
    background: rgb(233 30 99 / 37%);
}

.mr-r-30 {
    margin-right: 30px;
}

._historyspan {
    font-style: italic !important;
    font-weight: inherit !important;
    color: #343a40 !important;
}

.tableContainerStyle {
    max-Height: 80ch;
    overflow-y: auto;
    display: block;
    background: #171225;
}

;

.tableContainerStyle table {
    width: 100% !important;
}

.tableContainerStyle ._table_small thead {
    position: sticky;
    top: 0;
    background-color: #171225;
    /* Set background color for the header */
    z-index: 8;
    /* Ensure the header stays on top of the content */
    border: 1px solid #353641;
    color: #dfe1e3;
}

.tableContainerStyle ._table_small thead th {
    font-size: 11px !important;
    padding: 5px 5px !important;
    text-align: center !important;
    border: 1px solid #353641;
}

.tableContainerStyle ._table_small thead th:hover {
    cursor: pointer;
}

.tableContainerStyle ._table_small tbody td {
    font-size: .688rem;
    padding: 2px 2px;
    color: #dfe1e3;
    border: 1px solid #353641;
    font-family: Roboto, sans-serif;

}

._table_small tbody tr:hover {
    background: #292737;
}

._table_small tr:nth-child(odd) {
    background-color: #171225;
    /* Màu xám nhạt cho các hàng lẻ */
}

._table_small tr:nth-child(even) {
    background-color: #05040e;
    /* Màu trắng cho các hàng chẵn */
}

.horizontal-slider {
    width: 100%;
    height: 5px;
}

.CustomerAnalysis .modal-content {
    background: black;
    border: 1px solid #9e9e9e52;
}

.thumb {
    height: 15px;
    width: 15px;
    background-color: #009688;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -5px;
}

.track {
    top: 0;
    bottom: 0;
    background: #ddd;
}

.fs-12 {
    font-size: 12px;
}

.fs-9 {
    font-size: 9px;
}

.fs-8 {
    font-size: 8px;
}

.CustomerAnalysis .modal-header {
    margin-top: 0px;
    display: inline-block !important;
    border-bottom: 1px solid #efefef;
    min-height: 16.428571429px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    display: -ms-flexbox;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
    background: #000000;
}

._pd-0 {
    padding: 0px !important
}

._green {
    color: #1dd63a;
    ;
}

._red {
    color: red;
}

._yellow {
    color: yellow;
}

._mg-5 {
    margin: 5px;
}

._mg-10 {
    margin: 9px 5px;
}

._red_pt {
    color: 'rgba(255, 152, 255, 1)';
}

._yellow_pt {
    color: 'rgba(255, 239, 131, 0.85)';
}

._blue_pt {
    color: 'rgba(0, 227, 150, 0.85)';
}

._loading_gif {
    width: 100%;
    height: 100vh;
    background: white;
    position: fixed;
    top: 0;
    z-index: 999999999999999999999;
    opacity: 0.3;
    text-align: center;
}

._colum_active {
    background: #2a263c;
}

._br-green {
    border-right: 1px solid #009688;
}

._bg-green {
    background: #26e7a6;
}

._bg-yellow {

    background: #fff195;
}

._bg-yellow_2 {
    color: #FF9800
}

._bg-grey {
    background: #171324
}

._Height-195 {
    height: 115px;
}

._Height-228 {
    height: 195px;
}

._Height-345 {
    height: 402px;
}

._color-w {
    color: #efe9e9 !important;
}

._color-green_2 {
    color: #1a691d !important;
}

._padding_0 {
    padding: 0px 0px !important
}
.Loginform .ant-radio-inner {
    width: 28px;
    height: 28px;
}
.Loginform .ant-radio-wrapper {
    font-size: 18px;
}
/* 

.Loginform .ant-radio-input {
    width: 22px;
    height: 22px;
}

.Loginform .ant-radio {
    transform: scale(1.5);
}



.Loginform .ant-radio-inner::after {
    width: 19px;
    height: 19px;
} */

.margin-top-5-percent {
    margin-top: 5%
}

.imglogin {
    width: 240px;
}

.mgt-10 {
    margin-top: 30px;
}
.bdrt-lg{
    border-top: 1px solid #00800063;
    margin-top: 10px;
    padding-top: 10px;
}