main .search-content{
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 992px;
  width: 100%;
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.15));
}
@media only screen and (min-width: 992px) {
  @supports (grid-area: auto){
    main .search-content {
      background: none;
      max-width: 100%;
      display: grid;
      grid-template-columns: minmax(auto,3fr) minmax( 900px, 14fr) minmax(auto,3fr);
      grid-template-rows: 60px 8fr;
    }
    @media only screen and (min-width: 2080px){
      main .search-content {
        grid-template-columns: auto 1456px auto;
      }
    }
  }
}

/*
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

header

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/
.search-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  font-size: 1rem;
}
.search-banner h3 {
  font-size: 30px;
  font-weight: 700;
  color: #414042;
}

.result-div-header{
  display: none;
}
.result-header {
  padding: 0 25px 0 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.result-header p {
  color: #000000;
  font-size: 16px;
  font-weight: bold;
}

@media only screen and (min-width: 992px) {
  @supports (grid-area: auto){
    .result-header{
      display: none;
    }
    .result-div {
      margin-bottom: 20px;
    }
    .result-div-header{
      display: flex;
      justify-content: flex-start;
      align-items: flex-end;
      grid-row: 1;
      grid-column: 2;
    }
    .result-div-header p{
      padding-left: 10px;
    }
    .result-div-header a{
      color: inherit;
    }
    .result-div-header .block {
      font-size: 0.85rem;
      flex-basis: 100px;
      background-color: rgba(255, 255, 255, 0.1);
      box-shadow: 0 2px 9px 0 rgba(0,0,0,0.05);
      border-radius: 1.8px 1.8px 0 0;
      margin: 0 6px 0 0;
      height: 80%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 25px;
      box-sizing: border-box;
      background-color: #EEEEEE;
      color: #222222;
    }
    .result-div-header .block.active {
      background-color: #FFFFFF;
      height: 100%;
      color: #222222;
    }
    .search-content .result-list{
      border-radius: 3px;
      border-top-left-radius: 0px;
      grid-row: 2;
      grid-column: 2;
      background-color: #FFFFFF;
      padding: 0 25px;
      margin: 25px 0;
    }
  }
}
.selected_item {
  align-items: center;
  justify-content: space-around;
  display:flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

/*
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

no-results

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/
.no-results {
  height: 100%;
  padding: 40px 25px;
}
@media only screen and (min-width: 992px) {
  @supports (grid-area: auto){
    .no-results{
      background-color: #FFFFFF;
      grid-row: 2;
      grid-column: 2;
      padding : 0;
      border-radius: 3px;
      border-top-left-radius: 0px;
      display: grid;
      grid-template-columns:  1fr 1fr 3fr 1fr 1fr;
      grid-template-rows:1fr 3fr 2fr 1fr 1fr 1fr;
      grid-template-areas:
      ". . . . ."
      ". . image . ."
      ". info info info ."
      ". . . . ."
      ". buttons buttons buttons ."
      ". . . . .";
    }
    .no-results img {
      grid-area: image;
    }
    .no-results .text-container {
      grid-area: info;
    }
    .no-results .text-container p {
      font-size: 0.85rem;
      font-weight: 300;
    }
    .no-results .button-container {
      grid-area: buttons;
      display: flex;
      justify-content: center;
    }

  }
}

a.contact-button{
  background-color: #222222;
  font-size: 1rem;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  width: 150px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
a.contact-button:active{
  outline: -webkit-focus-ring-color auto 5px;
}
.no-results img{
  width: 100%;
  height: auto;
}

.no-results span {
  font-weight: bold;
}

.no-results p{
  font-size: 1rem;
  font-weight: normal;
  line-height: 23px;
  text-align: center;
}
.no-results h1{
  color: #222222;
  font-size: 1.36rem;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
}
button {
  background-color: #3E8CAE;
  color: #FFFFFF;
  font-size: 0.75rem;
  border: 0;
  border-radius: 20px;
  font-weight: bold;
  text-align: center;
  width: 160px;
  height: 40px;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  button{
    width: 120px;
  }
}
a.primary-button{
  display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    padding: 0 5px;
    background-color: #3E8CAE;
    color: #FFFFFF;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
    width: 160px;
    height: 40px;
    cursor: pointer;
}

.button-container{
  display: flex;
  justify-content: center;
}
.no-results .button-container * {
  margin: 0 5px;
}

a:link,
a:hover,
a:active,
a:visited {
  text-decoration: none;
}

.blur-background.request-access{
  display: none;
}
.blur-background{
  background-color: rgba(0,0,0,0.3);
  z-index: 9999;
  position: fixed;
  height: 100%;
  width: 100%;
  top:0;
  left:0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.access-modal-position{
  position: fixed;
  top:0;
  left:0;
  z-index: 9999;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.access-modal{
  background: url(../img/modal-background.jpg) no-repeat center center;
  background-size: cover;
  width: 40rem;
  height: 22.5rem;
  display: flex;
  position: relative;
  justify-content: space-evenly;
  flex-direction: column;
  border-radius: 3px;
}

.access-modal> * {
  z-index: 1;
  flex-basis: 33.3333%;
}
.access-modal p {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 30px;
  text-align: center;
}
.access-modal span {
  color: #FFFFFF;
  display: block;
  font-size: 1.1rem;
  margin-top: 2rem;
  text-align: center;
  padding: 0 30px;

}
.access-modal a {
  text-decoration: underline;
  cursor: pointer;
}
.access-modal .data-info{
  font-size: 1rem;
  font-weight: 300;
}
.access-modal:before{
  content:'';
  display:block;
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height: 100%;
  background-color: #3E8CAE;
  z-index: 0;
  border-radius: 3px;
}
.close-modal {
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: -20px;
  height: 40px;
  width: 40px;
  z-index: 99999;
}
.access-modal .info{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.access-modal .contact {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .access-modal{
    width: 450px;
    height: 250px;
  }
  .access-modal p{
    font-size: 1.1rem;
    text-align: center;
  }
}

.basic-icon {
  height: 20px;
  width: 20px;
}
.tab-icon{
  padding-left: 30px;
  height: 20px;
  display: inline-flex;
  align-items: center;
}
.tab-icon.all-icon{
  background: url(../img/all-blue.svg) no-repeat center left;
  background-size: 20px 20px;
}
.dropdown .dropdown_content li a.all-icon {
  background: url(../img/all-blue.svg) no-repeat 15px center;
  background-size: 20px 20px;
}
.tab-icon.v-icon{
  background: url(../img/data-blue.svg) no-repeat center left;
  background-size: 20px 20px;
}
.dropdown .dropdown_content li a.v-icon {
  background: url(../img/data-blue.svg) no-repeat 15px center;
  background-size: 20px 20px;
}
.tab-icon.d-icon {
  background: url(../img/documents-blue.svg) no-repeat center left;
  background-size: 20px 20px;
}
.dropdown .dropdown_content li a.d-icon{
  background: url(../img/documents-blue.svg) no-repeat 15px center;
  background-size: 20px 20px;
}
.tab-icon.p-icon{
  background: url(../img/pages-blue.svg) no-repeat center left;
  background-size: 20px 20px;
}
.dropdown .dropdown_content li a.p-icon{
  background: url(../img/pages-blue.svg) no-repeat 15px center;
  background-size: 20px 20px;
}
.rotate-icon {
  transform: rotate(270deg);
}

.no-margin{
  margin:0;
}
