@import '../variables';

.d-inline {
  display: inline !important;
}

.d-block {
  display: block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-flex {
  display: flex !important;
}

.flex-grow {
  flex: 1 1 !important;
  min-height: 0 !important;
  min-width: 0 !important;
}

.flex-shrink {
  flex: none !important;
}

.flex-column {
  flex-direction: column !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.scroll-y {
  overflow-y: auto !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

@media screen and (max-width: map-get($breakpoints, small)){
  .sm-hide {
    display: none !important;
  }
}

@media screen and (min-width: map-get($breakpoints, small) + 1px) and (max-width: map-get($breakpoints, medium)){
  .md-hide {
    display: none !important;
  }
  .md-d-flex {
    display: flex !important;
  }
  .md-flex-column {
    flex-direction: column !important;
  }
}

@media screen and (min-width: map-get($breakpoints, medium) + 1px) and (max-width: map-get($breakpoints, large)){
  .lg-hide {
    display: none !important;
  }
  .lg-d-flex {
    display: flex !important;
  }
  .lg-flex-column {
    flex-direction: column !important;
  }
}

@media screen and (min-width: map-get($breakpoints, large) + 1px){
  .xl-hide {
    display: none !important;
  }
  .xl-d-flex {
    display: flex !important;
  }
  .lg-flex-column {
    flex-direction: column !important;
  }
}