﻿.notaBene {
    background-color: #e6e6e6;
    padding: 10px;
    font-weight: normal;
    font-style: italic;
    font-family: var(--v-font-primary);
}

.normalText {
    font-weight: initial;
}

.open-sans {
    font-family: var(--v-font-secondary);
}

.boldUppercaseTitle {
    color: var(--v-grey);
    font-family: var(--v-font-primary);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1em;
    letter-spacing: -2px;
}

.boldUppercaseTitle:after {
    content: ""; /* This is necessary for the pseudo element to work. */
    display: block; /* This will put the pseudo element on its own line. */
    width: 50px; /* Change this to whatever width you want. */
    padding-top: 15px; /* This creates some space between the element and the border. */
    border-bottom: 2px solid var(--v-primary); /* This creates the border. Replace black with whatever color you want. */
}

.orangeButton {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    background: var(--v-primary-gradient);
    margin-top: 20px;
    text-decoration: none;
}

.orangeButton:hover {
    color: rgba(255, 255, 255, 0.85) !important;
    filter: brightness(0.9) !important;
    text-decoration: none;
}

.greenButton {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    background-color: var(--v-secondary);
    text-transform: uppercase;
    text-decoration: none;
}

.lightButton {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    text-decoration: none;
}

.lightButton:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
    text-decoration: none;
}

.accordionButton {
    display: inline-block;
    font-family: var(--v-font-primary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 2px;
    border-radius: 5px 5px 5px 5px;
    color: #fff;
    background-color: var(--v-primary-dark);
    padding: 10px 20px 10px 20px;
    vertical-align: middle;
    text-decoration: none !important;
}


.accordionButton:hover,
.greenButton:hover {
    filter: brightness(0.9);
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
}

.listWithIcon {
    list-style-type: none;
    font-weight: initial;
}

.listWithIcon li::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f058';
    margin: 0 5px 0 -15px;
    color: var(--v-secondary);
    visibility: visible;
    font-weight: 300;
}

.verticalLine {
    padding: 0 0 0 15px;
    border-left: solid 3px var(--v-primary-light);
}
