/*-----------------------------------------------------------------------------
	Name	    : Settings
	Description	: Bootstrap settings
	Author		: abcreativity
	Author URL	: https://abcreativity.pl/
	Created		: 01 September 2019
	License		: All Rights Reserved. Do Not Copy!
-------------------------------------------------------------------------------*/

.notransition, .notransition img {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/*
====================================
Display
====================================
*/

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

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

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

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

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

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

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

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

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

@media (min-width: 360px) {
  .d-xs-none {
    display: none !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-table {
    display: table !important;
  }
  .d-xs-table-row {
    display: table-row !important;
  }
  .d-xs-table-cell {
    display: table-cell !important;
  }
  .d-xs-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xs-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

/*
====================================
Overflow
====================================
*/

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

@media (min-width: 576px) {
.overflow-hidden-sm {
    overflow: hidden !important;
}
.overflow-visible-sm {
    overflow: visible !important;
}
}

@media (min-width: 768px) {
.overflow-hidden-md {
    overflow: hidden !important;
}
.overflow-visible-md {
    overflow: visible !important;
}
}

@media (min-width: 992px) {
.overflow-hidden-lg {
    overflow: hidden !important;
}
.overflow-visible-lg {
    overflow: visible !important;
}
}

@media (min-width: 1200px) {
.overflow-hidden-xl {
    overflow: hidden !important;
}
.overflow-visible-xl {
    overflow: visible !important;
}
}

@media (min-width: 992px) {
.position-lg-static {
    position: static !important;
}
}
/* Columns */
.columns-1 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}

@media (min-width: 576px) {
.columns-sm-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
}

/* Container fluid */

.container-fluid-from-lg {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;

}
@media (min-width: 576px) {
  .container-fluid-from-lg {
      max-width: 540px;
}
}
@media (min-width: 768px) {
  .container-fluid-from-lg {
    max-width: 720px;
}
}


@media (min-width: 992px) {
.container-fluid-from-lg {
    max-width: 960px;
/*    width: 100%;*/
/*max-width: none;*/

}
}

@media (min-width: 1200px) {
.container-fluid-from-lg {
    width: 100%;
max-width: none;
}
}

.container-fluid-xl {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

@media (min-width: 1200px) {
.container-fluid-xl {
    max-width: 1280px;
}
}
.container-fluid-md {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

@media (min-width: 768px) {
.container-fluid-md {
    max-width: 720px;
}
}

@media (min-width: 992px) {
.container-fluid-md {
    max-width: 960px;
}
}

@media (min-width: 1200px) {
.container-fluid-md {
    max-width: 1320px;
}
}
.container-fluid-xxl {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1540px;
  }
    
    
    .container-fluid-xxl {
    max-width: 1440px;
}
    
    
    
    
}


/*
====================================
Columns
====================================
*/
.col-20pct {
      position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
@media (min-width: 360px) {
.col-xs {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col-xs-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}
.col-xs-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.col-xs-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.col-xs-20pct {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.col-xs-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-xs-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-xs-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-xs-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-xs-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.col-xs-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-xs-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-xs-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-xs-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.col-xs-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.order-xs-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}
.order-xs-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}
.order-xs-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}
.order-xs-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
.order-xs-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.order-xs-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}
.order-xs-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}
.order-xs-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}
.order-xs-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}
.order-xs-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}
.order-xs-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}
.order-xs-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}
.order-xs-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}
.order-xs-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}
.order-xs-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}
.offset-xs-0 {
    margin-left: 0;
}
.offset-xs-1 {
    margin-left: 8.333333%;
}
.offset-xs-2 {
    margin-left: 16.666667%;
}
.offset-xs-3 {
    margin-left: 25%;
}
.offset-xs-4 {
    margin-left: 33.333333%;
}
.offset-xs-5 {
    margin-left: 41.666667%;
}
.offset-xs-6 {
    margin-left: 50%;
}
.offset-xs-7 {
    margin-left: 58.333333%;
}
.offset-xs-8 {
    margin-left: 66.666667%;
}
.offset-xs-9 {
    margin-left: 75%;
}
.offset-xs-10 {
    margin-left: 83.333333%;
}
.offset-xs-11 {
    margin-left: 91.666667%;
}
}

@media (min-width: 576px) {
.col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}
.col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.col-sm-20pct {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}
.order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}
.order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}
.order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
.order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}
.order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}
.order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}
.order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}
.order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}
.order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}
.order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}
.order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}
.order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}
.order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}
.offset-sm-0 {
    margin-left: 0;
}
.offset-sm-1 {
    margin-left: 8.333333%;
}
.offset-sm-2 {
    margin-left: 16.666667%;
}
.offset-sm-3 {
    margin-left: 25%;
}
.offset-sm-4 {
    margin-left: 33.333333%;
}
.offset-sm-5 {
    margin-left: 41.666667%;
}
.offset-sm-6 {
    margin-left: 50%;
}
.offset-sm-7 {
    margin-left: 58.333333%;
}
.offset-sm-8 {
    margin-left: 66.666667%;
}
.offset-sm-9 {
    margin-left: 75%;
}
.offset-sm-10 {
    margin-left: 83.333333%;
}
.offset-sm-11 {
    margin-left: 91.666667%;
}
}

@media (min-width: 768px) {
.col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}
.col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.col-md-20pct {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}
.order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}
.order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}
.order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
.order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}
.order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}
.order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}
.order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}
.order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}
.order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}
.order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}
.order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}
   
    
.order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}
.order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}
.offset-md-0 {
    margin-left: 0;
}
.offset-md-1 {
    margin-left: 8.333333%;
}
.offset-md-2 {
    margin-left: 16.666667%;
}
.offset-md-3 {
    margin-left: 25%;
}
.offset-md-4 {
    margin-left: 33.333333%;
}
.offset-md-5 {
    margin-left: 41.666667%;
}
.offset-md-6 {
    margin-left: 50%;
}
.offset-md-7 {
    margin-left: 58.333333%;
}
.offset-md-8 {
    margin-left: 66.666667%;
}
.offset-md-9 {
    margin-left: 75%;
}
.offset-md-10 {
    margin-left: 83.333333%;
}
.offset-md-11 {
    margin-left: 91.666667%;
}
}

@media (min-width: 992px) {
.col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}
.col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.col-lg-20pct {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}  
.col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}
.order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}
.order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}
.order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
.order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}
.order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}
.order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}
.order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}
.order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}
.order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}
.order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}
.order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}
.order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}
.order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}
.offset-lg-0 {
    margin-left: 0;
}
.offset-lg-1 {
    margin-left: 8.333333%;
}
.offset-lg-2 {
    margin-left: 16.666667%;
}
.offset-lg-3 {
    margin-left: 25%;
}
.offset-lg-4 {
    margin-left: 33.333333%;
}
.offset-lg-5 {
    margin-left: 41.666667%;
}
.offset-lg-6 {
    margin-left: 50%;
}
.offset-lg-7 {
    margin-left: 58.333333%;
}
.offset-lg-8 {
    margin-left: 66.666667%;
}
.offset-lg-9 {
    margin-left: 75%;
}
.offset-lg-10 {
    margin-left: 83.333333%;
}
.offset-lg-11 {
    margin-left: 91.666667%;
}
}

@media (min-width: 1200px) {
.col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}
.col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.col-xl-20pct {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}    
.col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}
.order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}
.order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}
.order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
.order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}
.order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}
.order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}
.order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}
.order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}
.order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}
.order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}
.order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}
.order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}
.order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}
.offset-xl-0 {
    margin-left: 0;
}
.offset-xl-1 {
    margin-left: 8.333333%;
}
.offset-xl-2 {
    margin-left: 16.666667%;
}
.offset-xl-3 {
    margin-left: 25%;
}
.offset-xl-4 {
    margin-left: 33.333333%;
}
.offset-xl-5 {
    margin-left: 41.666667%;
}
.offset-xl-6 {
    margin-left: 50%;
}
.offset-xl-7 {
    margin-left: 58.333333%;
}
.offset-xl-8 {
    margin-left: 66.666667%;
}
.offset-xl-9 {
    margin-left: 75%;
}
.offset-xl-10 {
    margin-left: 83.333333%;
}
.offset-xl-11 {
    margin-left: 91.666667%;
}
}

@media (min-width: 1600px) {
.col-xxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}
.col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.col-xxl-20pct {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}    
.col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.order-xxl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}
.order-xxl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}
.order-xxl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}
.order-xxl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
.order-xxl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.order-xxl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}
.order-xxl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}
.order-xxl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}
.order-xxl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}
.order-xxl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}
.order-xxl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}
.order-xxl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}
.order-xxl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}
.order-xxl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}
.order-xxl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}
.offset-xxl-0 {
    margin-left: 0;
}
.offset-xxl-1 {
    margin-left: 8.333333%;
}
.offset-xxl-2 {
    margin-left: 16.666667%;
}
.offset-xxl-3 {
    margin-left: 25%;
}
.offset-xxl-4 {
    margin-left: 33.333333%;
}
.offset-xxl-5 {
    margin-left: 41.666667%;
}
.offset-xxl-6 {
    margin-left: 50%;
}
.offset-xxl-7 {
    margin-left: 58.333333%;
}
.offset-xxl-8 {
    margin-left: 66.666667%;
}
.offset-xxl-9 {
    margin-left: 75%;
}
.offset-xxl-10 {
    margin-left: 83.333333%;
}
.offset-xxl-11 {
    margin-left: 91.666667%;
}
}













/*
====================================
Shell
====================================
*/

.shell-220,.shell-320, .shell-360,.shell-370,.shell-380, .shell-480, .shell-sm-220,  .shell-sm-320, .shell-sm-360,  .shell-sm-370,  .shell-sm-380, .shell-md-220, .shell-md-320, .shell-md-360, .shell-md-370, .shell-md-380, .shell-sm-480 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
div[class^="shell-"] > .row {
    position: relative;
}
.shell-220, .shell-sm-220, .shell-md-220 {
    max-width: 220px;
}
.shell-320, .shell-sm-320, .shell-md-320 {
    max-width: 320px;
}
.shell-360, .shell-sm-360, .shell-md-360 {
    max-width: 360px;
}
.shell-370, .shell-sm-370, .shell-md-370 {
    max-width: 370px;
}
.shell-380, .shell-sm-380, .shell-md-380 {
    max-width: 380px;
}
.shell-480, .shell-sm-480 {
    max-width: 480px;
}


@media (min-width: 576px) {
.shell-sm-220,.shell-sm-320, .shell-sm-360, .shell-sm-370, .shell-sm-380, .shell-sm-480 {
    max-width: 100% !important;
}
}

@media (min-width: 768px) {
.shell-md-220, .shell-md-320, .shell-md-360, .shell-md-370, .shell-md-380 {
    max-width: 100%;
}
}
/*
====================================
Space between list
====================================
*/

/* List - horizontal space between */
.list-inline-m-0 li {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-1 li {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}
.list-inline-m-1 li:first-child, .list-inline-m-1 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-2 li {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
}
.list-inline-m-2 li:first-child, .list-inline-m-2 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-3 li {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}
.list-inline-m-3 li:first-child, .list-inline-m-3 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-4 li {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}
.list-inline-m-4 li:first-child, .list-inline-m-4 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-5 li {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}
.list-inline-m-5 li:first-child, .list-inline-m-5 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-6 li {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}
.list-inline-m-6 li:first-child, .list-inline-m-5 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (min-width: 576px) {
.list-inline-m-sm-0 li {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-sm-1 li {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}
.list-inline-m-sm-1 li:first-child, .list-inline-m-sm-1 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-sm-2 li {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
}
.list-inline-m-sm-2 li:first-child, .list-inline-m-sm-2 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-sm-3 li {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}
.list-inline-m-sm-3 li:first-child, .list-inline-m-sm-3 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-sm-4 li {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}
.list-inline-m-sm-4 li:first-child, .list-inline-m-sm-4 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-sm-5 li {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}
.list-inline-m-sm-5 li:first-child, .list-inline-m-sm-5 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-sm-6 li {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}
.list-inline-m-sm-6 li:first-child, .list-inline-m-sm-5 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
}

@media (min-width: 768px) {
.list-inline-m-md-0 li {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-md-1 li {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}
.list-inline-m-md-1 li:first-child, .list-inline-m-md-1 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-md-2 li {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
}
.list-inline-m-md-2 li:first-child, .list-inline-m-md-2 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-md-3 li {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}
.list-inline-m-md-3 li:first-child, .list-inline-m-md-3 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-md-4 li {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}
.list-inline-m-md-4 li:first-child, .list-inline-m-md-4 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-md-5 li {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}
.list-inline-m-md-5 li:first-child, .list-inline-m-md-5 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-md-6 li {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}
.list-inline-m-md-6 li:first-child, .list-inline-m-md-5 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
}

@media (min-width: 992px) {
.list-inline-m-lg-0 li {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-lg-1 li {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}
.list-inline-m-lg-1 li:first-child, .list-inline-m-lg-1 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-lg-2 li {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
}
.list-inline-m-lg-2 li:first-child, .list-inline-m-lg-2 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-lg-3 li {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}
.list-inline-m-lg-3 li:first-child, .list-inline-m-lg-3 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-lg-4 li {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}
.list-inline-m-lg-4 li:first-child, .list-inline-m-lg-4 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-lg-5 li {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}
.list-inline-m-lg-5 li:first-child, .list-inline-m-lg-5 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-lg-6 li {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}
.list-inline-m-lg-6 li:first-child, .list-inline-m-lg-5 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
}

@media (min-width: 1200px) {
.list-inline-m-xl-0 li {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-xl-1 li {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}
.list-inline-m-xl-1 li:first-child, .list-inline-m-xl-1 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-xl-2 li {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
}
.list-inline-m-xl-2 li:first-child, .list-inline-m-xl-2 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-xl-3 li {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}
.list-inline-m-xl-3 li:first-child, .list-inline-m-xl-3 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-xl-4 li {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}
.list-inline-m-xl-4 li:first-child, .list-inline-m-xl-4 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-xl-5 li {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}
.list-inline-m-xl-5 li:first-child, .list-inline-m-xl-5 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.list-inline-m-xl-6 li {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}
.list-inline-m-xl-6 li:first-child, .list-inline-m-xl-5 li:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
}
/* List - vertical space between */
.list-m-0 li {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-1 li {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.list-m-1 li:first-child, .list-m-1 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-2 li {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}
.list-m-2 li:first-child, .list-m-2 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-3 li {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.list-m-3 li:first-child, .list-m-3 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-4 li {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.list-m-4 li:first-child, .list-m-4 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-5 li {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.list-m-5 li:first-child, .list-m-5 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-6 li {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.list-m-6 li:first-child, .list-m-5 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

@media (min-width: 576px) {
.list-m-sm-0 li {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-sm-1 li {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.list-m-sm-1 li:first-child, .list-m-sm-1 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-sm-2 li {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}
.list-m-sm-2 li:first-child, .list-m-sm-2 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-sm-3 li {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.list-m-sm-3 li:first-child, .list-m-sm-3 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-sm-4 li {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.list-m-sm-4 li:first-child, .list-m-sm-4 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-sm-5 li {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.list-m-sm-5 li:first-child, .list-m-sm-5 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-sm-6 li {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.list-m-sm-6 li:first-child, .list-m-sm-5 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
}

@media (min-width: 768px) {
.list-m-md-0 li {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-md-1 li {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.list-m-md-1 li:first-child, .list-m-md-1 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-md-2 li {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}
.list-m-md-2 li:first-child, .list-m-md-2 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-md-3 li {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.list-m-md-3 li:first-child, .list-m-md-3 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-md-4 li {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.list-m-md-4 li:first-child, .list-m-md-4 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-md-5 li {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.list-m-md-5 li:first-child, .list-m-md-5 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-md-6 li {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.list-m-md-6 li:first-child, .list-m-md-5 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
}

@media (min-width: 992px) {
.list-m-lg-0 li {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-lg-1 li {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.list-m-lg-1 li:first-child, .list-m-lg-1 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-lg-2 li {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}
.list-m-lg-2 li:first-child, .list-m-lg-2 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-lg-3 li {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.list-m-lg-3 li:first-child, .list-m-lg-3 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-lg-4 li {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.list-m-lg-4 li:first-child, .list-m-lg-4 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-lg-5 li {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.list-m-lg-5 li:first-child, .list-m-lg-5 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-lg-6 li {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.list-m-lg-6 li:first-child, .list-m-lg-5 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
}

@media (min-width: 1200px) {
.list-m-xl-0 li {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-xl-1 li {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.list-m-xl-1 li:first-child, .list-m-xl-1 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-xl-2 li {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}
.list-m-xl-2 li:first-child, .list-m-xl-2 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-xl-3 li {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.list-m-xl-3 li:first-child, .list-m-xl-3 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-xl-4 li {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.list-m-xl-4 li:first-child, .list-m-xl-4 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-xl-5 li {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.list-m-xl-5 li:first-child, .list-m-xl-5 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.list-m-xl-6 li {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.list-m-xl-6 li:first-child, .list-m-xl-5 li:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
}
/*
====================================
Gutter between column
====================================
*/

/* Gutter 0px */
.column-gutter-0 {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-0 .row, .column-gutter-0 > div[class*="shell-"] .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.column-gutter-0 > .row [class*="col-"], .column-gutter-0 > div[class*="shell-"] > .row [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
/* Gutter 1px */
.column-gutter-1px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-1px .row, .column-gutter-1px > div[class*="shell-"] .row {
    margin-left: -0.5px !important;
    margin-right: -0.5px !important;
}
.column-gutter-1px > .row > [class*="col-"], .column-gutter-1px > div[class*="shell-"] .row > [class*="col-"] {
    padding-right: 0.5px !important;
    padding-left: 0.5px !important;
    margin-bottom: 1px;
}
@media (min-width: 992px) {
.column-gutter-1px .row, .column-gutter-1px > div[class*="shell-"] .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.column-gutter-1px > .row > [class*="col-"], .column-gutter-1px > div[class*="shell-"] .row > [class*="col-"] {
    padding-right: 0px !important;
    padding-left: 0px !important;
    margin-bottom: 0px;
}

}



/* Gutter 10px */
.column-gutter-10px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-10px .row, .column-gutter-10px > div[class*="shell-"] .row {
    margin-left: -5px !important;
    margin-right: -5px !important;
}
.column-gutter-10px > .row [class*="col-"], .column-gutter-10px > div[class*="shell-"] > .row [class*="col-"] {
    padding-right: 5px !important;
    padding-left: 5px !important;
    margin-bottom: 10px;
}
/* Gutter 30px */
.column-gutter-30px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-30px > .row, .column-gutter-30px > div[class*="shell-"] > .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
}
.column-gutter-30px > .row [class*="col-"], .column-gutter-30px > div[class*="shell-"] > .row [class*="col-"] {
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-bottom: 30px;
}
/* Gutter 1rem */
.column-gutter-1rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-1rem > .row, .column-gutter-1rem > div[class*="shell-"] > .row {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
}
.column-gutter-1rem > .row > [class*="col-"], .column-gutter-1rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
    margin-bottom: 1rem;
}
/* Gutter 2rem */
.column-gutter-2rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-2rem > .row, .column-gutter-2rem > div[class*="shell-"] > .row {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
}
.column-gutter-2rem > .row > [class*="col-"], .column-gutter-2rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    margin-bottom: 2rem;
}
/* Gutter 3rem */
.column-gutter-3rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-3rem > .row, .column-gutter-3rem > div[class*="shell-"] > .row {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
}
.column-gutter-3rem > .row > [class*="col-"], .column-gutter-3rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    margin-bottom: 3rem;
}
/* Gutter 4rem */
.column-gutter-4rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-4rem > .row, .column-gutter-4rem > div[class*="shell-"] > .row {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
}
.column-gutter-4rem > .row > [class*="col-"], .column-gutter-4rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
    margin-bottom: 4rem;
}
/* Gutters with margins on sides*/
.column-gutter-0.m-sides, .column-gutter-1px.m-sides, .column-gutter-10px.m-sides, .column-gutter-30px.m-sides, .column-gutter-1rem.m-sides, .column-gutter-2rem.m-sides, .column-gutter-3rem.m-sides, .column-gutter-4rem.m-sides {
    overflow: hidden;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

@media (min-width: 576px) {
/* Gutter 0px */
.column-gutter-sm-0 {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-sm-0 > .row, .column-gutter-sm-0 > div[class*="shell-"] > .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.column-gutter-sm-0 > .row > [class*="col-"], .column-gutter-sm-0 > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
/* Gutter 1px */
.column-gutter-sm-1px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-sm-1px > .row, .column-gutter-sm-1px > div[class*="shell-"] > .row {
    margin-left: -0.5px !important;
    margin-right: -0.5px !important;
}
.column-gutter-sm-1px > .row > [class*="col-"], .column-gutter-sm-1px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0.5px !important;
    padding-left: 0.5px !important;
    margin-bottom: 1px;
}
/* Gutter 10px */
.column-gutter-sm-10px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-sm-10px > .row, .column-gutter-sm-10px > div[class*="shell-"] > .row {
    margin-left: -5px !important;
    margin-right: -5px !important;
}
.column-gutter-sm-10px > .row > [class*="col-"], .column-gutter-sm-10px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 5px !important;
    padding-left: 5px !important;
    margin-bottom: 10px;
}
/* Gutter 30px */
.column-gutter-sm-30px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-sm-30px > .row, .column-gutter-sm-30px > div[class*="shell-"] > .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
}
.column-gutter-sm-30px > .row > [class*="col-"], .column-gutter-sm-30px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-bottom: 30px;
}
/* Gutter 1rem */
.column-gutter-sm-1rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-sm-1rem > .row, .column-gutter-sm-1rem > div[class*="shell-"] > .row {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
}
.column-gutter-sm-1rem > .row > [class*="col-"], .column-gutter-sm-1rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
    margin-bottom: 1rem;
}
/* Gutter 2rem */
.column-gutter-sm-2rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-sm-2rem > .row, .column-gutter-sm-2rem > div[class*="shell-"] > .row {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
}
.column-gutter-sm-2rem > .row > [class*="col-"], .column-gutter-sm-2rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    margin-bottom: 2rem;
}
/* Gutter 3rem */
.column-gutter-sm-3rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-sm-3rem > .row, .column-gutter-sm-3rem > div[class*="shell-"] > .row {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
}
.column-gutter-sm-3rem > .row > [class*="col-"], .column-gutter-sm-3rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    margin-bottom: 3rem;
}
/* Gutter 4rem */
.column-gutter-sm-4rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-sm-4rem > .row, .column-gutter-sm-4rem > div[class*="shell-"] > .row {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
}
.column-gutter-sm-4rem > .row > [class*="col-"], .column-gutter-sm-4rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
    margin-bottom: 4rem;
}
/* Gutters with margins on sides*/
.column-gutter-sm-0.m-sides, .column-gutter-sm-1px.m-sides, .column-gutter-sm-10px.m-sides, .column-gutter-sm-30px.m-sides, .column-gutter-sm-1rem.m-sides, .column-gutter-sm-2rem.m-sides, .column-gutter-sm-3rem.m-sides, .column-gutter-sm-4rem.m-sides {
    overflow: hidden;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
}

@media (min-width: 768px) {
/* Gutter 0px */
.column-gutter-md-0 {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-md-0 > .row, .column-gutter-md-0 > div[class*="shell-"] > .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.column-gutter-md-0 > .row > [class*="col-"], .column-gutter-md-0 > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
/* Gutter 1px */
.column-gutter-md-1px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-md-1px > .row, .column-gutter-md-1px > div[class*="shell-"] > .row {
    margin-left: -0.5px !important;
    margin-right: -0.5px !important;
}
.column-gutter-md-1px > .row > [class*="col-"], .column-gutter-md-1px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0.5px !important;
    padding-left: 0.5px !important;
    margin-bottom: 1px;
}
/* Gutter 10px */
.column-gutter-md-10px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-md-10px > .row, .column-gutter-md-10px > div[class*="shell-"] > .row {
    margin-left: -5px !important;
    margin-right: -5px !important;
}
.column-gutter-md-10px > .row > [class*="col-"], .column-gutter-md-10px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 5px !important;
    padding-left: 5px !important;
    margin-bottom: 10px;
}
/* Gutter 30px */
.column-gutter-md-30px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-md-30px > .row, .column-gutter-md-30px > div[class*="shell-"] > .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
}
.column-gutter-md-30px > .row > [class*="col-"], .column-gutter-md-30px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-bottom: 30px;
}
/* Gutter 1rem */
.column-gutter-md-1rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-md-1rem > .row, .column-gutter-md-1rem > div[class*="shell-"] > .row {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
}
.column-gutter-md-1rem > .row > [class*="col-"], .column-gutter-md-1rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
    margin-bottom: 1rem;
}
/* Gutter 2rem */
.column-gutter-md-2rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-md-2rem > .row, .column-gutter-md-2rem > div[class*="shell-"] > .row {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
}
.column-gutter-md-2rem > .row > [class*="col-"], .column-gutter-md-2rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    margin-bottom: 2rem;
}
/* Gutter 3rem */
.column-gutter-md-3rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-md-3rem > .row, .column-gutter-md-3rem > div[class*="shell-"] > .row {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
}
.column-gutter-md-3rem > .row > [class*="col-"], .column-gutter-md-3rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    margin-bottom: 3rem;
}
/* Gutter 4rem */
.column-gutter-md-4rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-md-4rem > .row, .column-gutter-md-4rem > div[class*="shell-"] > .row {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
}
.column-gutter-md-4rem > .row > [class*="col-"], .column-gutter-md-4rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
    margin-bottom: 4rem;
}
/* Gutters with margins on sides*/
.column-gutter-md-0.m-sides, .column-gutter-md-1px.m-sides, .column-gutter-md-10px.m-sides, .column-gutter-md-30px.m-sides, .column-gutter-md-1rem.m-sides, .column-gutter-md-2rem.m-sides, .column-gutter-md-3rem.m-sides, .column-gutter-md-4rem.m-sides {
    overflow: hidden;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
}

@media (min-width: 992px) {
/* Gutter 0px */
.column-gutter-lg-0 {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-lg-0 > .row, .column-gutter-lg-0 > div[class*="shell-"] > .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.column-gutter-lg-0 > .row > [class*="col-"], .column-gutter-lg-0 > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
/* Gutter 1px */
.column-gutter-lg-1px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-lg-1px > .row, .column-gutter-lg-1px > div[class*="shell-"] > .row {
    margin-left: -0.5px !important;
    margin-right: -0.5px !important;
}
.column-gutter-lg-1px > .row > [class*="col-"], .column-gutter-lg-1px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0.5px !important;
    padding-left: 0.5px !important;
    margin-bottom: 1px;
}
/* Gutter 10px */
.column-gutter-lg-10px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-lg-10px > .row, .column-gutter-lg-10px > div[class*="shell-"] > .row {
    margin-left: -5px !important;
    margin-right: -5px !important;
}
.column-gutter-lg-10px > .row > [class*="col-"], .column-gutter-lg-10px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 5px !important;
    padding-left: 5px !important;
    margin-bottom: 10px;
}
/* Gutter 30px */
.column-gutter-lg-30px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-lg-30px > .row, .column-gutter-lg-30px > div[class*="shell-"] > .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
}
.column-gutter-lg-30px > .row > [class*="col-"], .column-gutter-lg-30px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-bottom: 30px;
}
/* Gutter 1rem */
.column-gutter-lg-1rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-lg-1rem > .row, .column-gutter-lg-1rem > div[class*="shell-"] > .row {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
}
.column-gutter-lg-1rem > .row > [class*="col-"], .column-gutter-lg-1rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
    margin-bottom: 1rem;
}
/* Gutter 2rem */
.column-gutter-lg-2rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-lg-2rem > .row, .column-gutter-lg-2rem > div[class*="shell-"] > .row {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
}
.column-gutter-lg-2rem > .row > [class*="col-"], .column-gutter-lg-2rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    margin-bottom: 2rem;
}
/* Gutter 3rem */
.column-gutter-lg-3rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-lg-3rem > .row, .column-gutter-lg-3rem > div[class*="shell-"] > .row {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
}
.column-gutter-lg-3rem > .row > [class*="col-"], .column-gutter-lg-3rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    margin-bottom: 3rem;
}
/* Gutter 4rem */
.column-gutter-lg-4rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-lg-4rem > .row, .column-gutter-lg-4rem > div[class*="shell-"] > .row {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
}
.column-gutter-lg-4rem > .row > [class*="col-"], .column-gutter-lg-4rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
    margin-bottom: 4rem;
}
/* Gutters with margins on sides*/
.column-gutter-lg-0.m-sides, .column-gutter-lg-1px.m-sides, .column-gutter-lg-10px.m-sides, .column-gutter-lg-30px.m-sides, .column-gutter-lg-1rem.m-sides, .column-gutter-lg-2rem.m-sides, .column-gutter-lg-3rem.m-sides, .column-gutter-lg-4rem.m-sides {
    overflow: hidden;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
}

@media (min-width: 1200px) {
/* Gutter 0px */
.column-gutter-xl-0 {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-xl-0 > .row, .column-gutter-xl-0 > div[class*="shell-"] > .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.column-gutter-xl-0 > .row > [class*="col-"], .column-gutter-xl-0 > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
/* Gutter 1px */
.column-gutter-xl-1px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-xl-1px > .row, .column-gutter-xl-1px > div[class*="shell-"] > .row {
    margin-left: -0.5px !important;
    margin-right: -0.5px !important;
}
.column-gutter-xl-1px > .row > [class*="col-"], .column-gutter-xl-1px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0.5px !important;
    padding-left: 0.5px !important;
    margin-bottom: 1px;
}
/* Gutter 10px */
.column-gutter-xl-10px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-xl-10px > .row, .column-gutter-xl-10px > div[class*="shell-"] > .row {
    margin-left: -5px !important;
    margin-right: -5px !important;
}
.column-gutter-xl-10px > .row > [class*="col-"], .column-gutter-xl-10px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 5px !important;
    padding-left: 5px !important;
    margin-bottom: 10px;
}
/* Gutter 30px */
.column-gutter-xl-30px {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-xl-30px > .row, .column-gutter-xl-30px > div[class*="shell-"] > .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
}
.column-gutter-xl-30px > .row > [class*="col-"], .column-gutter-xl-30px > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-bottom: 30px;
}
/* Gutter 1rem */
.column-gutter-xl-1rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-xl-1rem > .row, .column-gutter-xl-1rem > div[class*="shell-"] > .row {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
}
.column-gutter-xl-1rem > .row > [class*="col-"], .column-gutter-xl-1rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
    margin-bottom: 1rem;
}
/* Gutter 2rem */
.column-gutter-xl-2rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-xl-2rem > .row, .column-gutter-xl-2rem > div[class*="shell-"] > .row {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
}
.column-gutter-xl-2rem > .row > [class*="col-"], .column-gutter-xl-2rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    margin-bottom: 2rem;
}
/* Gutter 3rem */
.column-gutter-xl-3rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-xl-3rem > .row, .column-gutter-xl-3rem > div[class*="shell-"] > .row {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
}
.column-gutter-xl-3rem > .row > [class*="col-"], .column-gutter-xl-3rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    margin-bottom: 3rem;
}
/* Gutter 4rem */
.column-gutter-xl-4rem {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.column-gutter-xl-4rem > .row, .column-gutter-xl-4rem > div[class*="shell-"] > .row {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
}
.column-gutter-xl-4rem > .row > [class*="col-"], .column-gutter-xl-4rem > div[class*="shell-"] > .row > [class*="col-"] {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
    margin-bottom: 4rem;
}
/* Gutters with margins on sides*/
.column-gutter-xl-0.m-sides, .column-gutter-xl-1px.m-sides, .column-gutter-xl-10px.m-sides, .column-gutter-xl-30px.m-sides, .column-gutter-xl-1rem.m-sides, .column-gutter-xl-2rem.m-sides, .column-gutter-xl-3rem.m-sides, .column-gutter-xl-4rem.m-sides {
    overflow: hidden;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
}
/*
====================================
Resize space between box
====================================
*/
.column-space-1 {
    max-width: calc(100% - 1rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-2 {
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-3 {
    max-width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-4 {
    max-width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-5 {
    max-width: calc(100% - 5rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-6 {
    max-width: calc(100% - 6rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-7 {
    max-width: calc(100% - 7rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-8 {
    max-width: calc(100% - 8rem);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px) {
.column-space-sm-1 {
    max-width: calc(100% - 1rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-sm-2 {
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-sm-3 {
    max-width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-sm-4 {
    max-width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-sm-5 {
    max-width: calc(100% - 5rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-sm-6 {
    max-width: calc(100% - 6rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-sm-7 {
    max-width: calc(100% - 7rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-sm-8 {
    max-width: calc(100% - 8rem);
    margin-left: auto;
    margin-right: auto;
}
}

@media (min-width: 768px) {
.column-space-md-1 {
    max-width: calc(100% - 1rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-md-2 {
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-md-3 {
    max-width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-md-4 {
    max-width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-md-5 {
    max-width: calc(100% - 5rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-md-6 {
    max-width: calc(100% - 6rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-md-7 {
    max-width: calc(100% - 7rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-md-8 {
    max-width: calc(100% - 8rem);
    margin-left: auto;
    margin-right: auto;
}
}

@media (min-width: 992px) {
.column-space-lg-1 {
    max-width: calc(100% - 1rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-lg-2 {
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-lg-3 {
    max-width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-lg-4 {
    max-width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-lg-5 {
    max-width: calc(100% - 5rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-lg-6 {
    max-width: calc(100% - 6rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-lg-7 {
    max-width: calc(100% - 7rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-lg-8 {
    max-width: calc(100% - 8rem);
    margin-left: auto;
    margin-right: auto;
}
}

@media (min-width: 1200px) {
.column-space-xl-1 {
    max-width: calc(100% - 1rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-xl-2 {
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-xl-3 {
    max-width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-xl-4 {
    max-width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-xl-5 {
    max-width: calc(100% - 5rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-xl-6 {
    max-width: calc(100% - 6rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-xl-7 {
    max-width: calc(100% - 7rem);
    margin-left: auto;
    margin-right: auto;
}
.column-space-xl-8 {
    max-width: calc(100% - 8rem);
    margin-left: auto;
    margin-right: auto;
}
}
/*
====================================
Width and height
====================================
*/
.w-25 {
    width: 25% !important;
}
.w-50 {
    width: 50% !important;
}
.w-75 {
    width: 75% !important;
}
.w-100 {
    width: 100% !important;
}
.h-0 {
    height: 0 !important;
}
.h-25 {
    height: 25% !important;
}
.h-50 {
    height: 50% !important;
}
.h-75 {
    height: 75% !important;
}
.h-100 {
    height: 100% !important;
}
.mw-100 {
    max-width: 100% !important;
}
.mh-100 {
    max-height: 100% !important;
}
.w-1 {
    width: 0.25rem !important;
}
.w-2 {
    width: 0.5rem !important;
}
.w-3 {
    width: 1rem !important;
}
.w-4 {
    width: 1.5rem !important;
}
.w-5 {
    width: 2rem !important;
}
.w-6 {
    width: 3rem !important;
}
.w-7 {
    width: 4rem !important;
}
.w-8 {
    width: 5rem !important;
}
.w-9 {
    width: 6rem !important;
}
.w-10 {
    width: 7rem !important;
}
.w-11 {
    width: 8rem !important;
}
.w-12 {
    width: 9rem !important;
}
.w-13 {
    width: 10rem !important;
}

@media (min-width: 576px) {
.w-sm-1 {
    width: 0.25rem !important;
}
.w-sm-2 {
    width: 0.5rem !important;
}
.w-sm-3 {
    width: 1rem !important;
}
.w-sm-4 {
    width: 1.5rem !important;
}
.w-sm-5 {
    width: 2rem !important;
}
.w-sm-6 {
    width: 3rem !important;
}
.w-sm-7 {
    width: 4rem !important;
}
.w-sm-8 {
    width: 5rem !important;
}
.w-sm-9 {
    width: 6rem !important;
}
.w-sm-10 {
    width: 7rem !important;
}
.w-sm-11 {
    width: 8rem !important;
}
.w-sm-12 {
    width: 9rem !important;
}
.w-sm-13 {
    width: 10rem !important;
}
.w-sm-100 {
    width: 100% !important;
}
}

@media (min-width: 768px) {
.w-md-1 {
    width: 0.25rem !important;
}
.w-md-2 {
    width: 0.5rem !important;
}
.w-md-3 {
    width: 1rem !important;
}
.w-md-4 {
    width: 1.5rem !important;
}
.w-md-5 {
    width: 2rem !important;
}
.w-md-6 {
    width: 3rem !important;
}
.w-md-7 {
    width: 4rem !important;
}
.w-md-8 {
    width: 5rem !important;
}
.w-md-9 {
    width: 6rem !important;
}
.w-md-10 {
    width: 7rem !important;
}
.w-md-11 {
    width: 8rem !important;
}
.w-md-12 {
    width: 9rem !important;
}
.w-md-13 {
    width: 10rem !important;
}
.w-md-100 {
    width: 100% !important;
}
}

@media (min-width: 992px) {
.w-lg-1 {
    width: 0.25rem !important;
}
.w-lg-2 {
    width: 0.5rem !important;
}
.w-lg-3 {
    width: 1rem !important;
}
.w-lg-4 {
    width: 1.5rem !important;
}
.w-lg-5 {
    width: 2rem !important;
}
.w-lg-6 {
    width: 3rem !important;
}
.w-lg-7 {
    width: 4rem !important;
}
.w-lg-8 {
    width: 5rem !important;
}
.w-lg-9 {
    width: 6rem !important;
}
.w-lg-10 {
    width: 7rem !important;
}
.w-lg-11 {
    width: 8rem !important;
}
.w-lg-12 {
    width: 9rem !important;
}
.w-lg-13 {
    width: 10rem !important;
}
.w-lg-100 {
    width: 100% !important;
}
}

@media (min-width: 1200px) {
.w-xl-1 {
    width: 0.25rem !important;
}
.w-xl-2 {
    width: 0.5rem !important;
}
.w-xl-3 {
    width: 1rem !important;
}
.w-xl-4 {
    width: 1.5rem !important;
}
.w-xl-5 {
    width: 2rem !important;
}
.w-xl-6 {
    width: 3rem !important;
}
.w-xl-7 {
    width: 4rem !important;
}
.w-xl-8 {
    width: 5rem !important;
}
.w-xl-9 {
    width: 6rem !important;
}
.w-xl-10 {
    width: 7rem !important;
}
.w-xl-11 {
    width: 8rem !important;
}
.w-xl-12 {
    width: 9rem !important;
}
.w-xl-13 {
    width: 10rem !important;
}
.w-xl-100 {
    width: 100% !important;
}
}
/*
====================================
Margin and padding
====================================
*/
.mt-1px {
    margin-top: 1px !important;
}
.mt-5px {
    margin-top: 5px !important;
}
.mt-10px {
    margin-top: 10px !important;
}
.mt-15px {
    margin-top: 15px !important;
}
.mt-20px {
    margin-top: 20px !important;
}
.mt-30px {
    margin-top: 30px !important;
}

@media (min-width: 360px) {
.mt-xs-1px {
    margin-top: 1px !important;
}
.mt-xs-5px {
    margin-top: 5px !important;
}
.mt-xs-10px {
    margin-top: 10px !important;
}
.mt-xs-15px {
    margin-top: 15px !important;
}
.mt-xs-20px {
    margin-top: 20px !important;
}
.mt-xs-30px {
    margin-top: 30px !important;
}
}

@media (min-width: 576px) {
.mt-sm-1px {
    margin-top: 1px !important;
}
.mt-sm-5px {
    margin-top: 5px !important;
}
.mt-sm-10px {
    margin-top: 10px !important;
}
.mt-sm-15px {
    margin-top: 15px !important;
}
.mt-sm-20px {
    margin-top: 20px !important;
}
.mt-sm-30px {
    margin-top: 30px !important;
}
}

@media (min-width: 768px) {
.mt-md-1px {
    margin-top: 1px !important;
}
.mt-md-5px {
    margin-top: 5px !important;
}
.mt-md-10px {
    margin-top: 10px !important;
}
.mt-md-15px {
    margin-top: 15px !important;
}
.mt-md-20px {
    margin-top: 20px !important;
}
.mt-md-30px {
    margin-top: 30px !important;
}
}

@media (min-width: 992px) {
.mt-lg-1px {
    margin-top: 1px !important;
}
.mt-lg-5px {
    margin-top: 5px !important;
}
.mt-lg-10px {
    margin-top: 10px !important;
}
.mt-lg-15px {
    margin-top: 15px !important;
}
.mt-lg-20px {
    margin-top: 20px !important;
}
.mt-lg-30px {
    margin-top: 30px !important;
}
}

@media (min-width: 1200px) {
.mt-xl-1px {
    margin-top: 1px !important;
}
.mt-xl-5px {
    margin-top: 5px !important;
}
.mt-xl-10px {
    margin-top: 10px !important;
}
.mt-xl-15px {
    margin-top: 15px !important;
}
.mt-xl-20px {
    margin-top: 20px !important;
}
.mt-xl-30px {
    margin-top: 30px !important;
}
}
.mt-column-1px > [class*="col-"] {
    margin-top: 1px !important;
}
.mt-column-5px > [class*="col-"] {
    margin-top: 5px !important;
}
.mt-column-10px > [class*="col-"] {
    margin-top: 10px !important;
}
.mt-column-15px > [class*="col-"] {
    margin-top: 15px !important;
}
.mt-column-20px > [class*="col-"] {
    margin-top: 20px !important;
}
.mt-column-30px > [class*="col-"] {
    margin-top: 30px !important;
}

@media (min-width: 576px) {
.mt-column-sm-5px > [class*="col-"] {
    margin-top: 5px !important;
}
.mt-column-sm-10px > [class*="col-"] {
    margin-top: 10px !important;
}
.mt-column-sm-15px > [class*="col-"] {
    margin-top: 15px !important;
}
.mt-column-sm-20px > [class*="col-"] {
    margin-top: 20px !important;
}
.mt-column-sm-30px > [class*="col-"] {
    margin-top: 30px !important;
}
}

@media (min-width: 768px) {
.mt-column-md-5px > [class*="col-"] {
    margin-top: 5px !important;
}
.mt-column-md-10px > [class*="col-"] {
    margin-top: 10px !important;
}
.mt-column-md-15px > [class*="col-"] {
    margin-top: 15px !important;
}
.mt-column-md-20px > [class*="col-"] {
    margin-top: 20px !important;
}
.mt-column-md-30px > [class*="col-"] {
    margin-top: 30px !important;
}
}

@media (min-width: 992px) {
.mt-column-lg-5px > [class*="col-"] {
    margin-top: 5px !important;
}
.mt-column-lg-10px > [class*="col-"] {
    margin-top: 10px !important;
}
.mt-column-lg-15px > [class*="col-"] {
    margin-top: 15px !important;
}
.mt-column-lg-20px > [class*="col-"] {
    margin-top: 20px !important;
}
.mt-column-lg-30px > [class*="col-"] {
    margin-top: 30px !important;
}
}

@media (min-width: 1200px) {
.mt-column-xl-5px > [class*="col-"] {
    margin-top: 5px !important;
}
.mt-column-xl-10px > [class*="col-"] {
    margin-top: 10px !important;
}
.mt-column-xl-15px > [class*="col-"] {
    margin-top: 15px !important;
}
.mt-column-xl-20px > [class*="col-"] {
    margin-top: 20px !important;
}
.mt-column-xl-30px > [class*="col-"] {
    margin-top: 30px !important;
}
}
.m-0 {
    margin: 0 !important;
}
.mt-0, .my-0 {
    margin-top: 0 !important;
}
.mr-0, .mx-0 {
    margin-right: 0 !important;
}
.mb-0, .my-0 {
    margin-bottom: 0 !important;
}
.ml-0, .mx-0 {
    margin-left: 0 !important;
}
.m-1 {
    margin: 0.25rem !important;
}
.mt-1, .my-1 {
    margin-top: 0.25rem !important;
}
.mr-1, .mx-1 {
    margin-right: 0.25rem !important;
}
.mb-1, .my-1 {
    margin-bottom: 0.25rem !important;
}
.ml-1, .mx-1 {
    margin-left: 0.25rem !important;
}
.m-2 {
    margin: 0.5rem !important;
}
.mt-2, .my-2 {
    margin-top: 0.5rem !important;
}
.mr-2, .mx-2 {
    margin-right: 0.5rem !important;
}
.mb-2, .my-2 {
    margin-bottom: 0.5rem !important;
}
.ml-2, .mx-2 {
    margin-left: 0.5rem !important;
}
.m-3 {
    margin: 1rem !important;
}
.mt-3, .my-3 {
    margin-top: 1rem !important;
}
.mr-3, .mx-3 {
    margin-right: 1rem !important;
}
.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}
.ml-3, .mx-3 {
    margin-left: 1rem !important;
}
.m-4 {
    margin: 1.5rem !important;
}
.mt-4, .my-4 {
    margin-top: 1.5rem !important;
}
.mr-4, .mx-4 {
    margin-right: 1.5rem !important;
}
.mb-4, .my-4 {
    margin-bottom: 1.5rem !important;
}
.ml-4, .mx-4 {
    margin-left: 1.5rem !important;
}
.m-5 {
    margin: 2rem !important;
}
.mt-5, .my-5 {
    margin-top: 2rem !important;
}
.mr-5, .mx-5 {
    margin-right: 2rem !important;
}
.mb-5, .my-5 {
    margin-bottom: 2rem !important;
}
.ml-5, .mx-5 {
    margin-left: 2rem !important;
}
.m-6 {
    margin: 3rem !important;
}
.mt-6, .my-6 {
    margin-top: 3rem !important;
}
.mr-6, .mx-6 {
    margin-right: 3rem !important;
}
.mb-6, .my-6 {
    margin-bottom: 3rem !important;
}
.ml-6, .mx-6 {
    margin-left: 3rem !important;
}
.m-7 {
    margin: 4rem !important;
}
.mt-7, .my-7 {
    margin-top: 4rem !important;
}
.mr-7, .mx-7 {
    margin-right: 4rem !important;
}
.mb-7, .my-7 {
    margin-bottom: 4rem !important;
}
.ml-7, .mx-7 {
    margin-left: 4rem !important;
}
.m-8 {
    margin: 5rem !important;
}
.mt-8, .my-8 {
    margin-top: 5rem !important;
}
.mr-8, .mx-8 {
    margin-right: 5rem !important;
}
.mb-8, .my-8 {
    margin-bottom: 5rem !important;
}
.ml-8, .mx-8 {
    margin-left: 5rem !important;
}
.m-9 {
    margin: 6rem !important;
}
.mt-9, .my-9 {
    margin-top: 6rem !important;
}
.mr-9, .mx-9 {
    margin-right: 6rem !important;
}
.mb-9, .my-9 {
    margin-bottom: 6rem !important;
}
.ml-9, .mx-9 {
    margin-left: 6rem !important;
}
.m-10 {
    margin: 7rem !important;
}
.mt-10, .my-10 {
    margin-top: 7rem !important;
}
.mr-10, .mx-10 {
    margin-right: 7rem !important;
}
.mb-10, .my-10 {
    margin-bottom: 7rem !important;
}
.ml-10, .mx-10 {
    margin-left: 7rem !important;
}
.m-11 {
    margin: 8rem !important;
}
.mt-11, .my-11 {
    margin-top: 8rem !important;
}
.mr-11, .mx-11 {
    margin-right: 8rem !important;
}
.mb-11, .my-11 {
    margin-bottom: 8rem !important;
}
.ml-11, .mx-11 {
    margin-left: 8rem !important;
}
.m-12 {
    margin: 9rem !important;
}
.mt-12, .my-12 {
    margin-top: 9rem !important;
}
.mr-12, .mx-12 {
    margin-right: 9rem !important;
}
.mb-12, .my-12 {
    margin-bottom: 9rem !important;
}
.ml-12, .mx-12 {
    margin-left: 9rem !important;
}
.m-13 {
    margin: 10rem !important;
}
.mt-13, .my-13 {
    margin-top: 10rem !important;
}
.mr-13, .mx-13 {
    margin-right: 10rem !important;
}
.mb-13, .my-13 {
    margin-bottom: 10rem !important;
}
.ml-13, .mx-13 {
    margin-left: 10rem !important;
}
.m-14 {
    margin: 11rem !important;
}
.mt-14, .my-14 {
    margin-top: 11rem !important;
}
.mr-14, .mx-14 {
    margin-right: 11rem !important;
}
.mb-14, .my-14 {
    margin-bottom: 11rem !important;
}
.ml-14, .mx-14 {
    margin-left: 11rem !important;
}
.m-15 {
    margin: 12rem !important;
}
.mt-15, .my-15 {
    margin-top: 12rem !important;
}
.mr-15, .mx-15 {
    margin-right: 12rem !important;
}
.mb-15, .my-15 {
    margin-bottom: 12rem !important;
}
.ml-15, .mx-15 {
    margin-left: 12rem !important;
}
.m-16 {
    margin: 13rem !important;
}
.mt-16, .my-16 {
    margin-top: 13rem !important;
}
.mr-16, .mx-16 {
    margin-right: 13rem !important;
}
.mb-16, .my-16 {
    margin-bottom: 13rem !important;
}
.ml-16, .mx-16 {
    margin-left: 13rem !important;
}
.p-0 {
    padding: 0 !important;
}
.pt-0, .py-0 {
    padding-top: 0 !important;
}
.pr-0, .px-0 {
    padding-right: 0 !important;
}
.pb-0, .py-0 {
    padding-bottom: 0 !important;
}
.pl-0, .px-0 {
    padding-left: 0 !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.pt-1, .py-1 {
    padding-top: 0.25rem !important;
}
.pr-1, .px-1 {
    padding-right: 0.25rem !important;
}
.pb-1, .py-1 {
    padding-bottom: 0.25rem !important;
}
.pl-1, .px-1 {
    padding-left: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.pt-2, .py-2 {
    padding-top: 0.5rem !important;
}
.pr-2, .px-2 {
    padding-right: 0.5rem !important;
}
.pb-2, .py-2 {
    padding-bottom: 0.5rem !important;
}
.pl-2, .px-2 {
    padding-left: 0.5rem !important;
}
.p-3 {
    padding: 1rem !important;
}
.pt-3, .py-3 {
    padding-top: 1rem !important;
}
.pr-3, .px-3 {
    padding-right: 1rem !important;
}
.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}
.pl-3, .px-3 {
    padding-left: 1rem !important;
}
.p-4 {
    padding: 1.5rem !important;
}
.pt-4, .py-4 {
    padding-top: 1.5rem !important;
}
.pr-4, .px-4 {
    padding-right: 1.5rem !important;
}
.pb-4, .py-4 {
    padding-bottom: 1.5rem !important;
}
.pl-4, .px-4 {
    padding-left: 1.5rem !important;
}
.p-5 {
    padding: 2rem !important;
}
.pt-5, .py-5 {
    padding-top: 2rem !important;
}
.pr-5, .px-5 {
    padding-right: 2rem !important;
}
.pb-5, .py-5 {
    padding-bottom: 2rem !important;
}
.pl-5, .px-5 {
    padding-left: 2rem !important;
}
.p-6 {
    padding: 3rem !important;
}
.pt-6, .py-6 {
    padding-top: 3rem !important;
}
.pr-6, .px-6 {
    padding-right: 3rem !important;
}
.pb-6, .py-6 {
    padding-bottom: 3rem !important;
}
.pl-6, .px-6 {
    padding-left: 3rem !important;
}
.p-7 {
    padding: 4rem !important;
}
.pt-7, .py-7 {
    padding-top: 4rem !important;
}
.pr-7, .px-7 {
    padding-right: 4rem !important;
}
.pb-7, .py-7 {
    padding-bottom: 4rem !important;
}
.pl-7, .px-7 {
    padding-left: 4rem !important;
}
.p-8 {
    padding: 5rem !important;
}
.pt-8, .py-8 {
    padding-top: 5rem !important;
}
.pr-8, .px-8 {
    padding-right: 5rem !important;
}
.pb-8, .py-8 {
    padding-bottom: 5rem !important;
}
.pl-8, .px-8 {
    padding-left: 5rem !important;
}
.p-9 {
    padding: 6rem !important;
}
.pt-9, .py-9 {
    padding-top: 6rem !important;
}
.pr-9, .px-9 {
    padding-right: 6rem !important;
}
.pb-9, .py-9 {
    padding-bottom: 6rem !important;
}
.pl-9, .px-9 {
    padding-left: 6rem !important;
}
.p-10 {
    padding: 7rem !important;
}
.pt-10, .py-10 {
    padding-top: 7rem !important;
}
.pr-10, .px-10 {
    padding-right: 7rem !important;
}
.pb-10, .py-10 {
    padding-bottom: 7rem !important;
}
.pl-10, .px-10 {
    padding-left: 7rem !important;
}
.p-11 {
    padding: 8rem !important;
}
.pt-11, .py-11 {
    padding-top: 8rem !important;
}
.pr-11, .px-11 {
    padding-right: 8rem !important;
}
.pb-11, .py-11 {
    padding-bottom: 8rem !important;
}
.pl-11, .px-11 {
    padding-left: 8rem !important;
}
.p-12 {
    padding: 9rem !important;
}
.pt-12, .py-12 {
    padding-top: 9rem !important;
}
.pr-12, .px-12 {
    padding-right: 9rem !important;
}
.pb-12, .py-12 {
    padding-bottom: 9rem !important;
}
.pl-12, .px-12 {
    padding-left: 9rem !important;
}
.p-13 {
    padding: 10rem !important;
}
.pt-13, .py-13 {
    padding-top: 10rem !important;
}
.pr-13, .px-13 {
    padding-right: 10rem !important;
}
.pb-13, .py-13 {
    padding-bottom: 10rem !important;
}
.pl-13, .px-13 {
    padding-left: 10rem !important;
}

.pt-5px, .py-5px {
    padding-top: 5px !important;
}
.pr-5px, .px-5px {
    padding-right: 5px !important;
}
.pb-5px, .py-5px {
    padding-bottom: 5px !important;
}
.pl-5px, .px-5px {
    padding-left: 5px !important;
}
.pt-10px, .py-10px {
    padding-top: 10px !important;
}
.pr-10px, .px-10px {
    padding-right: 10px !important;
}
.pb-10px, .py-10px {
    padding-bottom: 10px !important;
}
.pl-10px, .px-10px {
    padding-left: 10px !important;
}



@media (min-width: 360px) {
.m-xs-0 {
    margin: 0 !important;
}
.mt-xs-0, .my-xs-0 {
    margin-top: 0 !important;
}
.mr-xs-0, .mx-xs-0 {
    margin-right: 0 !important;
}
.mb-xs-0, .my-xs-0 {
    margin-bottom: 0 !important;
}
.ml-xs-0, .mx-xs-0 {
    margin-left: 0 !important;
}
.m-xs-1 {
    margin: 0.25rem !important;
}
.mt-xs-1, .my-xs-1 {
    margin-top: 0.25rem !important;
}
.mr-xs-1, .mx-xs-1 {
    margin-right: 0.25rem !important;
}
.mb-xs-1, .my-xs-1 {
    margin-bottom: 0.25rem !important;
}
.ml-xs-1, .mx-xs-1 {
    margin-left: 0.25rem !important;
}
.m-xs-2 {
    margin: 0.5rem !important;
}
.mt-xs-2, .my-xs-2 {
    margin-top: 0.5rem !important;
}
.mr-xs-2, .mx-xs-2 {
    margin-right: 0.5rem !important;
}
.mb-xs-2, .my-xs-2 {
    margin-bottom: 0.5rem !important;
}
.ml-xs-2, .mx-xs-2 {
    margin-left: 0.5rem !important;
}
.m-xs-3 {
    margin: 1rem !important;
}
.mt-xs-3, .my-xs-3 {
    margin-top: 1rem !important;
}
.mr-xs-3, .mx-xs-3 {
    margin-right: 1rem !important;
}
.mb-xs-3, .my-xs-3 {
    margin-bottom: 1rem !important;
}
.ml-xs-3, .mx-xs-3 {
    margin-left: 1rem !important;
}
.m-xs-4 {
    margin: 1.5rem !important;
}
.mt-xs-4, .my-xs-4 {
    margin-top: 1.5rem !important;
}
.mr-xs-4, .mx-xs-4 {
    margin-right: 1.5rem !important;
}
.mb-xs-4, .my-xs-4 {
    margin-bottom: 1.5rem !important;
}
.ml-xs-4, .mx-xs-4 {
    margin-left: 1.5rem !important;
}
.m-xs-5 {
    margin: 2rem !important;
}
.mt-xs-5, .my-xs-5 {
    margin-top: 2rem !important;
}
.mr-xs-5, .mx-xs-5 {
    margin-right: 2rem !important;
}
.mb-xs-5, .my-xs-5 {
    margin-bottom: 2rem !important;
}
.ml-xs-5, .mx-xs-5 {
    margin-left: 2rem !important;
}
.m-xs-6 {
    margin: 3rem !important;
}
.mt-xs-6, .my-xs-6 {
    margin-top: 3rem !important;
}
.mr-xs-6, .mx-xs-6 {
    margin-right: 3rem !important;
}
.mb-xs-6, .my-xs-6 {
    margin-bottom: 3rem !important;
}
.ml-xs-6, .mx-xs-6 {
    margin-left: 3rem !important;
}
.m-xs-7 {
    margin: 4rem !important;
}
.mt-xs-7, .my-xs-7 {
    margin-top: 4rem !important;
}
.mr-xs-7, .mx-xs-7 {
    margin-right: 4rem !important;
}
.mb-xs-7, .my-xs-7 {
    margin-bottom: 4rem !important;
}
.ml-xs-7, .mx-xs-7 {
    margin-left: 4rem !important;
}
.m-xs-8 {
    margin: 5rem !important;
}
.mt-xs-8, .my-xs-8 {
    margin-top: 5rem !important;
}
.mr-xs-8, .mx-xs-8 {
    margin-right: 5rem !important;
}
.mb-xs-8, .my-xs-8 {
    margin-bottom: 5rem !important;
}
.ml-xs-8, .mx-xs-8 {
    margin-left: 5rem !important;
}
.m-xs-9 {
    margin: 6rem !important;
}
.mt-xs-9, .my-xs-9 {
    margin-top: 6rem !important;
}
.mr-xs-9, .mx-xs-9 {
    margin-right: 6rem !important;
}
.mb-xs-9, .my-xs-9 {
    margin-bottom: 6rem !important;
}
.ml-xs-9, .mx-xs-9 {
    margin-left: 6rem !important;
}
.m-xs-10 {
    margin: 7rem !important;
}
.mt-xs-10, .my-xs-10 {
    margin-top: 7rem !important;
}
.mr-xs-10, .mx-xs-10 {
    margin-right: 7rem !important;
}
.mb-xs-10, .my-xs-10 {
    margin-bottom: 7rem !important;
}
.ml-xs-10, .mx-xs-10 {
    margin-left: 7rem !important;
}
.m-xs-11 {
    margin: 8rem !important;
}
.mt-xs-11, .my-xs-11 {
    margin-top: 8rem !important;
}
.mr-xs-11, .mx-xs-11 {
    margin-right: 8rem !important;
}
.mb-xs-11, .my-xs-11 {
    margin-bottom: 8rem !important;
}
.ml-xs-11, .mx-xs-11 {
    margin-left: 8rem !important;
}
.m-xs-12 {
    margin: 9rem !important;
}
.mt-xs-12, .my-xs-12 {
    margin-top: 9rem !important;
}
.mr-xs-12, .mx-xs-12 {
    margin-right: 9rem !important;
}
.mb-xs-12, .my-xs-12 {
    margin-bottom: 9rem !important;
}
.ml-xs-12, .mx-xs-12 {
    margin-left: 9rem !important;
}
.m-xs-13 {
    margin: 10rem !important;
}
.mt-xs-13, .my-xs-13 {
    margin-top: 10rem !important;
}
.mr-xs-13, .mx-xs-13 {
    margin-right: 10rem !important;
}
.mb-xs-13, .my-xs-13 {
    margin-bottom: 10rem !important;
}
.ml-xs-13, .mx-xs-13 {
    margin-left: 10rem !important;
}
.m-xs-14 {
    margin: 11rem !important;
}
.mt-xs-14, .my-xs-14 {
    margin-top: 11rem !important;
}
.mr-xs-14, .mx-xs-14 {
    margin-right: 11rem !important;
}
.mb-xs-14, .my-xs-14 {
    margin-bottom: 11rem !important;
}
.ml-xs-14, .mx-xs-14 {
    margin-left: 11rem !important;
}
.m-xs-15 {
    margin: 12rem !important;
}
.mt-xs-15, .my-xs-15 {
    margin-top: 12rem !important;
}
.mr-xs-15, .mx-xs-15 {
    margin-right: 12rem !important;
}
.mb-xs-15, .my-xs-15 {
    margin-bottom: 12rem !important;
}
.ml-xs-15, .mx-xs-15 {
    margin-left: 12rem !important;
}
.m-xs-16 {
    margin: 13rem !important;
}
.mt-xs-16, .my-xs-16 {
    margin-top: 13rem !important;
}
.mr-xs-16, .mx-xs-16 {
    margin-right: 13rem !important;
}
.mb-xs-16, .my-xs-16 {
    margin-bottom: 13rem !important;
}
.ml-xs-16, .mx-xs-16 {
    margin-left: 13rem !important;
}
.p-xs-0 {
    padding: 0 !important;
}
.pt-xs-0, .py-xs-0 {
    padding-top: 0 !important;
}
.pr-xs-0, .px-xs-0 {
    padding-right: 0 !important;
}
.pb-xs-0, .py-xs-0 {
    padding-bottom: 0 !important;
}
.pl-xs-0, .px-xs-0 {
    padding-left: 0 !important;
}
.p-xs-1 {
    padding: 0.25rem !important;
}
.pt-xs-1, .py-xs-1 {
    padding-top: 0.25rem !important;
}
.pr-xs-1, .px-xs-1 {
    padding-right: 0.25rem !important;
}
.pb-xs-1, .py-xs-1 {
    padding-bottom: 0.25rem !important;
}
.pl-xs-1, .px-xs-1 {
    padding-left: 0.25rem !important;
}
.p-xs-2 {
    padding: 0.5rem !important;
}
.pt-xs-2, .py-xs-2 {
    padding-top: 0.5rem !important;
}
.pr-xs-2, .px-xs-2 {
    padding-right: 0.5rem !important;
}
.pb-xs-2, .py-xs-2 {
    padding-bottom: 0.5rem !important;
}
.pl-xs-2, .px-xs-2 {
    padding-left: 0.5rem !important;
}
.p-xs-3 {
    padding: 1rem !important;
}
.pt-xs-3, .py-xs-3 {
    padding-top: 1rem !important;
}
.pr-xs-3, .px-xs-3 {
    padding-right: 1rem !important;
}
.pb-xs-3, .py-xs-3 {
    padding-bottom: 1rem !important;
}
.pl-xs-3, .px-xs-3 {
    padding-left: 1rem !important;
}
.p-xs-4 {
    padding: 1.5rem !important;
}
.pt-xs-4, .py-xs-4 {
    padding-top: 1.5rem !important;
}
.pr-xs-4, .px-xs-4 {
    padding-right: 1.5rem !important;
}
.pb-xs-4, .py-xs-4 {
    padding-bottom: 1.5rem !important;
}
.pl-xs-4, .px-xs-4 {
    padding-left: 1.5rem !important;
}
.p-xs-5 {
    padding: 2rem !important;
}
.pt-xs-5, .py-xs-5 {
    padding-top: 2rem !important;
}
.pr-xs-5, .px-xs-5 {
    padding-right: 2rem !important;
}
.pb-xs-5, .py-xs-5 {
    padding-bottom: 2rem !important;
}
.pl-xs-5, .px-xs-5 {
    padding-left: 2rem !important;
}
.p-xs-6 {
    padding: 3rem !important;
}
.pt-xs-6, .py-xs-6 {
    padding-top: 3rem !important;
}
.pr-xs-6, .px-xs-6 {
    padding-right: 3rem !important;
}
.pb-xs-6, .py-xs-6 {
    padding-bottom: 3rem !important;
}
.pl-xs-6, .px-xs-6 {
    padding-left: 3rem !important;
}
.p-xs-7 {
    padding: 4rem !important;
}
.pt-xs-7, .py-xs-7 {
    padding-top: 4rem !important;
}
.pr-xs-7, .px-xs-7 {
    padding-right: 4rem !important;
}
.pb-xs-7, .py-xs-7 {
    padding-bottom: 4rem !important;
}
.pl-xs-7, .px-xs-7 {
    padding-left: 4rem !important;
}
.p-xs-8 {
    padding: 5rem !important;
}
.pt-xs-8, .py-xs-8 {
    padding-top: 5rem !important;
}
.pr-xs-8, .px-xs-8 {
    padding-right: 5rem !important;
}
.pb-xs-8, .py-xs-8 {
    padding-bottom: 5rem !important;
}
.pl-xs-8, .px-xs-8 {
    padding-left: 5rem !important;
}
.p-xs-9 {
    padding: 6rem !important;
}
.pt-xs-9, .py-xs-9 {
    padding-top: 6rem !important;
}
.pr-xs-9, .px-xs-9 {
    padding-right: 6rem !important;
}
.pb-xs-9, .py-xs-9 {
    padding-bottom: 6rem !important;
}
.pl-xs-9, .px-xs-9 {
    padding-left: 6rem !important;
}
.p-xs-10 {
    padding: 7rem !important;
}
.pt-xs-10, .py-xs-10 {
    padding-top: 7rem !important;
}
.pr-xs-10, .px-xs-10 {
    padding-right: 7rem !important;
}
.pb-xs-10, .py-xs-10 {
    padding-bottom: 7rem !important;
}
.pl-xs-10, .px-xs-10 {
    padding-left: 7rem !important;
}
.p-xs-11 {
    padding: 8rem !important;
}
.pt-xs-11, .py-xs-11 {
    padding-top: 8rem !important;
}
.pr-xs-11, .px-xs-11 {
    padding-right: 8rem !important;
}
.pb-xs-11, .py-xs-11 {
    padding-bottom: 8rem !important;
}
.pl-xs-11, .px-xs-11 {
    padding-left: 8rem !important;
}
.p-xs-12 {
    padding: 9rem !important;
}
.pt-xs-12, .py-xs-12 {
    padding-top: 9rem !important;
}
.pr-xs-12, .px-xs-12 {
    padding-right: 9rem !important;
}
.pb-xs-12, .py-xs-12 {
    padding-bottom: 9rem !important;
}
.pl-xs-12, .px-xs-12 {
    padding-left: 9rem !important;
}
.p-xs-13 {
    padding: 10rem !important;
}
.pt-xs-13, .py-xs-13 {
    padding-top: 10rem !important;
}
.pr-xs-13, .px-xs-13 {
    padding-right: 10rem !important;
}
.pb-xs-13, .py-xs-13 {
    padding-bottom: 10rem !important;
}
.pl-xs-13, .px-xs-13 {
    padding-left: 10rem !important;
}
.p-xs-14 {
    margin: 11rem !important;
}
.pt-xs-14, .py-xs-14 {
    margin-top: 11rem !important;
}
.pr-xs-14, .px-xs-14 {
    margin-right: 11rem !important;
}
.pb-xs-14, .py-xs-14 {
    margin-bottom: 11rem !important;
}
.pl-xs-14, .px-xs-14 {
    margin-left: 11rem !important;
}
.p-xs-15 {
    margin: 12rem !important;
}
.pt-xs-15, .py-xs-15 {
    margin-top: 12rem !important;
}
.pr-xs-15, .px-xs-15 {
    margin-right: 12rem !important;
}
.pb-xs-15, .py-xs-15 {
    margin-bottom: 12rem !important;
}
.pl-xs-15, .px-xs-15 {
    margin-left: 12rem !important;
}
.p-xs-16 {
    margin: 13rem !important;
}
.pt-xs-16, .py-xs-16 {
    margin-top: 13rem !important;
}
.pr-xs-16, .px-xs-16 {
    margin-right: 13rem !important;
}
.pb-xs-16, .py-xs-16 {
    margin-bottom: 13rem !important;
}
.pl-xs-16, .px-xs-16 {
    margin-left: 13rem !important;
}
}

@media (min-width: 576px) {
.m-sm-0 {
    margin: 0 !important;
}
.mt-sm-0, .my-sm-0 {
    margin-top: 0 !important;
}
.mr-sm-0, .mx-sm-0 {
    margin-right: 0 !important;
}
.mb-sm-0, .my-sm-0 {
    margin-bottom: 0 !important;
}
.ml-sm-0, .mx-sm-0 {
    margin-left: 0 !important;
}
.m-sm-1 {
    margin: 0.25rem !important;
}
.mt-sm-1, .my-sm-1 {
    margin-top: 0.25rem !important;
}
.mr-sm-1, .mx-sm-1 {
    margin-right: 0.25rem !important;
}
.mb-sm-1, .my-sm-1 {
    margin-bottom: 0.25rem !important;
}
.ml-sm-1, .mx-sm-1 {
    margin-left: 0.25rem !important;
}
.m-sm-2 {
    margin: 0.5rem !important;
}
.mt-sm-2, .my-sm-2 {
    margin-top: 0.5rem !important;
}
.mr-sm-2, .mx-sm-2 {
    margin-right: 0.5rem !important;
}
.mb-sm-2, .my-sm-2 {
    margin-bottom: 0.5rem !important;
}
.ml-sm-2, .mx-sm-2 {
    margin-left: 0.5rem !important;
}
.m-sm-3 {
    margin: 1rem !important;
}
.mt-sm-3, .my-sm-3 {
    margin-top: 1rem !important;
}
.mr-sm-3, .mx-sm-3 {
    margin-right: 1rem !important;
}
.mb-sm-3, .my-sm-3 {
    margin-bottom: 1rem !important;
}
.ml-sm-3, .mx-sm-3 {
    margin-left: 1rem !important;
}
.m-sm-4 {
    margin: 1.5rem !important;
}
.mt-sm-4, .my-sm-4 {
    margin-top: 1.5rem !important;
}
.mr-sm-4, .mx-sm-4 {
    margin-right: 1.5rem !important;
}
.mb-sm-4, .my-sm-4 {
    margin-bottom: 1.5rem !important;
}
.ml-sm-4, .mx-sm-4 {
    margin-left: 1.5rem !important;
}
.m-sm-5 {
    margin: 2rem !important;
}
.mt-sm-5, .my-sm-5 {
    margin-top: 2rem !important;
}
.mr-sm-5, .mx-sm-5 {
    margin-right: 2rem !important;
}
.mb-sm-5, .my-sm-5 {
    margin-bottom: 2rem !important;
}
.ml-sm-5, .mx-sm-5 {
    margin-left: 2rem !important;
}
.m-sm-6 {
    margin: 3rem !important;
}
.mt-sm-6, .my-sm-6 {
    margin-top: 3rem !important;
}
.mr-sm-6, .mx-sm-6 {
    margin-right: 3rem !important;
}
.mb-sm-6, .my-sm-6 {
    margin-bottom: 3rem !important;
}
.ml-sm-6, .mx-sm-6 {
    margin-left: 3rem !important;
}
.m-sm-7 {
    margin: 4rem !important;
}
.mt-sm-7, .my-sm-7 {
    margin-top: 4rem !important;
}
.mr-sm-7, .mx-sm-7 {
    margin-right: 4rem !important;
}
.mb-sm-7, .my-sm-7 {
    margin-bottom: 4rem !important;
}
.ml-sm-7, .mx-sm-7 {
    margin-left: 4rem !important;
}
.m-sm-8 {
    margin: 5rem !important;
}
.mt-sm-8, .my-sm-8 {
    margin-top: 5rem !important;
}
.mr-sm-8, .mx-sm-8 {
    margin-right: 5rem !important;
}
.mb-sm-8, .my-sm-8 {
    margin-bottom: 5rem !important;
}
.ml-sm-8, .mx-sm-8 {
    margin-left: 5rem !important;
}
.m-sm-9 {
    margin: 6rem !important;
}
.mt-sm-9, .my-sm-9 {
    margin-top: 6rem !important;
}
.mr-sm-9, .mx-sm-9 {
    margin-right: 6rem !important;
}
.mb-sm-9, .my-sm-9 {
    margin-bottom: 6rem !important;
}
.ml-sm-9, .mx-sm-9 {
    margin-left: 6rem !important;
}
.m-sm-10 {
    margin: 7rem !important;
}
.mt-sm-10, .my-sm-10 {
    margin-top: 7rem !important;
}
.mr-sm-10, .mx-sm-10 {
    margin-right: 7rem !important;
}
.mb-sm-10, .my-sm-10 {
    margin-bottom: 7rem !important;
}
.ml-sm-10, .mx-sm-10 {
    margin-left: 7rem !important;
}
.m-sm-11 {
    margin: 8rem !important;
}
.mt-sm-11, .my-sm-11 {
    margin-top: 8rem !important;
}
.mr-sm-11, .mx-sm-11 {
    margin-right: 8rem !important;
}
.mb-sm-11, .my-sm-11 {
    margin-bottom: 8rem !important;
}
.ml-sm-11, .mx-sm-11 {
    margin-left: 8rem !important;
}
.m-sm-12 {
    margin: 9rem !important;
}
.mt-sm-12, .my-sm-12 {
    margin-top: 9rem !important;
}
.mr-sm-12, .mx-sm-12 {
    margin-right: 9rem !important;
}
.mb-sm-12, .my-sm-12 {
    margin-bottom: 9rem !important;
}
.ml-sm-12, .mx-sm-12 {
    margin-left: 9rem !important;
}
.m-sm-13 {
    margin: 10rem !important;
}
.mt-sm-13, .my-sm-13 {
    margin-top: 10rem !important;
}
.mr-sm-13, .mx-sm-13 {
    margin-right: 10rem !important;
}
.mb-sm-13, .my-sm-13 {
    margin-bottom: 10rem !important;
}
.ml-sm-13, .mx-sm-13 {
    margin-left: 10rem !important;
}
.m-sm-14 {
    margin: 11rem !important;
}
.mt-sm-14, .my-sm-14 {
    margin-top: 11rem !important;
}
.mr-sm-14, .mx-sm-14 {
    margin-right: 11rem !important;
}
.mb-sm-14, .my-sm-14 {
    margin-bottom: 11rem !important;
}
.ml-sm-14, .mx-sm-14 {
    margin-left: 11rem !important;
}
.m-sm-15 {
    margin: 12rem !important;
}
.mt-sm-15, .my-sm-15 {
    margin-top: 12rem !important;
}
.mr-sm-15, .mx-sm-15 {
    margin-right: 12rem !important;
}
.mb-sm-15, .my-sm-15 {
    margin-bottom: 12rem !important;
}
.ml-sm-15, .mx-sm-15 {
    margin-left: 12rem !important;
}
.m-sm-16 {
    margin: 13rem !important;
}
.mt-sm-16, .my-sm-16 {
    margin-top: 13rem !important;
}
.mr-sm-16, .mx-sm-16 {
    margin-right: 13rem !important;
}
.mb-sm-16, .my-sm-16 {
    margin-bottom: 13rem !important;
}
.ml-sm-16, .mx-sm-16 {
    margin-left: 13rem !important;
}
.p-sm-0 {
    padding: 0 !important;
}
.pt-sm-0, .py-sm-0 {
    padding-top: 0 !important;
}
.pr-sm-0, .px-sm-0 {
    padding-right: 0 !important;
}
.pb-sm-0, .py-sm-0 {
    padding-bottom: 0 !important;
}
.pl-sm-0, .px-sm-0 {
    padding-left: 0 !important;
}
.p-sm-1 {
    padding: 0.25rem !important;
}
.pt-sm-1, .py-sm-1 {
    padding-top: 0.25rem !important;
}
.pr-sm-1, .px-sm-1 {
    padding-right: 0.25rem !important;
}
.pb-sm-1, .py-sm-1 {
    padding-bottom: 0.25rem !important;
}
.pl-sm-1, .px-sm-1 {
    padding-left: 0.25rem !important;
}
.p-sm-2 {
    padding: 0.5rem !important;
}
.pt-sm-2, .py-sm-2 {
    padding-top: 0.5rem !important;
}
.pr-sm-2, .px-sm-2 {
    padding-right: 0.5rem !important;
}
.pb-sm-2, .py-sm-2 {
    padding-bottom: 0.5rem !important;
}
.pl-sm-2, .px-sm-2 {
    padding-left: 0.5rem !important;
}
.p-sm-3 {
    padding: 1rem !important;
}
.pt-sm-3, .py-sm-3 {
    padding-top: 1rem !important;
}
.pr-sm-3, .px-sm-3 {
    padding-right: 1rem !important;
}
.pb-sm-3, .py-sm-3 {
    padding-bottom: 1rem !important;
}
.pl-sm-3, .px-sm-3 {
    padding-left: 1rem !important;
}
.p-sm-4 {
    padding: 1.5rem !important;
}
.pt-sm-4, .py-sm-4 {
    padding-top: 1.5rem !important;
}
.pr-sm-4, .px-sm-4 {
    padding-right: 1.5rem !important;
}
.pb-sm-4, .py-sm-4 {
    padding-bottom: 1.5rem !important;
}
.pl-sm-4, .px-sm-4 {
    padding-left: 1.5rem !important;
}
.p-sm-5 {
    padding: 2rem !important;
}
.pt-sm-5, .py-sm-5 {
    padding-top: 2rem !important;
}
.pr-sm-5, .px-sm-5 {
    padding-right: 2rem !important;
}
.pb-sm-5, .py-sm-5 {
    padding-bottom: 2rem !important;
}
.pl-sm-5, .px-sm-5 {
    padding-left: 2rem !important;
}
.p-sm-6 {
    padding: 3rem !important;
}
.pt-sm-6, .py-sm-6 {
    padding-top: 3rem !important;
}
.pr-sm-6, .px-sm-6 {
    padding-right: 3rem !important;
}
.pb-sm-6, .py-sm-6 {
    padding-bottom: 3rem !important;
}
.pl-sm-6, .px-sm-6 {
    padding-left: 3rem !important;
}
.p-sm-7 {
    padding: 4rem !important;
}
.pt-sm-7, .py-sm-7 {
    padding-top: 4rem !important;
}
.pr-sm-7, .px-sm-7 {
    padding-right: 4rem !important;
}
.pb-sm-7, .py-sm-7 {
    padding-bottom: 4rem !important;
}
.pl-sm-7, .px-sm-7 {
    padding-left: 4rem !important;
}
.p-sm-8 {
    padding: 5rem !important;
}
.pt-sm-8, .py-sm-8 {
    padding-top: 5rem !important;
}
.pr-sm-8, .px-sm-8 {
    padding-right: 5rem !important;
}
.pb-sm-8, .py-sm-8 {
    padding-bottom: 5rem !important;
}
.pl-sm-8, .px-sm-8 {
    padding-left: 5rem !important;
}
.p-sm-9 {
    padding: 6rem !important;
}
.pt-sm-9, .py-sm-9 {
    padding-top: 6rem !important;
}
.pr-sm-9, .px-sm-9 {
    padding-right: 6rem !important;
}
.pb-sm-9, .py-sm-9 {
    padding-bottom: 6rem !important;
}
.pl-sm-9, .px-sm-9 {
    padding-left: 6rem !important;
}
.p-sm-10 {
    padding: 7rem !important;
}
.pt-sm-10, .py-sm-10 {
    padding-top: 7rem !important;
}
.pr-sm-10, .px-sm-10 {
    padding-right: 7rem !important;
}
.pb-sm-10, .py-sm-10 {
    padding-bottom: 7rem !important;
}
.pl-sm-10, .px-sm-10 {
    padding-left: 7rem !important;
}
.p-sm-11 {
    padding: 8rem !important;
}
.pt-sm-11, .py-sm-11 {
    padding-top: 8rem !important;
}
.pr-sm-11, .px-sm-11 {
    padding-right: 8rem !important;
}
.pb-sm-11, .py-sm-11 {
    padding-bottom: 8rem !important;
}
.pl-sm-11, .px-sm-11 {
    padding-left: 8rem !important;
}
.p-sm-12 {
    padding: 9rem !important;
}
.pt-sm-12, .py-sm-12 {
    padding-top: 9rem !important;
}
.pr-sm-12, .px-sm-12 {
    padding-right: 9rem !important;
}
.pb-sm-12, .py-sm-12 {
    padding-bottom: 9rem !important;
}
.pl-sm-12, .px-sm-12 {
    padding-left: 9rem !important;
}
.p-sm-13 {
    padding: 10rem !important;
}
.pt-sm-13, .py-sm-13 {
    padding-top: 10rem !important;
}
.pr-sm-13, .px-sm-13 {
    padding-right: 10rem !important;
}
.pb-sm-13, .py-sm-13 {
    padding-bottom: 10rem !important;
}
.pl-sm-13, .px-sm-13 {
    padding-left: 10rem !important;
}
.p-sm-14 {
    margin: 11rem !important;
}
.pt-sm-14, .py-sm-14 {
    margin-top: 11rem !important;
}
.pr-sm-14, .px-sm-14 {
    margin-right: 11rem !important;
}
.pb-sm-14, .py-sm-14 {
    margin-bottom: 11rem !important;
}
.pl-sm-14, .px-sm-14 {
    margin-left: 11rem !important;
}
.p-sm-15 {
    margin: 12rem !important;
}
.pt-sm-15, .py-sm-15 {
    margin-top: 12rem !important;
}
.pr-sm-15, .px-sm-15 {
    margin-right: 12rem !important;
}
.pb-sm-15, .py-sm-15 {
    margin-bottom: 12rem !important;
}
.pl-sm-15, .px-sm-15 {
    margin-left: 12rem !important;
}
.p-sm-16 {
    margin: 13rem !important;
}
.pt-sm-16, .py-sm-16 {
    margin-top: 13rem !important;
}
.pr-sm-16, .px-sm-16 {
    margin-right: 13rem !important;
}
.pb-sm-16, .py-sm-16 {
    margin-bottom: 13rem !important;
}
.pl-sm-16, .px-sm-16 {
    margin-left: 13rem !important;
}
}

@media (min-width: 768px) {
.m-md-0 {
    margin: 0 !important;
}
.mt-md-0, .my-md-0 {
    margin-top: 0 !important;
}
.mr-md-0, .mx-md-0 {
    margin-right: 0 !important;
}
.mb-md-0, .my-md-0 {
    margin-bottom: 0 !important;
}
.ml-md-0, .mx-md-0 {
    margin-left: 0 !important;
}
.m-md-1 {
    margin: 0.25rem !important;
}
.mt-md-1, .my-md-1 {
    margin-top: 0.25rem !important;
}
.mr-md-1, .mx-md-1 {
    margin-right: 0.25rem !important;
}
.mb-md-1, .my-md-1 {
    margin-bottom: 0.25rem !important;
}
.ml-md-1, .mx-md-1 {
    margin-left: 0.25rem !important;
}
.m-md-2 {
    margin: 0.5rem !important;
}
.mt-md-2, .my-md-2 {
    margin-top: 0.5rem !important;
}
.mr-md-2, .mx-md-2 {
    margin-right: 0.5rem !important;
}
.mb-md-2, .my-md-2 {
    margin-bottom: 0.5rem !important;
}
.ml-md-2, .mx-md-2 {
    margin-left: 0.5rem !important;
}
.m-md-3 {
    margin: 1rem !important;
}
.mt-md-3, .my-md-3 {
    margin-top: 1rem !important;
}
.mr-md-3, .mx-md-3 {
    margin-right: 1rem !important;
}
.mb-md-3, .my-md-3 {
    margin-bottom: 1rem !important;
}
.ml-md-3, .mx-md-3 {
    margin-left: 1rem !important;
}
.m-md-4 {
    margin: 1.5rem !important;
}
.mt-md-4, .my-md-4 {
    margin-top: 1.5rem !important;
}
.mr-md-4, .mx-md-4 {
    margin-right: 1.5rem !important;
}
.mb-md-4, .my-md-4 {
    margin-bottom: 1.5rem !important;
}
.ml-md-4, .mx-md-4 {
    margin-left: 1.5rem !important;
}
.m-md-5 {
    margin: 2rem !important;
}
.mt-md-5, .my-md-5 {
    margin-top: 2rem !important;
}
.mr-md-5, .mx-md-5 {
    margin-right: 2rem !important;
}
.mb-md-5, .my-md-5 {
    margin-bottom: 2rem !important;
}
.ml-md-5, .mx-md-5 {
    margin-left: 2rem !important;
}
.m-md-6 {
    margin: 3rem !important;
}
.mt-md-6, .my-md-6 {
    margin-top: 3rem !important;
}
.mr-md-6, .mx-md-6 {
    margin-right: 3rem !important;
}
.mb-md-6, .my-md-6 {
    margin-bottom: 3rem !important;
}
.ml-md-6, .mx-md-6 {
    margin-left: 3rem !important;
}
.m-md-7 {
    margin: 4rem !important;
}
.mt-md-7, .my-md-7 {
    margin-top: 4rem !important;
}
.mr-md-7, .mx-md-7 {
    margin-right: 4rem !important;
}
.mb-md-7, .my-md-7 {
    margin-bottom: 4rem !important;
}
.ml-md-7, .mx-md-7 {
    margin-left: 4rem !important;
}
.m-md-8 {
    margin: 5rem !important;
}
.mt-md-8, .my-md-8 {
    margin-top: 5rem !important;
}
.mr-md-8, .mx-md-8 {
    margin-right: 5rem !important;
}
.mb-md-8, .my-md-8 {
    margin-bottom: 5rem !important;
}
.ml-md-8, .mx-md-8 {
    margin-left: 5rem !important;
}
.m-md-9 {
    margin: 6rem !important;
}
.mt-md-9, .my-md-9 {
    margin-top: 6rem !important;
}
.mr-md-9, .mx-md-9 {
    margin-right: 6rem !important;
}
.mb-md-9, .my-md-9 {
    margin-bottom: 6rem !important;
}
.ml-md-9, .mx-md-9 {
    margin-left: 6rem !important;
}
.m-md-10 {
    margin: 7rem !important;
}
.mt-md-10, .my-md-10 {
    margin-top: 7rem !important;
}
.mr-md-10, .mx-md-10 {
    margin-right: 7rem !important;
}
.mb-md-10, .my-md-10 {
    margin-bottom: 7rem !important;
}
.ml-md-10, .mx-md-10 {
    margin-left: 7rem !important;
}
.m-md-11 {
    margin: 8rem !important;
}
.mt-md-11, .my-md-11 {
    margin-top: 8rem !important;
}
.mr-md-11, .mx-md-11 {
    margin-right: 8rem !important;
}
.mb-md-11, .my-md-11 {
    margin-bottom: 8rem !important;
}
.ml-md-11, .mx-md-11 {
    margin-left: 8rem !important;
}
.m-md-12 {
    margin: 9rem !important;
}
.mt-md-12, .my-md-12 {
    margin-top: 9rem !important;
}
.mr-md-12, .mx-md-12 {
    margin-right: 9rem !important;
}
.mb-md-12, .my-md-12 {
    margin-bottom: 9rem !important;
}
.ml-md-12, .mx-md-12 {
    margin-left: 9rem !important;
}
.m-md-13 {
    margin: 10rem !important;
}
.mt-md-13, .my-md-13 {
    margin-top: 10rem !important;
}
.mr-md-13, .mx-md-13 {
    margin-right: 10rem !important;
}
.mb-md-13, .my-md-13 {
    margin-bottom: 10rem !important;
}
.ml-md-13, .mx-md-13 {
    margin-left: 10rem !important;
}
.m-md-14 {
    margin: 11rem !important;
}
.mt-md-14, .my-md-14 {
    margin-top: 11rem !important;
}
.mr-md-14, .mx-md-14 {
    margin-right: 11rem !important;
}
.mb-md-14, .my-md-14 {
    margin-bottom: 11rem !important;
}
.ml-md-14, .mx-md-14 {
    margin-left: 11rem !important;
}
.m-md-15 {
    margin: 12rem !important;
}
.mt-md-15, .my-md-15 {
    margin-top: 12rem !important;
}
.mr-md-15, .mx-md-15 {
    margin-right: 12rem !important;
}
.mb-md-15, .my-md-15 {
    margin-bottom: 12rem !important;
}
.ml-md-15, .mx-md-15 {
    margin-left: 12rem !important;
}
.m-md-16 {
    margin: 13rem !important;
}
.mt-md-16, .my-md-16 {
    margin-top: 13rem !important;
}
.mr-md-16, .mx-md-16 {
    margin-right: 13rem !important;
}
.mb-md-16, .my-md-16 {
    margin-bottom: 13rem !important;
}
.ml-md-16, .mx-md-16 {
    margin-left: 13rem !important;
}
.p-md-0 {
    padding: 0 !important;
}
.pt-md-0, .py-md-0 {
    padding-top: 0 !important;
}
.pr-md-0, .px-md-0 {
    padding-right: 0 !important;
}
.pb-md-0, .py-md-0 {
    padding-bottom: 0 !important;
}
.pl-md-0, .px-md-0 {
    padding-left: 0 !important;
}
.p-md-1 {
    padding: 0.25rem !important;
}
.pt-md-1, .py-md-1 {
    padding-top: 0.25rem !important;
}
.pr-md-1, .px-md-1 {
    padding-right: 0.25rem !important;
}
.pb-md-1, .py-md-1 {
    padding-bottom: 0.25rem !important;
}
.pl-md-1, .px-md-1 {
    padding-left: 0.25rem !important;
}
.p-md-2 {
    padding: 0.5rem !important;
}
.pt-md-2, .py-md-2 {
    padding-top: 0.5rem !important;
}
.pr-md-2, .px-md-2 {
    padding-right: 0.5rem !important;
}
.pb-md-2, .py-md-2 {
    padding-bottom: 0.5rem !important;
}
.pl-md-2, .px-md-2 {
    padding-left: 0.5rem !important;
}
.p-md-3 {
    padding: 1rem !important;
}
.pt-md-3, .py-md-3 {
    padding-top: 1rem !important;
}
.pr-md-3, .px-md-3 {
    padding-right: 1rem !important;
}
.pb-md-3, .py-md-3 {
    padding-bottom: 1rem !important;
}
.pl-md-3, .px-md-3 {
    padding-left: 1rem !important;
}
.p-md-4 {
    padding: 1.5rem !important;
}
.pt-md-4, .py-md-4 {
    padding-top: 1.5rem !important;
}
.pr-md-4, .px-md-4 {
    padding-right: 1.5rem !important;
}
.pb-md-4, .py-md-4 {
    padding-bottom: 1.5rem !important;
}
.pl-md-4, .px-md-4 {
    padding-left: 1.5rem !important;
}
.p-md-5 {
    padding: 2rem !important;
}
.pt-md-5, .py-md-5 {
    padding-top: 2rem !important;
}
.pr-md-5, .px-md-5 {
    padding-right: 2rem !important;
}
.pb-md-5, .py-md-5 {
    padding-bottom: 2rem !important;
}
.pl-md-5, .px-md-5 {
    padding-left: 2rem !important;
}
.p-md-6 {
    padding: 3rem !important;
}
.pt-md-6, .py-md-6 {
    padding-top: 3rem !important;
}
.pr-md-6, .px-md-6 {
    padding-right: 3rem !important;
}
.pb-md-6, .py-md-6 {
    padding-bottom: 3rem !important;
}
.pl-md-6, .px-md-6 {
    padding-left: 3rem !important;
}
.p-md-7 {
    padding: 4rem !important;
}
.pt-md-7, .py-md-7 {
    padding-top: 4rem !important;
}
.pr-md-7, .px-md-7 {
    padding-right: 4rem !important;
}
.pb-md-7, .py-md-7 {
    padding-bottom: 4rem !important;
}
.pl-md-7, .px-md-7 {
    padding-left: 4rem !important;
}
.p-md-8 {
    padding: 5rem !important;
}
.pt-md-8, .py-md-8 {
    padding-top: 5rem !important;
}
.pr-md-8, .px-md-8 {
    padding-right: 5rem !important;
}
.pb-md-8, .py-md-8 {
    padding-bottom: 5rem !important;
}
.pl-md-8, .px-md-8 {
    padding-left: 5rem !important;
}
.p-md-9 {
    padding: 6rem !important;
}
.pt-md-9, .py-md-9 {
    padding-top: 6rem !important;
}
.pr-md-9, .px-md-9 {
    padding-right: 6rem !important;
}
.pb-md-9, .py-md-9 {
    padding-bottom: 6rem !important;
}
.pl-md-9, .px-md-9 {
    padding-left: 6rem !important;
}
.p-md-10 {
    padding: 7rem !important;
}
.pt-md-10, .py-md-10 {
    padding-top: 7rem !important;
}
.pr-md-10, .px-md-10 {
    padding-right: 7rem !important;
}
.pb-md-10, .py-md-10 {
    padding-bottom: 7rem !important;
}
.pl-md-10, .px-md-10 {
    padding-left: 7rem !important;
}
.p-md-11 {
    padding: 8rem !important;
}
.pt-md-11, .py-md-11 {
    padding-top: 8rem !important;
}
.pr-md-11, .px-md-11 {
    padding-right: 8rem !important;
}
.pb-md-11, .py-md-11 {
    padding-bottom: 8rem !important;
}
.pl-md-11, .px-md-11 {
    padding-left: 8rem !important;
}
.p-md-12 {
    padding: 9rem !important;
}
.pt-md-12, .py-md-12 {
    padding-top: 9rem !important;
}
.pr-md-12, .px-md-12 {
    padding-right: 9rem !important;
}
.pb-md-12, .py-md-12 {
    padding-bottom: 9rem !important;
}
.pl-md-12, .px-md-12 {
    padding-left: 9rem !important;
}
.p-md-13 {
    padding: 10rem !important;
}
.pt-md-13, .py-md-13 {
    padding-top: 10rem !important;
}
.pr-md-13, .px-md-13 {
    padding-right: 10rem !important;
}
.pb-md-13, .py-md-13 {
    padding-bottom: 10rem !important;
}
.pl-md-13, .px-md-13 {
    padding-left: 10rem !important;
}
.p-md-14 {
    margin: 11rem !important;
}
.pt-md-14, .py-md-14 {
    margin-top: 11rem !important;
}
.pr-md-14, .px-md-14 {
    margin-right: 11rem !important;
}
.pb-md-14, .py-md-14 {
    margin-bottom: 11rem !important;
}
.pl-md-14, .px-md-14 {
    margin-left: 11rem !important;
}
.p-md-15 {
    margin: 12rem !important;
}
.pt-md-15, .py-md-15 {
    margin-top: 12rem !important;
}
.pr-md-15, .px-md-15 {
    margin-right: 12rem !important;
}
.pb-md-15, .py-md-15 {
    margin-bottom: 12rem !important;
}
.pl-md-15, .px-md-15 {
    margin-left: 12rem !important;
}
.p-md-16 {
    margin: 13rem !important;
}
.pt-md-16, .py-md-16 {
    margin-top: 13rem !important;
}
.pr-md-16, .px-md-16 {
    margin-right: 13rem !important;
}
.pb-md-16, .py-md-16 {
    margin-bottom: 13rem !important;
}
.pl-md-16, .px-md-16 {
    margin-left: 13rem !important;
}
}

@media (min-width: 992px) {
.m-lg-0 {
    margin: 0 !important;
}
.mt-lg-0, .my-lg-0 {
    margin-top: 0 !important;
}
.mr-lg-0, .mx-lg-0 {
    margin-right: 0 !important;
}
.mb-lg-0, .my-lg-0 {
    margin-bottom: 0 !important;
}
.ml-lg-0, .mx-lg-0 {
    margin-left: 0 !important;
}
.m-lg-1 {
    margin: 0.25rem !important;
}
.mt-lg-1, .my-lg-1 {
    margin-top: 0.25rem !important;
}
.mr-lg-1, .mx-lg-1 {
    margin-right: 0.25rem !important;
}
.mb-lg-1, .my-lg-1 {
    margin-bottom: 0.25rem !important;
}
.ml-lg-1, .mx-lg-1 {
    margin-left: 0.25rem !important;
}
.m-lg-2 {
    margin: 0.5rem !important;
}
.mt-lg-2, .my-lg-2 {
    margin-top: 0.5rem !important;
}
.mr-lg-2, .mx-lg-2 {
    margin-right: 0.5rem !important;
}
.mb-lg-2, .my-lg-2 {
    margin-bottom: 0.5rem !important;
}
.ml-lg-2, .mx-lg-2 {
    margin-left: 0.5rem !important;
}
.m-lg-3 {
    margin: 1rem !important;
}
.mt-lg-3, .my-lg-3 {
    margin-top: 1rem !important;
}
.mr-lg-3, .mx-lg-3 {
    margin-right: 1rem !important;
}
.mb-lg-3, .my-lg-3 {
    margin-bottom: 1rem !important;
}
.ml-lg-3, .mx-lg-3 {
    margin-left: 1rem !important;
}
.m-lg-4 {
    margin: 1.5rem !important;
}
.mt-lg-4, .my-lg-4 {
    margin-top: 1.5rem !important;
}
.mr-lg-4, .mx-lg-4 {
    margin-right: 1.5rem !important;
}
.mb-lg-4, .my-lg-4 {
    margin-bottom: 1.5rem !important;
}
.ml-lg-4, .mx-lg-4 {
    margin-left: 1.5rem !important;
}
.m-lg-5 {
    margin: 2rem !important;
}
.mt-lg-5, .my-lg-5 {
    margin-top: 2rem !important;
}
.mr-lg-5, .mx-lg-5 {
    margin-right: 2rem !important;
}
.mb-lg-5, .my-lg-5 {
    margin-bottom: 2rem !important;
}
.ml-lg-5, .mx-lg-5 {
    margin-left: 2rem !important;
}
.m-lg-6 {
    margin: 3rem !important;
}
.mt-lg-6, .my-lg-6 {
    margin-top: 3rem !important;
}
.mr-lg-6, .mx-lg-6 {
    margin-right: 3rem !important;
}
.mb-lg-6, .my-lg-6 {
    margin-bottom: 3rem !important;
}
.ml-lg-6, .mx-lg-6 {
    margin-left: 3rem !important;
}
.m-lg-7 {
    margin: 4rem !important;
}
.mt-lg-7, .my-lg-7 {
    margin-top: 4rem !important;
}
.mr-lg-7, .mx-lg-7 {
    margin-right: 4rem !important;
}
.mb-lg-7, .my-lg-7 {
    margin-bottom: 4rem !important;
}
.ml-lg-7, .mx-lg-7 {
    margin-left: 4rem !important;
}
.m-lg-8 {
    margin: 5rem !important;
}
.mt-lg-8, .my-lg-8 {
    margin-top: 5rem !important;
}
.mr-lg-8, .mx-lg-8 {
    margin-right: 5rem !important;
}
.mb-lg-8, .my-lg-8 {
    margin-bottom: 5rem !important;
}
.ml-lg-8, .mx-lg-8 {
    margin-left: 5rem !important;
}
.m-lg-9 {
    margin: 6rem !important;
}
.mt-lg-9, .my-lg-9 {
    margin-top: 6rem !important;
}
.mr-lg-9, .mx-lg-9 {
    margin-right: 6rem !important;
}
.mb-lg-9, .my-lg-9 {
    margin-bottom: 6rem !important;
}
.ml-lg-9, .mx-lg-9 {
    margin-left: 6rem !important;
}
.m-lg-10 {
    margin: 7rem !important;
}
.mt-lg-10, .my-lg-10 {
    margin-top: 7rem !important;
}
.mr-lg-10, .mx-lg-10 {
    margin-right: 7rem !important;
}
.mb-lg-10, .my-lg-10 {
    margin-bottom: 7rem !important;
}
.ml-lg-10, .mx-lg-10 {
    margin-left: 7rem !important;
}
.m-lg-11 {
    margin: 8rem !important;
}
.mt-lg-11, .my-lg-11 {
    margin-top: 8rem !important;
}
.mr-lg-11, .mx-lg-11 {
    margin-right: 8rem !important;
}
.mb-lg-11, .my-lg-11 {
    margin-bottom: 8rem !important;
}
.ml-lg-11, .mx-lg-11 {
    margin-left: 8rem !important;
}
.m-lg-12 {
    margin: 9rem !important;
}
.mt-lg-12, .my-lg-12 {
    margin-top: 9rem !important;
}
.mr-lg-12, .mx-lg-12 {
    margin-right: 9rem !important;
}
.mb-lg-12, .my-lg-12 {
    margin-bottom: 9rem !important;
}
.ml-lg-12, .mx-lg-12 {
    margin-left: 9rem !important;
}
.m-lg-13 {
    margin: 10rem !important;
}
.mt-lg-13, .my-lg-13 {
    margin-top: 10rem !important;
}
.mr-lg-13, .mx-lg-13 {
    margin-right: 10rem !important;
}
.mb-lg-13, .my-lg-13 {
    margin-bottom: 10rem !important;
}
.ml-lg-13, .mx-lg-13 {
    margin-left: 10rem !important;
}
.m-lg-14 {
    margin: 11rem !important;
}
.mt-lg-14, .my-lg-14 {
    margin-top: 11rem !important;
}
.mr-lg-14, .mx-lg-14 {
    margin-right: 11rem !important;
}
.mb-lg-14, .my-lg-14 {
    margin-bottom: 11rem !important;
}
.ml-lg-14, .mx-lg-14 {
    margin-left: 11rem !important;
}
.m-lg-15 {
    margin: 12rem !important;
}
.mt-lg-15, .my-lg-15 {
    margin-top: 12rem !important;
}
.mr-lg-15, .mx-lg-15 {
    margin-right: 12rem !important;
}
.mb-lg-15, .my-lg-15 {
    margin-bottom: 12rem !important;
}
.ml-lg-15, .mx-lg-15 {
    margin-left: 12rem !important;
}
.m-lg-16 {
    margin: 13rem !important;
}
.mt-lg-16, .my-lg-16 {
    margin-top: 13rem !important;
}
.mr-lg-16, .mx-lg-16 {
    margin-right: 13rem !important;
}
.mb-lg-16, .my-lg-16 {
    margin-bottom: 13rem !important;
}
.ml-lg-16, .mx-lg-16 {
    margin-left: 13rem !important;
}
.p-lg-0 {
    padding: 0 !important;
}
.pt-lg-0, .py-lg-0 {
    padding-top: 0 !important;
}
.pr-lg-0, .px-lg-0 {
    padding-right: 0 !important;
}
.pb-lg-0, .py-lg-0 {
    padding-bottom: 0 !important;
}
.pl-lg-0, .px-lg-0 {
    padding-left: 0 !important;
}
.p-lg-1 {
    padding: 0.25rem !important;
}
.pt-lg-1, .py-lg-1 {
    padding-top: 0.25rem !important;
}
.pr-lg-1, .px-lg-1 {
    padding-right: 0.25rem !important;
}
.pb-lg-1, .py-lg-1 {
    padding-bottom: 0.25rem !important;
}
.pl-lg-1, .px-lg-1 {
    padding-left: 0.25rem !important;
}
.p-lg-2 {
    padding: 0.5rem !important;
}
.pt-lg-2, .py-lg-2 {
    padding-top: 0.5rem !important;
}
.pr-lg-2, .px-lg-2 {
    padding-right: 0.5rem !important;
}
.pb-lg-2, .py-lg-2 {
    padding-bottom: 0.5rem !important;
}
.pl-lg-2, .px-lg-2 {
    padding-left: 0.5rem !important;
}
.p-lg-3 {
    padding: 1rem !important;
}
.pt-lg-3, .py-lg-3 {
    padding-top: 1rem !important;
}
.pr-lg-3, .px-lg-3 {
    padding-right: 1rem !important;
}
.pb-lg-3, .py-lg-3 {
    padding-bottom: 1rem !important;
}
.pl-lg-3, .px-lg-3 {
    padding-left: 1rem !important;
}
.p-lg-4 {
    padding: 1.5rem !important;
}
.pt-lg-4, .py-lg-4 {
    padding-top: 1.5rem !important;
}
.pr-lg-4, .px-lg-4 {
    padding-right: 1.5rem !important;
}
.pb-lg-4, .py-lg-4 {
    padding-bottom: 1.5rem !important;
}
.pl-lg-4, .px-lg-4 {
    padding-left: 1.5rem !important;
}
.p-lg-5 {
    padding: 2rem !important;
}
.pt-lg-5, .py-lg-5 {
    padding-top: 2rem !important;
}
.pr-lg-5, .px-lg-5 {
    padding-right: 2rem !important;
}
.pb-lg-5, .py-lg-5 {
    padding-bottom: 2rem !important;
}
.pl-lg-5, .px-lg-5 {
    padding-left: 2rem !important;
}
.p-lg-6 {
    padding: 3rem !important;
}
.pt-lg-6, .py-lg-6 {
    padding-top: 3rem !important;
}
.pr-lg-6, .px-lg-6 {
    padding-right: 3rem !important;
}
.pb-lg-6, .py-lg-6 {
    padding-bottom: 3rem !important;
}
.pl-lg-6, .px-lg-6 {
    padding-left: 3rem !important;
}
.p-lg-7 {
    padding: 4rem !important;
}
.pt-lg-7, .py-lg-7 {
    padding-top: 4rem !important;
}
.pr-lg-7, .px-lg-7 {
    padding-right: 4rem !important;
}
.pb-lg-7, .py-lg-7 {
    padding-bottom: 4rem !important;
}
.pl-lg-7, .px-lg-7 {
    padding-left: 4rem !important;
}
.p-lg-8 {
    padding: 5rem !important;
}
.pt-lg-8, .py-lg-8 {
    padding-top: 5rem !important;
}
.pr-lg-8, .px-lg-8 {
    padding-right: 5rem !important;
}
.pb-lg-8, .py-lg-8 {
    padding-bottom: 5rem !important;
}
.pl-lg-8, .px-lg-8 {
    padding-left: 5rem !important;
}
.p-lg-9 {
    padding: 6rem !important;
}
.pt-lg-9, .py-lg-9 {
    padding-top: 6rem !important;
}
.pr-lg-9, .px-lg-9 {
    padding-right: 6rem !important;
}
.pb-lg-9, .py-lg-9 {
    padding-bottom: 6rem !important;
}
.pl-lg-9, .px-lg-9 {
    padding-left: 6rem !important;
}
.p-lg-10 {
    padding: 7rem !important;
}
.pt-lg-10, .py-lg-10 {
    padding-top: 7rem !important;
}
.pr-lg-10, .px-lg-10 {
    padding-right: 7rem !important;
}
.pb-lg-10, .py-lg-10 {
    padding-bottom: 7rem !important;
}
.pl-lg-10, .px-lg-10 {
    padding-left: 7rem !important;
}
.p-lg-11 {
    padding: 8rem !important;
}
.pt-lg-11, .py-lg-11 {
    padding-top: 8rem !important;
}
.pr-lg-11, .px-lg-11 {
    padding-right: 8rem !important;
}
.pb-lg-11, .py-lg-11 {
    padding-bottom: 8rem !important;
}
.pl-lg-11, .px-lg-11 {
    padding-left: 8rem !important;
}
.p-lg-12 {
    padding: 9rem !important;
}
.pt-lg-12, .py-lg-12 {
    padding-top: 9rem !important;
}
.pr-lg-12, .px-lg-12 {
    padding-right: 9rem !important;
}
.pb-lg-12, .py-lg-12 {
    padding-bottom: 9rem !important;
}
.pl-lg-12, .px-lg-12 {
    padding-left: 9rem !important;
}
.p-lg-13 {
    padding: 10rem !important;
}
.pt-lg-13, .py-lg-13 {
    padding-top: 10rem !important;
}
.pr-lg-13, .px-lg-13 {
    padding-right: 10rem !important;
}
.pb-lg-13, .py-lg-13 {
    padding-bottom: 10rem !important;
}
.pl-lg-13, .px-lg-13 {
    padding-left: 10rem !important;
}
.p-lg-14 {
    margin: 11rem !important;
}
.pt-lg-14, .py-lg-14 {
    margin-top: 11rem !important;
}
.pr-lg-14, .px-lg-14 {
    margin-right: 11rem !important;
}
.pb-lg-14, .py-lg-14 {
    margin-bottom: 11rem !important;
}
.pl-lg-14, .px-lg-14 {
    margin-left: 11rem !important;
}
.p-lg-15 {
    margin: 12rem !important;
}
.pt-lg-15, .py-lg-15 {
    margin-top: 12rem !important;
}
.pr-lg-15, .px-lg-15 {
    margin-right: 12rem !important;
}
.pb-lg-15, .py-lg-15 {
    margin-bottom: 12rem !important;
}
.pl-lg-15, .px-lg-15 {
    margin-left: 12rem !important;
}
.p-lg-16 {
    margin: 13rem !important;
}
.pt-lg-16, .py-lg-16 {
    margin-top: 13rem !important;
}
.pr-lg-16, .px-lg-16 {
    margin-right: 13rem !important;
}
.pb-lg-16, .py-lg-16 {
    margin-bottom: 13rem !important;
}
.pl-lg-16, .px-lg-16 {
    margin-left: 13rem !important;
}
}

@media (min-width: 1200px) {
.m-xl-0 {
    margin: 0 !important;
}
.mt-xl-0, .my-xl-0 {
    margin-top: 0 !important;
}
.mr-xl-0, .mx-xl-0 {
    margin-right: 0 !important;
}
.mb-xl-0, .my-xl-0 {
    margin-bottom: 0 !important;
}
.ml-xl-0, .mx-xl-0 {
    margin-left: 0 !important;
}
.m-xl-1 {
    margin: 0.25rem !important;
}
.mt-xl-1, .my-xl-1 {
    margin-top: 0.25rem !important;
}
.mr-xl-1, .mx-xl-1 {
    margin-right: 0.25rem !important;
}
.mb-xl-1, .my-xl-1 {
    margin-bottom: 0.25rem !important;
}
.ml-xl-1, .mx-xl-1 {
    margin-left: 0.25rem !important;
}
.m-xl-2 {
    margin: 0.5rem !important;
}
.mt-xl-2, .my-xl-2 {
    margin-top: 0.5rem !important;
}
.mr-xl-2, .mx-xl-2 {
    margin-right: 0.5rem !important;
}
.mb-xl-2, .my-xl-2 {
    margin-bottom: 0.5rem !important;
}
.ml-xl-2, .mx-xl-2 {
    margin-left: 0.5rem !important;
}
.m-xl-3 {
    margin: 1rem !important;
}
.mt-xl-3, .my-xl-3 {
    margin-top: 1rem !important;
}
.mr-xl-3, .mx-xl-3 {
    margin-right: 1rem !important;
}
.mb-xl-3, .my-xl-3 {
    margin-bottom: 1rem !important;
}
.ml-xl-3, .mx-xl-3 {
    margin-left: 1rem !important;
}
.m-xl-4 {
    margin: 1.5rem !important;
}
.mt-xl-4, .my-xl-4 {
    margin-top: 1.5rem !important;
}
.mr-xl-4, .mx-xl-4 {
    margin-right: 1.5rem !important;
}
.mb-xl-4, .my-xl-4 {
    margin-bottom: 1.5rem !important;
}
.ml-xl-4, .mx-xl-4 {
    margin-left: 1.5rem !important;
}
.m-xl-5 {
    margin: 2rem !important;
}
.mt-xl-5, .my-xl-5 {
    margin-top: 2rem !important;
}
.mr-xl-5, .mx-xl-5 {
    margin-right: 2rem !important;
}
.mb-xl-5, .my-xl-5 {
    margin-bottom: 2rem !important;
}
.ml-xl-5, .mx-xl-5 {
    margin-left: 2rem !important;
}
.m-xl-6 {
    margin: 3rem !important;
}
.mt-xl-6, .my-xl-6 {
    margin-top: 3rem !important;
}
.mr-xl-6, .mx-xl-6 {
    margin-right: 3rem !important;
}
.mb-xl-6, .my-xl-6 {
    margin-bottom: 3rem !important;
}
.ml-xl-6, .mx-xl-6 {
    margin-left: 3rem !important;
}
.m-xl-7 {
    margin: 4rem !important;
}
.mt-xl-7, .my-xl-7 {
    margin-top: 4rem !important;
}
.mr-xl-7, .mx-xl-7 {
    margin-right: 4rem !important;
}
.mb-xl-7, .my-xl-7 {
    margin-bottom: 4rem !important;
}
.ml-xl-7, .mx-xl-7 {
    margin-left: 4rem !important;
}
.m-xl-8 {
    margin: 5rem !important;
}
.mt-xl-8, .my-xl-8 {
    margin-top: 5rem !important;
}
.mr-xl-8, .mx-xl-8 {
    margin-right: 5rem !important;
}
.mb-xl-8, .my-xl-8 {
    margin-bottom: 5rem !important;
}
.ml-xl-8, .mx-xl-8 {
    margin-left: 5rem !important;
}
.m-xl-9 {
    margin: 6rem !important;
}
.mt-xl-9, .my-xl-9 {
    margin-top: 6rem !important;
}
.mr-xl-9, .mx-xl-9 {
    margin-right: 6rem !important;
}
.mb-xl-9, .my-xl-9 {
    margin-bottom: 6rem !important;
}
.ml-xl-9, .mx-xl-9 {
    margin-left: 6rem !important;
}
.m-xl-10 {
    margin: 7rem !important;
}
.mt-xl-10, .my-xl-10 {
    margin-top: 7rem !important;
}
.mr-xl-10, .mx-xl-10 {
    margin-right: 7rem !important;
}
.mb-xl-10, .my-xl-10 {
    margin-bottom: 7rem !important;
}
.ml-xl-10, .mx-xl-10 {
    margin-left: 7rem !important;
}
.m-xl-11 {
    margin: 8rem !important;
}
.mt-xl-11, .my-xl-11 {
    margin-top: 8rem !important;
}
.mr-xl-11, .mx-xl-11 {
    margin-right: 8rem !important;
}
.mb-xl-11, .my-xl-11 {
    margin-bottom: 8rem !important;
}
.ml-xl-11, .mx-xl-11 {
    margin-left: 8rem !important;
}
.m-xl-12 {
    margin: 9rem !important;
}
.mt-xl-12, .my-xl-12 {
    margin-top: 9rem !important;
}
.mr-xl-12, .mx-xl-12 {
    margin-right: 9rem !important;
}
.mb-xl-12, .my-xl-12 {
    margin-bottom: 9rem !important;
}
.ml-xl-12, .mx-xl-12 {
    margin-left: 9rem !important;
}
.m-xl-13 {
    margin: 10rem !important;
}
.mt-xl-13, .my-xl-13 {
    margin-top: 10rem !important;
}
.mr-xl-13, .mx-xl-13 {
    margin-right: 10rem !important;
}
.mb-xl-13, .my-xl-13 {
    margin-bottom: 10rem !important;
}
.ml-xl-13, .mx-xl-13 {
    margin-left: 10rem !important;
}
.m-xl-14 {
    margin: 11rem !important;
}
.mt-xl-14, .my-xl-14 {
    margin-top: 11rem !important;
}
.mr-xl-14, .mx-xl-14 {
    margin-right: 11rem !important;
}
.mb-xl-14, .my-xl-14 {
    margin-bottom: 11rem !important;
}
.ml-xl-14, .mx-xl-14 {
    margin-left: 11rem !important;
}
.m-xl-15 {
    margin: 12rem !important;
}
.mt-xl-15, .my-xl-15 {
    margin-top: 12rem !important;
}
.mr-xl-15, .mx-xl-15 {
    margin-right: 12rem !important;
}
.mb-xl-15, .my-xl-15 {
    margin-bottom: 12rem !important;
}
.ml-xl-15, .mx-xl-15 {
    margin-left: 12rem !important;
}
.m-xl-16 {
    margin: 13rem !important;
}
.mt-xl-16, .my-xl-16 {
    margin-top: 13rem !important;
}
.mr-xl-16, .mx-xl-16 {
    margin-right: 13rem !important;
}
.mb-xl-16, .my-xl-16 {
    margin-bottom: 13rem !important;
}
.ml-xl-16, .mx-xl-16 {
    margin-left: 13rem !important;
}
.p-xl-0 {
    padding: 0 !important;
}
.pt-xl-0, .py-xl-0 {
    padding-top: 0 !important;
}
.pr-xl-0, .px-xl-0 {
    padding-right: 0 !important;
}
.pb-xl-0, .py-xl-0 {
    padding-bottom: 0 !important;
}
.pl-xl-0, .px-xl-0 {
    padding-left: 0 !important;
}
.p-xl-1 {
    padding: 0.25rem !important;
}
.pt-xl-1, .py-xl-1 {
    padding-top: 0.25rem !important;
}
.pr-xl-1, .px-xl-1 {
    padding-right: 0.25rem !important;
}
.pb-xl-1, .py-xl-1 {
    padding-bottom: 0.25rem !important;
}
.pl-xl-1, .px-xl-1 {
    padding-left: 0.25rem !important;
}
.p-xl-2 {
    padding: 0.5rem !important;
}
.pt-xl-2, .py-xl-2 {
    padding-top: 0.5rem !important;
}
.pr-xl-2, .px-xl-2 {
    padding-right: 0.5rem !important;
}
.pb-xl-2, .py-xl-2 {
    padding-bottom: 0.5rem !important;
}
.pl-xl-2, .px-xl-2 {
    padding-left: 0.5rem !important;
}
.p-xl-3 {
    padding: 1rem !important;
}
.pt-xl-3, .py-xl-3 {
    padding-top: 1rem !important;
}
.pr-xl-3, .px-xl-3 {
    padding-right: 1rem !important;
}
.pb-xl-3, .py-xl-3 {
    padding-bottom: 1rem !important;
}
.pl-xl-3, .px-xl-3 {
    padding-left: 1rem !important;
}
.p-xl-4 {
    padding: 1.5rem !important;
}
.pt-xl-4, .py-xl-4 {
    padding-top: 1.5rem !important;
}
.pr-xl-4, .px-xl-4 {
    padding-right: 1.5rem !important;
}
.pb-xl-4, .py-xl-4 {
    padding-bottom: 1.5rem !important;
}
.pl-xl-4, .px-xl-4 {
    padding-left: 1.5rem !important;
}
.p-xl-5 {
    padding: 2rem !important;
}
.pt-xl-5, .py-xl-5 {
    padding-top: 2rem !important;
}
.pr-xl-5, .px-xl-5 {
    padding-right: 2rem !important;
}
.pb-xl-5, .py-xl-5 {
    padding-bottom: 2rem !important;
}
.pl-xl-5, .px-xl-5 {
    padding-left: 2rem !important;
}
.p-xl-6 {
    padding: 3rem !important;
}
.pt-xl-6, .py-xl-6 {
    padding-top: 3rem !important;
}
.pr-xl-6, .px-xl-6 {
    padding-right: 3rem !important;
}
.pb-xl-6, .py-xl-6 {
    padding-bottom: 3rem !important;
}
.pl-xl-6, .px-xl-6 {
    padding-left: 3rem !important;
}
.p-xl-7 {
    padding: 4rem !important;
}
.pt-xl-7, .py-xl-7 {
    padding-top: 4rem !important;
}
.pr-xl-7, .px-xl-7 {
    padding-right: 4rem !important;
}
.pb-xl-7, .py-xl-7 {
    padding-bottom: 4rem !important;
}
.pl-xl-7, .px-xl-7 {
    padding-left: 4rem !important;
}
.p-xl-8 {
    padding: 5rem !important;
}
.pt-xl-8, .py-xl-8 {
    padding-top: 5rem !important;
}
.pr-xl-8, .px-xl-8 {
    padding-right: 5rem !important;
}
.pb-xl-8, .py-xl-8 {
    padding-bottom: 5rem !important;
}
.pl-xl-8, .px-xl-8 {
    padding-left: 5rem !important;
}
.p-xl-9 {
    padding: 6rem !important;
}
.pt-xl-9, .py-xl-9 {
    padding-top: 6rem !important;
}
.pr-xl-9, .px-xl-9 {
    padding-right: 6rem !important;
}
.pb-xl-9, .py-xl-9 {
    padding-bottom: 6rem !important;
}
.pl-xl-9, .px-xl-9 {
    padding-left: 6rem !important;
}
.p-xl-10 {
    padding: 7rem !important;
}
.pt-xl-10, .py-xl-10 {
    padding-top: 7rem !important;
}
.pr-xl-10, .px-xl-10 {
    padding-right: 7rem !important;
}
.pb-xl-10, .py-xl-10 {
    padding-bottom: 7rem !important;
}
.pl-xl-10, .px-xl-10 {
    padding-left: 7rem !important;
}
.p-xl-11 {
    padding: 8rem !important;
}
.pt-xl-11, .py-xl-11 {
    padding-top: 8rem !important;
}
.pr-xl-11, .px-xl-11 {
    padding-right: 8rem !important;
}
.pb-xl-11, .py-xl-11 {
    padding-bottom: 8rem !important;
}
.pl-xl-11, .px-xl-11 {
    padding-left: 8rem !important;
}
.p-xl-12 {
    padding: 9rem !important;
}
.pt-xl-12, .py-xl-12 {
    padding-top: 9rem !important;
}
.pr-xl-12, .px-xl-12 {
    padding-right: 9rem !important;
}
.pb-xl-12, .py-xl-12 {
    padding-bottom: 9rem !important;
}
.pl-xl-12, .px-xl-12 {
    padding-left: 9rem !important;
}
.p-xl-13 {
    padding: 10rem !important;
}
.pt-xl-13, .py-xl-13 {
    padding-top: 10rem !important;
}
.pr-xl-13, .px-xl-13 {
    padding-right: 10rem !important;
}
.pb-xl-13, .py-xl-13 {
    padding-bottom: 10rem !important;
}
.pl-xl-13, .px-xl-13 {
    padding-left: 10rem !important;
}
.p-xl-14 {
    margin: 11rem !important;
}
.pt-xl-14, .py-xl-14 {
    margin-top: 11rem !important;
}
.pr-xl-14, .px-xl-14 {
    margin-right: 11rem !important;
}
.pb-xl-14, .py-xl-14 {
    margin-bottom: 11rem !important;
}
.pl-xl-14, .px-xl-14 {
    margin-left: 11rem !important;
}
.p-xl-15 {
    margin: 12rem !important;
}
.pt-xl-15, .py-xl-15 {
    margin-top: 12rem !important;
}
.pr-xl-15, .px-xl-15 {
    margin-right: 12rem !important;
}
.pb-xl-15, .py-xl-15 {
    margin-bottom: 12rem !important;
}
.pl-xl-15, .px-xl-15 {
    margin-left: 12rem !important;
}
.p-xl-16 {
    margin: 13rem !important;
}
.pt-xl-16, .py-xl-16 {
    margin-top: 13rem !important;
}
.pr-xl-16, .px-xl-16 {
    margin-right: 13rem !important;
}
.pb-xl-16, .py-xl-16 {
    margin-bottom: 13rem !important;
}
.pl-xl-16, .px-xl-16 {
    margin-left: 13rem !important;
}
}

/*
====================================
Carousel animation slide
====================================
*/
/* FADE */
.carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition-duration: .6s;
    -o-transition-duration: .6s;
    transition-duration: .6s;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}
.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right {
    opacity: 0;
}
.carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/* FADE ZOOM */

.carousel-fade-zoom .carousel-item {
    opacity: 1;
}
.carousel-fade-zoom .carousel-item.active, .carousel-fade-zoom .carousel-item-next.carousel-item-left, .carousel-fade-zoom .carousel-item-prev.carousel-item-right {
    opacity: 1;
}
.carousel-fade-zoom .carousel-item-left, .carousel-fade-zoom .carousel-item-right {
    opacity: 1;
}
.carousel-fade-zoom .active.carousel-item-left, .carousel-fade-zoom .active.carousel-item-right {
    opacity: 1;
}
.carousel-fade-zoom .carousel-item img {
    opacity: 0 !important;
    -webkit-transform: scale(1.2) !important;
    -ms-transform: scale(1.2) !important;
    transform: scale(1.2) !important;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 1s ease !important;
    transition: opacity 0.5s ease, -webkit-transform 1s ease !important;
    -o-transition: transform 1s ease, opacity 0.5s ease !important;
    transition: transform 1s ease, opacity 0.5s ease !important;
    transition: transform 1s ease, opacity 0.5s ease, -webkit-transform 1s ease !important;
    left: 0 !important;
}
.carousel-fade-zoom .carousel-item .bg-overlay {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
.carousel-fade-zoom .carousel-item-next.carousel-item-left .bg-overlay, .carousel-fade-zoom .carousel-item-prev.carousel-item-right .bg-overlay, .carousel-fade-zoom .carousel-item.active .bg-overlay {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
.carousel-fade-zoom .active.carousel-item-left .bg-overlay, .carousel-fade-zoom .active.carousel-item-right .bg-overlay {
    opacity: 0;
}
.carousel-fade-zoom .carousel-item .carousel-caption {
    opacity: 1;
    /*        transition-duration: 1s;*/
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade-zoom .carousel-item-next.carousel-item-left img, .carousel-fade-zoom .carousel-item-prev.carousel-item-right img, .carousel-fade-zoom .carousel-item.active img {
    opacity: 1 !important;
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
}
.carousel-fade-zoom .carousel-item-next.carousel-item-left .carousel-caption, .carousel-fade-zoom .carousel-item-prev.carousel-item-right .carousel-caption, .carousel-fade-zoom .carousel-item.active .carousel-caption {
    opacity: 1;
}
.carousel-fade-zoom .active.carousel-item-left img, .carousel-fade-zoom .active.carousel-item-right img {
    opacity: 0 !important;
    -webkit-transform: scale(1.2) !important;
    -ms-transform: scale(1.2) !important;
    transform: scale(1.2) !important;
}
.carousel-fade-zoom .active.carousel-item-left .carousel-caption, .carousel-fade-zoom .active.carousel-item-right .carousel-caption {
    opacity: 1;
}
.carousel-fade-zoom .active.carousel-item-left img, .carousel-fade-zoom .active.carousel-item-prev img, .carousel-fade-zoom .carousel-item-next img, .carousel-fade-zoom .carousel-item-prev img, .carousel-fade-zoom .carousel-item.active img {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}
 @supports (transform-style:preserve-3d) {
.carousel-fade-zoom .active.carousel-item-left, .carousel-fade-zoom .active.carousel-item-prev, .carousel-fade-zoom .carousel-item-next, .carousel-fade-zoom .carousel-item-prev, .carousel-fade-zoom .carousel-item.active {
-webkit-transform:translate3d(0, 0, 0);
transform:translate3d(0, 0, 0)
}
}
/* FADE ZOOM PARALLAX */
.carousel-fade-zoom-parallax .carousel-item img {
    opacity: 0;
    -webkit-transform: scale(1.2) !important;
    -ms-transform: scale(1.2) !important;
    transform: scale(1.2) !important;
    -webkit-transition: opacity .5s ease, -webkit-transform 1s ease;
    transition: opacity .5s ease, -webkit-transform 1s ease;
    -o-transition: transform 1s ease, opacity .5s ease;
    transition: transform 1s ease, opacity .5s ease;
    transition: transform 1s ease, opacity .5s ease, -webkit-transform 1s ease;
    left: 0 !important;
}
.carousel-fade-zoom .carousel-item .carousel-caption {
    opacity: 0;
    /*    transition-duration: 1s;*/
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade-zoom .carousel-item-next.carousel-item-left img, .carousel-fade-zoom .carousel-item-prev.carousel-item-right img, .carousel-fade-zoom .carousel-item.active img {
    opacity: 1;
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
}
.carousel-fade-zoom .carousel-item-next.carousel-item-left .carousel-caption, .carousel-fade-zoom .carousel-item-prev.carousel-item-right .carousel-caption, .carousel-fade-zoom .carousel-item.active .carousel-caption {
    opacity: 1;
}
.carousel-fade-zoom .active.carousel-item-left img, .carousel-fade-zoom .active.carousel-item-right img {
    opacity: 0;
    -webkit-transform: scale(1.2) !important;
    -ms-transform: scale(1.2) !important;
    transform: scale(1.2) !important;
}
.carousel-fade-zoom .active.carousel-item-left .carousel-caption, .carousel-fade-zoom .active.carousel-item-right .carousel-caption {
    opacity: 0;
}
.carousel-fade-zoom .active.carousel-item-left img, .carousel-fade-zoom .active.carousel-item-prev img, .carousel-fade-zoom .carousel-item-next img, .carousel-fade-zoom .carousel-item-prev img, .carousel-fade-zoom .carousel-item.active img {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}
 @supports (transform-style:preserve-3d) {
.carousel-fade-zoom .active.carousel-item-left, .carousel-fade-zoom .active.carousel-item-prev, .carousel-fade-zoom .carousel-item-next, .carousel-fade-zoom .carousel-item-prev, .carousel-fade-zoom .carousel-item.active {
-webkit-transform:translate3d(0, 0, 0);
transform:translate3d(0, 0, 0)
}
}
/* SLIDE UP ZOOM */
.carousel-slideup-zoom .carousel-item img {
    opacity: 0;
    -webkit-transform: translateY(0%) !important;
    -ms-transform: translateY(0%) !important;
    transform: translateY(0%) !important;
    -webkit-transform: scale(1.5) !important;
    -ms-transform: scale(1.5) !important;
    transform: scale(1.5) !important;
    -webkit-transition-duration: 1s, 1s !important;
    -o-transition-duration: 1s, 1s !important;
    transition-duration: 1s, 1s !important;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}
.carousel-slideup-zoom .carousel-item .carousel-caption {
    opacity: 0;
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
.carousel-slideup-zoom .carousel-item-next.carousel-item-left img, .carousel-slideup-zoom .carousel-item-prev.carousel-item-right img, .carousel-slideup-zoom .carousel-item.active img {
    opacity: 1;
    -webkit-transform: translateY(0%) !important;
    -ms-transform: translateY(0%) !important;
    transform: translateY(0%) !important;
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
}
.carousel-slideup-zoom .carousel-item-next.carousel-item-left .carousel-caption, .carousel-slideup-zoom .carousel-item-prev.carousel-item-right .carousel-caption, .carousel-slideup-zoom .carousel-item.active .carousel-caption {
    opacity: 1;
}
.carousel-slideup-zoom .active.carousel-item-left img, .carousel-slideup-zoom .active.carousel-item-right img {
    opacity: 0;
    -webkit-transform: translateY(-100%) !important;
    -ms-transform: translateY(-100%) !important;
    transform: translateY(-100%) !important;
}
.carousel-slideup-zoom .active.carousel-item-left .carousel-caption, .carousel-slideup-zoom .active.carousel-item-right .carousel-caption {
    opacity: 0;
}
.carousel-slideup-zoom .active.carousel-item-left img, .carousel-slideup-zoom .active.carousel-item-prev img, .carousel-slideup-zoom .carousel-item-next img, .carousel-slideup-zoom .carousel-item-prev img, .carousel-slideup-zoom .carousel-item.active img {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
 @supports (transform-style:preserve-3d) {
.carousel-slideup-zoom .active.carousel-item-left, .carousel-slideup-zoom .active.carousel-item-prev, .carousel-slideup-zoom .carousel-item-next, .carousel-slideup-zoom .carousel-item-prev, .carousel-slideup-zoom .carousel-item.active {
-webkit-transform:translate3d(0, 0, 0);
transform:translate3d(0, 0, 0)
}
}
/* SLIDE VERTICAL */
.carousel-slide-vertical .carousel-item {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}
.carousel-slide-vertical .carousel-item.active {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}
.carousel-slide-vertical .carousel-item-next.carousel-item-left, .carousel-slide-vertical .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}
 @supports (transform-style: preserve-3d) {
 .carousel-slide-vertical .carousel-item-next.carousel-item-left, .carousel-slide-vertical .carousel-item-prev.carousel-item-right {
 -webkit-transform: translate3d(0, 0, 0);
 transform: translate3d(0, 0, 0);
}
}
.carousel-slide-vertical .carousel-item-next, .carousel-slide-vertical .active.carousel-item-right {
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
}
 @supports (transform-style: preserve-3d) {
 .carousel-slide-vertical .carousel-item-next, .carousel-slide-vertical .active.carousel-item-right {
 -webkit-transform: translate3d(0%, 100%, 0);
 transform: translate3d(0%, 100%, 0);
}
}
.carousel-slide-vertical .carousel-item-prev, .carousel-slide-vertical .active.carousel-item-left {
    -webkit-transform: translateX(0%, -100%);
    -ms-transform: translateX(0%, -100%);
    transform: translateX(0%, -100%);
}
 @supports (transform-style: preserve-3d) {
 .carousel-slide-vertical .carousel-item-prev, .carousel-slide-vertical .active.carousel-item-left {
 -webkit-transform: translate3d(0%, -100%, 0);
 transform: translate3d(0%, -100%, 0);
}
}
/* SLIDE HORIZONTAL LITTLE */
.carousel-slide-horizontal1 .carousel-item {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    opacity: 1;
}
.carousel-slide-horizontal1 .carousel-item.active {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
}
.carousel-slide-horizontal1 .carousel-item-next.carousel-item-left, .carousel-slide-horizontal1 .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}
 @supports (transform-style: preserve-3d) {
 .carousel-slide-horizontal1 .carousel-item-next.carousel-item-left, .carousel-slide-horizontal1 .carousel-item-prev.carousel-item-right {
 -webkit-transform: translate3d(0, 0, 0);
 transform: translate3d(0, 0, 0);
 opacity: 1;
}
}
.carousel-slide-horizontal1 .carousel-item-next, .carousel-slide-horizontal1 .active.carousel-item-right {
    -webkit-transform: translate(5%, 0%);
    -ms-transform: translate(5%, 0%);
    transform: translate(5%, 0%);
    opacity: 0;
}
 @supports (transform-style: preserve-3d) {
 .carousel-slide-horizontal1 .carousel-item-next, .carousel-slide-horizontal1 .active.carousel-item-right {
 -webkit-transform: translate3d(5%, 0%, 0);
 transform: translate3d(5%, 0%, 0);
 opacity: 0;
}
}
.carousel-slide-horizontal1 .carousel-item-prev, .carousel-slide-horizontal1 .active.carousel-item-left {
    -webkit-transform: translateX(-5%, 0%);
    -ms-transform: translateX(-5%, 0%);
    transform: translateX(-5%, 0%);
    opacity: 0;
}
 @supports (transform-style: preserve-3d) {
 .carousel-slide-horizontal1 .carousel-item-prev, .carousel-slide-horizontal1 .active.carousel-item-left {
 -webkit-transform: translate3d(-5%, 0%, 0);
 transform: translate3d(-5%, 0%, 0);
 opacity: 0;
}
}
