.gs_search_container {
  position: relative;
  border-color: #999;  
}

.gs_search_input {
  border-left: 0px;
  border-right: 0px;
  border-top: 0px;
  border-bottom: 1px solid  #999;;
  width: 400px;
  height: 40px;
}

.gs_search_input:focus {
  outline: none;
  border-bottom: 2px solid  #333;;
}

.gs_search_input:disabled {
  background-color: transparent;
}

.gs_search_camera_button {
  background-color: transparent;
  width: 30px;
  height: 30px;
  border: 0px;
  font-weight: 300;
  cursor: pointer;
}

.gs_search_camera_icon {
  font-size: 15px;
}

.gs_search_mic_button {
  background-color: transparent;
  width: 30px;
  height: 30px;
  border: 0px;
  cursor: pointer;
}

.gs_search_mic_pressing_button {
  background-color: transparent;
  width: 30px;
  height: 30px;
  border: 0px;
  cursor: pointer;
  
}

.gs_search_mic_icon {
  font-size: 15px;
}

.gs_search_insta_result_container {
  max-width: 600px;
  border-radius: 2px;
  box-shadow: .5rem .5rem 1rem rgba(0, 0, 0, 0.6);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  margin-top: 5px;
  background-color: white;
  width: 95%;
}

.gs_search_insta_result_item{
  display: inline-flex;
  width: 100%;
  cursor: pointer;
}

.gs_search_insta_result_item:hover {
  background-color: #efebea;
}

.gs_search_insta_result_item_img{
  height: 50px;
  margin: 10px
}

.gs_search_insta_result_item_img_not_found{
  height: 50px;
  margin: 10px;
  content: url("https://comnplayscience.eu/app/images/notfound.png");
}

.gs_search_insta_result_item_p{
  text-decoration: none;
  margin: auto;
  margin-left: 2px;
}

em {
  color: #0d6efd
}

.gs_search_img_uploaded{
  height: 40px; 
  margin-left: 10px;
}

.gs_search_img_uploaded_p{
  max-width: 200px; 
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  height: 40px;
  margin-right: 10px;
  margin-left: 10px;
}

.gs_search_img_uploaded_container{
  background-color: white; 
  position: absolute; 
  display: inline-flex;
  border-radius: 10px; 
  top:0px;
  left: 0px; 
  height: 40px; 
  max-width: 80%;
  border-radius: 1px;
  box-shadow: .5rem .5rem 1rem rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

.gs_search_stats_container{
  display: block;
}

.gs_search_stats_p{
  display: block;
} 

.gs_search_results_main_container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gs_search_main_result_item_container{
  width: 300px;
  height: 500px;
  margin: 10px;
  cursor: pointer;
}

.gs_search_main_result_item_container:hover {
  background-color: #efebea;
}

.gs_search_images_slideshow-container{
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.gs_search_images_slide {
  display: none;
}

.gs_fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes gs_fade {
  from {opacity: .4}
  to {opacity: 1}
}

.gs_search_prev, .gs_search_next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: gray;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-decoration: none;
}

/* Position the "next button" to the right */
.gs_search_next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.gs_search_prev:hover, .gs_next:hover {
  background-color: rgba(0,0,0,0.8);
}


.gs_search_main_result_item_img{
  width: 300px;
  height: 400px;
}

.gs_search_main_result_item_img_not_found{
  width: 300px;
  height: 400px;
  content: url("https://comnplayscience.eu/app/images/notfound.png");
}

.gs_search_main_result_item_name_p{
  display: block;
}

.gs_search_main_result_item_price_p{
  display: block;
  margin-top: -10px;
  font-size: 15px;
  color: #666;
}

.gs_search_main_result_item_score_p{
  display: block;
  margin-top: -10px;
  font-size: 13px;
  color: #888;
  font-style: italic;
}





/* Absolute Center Spinner */
.gs_loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.gs_loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.gs_loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.gs_loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}