/* RESET RULES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --black: #1a1a1a;
  --white: #fff;
  --gray: #ccc;
  --darkgreen: #18846C;
  --lightbrown: antiquewhite;
  --darkblack: rgba(0,0,0,0.8);
  --minRangeValue1: 180px;
  --minRangeValue: 280px;
}


button {
  cursor: pointer;
  background: none;
}

#imglist {
  display: block;
  max-width: 100%;
  height: auto;
}

ol,
ul {
  list-style: none;
}

a {
  color: inherit;
}

.cardYacimiento {
  border-radius: 2px;

}


.cardYacimiento:hover {
	/* transform: scale(1.001) rotate(1deg); */
  opacity: 0.8;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  /* opacity: 0; */




  transition: opacity 0.15s ease-in;
}

.gallery1 {
  padding: 0 2rem;
}

/* .container {
  max-width: 1030px;
  margin: 0 auto;
} */

.d-none1 {
  display: none;
}


/* TOOLBAR
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.toolbar1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toolbar1 .search-wrapper1 {
  position: relative;
}

.toolbar1 input[type="search1"] {
  /* font-size: 1.1rem; */


  padding-bottom: 3px;

  font-size: 14px;
}



.toolbar1 ::-moz-placeholder {
  color: var(--gray);
}

.toolbar1 :-ms-input-placeholder {
  color: var(--gray);
}

.toolbar1 ::placeholder {
  color: var(--gray);
}

.toolbar1 .counter1 {
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  font-size: 0.9rem;
  color: black;
  font-size: 14px;
}

.view-options1 {
  display: flex;
  align-items: center;
}

.view-options1 li:not(:last-child) {
  margin-right: 1.2rem;
}

.view-options1 button {
  padding: 2px;
  border: 3px solid transparent;
}

.view-options1 .active1 button {
  border-color: #4A90E2;

}


/* IMAGE LIST
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.image-list1 {
  margin: 3rem 0;
}

.image-list1 li {
  /* background: var(--lightbrown); */
  background: var(--gray);
  color: var(--darkblack);
}

.image-list1 p:first-child {
  font-weight: bold;
  font-size: 1.15rem;
}

.image-list1 p:last-child {
  margin-top: 0.5rem;
}


/* GRID VIEW
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.grid-view1 {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(var(--minRangeValue1), 1fr));
}

.grid-view1 figcaption {
  padding: 1rem;
}


/* LIST VIEW
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.list-view1 li + li {
  margin-top: 1.5rem;
}

.list-view1 figure {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: 150px 1fr;
  align-items: center;
}


/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 900px) {
  .toolbar1 input[type="range"] {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .grid-view1 li {
    text-align: center;
    padding: 0.5rem;
  }
  
  .grid-view1 figcaption {
    padding: 0.5rem 0 0;
  }
}