.evaluate .container .row .popup {
  margin: 0 auto;
  max-width: 60%;
  padding: 40px;
  box-shadow: 0px 0px 10px 0px #00000033;
  border-radius: 20px;
}
.evaluate .container .row .popup .close-popup {
  display: flex;
  justify-content: end;
}
.evaluate .container .row .popup .close-popup img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.evaluate .container .row .popup .two__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.evaluate .container .row .popup .two__item .logoo {
  width: 100%;
}
.evaluate .container .row .popup .two__item .logoo img {
  width: 121.6px;
  height: 24px;
  display: flex;
  margin: 0 auto;
}
.evaluate .container .row .popup .two__item .title {
  text-align: center;
  font-family: Mulish-Regular;
  font-weight: 700;
  font-size: 36px;
  line-height: 43.2px;
  color: #014379;
}
.evaluate .container .row .popup form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.evaluate .container .row .popup form .star__rating {
  display: flex;
  justify-content: center;
  gap: 18.26px;
  padding: 5px 0;
}

.evaluate .container .row .popup form .star__rating .star {
  font-size: 40px;
  color: white;
  -webkit-text-stroke: 2px #ffbc48;
  cursor: pointer;
  transition: color 0.3s, -webkit-text-stroke 0.3s;
}

.evaluate .container .row .popup form .star__rating .star:hover,
.evaluate .container .row .popup form .star__rating .star.active {
  color: #ffbc48;
  -webkit-text-stroke: 0px; /* Bỏ viền khi active */
}

.evaluate .container .row .popup form .star__rating .star:hover,
.evaluate .container .row .popup form .star__rating .star.active {
  color: #ffbc48;
  text-shadow: none;
}

.submit-evaluate {
  display: flex;
  margin: 0 auto;
  padding: 16px 48px;
  border-radius: 100px;
  background: #1abc9c;
  color: #ffffff;
  margin-top: 15px;
  font-family: Mulish-Regular;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.submit-evaluate:hover {
  color: #ffffff;
}
.form-evaluate .form-group .form-control {
  min-height: 48px;
}
.form-evaluate .form-group .form-control::placeholder {
  font-family: Mulish-Regular;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0%;
  color: #0e3075;
}
.form-check-input {
  border: 1px solid #9f9f9f;
}
.form-evaluate .form-check {
  font-family: Mulish-Regular;
  font-weight: 400;
  font-size: 12px;
  line-height: 14.4px;
  display: flex;
  align-items: center;
  color: #0e3075;
  gap: 3px;
}
.form-evaluate .form-check .form-check-input {
  margin: 0;
}
.form-evaluate .form-check label {
  margin: 0;
}
.total-star {
  display: flex;
  gap: 8px;
}

.total-star .star {
  font-size: 15px;
  color: white; /* Màu nền trắng */
  text-shadow: 0 0 1px #ffbc48, 0 0 2px #ffbc48, 0 0 3px #ffbc48; /* Viền vàng dày */
}
#open-popupevaluate {
  max-width: 390px;
  display: flex;
  margin: 0 auto;
  padding-top: 20px;
}
#open-popupevaluate .btn {
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 11px;
  padding: 8px 12px;
  border: 1px solid #00000033;
  border-radius: 100px;
}

/* Ẩn popup mặc định */

#popup-evaluate {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000; 
}

#popup-evaluate.active {
  display: flex;
}


#popup-evaluate .popup {
  background: #fff;
  width: 80%;
  height: auto;
  max-height: 100vh;
  border-radius: 10px;
  padding: 20px;
  overflow-y: auto;
}

#popup-evaluate .popup {
  background: white;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.evaluate-erro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
.evaluate-erro img {
  width: 14px;
  height: 14px;
}
.placeholder-red::placeholder {
  color: #ea2227 !important;
}

.evaluate-erro p {
  margin: 0;
  color: #ea2227;
  font-family: Mulish-Regular;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
}
.custom-swal-title img:first-child { 
  width: 120px;
  height: 24px;
}

.custom-swal-title div:nth-child(2) { 
  font-family: Mulish-Regular;
  font-weight: 700;
  font-size: 36px;
  line-height: 43.2px;
  letter-spacing: 0%;
  color: #014379;
}
.swal-success-text {
  margin-top: 24px;
}
.custom-swal-title img:last-child { 
  width: 90px;
  height: 90px;
  margin-top: -10px;
}

@media screen and (max-width: 900px) {
  .evaluate .container .row .popup {
    margin: 0 auto;
    max-width: 90%;
    padding: 30px;
  }
  .custom-swal-title div:nth-child(2) { 
    font-size: 24px;
    line-height: 30.2px;
  }
  
}
@media screen and (max-width: 666px) {
  .evaluate .container .row .popup {
    margin: 0 auto;
    max-width: 95%;
    padding: 20px;
  }
  .evaluate .container .row .popup form {
    gap: 10px;
  }
  .evaluate .container .row .popup .two__item .title {
    font-size: 24px;
    line-height: 30px;
  }
  .custom-swal-title div:nth-child(2) { 
    font-size: 20px;
    line-height: 28.2px;
  }
}

.breadcrumb-center .breadcrumb__new .container .breadcrumb {
    justify-content: center;
}