﻿
/*Authen*/

@font-face {
    font-family: "helveticaneue";
    src: url("../custom-css/fonts/helveticaneue/HelveticaNeue-Light.ttf") format("truetype");
}

@font-face {
    font-family: "helveticaneue";
    src: url("../custom-css/fonts/HelveticaNeue-Light.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
}

@font-face {
    font-family: "helveticaneue";
    src: url("../custom-css/fonts/helveticaneue/HelveticaNeue-Medium.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    letter-spacing: normal;
}

@font-face {
    font-family: 'poppins';
    src: url('../custom-css/fonts/poppins/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins';
    src: url('../custom-css/fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
}

@font-face {
    font-family: 'poppins';
    src: url('../custom-css/fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    letter-spacing: normal;
}



p,
h1,
h2,
h3,
h4,
h5,
a,
td,
select,
li,
input {
    font-family: poppins, helveticaneue !important;
}

.css_body_auhen {
    position: relative;
    width: 100vw;
    height: 100vh;
    /*background-image: url('../../Content/imgs//background/bg-business-team.jpg');*/
    background-size: cover;
    overflow: hidden;
}

.css_authen_section {
    padding: 20px 40px;
}

.table {
    width: 100% !important;
}

.css-tabel-container {
    overflow-y: hidden;
    overflow-x: auto;
}

.css_card {
    width: 400px;
    padding: 3% 4%;
    margin: auto;
    border-radius: 20px;
}

.css_forgot_password {
    cursor: pointer;
    transition: 1s;
}

@media (max-width: 600px) {
    .css_card {
        width: 95%;
        padding: 4%;
        margin: auto;
        border-radius: 20px;
    }
}

.css-action-th {
    width: 10%;
}

.css-table {
    width: 100%;
}

    .css-table > thead > tr > th,
    .css-table > tbody > tr > th,
    .css-table > tfoot > tr > th,
    .css-table > thead > tr > td,
    .css-table > tbody > tr > td,
    .css-table > tfoot > tr > td {
        border-top: 0;
        line-height: 1.42857;
        padding: 8px;
        vertical-align: top;
    }

.dataTables_filter {
    float: left !important;
}

.table > thead:first-child > tr:first-child > th {
    /*padding: 10px 8px !important;*/
}

.pure-material-checkbox {
    z-index: 0;
    position: relative;
    display: inline-block;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    font-size: 16px;
    line-height: 1.5;
}

    /* Input */
    .pure-material-checkbox > input {
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        z-index: -1;
        position: absolute;
        left: -7px;
        top: -2px;
        display: block;
        margin: 0;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
        box-shadow: none;
        outline: none;
        opacity: 0;
        transform: scale(1);
        pointer-events: none;
        transition: opacity 0.3s, transform 0.2s;
    }

    /* Span */
    .pure-material-checkbox > span {
        display: inline-block;
        width: 100%;
        cursor: pointer;
        color: #6f7173;
        font-size: 14px;
    }

        /* Box */
        .pure-material-checkbox > span::before {
            content: "";
            display: inline-block;
            box-sizing: border-box;
            margin: 3px 10px 3px 1px;
            border: solid 2px; /* Safari */
            border-color: #2296f3;
            border-radius: 2px;
            width: 16px;
            height: 16px;
            vertical-align: top;
            transition: border-color 0.2s, background-color 0.2s;
        }

        /* Checkmark */
        .pure-material-checkbox > span::after {
            content: "";
            display: block;
            position: absolute;
            top: 3px;
            left: 1px;
            width: 10px;
            height: 5px;
            border: solid 2px transparent;
            border-right: none;
            border-top: none;
            transform: translate(3px, 7px) rotate(-45deg);
        }

    /* Checked, Indeterminate */
    .pure-material-checkbox > input:checked,
    .pure-material-checkbox > input:indeterminate {
        background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    }

        .pure-material-checkbox > input:checked + span::before,
        .pure-material-checkbox > input:indeterminate + span::before {
            border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
        }

        .pure-material-checkbox > input:checked + span::after,
        .pure-material-checkbox > input:indeterminate + span::after {
            border-color: #2296f3;
        }

        .pure-material-checkbox > input:indeterminate + span::after {
            border-left: none;
            transform: translate(4px, 3px);
        }

    /* Hover, Focus */
    .pure-material-checkbox:hover > input {
        opacity: 0.04;
    }

    .pure-material-checkbox > input:focus {
        opacity: 0.12;
    }

    .pure-material-checkbox:hover > input:focus {
        opacity: 0.16;
    }

    /* Active */
    .pure-material-checkbox > input:active {
        opacity: 1;
        transform: scale(0);
        transition: transform 0s, opacity 0s;
    }

        .pure-material-checkbox > input:active + span::before {
            border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
        }

    .pure-material-checkbox > input:checked:active + span::before {
        border-color: transparent;
        background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    }

    /* Disabled */
    .pure-material-checkbox > input:disabled {
        opacity: 0;
    }

        .pure-material-checkbox > input:disabled + span {
            color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
            cursor: initial;
        }

            .pure-material-checkbox > input:disabled + span::before {
                border-color: currentColor;
            }

    .pure-material-checkbox > input:checked:disabled + span::before,
    .pure-material-checkbox > input:indeterminate:disabled + span::before {
        border-color: transparent;
        background-color: currentColor;
    }

.swal2-title {
    font-size: 1.275em !important;
}

table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: block;
    font-family: 'Glyphicons Halflings';
    opacity: 0;
}

.keyword-icon {
    font-size: 20px;
    margin: 6px;
    color: #767676;
    transform: rotateZ(90deg)
}

#keyword {
    border: solid 0.1px #e5e6e70d;
    /* width: 140px; */
}

.search-group {
    border: solid 1px #e5e6e7;
    width: fit-content;
}

.select2-container--default .select2-selection--single {
    background-color: #FFFFFF;
    background-image: none;
    border: 1px solid #e5e6e7;
    border-radius: 1px;
    color: inherit;
    display: block;
    padding: 6px 12px;
    height: 33px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}

.select2-dropdown {
    border: 1px solid #ddd;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #1ab394;
    border-radius: 3px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #1ab394;
    color: white;
    padding: 10px 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 3px;
    padding-right: 15px;
}

.img-circle {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: #105bab;
    background-image: url('../../Content/imgs/user.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.card-select {
    border-color: rgba(26, 179, 148, 0.3);
    background-color: rgba(26, 179, 148, 0.1);
}

    .card-select .p-name {
        color: rgba(26, 179, 148, 1);
        margin: 0px;
        font-weight: 500;
    }

    .card-select .btn-delete-times-circle {
        cursor: pointer;
        font-size: large;
        color: gray;
    }

        .card-select .btn-delete-times-circle:hover {
            cursor: pointer;
            font-size: large;
            color: red;
        }

/*table.dataTable thead tr, table.dataTable thead tr {
            padding: 10px 18px;
            border-bottom: 1.18px solid #000000;
        }

        table.dataTable thead th, table.dataTable thead td {
            padding: 10px 18px;
            border-bottom: none;
        }

        table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
            display: none;
        }*/

/*.btn {
        padding: .35rem .75rem !important;
        border: 0 !important;
    }*/

.detail-multi-line {
    white-space: pre-wrap;
}

.detail-collapsed {
    max-height: 80px;
    overflow-y: auto;
}

table.dataTable thead tr, table.dataTable thead tr {
    padding: 10px 18px;
    border-bottom: 1.18px solid #000000;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 10px 18px;
    border-bottom: none;
}

.select2-container--default .select2-selection--single {
    background-color: #FFFFFF;
    background-image: none;
    border: 1px solid #e5e6e7;
    border-radius: 1px;
    color: inherit;
    display: block;
    padding: 6px 12px;
    height: 33px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}

.select2-dropdown {
    border: 1px solid #ddd;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #1ab394;
    border-radius: 3px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #1ab394;
    color: white;
    padding: 10px 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 3px;
    padding-right: 15px;
}

.img-circle {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: #105bab;
    background-image: url('@Url.Content("~/Content/imgs/TemplateMobile/invis-user.png")');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.card-select {
    border-color: rgba(26, 179, 148, 0.3);
    background-color: rgba(26, 179, 148, 0.1);
}

    .card-select .p-name {
        color: rgba(26, 179, 148, 1);
        margin: 0px;
        font-weight: 500;
    }

    .card-select .btn-delete-times-circle {
        cursor: pointer;
        font-size: large;
        color: gray;
    }

        .card-select .btn-delete-times-circle:hover {
            cursor: pointer;
            font-size: large;
            color: red;
        }

.note-editor {
    width: 100%;
}

.select2-selection {
    width: 100% !important;
}

.css-content {
    margin-top: 21px;
}

.widget-count {
    cursor: pointer;
}

.select2-container--default .select2-selection--single {
    background-color: #FFFFFF;
    background-image: none;
    border: 1px solid #e5e6e7;
    border-radius: 1px;
    color: inherit;
    display: block;
    padding: 6px 12px;
    height: 33px !important;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}

.select2-dropdown {
    border: 1px solid #ddd;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #1ab394;
    border-radius: 3px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #1ab394;
    color: white;
    padding: 10px 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 3px;
    padding-right: 15px;
}


.authen-input {
    border-top: 0;
    border-right: 0;
    border-left: 0;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.css_body {
    background: #ddd;
}

.error-card {
    height: fit-content;
    width: fit-content;
    margin: auto;
    margin-top: 180px;
    box-shadow: 0 0 22px #00000014;
    padding: 20px;
    padding-bottom: 20px;
    border-radius: 30px;
    background: #9152f8;
    background: linear-gradient(45deg, #2b42bf 30%, #2b42bf 100%);
    /* background: -webkit-linear-gradient(top, #7579ff, #b224ef); */
    background: -o-linear-gradient(top, #7579ff, #b224ef);
    background: -moz-linear-gradient(top, #7579ff, #b224ef);
    background: linear-gradient(top, #7579ff, #b224ef);
    color: white;
}

.error-title {
    font-size: 8rem;
    background-color: transparent;
    padding: 4px;
}

.error-description {
    font-size: 1.5rem;
    transform: translateY(-20px);
}

.error-action {
    cursor: pointer;
    color: white;
}

.date-picker {
    font-size: 12px !important;
    padding-left: 12px !important;
}

.version-text {
    opacity: 0.5;
    /* position: relative; */
    /* text-align: center; */
    font-size: 10px;
    /* color: white; */
    height: -171%;
    max-height: 54%;
    margin-top: -25%;
    transform: translateY(44vh);
}

    .version-text span {
        position: absolute;
        bottom: 5px;
        left: 0;
        right: 0;
        margin: auto;
    }

.css-color-input {
    height: 34px;
    width: 20px !important;
}

table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting {
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 1px;
    padding-bottom: 15px;
}


.service-type {
    position: relative;
    cursor: pointer;
    width: fit-content;
    margin: 8px 8px;
    margin-left: 0px;
    /*height: 200px;*/
    background: #0041c3;
    color: white;
    border-radius: 8px;
    padding: 16px;
}

.css-Choose {
    position: absolute;
    width: fit-content;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.modal-scroll {
    max-height: 64vh;
    overflow-y: auto;
    overflow-x: hidden;
}
/* HIDE RADIO */
[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

    /* IMAGE STYLES */
    [type=radio] + svg {
        cursor: pointer;
    }

    /* CHECKED STYLES */
    [type=radio]:checked + svg {
        outline: 2px solid #05369cab;
        padding: 12px;
        border-radius: 16px;
        transform: scale(1.5);
        transition: 0.3s;
    }




::-webkit-scrollbar {
    width: 0.4em;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

.font-weight-bold {
    font-weight: 500 !important;
}

.mini-menu {
    overflow-y: visible !important;
    overflow-x: visible !important;
}

.companycode {
    margin-right: 36px !important;
    color: #fff;
    padding: .375rem .75rem;
    background: #05145a;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .companycode {
        margin-right: 20px !important;
    }
}

select.form-control:not([size]):not([multiple]) {
    height: 2.50rem;
}

.wrap-login100 {
    background: none;
    background-color: rgb(255 255 255);
    color: black;
}

.login100-form-title {
    color: black;
}

.input100 {
    color: black;
}

.uppeercase {
    text-transform: uppercase !important;
}

::placeholder {
    text-transform: capitalize !important;
}

.focus-input100 {
    color: black;
}

input::-webkit-input-placeholder {
    color: black;
}

.focus-input100::before {
    background: #0041c3;
}

.css_body_auhen {
    background-image: none;
    z-index: unset;
    background-color: rgb(0 15 44);
}

.focus-input100::after {
    color: #0041c3;
}

.login100-form-btn::before {
    color: #ffffff !important;
    background: #0041c3 !important;
}

.login100-form-btn {
    color: #ffffff !important;
    background: #0041c3cc !important;
}

.label-checkbox100 {
    color: black;
}

.txt1 {
    color: black;
}

@media only screen and (min-width: 700px) {

    .wrap-login100 {
        padding-top: 0;
        padding: 54px 32px;
    }

    .input100 {
        height: 30px;
    }

    .focus-input100::after {
        top: -2px;
    }

    .login100-form-btn {
        height: 36px;
    }

    .contact100-form-checkbox {
        padding-bottom: 15px;
    }

    .wrap-login100 {
        width: 378px;
    }


    img {
        width: 50%
    }

    .login100-form-title small {
        font-size: 30% !important
    }

    .wrap-input100 {
        margin-bottom: 24px;
    }

    .login100-form-btn {
        font-size: 13px;
        min-width: 94px;
    }
}

.footer-login {
    position: absolute;
    bottom: 0.7vw;
    z-index: 9999;
    width: 100%;
    opacity: 0.6;
}

.footer_copyright {
    width: 100%;
    line-height: 0.2;
    color: floralwhite !important;
}

    .footer_copyright p {
        color: floralwhite !important;
    }
