body{
    margin: 0;
    height: 100%;
    width: calc(100vw - (100vw - 100%));
}

.btn {
    border: 2px solid var(--very-black);
    color: var(--very-black);
    padding: 12px 14px;
    border-radius: 5px;
    font-family: "Karla";
    font-size: var(--fs-xxs);
    font-weight: 600;
    cursor: pointer;
    margin: auto;
    
    font-style: normal;
}

.btn-white {
    background: rgba(255, 255, 255, 0);
    border-color: var(--light-white);
    color: var(--light-white);
    transition: background .3s;
}

.btn-white:hover {
    background: rgba(255, 255, 255, .2);
    color: var(--light-white);
}

.btn-black {
    background: rgba(0, 0, 0, 0);
    border-color: var(--night);
    color: var(--night);
    transition: background .3s;
}

.btn-black:hover {
    background: rgba(0, 0, 0, .1);
    color: var(--night);
}

.float-l{
    float: left;
}

.float-r{
    float: right;
}

/* ------------------------------------------------------- */
/* ------------------------------------------------------- */
/* ------------------------ TABLE ------------------------ */
/* ------------------------------------------------------- */
/* ------------------------------------------------------- */

table {
    font-family: "Karla";
    font-size: var(--fs-xxs);
    font-weight: normal;
    line-height: var(--fl-m);
    height: 150px;
    border-collapse: collapse;
    width: 100%;
    padding: 24px;
    font-style: normal;
}

tr:nth-child(even){
    background-color: #ffffff;
}
tr{
    background-color: #f2f2f2;
}

td{
    padding: 16px;
    width: 70%;
}
td:nth-child(even){
    width: 30%;
    padding-left: 32px;
}