main > .container {
    padding: 0 15px 20px;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
    outline: none;
}

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

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("./fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("./fonts/Inter-Black.woff2") format("woff2");
}

body {
    font-family: "Inter", sans-serif;
}

h1 {
    font-size: 1rem;
    color: #F7A12E;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 28px;
}

.form_radio_btn {
    min-height: 66px;
    background: #2EB2F0;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.form_radio_btn.active {
    background: #F7A12E;
}

.form_radio_btn label {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 900;
    width: 100%;
    cursor: pointer;
    padding: 12px 40px 12px 12px;
}

.form_radio_btn label span {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    display: inline-block;
    margin-top: 2px;
    cursor: pointer;
}

.vote-btn {
    padding: 28px 64px;
    width: 100%;
    color: white;
    background: #F7A12E;
    border: none;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

.form_radio_btn input[type="radio"] {
    position: absolute;
    right: 12px;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #2EB2F0;
    appearance: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    background-color: #2EB2F0;
}

.form_radio_btn.active input[type="radio"],
.form_radio_btn.active input[type="radio"]:checked {
    box-shadow: 0 0 0 1px #F7A12E;
    background-clip: content-box;
    background-color: #fff;
    padding: 4px;
    border: 2px solid #fff;
}

.form_result {
    display: flex;
    margin-bottom: 14px;
}

.form_result-row {
    width: 100%;
}

.form_result h5 {
    color: #2EB2F0;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 3px;
}

.form_result p.persent {
    color: #93C93F;
    font-size: 1rem;
    font-weight: 900;
    min-width: 50px;
    line-height: 1.2rem;
}

.form_result div p {
    color: #C1C1C1;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 14px;
}

.result-strip {
    display: block;
    height: 6px;
    background: #92CA3E;
    border-radius: 10px;
}

.winner h2, .winner p {
    color: #F7A12E;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 0;
}

.winner h2 {
    text-transform: uppercase;
}

.winner {
    margin-top: 7px;
}

.vote-btn:hover,
.form_radio_btn:hover {
    opacity: 0.9;
}

a.link {
    color: #F7A12E;
    font-size: 1.5rem;
    text-decoration: none;
    margin-top: 2rem;
    display: block;
}