@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap');

:root{
    --background: #304584;

    --content: #fff;
    --cyan: #eeecec;

    --gray: #d3d3d3;
    --gray-100: #e1e1e6;
    --gray-300: #a8a8b3;
    --gray-400: rgb(148 163 184);
    --gray-800: #29292e;
    --gray-850: #1f2729;
    --gray-900: #121214;


    /*========== Font and typography ==========*/
    --body-font: 'Ubuntu', sans-serif;
    --biggest-font-size: 2.5rem;
    --h1-font-size: 3rem;
    --h2-font-size: 2.25rem;
    --h3-font-size: 1.8rem;
    --h4-font-size: 1.2rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== Font weight ==========*/
    --font-light: 100;
    --font-medium: 400;
    --font-semi-bold: 600;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@media (max-width: 1280px){
    html{
        font-size: 93.75%;
    }
}

@media (max-width: 720px){
    html{
        font-size: 87.5%;
    }
}

@media (max-width: 601px){
    html{
        font-size: 82%;
    }
}

@media (max-width: 480px){
    html{
        font-size: 70%;
    }

    img{
        max-width: 90%;
        height: auto;
    }
}

body, input, textarea, button, label, h1, h2, p {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
}

body{
    background-color: var(--gray-300);
}


tbody tr{
    height: 30px;
    transition: .3s ease;
}

.content{
    background-color: var(--content);
    padding: 8px 12px;
    margin: 8px 0;
}

.form-control{
    background: var(--gray-100);
    border: none;
    outline: none;
    padding: 10px 7.5px;
    border-radius: 4px;
    color: #304584;
    font-weight: 500;
    font-size: 1em;
    border: 1px solid #304584;
}

.detailsTemplate {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    transition:max-height .3s ease
}

table{
    width: 100%;
    margin-top: 20px;
}

table, th, tr {
    border: none !important;
    border-collapse: collapse !important;
}

thead{
    background-color: var(--gray-100) !important;
}

tbody tr{
    height: 30px;
    background-color: #fff !important;
    transition: .3s ease;
}

td, th{
    color: var(--gray-800) !important;
    font-size: .65rem!important;
    padding: 4px 2px !important;
    border-bottom: solid var(--cyan) 6px !important;
}

tbody tr:hover{
    background-color: rgb(148 163 184) !important;
}


.rows-1 {
    flex: 0 0 2%;
    max-width: 2%;
}

.rows-2 {
    flex: 0 0 6%;
    max-width: 6%;
}

.rows-3 {
    flex: 0 0 7%;
    max-width: 7%;
}

.rows-4 {
    flex: 0 0 12%;
    max-width: 12%;
}

.tb_row{
    color: var(--gray-800) !important;
    font-size: var(--smaller-font-size) !important;
    padding: 6px 2px !important;
    border-right: solid var(--cyan) 2px !important;
    font-weight: 600;
    background-color: #fff !important;
    border-bottom: solid var(--cyan) 6px !important;
}

.tb_line {
    color: var(--gray-800) !important;
    font-size: .65rem!important;
    padding: 4px 2px !important;
    font-weight: 300;
    background-color: #fff !important;
    border-bottom: solid var(--cyan) 6px !important;
}
