:root {
  --dark-color: #141414;
  --grey-color: #A9B2BE;
  --dark-grey-color: #404C5C;
  --white-color: #EEF3F8;
  --green-color: #58B000;
}

/*------------------------------------------------------*/
/*------------------- Popups ---------------------------*/
/*------------------------------------------------------*/
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--white-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;
}