/* Map */

.map-scroll:after {
    content: 'Gebruik ctrl + scroll om op de kaart in/uit te zoomen';
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    text-align: center;
    z-index: 999;
    font-size: 34px;
    color: #fff;
    line-height: 1em;
}

.map-scroll:before {
    transition: background-color 0.5s linear;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    content: '';
    background: rgba(0,0,0,0.4);
    z-index: 999;
}

/* Navbar Button */

.navbar-button {
    background-color: #1fb2ad;
    text-decoration: none !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    height: 40px;
    width: 60px;
    font-size: 16px;
    padding: 8px;
    margin-bottom: 30px;
}

.navbar-button:hover {
    background-color: #16d9d2;
    text-decoration: none !important;
    color: white !important;
}

/* Rows */

.one-column-row {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}

.two-column-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
}

.clickable-row:hover {
    background-color: #1FB2AD;
    cursor: pointer;
}

.clickable-row:hover .column span {
    color: #fff !important;
}

.clickable-row:hover .column span a {
    color: #fff !important;
}

.clickable-row:hover .column span i {
    color: #fff !important;
}

.column {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-basis: 100%;
    box-sizing: border-box;
    width: 100%;
}

.column span {
    width: 100%;
}

.column span a {
    text-decoration: none !important;
}

.column span a {
    color: #1FB2AD;
}

.column span i {
    color: #1FB2AD;
}

.column span a:hover {
    color: #16d9d2 !important;
    cursor: pointer;
}

.key {
    flex-basis: 50%;
    box-sizing: border-box;
    padding-bottom: 10px;
}

.value {
    flex-basis: 50%;
    box-sizing: border-box;
    padding-bottom: 10px;
}

/* Message */

.notice-message {
    display: none;
    background-color: #1FB2AD;
    color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.notice-message.error {
    background-color: #F47174;
}

textarea {
    font-size: 1.2rem;
}

/* Form */

.nts-report-container {
    display: flex; 
    justify-content: flex-start; 
    flex-direction: column; 
    width: 60%;
}

.fa-asterisk {
    font-size: 10px; 
    position: relative; 
    left: 4px; 
    top: -8px;
}

select {
    color: #9e9e9e;
}

option:not(:first-of-type) {
    color: black;
}

/* Date picker */

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: none !important;
    background: none !important;
  }

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    color: #fff !important;
    background: #1fb2ad !important;
}

.ui-datepicker td span, .ui-datepicker td a {
    text-align: center;
}

.ui-widget.ui-widget-content {
    width: 100%;
}

.ui-datepicker-prev span, .ui-datepicker-next span {
    background-image: none !important;
}

.ui-datepicker-prev:before, .ui-datepicker-next:before {
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    font-weight: normal;
    align-items: center;
    justify-content: center;
}

.ui-datepicker-prev:before {
    content: "\f100";
}

.ui-datepicker-next:before {
    content: "\f101";
}

/* Media */

@media screen and (max-width: 768px) { /* Hieronder worden de kolommen op kleinere schermen gereset */
    .two-column-row {
        flex-wrap: wrap;
        flex-basis: 100%;
    }

    .nts-report-container {
        width: 100%;
    }    
}

