:root {
    --red: hsl(0, 78%, 62%);
    --cyan: hsl(180, 62%, 55%);
    --orange: hsl(34, 97%, 64%);
    --green: hsl(147, 50%, 47%);
    --blue: hsl(212, 86%, 64%);
    --pink: hsl(300, 76%, 72%);
    --varyDarkBlue: hsl(234, 12%, 34%);
    --grayishBlue: hsl(229, 6%, 66%);
    --veryLightGray: hsl(0, 0%, 98%);
    --weight1: 200;
    --weight2: 400;
    --weight3: 600;
}

body {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

strong:first-of-type,
h5:first-of-type,
h4:first-of-type,
h3:first-of-type,
h2:first-of-type,
h1:first-of-type {
    font-weight: var(--weight3);
    color: var(--varyDarkBlue);
    font-family: 'Poppins-Bold', sans-serif;


}

h5:last-of-type {
    color: var(--varyDarkBlue);
    font-family: 'Poppins-Bold', sans-serif;

}

label{
  font-weight: var(--weight3);
  color: var(--varyDarkBlue);
}

@media (max-width: 400px) {
    h5, label {
        font-size: 1.5rem;
    }
}

h6, small, li, em {
    color: var(--varyDarkBlue);
    font-weight: var(--weight3);
}

a, li { color: var(--varyDarkBlue)}

.card {
   border-radius: 5px;
   box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);
   padding: 30px;
   margin: 20px;
}

.card img {
    float: left;
    margin-right: 10px;
}

.card-title img {
    float: left;
    margin-right: 10px;
}

.card-subtitle img {
    float: left;
    margin-right: 10px;
}

.cyan {
    border-top: 3px solid var(--cyan);
    border-radius: 5px 5px 5px 5px;
    border-bottom: 3px solid var(--cyan);
}

.red {
    border-top: 3px solid var(--red);
    border-radius: 5px 5px 5px 5px;
    border-bottom: 3px solid var(--red);
}

.blue {
    border-top: 3px solid var(--blue);
    border-radius: 5px 5px 5px 5px;
    border-bottom: 3px solid var(--blue);
}

.orange {
    border-top: 3px solid var(--orange);
    border-radius: 5px 5px 5px 5px;
    border-bottom: 3px solid var(--orange);
}

.green {
    border-top: 3px solid var(--green);
    border-radius: 5px 5px 5px 5px;
    border-bottom: 3px solid var(--green);
}

.pink {
    border-top: 3px solid var(--pink);
    border-radius: 5px 5px 5px 5px;
    border-bottom: 3px solid var(--pink);
}

.btn {
  display: none
}

/* Table Styles */
@page {
    margin: 1.5cm;
}

.fl-table {
    border: 1px solid black;
    margin: 2px;
    font-size: 12px;
    font-weight: normal;
    border-collapse: collapse;
    width: 100%;
    white-space: nowrap;
    background-color: white;
    color: var(--varyDarkBlue);
    page-break-inside: auto;
}

.fl-table tr {
  border: 2px solid #000;
  page-break-inside: auto;
}

.fl-table th {
    text-align: center;
    padding: 4px;
    font-size: 0.8rem;

}

.fl-table td {
    padding: 4px;
    font-size: 0.7rem;
    border-right: 1px solid #000 !important;
}

.fl-table th #n {
    font-size: 12px;
    border-right: 1px solid #000 !important;
    width: 1%;
}

.fl-table th #N {
    font-size: 14px;
    font-weight: bold;
    border-right: 1px solid #000 !important;
}

.fl-table th #v {
    font-size: 12px;
    border-right: 1px solid #000 !important;
}

.fl-table td .img {
  display: none
}
