/* Root variables */
:root {
    /* Colors */
    --primary: #003DA6;
    --container-padding: 4vw;
    --secondary: #0080c7;
    --accent: #ef721f;
    --back-gray: #F5F5F5;
    --border-color: #E0E0E0;
    --border-radius: 10px;
    --text: #7E7E7E;
    --mildblack:#504F4F;
    --black: #333;
    /* Extend to use your own root variables */
}

* {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

div, span, dt, dd {
    color: var(--text);
}

/* Basics */
.primary {
    color: var(--primary);
}

.secondary {
    color: var(--secondary);
}

.accent {
    color: var(--accent);
}

.text {
    color: var(--text);
}

.back-gray {
    background-color: var(--back-gray);
}

.back-primary {
    background-color: var(--primary);
    color: white;
}

.back-secondary {
    background-color: var(--secondary);
    color: white;
}

.back-accent {
    background-color: var(--accent);
    color: white;
}

.back-white {
    background-color: white;
}

.white {
    color: white;
}
.black{
    color: var(--black);
}
.underlined{
    text-decoration: underline;
}

.back-f5 {
    background-color: #f5f5f5;
}

/* Typography */
h1 {
    font-size: 25px;
    font-weight: bold;
    color: var(--black);
    line-height: 1.4;
}

h1 span {
    font-weight: bold;
    color: var(--accent);
}

h2 {
    font-size: 25px;
    line-height: 1.4;
    color: var(--primary);
    font-weight: bold;
}

h3, .h3 {
    font-size: 25px;
    font-weight: 400;
    color: var(--black);
}

h4, .h4 {
    font-size: 16px;
    color: var(--black);
    line-height: 1.4;
    font-weight: bold;
}

h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

h5 > span {
    font-weight: normal;
}
h6{
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
}

p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: var(--text);
}

.view-more {
    font-weight: bold;
    color: var(--secondary);
}

.view-more:after {
    content: '';
    display: inline-block;
    height: 6px;
    width: 6px;
    margin-left: .5rem;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    position: relative;
    top: -2px;
}

/* Buttons */
.btn {
    min-height: 40px;
    display: flex;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    justify-content: center;
    padding: 0.5rem 1rem;
    vertical-align: middle;
    align-items: center;
    border: 1px solid var(--border-color, #CDCECF);
    border-radius: 5px;
}

.btn-white {
    background-color: white;
    color: var(--accent);
    border-color: white;
}
.black{
    color: #333333;
}

.btn-blue{
    background: var(--secondary);
    color: white;
    border: 1px solid var(--secondary);
}


/* Borders */
.border-top {
    border-top: 1px solid var(--border-color);
}

.border-bottom {
    border-bottom: 1px solid var(--border-color);
}

small {
    font-size: 13px;
    font-weight: bold;
}
.date{
    background: var(--primary);
    width: max-content;
    color: white;
    font-weight: 600;
    padding:.15rem .25rem;
    font-size: 14px;
    text-align: center;
}

.btn-icon{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border:1px solid #eee;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
}

.btn-icon.active{
    background: #0080c7;
    color: white;
}

.btn-icon:hover{
  background-color: #f7f8f9;
}

.btn-icon:active{
  background-color: #f2f2f2;
}

.btn-icon i{
  font-size: 1rem;
}

p > a, ul li > a{
    color: var(--secondary);
}
