@import './_mixin/animation.scss';
@import './_mixin/responsive.scss';
@import './_variable/color.scss';
@import './_variable/font-size.scss';
@import './_variable/grid.scss';
@import './_sub/align.scss';
@import './_sub/color.scss';
@import './_sub/position.scss';
@import './_sub/text.scss';
@import './_sub/grid.scss';
// Google Fonts
@import url(https://fonts.googleapis.com/css?family=Nunito+Sans);
* {
  font-family: 'Nunito Sans', sans-serif, FontAwesome !important;
  font-style: normal;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html,
body {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  height: 100%;
  word-break: break-word;
  @include responsive(sm) {
    width: $minWidth !important;
  }
  #ab180-dmp {
    width: 100%;
    height: 100%;
  }
}

// Functional CSS
.overlay {
  background: rgba(0, 0, 0, 0.7);
  display: none;
  height: 100%;
  width: 100%;
  opacity: 0;
  position: fixed;
  transition: all 0.5s ease-in-out;
  z-index: 300;
}

.btn {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  border-radius: 5px;
  border: 1px solid transparent;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 3px 5px;
  padding: 10px 35px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, border-color 0.3s;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  @include responsive(xl) {
    padding: 10px 32px;
  }
  @include responsive(md) {
    padding: 10px 28px;
  }
  @include responsive(sm) {
    padding: 10px 24px;
  }
  &:disabled {
    background: #dddddd;
    cursor: not-allowed;
  }
}

.link-btn {
  background: none !important;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  margin: 5px;
  outline: none;
  padding: 3px !important;
  text-decoration: none;
  &:hover {
    color: map-get($map: $defaultColors, $key: main) !important;
  }
  &:active {
    color: map-get($map: $defaultColors, $key: main) !important;
  }
}

.off {
  display: none;
}
