/* * {
    font-family: "Anonymous Pro";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

@font-face {
    font-family: "AvenirNextLTPro";
    src: url("fonts/AvenirNextLTPro-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

.font_anon{
    font-family: "Anonymous Pro";
}

.font_avir{
    font-family: "AvenirNextLTPro";
    src: url("fonts/AvenirNextLTPro-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

.font_title{
    font-family: "Libre Franklin", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

body{
    min-height: 100vh;
}

.container_base{
    margin-top: 1.5%;
    padding: 1%;
    min-height: 70vh;
    max-height: 110vh;
    width: 90%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container_center{
    display: flex;
    width: 100%;
    justify-content: center;
}

button{
    /* background: none;
    padding: none;
    color: white;
    border: none;
    font-size: 14px; */
    cursor: pointer;
}
/* 
h1 {
    font-family: "Libre Franklin", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

h2 {
    height: auto;
    width: 100%;
    font-size: 16px;
    line-height: normal;
}

h3 {
    color: #E50056;
    font-family: "Anonymous Pro";
    font-weight: 400;
    font-style: normal;
} */

/* table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
    padding: 0;
} */

th{
    background-color: black;
    color: white;
}

/* custom css classes to hide scrollbar */

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

