section {
 /* max-width: 740px;*/
  margin: 0 auto;
  display:flex;
  border-color: inherit;
}

a.logo {
 /* max-width: 740px;*/
 color:inherit;
 text-decoration:none;
  margin: 0 auto;
  display:flex;
  border-color: inherit;
}


a.item {
 color:inherit;
 text-decoration:none;
  margin: 0 auto;
  display:none;
  border-color: inherit;
}


a.item.is-visible {
  display: flex;
}






a.title {
 color:inherit;
 text-decoration:none;
  margin: 0 auto;
  display:flex;
  border-color: inherit;
}




.title  {
  width:100vw;
  flex-direction:row;
  flex-grow: 0;
  flex-shrink: 10;
    align-items: center;
    justify-content: flex-end;
 
    cursor: pointer;
}

.title .arrow_back  {
    flex-grow: 0;
    flex-shrink: 3;
    padding-left:2vw;

}
.title_icon  {
    flex-grow: 0;
    flex-shrink: 3;
    padding: 3vw;
}


/*   PAGES  ****/


a.page_btn  {
    padding: 1.5vw;
    min-width: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
     
    cursor: pointer;
  background-color: #592e00;
    margin:0.4vw;
    font-size:2.5vw;

    text-decoration:none;
    color:white;

}

a.page_btn:hover { 
  background-color: #f28a19;

}
a.page_btn-highlight  {
  background-color: #f28a19;
}
.pages  {
    flex-grow:0;
    flex-shrink: 10;
  

       align-items: center;
    justify-content: center;
 
   width:100vw;

}







a.item  {
    align-items: center;
    justify-content: center;
    padding:3vw;
    cursor: pointer;
}

a.item:hover { 
  background-color: #212020;
}



.title_label  {
    font-size: 3.5vw;
    flex-grow: 3;
    flex-shrink: 0;
    padding-left: 3vw;
}


.item_all_labels{
  display: flex;
  flex-direction: column;
  /*
    flex-grow: 3;
    flex-shrink: 0;
    */
    width:80vw;
    overflow:hidden;
}


.item_label  {
    font-size: 3.5vw;
    /*
    flex-grow: 3;
    flex-shrink: 0;
    */
    padding-left: 3vw;
}

.item_sub_label  {
    font-size: 2.5vw;
    /*
    flex-grow: 3;
    flex-shrink: 0;
    */
    padding-left: 3vw;
    opacity: 0.7;
}


.listing_body  {
    display: flex;
    flex-direction: column;

 min-height:100vh;

}


.content  {
    flex-grow:10;
}

.thumbnail {
  width :10vw;
  height:10vw;
}

#search_input{
  font-size:3vw;
  padding:1vw;
}


.section_search_input{
  margin-top:2vw;
  margin-bottom:2vw;
}



.message_item{
  display:none;
  text-align:center;
  padding:1vw;
  font-size: 4vw;
  background-color: #BDE5F8;
  color:black;
}


/* spinner */
.lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 4px;
  border: 4px solid black;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: black transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
