/* PLACEHOLDER */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #718096;
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #718096;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #718096;
  opacity: 1;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #718096;
  opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: #718096;
  opacity: 1;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: #718096;
  opacity: 0;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: #718096;
  opacity: 0;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: #718096;
  opacity: 0;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: #718096;
  opacity: 0;
}
input:focus::placeholder,
textarea:focus::placeholder {
  color: #718096;
  opacity: 0;
}

/* INPUT DETAILS */
.v-input--hide-details .v-text-field__details {
  display: none;
}

/* REVEAL PASSWORD */
[data-reveal] {
  cursor: pointer;
}
[data-reveal]:not(.is-active) .active {
  display: none;
}
[data-reveal].is-active .inactive {
  display: none;
}

/* CHECKBOX */
.v-input--checkbox input[type='checkbox'] {
  position: absolute;
  visibility: hidden;
}
.v-input--checkbox input[type='checkbox']:checked ~ .sprite-icons {
  background: #1d4ed8;
}

/* MODAL */
@media screen and (max-width: 679px) {
  .pft-modal {
    width: auto;
  }
}

/* HEADER */
.header > .v-toolbar__content {
  height: 80px;
}
.header.is-scrolled > .v-toolbar__content {
  background: linear-gradient(0deg, #e5e7eb 1px, #f3f4f6 0, #f3f4f6);
}
@media screen and (max-width: 1279px) {
  .header {
    background: #f3f4f6 !important;
  }
}
@media screen and (max-width: 959px) {
  .header > .v-toolbar__content {
    height: 60px;
  }
}

/* TOOLTIP */
.tooltip {
  position: relative;
}
.tooltip:hover .v-tooltip__content {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale3d(1, 1, 1);
  visibility: visible;
}
.tooltip .v-tooltip__content {
  left: 50%;
  opacity: 0;
  top: 100%;
  transform: translate3d(-50%, 0, 0) scale3d(0, 0, 1);
  transition: 0.3s ease-in-out;
  transition-property: opacity, visibility, transform;
  visibility: hidden;
}

/* NAVBAR */
.pft-layout .pft-layout__navbar {
  background-color: rgb(243, 244, 246);
  border-color: rgb(243, 244, 246);
  height: 100vh;
  width: 280px;
}
@media screen and (max-width: 1279px) {
  .pft-layout__navbar {
    transition: transform 0.3s;
  }
  .v-application:not(.is-open) .pft-layout__navbar {
    transform: translate3d(-100%, 0, 0);
  }
}
.pft-layout__toggle-nav::before {
  opacity: 0.04;
}

/* FAQ */
.pft-support-faq .v-expansion-panel:not(:last-child) {
  margin: 0 0 20px;
}
.pft-support-faq .v-expansion-panel-header {
  display: flex;
  width: 100%;
}
.pft-support-faq .pft-support-faq__title {
  width: 100%;
}

/* LIST */
.pft-support-list {
  word-break: break-word;
}

/* SEARCH */
.search-total {
  color: #718096;
}
.search-total__word {
  color: #000;
}
.search-list {
  counter-reset: searchList;
  list-style: none;
  margin: 0;
  padding: 0 !important;
}
.search-list__item {
  counter-increment: searchList;
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.search-list__item:last-child {
  margin: 0;
}
.search-list__item::before {
  content: counter(searchList) '.';
  display: block;
  font-size: 0.85rem;
  left: 0;
  position: absolute;
  top: 0.1rem;
}
.search-list__found {
  background: rgba(29, 78, 216, 0.2);
  display: inline;
  padding: 0 0.25em;
}
img {
  max-width: 100%;
}