Skip to main content

A handful of CSS utilities for quick behaviors, floats, colors, alignment, and more.

/*
==========================================================================
Animations
==========================================================================
*/

.anim-fade-in {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.anim-fade-in.fast {
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.anim-fade-up {
  opacity: 0;
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;

  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-up {
  0% {
    opacity: .8;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade-up {
  0% {
    opacity: .8;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.anim-fade-down {
  -webkit-animation-name: fade-down;
          animation-name: fade-down;
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;

  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    opacity: .5;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes fade-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    opacity: .5;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.anim-grow-x {
  width: 0;
  -webkit-animation-name: grow-x;
          animation-name: grow-x;
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;

  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes grow-x {
  to {
    width: 100%;
  }
}

@keyframes grow-x {
  to {
    width: 100%;
  }
}

.anim-shrink-x {
  -webkit-animation-name: shrink-x;
          animation-name: shrink-x;
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;

  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes shrink-x {
  to {
    width: 0;
  }
}

@keyframes shrink-x {
  to {
    width: 0;
  }
}

.anim-scale-in {
  -webkit-animation-name: scale-in;
          animation-name: scale-in;
  -webkit-animation-duration: .15s;
          animation-duration: .15s;
  -webkit-animation-timing-function: cubic-bezier(.2, 0, .13, 1.5);
          animation-timing-function: cubic-bezier(.2, 0, .13, 1.5);
}

@-webkit-keyframes scale-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(.5);
            transform: scale(.5);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(.5);
            transform: scale(.5);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.anim-pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    opacity: .3;
  }

  10% {
    opacity: 1;
  }

  100% {
    opacity: .3;
  }
}

@keyframes pulse {
  0% {
    opacity: .3;
  }

  10% {
    opacity: 1;
  }

  100% {
    opacity: .3;
  }
}

.anim-pulse-in {
  -webkit-animation-name: pulse-in;
          animation-name: pulse-in;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
}

@-webkit-keyframes pulse-in {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse-in {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

/*
==========================================================================
Borders
==========================================================================
*/

.border {
  border: 1px #e5e5e5 solid !important;
}

.border-top {
  border-top: 1px #e5e5e5 solid !important;
}

.border-right {
  border-right: 1px #e5e5e5 solid !important;
}

.border-bottom {
  border-bottom: 1px #e5e5e5 solid !important;
}

.border-left {
  border-left: 1px #e5e5e5 solid !important;
}

.border-y {
  border-top: 1px #e5e5e5 solid !important;
  border-bottom: 1px #e5e5e5 solid !important;
}

.border-blue {
  border-color: #c5d5dd !important;
}

.border-blue-dark {
  border-color: #4078c0 !important;
}

.border-red {
  border-color: #d2b2b2 !important;
}

.border-red-dark {
  border-color: #bd2c00 !important;
}

.border-gray-light {
  border-color: #eee !important;
}

.border-gray-dark {
  border-color: #ddd !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 3px !important;
}

.rounded-2 {
  border-radius: 6px !important;
}

.box-shadow {
  box-shadow: 0 1px 1px rgba(0, 0, 0, .1) !important;
}

.box-shadow-large {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .4) !important;
}

/*
==========================================================================
Colors
==========================================================================
*/

.bg-white {
  background-color: #fff !important;
}

.bg-blue {
  background-color: #4078c0 !important;
}

.bg-blue-light {
  background-color: #f2f8fa !important;
}

.bg-gray-dark {
  background-color: #333 !important;
}

.bg-gray {
  background-color: #f5f5f5 !important;
}

.bg-gray-light {
  background-color: #fafafa !important;
}

.bg-green {
  background-color: #6cc644 !important;
}

.bg-red {
  background-color: #bd2c00 !important;
}

.bg-yellow {
  background-color: #ffd36b !important;
}

.bg-shade-gradient {
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .065), transparent) !important;
  background-image:         linear-gradient(180deg, rgba(0, 0, 0, .065), transparent) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 200px !important;
}

.text-blue {
  color: #4078c0 !important;
}

.text-red {
  color: #bd2c00 !important;
}

.text-gray-light {
  color: #999 !important;
}

.text-gray {
  color: #767676 !important;
}

.text-gray-dark {
  color: #333 !important;
}

.text-green {
  color: #55a532 !important;
}

.text-orange {
  color: #c9510c !important;
}

.text-purple {
  color: #6e5494 !important;
}

.text-white {
  color: #fff !important;
}

.text-inherit {
  color: inherit !important;
}

.text-renamed {
  color: #fffa5d !important;
}

.text-pending {
  color: #cea61b !important;
}

.link-gray {
  color: #767676 !important;
}

.link-gray:hover {
  color: #4078c0 !important;
}

.link-gray-dark {
  color: #333 !important;
}

.link-gray-dark:hover {
  color: #4078c0 !important;
}

.link-hover-blue:hover {
  color: #4078c0 !important;
}

.muted-link {
  color: #767676 !important;
}

.muted-link:hover {
  color: #4078c0 !important;
  text-decoration: none;
}

.shade-gradient {
  background-image: -webkit-linear-gradient(top, #f5f5f5, #fff);
  background-image:         linear-gradient(180deg, #f5f5f5, #fff);
  background-repeat: no-repeat;
  background-size: 100% 200px;
}

/*
==========================================================================
Layout
==========================================================================
*/

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

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

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

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

.top-0 {
  top: 0 !important;
}

.right-0 {
  right: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.left-0 {
  left: 0 !important;
}

.v-align-middle {
  vertical-align: middle !important;
}

.v-align-top {
  vertical-align: top !important;
}

.v-align-bottom {
  vertical-align: bottom !important;
}

.v-align-text-top {
  vertical-align: text-top !important;
}

.v-align-text-bottom {
  vertical-align: text-bottom !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

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

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

.clearfix::before {
  display: table;
  content: "";
}

.clearfix::after {
  display: table;
  clear: both;
  content: "";
}

.float-right {
  float: right !important;
}

.float-left {
  float: left !important;
}

.float-none {
  float: none !important;
}

@media (min-width:544px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width:768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width:1012px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width:1280px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.width-fit {
  max-width: 100% !important;
}

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

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

.min-width-0 {
  min-width: 0 !important;
}

.v-hidden {
  visibility: hidden !important;
}

.v-visible {
  visibility: visible !important;
}

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

.d-table-cell {
  display: table-cell !important;
}

.table-fixed {
  table-layout: fixed !important;
}

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

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

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

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

@media (min-width:544px) {
  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

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

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

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

  .d-sm-none {
    display: none !important;
  }
}

@media (min-width:768px) {
  .d-md-table {
    display: table !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

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

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

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

  .d-md-none {
    display: none !important;
  }
}

@media (min-width:1012px) {
  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

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

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

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

  .d-lg-none {
    display: none !important;
  }
}

@media (min-width:1280px) {
  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

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

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

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

  .d-xl-none {
    display: none !important;
  }
}

@media (max-width:544px) {
  .hide-sm {
    display: none !important;
  }
}

@media (min-width:544px) and (max-width:768px) {
  .hide-md {
    display: none !important;
  }
}

@media (min-width:768px) and (max-width:1012px) {
  .hide-lg {
    display: none !important;
  }
}

@media (min-width:1012px) {
  .hide-xl {
    display: none !important;
  }
}

.direction-rtl {
  direction: rtl !important;
}

.direction-ltr {
  direction: ltr !important;
}

@media (min-width:544px) {
  .direction-sm-rtl {
    direction: rtl !important;
  }

  .direction-sm-ltr {
    direction: ltr !important;
  }
}

@media (min-width:768px) {
  .direction-md-rtl {
    direction: rtl !important;
  }

  .direction-md-ltr {
    direction: ltr !important;
  }
}

@media (min-width:1012px) {
  .direction-lg-rtl {
    direction: rtl !important;
  }

  .direction-lg-ltr {
    direction: ltr !important;
  }
}

@media (min-width:1280px) {
  .direction-xl-rtl {
    direction: rtl !important;
  }

  .direction-xl-ltr {
    direction: ltr !important;
  }
}

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

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

.flex-row {
  flex-direction: row !important;

  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
}

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

  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-justify-start {
  -webkit-box-pack: start !important;
  justify-content: flex-start !important;
}

.flex-justify-end {
  -webkit-box-pack: end !important;
  justify-content: flex-end !important;
}

.flex-justify-center {
  -webkit-box-pack: center !important;
  justify-content: center !important;
}

.flex-justify-between {
  -webkit-box-pack: justify !important;
  justify-content: space-between !important;
}

.flex-justify-around {
  justify-content: space-around !important;
}

.flex-items-start {
  -webkit-box-align: start !important;
  align-items: flex-start !important;
}

.flex-items-end {
  -webkit-box-align: end !important;
  align-items: flex-end !important;
}

.flex-items-center {
  -webkit-box-align: center !important;
  align-items: center !important;
}

.flex-items-baseline {
  -webkit-box-align: baseline !important;
  align-items: baseline !important;
}

.flex-items-stretch {
  -webkit-box-align: stretch !important;
  align-items: stretch !important;
}

.flex-content-start {
  align-content: flex-start !important;
}

.flex-content-end {
  align-content: flex-end !important;
}

.flex-content-center {
  align-content: center !important;
}

.flex-content-between {
  align-content: space-between !important;
}

.flex-content-around {
  align-content: space-around !important;
}

.flex-content-stretch {
  align-content: stretch !important;
}

.flex-auto {
  -webkit-box-flex: 1 !important;
  flex: 1 1 auto !important;
}

.flex-self-auto {
  -ms-grid-row-align: auto !important;
  align-self: auto !important;
}

.flex-self-start {
  align-self: flex-start !important;
}

.flex-self-end {
  align-self: flex-end !important;
}

.flex-self-center {
  -ms-grid-row-align: center !important;
  align-self: center !important;
}

.flex-self-baseline {
  align-self: baseline !important;
}

.flex-self-stretch {
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width:544px) {
  .d-sm-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

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

  .flex-sm-row {
    flex-direction: row !important;

    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
  }

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

    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-justify-start {
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .flex-sm-justify-end {
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .flex-sm-justify-center {
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .flex-sm-justify-between {
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .flex-sm-justify-around {
    justify-content: space-around !important;
  }

  .flex-sm-items-start {
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .flex-sm-items-end {
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .flex-sm-items-center {
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .flex-sm-items-baseline {
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .flex-sm-items-stretch {
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .flex-sm-content-start {
    align-content: flex-start !important;
  }

  .flex-sm-content-end {
    align-content: flex-end !important;
  }

  .flex-sm-content-center {
    align-content: center !important;
  }

  .flex-sm-content-between {
    align-content: space-between !important;
  }

  .flex-sm-content-around {
    align-content: space-around !important;
  }

  .flex-sm-content-stretch {
    align-content: stretch !important;
  }

  .flex-sm-auto {
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .flex-sm-self-auto {
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .flex-sm-self-start {
    align-self: flex-start !important;
  }

  .flex-sm-self-end {
    align-self: flex-end !important;
  }

  .flex-sm-self-center {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .flex-sm-self-baseline {
    align-self: baseline !important;
  }

  .flex-sm-self-stretch {
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width:768px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

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

  .flex-md-row {
    flex-direction: row !important;

    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
  }

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

    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-justify-start {
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .flex-md-justify-end {
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .flex-md-justify-center {
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .flex-md-justify-between {
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .flex-md-justify-around {
    justify-content: space-around !important;
  }

  .flex-md-items-start {
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .flex-md-items-end {
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .flex-md-items-center {
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .flex-md-items-baseline {
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .flex-md-items-stretch {
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .flex-md-content-start {
    align-content: flex-start !important;
  }

  .flex-md-content-end {
    align-content: flex-end !important;
  }

  .flex-md-content-center {
    align-content: center !important;
  }

  .flex-md-content-between {
    align-content: space-between !important;
  }

  .flex-md-content-around {
    align-content: space-around !important;
  }

  .flex-md-content-stretch {
    align-content: stretch !important;
  }

  .flex-md-auto {
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .flex-md-self-auto {
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .flex-md-self-start {
    align-self: flex-start !important;
  }

  .flex-md-self-end {
    align-self: flex-end !important;
  }

  .flex-md-self-center {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .flex-md-self-baseline {
    align-self: baseline !important;
  }

  .flex-md-self-stretch {
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width:1012px) {
  .d-lg-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

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

  .flex-lg-row {
    flex-direction: row !important;

    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
  }

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

    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-justify-start {
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .flex-lg-justify-end {
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .flex-lg-justify-center {
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .flex-lg-justify-between {
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .flex-lg-justify-around {
    justify-content: space-around !important;
  }

  .flex-lg-items-start {
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .flex-lg-items-end {
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .flex-lg-items-center {
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .flex-lg-items-baseline {
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .flex-lg-items-stretch {
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .flex-lg-content-start {
    align-content: flex-start !important;
  }

  .flex-lg-content-end {
    align-content: flex-end !important;
  }

  .flex-lg-content-center {
    align-content: center !important;
  }

  .flex-lg-content-between {
    align-content: space-between !important;
  }

  .flex-lg-content-around {
    align-content: space-around !important;
  }

  .flex-lg-content-stretch {
    align-content: stretch !important;
  }

  .flex-lg-auto {
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-self-auto {
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .flex-lg-self-start {
    align-self: flex-start !important;
  }

  .flex-lg-self-end {
    align-self: flex-end !important;
  }

  .flex-lg-self-center {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .flex-lg-self-baseline {
    align-self: baseline !important;
  }

  .flex-lg-self-stretch {
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width:1280px) {
  .d-xl-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

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

  .flex-xl-row {
    flex-direction: row !important;

    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
  }

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

    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-justify-start {
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .flex-xl-justify-end {
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .flex-xl-justify-center {
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .flex-xl-justify-between {
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .flex-xl-justify-around {
    justify-content: space-around !important;
  }

  .flex-xl-items-start {
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .flex-xl-items-end {
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .flex-xl-items-center {
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .flex-xl-items-baseline {
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .flex-xl-items-stretch {
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .flex-xl-content-start {
    align-content: flex-start !important;
  }

  .flex-xl-content-end {
    align-content: flex-end !important;
  }

  .flex-xl-content-center {
    align-content: center !important;
  }

  .flex-xl-content-between {
    align-content: space-between !important;
  }

  .flex-xl-content-around {
    align-content: space-around !important;
  }

  .flex-xl-content-stretch {
    align-content: stretch !important;
  }

  .flex-xl-auto {
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-self-auto {
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .flex-xl-self-start {
    align-self: flex-start !important;
  }

  .flex-xl-self-end {
    align-self: flex-end !important;
  }

  .flex-xl-self-center {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .flex-xl-self-baseline {
    align-self: baseline !important;
  }

  .flex-xl-self-stretch {
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

/*
==========================================================================
Margin
==========================================================================
*/

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 4px !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mr-1 {
  margin-right: 4px !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.ml-1 {
  margin-left: 4px !important;
}

.mx-1 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.m-2 {
  margin: 8px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mr-2 {
  margin-right: 8px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.ml-2 {
  margin-left: 8px !important;
}

.mx-2 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.m-3 {
  margin: 16px !important;
}

.mt-3 {
  margin-top: 16px !important;
}

.mr-3 {
  margin-right: 16px !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.ml-3 {
  margin-left: 16px !important;
}

.mx-3 {
  margin-right: 16px !important;
  margin-left: 16px !important;
}

.my-3 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.m-4 {
  margin: 24px !important;
}

.mt-4 {
  margin-top: 24px !important;
}

.mr-4 {
  margin-right: 24px !important;
}

.mb-4 {
  margin-bottom: 24px !important;
}

.ml-4 {
  margin-left: 24px !important;
}

.mx-4 {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

.my-4 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.m-5 {
  margin: 32px !important;
}

.mt-5 {
  margin-top: 32px !important;
}

.mr-5 {
  margin-right: 32px !important;
}

.mb-5 {
  margin-bottom: 32px !important;
}

.ml-5 {
  margin-left: 32px !important;
}

.mx-5 {
  margin-right: 32px !important;
  margin-left: 32px !important;
}

.my-5 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.m-6 {
  margin: 40px !important;
}

.mt-6 {
  margin-top: 40px !important;
}

.mr-6 {
  margin-right: 40px !important;
}

.mb-6 {
  margin-bottom: 40px !important;
}

.ml-6 {
  margin-left: 40px !important;
}

.mx-6 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.my-6 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

@media (min-width:544px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0 {
    margin-left: 0 !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (min-width:544px) {
  .m-sm-1 {
    margin: 4px !important;
  }

  .mt-sm-1 {
    margin-top: 4px !important;
  }

  .mr-sm-1 {
    margin-right: 4px !important;
  }

  .mb-sm-1 {
    margin-bottom: 4px !important;
  }

  .ml-sm-1 {
    margin-left: 4px !important;
  }

  .mx-sm-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  .my-sm-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
}

@media (min-width:544px) {
  .m-sm-2 {
    margin: 8px !important;
  }

  .mt-sm-2 {
    margin-top: 8px !important;
  }

  .mr-sm-2 {
    margin-right: 8px !important;
  }

  .mb-sm-2 {
    margin-bottom: 8px !important;
  }

  .ml-sm-2 {
    margin-left: 8px !important;
  }

  .mx-sm-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  .my-sm-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
}

@media (min-width:544px) {
  .m-sm-3 {
    margin: 16px !important;
  }

  .mt-sm-3 {
    margin-top: 16px !important;
  }

  .mr-sm-3 {
    margin-right: 16px !important;
  }

  .mb-sm-3 {
    margin-bottom: 16px !important;
  }

  .ml-sm-3 {
    margin-left: 16px !important;
  }

  .mx-sm-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  .my-sm-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
}

@media (min-width:544px) {
  .m-sm-4 {
    margin: 24px !important;
  }

  .mt-sm-4 {
    margin-top: 24px !important;
  }

  .mr-sm-4 {
    margin-right: 24px !important;
  }

  .mb-sm-4 {
    margin-bottom: 24px !important;
  }

  .ml-sm-4 {
    margin-left: 24px !important;
  }

  .mx-sm-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  .my-sm-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}

@media (min-width:544px) {
  .m-sm-5 {
    margin: 32px !important;
  }

  .mt-sm-5 {
    margin-top: 32px !important;
  }

  .mr-sm-5 {
    margin-right: 32px !important;
  }

  .mb-sm-5 {
    margin-bottom: 32px !important;
  }

  .ml-sm-5 {
    margin-left: 32px !important;
  }

  .mx-sm-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  .my-sm-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
}

@media (min-width:544px) {
  .m-sm-6 {
    margin: 40px !important;
  }

  .mt-sm-6 {
    margin-top: 40px !important;
  }

  .mr-sm-6 {
    margin-right: 40px !important;
  }

  .mb-sm-6 {
    margin-bottom: 40px !important;
  }

  .ml-sm-6 {
    margin-left: 40px !important;
  }

  .mx-sm-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .my-sm-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}

@media (min-width:768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0 {
    margin-left: 0 !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (min-width:768px) {
  .m-md-1 {
    margin: 4px !important;
  }

  .mt-md-1 {
    margin-top: 4px !important;
  }

  .mr-md-1 {
    margin-right: 4px !important;
  }

  .mb-md-1 {
    margin-bottom: 4px !important;
  }

  .ml-md-1 {
    margin-left: 4px !important;
  }

  .mx-md-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  .my-md-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
}

@media (min-width:768px) {
  .m-md-2 {
    margin: 8px !important;
  }

  .mt-md-2 {
    margin-top: 8px !important;
  }

  .mr-md-2 {
    margin-right: 8px !important;
  }

  .mb-md-2 {
    margin-bottom: 8px !important;
  }

  .ml-md-2 {
    margin-left: 8px !important;
  }

  .mx-md-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  .my-md-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
}

@media (min-width:768px) {
  .m-md-3 {
    margin: 16px !important;
  }

  .mt-md-3 {
    margin-top: 16px !important;
  }

  .mr-md-3 {
    margin-right: 16px !important;
  }

  .mb-md-3 {
    margin-bottom: 16px !important;
  }

  .ml-md-3 {
    margin-left: 16px !important;
  }

  .mx-md-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  .my-md-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
}

@media (min-width:768px) {
  .m-md-4 {
    margin: 24px !important;
  }

  .mt-md-4 {
    margin-top: 24px !important;
  }

  .mr-md-4 {
    margin-right: 24px !important;
  }

  .mb-md-4 {
    margin-bottom: 24px !important;
  }

  .ml-md-4 {
    margin-left: 24px !important;
  }

  .mx-md-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  .my-md-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}

@media (min-width:768px) {
  .m-md-5 {
    margin: 32px !important;
  }

  .mt-md-5 {
    margin-top: 32px !important;
  }

  .mr-md-5 {
    margin-right: 32px !important;
  }

  .mb-md-5 {
    margin-bottom: 32px !important;
  }

  .ml-md-5 {
    margin-left: 32px !important;
  }

  .mx-md-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  .my-md-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
}

@media (min-width:768px) {
  .m-md-6 {
    margin: 40px !important;
  }

  .mt-md-6 {
    margin-top: 40px !important;
  }

  .mr-md-6 {
    margin-right: 40px !important;
  }

  .mb-md-6 {
    margin-bottom: 40px !important;
  }

  .ml-md-6 {
    margin-left: 40px !important;
  }

  .mx-md-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .my-md-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}

@media (min-width:1012px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0 {
    margin-left: 0 !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (min-width:1012px) {
  .m-lg-1 {
    margin: 4px !important;
  }

  .mt-lg-1 {
    margin-top: 4px !important;
  }

  .mr-lg-1 {
    margin-right: 4px !important;
  }

  .mb-lg-1 {
    margin-bottom: 4px !important;
  }

  .ml-lg-1 {
    margin-left: 4px !important;
  }

  .mx-lg-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  .my-lg-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
}

@media (min-width:1012px) {
  .m-lg-2 {
    margin: 8px !important;
  }

  .mt-lg-2 {
    margin-top: 8px !important;
  }

  .mr-lg-2 {
    margin-right: 8px !important;
  }

  .mb-lg-2 {
    margin-bottom: 8px !important;
  }

  .ml-lg-2 {
    margin-left: 8px !important;
  }

  .mx-lg-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  .my-lg-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
}

@media (min-width:1012px) {
  .m-lg-3 {
    margin: 16px !important;
  }

  .mt-lg-3 {
    margin-top: 16px !important;
  }

  .mr-lg-3 {
    margin-right: 16px !important;
  }

  .mb-lg-3 {
    margin-bottom: 16px !important;
  }

  .ml-lg-3 {
    margin-left: 16px !important;
  }

  .mx-lg-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  .my-lg-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
}

@media (min-width:1012px) {
  .m-lg-4 {
    margin: 24px !important;
  }

  .mt-lg-4 {
    margin-top: 24px !important;
  }

  .mr-lg-4 {
    margin-right: 24px !important;
  }

  .mb-lg-4 {
    margin-bottom: 24px !important;
  }

  .ml-lg-4 {
    margin-left: 24px !important;
  }

  .mx-lg-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  .my-lg-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}

@media (min-width:1012px) {
  .m-lg-5 {
    margin: 32px !important;
  }

  .mt-lg-5 {
    margin-top: 32px !important;
  }

  .mr-lg-5 {
    margin-right: 32px !important;
  }

  .mb-lg-5 {
    margin-bottom: 32px !important;
  }

  .ml-lg-5 {
    margin-left: 32px !important;
  }

  .mx-lg-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  .my-lg-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
}

@media (min-width:1012px) {
  .m-lg-6 {
    margin: 40px !important;
  }

  .mt-lg-6 {
    margin-top: 40px !important;
  }

  .mr-lg-6 {
    margin-right: 40px !important;
  }

  .mb-lg-6 {
    margin-bottom: 40px !important;
  }

  .ml-lg-6 {
    margin-left: 40px !important;
  }

  .mx-lg-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .my-lg-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}

@media (min-width:1280px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0 {
    margin-left: 0 !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (min-width:1280px) {
  .m-xl-1 {
    margin: 4px !important;
  }

  .mt-xl-1 {
    margin-top: 4px !important;
  }

  .mr-xl-1 {
    margin-right: 4px !important;
  }

  .mb-xl-1 {
    margin-bottom: 4px !important;
  }

  .ml-xl-1 {
    margin-left: 4px !important;
  }

  .mx-xl-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  .my-xl-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
}

@media (min-width:1280px) {
  .m-xl-2 {
    margin: 8px !important;
  }

  .mt-xl-2 {
    margin-top: 8px !important;
  }

  .mr-xl-2 {
    margin-right: 8px !important;
  }

  .mb-xl-2 {
    margin-bottom: 8px !important;
  }

  .ml-xl-2 {
    margin-left: 8px !important;
  }

  .mx-xl-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  .my-xl-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
}

@media (min-width:1280px) {
  .m-xl-3 {
    margin: 16px !important;
  }

  .mt-xl-3 {
    margin-top: 16px !important;
  }

  .mr-xl-3 {
    margin-right: 16px !important;
  }

  .mb-xl-3 {
    margin-bottom: 16px !important;
  }

  .ml-xl-3 {
    margin-left: 16px !important;
  }

  .mx-xl-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  .my-xl-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
}

@media (min-width:1280px) {
  .m-xl-4 {
    margin: 24px !important;
  }

  .mt-xl-4 {
    margin-top: 24px !important;
  }

  .mr-xl-4 {
    margin-right: 24px !important;
  }

  .mb-xl-4 {
    margin-bottom: 24px !important;
  }

  .ml-xl-4 {
    margin-left: 24px !important;
  }

  .mx-xl-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  .my-xl-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}

@media (min-width:1280px) {
  .m-xl-5 {
    margin: 32px !important;
  }

  .mt-xl-5 {
    margin-top: 32px !important;
  }

  .mr-xl-5 {
    margin-right: 32px !important;
  }

  .mb-xl-5 {
    margin-bottom: 32px !important;
  }

  .ml-xl-5 {
    margin-left: 32px !important;
  }

  .mx-xl-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  .my-xl-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
}

@media (min-width:1280px) {
  .m-xl-6 {
    margin: 40px !important;
  }

  .mt-xl-6 {
    margin-top: 40px !important;
  }

  .mr-xl-6 {
    margin-right: 40px !important;
  }

  .mb-xl-6 {
    margin-bottom: 40px !important;
  }

  .ml-xl-6 {
    margin-left: 40px !important;
  }

  .mx-xl-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .my-xl-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

/*
==========================================================================
Padding
==========================================================================
*/

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 4px !important;
}

.pt-1 {
  padding-top: 4px !important;
}

.pr-1 {
  padding-right: 4px !important;
}

.pb-1 {
  padding-bottom: 4px !important;
}

.pl-1 {
  padding-left: 4px !important;
}

.px-1 {
  padding-right: 4px !important;
  padding-left: 4px !important;
}

.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.p-2 {
  padding: 8px !important;
}

.pt-2 {
  padding-top: 8px !important;
}

.pr-2 {
  padding-right: 8px !important;
}

.pb-2 {
  padding-bottom: 8px !important;
}

.pl-2 {
  padding-left: 8px !important;
}

.px-2 {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.p-3 {
  padding: 16px !important;
}

.pt-3 {
  padding-top: 16px !important;
}

.pr-3 {
  padding-right: 16px !important;
}

.pb-3 {
  padding-bottom: 16px !important;
}

.pl-3 {
  padding-left: 16px !important;
}

.px-3 {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

.py-3 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.p-4 {
  padding: 24px !important;
}

.pt-4 {
  padding-top: 24px !important;
}

.pr-4 {
  padding-right: 24px !important;
}

.pb-4 {
  padding-bottom: 24px !important;
}

.pl-4 {
  padding-left: 24px !important;
}

.px-4 {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

.py-4 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.p-5 {
  padding: 32px !important;
}

.pt-5 {
  padding-top: 32px !important;
}

.pr-5 {
  padding-right: 32px !important;
}

.pb-5 {
  padding-bottom: 32px !important;
}

.pl-5 {
  padding-left: 32px !important;
}

.px-5 {
  padding-right: 32px !important;
  padding-left: 32px !important;
}

.py-5 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.p-6 {
  padding: 40px !important;
}

.pt-6 {
  padding-top: 40px !important;
}

.pr-6 {
  padding-right: 40px !important;
}

.pb-6 {
  padding-bottom: 40px !important;
}

.pl-6 {
  padding-left: 40px !important;
}

.px-6 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.py-6 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

@media (min-width:544px) {
  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0 {
    padding-left: 0 !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (min-width:544px) {
  .p-sm-1 {
    padding: 4px !important;
  }

  .pt-sm-1 {
    padding-top: 4px !important;
  }

  .pr-sm-1 {
    padding-right: 4px !important;
  }

  .pb-sm-1 {
    padding-bottom: 4px !important;
  }

  .pl-sm-1 {
    padding-left: 4px !important;
  }

  .px-sm-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  .py-sm-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}

@media (min-width:544px) {
  .p-sm-2 {
    padding: 8px !important;
  }

  .pt-sm-2 {
    padding-top: 8px !important;
  }

  .pr-sm-2 {
    padding-right: 8px !important;
  }

  .pb-sm-2 {
    padding-bottom: 8px !important;
  }

  .pl-sm-2 {
    padding-left: 8px !important;
  }

  .px-sm-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .py-sm-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}

@media (min-width:544px) {
  .p-sm-3 {
    padding: 16px !important;
  }

  .pt-sm-3 {
    padding-top: 16px !important;
  }

  .pr-sm-3 {
    padding-right: 16px !important;
  }

  .pb-sm-3 {
    padding-bottom: 16px !important;
  }

  .pl-sm-3 {
    padding-left: 16px !important;
  }

  .px-sm-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .py-sm-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

@media (min-width:544px) {
  .p-sm-4 {
    padding: 24px !important;
  }

  .pt-sm-4 {
    padding-top: 24px !important;
  }

  .pr-sm-4 {
    padding-right: 24px !important;
  }

  .pb-sm-4 {
    padding-bottom: 24px !important;
  }

  .pl-sm-4 {
    padding-left: 24px !important;
  }

  .px-sm-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  .py-sm-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

@media (min-width:544px) {
  .p-sm-5 {
    padding: 32px !important;
  }

  .pt-sm-5 {
    padding-top: 32px !important;
  }

  .pr-sm-5 {
    padding-right: 32px !important;
  }

  .pb-sm-5 {
    padding-bottom: 32px !important;
  }

  .pl-sm-5 {
    padding-left: 32px !important;
  }

  .px-sm-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  .py-sm-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}

@media (min-width:544px) {
  .p-sm-6 {
    padding: 40px !important;
  }

  .pt-sm-6 {
    padding-top: 40px !important;
  }

  .pr-sm-6 {
    padding-right: 40px !important;
  }

  .pb-sm-6 {
    padding-bottom: 40px !important;
  }

  .pl-sm-6 {
    padding-left: 40px !important;
  }

  .px-sm-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .py-sm-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

@media (min-width:768px) {
  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0 {
    padding-left: 0 !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (min-width:768px) {
  .p-md-1 {
    padding: 4px !important;
  }

  .pt-md-1 {
    padding-top: 4px !important;
  }

  .pr-md-1 {
    padding-right: 4px !important;
  }

  .pb-md-1 {
    padding-bottom: 4px !important;
  }

  .pl-md-1 {
    padding-left: 4px !important;
  }

  .px-md-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  .py-md-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}

@media (min-width:768px) {
  .p-md-2 {
    padding: 8px !important;
  }

  .pt-md-2 {
    padding-top: 8px !important;
  }

  .pr-md-2 {
    padding-right: 8px !important;
  }

  .pb-md-2 {
    padding-bottom: 8px !important;
  }

  .pl-md-2 {
    padding-left: 8px !important;
  }

  .px-md-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .py-md-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}

@media (min-width:768px) {
  .p-md-3 {
    padding: 16px !important;
  }

  .pt-md-3 {
    padding-top: 16px !important;
  }

  .pr-md-3 {
    padding-right: 16px !important;
  }

  .pb-md-3 {
    padding-bottom: 16px !important;
  }

  .pl-md-3 {
    padding-left: 16px !important;
  }

  .px-md-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .py-md-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

@media (min-width:768px) {
  .p-md-4 {
    padding: 24px !important;
  }

  .pt-md-4 {
    padding-top: 24px !important;
  }

  .pr-md-4 {
    padding-right: 24px !important;
  }

  .pb-md-4 {
    padding-bottom: 24px !important;
  }

  .pl-md-4 {
    padding-left: 24px !important;
  }

  .px-md-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  .py-md-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

@media (min-width:768px) {
  .p-md-5 {
    padding: 32px !important;
  }

  .pt-md-5 {
    padding-top: 32px !important;
  }

  .pr-md-5 {
    padding-right: 32px !important;
  }

  .pb-md-5 {
    padding-bottom: 32px !important;
  }

  .pl-md-5 {
    padding-left: 32px !important;
  }

  .px-md-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  .py-md-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}

@media (min-width:768px) {
  .p-md-6 {
    padding: 40px !important;
  }

  .pt-md-6 {
    padding-top: 40px !important;
  }

  .pr-md-6 {
    padding-right: 40px !important;
  }

  .pb-md-6 {
    padding-bottom: 40px !important;
  }

  .pl-md-6 {
    padding-left: 40px !important;
  }

  .px-md-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .py-md-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

@media (min-width:1012px) {
  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0 {
    padding-left: 0 !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (min-width:1012px) {
  .p-lg-1 {
    padding: 4px !important;
  }

  .pt-lg-1 {
    padding-top: 4px !important;
  }

  .pr-lg-1 {
    padding-right: 4px !important;
  }

  .pb-lg-1 {
    padding-bottom: 4px !important;
  }

  .pl-lg-1 {
    padding-left: 4px !important;
  }

  .px-lg-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  .py-lg-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}

@media (min-width:1012px) {
  .p-lg-2 {
    padding: 8px !important;
  }

  .pt-lg-2 {
    padding-top: 8px !important;
  }

  .pr-lg-2 {
    padding-right: 8px !important;
  }

  .pb-lg-2 {
    padding-bottom: 8px !important;
  }

  .pl-lg-2 {
    padding-left: 8px !important;
  }

  .px-lg-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .py-lg-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}

@media (min-width:1012px) {
  .p-lg-3 {
    padding: 16px !important;
  }

  .pt-lg-3 {
    padding-top: 16px !important;
  }

  .pr-lg-3 {
    padding-right: 16px !important;
  }

  .pb-lg-3 {
    padding-bottom: 16px !important;
  }

  .pl-lg-3 {
    padding-left: 16px !important;
  }

  .px-lg-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .py-lg-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

@media (min-width:1012px) {
  .p-lg-4 {
    padding: 24px !important;
  }

  .pt-lg-4 {
    padding-top: 24px !important;
  }

  .pr-lg-4 {
    padding-right: 24px !important;
  }

  .pb-lg-4 {
    padding-bottom: 24px !important;
  }

  .pl-lg-4 {
    padding-left: 24px !important;
  }

  .px-lg-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  .py-lg-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

@media (min-width:1012px) {
  .p-lg-5 {
    padding: 32px !important;
  }

  .pt-lg-5 {
    padding-top: 32px !important;
  }

  .pr-lg-5 {
    padding-right: 32px !important;
  }

  .pb-lg-5 {
    padding-bottom: 32px !important;
  }

  .pl-lg-5 {
    padding-left: 32px !important;
  }

  .px-lg-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  .py-lg-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}

@media (min-width:1012px) {
  .p-lg-6 {
    padding: 40px !important;
  }

  .pt-lg-6 {
    padding-top: 40px !important;
  }

  .pr-lg-6 {
    padding-right: 40px !important;
  }

  .pb-lg-6 {
    padding-bottom: 40px !important;
  }

  .pl-lg-6 {
    padding-left: 40px !important;
  }

  .px-lg-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .py-lg-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

@media (min-width:1280px) {
  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0 {
    padding-left: 0 !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (min-width:1280px) {
  .p-xl-1 {
    padding: 4px !important;
  }

  .pt-xl-1 {
    padding-top: 4px !important;
  }

  .pr-xl-1 {
    padding-right: 4px !important;
  }

  .pb-xl-1 {
    padding-bottom: 4px !important;
  }

  .pl-xl-1 {
    padding-left: 4px !important;
  }

  .px-xl-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  .py-xl-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}

@media (min-width:1280px) {
  .p-xl-2 {
    padding: 8px !important;
  }

  .pt-xl-2 {
    padding-top: 8px !important;
  }

  .pr-xl-2 {
    padding-right: 8px !important;
  }

  .pb-xl-2 {
    padding-bottom: 8px !important;
  }

  .pl-xl-2 {
    padding-left: 8px !important;
  }

  .px-xl-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .py-xl-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}

@media (min-width:1280px) {
  .p-xl-3 {
    padding: 16px !important;
  }

  .pt-xl-3 {
    padding-top: 16px !important;
  }

  .pr-xl-3 {
    padding-right: 16px !important;
  }

  .pb-xl-3 {
    padding-bottom: 16px !important;
  }

  .pl-xl-3 {
    padding-left: 16px !important;
  }

  .px-xl-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .py-xl-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

@media (min-width:1280px) {
  .p-xl-4 {
    padding: 24px !important;
  }

  .pt-xl-4 {
    padding-top: 24px !important;
  }

  .pr-xl-4 {
    padding-right: 24px !important;
  }

  .pb-xl-4 {
    padding-bottom: 24px !important;
  }

  .pl-xl-4 {
    padding-left: 24px !important;
  }

  .px-xl-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  .py-xl-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

@media (min-width:1280px) {
  .p-xl-5 {
    padding: 32px !important;
  }

  .pt-xl-5 {
    padding-top: 32px !important;
  }

  .pr-xl-5 {
    padding-right: 32px !important;
  }

  .pb-xl-5 {
    padding-bottom: 32px !important;
  }

  .pl-xl-5 {
    padding-left: 32px !important;
  }

  .px-xl-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  .py-xl-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}

@media (min-width:1280px) {
  .p-xl-6 {
    padding: 40px !important;
  }

  .pt-xl-6 {
    padding-top: 40px !important;
  }

  .pr-xl-6 {
    padding-right: 40px !important;
  }

  .pb-xl-6 {
    padding-bottom: 40px !important;
  }

  .pl-xl-6 {
    padding-left: 40px !important;
  }

  .px-xl-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .py-xl-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/*
==========================================================================
Typography
==========================================================================
*/

.h1 {
  font-size: 26px !important;
}

@media (min-width:768px) {
  .h1 {
    font-size: 32px !important;
  }
}

.h2 {
  font-size: 22px !important;
}

@media (min-width:768px) {
  .h2 {
    font-size: 24px !important;
  }
}

.h3 {
  font-size: 18px !important;
}

@media (min-width:768px) {
  .h3 {
    font-size: 20px !important;
  }
}

.h4 {
  font-size: 16px !important;
}

@media (min-width:768px) {
  .h4 {
    font-size: 16px !important;
  }
}

.h5 {
  font-size: 14px !important;
}

.h6 {
  font-size: 12px !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600 !important;
}

.f1 {
  font-size: 26px !important;
}

@media (min-width:768px) {
  .f1 {
    font-size: 32px !important;
  }
}

.f2 {
  font-size: 22px !important;
}

@media (min-width:768px) {
  .f2 {
    font-size: 24px !important;
  }
}

.f3 {
  font-size: 18px !important;
}

@media (min-width:768px) {
  .f3 {
    font-size: 20px !important;
  }
}

.f4 {
  font-size: 16px !important;
}

@media (min-width:768px) {
  .f4 {
    font-size: 16px !important;
  }
}

.f5 {
  font-size: 14px !important;
}

.f6 {
  font-size: 12px !important;
}

.f00-light {
  font-size: 40px !important;
  font-weight: 300 !important;
}

@media (min-width:768px) {
  .f00-light {
    font-size: 48px !important;
  }
}

.f0-light {
  font-size: 32px !important;
  font-weight: 300 !important;
}

@media (min-width:768px) {
  .f0-light {
    font-size: 40px !important;
  }
}

.f1-light {
  font-size: 26px !important;
  font-weight: 300 !important;
}

@media (min-width:768px) {
  .f1-light {
    font-size: 32px !important;
  }
}

.f2-light {
  font-size: 22px !important;
  font-weight: 300 !important;
}

@media (min-width:768px) {
  .f2-light {
    font-size: 24px !important;
  }
}

.f3-light {
  font-size: 18px !important;
  font-weight: 300 !important;
}

@media (min-width:768px) {
  .f3-light {
    font-size: 20px !important;
  }
}

.text-small {
  font-size: 12px !important;
}

.lead {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 300;
  color: #555;
}

.lh-condensed-ultra {
  line-height: 1 !important;
}

.lh-condensed {
  line-height: 1.25 !important;
}

.lh-default {
  line-height: 1.5 !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width:544px) {
  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width:768px) {
  .text-md-right {
    text-align: right !important;
  }

  .text-md-left {
    text-align: left !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width:1012px) {
  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width:1280px) {
  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-normal {
  font-weight: normal !important;
}

.text-bold {
  font-weight: 600 !important;
}

.text-italic {
  font-style: italic !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.no-underline {
  text-decoration: none !important;
}

.no-wrap {
  white-space: nowrap !important;
}

.text-emphasized {
  font-weight: 600;
  color: #333;
}

.list-style-none {
  list-style: none !important;
}

.text-shadow-dark {
  text-shadow: 0 1px 1px rgba(0, 0, 0, .25), 0 1px 25px rgba(0, 0, 0, .75);
}

.text-shadow-light {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}