.cat-list {
    position:  relative;
    width: calc(100% + 15px);
    left: -10px;
    bottom: -10px;
    height: auto;
    display: block;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient:  horizontal;
    -webkit-box-direction:  normal;
        -ms-flex-direction:  row;
            flex-direction:  row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.cat-list::after{
    clear: both;
    content: "";
    display: block;
}

.cat-tag {
    height: 25px;
    margin-left: 10px;
    display:  -webkit-box;
    display:  -ms-flexbox;
    /* float: right; */
    display:  flex;
    -webkit-box-orient:  horizontal;
    -webkit-box-direction:  normal;
        -ms-flex-direction:  row;
            flex-direction:  row;
    margin-top: 5px;
    cursor: pointer;
}

.cat-tag-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align:  center;
        -ms-flex-align:  center;
            align-items:  center;
    padding-left:  5px;
    padding-right:  5px;
    color: white;
    font-weight: 700;
    font-size: 1.1em;
}

.research-cat-tag .cat-tag-description{
    background-color: #0996AD;
}

.app-cat-tag .cat-tag-description{
    background-color: #008951;
}
#form-container{
    position: relative;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    margin-top: 40px;
    background-color: white;
    clear: both;
}
#form-container h1{
    margin: 0;
    padding: 10px;
    padding-right: 20px;
    background-color: rgb(24, 129, 141);
    color: white;
    font-weight: 900;
    display:  flex;
    justify-content:  center;
    align-items:  center;
}

#form-container h1>.icon::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f0b0";
    margin-right: 10px;
}

.filter-form{
    display: block;
    position: relative;
    text-align: center;
    background-color: rgb(189, 223, 216) !important;
    color: black;
    padding: 10px;
    flex-grow: 1;
    line-height: 2em;
}

.filter-select{
    color: white;
    padding:5px;
    font-weight: 900;
}

.filter-select.filter-research{
    background-color: #0996AD;
}
.filter-select.filter-app{
    background-color: #008951;
}

.filter-select option{
    font-weight: 600;
    background-color: white;
}

.filter-select.filter-research option{
    color: #0996AD;
}

.filter-select.filter-app option{
    color: #008951;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}

.teco-research-application-graphic{
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    max-height: 100vw;
    margin-left:  20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.teco-research-application-graphic img{
    padding: 0;
    display: block;
}


.teco-research-application-graphic .graphics-container{
    position: relative;
    overflow: hidden;
    border: lightgray solid 1px;
}

.teco-research-application-graphic .graphics-title{
    position: absolute;
    padding: 5px;
    top: 40px;
    font-weight: 900;
    -webkit-box-shadow: 10px 6px 56px -6px rgba(0,0,0,0.35);
    -moz-box-shadow: 10px 6px 56px -6px rgba(0,0,0,0.35);
    box-shadow: 10px 6px 56px -6px rgba(0,0,0,0.35);
    background-color: white;
}

.teco-research-application-graphic .research-title{
    left: 60px;
    color: #0996AD;
}

.teco-research-application-graphic .application-title{
    right: 60px;
    color: #008951;
}

@media only screen and (min-width: 1300px) {
    .hide-on-big-screen{
		display: none !important;
	}
    .teco-research-application-graphic{
        max-width: 50%;
        width: unset;
        float: right;
    }

    .teco-research-application-graphic img{
        max-height: 520px !important;
    }    
}
@media only screen and (max-width: 1300px) {
    .hide-on-small-screen{
        display: none !important;
    }
    .teco-research-application-graphic img{
        max-height: 600px !important;
    }
    .teco-research-application-graphic{
        margin: 0;
    }
    .filter-form span.intro::after {
        content: "\A";
        white-space: pre;
    }
}
@media only screen and (max-width: 910px) {
    .filter-form .and-sep::before {
        content: "\A";
        white-space: pre;
    }
    .filter-form .and-sep::after {
        content: "\A";
        white-space: pre;
    }
    .filter-form select{
        width: 250px;
    }

}
@media only screen and (max-width: 600px) {
    .teco-research-application-graphic img{
        -webkit-transform: scale(1.15);
                transform: scale(1.15);
    }
    .teco-research-application-graphic .graphics-title{
        top: 10px;
        padding: 2px;
        font-size: 0.8em;
    }
    .teco-research-application-graphic .research-title{
        left: 30px;
    }
    
    .teco-research-application-graphic .application-title{
        right: 30px;
    }
}
@media only screen and (max-width: 420px) {
    #form-container{
        flex-direction: column;
    }
}