footer {
  border-top: 2px solid #6f07ca;
  margin-top: 5%;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

footer .greet-sec {
  position: relative;
}

.greet {
  color: #fff;
  margin: 30px 0 10px;
  font-size: 1.2vw;
}

.greet-main {
  position: absolute;
  top: 0;
}

.user-message {
    color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #787878;
}

.feedback-button {
  color: #f3b200ad;
  border: 1px solid #f3b20050;
  padding: 6px 12px;
  cursor: pointer;
  margin-bottom: 5px;
  transition: all 0.2s;
  box-shadow: 0 0 0 transparent;
}

.feedback-button:hover {
  color: #f3b200;
  background-color: #f3b20010;
  box-shadow: 0 0 10px #f3b20032;
}

.feedback-container {
  /* background-color: #7300ff; */
  position: absolute;
  bottom: 0;
  overflow: hidden;
  width: 100vw;
  height: 90vh;
  padding-top: 10vh;
  z-index: -1;
}

.feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(150deg, #363434, #1d1c1c);
  background: linear-gradient(150deg, #252424, #121111);
  padding: 20px 0 30px;
  height: 90vh;
  width: 100vw;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  overflow: hidden;
  /*bottom: 120vh;*/
  bottom: 0;
  z-index: 100;
  transition: all 0.25s;
  border-top: 0;
}

@keyframes feedback-open {
  from {
    bottom: -100vh;
    border-top: 0;
    /* height: 0; */
    /* transform: rotate(30deg); */
  }

  to {
    /*bottom: 5vh;*/
    bottom: 0;
    /* height: 80vh; */
    /* transform: rotate(0); */
    border-top: 4px solid #8024d1;
  }
}

@keyframes feedback-close {
  from {
    /* height: 80vh; */
    bottom: 0vh;
    transform: rotate(0);
  }

  to {
    bottom: -120vh;
    /* height: 0; */
    transform: rotate(10deg);
  }
}

.feedback-open {
  animation: feedback-open 0.5s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feedback-close {
  animation: feedback-close 0.5s forwards
    cubic-bezier(0.123, 0.885, 0.32, 1.275);
}

.feedback .cross {
  margin-bottom: 20px;
  color: #ff2f2f;
  cursor: pointer;
}

.feedback form {
  display: flex;
  flex-direction: column;
  width: 80%;
  color: #fff;
}

.feedback form input {
  margin: 30px 0 20px;
  /* width: 30%; */
  border: none;
  outline: none;
  color: #fff;
  padding: 8px 10px;
  background: linear-gradient(150deg, #3e3e3e51, #0000);
  border: 1px solid #f3b2005b;
  border-radius: 6px;
  letter-spacing: 0.2px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.feedback form input::placeholder {
  color: rgb(217, 217, 217);
  font-style: italic;
}

.feedback form .feedback-title {
  transform: scale(1.5);
  margin-bottom: 10px;
}

.feedback form div,
.feedback form .feedback-title span {
  font-family: "Dancing Script", serif;
  text-align: center;
}

.feedback form .feedback-title span.orange {
  color: #f3b200;
  font-weight: bold;
}

.feedback form .feedback-title span.love {
  color: #ff2155;
  font-weight: bold;
}

.feedback form textarea {
  border: none;
  outline: none;
  resize: none;
  background-color: #0000002c;
  border-radius: 6px;
  padding: 6px 10px;
  color: #fff;
  border: 1px solid #ffffff2f;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.feedback form textarea::-webkit-scrollbar {
  display: none;
}

.feedback-button-container {
  width: 80vw;
  display: flex;
  margin-top: 25px;
  justify-content: right;
  align-items: center;
  position: relative;
  padding-right: 8%;
}

.feedback-send-button {
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  position: relative;
  border: 0;
  padding: 6px 20px;
  background: #f3b200;
  color: #333;
  cursor: pointer;
  outline: none;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  transition: all 0.25s;
}

.feedback-send-button:hover {
    color: #000;
    background: #ff2155;
}

.feedback-container-bg {
    position: absolute;
    width: 100vw;
    aspect-ratio: 16/9;
    top:0;
    left: 0;
    z-index: -1;
    background-image: url(../img/bg-feedback.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.05;
    overflow: hidden;
}

/* ratings */

.rating-container {
  position: relative;
  margin-right: 40px;
  display: flex;
  flex-direction: row;
  
  /*top: 70%;*/
}

.rating-container i {
  margin: 0 3px;
  cursor: pointer;
  font-size: 30px;
  position: relative;
  top: 2px;
}

#rating-star-message {
  position: relative;
  top: 2px;
  margin-right: 40px;
  text-wrap: nowrap;
  font-family: "Poppins", serif;
}