/**
  Custom spacer
**/

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

.spacer-h {
  display: block;
  clear: both;
}

.spacer-h-xs {
  height: 5px;
}

.spacer-h-s {
  height: 10px;
}

.spacer-h-sm {
  height: 15px;
}

.spacer-h-md {
  height: 20px;
}

.spacer-h-l {
  height: 25px;
}

.spacer-h-xl {
  height: 30px;
}

.spacer-h-xxl {
  height: 60px;
}

.spacer-v {
  display: inline-block;
  height: 1px;
}

.spacer-v-xs {
  width: 5px;
}

.spacer-v-s {
  width: 10px;
}

.spacer-v-sm {
  width: 15px;
}

.spacer-v-md {
  width: 20px;
}

.spacer-v-l {
  width: 25px;
}

.spacer-v-xl {
  width: 30px;
}

.spacer-v-xxl {
  width: 60px;
}

/**
  Custom row - col
**/

.stockspot__container .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -25px;
  margin-left: -25px;
}

.stockspot__container .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.stockspot__container .col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-auto, .col, .col-md-3, .col-md-2 {
  position: relative;
  padding-right: 25px;
  padding-left: 25px;
}

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

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

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

/** 
Custom h tag
**/

.footer .stockspot__container h6 {
  line-height: 1.2;
  font-size: 1rem;
}

/**
Stockspot container
**/

.stockspot__container {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}

/**
Responsive
**/

@media (min-width: 576px) {
  .stockspot__container {
    max-width: 1360px;
  }

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

@media (min-width: 768px) {
  .stockspot__container {
    max-width: 1360px;
  }

  .stockspot__container .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .stockspot__container .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}

@media (max-width: 769px) {
  .stockspot__container {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}

@media (min-width: 992px) {
  .stockspot__container {
    max-width: 1360px;
  }
}

@media (min-width: 1200px) {
  .stockspot__container {
    max-width: 1360px;
  }
}

@media (max-width: 1800px) {
  .stockspot__container {
    padding-left: 50px;
    padding-right: 50px;
  }
}