@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --primary: #019cd2;
    --secondary: #074387;
    --black: #000000;
    --white: #ffffff;
    --bgLight: #f5fcff;
    --textDark: #333333;
    --textLight: #999999;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.text_light {
    color: var(--textLight);
}

.text_dark {
    color: var(--textDark);
}

.text_white {
    color: var(--white);
}

.text_primary {
    color: var(--primary);
}

.text_secondary {
    color: var(--secondary);
}

.bg_primary {
    background: var(--primary);
}

.bg_secondary {
    background: var(--secondary);
}

.bg_light {
    background: var(--bgLight);
}

h1,
.h1 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
}

h2,
.h2 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
}

h3,
.h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

h4,
.h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}

h5,
.h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

h6,
.h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

p {
    font-size: 14px;
    line-height: 24px;
    color: var(--text_light);
    font-weight: 400;
}

.text_14 {
    font-size: 14px;
    line-height: 20px;
}

.text_16 {
    font-size: 16px;
    line-height: 28px;
}

.text_18 {
    font-size: 18px;
    line-height: 32px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: 0.5s ease;
}

a:hover {
    color: var(--secondary);
}

.fw_100 {
    font-weight: 100;
}

.fw_200 {
    font-weight: 200;
}

.fw_300 {
    font-weight: 300;
}

.fw_400 {
    font-weight: 400;
}

.fw_500 {
    font-weight: 500;
}

.fw_600 {
    font-weight: 600;
}

.fw_700 {
    font-weight: 700;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    max-width: 100%;
}


header {
    padding: 15px 0 0;
}

header .menu_wrapper {
    margin-top: 15px;
}

.btn_primary,
.btn_gray {
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn_primary i,
.btn_gray i {
    margin-right: 5px;
}

.btn_primary:before,
.btn_gray:before {
    background-color: var(--secondary);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    transform-origin: top left;
    -ms-transition: 0.4s;
}

.btn_primary:hover,
.btn_gray:hover {
    color: var(--white);
}

.btn_gray:before {
    background: var(--primary);
}

.btn_primary:hover:before,
.btn_gray:hover:before {
    height: 100%;
    width: 200%;
}

.btn_gray {
    background: #d1f1ff;
    color: var(--primary);
}

.menu_wrapper {
    background: var(--primary);
}

.navbar-nav {
    justify-content: space-between;
    width: 100%;
}

.navbar {
    padding: 0;
}

.navbar-nav .nav-item .nav-link {
    color: #cef2ff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 13px 10px;
    position: relative;
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 7px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link.active {
    color: var(--white);
}

.navbar-nav .nav-item .nav-link.active:before,
.navbar-nav .nav-item .nav-link:hover:before {
    width: calc(100% - 20px);
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--white);
}

.main_wrapper {
    min-height: calc(100vh - 186px);
    background: var(--bgLight);
    padding: 30px 0;
}

footer {
    padding: 10px 0;
    background: #020202 url(https://register.poex.com.au/common/images/footer.gif);
    color: #fff;
}

footer p {
    margin: 0;
}

.inner_wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    /* box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.05); */
    border: 1px solid #ddd;
}

.title_wrapper {
    margin: 0 0 30px;
}

.title_wrapper h3 {
    margin: 0 0 10px;
}

.title_wrapper h5 {
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.filled {
    background: var(--bgLight);
    padding: 10px;
    border-radius: 7px;
}

.form-group label {
    font-size: 14px;
    display: inline-block;
    margin: 0;
    font-weight: 500;
    color: #9d9d9d;
    letter-spacing: 0.4px;
}

.form-group label span {
    display: inline-block;
    color: #f00;
}

/* .form-group textarea.form-control {
    height: 43px;
} */

.form-group .form-control {
    padding: 10px 22px;
    border: 1px solid #ddd;
    box-shadow: none;
    font-size: 14px;
    border-radius: 8px;
}

.form-group .form-select {
    border: 1px solid #ddd;
    box-shadow: none;
    font-size: 14px;
    border-radius: 8px;
    padding: 1.625rem 2.25rem .625rem 22px;
}

.form-floating>label {
    padding: 1rem 22px;
}

.form-group .form-control:focus,
.form-group .form-select:focus {
    border-color: var(--primary);
}

.form-group.radio_outer {
    border: 1px solid #ddd;
    padding: 10px 22px;
    border-radius: 10px;
}

.form-group.radio_outer label {
    margin: 0;
}

.form-group.radio_outer>label {
    transform: scale(.85) translateY(-.3rem) translateX(-.3rem);
    opacity: 0.6;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #f7f7f7;
    opacity: 1;
}

.calculation_wrapper {
    margin-top: 30px;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 10px;
    display: block;
}

.calculation_wrapper.show {
    display: block;
}

.form-group span {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.sort_radio_wrapper .btn-group {
    padding: 5px 0;
    border: 1px solid #ddd;
    border-radius: 40px;
    background: var(--bgLight);
}

.sort_radio_wrapper .btn-group .btn-outline-primary {
    border: 0;
    margin: 0 5px;
    border-radius: 40px !important;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    padding: 8px 23px;
}

.sort_radio_wrapper .btn-group .btn-outline-primary:focus {
    box-shadow: none !important;
}

.sort_radio_wrapper .btn-group .btn-check:checked+.btn-outline-primary,
.sort_radio_wrapper .btn-group .btn-outline-primary:hover,
.sort_radio_wrapper .btn-group .btn-check:checked+.btn-outline-primary:focus {
    background: var(--primary);
    color: var(--white);
    box-shadow: none !important;
}

.button_wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top_filter_wrapper {
    margin-bottom: 20px;
}

.table_main_wrapper table {
    width: 100%;
    border-spacing: 0 6px;
    border-collapse: separate;
}

.table_main_wrapper table thead tr th {
    background: #d1f1ff;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 10px;
    white-space: nowrap;
}

.table_main_wrapper table thead tr th span {
    display: inline-block;
    padding-right: 10px;
    position: relative;
    cursor: pointer;
}

.table_main_wrapper table thead tr th span:before {
    content: "\f0dc";
    font-size: 11px;
    color: #5e5e5e;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    position: absolute;
    right: -2px;
    top: 1px;
}

.table_main_wrapper table tbody tr td {
    font-size: 13px;
    line-height: 17px;
    padding: 10px 10px;
    border-bottom: 0;
    /* background: #f5fcff; */
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
    color: #2e2e2e;
}

.table_main_wrapper table tbody tr td:first-child {
    border-left: 1px solid #f3f3f3;
    border-radius: 7px 0 0 7px;
}

.table_main_wrapper table tbody tr td:last-child {
    border-right: 1px solid #f3f3f3;
    border-radius: 0 7px 7px 0;
}

.table_main_wrapper table tbody tr:nth-child(even) td {
    background: #f5fcff;
}
.table_main_wrapper table tbody tr.red td {
    background: #FFCCCC;
}
.table_main_wrapper table tbody tr.highlight td {
    background: #ffefef !important;
}

.table_main_wrapper table tbody tr td a {
    color: var(--textDark);
    font-weight: 500;
    display: inline;
}

.table_main_wrapper table tbody tr td a:hover {
    color: var(--primary);
}

.edit_btn {
    width: 30px;
    height: 30px;
    background: var(--white);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.edit_btn:hover {
    background: var(--primary);
    color: var(--white) !important;
}

.table_main_wrapper table thead tr th:first-child {
    border-radius: 7px 0 0 7px;
}

.table_main_wrapper table thead tr th:last-child {
    border-radius: 0 7px 7px 0;
}

.pagination_wrapper {
    margin-top: 30px;
}

.pagination {
    justify-content: center;
}

.pagination .page-item {
    padding: 0 4px;
}

.pagination .page-link {
    padding: 0;
    border-radius: 50% !important;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.page-item:not(:first-child) .page-link {
    margin-left: 0;
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.radio_Wrapper {
    display: flex;
    align-items: center;
}

.radio_Wrapper .form-check {
    margin-right: 30px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    box-shadow: none;
}

.action_button_wrapper ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.action_button_wrapper ul li {
    width: calc(100% / 5 - 5px);
}

.action_button_wrapper ul .btn_primary {
    font-size: 12px;
    padding: 6px 20px;
    width: 100%;
}

.confirmation_msg_wrap {
    text-align: center;
}

.confirm_modal .modal-header {
    padding: 0;
    border: 0;
    z-index: 99;
}

.confirm_modal .modal-body {
    padding: 45px 30px 30px;
}

.confirm_modal .modal-header .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
}

.form-group textarea.form-control.big {
    height: 100px;
}

.confirmation_msg_wrap>h4 {
    margin-bottom: 20px;
}

.navbar-toggler-icon {
    position: relative;
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 4px;
    display: none;
    
}
.navbar-toggler{
box-shadow: none !important;
    outline: none !important;
}
.navbar-toggler-icon:before {
    content: "";
    position: absolute;
    left: 0;
    top: -7px;
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 4px;
}

.navbar-toggler-icon:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 4px;
}

.login_wrapper{
    background: var(--bgLight);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.login_inner_wrapper{
    width: calc(100% - 30px);
    max-width: 600px;

}
.login_form_wrapper{
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.login_form_wrapper{
    width: 100%;
}
.logo_login{
    text-align: center;
    margin: 0 0 20px;
}


@media (max-width: 991px){
    .navbar-toggler-icon {
        display: block;
    }
        .container,
        .container-md,
        .container-sm {
            max-width: 100%;
        }
}