@import 'variables';
@import 'functions';

.twofas-light-wrapper {
  font-family: 'Montserrat', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: optimizeSpeed;

  * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
  }

  .anim-on,
  .anim-on * {
    transition: all .2s ease-in-out;
  }

  .anim-off,
  .anim-off * {
    transition: none !important;
  }

  .clear-fix {
    *zoom: 1;

    &::before,
    &::after {
      content: ' ';
      display: table;
    }

    &::after {
      clear: both;
    }
  }

  .twofas-light-text-line {
    display: block;

    @media all and (max-width: $screen-sm-max) {
      display: inline;

      &::after {
        content: ' ';
      }
    }
  }

  input,
  textarea,
  button {
    -webkit-appearance: none;
  }

  .twofas-hidden {
    display: none;
  }

  a {
    box-shadow: none;
    outline: none;
    text-decoration: none;

    &:hover,
    &:active,
    &:focus {
      box-shadow: none;
      outline: none;
      text-decoration: none;
    }
  }

  ::-webkit-input-placeholder {
    color: inherit;
  }

  ::-moz-placeholder {
    color: inherit;
  }

  :-ms-input-placeholder {
    color: inherit;
  }
}
