.popup {
  background: #ffd849;
  position: fixed;
  width: 480px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  box-shadow: 5px 5px #733381;
  padding: 10px;
  z-index: 99;
  display: none;
}

.popup-section-header,
.popup-section-data,
.popup-section-quantity,
.popup-section-total,
.popup-section-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.popup-section-buttons {
  justify-content: center;
  margin-top: 20px;
}

.popup-section-header {
  align-items: center;
  justify-content: center;
  text-align: center;
  display: inherit;
}

.popup-section-header .item-title {
  font-size: 46px;
}

.popup-section-buttons > button {
  background: #fbd095;
  border-radius: 5px;
  box-shadow: 3px 3px #733381;
  font-size: 32px;
  height: 50px;
  line-height: 34px;
  padding: 0px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  font-size: 32px;
}

.close-popup {
  position: absolute;
  right: 20px;
  cursor: pointer;
  font-size: 32px;
}

#overlay {
	position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    cursor: pointer;
    display: none;
}

/* Loader */
.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* \ Loader */
