﻿.dotsIfTextTooLong {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@keyframes enterIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 35px;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
textarea {
  display: block;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: 8px;
  outline: none;
  font-size: 12px;
  width: 100%;
  font-family: Quicksand;
  font-weight: 800;
  border-radius: 0px;
  border-bottom: 1px solid #e6e6e6;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="range"])[showLabel],
textarea[showLabel] {
  margin-top: 20px;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="range"])[showLabel] + label,
textarea[showLabel] + label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  top: -23px;
  left: 9px;
}
@-moz-document url-prefix() {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"])[showLabel] + label,
  textarea[showLabel] + label {
    left: 5px;
    top: -45px;
  }
}
input:not([type="checkbox"]):not([type="radio"]):not([type="range"])[showLabel]:focus + label,
textarea[showLabel]:focus + label,
input:not([type="checkbox"]):not([type="radio"]):not([type="range"])[showLabel]:not(:placeholder-shown) + label,
textarea[showLabel]:not(:placeholder-shown) + label,
input:not([type="checkbox"]):not([type="radio"]):not([type="range"])[showLabel]:-webkit-autofill + label,
textarea[showLabel]:-webkit-autofill + label {
  left: 5px;
  top: -45px;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="range"])[showLabel]:focus + label + .line,
textarea[showLabel]:focus + label + .line {
  width: 100%;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="range"])[valid="false"] + label + .line,
textarea[valid="false"] + label + .line {
  width: 100%;
  background: #e6007e !important;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="range"])[valid="false"] + label::after,
textarea[valid="false"] + label::after {
  content: attr(invalid);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 10px;
  padding: 3px 8px;
  font-weight: 800;
  border-radius: 3px;
  font-size: 11px;
  color: #ffffff;
  background-color: #e6007e;
  cursor: default;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  background-color: #ffffff !important;
}
.line {
  position: absolute !important;
  height: 1px;
  width: 0px;
  position: absolute;
  background: linear-gradient(to right, #e6007e 0%, #2071b8 20%, #037c84 40%, #086735 60%, #95c11f 80%, #fbea24 100%);
  display: inline-block;
  transition: 0.3s width ease-in-out;
  left: 0px;
  margin-top: -1px;
}
input[type="checkbox"] {
  font-family: Quicksand;
  background: transparent;
  outline: none;
  border: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smooth: antialiased;
  position: relative;
  cursor: pointer;
  margin: 0;
  color: inherit;
}
input[type="checkbox"][placeholder]::after {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  content: attr(placeholder);
  font-family: inherit;
  margin-left: 5px;
  top: 0px;
  position: absolute;
  line-height: 17px;
  white-space: nowrap;
}
input[type="checkbox"]::before {
  font-family: 'Font Awesome 5 Pro';
  content: '\f111';
  display: inline-block;
  width: 15px;
}
input[type="checkbox"]:checked::before {
  content: '\f058';
}
input[type="radio"] {
  font-family: Quicksand;
  background: transparent;
  outline: none;
  border: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smooth: antialiased;
  position: relative;
  cursor: pointer;
  margin: 0;
  color: inherit;
}
input[type="radio"][placeholder]::after {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  content: attr(placeholder);
  font-family: inherit;
  margin-left: 5px;
  top: 0px;
  position: absolute;
  line-height: 17px;
  white-space: nowrap;
}
input[type="radio"]::before {
  font-family: 'Font Awesome 5 Pro';
  content: '\f111';
  display: inline-block;
  width: 15px;
}
input[type="radio"]:checked::before {
  content: '\f058';
}
/*button {
    display: block;
    .box-sizing(border-box);
    .appearance(none);
    border: none;
    padding: 8px;
    outline: none;
    font-size: 12px;
    font-family: Quicksand;
    font-weight: 800;
    text-align: center;
}*/
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 5px;
  padding: 0px;
  border: none;
  border-radius: unset;
  outline: none;
  font-family: inherit;
  background-color: #ffffff;
  border: 1px solid #939393;
  cursor: pointer;
  position: relative;
  border-image-source: linear-gradient(130deg, #cf4e98 0%, #fa5e67 100%) !important;
  border-image-slice: 1 !important;
}
button span {
  background-color: #939393;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text !important;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  padding: 10px 20px;
  background: linear-gradient(130deg, #cf4e98 0%, #fa5e67 100%);
}
@media only screen and (max-width: 719px) {
  button span {
    padding: 5px 5px;
  }
}
button span[icon] {
  color: #cf4e98;
  -webkit-text-fill-color: unset !important;
}
button:last-of-type {
  margin-right: 0px;
}
button:hover span {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-background-clip: unset !important;
}
button[busy] {
  color: #cf4e98;
}
button[busy]:hover {
  color: #ffffff;
}
button[busy] span {
  transition: padding 0.5s;
  padding-left: 30px !important;
}
button[busy]::before,
button[busy]::after {
  position: absolute;
  font-family: 'Font Awesome 5 Duotone';
  -webkit-animation: busy 1s infinite cubic-bezier(0.67, 0.01, 0.485, 1);
  animation: busy 1s infinite cubic-bezier(0.67, 0.01, 0.485, 1);
  left: 10px;
  width: 17px;
  height: 17px;
  line-height: 18px;
  top: 8px;
  margin: 0;
  padding: 0;
  text-align: center;
}
button[busy]::before {
  content: '\f3f4';
}
button[busy]::after {
  content: '\10f3f4';
  opacity: 0.2;
}