@font-face {
  font-family: "Nunito-Sans-Light";
  src: url("/fonts/NunitoSans-Light.ttf");
}


/* Mobile styles*/

/*Prevent dnd to apps outside safari (breaks dnd on opera and chrome). 
  prevent-ios-dnd class is added by vue to appointments after an ipad check*/
* .prevent-ios-dnd {   
    -webkit-user-drag: none;
    -webkit user-select: none;
}

body {
  background: linear-gradient(135deg,rgba(0,176,237,0.6),#00b0ed);
  color: #666;
  font-family: Nunito-Sans-Light, Helvetica-light, Arial, sans-serif;
  font-size: 1rem;
  margin: 0 auto;
  height: 100%;
  min-height: 100vh;
}

document:-webkit-full-screen {
    width: 100%;
}

#page-wrapper {
  margin: 0 auto;
  width: 95%; 
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 50;
}

.inline-block {
  display: inline-block;
  margin-right: 2px;
}

.indent{
  margin-left: 2em;
}

.flex{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bold {
  font-weight: bold;
}

.image {
    width: 100%;
    margin-top: 2em;
    margin-bottom: 2em;
  } 

#loginform {
  max-width: 25em;
  margin:0 auto;
  padding: 2.5em 1em 0 1em;
  background-color: #fff;
  box-shadow: 3px 3px 6px 0 rgba(100, 100, 100, 0.6);
}

#loginName,
#passWord {
  margin-bottom: 3em;
  line-height: 2em;
  width: 100%;
  height: 2em;
}

#loginName {
  text-transform: lowercase;
}

.navNew.button-home {
  margin-top: 4em;
}

.home {
  margin: 4em auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  /* justify-content: center; */
  width: 80%;
  max-width: 650px;
}

.sign{
  margin: 0 auto;
  width: 30%;
  min-width: 160px;
  max-width: 320px;
  display: inline-block;
  }
  
.signImage{
  width: 100%;
  cursor: pointer;
  filter: hue-rotate(220deg);
  }

 /* hide the navlist button */
.hidden {
  display: none;
}

.unhide {
  display: block;
}

fieldset,
.fieldset {
  position: relative;
  background-color: #fff;
  border: none;
  margin: 0 0 1em 0;
  padding: 1.5em 0.5em 1em 0.5em;
  box-shadow: 3px 3px 6px 0 rgba(100, 100, 100, 0.3);
  line-height: 2em;
}

.icon {
  width: 2em;
  height: 2em;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
  float: left;
}

.input-container {
  width:85%;
  display: inline-block;
  margin: 0 0 2em 0.1em;
  }
  
.firstName {
  margin-bottom: 0;
}

 .fa,
 .fa-regular,
 .fa-solid {
   font-size: 1em;
   margin: 0 0.2em;
   }

  .fa-users, 
    .fa-signal {
     font-size: 0.8em;
     margin: 0 0.3em;
    }

  .height-1em {
    height: 1em;
  }

input.text {
 /* -moz-box-sizing:border-box; */
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing:border-box;
  border: none;
  border-bottom: 1px solid #ccc;
  color: #666;
  font-size: 1em;
  width: 100%;
  padding-left: 0;
  Margin-bottom: 1em;
}

input.number {
   -webkit-appearance: none;
  border-radius: 0;
  box-sizing:border-box;
  border: none;
  border: 1px solid #ccc;
  color: #666;
  font-size: 1em;
  width: 4em;
  padding-left: 0;
  Margin-bottom: 1em;
}

input::-webkit-input-placeholder {color: #ddd;}
input::-moz-placeholder {color: #ddd; opacity:1;}
input::-ms-input-placeholder {color: #ddd;}
input:-ms-input-placeholder {color: #ddd;}
input::placeholder {
  color: #ddd;
}

label{
  vertical-align: middle;
}  

.small-width {
  width: 16em;
  display: inline-block;
}

/**
 * Radio Buttons 
 */

/*Move he original radio and checkbox out of the way */
[type="radio"].fancy-radio,
  [type="checkbox"].fancy-check {
  position: absolute;
  left: -9999px;
}


/*Align the icon and the label text to same height using display:table-cell*/
/*If you change the font-size of the text, you may also want to do some padding or alignhment changes here*/
.fancy-radio ~ label >  span,
  .fancy-check ~ label >  span {
  display: table-cell;
  vertical-align: middle;
  padding-left: 0.75em;
}
/*The label will contain the icon and the text, will grab the focus*/
[type="radio"].fancy-radio + label,
  [type="checkbox"].fancy-check + label {
  cursor: pointer;
  display: table;
  line-height: 2;
}
/*The icon container, set it to fixed size and font size, the padding is to align the border*/
/*If you change the font-size of this icon, be sure to adjust the min-width as well*/
[type="radio"].fancy-radio + label:before,
  [type="checkbox"].fancy-check + label:before {
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid transparent;
  font-size: 0.75em;
  min-width: 2em;
  padding: 0 0 0 0.5em;
}

/* toggle font awsome icon*/
[type="radio"].fancy-radio:checked + label:before {
  content: "\f192";
  font-weight: 400;
}

[type="radio"].fancy-radio:not(:checked) + label:before {
  content: "\f1db";
  font-weight: 400;
}

[type="checkbox"].fancy-check:checked + label:before {
  content: "\f046";
  font-weight: 400;
}

[type="checkbox"].fancy-check:not(:checked) + label:before {
  content: "\f096";    
  font-weight: 400;
}

/*Do something on focus*/
[type="radio"].fancy-radio:focus + label:before,
  [type="checkbox"].fancy-check:focus + label:before {
  font-size: 0.85em;
  border-left: 1px dotted #00b0ed;
}

/*Do something on hover, in this case change the size*/
[type="radio"].fancy-radio + label:hover:before,
  [type="checkbox"].fancy-check + label:hover:before {
  border-left: 1px dotted #00b0ed;
}

/*Do something on selected, in this case display bold*/
[type="radio"].fancy-radio:checked + label {
    font-weight: bold;
}

/*image-type radio settings*/

.img-radio-wrapper {
  width: 10em;
  margin: 3em 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  height: auto;
}

.img-radio-wrapper div {
  display: flex;
  flex-direction: row;
  width: 50%;
  margin: 2rem 0;
  justify-content: space-around;
  position: relative;
}

@media only screen and (max-width: 34rem) {
  .img-radio-wrapper div {
    width: 80%;
  }  
}

.fancy-radio.img-radio ~ label {
  width: 5.5rem;
  height: 3.67rem;
  box-sizing: border-box;
  color: #000;
  font-weight: bold;
  filter: opacity(0.6);
  transition-property: color, box-shadow, filter;
  transition-duration: .2s;
  background-color: #00b0ed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; 
}

.fancy-radio.img-radio ~ label > span {
  display: inline-block;
  width: 100%; 
  text-align: center;
  padding-left: 0;
  position: relative;
  top: 3.9rem;
}

.fancy-radio.img-radio.flag ~ label {
  width: 1.5rem;
  height: 1rem;
}

.flag .nl {
  background-image: url('/images/flags/nl.svg');
}

.flag .en {
  background-image: url('/images/flags/uk.svg');
}

.flag .de {
  background-image: url('/images/flags/de.svg');
}

/* toggle font awsome icon*/
[type="radio"].fancy-radio.img-radio:checked + label:before,
[type="radio"].fancy-radio.img-radio:not(:checked) + label:before {
  content: none;
}


[type="radio"].fancy-radio.img-radio + label:before {
  padding: 0;
}

[type="radio"].fancy-radio.img-radio:focus + label:before,
[type="radio"].fancy-radio.img-radio + label:hover:before {
  border-left: none;
}

[type="radio"].fancy-radio.img-radio:focus + label,
[type="radio"].fancy-radio.img-radio + label:hover {
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px #00b0ed; 
  filter: opacity(0.75);
}

[type="radio"].fancy-radio.img-radio:checked + label {
  color: #00b0ed;
  font-weight: bold;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #00b0ed;
  filter: opacity(1); 
}

[type="radio"].fancy-radio.img-radio:checked + label span{
  border-bottom: 1px solid;
}

/*  terms and conditions */
#agree + label,
 #terms{
  display: inline-flex;
  margin-right: 0.5em;
}

.button {
  -webkit-appearance: none;
  background: -webkit-linear-gradient(#00b0ed,#00b0ed);
  background: linear-gradient(#00b0ed,#00b0ed);
  border: none;
  border-radius: 4px;
  color: #fff;
  display:block;
  float: right;
  font-size: 1em;
  margin: 0;
  padding:0;
  width: 20%;
  min-width: 6em;
  height: 2.5em;
  cursor: pointer;
  white-space: normal;
}

.button.green {
  background: -webkit-linear-gradient(#4CAF50,#4CAF50);
  background: linear-gradient(#4CAF50,#4CAF50);
}

.left {
  display: inline-block;
}

#loginbutton{
  margin-top: 1em;
  float: none;
  position: relative;
  left: 75%;
  bottom: 1em;
  box-shadow: 3px 3px 6px 0 rgba(100, 100, 100, 0.6);
}
 
.cancel,
.white-button {
  background: -webkit-linear-gradient(#fff, #fff);
  background: linear-gradient(#fff,#fff);
  color: #00b0ed;
  border: 1px solid;
  float: left;
}

#thanksOverlay {
  background: #fff;
  border: none;
  margin: 2em 0 0 0;
  padding: 1.5em 0.5em;
  box-shadow: 3px 3px 6px 0 rgba(100, 100, 100, 0.6);
  line-height: 2em;
}

#thankyou {
  display: block;
  max-width: 35em;
  margin: 0 auto;
  color: #00b0ed;
  background-color: #fff;
}

.summary {
  font-size: 0.75em;
  line-height: 1.5em;
  border: none;
}

.leftAlign {
  text-align: left;
}

#dismiss {
  display: inline-block;
  position: relative;
  bottom: 6em;
  width: 7em;
  float: right;
}

.red-button {
  background: -webkit-linear-gradient(#F37D7D, #F37D7D);
  background: linear-gradient(#F37D7D,#F37D7D);
  margin-right: 1em;
}

#navButtons {
  margin-bottom: 4em;
}

.navButton,
  .navButtonList {
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 1.5em;
  margin: 0;
  padding: 0;
  width: 2em;
  height: 1.5em;
  cursor: pointer;
  background-color: rgba(0,0,0,0);
}

#searchForm{
  margin-top: 2em;
  box-shadow: 3px 3px 6px 0 rgba(100, 100, 100, 0.6);
}

 #courseBar,
 #seasonBar{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 2em 0 0.5em 0;
}

.searchField {
  -webkit-appearance: none;
  box-sizing:border-box;
  border-radius: 0;
  border: 1px solid rgba(0,0,0,0);
  color: #666;
  font-size: 1em;
  width: 55%;
  min-width: 15em;
  height: 2.5em;
}

/* Table on update page */
#searchResult{
  overflow-x: auto;
}

table.search {
  background-color: #fff;
  margin-bottom: 1em;
  width: 100%;
  border-collapse: collapse;
}

th{
  padding: 0.3em 0.1em 0.3em 0.2em;
}

tr.search{
  font-weight: normal;
  text-align: left;
  padding: 0.2em;
}

tr:hover {
  background-color: #85d4ff;
}

td {
  overflow: hidden;
  padding-left: 0.2em;
}

.alignRight{
  text-align: right;
}

.grey {
  color: #ccc;
}

@media screen and (min-width: 40rem) {
/* Tablet styles (40 rem = 640 px at 16 base pixel size)*/
  body {
    font-size: 1.5rem;
  }

  .page-wrapper {
    min-width: 50rem;
    max-width: 80rem;
  }

  fieldset,
  .fieldset{
    padding: 1.5em 1em 1em 1em;
  }

  .icon {
    width: 3em;
    height: 3em;
    display: inline-block;
    padding: 0;
    margin: 0 auto;
    float: left;
  }


  .input-container {
    width:85%;
    display: inline-block;
    margin: 0 0 0em 0em;
  }
  
  .firstName {
    margin-bottom: 0;
  }
}


@media screen and (min-width: 60rem) {
/* Desktop styles (60 rem = 960 px at 16 base pixel size)*/

  body {
    font-size: 1.2rem;
  }
  
  .list {
  width: 95%;
  max-width: 100%;
  min-width: 0;
  }

  #page-wrapper {
    width: 60rem;
  }

  fieldset,
  .fieldset {
    padding: 3em;
  }
}


.text {margin: 2px;}


#deleteDB {
  background: red;
  color: white;
}

#result{
  position: absolute;
}

.zoom {zoom: 1;}

/*select box*/
.filter{
  width: 7em;
  height: 2.2em;
  color: #666;
  font-size: 0.8em;
  padding-left: 1em;
  margin-right: -2.5em;
  vertical-align: middle;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  position:relative;
  background:transparent;
  border: none;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box; 
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 0; 
  /* Firefox 1-3.6 */
  -moz-border-radius: 0; 
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 0;
  border: 1px solid #ccc;
}


.selectWrapper{
  position:relative;
  display: -moz-inline-stack;
  display: inline-block;
  height: 2em;
  background-color: #fff;
  vertical-align: middle; 
  z-index: 1;
  margin: 10px 10px;
  padding-right: 5px;
}

.selectWrapper:after{
  content: "\f078";
  font-family: 'Font Awesome 6 Free';
  font-size: 0.8em;
  font-weight: 900;
  color: #00b0ed;
  padding:0.3em 0 0.3em 0.4em;
  position:relative;
  right:0;
  z-index: -1;
}

/*  list page  */
.smallfont {
  font-size: 12px;
  /*font-size: 0.75rem;*/
}

.dataTables_wrapper {
  width: 100%;
  margin: 0 auto;
}

.dataTable:hover {
    cursor: pointer;
}

tfoot input {
  width: 100%;
  padding: 3px;
  box-sizing: border-box;
}

.dt-buttons,
.dataTables_length {
  padding-top: 0.25em;
}

.floatRight{
  float: right;
}

.floatLeft{
  float: left;
}



th.list, td.list{
  overflow: hidden;
  white-space: nowrap;
}

th.list{
  background-color: #bbb;
}

#custList{
  width: 2000px;
  table-layout: fixed;
  word-wrap:break-word;
  overflow-x: scroll;
  color: #999;
  border-collpase: separate;
}

/*Tooltip*/
td.list:hover {
  overflow: visible;
}

.tip {
  height: 100%;
}

.tip:hover {
  position: relative;
}

.tip[data-title]:hover:after {
  content: attr(data-title);
  display: block;
 padding: 8px 2px;
  margin: -8px 0 0 0;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #00b0ed;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.3);
}

.list-filters {
    margin: 24px -10px 12px -10px;
    z-index: -2;
  display: -webkit-flex;
    display: flex;
  -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

 .list-filter::-ms-expand {
    display: none;
}


.list-filter{
  width: 9em;
  height: 24px;
  color: #00b0ed;
  padding: 0 24px 1px 4px;
  margin-right: -27px;
  vertical-align: middle;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  position:relative;
  background:transparent;
  border:1px solid #ccc;
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box;
  box-sizing: border-box; 
  -webkit-border-radius: 0; 
  -moz-border-radius: 0; 
  border-radius: 0;
}


.list-selectWrapper{
  position:relative;
  display: -moz-inline-stack;
  display: inline-block;
  height: 24px;
  background-color: #fff;
  vertical-align: middle;
  z-index: 1;
  margin: 10px 10px;
  padding-right: 5px;
}

.list-selectWrapper:after{
  content: "\f078";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #00b0ed;
  padding:0.3em 0 0.3em 0.4em;
  position:relative;
  right:0;
  top: 1px;
  border-left: 1px solid #ddd;
  z-index: -1;
}

.list-selectWrapper option {
  color: #00b0ed; 
}
.empty {
 color: #ddd;
}

#listSearch {
  position:relative;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing:border-box;
  border: 1px solid #ddd;
  color: #666;
  font-size: 1em;
  width: 22em;
  height: 24px;
  padding: 0 0 0 0.5em;
  margin: 10px;
}

#clrbtn {
  padding: 3px 6px;
  width: auto;
  box-shadow: none;
  display: inline;
  height: 24px;
  margin-top: 10px;
  margin-left: auto;
  margin-bottom: 10px;
  margin-right: 10px;
}

.listFooter{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.paginate_button.current,
  a.dt-button {
  background: #fff!important;
  border: 1px solid #ccc!important;
  border-radius: 0;
}

.dataTables_info {
  color: #666!important;
  margin-bottom: 0.5em;
  }

select {
  border: 1px solid #ccc;
}

/*  validation  */
#validationErrors {
  background-color: #fff;
  color: #B94A48;
  padding: 1em;
  margin: 0.5em 0;
}


input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6;
  color: #468847;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
  color: #B94A48;
}

.parsley-errors-list {
  color: #B94A48;
  font-size: 0.9em;
  line-height: 0.9em;
  list-style-type: none;
  margin: 2px 0 1em 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  padding: 0;

  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*  Unsubscribe  */
.unsubscribe {
  font-size: 1em;
  color: #00b0ed;
  background-color: #fff;
  border: none;
  margin: 3em 0;
  padding: 1.5em 0.5em 1em 0.5em;
  box-shadow: 3px 3px 6px 0 rgba(100, 100, 100, 0.6);
  line-height: 2em;
}

.unsubscribe a {
  color: #00b0ed;
}