.body_gallery {
height: 100%;
}
#grid_gallery {
  position: fixed;
  display: grid;
  grid-template:
  "content_gallery"  68.75vh
  "footer"        18.75vh
  /100vw
  ;
  grid-gap: 0px;
  height: 100%;
  width: 100%;
  margin-top: 12.5vh;
}
.main {
  overflow: auto;
}
.content_gallery {
  grid-area: content_gallery;
  border-top: 0px;
  border-bottom: 0px;
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.content_gallery-image {
    background-image: url('../images/wall.png');
}
.footer {
  grid-area: footer;
}
.menu-items-shop {
  position: absolute;
  display: flex;
  align-items: flex-start;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  justify-content: space-between;
  text-align: center;
  width: 25.416rem;
}
.menu-shop p {
  display: flex;
  position: relative;
  background: #E6E5E3;
  border: 1px solid #000000;
  padding: 1rem 1.2rem;
  border-top: 0px;
}
.menu-shop .item1 {
  border-right: 0px;
}
.menu-shop .item3 {
  border-left: 0px;
}
.menu-shop {
  position: fixed;
  display: block;
  margin-top: 12.5vh;
  z-index: 35;
  height: 2rem;
  width: 25.416rem;
  margin-left: calc(50% - 12.708rem);
  margin-right: auto;
}
.menu-shop .active-shop-item {
  background: #3C604F;
  color: #E6E5E3;
}
.poster_wall {
  display: block;
  position: absolute;
  height: calc(68.75vh - 3.05rem);
  z-index: 20;
  top: calc(12.5vh + 3.05rem);
  /* background-image: url('../images/poster_wall.svg'); */
  background-repeat: no-repeat;
  background-size: contain;
}
.poster_wall img {
  height: 100%;
  display: block;
}
.menu-items-shop a {
  text-decoration: none;
}
.pop_up_blur {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(60, 96, 79, 0.5);
  backdrop-filter: blur(20px);
  z-index: 60;
}
.grid_pop_up {
  position: fixed;
  display: grid;
  grid-template:
  "pop_up_header"  2fr
  "pop_up_content" 12fr
  "pop_up_button"  0px
  /100%
  ;
  grid-gap: 0px;
  height: 90vh;
  width: 60vw;
  margin-top: 5vh;
  margin-left: 20vw;
  z-index: 61;
  background: #E6E5E3;
}
.pop_up_header {
  grid-area: pop_up_header;
  border-bottom: 0px;
  background: url('../images/pop_up_header.svg');
  background-size: auto 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pop_up_price {
display: block;
position: relative;
}
.pop_up_close {
  display: block;
  position: relative;
  height: 23px;
  width: 23px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background: url('../images/pop_up_close.svg');
}
.pop_up_header p {
  color: #E6E5E3;
}
.pop_up_content {
  grid-area: pop_up_content;
}
.pop_up_image {
  background: url('../images/pop_up_image.png');
  background-position: center;
  background-size: cover;
}
.pop_up_button {
  grid-area: pop_up_button;
  position: absolute;
  display: grid;
  border: 0px;
  text-align: center;
  align-items: center;
  padding-left: 0px;
  z-index: 62;
  height: 1.2rem;
  width: auto;
  justify-self: end;
  bottom: 18px;
}
.pop_up_button p {
  display: inline-block;
  border: 1px solid #000000;
  background: #E6E5E3;
  padding: .5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.pop_up_button:hover p {
  cursor: pointer;
}
.pop_up_close:hover {
  cursor: pointer;
}
.poster_wall:hover {
  cursor: pointer;
}
.hidden_element {
  display: none;
}
