@import url("https://fonts.googleapis.com/css2?family=Unica+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap");

.feedbackModal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.feedbackFlex {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contenido-modal-feedback {
  position: relative;
  background-color: rgb(34, 32, 32);
  margin: auto;
  width: 60%;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.4);
  font-family: Montserrat;
  color: rgb(212, 161, 141);
  animation-name: modal;
  animation-duration: 2s;
  border: 1px solid rgb(77, 73, 73);
  border-radius: 15px;
  max-height: 100vh;
}

@keyframes modal {
  from {
    top: -33px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.close {
  font-size: 30px;
  font-weight: bold;
}

.close:hover {
  color: grey;
  text-decoration: none;
  cursor: pointer;
}

.feedback-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 15px;
  background-color: #272727;
  border-radius: 15px 15px 0 0;
}

.feedback-modal-body {
  padding: 15px;
  margin: 0 55px 0 55px;
}
.name {
  padding-bottom: 20px;
}
.name input {
  width: 100%;
}

.email input {
  width: 100%;
}
textarea {
  width: 100%;
}

.feedback-modal-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.feedback-modal-button {
  font-family: sans-serif;
  font-size: 15px;
  font-weight: bolder;
  background-color: transparent;
  border: 1px solid #404040;
  border-radius: 10px;
  color: white;
  padding: 15px 10px;
  text-align: center;
  text-decoration: none;
  outline: none;
}

@media (max-width: 800px) {
  .contenido-modal-feedback {
    width: 90%;
  }
}
