a {
  color: inherit;
}
textarea,
input.text,
input[type='text'],
input[type='button'],
input[type='submit'],
.input-checkbox,
.w-input,
.w-select {
  -webkit-appearance: none;
  resize: none;
}
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
.c-form_field.cc-error > .c-form_input {
  border-bottom-color: #e30000;
  background-color: #fef7f7;
}
.c-form_field.cc-error > .c-label_wrapper > .c-prompt {
  color: #e30000;
}
.c-form_field.cc-error > .c-form_password > .c-form_input {
  border-bottom-color: #e30000;
  background-color: #fef7f7;
}
.c-form_field.cc-error > .c-label_wrapper > .c-prompt {
  color: #e30000;
}
.c-form_field.cc-error > .c-form_verification > .c-form_input {
  border-bottom-color: #e30000;
  background-color: #fef7f7;
}
.c-form_field.cc-success > .c-form_verification > .c-form_input {
  border-bottom-color: #659924;
  background-color: #f0f5e9;
}
.c-form_field.cc-error > .c-form_verification > .input-icon.cc-error {
  display: block;
}
.c-form_field.cc-success > .c-form_verification > .input-icon.cc-success {
  display: block;
}
.c-form_field.cc-loading > .c-form_verification > .input-icon.cc-loading {
  display: block;
}

.dashboard-bg {
  pointer-events: none;
}
.input-icon.cc-loading {
  animation: rotate 1s infinite linear;
}
@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.c-form_input.cc-inactive {
  pointer-events: none;
}

/* Rewrites (mistakes from UI) */
html {
  scroll-behavior: smooth;
}

.popup-step_form {
  transform: translate(0, 0);
}

hidden {
  display: none;
}

.padding-0 {
  padding: 0;
}


.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease-in-out;
}

.fade-enter-from,
.fade-leave-to {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}


.w-dummy-check-box {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.indicator {
  font-size: 10px;
}

.more-info {
  display: inline-flex;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  background-color: black;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 9px;
}

.c-label_wrapper {
  position: relative;
}

.see-more-text {
  background-color: rgba(0, 0, 0);
  border-radius: 10px;
  padding: 10px;
  color: white;
  font-size: 10px;
  position: absolute;
  top: 25px;
  left: 0;
  right: auto;
}

.column-header_icon {
  cursor: pointer;
}

.cta-checkbox {
  cursor: pointer;
}

/* Password strength meter */
meter {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  overflow: hidden;
  /* background-color: #F2F2F2; */
}

meter::-webkit-meter-bar {
  background: none;
  outline: none;
  border: none;
  background-color: #f2f2f2;
}


meter[value="5"]::-webkit-meter-suboptimum-value {
  background: #ADFF2E;
}
meter::-webkit-meter-optimum-value {
  background-color: greenyellow;
}

meter::-webkit-meter-suboptimum-value {
  background-color: #f1eb9c;
}

meter::-webkit-meter-even-less-good-value {
  background-color: #e30000;
}

*::-moz-meter-bar {
  background: none;
  outline: none;
  border: none;
  background-color: #f2f2f2;
}

:-moz-meter-optimum::-moz-meter-bar {
  background-color: #f1eb9c;
}

:-moz-meter-sub-sub-optimum::-moz-meter-bar {
  background-color: #e30000;
}

.cc-very-small {
  padding: 13px;
  min-width: unset;
  padding: 6px 13px;
  font-size: 12px;
}

.c-button {
  cursor: pointer;
}

.flex {
  display: flex;
}

.cc-left-aligned {
  justify-content: end;
}

/* Utility classes */
.uc-mt-20 {
  margin-top: 20px;
}
.uc-mt-10 {
  margin-top: 10px;
}
.uc-mt-15 {
  margin-top: 15px;
}
.uc-mt-25 {
  margin-top: 25px;
}

.uc-mb-20 {
  margin-bottom: 20px;
}
.uc-mb-10 {
  margin-bottom: 10px;
}
.uc-mb-15 {
  margin-bottom: 15px;
}
.uc-mb-25 {
  margin-bottom: 25px;
}

.uc-mr-10 {
  margin-right: 10px;
}
.uc-mr-15 {
  margin-right: 15px;
}
.uc-mr-20 {
  margin-right: 20px;
}
.uc-mr-25 {
  margin-right: 25px;
}
.uc-mr-30 {
  margin-right: 30px;
}

/* package updates */
/* Pagination */
.hide-pagination-no {
  display: none !important;
}

.c-form_field.cc-error > select {
  border-bottom-color: #e30000;
  background-color: #fef7f7;
}


/* Animations */
.c-popup {
  opacity: 0;
}

.c-popup.fade-in {
  opacity: 1;
  animation: fade-in 0.5s ease-in-out;
}

.c-popup.fade-out {
  opacity: 0;
  animation: fade-out 0.5s ease-in-out;
}

.c-dropdown_list.fade-in {
  opacity: 1;
  animation: fade-in 0.5s ease-in-out;
}

.c-dropdown_list.fade-out {
  opacity: 0;
  animation: fade-out 0.5s ease-in-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}


select option {
  color: black;
}

.c-select > option{
    color: black;
}