.groupCatalogPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 2147483647;
  position: fixed;
  top: calc(50% - 100px);
}

.boxCatalogPopup {
  background-color: white;
  height: 200px;
  width: 35%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .boxCatalogPopup {
    width: 60%;
  }
}

@media screen and (max-width: 576px) {
  .boxCatalogPopup {
    width: 90%;
  }
}

.overlayCatalogPopup {
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  height: 100%;
  width: 100%;
  top: 0px;
  position: fixed;
  z-index: 150000;
}

#closeButtonCatalog {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: rgb(163, 145, 97);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#closeButtonCatalog span {
  font-size: 30px;
  color: white;
}
