.popupFixed {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 30;
  display: none;
  overflow: scroll;
}

.popupDiv {
  position: relative;
  width: 800px;
  margin: 0 auto;
  margin-top: 40px;
  background-color: white;
  overflow: hidden;
  max-width: 80%;
  margin-bottom: 30px;
  border-radius: 10px;
  height: auto;
  text-align: center;
  opacity: 0;
  transition: opacity 1000ms ease-in;
}

.visible {
  opacity: 1;
  visibility: visible;
}

.blackBkg60 {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.closePopup {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 25px;
  height: 25px;
  color: white;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  border-radius: 16px;
}

.closePopup:hover {
  cursor: pointer;
  opacity: 0.8;
}

.popupTitle {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.popupAddBtn {
  position: relative;
  width: 200px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 7px;
  height: 35px;
  line-height: 35px;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  display: inline-block;
  cursor: pointer;
}

.deleteProducts {
  display: none;
}

.deleteProducts.showed {
  display: inline-block;
}
