@charset "UTF-8";
@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-Semibold.woff2") format("woff2"),
         url("../fonts/OpenSans-Semibold.ttf") format("ttf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.woff2") format("woff2"),
         url("../fonts/Roboto-Regular.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Bold.woff2") format("woff2"),
         url("../fonts/Roboto-Bold.ttf") format("ttf");
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-color: #337ab7;
    --primary-color-highlight: #286090;
    --white: #fff;
    --dark-gray: #212529;
    --medium-gray: #ced4da;
    --light-gray: #f8f9fa;
    --border-radius: 0.25rem;
    --border-radius-lg: 0.3rem;
    --outline-shadow: 0 0 0 .25rem rgba(13, 110, 253, 0.25);
    --transition: .15s ease-in-out;
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-gray);
    background-color: var(--white);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin-bottom: 0;
    line-height: 1.5;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
}

a,
a:visited {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover,
a:visited:hover,
a:focus {
    color: var(--primary-color-highlight);
    text-decoration: underline;
}

[type="reset"],
[type="submit"],
[type="button"],
button {
    -webkit-appearance: button;
}

.btn {
    width: 100%;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    user-select: none;
    padding: .375rem .75rem;
    margin: 0.5rem 0;
    font-size: 1rem;
    border-radius: var(--border-radius);
    transition:
        background-color var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

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

.btn-primary:hover {
    color: var(--white);
    background-color: var(--primary-color-highlight);
    border: 1px solid var(--primary-color-highlight);
}

.btn-primary:focus {
    outline: 0;
    box-shadow: var(--outline-shadow);
    color: var(--white);
    background-color: var(--primary-color-highlight);
    border: 1px solid var(--primary-color-highlight);
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius-lg);
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 0.4rem;
    font-weight: bold;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-gray);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--medium-gray);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--border-radius);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-control:focus {
    background-color: var(--white);
    outline: 0;
    box-shadow: var(--outline-shadow);
}

.form-select {
    display: block;
    width: 100%;
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-gray);
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid var(--medium-gray);;
    border-radius: var(--border-radius);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-select:focus {
    outline: 0;
    box-shadow: var(--outline-shadow);
}

.form-select-lg {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius-lg);
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: var(--border-radius);
}

.list-group-item,
.list-group-item:visited {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    margin-bottom: -1px;
    text-decoration: none;
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,.125);
    color: var(--dark-gray);
    transition:
        color var(--transition),
        background-color var(--transition),
        box-shadow var(--transition);
}

.list-group-item:hover {
    text-decoration: none;
    background-color: var(--light-gray);
}

.list-group-item:focus {
    outline: 0;
    box-shadow: var(--outline-shadow);
    z-index: 1;
    text-decoration: none;
    background-color: var(--light-gray);
}

.list-group-item:first-child {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.list-group-item:last-child {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--border-radius);
}

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