* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
}

ul, li {
  list-style-position: inside;
}

h3 {
  font-weight: 600;
  text-align: center;
  font-size: 1.5rem;
}

h3 span{
  font-weight: 600;
  text-align: center;
  font-size: 1.5rem;
}

button {
  border: none;
  background: #265f82;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: background .3s ease;
}

button:hover {
  border: none;
  background: #1F4C69;
  color: white;
  padding: 10px;
}

button:disabled {
  cursor: default;
  background: #698ea5;
}

.centered-form {
  display: flex;
  align-items: center;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  background: url(/public/img/star-sky.jpg);
}
.centered-form-chat {
  display: flex;
  align-items: center;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  background: url(/public/img/background_chat.jpg);
    background-size:cover;
}

.centered-form__form {
  background: rgba(250, 250, 250, 0.9);
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 0px 20px;
  margin: 20px;
  width: 230px;
}

.centered-form__form__chat {
  background: rgba(250, 250, 250, 0.9);
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 0px 20px;
  margin: 20px;
  width: 90%;
  height: 90%;
}

.form-field {
  margin: 20px 0;
}

.form-field > * {
  width: 100%;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
}

.form-field input, .form-field select {
  border: 1px solid #e1e1e1;
  padding: 10px;
}

.chat {
  display: flex;
}

.chat__sidebar {
  overflow-y: auto;
  width: 350px;
  height: 95vh;
  background: -moz-linear-gradient(125deg, rgba(39,107,130,1) 0%, rgba(49,84,129,1) 100%); /* ff3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(49,84,129,1)), color-stop(100%, rgba(39,107,130,1))); /* safari4+,chrome */
  background: -webkit-linear-gradient(125deg, rgba(39,107,130,1) 0%, rgba(49,84,129,1) 100%); /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(125deg, rgba(39,107,130,1) 0%, rgba(49,84,129,1) 100%); /* opera 11.10+ */
  background: -ms-linear-gradient(125deg, rgba(39,107,130,1) 0%, rgba(49,84,129,1) 100%); /* ie10+ */
  background: linear-gradient(325deg, rgba(39,107,130,1) 0%, rgba(49,84,129,1) 100%); /* w3c */
}

.chat__sidebar h3 {
  color: #e6eaee;
  margin: 10px 20px;
  text-align: left;
}

.chat__sidebar ul {
  list-style-type: none;
}

.chat__sidebar li {
  background: #e6eaee;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
}

.chat__main {
  background: #36393e;
    
  display: flex;
  flex-direction: column;
  height: 95vh;
  width: 100%;
  word-break: break-all;
}

.chat__messages {
  flex-grow: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.chat__footer {
  background: #e6eaee;
  display: flex;
  padding: 10px;
  /*height: 60px;*/
  flex-shrink: 0;
}

.chat__footer form {
  flex-grow: 1;
  display: flex;
}

.chat__footer form * {
  margin-right: 10px;
}

.chat__footer input {
  border: none;
  padding: 10px;
  flex-grow: 1;
}

.chat__messages {
  list-style-type: none;
  padding: 10px;
}

.message {
  padding: 10px;
  border-bottom: solid 1px hsla(0,0%,100%,.04);
}

.message__title {
  display: flex;
  margin-bottom: 5px;
}

.message__title h4 {
    color:#fff;
  font-weight: 600;
  margin-right: 10px;
}

.message__body {
    color: hsla(0,0%,100%,.7);
    padding-left: 40px;
}

.message__title span {
  color: hsla(0,0%,100%,.2);
}

@media (max-width: 600px) {
  * {
    font-size: 1rem;
  }

  .chat__sidebar {
    display: none;
  }
    .chat__fiches {
    display: none;
  }

#admin-form{
    display: none;
}
#fontSlider{
    display: none;
}

  .chat__footer {
    flex-direction: column;
  }

  .chat__footer form {
    margin-bottom: 10px;
  }

  .chat__footer button {
    margin-right: 0px;
  }
}

.message__logo{
    background-image: url(/public/img/logoPol.png);
    background-size: 40px 40px;
    height: 40px;
    width: 40px;
    float: left;
    margin-top: 10px;
    margin-right: 10px;
    padding: 10px;   
}

.chat__header_custom{
  height: 5vh;
    background-color: #333;
}

/* Navigation css */

.navUL {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

.navLI {
    float: left;
}
.navLI label {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navLI a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navLI a:hover {
    background-color: #111;
}

.logoutStyle{
    float: right;
    padding-top: 3px;
    padding-right: 20px;
}

.rooms-wrapper {
    overflow-y: auto;
    overflow-x: hidden;
    -ms-flex-direction: column;
    -ms-flex-negative: 0;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    background: #1e2124;
    contain: layout;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: relative;
    width: 85px;
}

.rooms-wrapper .rooms {
    -moz-user-select: none;
    -ms-flex: 1;
    -ms-user-select: none;
    -webkit-box-flex: 1;
    -webkit-user-select: none;
    flex: 1;
    padding: 18px 0 18px 10px;
    user-select: none;
}

.rooms-wrapper .room-separator {
    background: none;
    height: 2px;
    margin-bottom: 10px;
    position: relative;
    width: 50px;
}
.rooms-wrapper .rooms .room {
    height: 50px;
    position: relative;
    width: 50px;
    z-index: 1;
    margin-bottom: 10px;
}
.rooms-wrapper .rooms .room .room-inner {
    background: rgb(47,49,54);
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    line-height: 50px;
    overflow: hidden;
    text-align: center;
}

.rooms-wrapper .rooms .room .room-inner-active {
    background: rgb(114,137,218);
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    line-height: 50px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.rooms-wrapper .rooms .room .room-inner a {
    color: #fff;
    display: block;
    height: 50px;
    width: 50px;
}

.rooms-wrapper .rooms .room .avatar-small {
    background-repeat: no-repeat;
    background-size: 50px 50px;
    border-radius: 0;
    height: 50px;
    margin: 0;
    width: 50px;
}
.avatar-small {
    background-size: 30px 30px;
    float: left;
    height: 30px;
    margin-right: 10px;
    margin-top: 6px;
    width: 30px;
}
.avatar-large, .avatar-profile, .avatar-small, .avatar-xlarge, .avatar-xsmall, .avatar-xxlarge {
    background-clip: padding-box;
    background-color: none;
    background-position: 50%;
    border-radius: 50%;
    position: relative;
}

.searchStyle{
    padding-top: 3px;
    float:left;
}

.inputSearchStyle{
    height: 4vh;
    background: #e6eaee;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 10px;
}

.notALink{
    color:inherit;
    text-decoration:none;
    pointer-events:none;
    cursor:text;
}

.chat__fiches {
    overflow-y: auto;
  width: 400px;
  height: 95vh;
  background: -moz-linear-gradient(125deg, rgba(39,107,130,1) 0%, rgba(49,84,129,1) 100%); /* ff3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(49,84,129,1)), color-stop(100%, rgba(39,107,130,1))); /* safari4+,chrome */
  background: -webkit-linear-gradient(125deg, rgba(39,107,130,1) 0%, rgba(49,84,129,1) 100%); /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(125deg, rgba(39,107,130,1) 0%, rgba(49,84,129,1) 100%); /* opera 11.10+ */
  background: -ms-linear-gradient(125deg, rgba(39,107,130,1) 0%, rgba(49,84,129,1) 100%); /* ie10+ */
  background: linear-gradient(325deg, rgba(39,107,130,1) 0%, rgba(49,84,129,1) 100%); /* w3c */
}

.chat__fiches h3 {
  color: #e6eaee;
  margin: 10px 20px;
  text-align: left;
}

.chat__fiches ul {
  list-style-type: none;
}

.chat__fiches li {
  background: #e6eaee;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
}

.material-icons {
  vertical-align: middle;
    margin-right: 5px;
}

.a__fiche {
    margin-left: 20px;
  /*margin: 1em;*/
  display: inline-block;
}
a i {
  vertical-align: middle;
}
a.flex {
  display: inline-flex;
}

/* unvisited link */
a:link {
    color: white;
}

/* visited link */
a:visited {
    color: white;
}

/* mouse over link */
a:hover {
    color: red;
}

/* selected link */
a:active {
    color: white;
}

button.operatie{
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 10px;
    margin-left: 20px;
    margin-bottom: 5px;
    width: 90%;
    text-align: left;
    border: none;
    outline: none;
}

button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 10px;
    margin-left: 20px;
    margin-bottom: 5px;
    width: 90%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
    background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0 10px;
    display: none;
}

button.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* 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/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 30%; /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.close {
    float:right;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: red;
    cursor: pointer;
}

.inputPersonForm{
    border: 3px solid #f1f1f1;
}

.inputField{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Set a style for all buttons */
#inputSubmitButton {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButton:hover {
    opacity: 0.8;
}

#inputSubmitButtonVoertuig{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonVoertuig:hover {
    opacity: 0.8;
}

#inputSubmitButtonCaravan{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonCaravan:hover {
    opacity: 0.8;
}

#inputSubmitButtonAnswer{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonAnswer:hover {
    opacity: 0.8;
}
#inputSubmitButtonVoorwerp{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonVoorwerp:hover {
    opacity: 0.8;
}

#inputSubmitButtonSettings:hover {
    opacity: 0.8;
}

#inputSubmitButtonSettings{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

#inputSubmitButtonTap{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonTap:hover {
    opacity: 0.8;
}

#inputSubmitButtonOma{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonOma:hover {
    opacity: 0.8;
}

#inputSubmitButtonRccu{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonRccu:hover {
    opacity: 0.8;
}

#inputSubmitButtonOsint{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonOsint:hover {
    opacity: 0.8;
}

#inputSubmitButtonSynthese{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonSynthese:hover {
    opacity: 0.8;
}

#inputSubmitButtonLabo{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonLabo:hover {
    opacity: 0.8;
}

#inputSubmitButtonLabel{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonLabel:hover {
    opacity: 0.8;
}

#inputSubmitButtonBom{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonBom:hover {
    opacity: 0.8;
}

#inputSubmitButtonAnpr{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonAnpr:hover {
    opacity: 0.8;
}

#inputSubmitButtonD1{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonD1:hover {
    opacity: 0.8;
}

#inputSubmitButtonD2{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonD2:hover {
    opacity: 0.8;
}

#inputSubmitButtonD3{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonD3:hover {
    opacity: 0.8;
}

#inputSubmitButtonPlaats{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonPlaats:hover {
    opacity: 0.8;
}

#inputSubmitButtonD4{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonD4:hover {
    opacity: 0.8;
}

#inputSubmitButtonD5{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonD5:hover {
    opacity: 0.8;
}

#inputSubmitButtonItem{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonItem:hover {
    opacity: 0.8;
}

#inputSubmitButtonChoiceLimit{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonChoiceLimit:hover {
    opacity: 0.8;
}

#inputSubmitButtonTeam{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
#inputSubmitButtonTeam:hover {
    opacity: 0.8;
}

.inputContainer {
    padding: 16px;
}

.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
}
img.avatar {
    height: 174px;
    width: 174px;
    
    border-radius: 50%;
}

.personFicheError{
    display:none;
    color:red;
}

#personFicheLink{
    margin-top:10px;
}

#voertuigFicheLink{
    margin-top:10px;
}

#caravanFicheLink{
    margin-top:10px;
}

#voorwerpFicheLink{
    margin-top:10px;
}

#tapFicheLink{
    margin-top:10px;
}

#omaFicheLink{
    margin-top:10px;
}

#rccuFicheLink{
    margin-top:10px;
}

#osintFicheLink{
    margin-top:10px;
}

#laboFicheLink{
    margin-top:10px;
}

#bomFicheLink{
    margin-top:10px;
}

#anprFicheLink{
    margin-top:10px;
}

#plaatsFicheLink{
    margin-top:10px;
}

#d1FicheLink{
    margin-top:10px;
}

#d2FicheLink{
    margin-top:10px;
}

#d3FicheLink{
    margin-top:10px;
}

#d4FicheLink{
    margin-top:10px;
}

#d5FicheLink{
    margin-top:10px;
}

#itemFicheLink{
    margin-top:10px;
}

#teamFicheLink{
    margin-top:10px;
}


.formColumn {
    float: left;
    width: 50%;
}

/* Clear floats after the columns */
.formRow:after {
    content: "";
    display: table;
    clear: both;
}

.modalPerson-content {
    background-color: #fefefe;
    margin: auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
}

.limited{
    margin-left: 5px;
}
.dummy__class{
    
}

.chat__copyright {
  background: #e6eaee;
  display: flex;
  padding: 10px;
  /*height: 60px;*/
  flex-shrink: 0;
}

textarea{
    height: 100%;
    width: 100%;
   -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8++ */
    min-height: 200px;
}

.tableTextArea{
    display: block;
}

.blackbtn {
background-color: #333; /* adds a background colour to the button */
color: #fff; /* changes the text colour */
cursor: pointer; /* changes the mouse on hover */
padding: 5px 20px; /* adds 10px of space to top and bottom of text and 30px of space on either side */ 
}

.blackbtn:hover {
background-color: #fff; /* adds a background hover colour to the button */
color: #333; /* changes the text colour on hover */
}

/*@media (max-width: 768px) {
    * {
    font-size: 1rem;
  }
.chat{
    height: 830px;
}
    .chat__main{
        height: 830px;
    }
  .chat__sidebar {
    display: none;
  }
    .chat__fiches {
    display: none;
  }
    .chat__copyright{
        display: none;
    }

    .chat__header_custom{
        height: 54px;
    }
    .navLI{
        height: 54px;
    }
    .chat__header_custom{
        display:none;
    } 
    #admin-form{
        display: none;
    }
    #fontSlider{
        display: none;
    }
    #logbookSearch:{
        display: none;
    }
    .inputSearchStyle{
        display: none;
    }
    .chat__messages{
        height: 634.88px;
    }
  .chat__footer {
    flex-direction: column;
  }

  .chat__footer form {
    margin-bottom: 10px;
  }

  .chat__footer button {
    margin-right: 0px;
  }
}*/


@media (min-width: 414px) and (max-width: 414px) {
    * {
    font-size: 1rem;
    }
    .chat{
    }
    .chat__main{
        height: 93vh;
        width: 344px;
    }
    .chat__sidebar {
    display: none;
    }
    .chat__fiches {
    display: none;
    }
    .chat__copyright{
        display: none;
    }
    .chat__header_custom{
        height: 7vh;
    }
    .navLI{
        height: 6vh;
    }
    /* .chat__header_custom{
        display:none;
    } */
    #admin-form{
        display: none;
    }
    #fontSlider{
        display: none;
    }
    #logbookSearch:{
        display: none;
    }
    .inputSearchStyle{
        display: none;
    }
    .chat__messages{
    }
    .chat__footer {
    flex-direction: column;
    }

    .chat__footer form {
    margin-bottom: 10px;
    }

    .chat__footer button {
    margin-right: 0px;
    }
    #searchBox{
        display: none;
    }
    #welcomeTag{
        display: none;
    }
    #languagePick{
        display: none;
    }
    #sendMsg{
        display: none;
    }
    #inpImg{
        width: 250px;
    }
}
.notification-counter{
    position: absolute;
    top: -2px;
    right: 0;
    background-color: rgba(212, 19, 13, 1);
    color: #fff;
    border-radius: 2px;
    padding: 1px 3px;
    font: 12px Verdana;
}

@media (max-width: 1024px) {
  * {
    font-size: 1rem;
  }

    .chat__header_custom{
        height: 7vh;
    }
    .navUL{
        height: 7vh;
    }
    .chat{
        height: 80.15vh;
    }
    .rooms-wrapper{
        height: 80.15vh;
        overflow: auto;
    }
    .chat__main{
        height: 80.15vh;
    }
    .chat__fiches{
        height: 80.15vh;
    }
    
    .modalPerson-content{
        width:80%;
    }
    
  .chat__sidebar {
    display: none;
  }

   /* .chat__header_custom{
        display:none;
    } */
    #admin-form{
        display: none;
    }
    #fontSlider{
        display: none;
    }
    #logbookSearch{
        display: none;
    }
    #chatLink{
        display: none !important; 
    }
    #takenLink{
        display: none !important; 
    } 
    #targetChartLink{
        display: none !important; 
    } 
    #bestandenBox{
        display: none !important; 
    } 
    #bestandenHeader{
        display: none !important; 
    }
    #articulatie{
        display: none !important; 
    }
    #d1FichePanel{
        display: none !important; 
    }
    #d2FichePanel{
        display: none !important; 
    }
    #d3FichePanel{
        display: none !important; 
    }
    #d4FichePanel{
        display: none !important; 
    }
    #d5FichePanel{
        display: none !important; 
    }
    
    textarea{
        min-height: 120px;
    }
    .modal{
        padding-top: 5px;
    }
    
    html,
    body{
        overscroll-behavior-y:contain;
    }
    
  .chat__footer {
    flex-direction: column;
  }

  .chat__footer form {
    margin-bottom: 10px;
  }

  .chat__footer button {
    margin-right: 0px;
  }
}

.overlay {
    /* Height & width depends oddn how you want to reveal the overlay (see JS below) */    
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
    z-index: 100;
}

.synthese{
    cursor: pointer;
    color: white;
    margin-left: 5px;
}

.antwoord{
    cursor: pointer;
    color: white;
    margin-left: 5px;
}

.item{
    cursor: pointer;
    color: white;
    margin-left: 5px;
}

.dirops{
    cursor: pointer;
    color: white;
    margin-left: 5px;
}

.intel{
    cursor: pointer;
    color: white;
    margin-left: 5px;
}

.appui{
    cursor: pointer;
    color: white;
    margin-left: 5px;
}

.limit{
    cursor: pointer;
    color: white;
    margin-left: 5px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}