#searchapp {
    display: flex;
}
.meta-filter {
    flex: 0 0 200px;
}
.meta-filter .filter-category {
    background: #1cb1af;
    transition: 0.5s background linear;
}
.meta-filter.highlight .filter-category, .mobile-handle.highlight{
    background: rgb(60, 69, 146);
}
.mobile-handle.highlight{
    animation:rolling 1.5s linear infinite;
}
@keyframes tilt-shaking {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@keyframes rolling {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(80vw) rotate(1080deg);
    }
    0% {
        transform: translateX(0) rotate(0deg);
    }
}
@keyframes jump-shaking {
    0% {
        transform: translateY(0) translateX(0)
    }
    25% {
        transform: translateY(-19px) translateX(19px)
    }
    35% {
        transform: translateY(-19px) translateX(19px) rotate(17deg)
    }
    55% {
        transform: translateY(-19px) translateX(19px) rotate(-17deg)
    }
    65% {
        transform: translateY(-19px) translateX(19px) rotate(17deg)
    }
    75% {
        transform: translateY(-19px) translateX(19px) rotate(-17deg)
    }
    100% {
        transform: translateY(0) translateX(0) rotate(0)
    }
}
.meta-filter {
    color: white;
}
.meta-filter .filter-option .filter-checkbox {
    border-color: white;
}
.inCompanyEnabled .meta-filter .filter-category {
    background: rgb(60, 69, 146);
}
.inCompanyEnabled .meta-filter {
    color: white;
}
.inCompanyEnabled .meta-filter .filter-checkbox {
    border-color: white;
}
.meta-filter .filter-option {
    display: flex;
    padding: 0px 10px;
}
.meta-filter .filter-checkbox {
    border: 1px solid black;
    height: 1rem;
    width: 1rem;
    margin-right: 5px;
}
.meta-filter .filter-checkbox.selected {
    background: white;
}
.filter-option-option {
    flex: 1;
    color: white;
}
.meta-hits {
    flex: 1;
    padding: 0px 10px;
    max-width: 100%
}
@media screen and (min-width:800px){
    .meta-hits{

        margin-right:-15px;
        padding-right:0px !important;
    }
}
.current-filter {
    display: flex;
    width: 100%;
    flex: 1;
    height: 40px;
    margin-bottom: 2px;
}
.current-filter button {
    background: white;
    height: 40px;
    border-color: gray;
}
.current-filter .filter:after {
    display: inline;
    content: ", "
}
.current-filter .filter:last-child:after {
    content: "";
}
.current-filter .filter-wrap {
    flex: 1;
    padding: 5px 0px;
}
.check-slide {
    width: 60px;
    height: 30px;
    background: #1cb1af;
    position: relative;
    cursor: pointer;
}
.slide-ball {
    height: 26px;
    width: 26px;
    background: white;
    position: absolute;
    right: 32px;
    top: 2px;
    transition: 0.5s all linear;
}
.check-slide.inCompanyEnabled {
    background: rgb(60, 69, 146);
}
.check-slide.inCompanyEnabled .slide-ball {
    background: white;
    right: 2px;
}
.in-company-toggle {
    display: flex;
    flex-direction: row;
    padding: 2px 0px 4px;
    justify-content: space-between;
}
.in-company-toggle h4 {
    margin: 0;
    padding: 0 5px;
    line-height: 30px;
    font-size: 14px;
    color: gray;
    cursor:pointer;
}
.in-company-toggle h4.inCompanyEnabled, .in-company-toggle h4.inHouse {
    color: black;
}
.category-header {
    margin: 0;
    padding: 5px 0px;
}
.mobile-only {
    display: none;
}
.mobile-only-flex{
    display:none;
}
.show-more-button {
    background: white;
    color: black;
    border: 1px solid gray;
    border-radius: 5px;
    display: block;
    padding: 5px;
    height:auto;
    width: 400px;
    max-width: 100%;
    margin: 0 auto 20px;
}
.subnav {
    padding-right: 50px;
    width: 100%;
    height: 20px;
    text-align: right;
}
.primary_navigation .subnav ul li.leaf {
    font-weight: 600;
    padding: 10px;
    box-sizing: border-box;
    color: #777777;
    text-align: center;
    padding-left: 60px;
}
.primary_navigation .subnav ul li.leaf a {
    color: #777777;
}
.theme .content {
    flex: 1;
    padding-left:20px;
    padding-top: 6px;
}
.theme .image {
    width: 200px;
}
.in-title-img{
    max-width: 100px;
    /* overflow: hidden; */
    float: left;
    margin-right:10px;
}
.in-title-img img{
    max-width:100%;
    min-height: 100px;
    object-fit: contain;
}
.form-control-container:after{

    position: absolute;
    top: 5px;
    right: 10px;
    content: "\f078";
    font-family: 'FontAwesome';
    pointer-events: none;
    color: #1cb1be;
}
.non-hits{

    margin-top: -13px;
}
@media screen and (max-width: 800px) {
    .possible-img h2.hit-title{

        padding-top: 15px;
    }
    .non-hits{
        margin-top:0px;
    }
    #searchapp {
        margin: 0px 5px;
    }
    .theme h1{
        font-weight:bold;
        font-size:1.5rem;
    }
    .theme .image {
        width: 100%;
        /* margin: 0 auto;
        */
        /* max-height: 200px;
        */
        object-fit: contain;
        max-width: 100%;
        margin-bottom: 15px;
    }
    .theme .content{
        padding-left:0px;
    }
    .meta-filter {
        position: fixed;
        width: 100vw;
        top: 100vh;
        left: -100vw;
        background: white;
        z-index: 99;
    }
    .in-company-toggle {
        justify-content: space-around
    }
    .meta-filter .filter-category {
        padding: 0px 20px;
    }
    #noncourse {
        order: 1;
    }
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block;
    }
    .mobile-only-flex{
        display:flex;
    }
    .mobile-handle {
        position: absolute;
        width: 60px;
        height: 60px;
        background: #1cb1af;
        color: white;
        right: -70px;
        top: -70px;
        font-size: 30px;
        border-radius: 20px;
        line-height: 60px;
        padding: 15px;
        text-align: center;
        transition: 0.5s background linear;
    }
    .details-wrap a.meta-hit-container{

        background: #1cb1af;
        color:white;
        border-radius:5px;
        padding:5px;
    }
    .current-filter button{
        width:100%;
        background: #1cb1af;
        color:white;
    }
    .current-filter{

        margin-bottom:20px;
    }

    #searchapp {
        order: 2;
    }
    .meta-filter.toggled {
        left: 0vw;
        top: 0vh;
        z-index: 99;
        height: 100vh;
        overflow-y: auto;
    }
    .mobile-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }
    .details-wrap {
        flex-wrap: wrap;
    }
    .details-wrap .detail:last-child {
        flex: 1 100%;
        text-align: center;
        padding: 5px 0px;
    }
    .details-wrap .detail:last-child a {
        text-align: center;
    }
    .subnav {
        padding: 0;
    }
    .primary_navigation .subnav ul li.leaf {
        padding: 5px;
    }
    .primary_navigation .subnav ul {
        display: flex;
        justify-content: space-between;
    }
    .result-button {
        width: 100%;
        padding: 15px;
        background-color: #c70f6c;
        color: white;
        max-height: none;
        height: auto;
    }
}
.meta-app-wrap {
}
h2.mobile-only {
    font-weight: bold;
    font-size: 22px;
}
.themes {
    width: 100%;
}
.theme {
    margin: 5px 0px 5px 5px;
    padding: 15px;
    border: 1px solid black;
    display: flex;
    flex-wrap:wrap;
}
.theme-extra{
    flex: 1 0 100%;
}
.theme-extra button{
    height:auto;
}
.theme h1{
    flex:1 0 100%;
}
.theme.in_company{
}
.theme.in_company a{
    color:white;
}
.theme.in_company .image{
}
.theme .image img {
    max-width: 100%;
    height: auto;
}
.theme .content h1 {
    font-size: 24px;
}
.theme .content .links {
    display: flex;
    justify-content: space-between;
}
.theme .content .links a {
    width: auto;
    color:black;
    font-weight: 600;
}
.popup-wrap {
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.popup-wrap .popup {
    width: 550px;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    background: #ceecee;
    padding: 25px;
    position:relative;
}
.fa.closer{
    position:absolute;
    top: 2px;
    right: 2px;
    color: black;
    font-weight: 300;
    font-size: 20px;
}
.popup img{
    max-width:100%;
}
.theme-group{
    margin-bottom:10px;
}
.in-company-header{
    padding: 5px 10px 5px;
    font-size: 1.75em;
    border: 1px solid black;
    margin: 5px 0px 5px 5px;
    background: #1cb1af;
    color: white;
}
body{
    background:white;
}
#searchapp {
    display: flex;
}
.meta-filter {
    flex: 0 0 200px;
}
.meta-filter .filter-option {
    display: flex;
    padding: 0px 10px;
}
.meta-filter .filter-checkbox {
    border: 1px solid black;
    height: 1rem;
    width: 1rem;
    margin-right: 5px;
    margin-top: 3px;
}
.meta-filter .filter-checkbox.selected {
    background: white;
}
.filter-option-option, .meta-filter button, .filter-category{
    flex: 1;
    color: white;
    font-family:'Lato';
}
h1,h2,h3,button,a{
    font-family:'Lato';
}
.meta-hits {
    flex: 1;
    padding: 0px 10px;
}
.current-filter {
    display: flex;
    width: 100%;
    flex: 1;
}
.current-filter .filter:after {
    display: inline;
    content: ", "
}
.current-filter .filter:last-child:after {
    content: "";
}
.current-filter .filter-wrap {
    flex: 1;
}
h3.statement{
    font-style:italic;
    font-size: 14px;
}
p.statement{
    text-align:right;
    font-weight:bold;
}
.carousel-slider {
    position: relative;
    overflow: hidden;
}
.slide-wrap {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 4000px;
}
.slide {
    float: left;
    overflow: hidden;
}
.hit-text {
    white-space: pre-wrap;
}
.meta-hit-container {
    display: block;
}
.hit-meta-flex {
    display: flex;
    border: 1px solid gray;
    flex-direction: row;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.hit-meta-portrait {
    flex: 0 100px;
    display: flex;
    justify-content: center;
}
.hit-meta-portrait img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    margin-top: 10px;
}
i.fa.fa-search.opleiding-search{
    color: #1cb1af;
    font-size: 30px;
    position: absolute;
    right: 45px;
    top: 20px;
}
@media screen and (max-width:800px){
    .form-control.search-field{
        height:60px;
        border:2px solid black;
    }
}
@media screen and (min-width:800px){
    i.fa.fa-search.opleiding-search{
        right: 25px;
    }
    i.fa.fa-search.opleiding-search{
        color: #1cb1af;
        font-size: 20px;
        position: absolute;
        right: 45px;
        top: 14px;
    }
}
.hit-meta-wrap {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hit-meta-wrap h2, .meta-app-wrap a {
    color: black;
    text-align: left;
    margin: 0;
    width: 100%;
    padding: 0;
}
.meta-app-wrap a{
    text-decoration:none;
}
a.extra-hit-container{
    padding:10px;
}
.details-wrap {
    flex: 1 100%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

h2.hit-title {
    font-weight: 600;
    font-size: 18px;
}
.overflow{
    max-height:180px;
    overflow:hidden;
}
.selected {
    font-weight: bold;
}
.faded {
    opacity: 0.4;
}
i.fa {
    font-style: normal !important;
}
.category-header{
    font-weight:bolder;
}
/* remove borders on sides */
@media screen and (max-width:1200px){
    #app.container,#app .container{
        max-width:100vw;
    }
}

@media screen and (max-width:100px){

}
.popup-wrap.hidden{
    display:none;
}
.popup-wrap.hidden.shown{
    display:flex;
}