/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */

   

::placeholder {
    color: #ffffff4d;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #ffffff4d;
}

::-moz-placeholder {
    color: #ffffff4d;
}

:-ms-input-placeholder {
    color: #ffffff4d;
}

::-ms-input-placeholder {
    color: #ffffff4d;
}
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    scrollbar-width: none; /* For Firefox */
}

*::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}  

#flash-container {
  position: fixed;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  width: 100%;
  max-width: 520px;
  padding: 0 14px;
  pointer-events: none;
}

.flash {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.14), inset 0 0 0 1px rgba(255,255,255,.24);
  animation: flash-in-out 5s ease forwards;
  transform-origin: center;
  width: 100%;
  min-height: 46px;
  word-break: break-word;
}

.flash.success {
  background: rgba(0, 166, 3, 0.7);
}

.flash.error,
.flash.alert {
  background: rgba(255, 0, 0, 0.28);
}

.flash-text {
  margin: 0;
  line-height: 1.45;
  font-size: 1rem;
}

.flash span {
  flex-grow: 1;
}

.flash-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  margin-left: 6px;
}

@keyframes flash-in-out {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(0.96);
  }
}

@media (max-width: 520px) {
  .flash {
    font-size: 0.95rem;
    padding: 14px 16px;
    border-radius: 999px;
  }
}

textarea,
input[type="text"],
input[type="submit"],
input[type="password"],
[type="email"] {
  -webkit-appearance: none;
}

.w-webflow-badge {
  display: none !important;
}

.starRate {
  position: relative;
  margin: 20px;
  overflow: hidden;
  zoom: 1;
}

.starRate ul {
  width: 160px;
  margin: 0;
  padding: 0;
}

.starRate li {
  display: inline;
  list-style: none;
}

.starRate a,
.starRate b {
  background: url('https://uploads-ssl.webflow.com/60ecc32f6b6419582ccbdd96/60f0893021a8c36841e9df16_star.svg') left top repeat-x;
}

.starRate a {
  float: right;
  margin: 0 80px 0 -144px;
  width: 80px;
  height: 34px;
  background-position: left 16px;
  color: #000;
  text-decoration: none;
}

.starRate a:hover {
  background-position: left -32px;
}

.starRate b {
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 34px;
  background-position: left -34px;
}

.starRate div b {
  left: 0px;
  bottom: 0px;
  background-position: left top;
}

.starRate a span {
  position: absolute;
  left: -300px;
}

.starRate a:hover span {
  left: 90px;
  width: 100%;
}

.rating {
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
}

.rating-input {
  float: right;
  width: 42px;
  height: 40px;
  padding: 0;
  margin-left: -32px;
  opacity: 0;
}

.rating-star {
  position: relative;
  float: right;
  display: block;
  width: 42px;
  height: 40px;
  background: url('https://uploads-ssl.webflow.com/60ecc32f6b6419582ccbdd96/60f0893021a8c36841e9df16_star.svg') 0 -40px;
}

.rating:hover .rating-star:hover,
.rating:hover .rating-star:hover ~ .rating-star,
.rating-input:checked ~ .rating-star {
  background-position: 0 0;
}

.rating-star,
.rating:hover .rating-star {
  position: relative;
  float: right;
  display: block;
  width: 42px;
  height: 40px;
  background: url('https://uploads-ssl.webflow.com/60ecc32f6b6419582ccbdd96/60f0893021a8c36841e9df16_star.svg') 0 -40px;
}
