/* =============================================================================
  #RESET
============================================================================= */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 0 1em;
}

/* =============================================================================
  #TOOLS
============================================================================= */
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

/* =============================================================================
  #GENERAL
============================================================================= */
* {
    font-family: inherit;
    line-height: inherit;
    color: inherit;
}

html {
    min-height: 100%;
    height: 100%;

    font-size: 16px;
    font-size: 62.5%;
}

body {
    font-family: 'Open Sans', Helvetica, Arial, Verdana, sans-serif;
    color: #000000;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background-color: #f4f4f4;
}

/* Container */
.container {
    padding: 0 15px;
}

/* Reset skel-layers-wrapper */
#skel-layers-wrapper {
    bottom: 0 !important;
}

/* =============================================================================
  #UTILITIES
============================================================================= */
.hide {
    display: none;
}

/* Text aligns */
.ta-left {
    text-align: left;
}
.ta-center {
    text-align: center;
}
.ta-right {
    text-align: right;
}

/* Put this on the wrapping div you want to clear */
.clearfix:before,
.clearfix:after {
    content: ' ';
    display: table;
}

.clearfix:after {
    clear: both;
}

/* Responsive video - put the iFrame in a div containg this class */
.videoWrapper {
    position: relative;
    margin-bottom: 16px;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =============================================================================
  #TYPOGRAPHY
============================================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;

    line-height: 1.1;
}

/* Add margin top to heading when it comes after another piece of content */
* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
    margin-top: 40px;
}

/* Heading 1 */
h1 {
    margin-bottom: 10px;

    font-size: 44px;
    font-size: 4.4rem;
}

/* Heading 2 */
h2 {
    margin-bottom: 10px;

    color: #23b0e6;
    font-size: 24px;
    font-size: 2.4rem;
}

/* Heading 3 */
h3 {
    color: #000000;
    font-size: 20px;
    font-size: 2rem;
}

p {
    margin-bottom: 1.2rem;
}

p a {
    color: #23b0e6;
}

.lead {
    font-size: 120%;
}

strong {
    font-weight: 700;
}

em,
i {
    font-style: italic;
}

.ol,
.ul {
    margin-bottom: 18px;
    padding-left: 30px;
}

.ul {
    list-style: disc;
}

.ol {
    list-style: decimal;
}

/* =============================================================================
  #ELEMENTS
============================================================================= */
img {
    max-width: 100%;
    font-style: italic;
    vertical-align: middle;
}

img[width],
img[height] {
    max-width: none;
}

hr {
    margin: 30px 0;

    height: 1px;

    background-color: #e6e6e6;
    border: none;
}

.box {
    margin-top: 20px;
    padding: 20px;

    border: 1px solid #efefef;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.box h3 {
    margin-bottom: 10px;
}

/* =============================================================================
  #BUTTONS
============================================================================= */
.btn {
    /* display: inline-flex; */
    justify-content: center;
    align-items: center;
    padding: 15px 25px;
    min-width: 200px;

    color: #ffffff;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;

    cursor: pointer;

    background-color: #ae3581;
    border: none;
    border-radius: 8px;

    transition: background-color 150ms ease-in-out;
}

.btn--small {
    display: inline-block;
    font-size: 12px !important;
    font-size: 1.2rem !important;
    padding: 7px 7px !important;
    min-width: 80px !important;
    width: 100%;
    text-transform: none !important;
    margin: 0 5px;
}

.btn:hover {
    background-color: #b8428c;
}

#submit-btn {
    margin-top: 10px;
}

/* Button modifiers */
.btn--block {
    display: block;
    width: 100%;
}

/* =============================================================================
  #HEADINGS OUTSIDE OF CONTENT AREA
============================================================================= */
[role='tabpanel'] > h2,
[role='tabpanel'] > h3,
.main > h2,
.main > h3 {
    margin: 0 0 0 0;
    padding: 10px;
}

.main__content {
    padding: 10px;
}

.content + .main__content {
    margin-top: 30px;
}

.main__content > *:last-child {
    margin-bottom: 0;
}

/* =============================================================================
  #CONTENT
============================================================================= */
.content {
    padding: 10px;
}

.content + .content {
    margin-top: 10px;
}

.content__wrapper {
    padding: 10px;

    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.content__wrapper > *:last-child {
    margin-bottom: 0;
}

/* =============================================================================
  #MESSAGES
============================================================================= */
/* Messages */
.message {
    display: block;
    margin: 15px 0;
    padding: 8px 10px;

    color: #ffffff;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;

    border-radius: 4px;
}

.message h1,
.message h2,
.message h3,
.message h4 {
    margin-bottom: 5px;
}

/* No margin on last item in message */
.message *:last-child {
    margin-bottom: 0;
}

.message--error {
    background-color: #e23c3c;
}
.message--warning {
    background-color: #df920d;
}
.message--success {
    background-color: #71b62c;
}
.message--info {
    background-color: #3484cf;
}
.message--payment {
    background-color: #3484cf;
}

/* =============================================================================
  #FORM STYLING
============================================================================= */
/* FORM LABEL BLOCK */
.form__section {
    margin-bottom: 30px;
}

/* Form button */
.form__section .btn {
    min-width: 320px;
}

.form__section label {
    display: block;
    margin-bottom: 4px;
    margin-right: 0;

    font-weight: 700;
}

/* Labels */
.form__label {
    display: block;
    margin-bottom: 4px;
    margin-right: 0;

    font-weight: 700;
    /* border: 1px solid red; */
}

label + label {
    margin-left: 30px;
}

.form__label + label {
    margin-left: 0;
}

/* Default */
select,
input {
    font-size: 18px;
    font-size: 1.8rem;
}

select,
textarea,
input:focus {
    outline: none;
}

/* Radio and checkbox input */
input[type='radio'],
input[type='checkbox'] {
    margin-right: 8px;
}

/* General text inputs */
textarea {
    max-width: 100% !important;
}
textarea,
input[type='text'],
input[type='tel'],
input[type='email'],
input[type='password'],
input[type='number'] {
    display: block;
    padding: 10px 14px;
    width: 100%;
    max-width: 320px;

    font-family: 'Open Sans', Helvetica, Arial, Verdana, sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4;

    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(0, 0, 0, 0);
    border: 1px solid #c8c8c8;

    transition: box-shadow 150ms ease-in-out;
}

textarea:focus,
input[type='text']:focus,
input[type='tel']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='number']:focus {
    border: 1px solid #549fd7;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0), 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Textarea */
textarea {
    min-height: 140px;
    max-width: 360px;
    width: 100%;
}

/* Select input */
select {
    height: 42px;
    width: 100%;

    border: none;
    background-color: #f3f3f3;

    cursor: pointer;
}

/* Error input */
textarea.error,
input[type='text'].error,
input[type='tel'].error,
input[type='email'].error,
input[type='password'].error,
input[type='number'].error {
    border: 1px solid #e23c3c;
}

.field-error.hide {
    display: none;
}

.form--login label.error,
.field-error {
    display: block;
    margin-top: 10px;
    margin-left: 0 !important;

    font-size: 16px;
    font-size: 1.6rem;
    color: #e23c3c;
}

/* =============================================================================
  #POPUP
============================================================================= */
.popup-wrapper {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    height: 100vh;
    width: 100vw;

    padding: 15px;

    background-color: rgba(0, 0, 0, 0.55);

    opacity: 0;
    pointer-events: none;

    overflow: auto;
    z-index: 2000;

    transition: opacity 500ms ease-in-out;
}

.popup-wrapper.is-active {
    opacity: 1;
    pointer-events: all;
}

/* Question wrapper */
.popup {
    margin: 0 auto;
    max-width: 520px;
    padding: 15px;

    background-color: #ffffff;
    border-radius: 6px;

    transform: translateY(150%) scale(0.5);

    transition: transform 750ms ease-in-out;
}

.popup-wrapper.is-active .vote {
    transform: translateY(0) scale(1);
}

.popup hr {
    margin: 16px -16px 16px -16px;
    height: 2px;
}

/* Heading of window */
.popup__heading {
    display: inline-block;
    margin-top: -25px;
    margin-bottom: 10px;
    padding: 5px 8px;

    color: #ffffff;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;

    background-color: #000000;
}

/* Close option */
.popup__close {
    position: absolute;

    top: -12px;
    right: 15px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 15px;
    height: 24px;

    color: #ffffff;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 24px;

    cursor: pointer;

    background-color: #000000;
    border-radius: 12px;
}

.is-inactive {
    display: none;
}

/* ==========================================================================
	#NAVIGATION
========================================================================== */
/* ==========================================================================
##DESKTOP ============================================================ */
@media (min-width: 1200px) {
    .nav {
        display: flex;
        margin-left: auto;
    }

    .nav__burger {
        display: none;
    }

    .menu-wrapper {
        display: flex;
        margin-left: auto;
    }

    .menu__item {
        display: inline-flex;
        align-items: center;
    }

    .menu__item + .menu__item {
        margin-left: 30px;
    }

    .menu__item > a {
        display: flex;
        align-items: center;
        padding: 10px 0;

        color: #888888;
        text-decoration: none;
    }

    .menu__item > a i {
        margin-right: 10px;

        font-size: 0.85em;
    }

    .menu__item:hover > a {
        color: #23b0e6;
    }

    .menu__item.active > a {
        color: #23b0e6;
        font-weight: bold;
    }

    .menu__item--has-sub {
        position: relative;
    }

    .menu__item--has-sub svg {
        width: 12px;

        fill: currentColor;
    }

    .submenu {
        overflow: hidden;
        position: absolute;
        top: 100%;
        min-width: 140px;

        visibility: hidden;
        opacity: 0;
        transition: visibility 0.2s 0.2s, opacity 0.2s 0s;

        background-color: #ffffff;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
        border-radius: 4px;
    }

    .menu__item--has-sub:hover .submenu {
        visibility: visible;
        opacity: 1;
        transition: visibility 0.2s 0s, opacity 0.2s 0s;
    }

    .submenu__item {
        display: flex;
    }

    .submenu__item > a {
        display: inline-flex;
        flex-grow: 1;
        padding: 10px;

        color: #808080;
        text-decoration: none;
    }

    .submenu__item:hover > a {
        color: #549fd7;

        background-color: #f4f4f4;
    }

    .submenu__item--active > a {
        color: #549fd7;
        font-weight: bold;
    }
}

/* ==========================================================================
      ##MOBILE ============================================================= */
@media (max-width: 1199px) {
    .nav {
        margin-left: auto;
    }

    .menu-is-open {
        overflow: hidden;
    }

    .menu-wrapper,
    .menu {
        height: 100vh;
    }

    .menu-wrapper {
        position: fixed;
        z-index: 250;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 85px 0;

        transform: translateX(100%);

        transition: transform 350ms ease-in-out;

        background-color: #23b0e6;
        background-image: url('../img/bg-dashboard.png');
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }

    .menu-is-open .menu-wrapper {
        transform: translateX(0);
    }

    .menu {
        overflow: auto;
        padding: 15px;
    }

    .menu__item {
        display: flex;
        flex-direction: column;
    }

    .menu__item > a {
        display: inline-flex;
        align-items: center;
        width: 100%;
        padding: 10px 0;

        color: #ffffff;
        text-decoration: none;
    }

    .menu__item > a i {
        width: 30px;
        text-align: center;
    }

    .menu__item.active > a {
        font-weight: 700;
    }

    .menu__item--has-sub {
        position: relative;
    }

    .menu__item--has-sub svg {
        margin-left: auto;
        width: 18px;

        fill: currentColor;
    }

    .submenu {
        background-color: #f4f4f4;
    }

    .menu__item--has-sub:hover .submenu {
        visibility: visible;
        opacity: 1;
        transition: visibility 0.2s 0s, opacity 0.2s 0s;
    }

    .submenu__item {
        display: flex;
    }

    .submenu__item > a {
        display: inline-flex;
        flex-grow: 1;
        padding: 10px;

        color: #808080;
        text-decoration: none;
    }

    .submenu__item:hover > a {
        color: #549fd7;

        background-color: #e7e7e7;
    }

    .submenu__item--active > a {
        color: #549fd7;
        font-weight: bold;
    }
}

/* ==========================================================================
      ##HIDE NAVIGATION ====================================================== */
.no-nav .nav {
    display: none !important;
}

/* ==========================================================================
      #HAMBURGER TOGGLE
  ========================================================================== */
.nav__burger {
    position: relative;
    z-index: 500;
    float: right;
    margin-top: 6px;
    height: 3em;
    width: 3em;
    position: relative;
    font-size: 8px;
    cursor: pointer;
    -webkit-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-tap-highlight-color: transparent;
}

.nav__burger .nav__burger__lines:after {
    left: 0;
    top: -1em;
}

.nav__burger .nav__burger__lines:before {
    left: 1em;
    top: 1em;
}

.nav__burger:after {
    content: '';
    display: block;
    position: absolute;
    height: 150%;
    width: 150%;
    top: -25%;
    left: -25%;
}

.nav__burger .nav__burger__lines {
    top: 50%;
    margin-top: -0.125em;
}

.nav__burger .nav__burger__lines,
.nav__burger .nav__burger__lines:after,
.nav__burger .nav__burger__lines:before {
    pointer-events: none;
    display: block;
    content: '';
    width: 100%;
    border-radius: 0.25em;
    background-color: #23b0e6;
    height: 0.25em;
    position: absolute;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.menu-is-open .nav__burger .nav__burger__lines,
.menu-is-open .nav__burger .nav__burger__lines:after,
.menu-is-open .nav__burger .nav__burger__lines:before {
    background-color: #ffffff;
}

.nav__burger .nav__burger__lines:after {
    left: 0;
    top: -1em;
}

.nav__burger .nav__burger__lines:before {
    left: 1em;
    top: 1em;
}

.nav__burger.nav__burger--squeeze .nav__burger__lines,
.nav__burger.nav__burger--squeeze .nav__burger__lines:after,
.nav__burger.nav__burger--squeeze .nav__burger__lines:before {
    -webkit-transition: 0.2s top 0.2s, 0.1s left, 0.2s transform,
        0.4s background-color 0.2s;
    -o-transition: 0.2s top 0.2s, 0.1s left, 0.2s transform,
        0.4s background-color 0.2s;
    transition: 0.2s top 0.2s, 0.1s left, 0.2s transform,
        0.4s background-color 0.2s;
}

.nav__burger.nav__burger--squeeze .nav__burger__lines:after,
.nav__burger.nav__burger--squeeze .nav__burger__lines:before {
    width: 2em;
}

.nav__burger.nav__burger--squeeze.open .nav__burger__lines,
.nav__burger.nav__burger--squeeze.open .nav__burger__lines:after,
.nav__burger.nav__burger--squeeze.open .nav__burger__lines:before {
    -webkit-transition: 0.2s background-color, 0.2s top, 0.2s left,
        0.2s transform 0.15s;
    -o-transition: 0.2s background-color, 0.2s top, 0.2s left,
        0.2s transform 0.15s;
    transition: 0.2s background-color, 0.2s top, 0.2s left, 0.2s transform 0.15s;
}

.nav__burger.nav__burger--squeeze.open .nav__burger__lines {
    background-color: transparent;
}

.nav__burger.nav__burger--squeeze.open .nav__burger__lines:before,
.nav__burger.nav__burger--squeeze.open .nav__burger__lines:after {
    left: 0.5em;
    top: 0px;
}

.nav__burger.nav__burger--squeeze.open .nav__burger__lines:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav__burger.nav__burger--squeeze.open .nav__burger__lines:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* ==========================================================================
	#HEADER
========================================================================== */
.header {
    position: sticky;
    z-index: 250;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px;

    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.header__logo img {
    height: 56px;
}

/* ==========================================================================
	#TABS
========================================================================== */
.tabs {
    display: grid;
}

[role='tablist'] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-gap: 0;
}

.tab__toggle {
    padding: 10px 8px;

    color: #ffffff;
    font-size: 15px;
    font-size: 1.5rem;

    background-color: #8e2366;
    border: none;

    cursor: pointer;

    transition: all 150ms ease-in-out;
}

.tab__toggle[aria-selected='true'] {
    box-shadow: inset 0 -3px 0 0 #ebacd3;
}

.tab__toggle:hover {
    outline: 0;

    background-color: #a2347a;
}

.tab__toggle:focus {
    outline: 0;
}

/* =============================================================================
  #DATA LIST
============================================================================= */
.data-list {
    margin-bottom: 20px;
}

.data-list h3 {
    margin-bottom: 10px;
}

.evaluation-list .data-list__item div:first-child {
    width: calc(100% - 85px);
}

.evaluation-list .data-list__item div:nth-child(2) {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.evaluation-list .data-list__item {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;

    text-decoration: none;

    background-color: #ffffff;
}

.data-list__item {
    position: relative;
    z-index: 10;
    padding: 10px;
    text-decoration: none;
    background-color: #ffffff;
}

.data-list__item + .data-list__item {
    border-top: 1px solid #f4f4f4;
}

a.data-list__item {
    padding-right: 34px;

    background-image: url('../img/icons/icon-data-list.svg');
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center right 10px;
}

.data-list__subheading {
    display: flex;
    align-items: center;

    color: #575757;
    font-size: 13px;
    font-size: 1.3rem;
}

.data-list__subheading i {
    margin-right: 0.25em;
    font-size: 0.85em;
}

.data-list__meta {
    display: flex;
    align-items: center;

    color: #8e2366;
    font-size: 13px;
    font-size: 1.3rem;
}

.data-list__meta i {
    margin-right: 0.25em;
    font-size: 0.85em;
}

.data-list__nr {
    display: inline-flex;
    height: 20px;
    width: 20px;
    flex: 0 0 20px;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;

    background-color: #8e2366;
    border-radius: 50%;
}

/* =============================================================================
  #HOME
============================================================================= */
.home {
    padding: 30px 10px;

    background-color: #23b0e6;
    background-image: url('../img/bg-dashboard.png');
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.home__title {
    text-align: center;
}

.home__title h1 {
    color: #ffffff;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 400;
}

.home__logo {
    margin-bottom: 20px;

    text-align: center;
}

.home__logo img {
    height: 56px;
}

.home__menu {
    margin: 0 auto;
    max-width: 520px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.home__menu .menu__item {
    margin: 0 0 0 0;
}

.home__menu .menu__item > a {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 100%;
    padding: 0 0 0 0;
    padding-top: 20px;

    color: #686868;
    line-height: 1;

    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.home__menu .menu__item > a i {
    font-size: 24px;
    font-size: 2.4rem;
}

.home__menu .menu__item > a span {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 10px;

    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;

    background-color: #f4f4f4;
}

/* ==========================================================================
	#SLIDO
========================================================================== */
.slido {
    position: relative;
    min-height: calc(100vh - 117px);
}

.slido iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* =============================================================================
  #MAP
============================================================================= */
.svg-map {
    width: 100%;
    height: auto;

    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.svg-map [data-remodal-target] {
    cursor: pointer;
}

.map {
    margin-bottom: 20px;
}

.map__desc {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding: 10px;

    color: #000000;
    text-align: center;

    background-color: #f4f4f4;
}

.map__desc i {
    margin-right: 5px;

    font-size: 0.85em;
}

/* =============================================================================
  #E-TICKET
============================================================================= */
.eticket {
    text-align: center;
}

.eticket__user {
    margin: 20px 0;
}

.eticket__code {
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

#qrcode{
    padding-bottom: 20px;
}

/* =============================================================================
  #EVALUATION
============================================================================= */
.form--login label.error,
.field-error {
    background-color: #e23c3c;
    color: #fff;
    padding: 6px 12px;
    margin-top: 12px;
    border-radius: 5px;
}

.question-row {
    display: flex;
    align-items: center;

    margin-top: 12px;
}

.question-row {
    flex-wrap: wrap;
    margin: 8px -3px -3px -3px;
}

.question-row > * {
    width: 33.33%;
    padding: 3px;
}

.question-row > * {
    width: 50%;
}

.question-row--score > *,
.question-row--score > * {
    width: auto;
}

.question-row > *:last-of-type {
    width: 100%;
}

.question-row--score > *:last-of-type {
    /* width: auto; */
}

.question-row--score {
    flex-direction: row;
}

/* html.xsmall .question-row--score { justify-content: space-between; } */

.evaluatie--form .form__section + .form__section {
    margin-top: 14px;
    padding-top: 14px;

    border-top: 2px solid #eaeaea;
}

.question-row--score .answer {
    width: 15%;
}
.question-row--score .answer.special {
    width: 100%;
}

.answer.yes_no {
}

.answer + .answer {
    margin-left: 6px;
}

.answer + .answer {
    margin: 0;
}

.answer,
.answer__label {
    position: relative;
}

.answer input[type='radio'] {
    position: absolute;
    visibility: hidden;

    top: 20px;
    right: 20px;
}

.answer__label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 16px 12px;

    border-radius: 6px;
    border: 2px solid #dcdcdc;
    color: #10206b;

    cursor: pointer;
    transition: all 270ms ease-in-out;
    min-height: 110px;

    transition: all 200ms ease-out;
}

.answer__label {
    padding: 12px;
    min-height: 80px;
}

.special .answer__label--score {
    max-height: 55px;
    max-width: auto;
    text-align: center;

    min-height: 55px;
    min-width: 190px;
}

.yes_no .answer__label--score {
    max-height: 55px;
    max-width: auto;
    text-align: center;

    min-height: 55px;
    min-width: 48%;
}

.answer__label--score {
    max-height: 55px;
    /* max-width: 55px; */

    min-height: 55px;
    /* min-width: 55px; */
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.flex label {
    /* margin-right: 10px; */
}

.answer__label--score.answer__label--score--large {
    /* width: 200px !important; */
}

.answer__label--score {
    height: 45px;
    width: 45px;
}

.question-row--score .special .answer__label--score {
    border-radius: 4px !important;
}

.question-row--score .answer__label--score {
    /* border-radius: 50%; */
    text-align: center;

    height: 68px;
    width: 100%;
    /* width: 68px; */

    /* min-height: 68px; */
}

.answer__label--not {
    /* color: #c9c9c9; */
    color: #444444;
    background-color: white;
}

.answer input[type='radio']:checked + .answer__label {
    border-color: #b44489;
    background-color: #b44489;
    color: #fff;
}

.answer__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #03bcd4;

    margin-bottom: 10px;
    padding: 7px;

    width: 50px;
    height: 50px;

    border-radius: 50%;
    background-color: #fff;
}

.answer__icon {
    width: 36px;
    height: 36px;
    padding: 5px;
}

.answer__label--not > .answer__icon img {
    filter: brightness(5) sepia(0) hue-rotate(-70deg) saturate(0);
}

.answer:first-of-type .answer__icon {
    padding: 16px;
}

.answer:first-of-type .answer__icon {
    padding: 12px;
}

.answer:last-of-type .answer__icon {
    padding: 5px;
}

.answer input[type='radio']:checked + .answer__label > .answer__icon {
    color: #fff;
}

.answer__label--not > .answer__icon {
    color: #c9c9c9;
}

.answer__label .form__input {
    text-align: center;
    font-family: 'Roboto Slab', Helvetica, Arial, Verdana, sans-serifs;
}

.answer__label--score .form__input {
    font-size: 18px;
    font-size: 1.8rem;
}

.evaluatie--form .form__label {
    font-size: 16px;
    font-size: 1.6rem;
}

.answer__label .form__input {
    font-size: 14px;
    font-size: 1.4rem;
}

.answer input[type='radio']:checked + .answer__label > .form__input {
    font-weight: 600;
}


.map .data-list__heading{
    display: flex;
    gap:10px

}

.map i{
    color:#999;
}
.map .data-list__nr{
    margin-top:3px;
    /* display: inline-block; */
}