@font-face{
    font-family: 'Suisse Intl';
    src: url(fonts/SuisseIntl-Light-WebM.woff2) format("woff2"),
         url(fonts/SuisseIntl-Light-WebM.woff) format("woff");
    font-weight: 300;
}
@font-face{
    font-family: 'Suisse Intl';
    src: url(fonts/SuisseIntl-Regular-WebM.woff2) format("woff2"),
         url(fonts/SuisseIntl-Regular-WebM.woff) format("woff");
    font-weight: 400;
}
@font-face{
    font-family: 'Suisse Intl';
    src: url(fonts/SuisseIntl-Book-WebM.woff2) format("woff2"),
         url(fonts/SuisseIntl-Book-WebM.woff) format("woff");
    font-weight: 450;
}
@font-face{
    font-family: 'Suisse Intl';
    src: url(fonts/SuisseIntl-Medium-WebM.woff2) format("woff2"),
         url(fonts/SuisseIntl-Medium-WebM.woff) format("woff");
    font-weight: 500;
}
@font-face{
    font-family: 'Suisse Intl';
    src: url(fonts/SuisseIntl-SemiBold-WebM.woff2) format("woff2"),
         url(fonts/SuisseIntl-SemiBold-WebM.woff) format("woff");
    font-weight: 600;
}
@font-face{
    font-family: 'Suisse Intl';
    src: url(fonts/SuisseIntl-Bold-WebM.woff2) format("woff2"),
         url(fonts/SuisseIntl-Bold-WebM.woff) format("woff");
    font-weight: 700;
}

:root {
    --col1:#2f8dda;
    --col2:#89c5a9;
    --col3:#ff4769;
    --col4:#df7e16;
    --col5:#f2cf6a;
    --ecol:#d23f31;
    --gcol:#0f9d58;
    --ocol:#fd7f20;
    --black:#141414;
    --grey0:#555555;
    --grey1:#888888;
    --grey2:#aaaaaa;
    --grey3:#cccccc;
    --grey4:#e5e5e5;
    --grey5:#fcfcfc;
    --grey6:#fefefe;
    --white:#ffffff;
    --contrast1:#ffffff;
    --contrast2:#ffffff;
    --contrast3:#ffffff;
    --contrast4:#ffffff;
    --contrast5:#141414;
}

[draggable] {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
}

* {
    box-sizing: border-box;
}

html{
    height: 100%;
}

h1, h2, h3, h4, h5, body {
    font: 16px/1.4 "Suisse Intl", Helvetica, sans-serif;
    margin: 0;
    text-align: center;
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body{
    height: min-content;
    max-height: 100%;
    color: var(--black);
    font-weight: 400;
}
h1, h2 {
    font-weight: 500;
    font-size: 70px;
    line-height: 1.2;
    margin: 10px 0 8px;
}
h2 {
    font-size: 52px;
}
form h2 {
    text-align: center;
}
h3 {
    text-transform: uppercase;
    font-weight: 500;
    text-align: left;
    margin-top: 8px;
}
h4 {
    font-weight: 600;
    font-size: 32px;
    margin: 0 0 8px;
}
h5 {
    font-weight: 600;
    text-align: left;
    font-size: 24px;
}
b, strong {
    font-weight: 500;
}
p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
pre {
    display: inline;
    font-size: initial;
}
a {
    text-decoration: none;
    color: var(--black);
}
a:hover {
    color: var(--col1);
    cursor: pointer;
    outline: none;
}
a.delete:hover {
    color: var(--ecol);
    cursor: pointer;
    outline: none;
}
picture {
    display: block;
}

.highlight {
    color: var(--col1);
}
.highlight:hover {
    color: var(--grey3);
}
.disabled {
    color: var(--grey3);
}
.small {
    font-size: 14px;
}
.subtext {
    font-size: 14px;
    color:var(--grey0);
    font-weight:500
}

.header {
    background-color: var(--white);
    height: 56px;
    padding: 0;
    margin: 0;
    position: fixed; /*for fixed header */
    top: 0;          /*for fixed header */
    width: 100%;     /*for fixed header */
    z-index: 9;
}
.header a {
    float: left;
    color: var(--black);
    text-align: center;
    padding: 6px 16px 0;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    /*text-transform: uppercase; */
    line-height: 50px;
    background-color: var(--white);
}
.header a.logo {
    float: left;
    padding: 7px 40px 7px 12px;
    color: var(--black);
    background-color: var(--white);
    line-height: 0;
}
.header a:hover {
    color: var(--col1);
}
.header a.active {
    text-decoration: none;
    position: relative;
}
.hnav a.active:after {
    position: absolute;
    height: 2px;
    margin: 0 auto;
    content: '';
    left: 0;
    right: 0;
    width: calc(100% - 32px);
    background-color: var(--col1);
    bottom: 13px;
}
.header a.active i {
    color: var(--col1);
}
.hdropdown-content a.active:after {
    bottom: 4px;
    /* width: 20px !important; */
    left: 16px;
    right: auto;
}
.hcats a.active:after {
    bottom: 3px;
}
.header-right {
    float: right;
    height: inherit;
}
.header-right a {
    padding: 6px 16px 0;
}
.header .bars {
    display: none;
    padding: 10px 16px 0;
    line-height: 46px;
}
.hdropdown, .hrdropdown {
    float: left;
    display: inline-block;
}
.hnav {
    float: left;
    height: inherit;
}

.hdropdown-content, .hrdropdown-content {
    display: none;
    margin: 0;
    position: fixed; /* for fixed header */
    top: 56px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
}
.hrdropdown-content {
    right: 0;
}
.hdropdown-content a, .hrdropdown-content a {
    clear: left;
    width: 100%;
    color: black;
    text-decoration: none;
    display: block;
    text-align: left;
    line-height: 32px;
}

.hdropdown:hover .hdropdown-content, .hrdropdown:hover .hrdropdown-content {
    display: block;
}
#container {
    margin-top: 56px; /* for fixed header */
}
#content {
    margin: 0 auto;
    padding: 0;
    display: block;
}
.wholepage {
    padding: 20px;
    display: block;
}

.left {
    text-align: left;
}
.center {
    text-align: center;
}
.vcenter {
    display:table-cell;
    vertical-align:middle;
}
.right {
    text-align: right;
}
.nowrap {
    white-space: nowrap;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
.button, .button.disabled:hover {
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 12px auto;
    padding: 11px 30px 9px;
    text-align: center;
    display: inline-block;
    color: var(--contrast1);
    background-color: var(--col1);
    position: relative;
    border-radius: 10px;
}
.button:hover, .button.active {
    padding: 10px 29px 8px;
    color: var(--col1);
    border: 1px solid var(--col1);
    background-color: var(--white);
    outline: none;
}
.button.disabled {
    opacity: 0.5;
    cursor: default;
}
button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
}
.no-button {
    background: none;
    padding: 0;
}
.slim, .slim.disabled:hover {
    padding: 7px 20px 5px;
}
.slim:hover {
    padding: 6px 19px 4px;
}
.button.disabled:hover {
    border: none;
}
.vslim{
    margin: 0;
    line-height: 1;
    padding: 2px 3px;
    border-radius: 6px;
}
.vslim:hover{
    padding: 1px 2px;
}
.butgood{
    color: var(--white);
    background-color: var(--gcol);
}
.butgood:hover{
    color: var(--gcol);
    border: 1px solid var(--gcol);
    background-color: var(--white);
}
.butbad{
    color: var(--white);
    background-color: var(--ecol);
}
.butbad:hover{
    color: var(--ecol);
    border: 1px solid var(--ecol);
    background-color: var(--white);
}
.cancel{
    color: var(--white);
    background-color: var(--grey2);
}
.cancel:hover{
    color: var(--grey2);
    border: 1px solid var(--grey2);
}

#footer {
  background: #fff;
  color: #000;
}
.footer-bottom {
  padding: 12px 0;
  background: var(--white);
  color: #000;
}
.footer-line {
  margin-top: 10px;
  border-top: 1px solid var(--grey3);
}
.footer-nav {
  margin: 0 auto 0;
  max-width: 1000px;
  padding: 16px 20px 8px;
  color: var(--black);
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  align-content: flex-start;
}
.footer-nav a{
  color: var(--black);
}
.footer-nav a:hover{
  color: var(--col1);
}
.footer-col {
/*  width: 25%; */
  min-width: 135px;
  margin: 0;
  padding: 0 6px;
  float: left;
}
.footer-group {
  margin: 0 0 10px 0;
}
.footer-group-title {
  font-weight: 400;
}
.footer-group-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.copyright {
    font-size: 12px;
    float: left;
}
.radio-container, .tick-container {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}
.radio-container input, .tick-container input {
    position: absolute;
    display: none;
    cursor: pointer;
}
.radio-checkmark, .tick-checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: var(--grey3);
}
.radio-checkmark {
    border-radius: 7px;
}
.radio-container:hover input ~ .radio-checkmark, .tick-container:hover input ~ .tick-checkmark {
    background-color: var(--grey2);
}
.radio-container input:checked ~ .radio-checkmark, .tick-container input:checked ~ .tick-checkmark {
    background-color: var(--gcol);
}
.radio-checkmark:after, .tick-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.radio-container input:checked ~ .radio-checkmark:after, .tick-container input:checked ~ .tick-checkmark:after {
    display: block;
}
.color-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: var(--grey3);
}
.radio-container:hover input ~ .color-checkmark, .tick-container:hover input ~ .color-checkmark {
    outline: var(--grey3) solid 2px;
    outline-offset: -1px;
}
.radio-container input:checked ~ .color-checkmark, .tick-container input:checked ~ .color-checkmark {
    outline: var(--black) solid 2px;
    outline-offset: -1px;
}
.tick-container .tick-checkmark:after {
    left: 4px;
    top: 0px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(45deg);
}
.bool-container {
    padding: 5px 8px 0 0;
    display: inline-block;
}
.bool-container.flex {
    display: inline-flex;
    width: 100%;
}
.input-container {
    margin: 6px 8px 0 0;
    display: inline-block;
}
.input-container.flex {
    margin: 6px 0 0 0;
    display: inline-flex;
    flex-grow:100;
}
.desc-container {
    width: 100%;
    min-width: 182px;
    padding-left: 8px;
    display: flex;
    flex-wrap: wrap;
}
.sub-container {
    width: 100%;
    min-width: 182px;
    text-wrap: wrap;
    padding: 0px 0px 6px 8px;
}
.form-label.inline {
    padding-bottom: 4px;
    vertical-align: bottom;
    padding-right: 5px;
    display: inline-block;
}
.form-label.inline.flex {
    display: inline-flex;
}
.extra-section {
    padding:0 16px 12px;
    margin:20px auto 4px;
    background-color: var(--grey5);
    border: 1px solid var(--grey3);
    border-radius: 10px;
}
.extra-container {
    width: 100%;
    min-width: 232px;
    margin-bottom: 6px;
}
.extra-type {
    width: 68%;
    min-width: 150px;
    padding-right: 5px;
    display: inline-block;
}
.extra-amount {
    width: 32%;
    min-width: 82px;
    display: inline-block;
}
.date-period {
    width: 40%;
    min-width: 100px;
    padding-right: 5px;
    display: inline-block;
    vertical-align: top;
}

.anchor {
    display: block;
    position: relative;
    top: -56px;
    visibility: hidden;
}
.flyer-section, .flyer-section-big {
    padding:40px 0;
}
.flyer-section p, .flyer-section-big p {
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
}
.flyer-header {
    margin-bottom: 14px;
}
.flyer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 848px;
    margin: 0 auto;
}
.flyer-item {
    width: 200px;
    min-height: 200px;
    margin: 10px 6px 0;
    padding: 12px;
    border-radius: 8px;
    flex-grow: 1;
    position: relative;
}
.flyer-lead {
    margin-bottom: 1em;
    min-height: 70px;
}
table, th, td {
    border-collapse: collapse;
}
table {
    width: 100%;
}
th {
    border-top: 1px solid var(--grey2);
    border-bottom: 1px solid var(--grey2);
    color: var(--black);
    padding: 9px 7px 7px;
    font-weight: 500;
}
td {
    padding: 8px 7px 6px;
    vertical-align: top;
}
table.small th {
    padding: 7px 6px 5px;
}
table.small td {
    padding: 6px 6px 4px;
}
table.small tr {
    border-bottom:1px solid var(--grey4);
}
table.medium tr:nth-of-type(2) td {
    padding-top: 14px;
}
table.small tr:nth-of-type(2) td {
    padding-top: 10px;
}
.linebelow {
    border-bottom: 1px solid var(--grey2) !important;
}
.lineabove {
    border-top: 1px solid var(--grey2);
}
.lineright {
    border-right: 1px solid var(--grey2);
}
.lineleft {
    border-left: 1px solid var(--grey2);
}
.imgcontainer {
    text-align: center;
    margin: 16px 0 0 0;
    position: relative;
}
.close {
    position: absolute;
    right: 10px;
    top: 0;
    color: var(--black);
    font-size: 30px;
    line-height: 1px;
}
.close:hover {
    color: var(--col1);
    cursor: pointer;
}
.form-container {
    padding: 8px 16px;
    text-align:left;
}
.butt {
    padding: 8px 16px;
    display: inline-block;
    float: left;
    font-size: 14px;
}
.login-form {
    background-color: var(--grey6);
    margin: 30px auto 10px;
    border: 1px solid var(--grey1);
    border-radius: 10px;
    width: 90%;
    max-width: 300px;
}
.contact-form {
    background-color: var(--grey6);
    margin: 10px auto; /* 10px from top and bottom and centered */
    border: 1px solid var(--grey3);
    border-radius: 10px;
    width: 90%; /* Could be more or less, depending on screen size */
    max-width: 550px;
}
.contact-form-title {
    margin: 0 auto;
    width: 90%;
    max-width: 550px;
}
.inner-form{
    background-color: var(--grey5);
    margin: 4px auto 12px;
    width: 100%;
    padding: 0 16px 12px;
}
.profile-container{
    margin: 0;
    padding: 4px 0;
    overflow-x: auto;
    display: block;
}
.profile-title{
    margin: 0;
    padding: 4px 0 0;
    width: 100%;
    border-bottom: 1px solid var(--black);
    font-weight: 600;
    text-align: left;
}
.profile-subtitle{
    margin: 0;
    padding: 14px 0 0;
    width: fit-content;
    border-bottom: 1px solid var(--black);
    font-weight: 600;
    text-align: left;
}
.profile-info{
    margin: 6px 0 0;
    text-align:left;
    overflow: auto;
    width: fit-content;
}
.profile-info td {
    padding: 4px 0 0;
    vertical-align: top;
}
.profile-info th {
    padding: 4px 18px 0 0;
    background: none;
    border: none;
    color: inherit;
    vertical-align: top;
    font-weight: 500;
}
.profile-edit{
    margin: 8px 0 14px;
    padding:0;
}
.profile-form {
    background-color: var(--grey6);
    margin: 10px auto; /* 10px from top and bottom and centered */
    border: 1px solid var(--grey3);
    border-radius: 10px;
}
/* [type="text"], input[type="number"], input[type="password"]*/
input, textarea, select, .StripeElement, .dfr-select {
    width: 100%;
    padding: 6px 8px 4px 8px;
    margin: 0 0 0px 0;
    display: inline-block;
    border: 0 !important;
    outline: 1px solid var(--grey3);
    outline-offset: -1px;
    box-sizing: border-box;
    font-size: inherit;
    vertical-align: bottom;
    font-family: inherit;
    font-weight: 300;
    height: 32px;
    line-height: 32px;
    border-radius: 8px;
}
select {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMC44NDUgMy43MDciIHdpZHRoPSIxNCIgaGVpZ2h0PSI1Ij48cGF0aCBkPSJNNi4yOCAwLjM4OEM2LjMyMSAwLjQzMyA2LjM0NSAwLjQ4MiA2LjM0NSAwLjUzNCA2LjM0NSAwLjU5MSA2LjMyMSAwLjYzOSA2LjI4IDAuNjggNi4yOCAwLjY4IDMuMzE4IDMuNjQyIDMuMzE4IDMuNjQyIDMuMjc0IDMuNjg2IDMuMjI1IDMuNzA3IDMuMTcyIDMuNzA3IDMuMTE2IDMuNzA3IDMuMDY3IDMuNjg2IDMuMDI3IDMuNjQyIDMuMDI3IDMuNjQyIDAuMDY1IDAuNjggMC4wNjUgMC42OCAwLjAyIDAuNjM5IDAgMC41OTEgMCAwLjUzNCAwIDAuNDgyIDAuMDIgMC40MzMgMC4wNjUgMC4zODggMC4wNjUgMC4zODggMC4zODggMC4wNjUgMC4zODggMC4wNjUgMC40MjkgMC4wMjQgMC40NzcgMCAwLjUzNCAwIDAuNTg3IDAgMC42MzUgMC4wMjQgMC42OCAwLjA2NSAwLjY4IDAuMDY1IDMuMTcyIDIuNTU3IDMuMTcyIDIuNTU3IDMuMTcyIDIuNTU3IDUuNjgxIDAuMDY1IDUuNjgxIDAuMDY1IDUuNzIyIDAuMDI0IDUuNzcgMCA1LjgyNyAwIDUuODggMCA1LjkyOCAwLjAyNCA1Ljk3MyAwLjA2NSA1Ljk3MyAwLjA2NSA2LjI4IDAuMzg4IDYuMjggMC4zODhNNi4yOCAwLjM4OCIvPjwvc3ZnPgo=) no-repeat 100% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 0 !important;
    background-color: var(--white);
    line-height: inherit;
    padding-right: 16px;
}
textarea {
    line-height: 22px;
    display: block;
    height: auto;
}
.form-label {
    margin-top: 10px;
}
.form-error {
    display: inline-block;
    padding:0 8px;
    color: var(--ecol);
}
.file-upload-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #ccc;
    width: 100%;
    height: 32px;
    line-height: 34px;
    background-color: #fff;
}
.file-upload-wrapper:hover {
    border: 1px solid var(--col1);
}
.file-upload-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
}
.togglePassword {
    position: absolute;
    right: 8px;
    top: 6px;
    height: 22px;
    cursor: pointer;
}
.info-hint {
    position: relative;
}
.info-container {
    margin: 0 0 2px;
    position: relative;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--col1);
}
.info-knob {
    font-size: 13px;
    line-height:15px;
    color: white;
    width: 100%;
    text-align: center;
    font-family: serif;
    font-style: italic;
    font-weight: bold;
    user-select:none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select:none;
    -o-user-select:none;
}
.info-text {
    visibility: hidden;
    font-size: 12px;
    font-weight: 300;
    position:absolute;
    min-width: 160px;
    left: 50%;
    bottom: calc(100% + 6px);
    margin-left: -40px;
    background-color: var(--grey4);
    padding: 4px 8px;
    z-index: 99;
}
.info-container:hover .info-text, .info-hint:hover .info-text {
    visibility: visible;
}
/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}
@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)}
    to {-webkit-transform: scale(1)}
}
@keyframes animatezoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}
.rolldown {
    -webkit-animation: animaterolldown 0.6s;
    animation: animaterolldown 0.6s
}
@-webkit-keyframes animaterolldown {
    from {-webkit-transform: scaleY(0)}
    to {-webkit-transform: scaleY(1)}
}
@keyframes animaterolldown {
    from {transform: scaleY(0)}
    to {transform: scaleY(1)}
}
.error {
    color: var(--ecol);
}
.good {
    color: var(--gcol);
}
.warning {
    color: var(--ocol);
}
.grey {
    color: var(--grey1);
}
.msg-box {
    background: none;
    border-color: var(--black);
}
.msg-box span {
    color: var(--black);
}
.msg-box.good {
    border-color: var(--gcol);
}
.msg-box.good span {
    color: var(--gcol);
}
.msg-box.error {
    border-color: var(--ecol);
}
.msg-box.error span {
    color: var(--ecol);
}
.main-text {
    text-align: left;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
.flex-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex-cont.even {
    justify-content: space-evenly;
    max-width: 1200px;
    margin: 0 auto;
}
.flex-child {
    border: 1px solid var(--grey4);
    background: var(--grey5);
    margin: 6px;
    padding: 10px;
    border-radius: 10px;
    flex-grow: 1;
}
.overview-box {
    position: relative;
    width: calc(50% - 32px);
    background: none;
    padding-bottom: 42px;
}
.overview-content {
    min-height: 150px;
    max-height: 300px;
    overflow: auto;
}
.overview-link {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 10px 0;
    text-align: center;
}
.flexpage {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.partpage {
    padding: 20px;
}
.loader {
    position: fixed;
    top: calc(50vh - 40px);
    left: calc(50vw - 40px);
    width: 80px;
    height: 80px;
    border: 1px solid var(--black);
    z-index: 11;
    background-color: var(--white);
    box-shadow: 10px 10px 24px 0 var(--grey1);
}
.loader::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    border: 4px solid var(--grey4);
    border-radius: 50%;
    border-top: 4px solid var(--col1);
    width: 40px;
    height: 40px;
    margin: 0;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    box-sizing: border-box;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 11; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}
.modal-content {
    background-color: var(--grey5);
    margin: 5% auto 2%; /* 5% from top, 2% from bottom and horizontally centered */
    border: 1px solid var(--grey1);
    border-radius: 0;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 300px;
}

.linkButton {
    background: none;
    border: none;
    outline: none;
    width: auto;
    height: auto;
    line-height: inherit;
    padding: 0;
    color: var(--col1);
    cursor: pointer;
    font-weight: 500;
}
.linkButton:hover {
    color: var(--grey2);
    outline: none;
}
.note {
    color: var(--grey1);
    font-size: 14px;
}
.add-container {
    margin: 8px;
    position: relative;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--col1);
}
.add-button {
    font-size: 25px;
    line-height:21px;
    color: var(--contrast1);
    width: 100%;
    text-align: center;
    font-family: sans-serif;
    user-select:none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select:none;
    -o-user-select:none;
}
.add-container:hover {
    border: 1px solid var(--col1);
    background-color: var(--white);
    cursor: pointer;
}
.add-container:hover .add-button{
    color: var(--col1);
    line-height: 19px;
}
.rem-container {
    margin: 8px;
    position: relative;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--grey2);
}
.indivreg {
    display: block;
    margin: 2px 8px 12px 8px;
}
.rem-button {
    font-size: 25px;
    line-height:21px;
    color: var(--white);
    width: 100%;
    text-align: center;
    font-family: sans-serif;
    user-select:none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select:none;
    -o-user-select:none;
}
.rem-container:hover {
    border: 1px solid var(--grey2);
    background-color: var(--white);
    cursor: pointer;
}
.rem-container:hover .rem-button{
    color: var(--grey2);
    line-height: 19px;
}
.xscroll {
    white-space: nowrap;
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
.link-icon {
    fill: var(--col1);
}
.link-icon:hover {
    fill: var(--grey2);
}
.delete-icon {
    font-size: 20px;
    color: var(--ecol);
}
.delete-icon:hover {
    color: var(--grey2);
}
ul {
    list-style-type: none;
    padding-left: 22px;
    margin: 0;
}
li {
    margin-bottom: 0.5em;
}.text-list {
    margin-top: 0;
    margin-bottom: 0.5em;
    position: relative;
}
.text-list::before {
    position: absolute;
    left: -22px;
    content: '\2B24';
    transform: scale(0.45);
    transform-origin: 0 40%;
}
.sub {
    margin-bottom: 0;
    margin-left: 12px;
    position: relative;
}
.sub::before {
    position: absolute;
    left: -14px;
    content: '\2B24';
    transform: scale(0.45);
    transform-origin: 0 40%;
}
.linespace {
    margin: 1em 0;
}
.collapse {
    position: relative;
    padding: 0 0 0 20px;
}
.collapse::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='currentColor' d='M8 12l-6.32 -6.32L3.35 4 8 8.65 12.65 4l1.67 1.68z'%3E%3C/path%3E%3C/svg%3E");
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    left: 0;
}
.collapse.active::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='currentColor' d='M8 4l-6.32 6.32L3.35 12 8 7.35 12.65 12l1.67-1.68z'%3E%3C/path%3E%3C/svg%3E");
}
.collapse-content {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0.1px;
    transition: max-height 0.3s ease-out;
    margin: 6px 0 12px;
}

.dbnav {
    overflow: hidden; /* hide on small screens*/
    background-color: #aaa;
    margin: 0 0 6px 0;
    text-align: left;
}
.dbnav a, .dbnav button {
    float: left;
    font-size: 12pt;
    color: white;
    text-align: center;
    padding: 4px 6px;
    text-decoration: none;
    margin: 0 2px 0 0;
}
.dbnav a:hover, .dbnav button:hover {
    padding: 3px 5px;
}
.dbnav select, .dbnav input {
    width: auto;
    float: left;
    margin-right: 2px;
}
.dbdropdown {
    float: left;
    background-color: #888;
    /*    overflow: hidden; */
}
.dbdropdown .dropbtn {
    font-size: 12pt;
    border: none;
    outline: none;
    color: white;
    padding: 4px 6px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    min-width: 40px;
    text-align: left;
}
.dbdropdown:hover {
    background-color: red;
}
.dbdropdown-content {
    display: none;
    position: absolute;
    top: 206px;
    background-color: #f9f9f9;
    min-width: 40px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1; /* to place the dropdown in front of other elements */
}
.dbdropdown-content a {
    float: none;
    color: black;
    padding: 4px 6px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dbdropdown-content a:hover {
    background-color: #ddd;
}
.dbdropdown:hover .dbdropdown-content {
    display: block;
}
#paging {
    margin-top: 12px;
}
.relative {
    position: relative;
}
.stamp {
    width: 74px;
    height: 74px;
    border-radius: 37px;
    line-height: 1.1;
    font-weight: 700;
    padding: 4px 0 0;
    color: var(--col1);
    background: rgba(242,207,106,0.7);
    position: absolute;
    top: -18px;
    right: -8px;
    transform: rotate(25deg);
    display: flex;
    align-items: center;
}
.tick-item, .cross-item {
    margin-left: 22px;
    position: relative;
}
.tick-item::before {
    position: absolute;
    left: -22px;
    content: '\2713';
}
.cross-item::before {
    position: absolute;
    left: -22px;
    content: '\2717';
}
.icon {
    display: inline;
    cursor: pointer;
    margin-right: 10px;
}
.newsection {
    padding-top: 4px;
    border-top: 1px solid var(--grey2);
}

/* ----------------------------- */
/* ------- media changes ------- */
/* ----------------------------- */

@media (max-width: 1106px) {
  .header a.logo {
    padding-right: 12px;
  }
  .header a {
      padding: 6px 12px 0;
  }
  .hnav a.active:after {
      width: calc(100% - 24px);
  }
  .hdropdown-content a.active:after {
      left: 12px;
  }
}

@media (max-width: 1006px) {
  .hnav {
    display: none;
  }
  .hnav a {
    text-align: left;
    padding: 6px 16px 0;
    line-height: 32px;
    background-color: var(--white);
  }
  .header a.bars {
    float: right;
    display: block;
    padding: 10px 16px 0;
    line-height: 46px;
  }
  .hnav.responsive {
    width: 100%;
    position: fixed; /* for fixed header */
    display: block;
    top: 56px;
    z-index: 1;
    overflow-y: auto;  /* for fixed header */
    height: calc(100% - 56px);  /* for fixed header */
  }
  .hnav.responsive a {
    display: block;
  }
  .hdropdown {
    display: block;
    width: 100%;
    text-align: left;
    clear: left;
    background-color: var(--white);
  }
  .hdropdown-content {
    margin: 0;
    margin-top: -9px;
    box-shadow: none;
    display: block;
    width: 100%;
    position: static;
  }
  .hdropdown-content a {
    padding: 4px 32px 0;
    line-height: 30px;
    background-color: var(--grey4);
  }
  .hdropdown-content a:hover {
    background-color: var(--white);
  }
  .hnav a.active:after {
    bottom: 3px;
    width: calc(100% - 32px);
  }
  .hdropdown-content a.active:after {
   left: 32px;
   width: 20px;
  }
  .harrow {
    display: inline-block;
    float: none !important;
    text-align: right !important;
    padding-right: 40px !important;
    border-bottom: 1px solid var(--grey3);
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 675px) {
  .stamp {
      top: -8px;
  }
}
