i.right {
  float: right;
  margin-left: 15px;
}

i.large {
  font-size: 10vw;
}

.btn-large {
  border: none;
  border-radius: 2px;
  display: inline-block;
  text-transform: uppercase;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  font-size: 1.6vw;
  outline: 0;
  height: 54px;
  line-height: 54px;
  font-weight: 300;
  padding: 0 28px;
  text-decoration: none;
  color: #595957;
  background-color: #fff;
  text-align: center;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  cursor: pointer;
}

.mobile .btn-large {
  font-size: 8vw;
}

.btn-large:disabled {
  pointer-events: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

.btn-large:hover {
  color: #fff;
  background-color: #595957;
}

.btn-large:hover {
  color: #fff;
  background-color: #595957;
}

.btn-large i {
  line-height: inherit;
}




/* Text inputs */
input {
  font-size: 1.4vw;
  font-weight: 100;
  height: 3vw;
  min-height: 3rem;
  color: #fff;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  outline: none;
  width: 100%;
  margin: 0 0 8px 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: border 0.3s, -webkit-box-shadow 0.3s;
  transition: border 0.3s, -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s, border 0.3s;
  transition: box-shadow 0.3s, border 0.3s, -webkit-box-shadow 0.3s;
}

.mobile input {
  font-size: 3vw;
}

input + label {
  font-size: 1.4vw;
}

.mobile input + label {
  font-size: 3vw;
}


input:focus:not([readonly]) {
  border-bottom: 1px solid #595957;
}

input:focus:not([readonly]) + label {
  color: #595957;
}

input:focus.valid ~ label {
  color: #595957;
}

input:focus.invalid ~ label {
  color: #595957;
}

input.validate + label {
  width: 100%;
}

input.invalid {
  border-bottom: 1px solid #f44336;
  -webkit-box-shadow: 0 1px 0 0 #f44336;
  box-shadow: 0 1px 0 0 #f44336;
}

input:not([type]).valid ~ .helper-text[data-success] {
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

input.valid ~ .helper-text:after {
  content: attr(data-success);
  color: #4caf50;
}

input.invalid ~ .helper-text:after {
  content: attr(data-error);
  color: #f44336;
}

input + label:after {
  display: block;
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-out, 0.2s color ease-out;
  transition: 0.2s opacity ease-out, 0.2s color ease-out;
}

.input-field {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.input-field.inline {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}

.input-field.inline input,
.input-field.inline .select-dropdown {
  margin-bottom: 1rem;
}

.input-field.col label {
  left: 0.75rem;
}

.input-field.col .prefix ~ label,
.input-field.col .prefix ~ .validate ~ label {
  width: calc(100% - 3rem - 1.5rem);
}

.input-field > label {
  color: #fff;
  position: absolute;
  font-weight: 100;
  top: 0;
  left: 16px;
  cursor: text;
  -webkit-transition: color 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: color 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
  transition: transform 0.2s ease-out, color 0.2s ease-out,
    -webkit-transform 0.2s ease-out;
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  text-align: initial;
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
}

.input-field > label:not(.label-icon).active {
  -webkit-transform: translateY(-14px) scale(0.8);
  transform: translateY(-14px) scale(0.8);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.input-field
  > input[type]:-webkit-autofill:not(.browser-default):not([type="search"])
  + label,
.input-field > input[type="date"]:not(.browser-default) + label,
.input-field > input[type="time"]:not(.browser-default) + label {
  -webkit-transform: translateY(-14px) scale(0.8);
  transform: translateY(-14px) scale(0.8);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.input-field .helper-text {
  position: relative;
  min-height: 18px;
  display: block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.54);
}

.input-field .helper-text::after {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.input-field .prefix {
  position: absolute;
  width: 3rem;
  font-size: 2rem;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  top: 0.5rem;
  color: #fff;
}

.input-field .prefix.active {
  color: #595957;
}

.input-field .prefix ~ input,
.input-field .prefix ~ textarea,
.input-field .prefix ~ label,
.input-field .prefix ~ .validate ~ label,
.input-field .prefix ~ .helper-text,
.input-field .prefix ~ .autocomplete-content {
  margin-left: 3rem;
  width: 92%;
  width: calc(100% - 3rem);
}

.input-field .prefix ~ label {
  margin-left: 3rem;
}

@media only screen and (max-width: 992px) {
  .input-field .prefix ~ input {
    width: 86%;
    width: calc(100% - 3rem);
  }
}

@media only screen and (max-width: 600px) {
  .input-field .prefix ~ input {
    width: 80%;
    width: calc(100% - 3rem);
  }
}


/* Textarea */
textarea {
  width: 100%;
  height: 3vw;
  background-color: transparent;
  color: #fff;
  font-size: 1.4vw;
}

.mobile textarea {
  font-size: 3vw;
}

textarea + label {
  font-size: 1.4vw;
}

.mobile textarea + label {
  font-size: 3vw;
}

textarea.materialize-textarea {
  font-weight: 100;
  line-height: normal;
  overflow-y: hidden;
  /* prevents scroll bar flash */
  padding: 0.8rem 0 0.8rem 0 !important;
  /* prevents text jump on Enter keypress */
  resize: none;
  min-height: 3rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  outline: none;
  width: 100%;
  margin: 0 0 8px 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: border 0.3s, -webkit-box-shadow 0.3s;
  transition: border 0.3s, -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s, border 0.3s;
  transition: box-shadow 0.3s, border 0.3s, -webkit-box-shadow 0.3s;
}

.hiddendiv {
  visibility: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* future version of deprecated 'word-wrap' */
  padding-top: 1.2rem;
  /* prevents text jump on Enter keypress */
  position: absolute;
  top: 0;
  z-index: -1;
}

/* Autocomplete */
.autocomplete-content li .highlight {
  color: #444;
}

.autocomplete-content li img {
  height: 40px;
  width: 40px;
  margin: 5px 15px;
}

/* Character Counter */
.character-counter {
  min-height: 18px;
  color: #fff;
}

.progress {
  position: relative;
  height: 4px;
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  margin: 0.5rem 0 1rem 0;
  overflow: hidden;
}

.progress .indeterminate {
  background-color: #595957;
}

.progress .indeterminate:before {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395)
    infinite;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.progress .indeterminate:after {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1)
    infinite;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1)
    infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}


/* Select Field
   ========================================================================== */
  select.browser-default {
    display: block;
  }
  
  select {
    background-color: transparent;
    color: #fff;
    width: 100%;
    padding: 5px;
    border: 1px solid #f2f2f2;
    border-radius: 2px;
    font-size: 1.4vw;
    font-weight: 100;
    height: 3vw;
    min-height: 3rem;
  }
  
  .select-label {
    position: absolute;
  }
  
  .select-wrapper {
    position: relative;
  }
  
  .select-wrapper.valid + label,
  .select-wrapper.invalid + label {
    width: 100%;
    pointer-events: none;
  }
  
  .select-wrapper input.select-dropdown {
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    outline: none;
    height: 3rem;
    line-height: 3rem;
    width: 100%;
    font-size: 16px;
    margin: 0 0 8px 0;
    padding: 0;
    display: block;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    z-index: 1;
  }
  
  .select-wrapper input.select-dropdown:focus {
    border-bottom: 1px solid #26a69a;
  }
  
  .select-wrapper .caret {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 0;
    fill: rgba(0, 0, 0, 0.87);
  }
  
  .select-wrapper + label {
    position: absolute;
    top: -26px;
    font-size: 0.8rem;
  }
  
  select:disabled {
    color: rgba(0, 0, 0, 0.42);
  }
  
  .select-wrapper.disabled + label {
    color: rgba(0, 0, 0, 0.42);
  }
  
  .select-wrapper.disabled .caret {
    fill: rgba(0, 0, 0, 0.42);
  }
  
  .select-wrapper input.select-dropdown:disabled {
    color: rgba(0, 0, 0, 0.42);
    cursor: default;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .select-wrapper i {
    color: rgba(0, 0, 0, 0.3);
  }
  
  .select-dropdown li.disabled,
  .select-dropdown li.disabled > span,
  .select-dropdown li.optgroup {
    color: rgba(0, 0, 0, 0.3);
    background-color: transparent;
  }
  
  body.keyboard-focused .select-dropdown.dropdown-content li:focus {
    background-color: rgba(0, 0, 0, 0.08);
  }
  
  .select-dropdown.dropdown-content li:hover {
    background-color: rgba(0, 0, 0, 0.08);
  }
  
  .select-dropdown.dropdown-content li.selected {
    background-color: rgba(0, 0, 0, 0.03);
  }
  
  .prefix ~ .select-wrapper {
    margin-left: 3rem;
    width: 92%;
    width: calc(100% - 3rem);
  }
  
  .prefix ~ label {
    margin-left: 3rem;
  }
  
  .select-dropdown li img {
    height: 40px;
    width: 40px;
    margin: 5px 15px;
    float: right;
  }
  
  .select-dropdown li.optgroup {
    border-top: 1px solid #eee;
  }
  
  .select-dropdown li.optgroup.selected > span {
    color: rgba(0, 0, 0, 0.7);
  }
  
  .select-dropdown li.optgroup > span {
    color: rgba(0, 0, 0, 0.4);
  }
  
  .select-dropdown li.optgroup ~ li.optgroup-option {
    padding-left: 1rem;
  }
  
  select option {
    background: #595957;
    color: #fff;
}


/* END Select Field
   ========================================================================== */