:root {
  --white-color: #FEFEFE;
  --grey-color: #F4F2F3;
  --akcent-color: #FCC32B;
  --hover-color: #F0B825;
  --secondary-color: #FCDE96;
  --dark-color: #181B20;
  --popup-bg-color: #fcfafbf0;
}

/*------------------------------------------------------*/
/*------------------- Popups ---------------------------*/
/*------------------------------------------------------*/
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--popup-bg-color);
  top: 0;
  left: 0;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease 0s;
}

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

.popup.open .popup__content {
  opacity: 1;
  transform: translate(0px, 0px);
}

.popup__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__content {
  width: 100%;
  margin: 40px auto 20px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform: translate(0%, 10%);
}

/* .popup__close {
  font-size: 30px;
  position: absolute;
  right: 0;
  top: -100px;
} */