/* === ALERT MESSAGES === */
.alert-messages {
  position: fixed;
  bottom: 19px;
  right: 19px;
  max-width: 300px;
  z-index: 9999999;
}

.alert-messages .message {
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 2px;
  color: #fafafa;
  animation: fade-in .28s ease forwards;
  box-shadow: 0 2px 2px  0   rgba(0, 0, 0, .14),
  0 3px 1px -2px rgba(0, 0, 0, .2),
  0 1px 5px  0   rgba(0, 0, 0, .12);
}

.alert-messages .message.remove {
  animation: fade-out .28s ease forwards;
}

.alert-messages .success-message {
  background: rgba(76, 175, 80, .87);
}

.alert-messages .warning-message {
  background: rgba(255, 152, 0, .87);
}

.alert-messages .error-message {
  background: rgba(244, 67, 54, .87);
}
/* === ALERT MESSAGES END === */

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* === LOADING PROGRESS ANIMATION === */
.loading-progress {
  display: inline-block;
}

.loading-progress div {
  display: inline-block;
  margin: 2px;
  width: 4px;
  height: 4px;
  background: currentColor !important;
  border-radius: 100%;
  animation: ball-pulse 1s ease infinite;
}

.loading-progress div:nth-child(1) {
  animation-delay: -200ms;
}

.loading-progress div:nth-child(2) {
  animation-delay: -100ms;
}
/* === LOADING PROGRESS ANIMATION END === */

@keyframes ball-pulse {
  0%,
  60%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  30% {
    opacity: .1;
    transform: scale(.01);
  }
}

.rating input {
  display: none;
}

.rating label {
  font-weight: 300;
  color: #dcdcdc;
  float: right;
  margin: 0;
}

.rating label:before {
  margin: 0 2px;
  font-size: 30px;
  line-height: 30px;
  display: inline-block;
}

.rating input:checked ~ label,
.rating.rate:not(:checked) label:hover,
.rating.rate:not(:checked) label:hover ~ label {
  color: #ff9a01;
}

.scrolling-menu li button {
  border: 0;
  background-color: #fff;
  border-bottom: 2px solid #ededed;
}

/* === LOGIN MODAL ENHANCEMENT === */
.modal.login .modal-content {
  max-width: 920px !important;
  width: 90% !important;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal.login .tab-content {
  padding: 55px 45px !important;
}

.modal.login .h2 {
  font-size: 32px !important;
  margin-bottom: 30px !important;
}

.modal.login label {
  font-size: 15px;
  margin-bottom: 8px;
  display: block;
}

.modal.login .input {
  height: 46px;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 4px;
}

.modal.login #sign-in {
  height: 46px;
  padding: 0 32px;
  font-size: 15px;
  line-height: 46px;
}

.modal.login .close {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  z-index: 99999 !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  text-align: center !important;
  background: rgba(0, 0, 0, 0.6) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  font-size: 22px !important;
  font-weight: bold !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.modal.login .close:hover {
  background: #f44336 !important;
  color: #ffffff !important;
  transform: scale(1.1);
}

/* === REGISTRATION SUCCESS MODAL === */
[data-modal="registration-success"].modal.open {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

[data-modal="registration-success"] .modal-content {
  width: 92% !important;
  max-width: 480px !important;
  margin: auto !important;
}

@media (max-width: 576px) {
  [data-modal="registration-success"] .modal-content {
    width: 96% !important;
    max-width: 100% !important;
  }
}

/* === MOBILE NAVIGATION === */
.mobile-nav-toggle {
  display: none;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }
}

/* === HIDE RECAPTCHA BADGE === */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}
