*{
    margin: 0;
    padding: 0;

    font-family: 'Inter', sans-serif;
}


body{
    background-color: #F7F9FB;
}

a{
    text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.loader_wrapper{
    width: 100%;
    text-align: center;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #EB001B;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin: 30px auto;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

.w-100{
    width: 100% !important;
}


.login_wrapper{
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.login_form_container > .login_logo{
    margin: 0 auto 40px;
    text-align: center;
}

.login_form{
    max-width: 90%;
    width: 500px;
    background-color: #FFFFFF;
    padding: 40px;
    border: 1px solid #E1E4E9;
    border-radius: 8px;
}

.card-login .card-header{
    margin-bottom: 32px;
    text-align: center;
}

.card-login .card-header h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}


.card-login .card-header p{
    font-size: 14px;
    font-weight: 400;
    color: #817F9B;
}

.bmd-form-group{
    width: 100%;
    margin-bottom: 16px;
}

.bmd-form-group > label{
    color: #131D3B;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.input-group{
    width: 100%;
    position: relative;
}

.input-group > input{
    width: calc(100% - 106px);
    border: 1px solid #E1E5F3;
    height: 52px;
    border-radius: 8px;
    padding: 0 52px;
}

.input-group-prepend{
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.btn{
    width: 100%;
    color: #fff;
    background-color: #EB001B;
    border-radius: 8px;
    height: 42px;
    outline: none;
    border: none;
    cursor: pointer;
}

.card-footer .btn{
    margin-top: 32px;
}

.input-error{
    width: 100%;
    text-align: center;
}

.input-error > p{
    color: #EB001B;
}


.header_wrapper{
    width: calc(100% - 80px);
    margin: 20px auto;
    border-radius: 8px;
    border: 1px solid #E1E4E9;
    background-color: #FFFFFF;
}

.header_cotnainer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.logo > a > img{
    height: 40px;
}

.header_menu, .header_menu_item > a{
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_menu_item > a{
    border: 1px solid #EAEAEA;
    padding: 8px 10px;
    border-radius: 4px;
    margin-left: 10px;
}

.header_menu_item > a > img{
    margin-right: 8px;
    height: 24px;
}

.header_menu_item > a > span{
    color: #131D3B;
    font-size: 14px;
    font-weight: 500;
}

.search_wrapper{
    width: calc(100% - 80px);
    margin: 0 auto 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.search_history_wrapper{
    width: calc(100% - 80px);
    margin: 0 auto 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between; 
}

.seach_sidebar{
    border: 1px solid #E1E4E9;
    border-radius: 8px;
    background-color: #fff;
    width: 300px;
}

.sidebar_title{
    padding: 20px;
    border-bottom: 1px solid #E1E4E9;
}

.sidebar_title > p{
    font-size: 24px;
    font-weight: 600;
    color: #131D3B;
}

.sidebar_search{
    padding: 20px;
    border-bottom: 1px solid #E1E4E9;
}

.sidebar_search_input{
    width: 100%;
    position: relative;
}

.sidebar_search_input > input{
    background-color: #F4F5F6;
    border: 1px solid #B2BCCB;
    padding: 0 42px;
    height: 42px;
    width: 100%;
    border-radius: 4px;
}

.sidebar_search_input > img{
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar_filter_types{
    padding: 20px;
}

.sidebar_filter_type{
    margin-bottom: 4px;
}

.sidebar_filter_types_box{
    display: flex;
    align-items: center;
    padding: 14px 2px;
    cursor: pointer;
}

.c_checkbox{
    width: 18px;
    height: 18px;
    border: 1px solid #E1E4E9;
    border-radius: 2px;
    margin-right: 12px;
}


.sidebar_filter_types_box.checked .c_checkbox{
    background-image: url('/assets/images/check.png');
    background-size: 80% 80%;
    background-repeat: no-repeat;
    background-position: center;
}

.sidebar_filter_types_box > p{
    color: #131D3B;
    font-size: 14px;
    font-weight: 500;
}

.search_content{
    border: 1px solid #E1E4E9;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    width: calc(100% - 360px);
}

.search_header{
    border-radius: 8px;
    border: 1px solid #EAEAEA;
    background-color: #FCFDFF;
    padding: 20px;
}

.search_header_container{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.search_item{
    width: calc(18% - 10px);
}

.search_item:last-child{
    width: calc(10% - 10px);
}

.search_item >  label{
    display: block;
    color: #131D3B;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.search_item >  input{
    width: 100%;
    height: 42px;
    border-radius: 4px;
    border: 1px solid #CAD1DE;
    background-color: #FDFDFE;
    padding: 0 10px;
    color: #817F9B;
}

.search_table{
    border-radius: 8px;
    border: 1px solid #CAD1DE;
    margin: 24px 0 0;
    overflow-x: auto;
}

.table_header, .table_body_td{
    display: flex;
    justify-content: space-between;
}


.tbh{
    flex: 1;
    width: 0;
    min-width: 0;
    text-align: left;
    padding: 16px;
    border-right: 1px solid #CAD1DE;
    border-bottom: 1px solid #CAD1DE;
    display: none;
}

.tbh.show{
    display: block;
    min-width: 160px;
}

.table_header > .tbh:last-child, .table_body_td > .tbh:last-child{
    border-right: unset;
}

.table_body_td:last-child > .tbh{
    border-bottom: unset;
}


.table_header_item > p{
    color: #817F9B;
    font-size: 12px;
    font-weight: 500;
}

.table_body_item > p{
    color: #131D3B;
    font-size: 14px;
    font-weight: 500;
}

.table_body_td:nth-child(odd){
    background-color: #FAFAFE;
}


.search_history_wrapper > .search_content{
    width: 100%;
}

.search_history_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search_history_header > .sidebar_search_input{
    width: 360px;
}

.shh_title > p{
    font-size: 24px;
    color: #131D3B;
    font-weight: 600;
}

.export{
    width: 200px;
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}



