:root{
  --calc-basis: calc(100%); 
}

body > div, body > div > div {
  height: 100%;
}

html{
  font-size: 100%;
}

body, html {
height: 100%;
/* line-height: 1.2; */
margin: 0px;
}

body{
  font-size: 14px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

/* Fonts */

/* .font-1-normal{
  font-family: '';
}

.font-1-light{
  font-family: '';
}

.font-1-bold{
  font-family: '';
}

.font-2-normal{
  font-family: '';
}

.font-2-light{
  font-family: '';
}

.font-2-semibold{
  font-family: '';
}

.font-2-bold{
  font-family: '';
} */

/* Font Sizes */

.h7 {
  font-size: 14px;
}

.h6, h6 {
  font-size: 1rem;
}

.h5, h5 {
  font-size: 1.25rem;
}

.h4, h4 {
  font-size: 1.5rem;
}

.h3, h3 {
  font-size: 1.75rem;
}

.h2, h2 {
  font-size: 2rem;
}

.h1, h1 {
  font-size: 2.5rem;
}

.h1-1 {
  font-size: 3.5rem;
}

.h1-2 {
  font-size: 4.5rem;
}

.h1-3 {
  font-size: 5.5rem;
}




p {
  margin-top: 0;
  margin-bottom: 1rem;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

textarea {
  overflow: auto;
  resize: vertical;
}


legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #1b1e24;
}

.flex-parent{
  flex-basis: calc(var(--calc-basis) / 4) ;
}

.flex-child{
  flex-basis: calc(var(--calc-basis) / 2) ;
}

/*
==================================================
ALIGNS ITEMS, JUSTIFY CONTENT, ALIGN-SELF
==================================================
*/

/* Justify content */

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

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

.justify-center {
  justify-content: center !important;
}

.justify-between{
  justify-content: space-between !important;
}

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

/* Align items */

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

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

.align-baseline {
  align-items: baseline
}

.align-center {
  align-items: center !important;
}

.align-stretch {
  align-items: stretch !important;
}

/* Align self */

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

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

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

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

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

/* Align content */

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

/*
==================================================
CONTAINERS
==================================================
*/

.flex-main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: space-between;
  align-items: flex-start;
  min-height: 100%;
  /* height: 100%; */
  flex-wrap: nowrap;
}

.flex-main > * {
  width: 100%;
  box-sizing: border-box;
  flex-direction: row !important;
  /* flex-basis: 100%; */
}



.flex-body {
  display: flex;
  flex-wrap: wrap;
  /* flex: 0 1 78.125rem; */
  align-items: stretch;
  align-content: stretch;
  justify-content: center;
  justify-content: center;
  overflow: auto;
  box-sizing: border-box;
  margin: 0 auto;
  /* flex-basis: 100%; */
  height: 100%;
  flex: 1 1 auto;
  /* flex-wrap: wrap; */
}

.flex-body > .flex-section{


}

.flex-body-center {
  display: flex;
  flex-wrap: wrap;
  flex: 0 1 78.125rem;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center;
  overflow: auto;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 3rem 0;
}

.flex-body, .flex-main, .flex-main > .flex-container, .flex-main > .flex-container-fluid {
  /* min-height: 100%; */
  border: none !important;
}

.column > * {
  width: 100% !important;
  box-sizing: border-box;
}


.flex-column {
  flex-direction: column!important;
  flex-wrap: nowrap !important;
  flex-basis: 100%;
  display: flex;
  /* margin-right: -15px;
  margin-left: -15px; */
    padding-right: 15px;
    padding-left: 15px;
  /* width: auto; */
  width: 100%;
  flex: auto;
  /* margin: 0;
}

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

.flex-column-center {
  flex-direction: column!important;
  flex-wrap: nowrap !important;
  flex-basis: 100%;
  display: flex;
  align-items: center;
}

.flex-column-center-reverse {
  flex-direction: column-reverse!important;
  display: flex;
  align-items: center;
  flex-wrap: nowrap !important;
}

.flex-column-right {
  flex-direction: column!important;
  flex-wrap: nowrap !important;
  flex-basis: 100%;
  display: flex;
  align-items: flex-end;
}

.flex-column-right-reverse {
  flex-direction: column-reverse!important;
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap !important;
}

.flex-row {
  flex-direction: row!important;
  display: flex;
  flex-wrap: wrap;
  /* padding-right: 15px; */
  /* padding-left: 15px; */
  /* padding-top: 15px; */
  /* padding-bottom: 15px; */
  width: 100%;
  flex: auto;
  /* margin: 0 auto; */
}

.flex-row-reverse {
  flex-direction: row-reverse!important;
  display: flex;
  flex-wrap: wrap;
    padding-right: 15px;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  margin: 0 auto;
}

.flex{
  display: flex !important;
}

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

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

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

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

.flex-container{
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-start;
  /* margin: 0 -.5rem; */
  flex: 0 1 78.125rem;
  /* flex-basis: auto; */
  /* max-width: 1300px; */
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
  /*	margin-left: auto;
  margin-right: auto;*/
  /* box-sizing: border-box; */
  /* margin: 0 auto; */
}

.flex-section{
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-start;
  /* margin: 0 -.5rem; */
  flex: 0 1 78.125rem;
  /* flex-basis: auto; */
  /* max-width: 1300px; */
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
  /*	margin-left: auto;
  margin-right: auto;*/
  /* box-sizing: border-box; */
  margin: 0 auto;
  /* min-height: 100%; */
}

.flex-container-fluid{
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-start;
  /* margin: 0 -.5rem; */
  flex: auto;
  width: 100%;
  /* flex-basis: auto; */
  /* max-width: 1300px; */
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
  /*	margin-left: auto;
  margin-right: auto;*/
  /* box-sizing: border-box; */
  /* align-self: flex-end; */
}

.flex-container{
  /*margin: -0.625rem !important; */
  /* padding-right: 15px; */
  /* padding-left: 15px; */
}

.gutters {
  /*margin: -0.625rem !important;*/
  padding-right: 15px; 
  padding-left: 15px; 
}

.gutters > * {

  margin-right: -15px;
  margin-left: -15px;
  flex: 1 1 auto;
}

.gutters > * > * {

  margin-right: 15px;
  margin-left: 15px;
}

.flex-container.gutters{
  /*margin: -0.625rem !important; */
  padding-right: 15px;
  padding-left: 15px;
}

.flex-container.gutters > * {
  margin-right: -15px;
  margin-left: -15px;
}




.flex-container .gutters > * > * {
  margin-right: -15px;
  margin-left: -15px;
  padding-right: 15px;
  padding-left: 15px;
}



.flex-body > .row, .flex-body > .flex-row{
  flex-basis: 100%;
}

.flex-main > .flex-row, .flex-column > .flex-row{
  flex: 0 0 auto;
  width: 100%;
}

.flex-row {
  /* margin-right: -15px;
  margin-left: -15px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  flex: 1 1 100%;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* .flex-row > *{
  padding-right: 15px;
  padding-left: 15px;
} */

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

.no-gutters > * {
  padding-right: 0 !important;
  padding-left: 0 !important;
}



.form-select {
  display: block;
  width: 100%;
  padding: .375rem 2.25rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  /* -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; */
  min-height: 38px;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  min-height: 38px;
}

.text-center{
  text-align: center;
}

.uppercase{
  text-transform: uppercase;
}


/*
==================================================
PADDINGS, MARGINS, BORDERS
==================================================
*/

.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: 2.5rem !important;
}

.mt-6,
.my-6 {
  margin-top: 2.5rem !important;
}

.mr-6,
.mx-6 {
  margin-right: 2.5rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 2.5rem !important;
}

.ml-6,
.mx-6 {
  margin-left: 2.5rem !important;
}

.m-7 {
  margin: 3rem !important;
}

.mt-7,
.my-7 {
  margin-top: 3rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 3rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 3rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 3rem !important;
}

.m-8 {
  margin: 3.5rem !important;
}

.mt-8,
.my-8 {
  margin-top: 3.5rem !important;
}

.mr-8,
.mx-8 {
  margin-right: 3.5rem !important;
}

.mb-8,
.my-8 {
  margin-bottom: 3.5rem !important;
}

.ml-8,
.mx-8 {
  margin-left: 3.5rem !important;
}

.m-9 {
  margin: 4rem !important;
}

.mt-9,
.my-9 {
  margin-top: 4rem !important;
}

.mr-9,
.mx-9 {
  margin-right: 4rem !important;
}

.mb-9,
.my-9 {
  margin-bottom: 4rem !important;
}

.ml-9,
.mx-9 {
  margin-left: 4rem !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: 2.5rem !important;
}

.pt-6,
.py-6 {
  padding-top: 2.5rem !important;
}

.pr-6,
.px-6 {
  padding-right: 2.5rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 2.5rem !important;
}

.pl-6,
.px-6 {
  padding-left: 2.5rem !important;
}

.p-7 {
  padding: 3rem !important;
}

.pt-7,
.py-7 {
  padding-top: 3rem !important;
}

.pr-7,
.px-7 {
  padding-right: 3rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 3rem !important;
}

.pl-7,
.px-7 {
  padding-left: 3rem !important;
}

.p-8 {
  padding: 3.5rem !important;
}

.pt-8,
.py-8 {
  padding-top: 3.5rem !important;
}

.pr-8,
.px-8 {
  padding-right: 3.5rem !important;
}

.pb-8,
.py-8 {
  padding-bottom: 3.5rem !important;
}

.pl-8,
.px-8 {
  padding-left: 3.5rem !important;
}

.p-9 {
  padding: 4rem !important;
}

.pt-9,
.py-9 {
  padding-top: 4rem !important;
}

.pr-9,
.px-9 {
  padding-right: 4rem !important;
}

.pb-9,
.py-9 {
  padding-bottom: 4rem !important;
}

.pl-9,
.px-9 {
  padding-left: 4rem !important;
}

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

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

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

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

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



.bold {
  font-weight: bold;
}

.bold-items > *{
  font-weight: bold;
}

.bd-0 {
  border: none;
}

.pd-0 {
  padding: 0px !important;
}

.pd-y-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

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

.pd-t-0 {
  padding-top: 0px !important;
}

.pd-b-0 {
  padding-bottom: 0px !important;
}

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

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

.mg-0 {
  margin: 0px !important;
}

.mg {
  margin: 0.625rem !important;
}

.mg-auto {
  margin:  auto !important;
}

.mg-5 {
  margin: 0.3125rem !important;
}

.mg-15 {
  margin: 0.9375rem !important;
}

.mg-20 {
  margin: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.mg-l {
  margin-left:  0.625rem !important;
}

.mg-l-auto {
  margin-left:  auto !important;
}

.mg-l-20 {
  margin-left: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.mg-l-15 {
  margin-left: 0.9375rem !important;
}

.mg-l-5 {
  margin-left: 0.3125rem !important;
}

.mg-r {
  margin-right:  0.625rem !important;
}

.mg-r-auto {
  margin-right:  auto !important;
}

.mg-r-20 {
  margin-right: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.mg-r-15 {
  margin-right: 0.9375rem !important;
}

.mg-r-5 {
  margin-right: 0.3125rem !important;
}

.mg-t {
  margin-top:  0.625rem !important;
}

.mg-t-auto {
  margin-top:  auto !important;
}

.mg-t-20 {
  margin-top: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.mg-t-15 {
  margin-top: 0.9375rem !important;
}

.mg-t-5 {
  margin-top: 0.3125rem !important;
}

.mg-b {
  margin-bottom:  0.625rem !important;
}

.mg-b-auto {
  margin-bottom:  auto !important;
}

.mg-b-20 {
  margin-bottom: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.mg-b-15 {
  margin-bottom: 0.9375rem !important;
}

.mg-b-5 {
  margin-bottom: 0.3125rem !important;
}

.mg-x {
  margin-right:  0.625rem !important;
  margin-left:  0.625rem !important;
}

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

.mg-x-20 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.mg-x-15 {
  margin-right: 15px !important;
  margin-left: 15px !important;
}

.mg-x-5 {
  margin-right: 0.3125rem !important;
  margin-left: 0.3125rem !important;
}

.mg-y {
  margin-top:  0.625rem !important;
  margin-bottom:  0.625rem !important;
}

.mg-y-auto {
  margin-top:  auto !important;
  margin-bottom:  auto !important;
}

.mg-y-20 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.mg-y-15 {
  margin-top: 0.9375rem !important;
  margin-bottom: 0.9375rem !important;
}

.mg-y-5 {
  margin-top: 0.3125rem !important;
  margin-bottom: 0.3125rem !important;
}

.pd {
  padding:  0.625rem !important;
}

.pd-20 {
  padding: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.pd-15 {
  padding: 0.9375rem !important;
}

.pd-5 {
  padding: 5px !important;
}

.pd-l {
  padding-left:  0.625rem !important;
}

.pd-l-20 {
  padding-left: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.pd-l-15 {
  padding-left: 0.9375rem !important;
}

.pd-l-5 {
  padding-left: 0.31rem !important;
}

.pd-r {
  padding-right:  0.625rem !important;
}

.pd-r-20 {
  padding-right: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.pd-r-15 {
  padding-right: 0.9375rem !important;
}

.pd-r-5 {
  padding-right: 0.31rem !important;
}

.pd-t {
  padding-top:  0.625rem !important;
}

.pd-t-20 {
  padding-top: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.pd-t-15 {
  padding-top: 0.9375rem !important;
}

.pd-t-5 {
  padding-top: 0.31rem !important;
}

.pd-b {
  padding-bottom:  0.625rem !important;
}

.pd-b-20 {
  padding-bottom: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.pd-b-15 {
  padding-bottom: 0.9375rem !important;
}

.pd-b-5 {
  padding-bottom: 0.31rem !important;
}

.pd-x {
  padding-right:  0.625rem !important;
  padding-left:  0.625rem !important;
}

.pd-x-20 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.pd-x-15 {
  padding-right: 0.9375rem !important;
  padding-left: 0.9375rem !important;
}

.pd-x-5 {
  padding-right: 0.31rem !important;
  padding-left: 0.31rem !important;
}

.pd-y {
  padding-top:  0.625rem !important;
  padding-bottom:  0.625rem !important;
}

.pd-y-20 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
  /*  flex-basis: auto;*/
}

.pd-y-15 {
  padding-top: 0.9375rem !important;
  padding-bottom: 0.9375rem !important;
}

.pd-y-5 {
  padding-top: 0.31rem !important;
  padding-bottom: 0.31rem !important;
}

.pd-y-5 {
  padding-top: 0.31rem !important;
  padding-bottom: 0.31rem !important;
}

/*
==================================================
GRID
==================================================
*/

[class*="flex-row"][class*="flex-0-1"], [class*="flex-container"][class*="flex-0-1"], [class*="flex-section"][class*="flex-0-1"]   {
  min-width: auto !important;
}

[class*="flex-row"][class*="flex-1-1"], [class*="flex-container"][class*="flex-1-1"], [class*="flex-section"][class*="flex-1-1"]   {
  min-width: auto !important;
}

[class*="flex-row"] > [class*="flex-1-1"], [class*="flex-container"] > [class*="flex-1-1"], [class*="flex-section"] > [class*="flex-1-1"]   {
  min-width: auto !important;
}

[class*="flex-row"] > [class*="flex-0-1"], [class*="flex-container"] > [class*="flex-0-1"], [class*="flex-section"] > [class*="flex-0-1"]   {
  min-width: auto !important;
}


[class*="flex-column"] > [class*="flex-0-1"], [class*="flex-column"] > [class*="flex-1-1"]{
}


[class*="flex-column"][class*="flex-center"]{
  align-items:center;
}

[class*="flex-column"][class*="flex-middle"]{
  justify-content:center;
}



[class*="flex-0-1"]{
  flex: 0 1;
  box-sizing: border-box;
  /* padding: 0 .5rem 1rem; */
  min-width: auto !important;
  width: auto !important;
}

[class*="flex-1-1"]{
  flex: 1 1;
  max-width: none !important;
  /*padding: 0 .5rem 1rem;*/
  min-width: auto !important;
  width: auto !important;
  
}

[class*="flex-1-0"]{
  flex: 1 0;
  /*padding: 0 .5rem 1rem;*/
}


[class*="flex-auto"]{
  flex: 1 1 0%;
  /*padding: 0 .5rem 1rem;*/
}

[class*="flex-0-1-auto"]{
  flex: 0 1 auto;
  /*padding: 0 .5rem 1rem;*/
}

[class*="flex-2-1"]{
  flex: 2 1;
  /*padding: 0 .5rem 1rem;*/
}

[class*="flex-2-0"]{
  flex: 2 0;
  /*padding: 0 .5rem 1rem;*/
}

[class*="flex-3-1"]{
  flex: 3 1;
  /*padding: 0 .5rem 1rem;*/
}

[class*="flex-3-0"]{
  flex: 3 0;
  /*padding: 0 .5rem 1rem;*/
}

[class*="flex-4-1"]{
  flex: 4 1;
  /*padding: 0 .5rem 1rem;*/
}

[class*="flex-4-0"]{
  flex: 4 0;
  /*padding: 0 .5rem 1rem;*/
}

[class*="flex-5-1"]{
  flex: 5 1;
  /*padding: 0 .5rem 1rem;*/
}

[class*="flex-5-0"]{
  flex: 5 0;
  /*padding: 0 .5rem 1rem;*/
}





/*.flex-90, .shape.flex-90 {
-ms-flex-preferred-size: 90%;
flex-basis: 90%; 
flex-basis: auto;
width: 90%;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
-ms-flex-negative: 1;
flex-shrink: 1;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}*/

/*.flex-100, .shape.flex-100 {
-ms-flex-preferred-size: 100%;
flex-basis: 100% !important; 
flex-basis: auto !important;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-negative: 1;
flex-shrink: 1;
-webkit-box-sizing: border-box;
box-sizing: border-box;
max-width: 100% !important;
width: 100%;
}*/

[class*="flex-"][class*="-30"], .shape[class*="-30"] {
  flex-basis:  1.875rem;
}

[class*="flex-"][class*="-40"], .shape[class*="-40"] {
  -ms-flex-preferred-size:  2.5rem;
  /* flex-basis:  2.5rem; */
  /* max-width:  2.5rem; */
}

[class*="flex-"][class*="-50"], .shape[class*="-50"] {
  flex-basis: 3.125rem;
  
  
  width: 3.125rem;
}

[class*="flex-"][class*="-60"], .shape[class*="-60"] {
  flex-basis: 3.75rem;
 
 
  width: 3.75rem;
}

[class*="flex-"][class*="-70"], .shape[class*="-70"] {
  flex-basis: 4.375rem;
  
  
  width: 4.375rem;
}

[class*="flex-"][class*="-80"], .shape[class*="-80"] {
  flex-basis:  5rem;
  width:  5rem;
}

[class*="flex-"][class*="-90"]{
  flex-basis: 5.625rem;
  
  
  width: 5.625rem;
}

[class*="flex-"][class*="-100"], .shape[class*="-100"] {
  flex-basis: 6.25rem;
 
 
  width: 6.25rem;
  /* box-sizing: border-box; */
}

[class*="flex-"][class*="-120"], .shape[class*="-120"] {
  flex-basis: 7.5rem;
  max-width: 7.5rem;
  max-width: 7.5rem;
  width: 7.5rem;
}

[class*="flex-"][class*="-150"], .shape[class*="-150"] {
  flex-basis:  9.375rem;
  max-width:  9.375rem;
  max-width:  9.375rem;
  width:  9.375rem;
}

[class*="flex-"][class*="-175"], .shape[class*="-175"] {
  flex-basis:  10.94rem;
  max-width:  10.94rem;
  min-width:  10.94rem;
  width:  10.94rem;
}

[class*="flex-"][class*="-200"], .shape[class*="-200"] {
  flex-basis:12.5rem;
  /* max-width: 12.5rem; */
  min-width: 12.5rem;
 width: 12.5rem;
}

[class*="flex-"][class*="-250"], .shape[class*="-250"] {
  flex-basis: 15.63rem;
  /* max-width: 15.63rem; */
  min-width: 15.63rem;
  width: 15.63rem;
}

[class*="flex-"][class*="-300"], .shape[class*="-300"] {
  flex-basis: 18.75rem;
  /* max-width: 18.75rem; */
  min-width: 18.75rem;
  width: 18.75rem; 
}

[class*="flex-"][class*="-350"], .shape[class*="-350"] {
  flex-basis: 21.88rem;
  /* max-width: 21.88rem; */
  min-width: 21.88rem;
  width: 21.88rem;
}

[class*="flex-"][class*="-400"], .shape[class*="-400"] {
  flex-basis: 25rem;
  /* max-width: 25rem; */
  min-width: 25rem;
  width: 25rem;
}

[class*="flex-"][class*="-450"], .shape[class*="-450"] {
  flex-basis: 28.13rem;
  /* max-width: 28.13rem; */
  min-width: 28.13rem;
  width: 28.13rem;
}

[class*="flex-"][class*="-500"], .shape[class*="-500"] {
  flex-basis: 31.25rem;
  /* max-width: 31.25rem; */
  min-width: 31.25rem;
  width: 31.25rem;
}

[class*="flex-"][class*="-550"], .shape[class*="-550"] {
  flex-basis: 34.38rem;
  /* max-width: 34.38rem; */
  min-width: 34.38rem;
  width: 34.38rem;
}

[class*="flex-"][class*="-600"], .shape[class*="-600"] {
  flex-basis: 37.5rem;
  /* max-width: 37.5rem; */
  min-width: 37.5rem;
 width: 37.5rem;
}

[class*="flex-"][class*="-650"], .shape[class*="-650"] {
  flex-basis: 40.63rem;
  /* max-width: 40.63rem; */
  min-width: 40.63rem;
  width: 40.63rem;
}

[class*="flex-"][class*="-700"], .shape[class*="-700"] {
  flex-basis: 43.75rem;
  /* max-width: 43.75rem; */
  min-width: 43.75rem;
  width: 43.75rem;
}

[class*="flex-"][class*="-750"], .shape[class*="-750"] {
  flex-basis: 46.88rem;
  /* max-width: 46.88rem; */
  min-width: 46.88rem;
  width: 46.88rem;
}

[class*="flex-"][class*="-800"], .shape[class*="-800"] {
  flex-basis: 50rem;
  /* max-width: 50rem; */
  min-width: 50rem;
  width: 50rem;
}

[class*="flex-"][class*="-850"], .shape[class*="-850"] {
  flex-basis: 53.13rem;
  /* max-width: 53.13rem; */
  min-width: 53.13rem;
  width: 53.13rem;
}

[class*="flex-"][class*="-900"], .shape[class*="-900"] {
  flex-basis:  56.25rem;
  /* max-width:  56.25rem; */
  min-width:  56.25rem;
  width:  56.25rem;
}

[class*="flex-"][class*="-950"], .shape[class*="-950"] {
  flex-basis: 59.38rem;
  /* max-width: 59.38rem; */
  min-width: 59.38rem;
  width: 59.38rem;
}

[class*="flex-"][class*="-1000"], .shape[class*="-1000"] {
  flex-basis: 62.5rem;
  /* max-width: 62.5rem; */
  min-width: 62.5rem;
 width: 62.5rem;
}

[class*="flex-"][class*="-1050"], .shape[class*="-1050"] {
  flex-basis: 65.63rem;
  /* max-width: 65.63rem; */
  min-width: 65.63rem;
  width: 65.63rem;
}

[class*="flex-"][class*="-1100"], .shape[class*="-1100"] {
  flex-basis:  68.75rem;
  /* max-width:  68.75rem; */
  min-width:  68.75rem;
  width:  68.75rem;
}

[class*="flex-"][class*="-1150"], .shape[class*="-1150"] {
  flex-basis:71.88rem;
  /* max-width:71.88rem; */
  min-width:71.88rem;
 width:71.88rem;
}

[class*="flex-"][class*="-1200"], .shape[class*="-1200"] {
  flex-basis: 75rem;
  /* max-width: 75rem; */
  min-width: 75rem;
  width: 75rem;
}

[class*="flex-"][class*="-1250"], .shape[class*="-1250"] {
  flex-basis: 78.13rem;
  /* max-width: 78.13rem; */
  min-width: 78.13rem;
  width: 78.13rem;
}

[class*="flex-"][class*="-1300"], .shape[class*="-1300"] {
  flex-basis: 81.25rem;
  /* max-width: 81.25rem; */
  min-width: 81.25rem;
  width: 81.25rem;
}


[class*="col-"][class*="-100"], .shape[class*="-100"] {
  flex-basis: 6.25rem;
  max-width: 6.25rem;
  max-width: 6.25rem;
  width: 6.25rem;
  /* box-sizing: border-box; */
}

[class*="col-"][class*="-120"], .shape[class*="-120"] {
  flex-basis: 7.5rem;
  max-width: 7.5rem;
  max-width: 7.5rem;
  width: 7.5rem;
}

[class*="col-"][class*="-150"], .shape[class*="-150"] {
  flex-basis:  9.375rem;
  max-width:  9.375rem;
  max-width:  9.375rem;
  width:  9.375rem;
}

[class*="col-"][class*="-175"], .shape[class*="-175"] {
  flex-basis:  10.94rem;
  max-width:  10.94rem;
  min-width:  10.94rem;
  width:  10.94rem;
}

[class*="col-"][class*="-200"], .shape[class*="-200"] {
  flex-basis:12.5rem;
  /* max-width: 12.5rem; */
  min-width: 12.5rem;
 width: 12.5rem;
}

[class*="col-"][class*="-250"], .shape[class*="-250"] {
  flex-basis: 15.63rem;
  /* max-width: 15.63rem; */
  min-width: 15.63rem;
  width: 15.63rem;
}

[class*="col-"][class*="-300"], .shape[class*="-300"] {
  flex-basis: 18.75rem;
  /* max-width: 18.75rem; */
  min-width: 18.75rem;
  width: 18.75rem; 
}

[class*="col-"][class*="-350"], .shape[class*="-350"] {
  flex-basis: 21.88rem;
  /* max-width: 21.88rem; */
  min-width: 21.88rem;
  width: 21.88rem;
}

[class*="col-"][class*="-400"], .shape[class*="-400"] {
  flex-basis: 25rem;
  /* max-width: 25rem; */
  min-width: 25rem;
  width: 25rem;
}

[class*="col-"][class*="-450"], .shape[class*="-450"] {
  flex-basis: 28.13rem;
  /* max-width: 28.13rem; */
  min-width: 28.13rem;
  width: 28.13rem;
}

[class*="col-"][class*="-500"], .shape[class*="-500"] {
  flex-basis: 31.25rem;
  /* max-width: 31.25rem; */
  min-width: 31.25rem;
  width: 31.25rem;
}

[class*="col-"][class*="-550"], .shape[class*="-550"] {
  flex-basis: 34.38rem;
  /* max-width: 34.38rem; */
  min-width: 34.38rem;
  width: 34.38rem;
}

[class*="col-"][class*="-600"], .shape[class*="-600"] {
  flex-basis: 37.5rem;
  /* max-width: 37.5rem; */
  min-width: 37.5rem;
 width: 37.5rem;
}

[class*="col-"][class*="-650"], .shape[class*="-650"] {
  flex-basis: 40.63rem;
  /* max-width: 40.63rem; */
  min-width: 40.63rem;
  width: 40.63rem;
}

[class*="col-"][class*="-700"], .shape[class*="-700"] {
  flex-basis: 43.75rem;
  /* max-width: 43.75rem; */
  min-width: 43.75rem;
  width: 43.75rem;
}

[class*="col-"][class*="-750"], .shape[class*="-750"] {
  flex-basis: 46.88rem;
  /* max-width: 46.88rem; */
  min-width: 46.88rem;
  width: 46.88rem;
}

[class*="col-"][class*="-800"], .shape[class*="-800"] {
  flex-basis: 50rem;
  /* max-width: 50rem; */
  min-width: 50rem;
  width: 50rem;
}

[class*="col-"][class*="-850"], .shape[class*="-850"] {
  flex-basis: 53.13rem;
  /* max-width: 53.13rem; */
  min-width: 53.13rem;
  width: 53.13rem;
}

[class*="col-"][class*="-900"], .shape[class*="-900"] {
  flex-basis:  56.25rem;
  /* max-width:  56.25rem; */
  min-width:  56.25rem;
  width:  56.25rem;
}

[class*="col-"][class*="-950"], .shape[class*="-950"] {
  flex-basis: 59.38rem;
  /* max-width: 59.38rem; */
  min-width: 59.38rem;
  width: 59.38rem;
}

[class*="col-"][class*="-1000"], .shape[class*="-1000"] {
  flex-basis: 62.5rem;
  /* max-width: 62.5rem; */
  min-width: 62.5rem;
 width: 62.5rem;
}

[class*="col-"][class*="-1050"], .shape[class*="-1050"] {
  flex-basis: 65.63rem;
  /* max-width: 65.63rem; */
  min-width: 65.63rem;
  width: 65.63rem;
}

[class*="col-"][class*="-1100"], .shape[class*="-1100"] {
  flex-basis:  68.75rem;
  /* max-width:  68.75rem; */
  min-width:  68.75rem;
  width:  68.75rem;
}

[class*="col-"][class*="-1150"], .shape[class*="-1150"] {
  flex-basis:71.88rem;
  /* max-width:71.88rem; */
  min-width:71.88rem;
 width:71.88rem;
}

[class*="col-"][class*="-1200"], .shape[class*="-1200"] {
  flex-basis: 75rem;
  /* max-width: 75rem; */
  min-width: 75rem;
  width: 75rem;
}

[class*="col-"][class*="-1250"], .shape[class*="-1250"] {
  flex-basis: 78.13rem;
  /* max-width: 78.13rem; */
  min-width: 78.13rem;
  width: 78.13rem;
}

[class*="col-"][class*="-1300"], .shape[class*="-1300"] {
  flex-basis: 81.25rem;
  /* max-width: 81.25rem; */
  min-width: 81.25rem;
  width: 81.25rem;
}


.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}


/*! Flexible System */


.wrap {
  display: block;
  width: 100%;
  font-size: 0;
  letter-spacing: 0;
  text-align: left;
  box-sizing: border-box;
}

.wrap > * {
  display: inline-block;
  vertical-align: top;
}

.col {
  min-height: 1px;
  font-size: 1rem;
  box-sizing: border-box;
}

.flex-auto > * {
  width: auto;
  flex-basis: auto;
}

.col-items-1 > * {
  width: 100%;
  max-width: 100%;
  flex-basis: 100%;
  /* padding: 15px; */
  padding-left: 15px;
  padding-right: 15px;
}

.col-items-2 > * {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
}

.col-items-3 > * {
  width: 33.33333%;
  max-width: 33.33333%;
  flex-basis: 33.33333%;
}

.col-items-4 > * {
  width: 25%;
  max-width: 25%;
  flex-basis: 25%;
}

.col-items-5 > * {
  width: 20%;
  max-width: 20%;
  flex-basis: 20%;
}

.col-items-6 > * {
  width: 16.66667%;
  max-width: 16.66667%;
  flex-basis: 16.66667%;
}

.col-items-7 > * {
  width: 14.28571%;
  max-width: 14.28571%;
  flex-basis: 14.28571%;
}

.col-items-8 > * {
  width: 12.5%;
  max-width: 12.5%;
  flex-basis: 12.5%;
}

.col-items-9 > * {
  width: 11.11111%;
  max-width: 11.11111%;
  flex-basis: 11.11111%;
}

.col-items-10 > * {
  width: 10%;
  max-width: 10%;
  flex-basis: 10%;
}

.col-items-11 > * {
  width: 9.09091%;
  max-width: 9.09091%;
  flex-basis: 9.09091%;
}

.col-items-12 > * {
  width: 8.33333%;
  max-width: 8.33333%;
  flex-basis: 8.33333%;
}

.d-table {
  display: table;
  table-layout: fixed;
  flex-direction: initial;
  flex-wrap: initial;
  -ms-justify-content: initial;
  justify-content: initial;
  -ms-align-content: initial;
  align-content: initial;
  -ms-align-items: initial;
  align-items: initial;
  -webkit-column-count: auto;
  column-count: auto;
}

.d-table > * {
  display: table-cell;
}

.d-flexbox {
  display: flex;
  table-layout: auto;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-align-content: center;
  align-content: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-column-count: auto;
  column-count: auto;
}

.d-flexbox > * {
  display: inline-block;
}

.d-normal {
  display: block;
  table-layout: auto;
  flex-direction: initial;
  flex-wrap: initial;
  -ms-justify-content: initial;
  justify-content: initial;
  -ms-align-content: initial;
  align-content: initial;
  -ms-align-items: initial;
  align-items: initial;
  -webkit-column-count: auto;
  column-count: auto;
}

.d-normal > * {
  display: inline-block;
}

.p-absolute{
  position: absolute;
}
.p-relative{
  position: relative;
}

.position-relative{
  position: relative;
}

.position-absolute
{
  position: absolute;
}




/* Horizontal positions flex items */

.flex-left {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  /* text-align: left; */
  display:flex;
  flex-wrap:wrap;
}


.flex-center {
  -ms-justify-content: center;
  justify-content: center;
  /* text-align: center; */
  display:flex;
  flex-wrap:wrap;
}


.flex-right {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  /* text-align: right; */
  display:flex;
  flex-wrap:wrap;
}

/* Vertical positions flex items */

.flex-top {
  -ms-align-items: flex-start;
  align-items: flex-start;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}

.flex-middle {
  -ms-align-items: center;
  align-items: center;
  display:flex;
  flex-wrap:wrap;
}

.flex-bottom {
  -ms-align-items: flex-end;
  align-items: flex-end;
  display:flex;
  flex-wrap:wrap;
}

/* Left vertical positions */


.flex-left-bottom {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  /* text-align: left; */
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
}

.flex-left-top {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  /* text-align: left; */
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
}

.flex-left-middle {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  /* text-align: left; */
  display:flex;
  flex-wrap:wrap;
  align-items: center;
}

.flex-left-between {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  display:flex;
  flex-wrap:wrap;
  align-content: space-between;
}

  .flex-left-around {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    display:flex;
    flex-wrap:wrap;
    align-content: space-around;
  }

/* Right vertical positions */

.flex-right-bottom {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  /* text-align: right; */
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
}

.flex-right-top {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  /* text-align: right; */
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
}

.flex-right-start {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  /* text-align: right; */
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.flex-right-end {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  /* text-align: right; */
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

.flex-right-middle{
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  /* text-align: right; */
  display:flex;
  flex-wrap:wrap;
  align-items: center;
}

.flex-right-between {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  display:flex;
  flex-wrap:wrap;
  align-content: space-between;
}

  .flex-right-around {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    display:flex;
    flex-wrap:wrap;
    align-content: space-around;
  }

/* center vertical positions */

.flex-center-top {
  -ms-align-items: flex-start;
  align-items: flex-start;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: flex-start;
  justify-content: center;
  flex-wrap:wrap;
}

.flex-center-middle {
  -ms-align-items: flex-start;
  align-items: flex-start;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: center;
  justify-content: center;
  flex-wrap:wrap;
}

.flex-center-bottom {
  -ms-align-items: flex-start;
  align-items: flex-end;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: flex-end;
  justify-content: center;
  flex-wrap:wrap;
}

.flex-center-between {
  -ms-justify-content: center;
  justify-content: center;
  display:flex;
  flex-wrap:wrap;
  align-content: space-between;
}

  .flex-center-around {
    -ms-justify-content: center;
    justify-content: center;
    display:flex;
    flex-wrap:wrap;
    align-content: space-around;
  }


/* top horizontal positions */

.flex-top-center {
  -ms-align-items: flex-start;
  align-items: flex-start;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: flex-start;
  justify-content: center;
  flex-wrap:wrap;
}

.flex-top-left {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.flex-top-right {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.flex-top-between {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

  .flex-top-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }

/* bottom horizontal positions */

.flex-bottom-center {
  -ms-align-items: flex-start;
  align-items: flex-end;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: flex-end;
  justify-content: center;
  flex-wrap:wrap;
}

.flex-bottom-left {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

.flex-bottom-right {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

.flex-bottom-between {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

  .flex-bottom-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }


/* middle horizontal positions */

.flex-middle-left {
  -ms-align-items: center;
  align-items: center;
  display:flex;
  -ms-flex-wrap:wrap;
  justify-content: flex-start;
  flex-wrap:wrap;
  align-content: center;
  
}

.flex-middle-center {
  -ms-justify-content: center;
  justify-content: center;
  text-align: center;
  display:flex;
  flex-wrap:wrap;
  align-content: center;
  align-items: center;
}

.flex-middle-right {
  -ms-align-items: center;
  align-items: center;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: center;
  justify-content: flex-end;
  flex-wrap:wrap;
}

.flex-middle-between {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  align-content: center;
}

.flex-middle-around {
  -ms-justify-content: space-around;
  justify-content: space-around;
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  align-content: center;
}

/* between vertical positions */

.flex-between-middle {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  align-content: center;
}

.flex-between-bottom {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

.flex-between-top {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

/* around vertical positions */

.flex-around-middle {
  -ms-justify-content: space-around;
  justify-content: space-around;
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  align-content: center;
}

.flex-around-bottom {
  -ms-justify-content: space-around;
  justify-content: space-around;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

.flex-around-top {
  -ms-justify-content: space-around;
  justify-content: space-around;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.flex-between {
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-align-content: space-between;
  align-content: space-between;
  display:flex;
  flex-wrap:wrap;
}

.flex-around {
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-align-content: space-around;
  align-content: space-around;
  display:flex;
  flex-wrap:wrap;
}

.flex-baseline {
  -ms-align-items: baseline;
  align-items: baseline;
  display:flex;
  flex-wrap:wrap;
}


.flex-stretch {
  align-items: stretch;
  display:flex;
  flex-wrap:wrap;
  align-content: stretch;
}


.flex-middle > * {
  vertical-align: middle;
}



.flex-bottom > * {
  vertical-align: bottom;
}



.flex-reverse {
  flex-direction: row-reverse;
  flex-wrap: wrap-reverse;
  display:flex;

}

.flex-not-reverse {
  flex-direction: row;
  flex-wrap: wrap;
  display:flex;

}

.xl-top > * {
  vertical-align: top;
}

.col {
  /* width: 100%; */
  max-width: 100%;
  flex-basis: 100%;
  flex-grow: 1;
  padding-bottom: 7.5px;
  padding-top: 7.5px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-1-1 {
  /* width: 100%; */
  max-width: 100%;
  flex-basis: 100%;
  flex-grow: 1;
  padding-bottom: 7.5px;
  padding-top: 7.5px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-1-2 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
}

.col-1-3 {
  width: 33.33333%;
  max-width: 33.33333%; 
  flex-basis: 33.33333%; 
  min-width: 33.33333%;
}

.col-2-3 {
  width: 66.66667%;
  max-width: 66.66667%;
  flex-basis: 66.66667%;
  min-width: 66.66667%;
}

.col-1-4 {
  width: 25%;
  max-width: 25%;
  flex-basis: 25%;
  min-width: 25%;
}

.col-2-4 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-3-4 {
  width: 75%;
  max-width: 75%;
  flex-basis: 75%;
  min-width: 75%;
}

.col-1-5 {
  width: 20%;
  max-width: 20%;
  flex-basis: 20%;
  min-width: 20%;
}

.col-2-5 {
  width: 40%;
  max-width: 40%;
  flex-basis: 40%;
  min-width: 40%;
}

.col-3-5 {
  width: 60%;
  max-width: 60%;
  flex-basis: 60%;
  min-width: 60%;
}

.col-4-5 {
  width: 80%;
  max-width: 80%;
  flex-basis: 80%;
  min-width: 80%;
}

.col-1-6 {
  width: 16.66667%;
  max-width: 16.66667%;
  flex-basis: 16.66667%;
  min-width: 16.66667%;
}

.col-2-6 {
  width: 33.33333%;
  max-width: 33.33333%;
  flex-basis: 33.33333%;
  min-width: 33.33333%;
}

.col-3-6 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
}

.col-4-6 {
  width: 66.66667%;
  max-width: 66.66667%;
  flex-basis: 66.66667%;
  min-width: 66.66667%;
}

.col-5-6 {
  width: 83.33333%;
  max-width: 83.33333%;
  flex-basis: 83.33333%;
  min-width: 83.33333%;
}

.col-1-7 {
  width: 14.28571%;
  max-width: 14.28571%;
  flex-basis: 14.28571%;
  min-width: 14.28571%;
}

.col-2-7 {
  width: 28.57143%;
  max-width: 28.57143%;
  flex-basis: 28.57143%;
  min-width: 28.57143%;
}

.col-3-7 {
  width: 42.85714%;
  max-width: 42.85714%;
  flex-basis: 42.85714%;
  min-width: 42.85714%;
}

.col-4-7 {
  width: 57.14286%;
  max-width: 57.14286%;
  flex-basis: 57.14286%;
  min-width: 57.14286%;
}

.col-5-7 {
  width: 71.42857%;
  max-width: 71.42857%;
  flex-basis: 71.42857%;
  min-width: 71.42857%;
}

.col-6-7 {
  width: 85.71429%;
  max-width: 85.71429%;
  flex-basis: 85.71429%;
  min-width: 85.71429%;
}

.col-1-8 {
  width: 12.5%;
  max-width: 12.5%;
  flex-basis: 12.5%;
  min-width: 12.5%;
}

.col-2-8 {
  width: 25%;
  max-width: 25%;
  flex-basis: 25%;
  min-width: 25%;
}

.col-3-8 {
  width: 37.5%;
  max-width: 37.5%;
  flex-basis: 37.5%;
  min-width: 37.5%;
}

.col-4-8 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
}

.col-5-8 {
  width: 62.5%;
  max-width: 62.5%;
  flex-basis: 62.5%;
  min-width: 62.5%;
}

.col-6-8 {
  width: 75%;
  max-width: 75%;
  flex-basis: 75%;
  min-width: 75%;
}

.col-7-8 {
  width: 87.5%;
  max-width: 87.5%;
  flex-basis: 87.5%;
  min-width: 87.5%;
}

.col-1-9 {
  width: 11.11111%;
  max-width: 11.11111%;
  flex-basis: 11.11111%;
  min-width: 11.11111%;
}

.col-2-9 {
  width: 22.22222%;
  max-width: 22.22222%;
  flex-basis: 22.22222%;
  min-width: 22.22222%;
}

.col-3-9 {
  width: 33.33333%;
  max-width: 33.33333%;
  flex-basis: 33.33333%;
  min-width: 33.33333%;
}

.col-4-9 {
  width: 44.44444%;
  max-width: 44.44444%;
  flex-basis: 44.44444%;
  min-width: 44.44444%;
}

.col-5-9 {
  width: 55.55556%;
  max-width: 55.55556%;
  flex-basis: 55.55556%;
  min-width: 55.55556%;
}

.col-6-9 {
  width: 66.66667%;
  max-width: 66.66667%;
  flex-basis: 66.66667%;
  min-width: 66.66667%;
}

.col-7-9 {
  width: 77.77778%;
  max-width: 77.77778%;
  flex-basis: 77.77778%;
  min-width: 77.77778%;
}

.col-8-9 {
  width: 88.88889%;
  max-width: 88.88889%;
  flex-basis: 88.88889%;
  min-width: 88.88889%;
}

.col-1-10 {
  width: 10%;
  max-width: 10%;
  flex-basis: 10%;
  min-width: 10%;
}

.col-2-10 {
  width: 20%;
  max-width: 20%;
  flex-basis: 20%;
  min-width: 20%;
}

.col-3-10 {
  width: 30%;
  max-width: 30%;
  flex-basis: 30%;
  min-width: 30%;
}

.col-4-10 {
  width: 40%;
  max-width: 40%;
  flex-basis: 40%;
  min-width: 40%;
}

.col-5-10 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
}

.col-6-10 {
  width: 60%;
  max-width: 60%;
  flex-basis: 60%;
  min-width: 60%;
}

.col-7-10 {
  width: 70%;
  max-width: 70%;
  flex-basis: 70%;
  min-width: 70%;
}

.col-8-10 {
  width: 80%;
  max-width: 80%;
  flex-basis: 80%;
  min-width: 80%;
}

.col-9-10 {
  width: 90%;
  max-width: 90%;
  flex-basis: 90%;
  min-width: 90%;
}

.col-1-11 {
  width: 9.09091%;
  max-width: 9.09091%;
  flex-basis: 9.09091%;
  min-width: 9.09091%;
}

.col-2-11 {
  width: 18.18182%;
  max-width: 18.18182%;
  flex-basis: 18.18182%;
  min-width: 18.18182%;
}

.col-3-11 {
  width: 27.27273%;
  max-width: 27.27273%;
  flex-basis: 27.27273%;
  min-width: 27.27273%;
}

.col-4-11 {
  width: 36.36364%;
  max-width: 36.36364%;
  flex-basis: 36.36364%;
  min-width: 36.36364%;
}

.col-5-11 {
  width: 45.45455%;
  max-width: 45.45455%;
  flex-basis: 45.45455%;
  min-width: 45.45455%;
}

.col-6-11 {
  width: 54.54545%;
  max-width: 54.54545%;
  flex-basis: 54.54545%;
  min-width: 54.54545%;
}

.col-7-11 {
  width: 63.63636%;
  max-width: 63.63636%;
  flex-basis: 63.63636%;
  min-width: 63.63636%;
}

.col-8-11 {
  width: 72.72727%;
  max-width: 72.72727%;
  flex-basis: 72.72727%;
  min-width: 72.72727%;
}

.col-9-11 {
  width: 81.81818%;
  max-width: 81.81818%;
  flex-basis: 81.81818%;
  min-width: 81.81818%;
}

.col-10-11 {
  width: 90.90909%;
  max-width: 90.90909%;
  flex-basis: 90.90909%;
  min-width: 90.90909%;
}

.col-1-12 {
  width: 8.33333%;
  max-width: 8.33333%;
  flex-basis: 8.33333%;
  min-width: 8.33333%;
}

.col-2-12 {
  width: 16.66667%;
  max-width: 16.66667%;
  flex-basis: 16.66667%;
  min-width: 16.66667%;
}

.col-3-12 {
  width: 25%;
  max-width: 25%;
  flex-basis: 25%;
  min-width: 25%;
}

.col-4-12 {
  width: 33.33333%;
  max-width: 33.33333%;
  flex-basis: 33.33333%;
  min-width: 33.33333%;
}

.col-5-12 {
  width: 41.66667%;
  max-width: 41.66667%;
  flex-basis: 41.66667%;
  min-width: 41.66667%;
}

.col-6-12 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
}

.col-7-12 {
  width: 58.33333%;
  max-width: 58.33333%;
  flex-basis: 58.33333%;
  min-width: 58.33333%;
}

.col-8-12 {
  width: 66.66667%;
  max-width: 66.66667%;
  flex-basis: 66.66667%;
  min-width: 66.66667%;
}

.col-9-12 {
  width: 75%;
  max-width: 75%;
  flex-basis: 75%;
  min-width: 75%;
}

.col-10-12 {
  width: 83.33333%;
  max-width: 83.33333%;
  flex-basis: 83.33333%;
  min-width: 83.33333%;
}

.col-11-12 {
  width: 91.66667%;
  max-width: 91.66667%;
  flex-basis: 91.66667%;
  min-width: 91.66667%;
}


/* .flex-1-1 {
  width: 100%;
  max-width: 100%;
  flex-basis: 100%;
  flex-grow: 1;
}

.flex-1-2 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
}

.flex-1-3 {
  width: 33.33333%;
   max-width: 33.33333%; 
  flex-basis: 33.33333%; 
  min-width: 33.33333%;
}

.flex-2-3 {
  width: 66.66667%;
  max-width: 66.66667%;
  flex-basis: 66.66667%;
  min-width: 66.66667%;
}

.flex-1-4 {
  width: 25%;
  max-width: 25%;
  flex-basis: 25%;
  min-width: 25%;
}

.flex-2-4 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
}

.flex-3-4 {
  width: 75%;
  max-width: 75%;
  flex-basis: 75%;
  min-width: 75%;
}

.flex-1-5 {
  width: 20%;
  max-width: 20%;
  flex-basis: 20%;
  min-width: 20%;
}

.flex-2-5 {
  width: 40%;
  max-width: 40%;
  flex-basis: 40%;
  min-width: 40%;
}

.flex-3-5 {
  width: 60%;
  max-width: 60%;
  flex-basis: 60%;
  min-width: 60%;
}

.flex-4-5 {
  width: 80%;
  max-width: 80%;
  flex-basis: 80%;
  min-width: 80%;
}

.flex-1-6 {
  width: 16.66667%;
  max-width: 16.66667%;
  flex-basis: 16.66667%;
  min-width: 16.66667%;
}

.flex-2-6 {
  width: 33.33333%;
  max-width: 33.33333%;
  flex-basis: 33.33333%;
  min-width: 33.33333%;
}

.flex-3-6 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
}

.flex-4-6 {
  width: 66.66667%;
  max-width: 66.66667%;
  flex-basis: 66.66667%;
  min-width: 66.66667%;
}

.flex-5-6 {
  width: 83.33333%;
  max-width: 83.33333%;
  flex-basis: 83.33333%;
  min-width: 83.33333%;
}

.flex-1-7 {
  width: 14.28571%;
  max-width: 14.28571%;
  flex-basis: 14.28571%;
  min-width: 14.28571%;
}

.flex-2-7 {
  width: 28.57143%;
  max-width: 28.57143%;
  flex-basis: 28.57143%;
  min-width: 28.57143%;
}

.flex-3-7 {
  width: 42.85714%;
  max-width: 42.85714%;
  flex-basis: 42.85714%;
  min-width: 42.85714%;
}

.flex-4-7 {
  width: 57.14286%;
  max-width: 57.14286%;
  flex-basis: 57.14286%;
  min-width: 57.14286%;
}

.flex-5-7 {
  width: 71.42857%;
  max-width: 71.42857%;
  flex-basis: 71.42857%;
  min-width: 71.42857%;
}

.flex-6-7 {
  width: 85.71429%;
  max-width: 85.71429%;
  flex-basis: 85.71429%;
  min-width: 85.71429%;
}

.flex-1-8 {
  width: 12.5%;
  max-width: 12.5%;
  flex-basis: 12.5%;
  min-width: 12.5%;
}

.flex-2-8 {
  width: 25%;
  max-width: 25%;
  flex-basis: 25%;
  min-width: 25%;
}

.flex-3-8 {
  width: 37.5%;
  max-width: 37.5%;
  flex-basis: 37.5%;
  min-width: 37.5%;
}

.flex-4-8 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
}

.flex-5-8 {
  width: 62.5%;
  max-width: 62.5%;
  flex-basis: 62.5%;
  min-width: 62.5%;
}

.flex-6-8 {
  width: 75%;
  max-width: 75%;
  flex-basis: 75%;
  min-width: 75%;
}

.flex-7-8 {
  width: 87.5%;
  max-width: 87.5%;
  flex-basis: 87.5%;
  min-width: 87.5%;
}

.flex-1-9 {
  width: 11.11111%;
  max-width: 11.11111%;
  flex-basis: 11.11111%;
  min-width: 11.11111%;
}

.flex-2-9 {
  width: 22.22222%;
  max-width: 22.22222%;
  flex-basis: 22.22222%;
  min-width: 22.22222%;
}

.flex-3-9 {
  width: 33.33333%;
  max-width: 33.33333%;
  flex-basis: 33.33333%;
  min-width: 33.33333%;
}

.flex-4-9 {
  width: 44.44444%;
  max-width: 44.44444%;
  flex-basis: 44.44444%;
  min-width: 44.44444%;
}

.flex-5-9 {
  width: 55.55556%;
  max-width: 55.55556%;
  flex-basis: 55.55556%;
  min-width: 55.55556%;
}

.flex-6-9 {
  width: 66.66667%;
  max-width: 66.66667%;
  flex-basis: 66.66667%;
  min-width: 66.66667%;
}

.flex-7-9 {
  width: 77.77778%;
  max-width: 77.77778%;
  flex-basis: 77.77778%;
  min-width: 77.77778%;
}

.flex-8-9 {
  width: 88.88889%;
  max-width: 88.88889%;
  flex-basis: 88.88889%;
  min-width: 88.88889%;
}

.flex-1-10 {
  width: 10%;
  max-width: 10%;
  flex-basis: 10%;
  min-width: 10%;
}

.flex-2-10 {
  width: 20%;
  max-width: 20%;
  flex-basis: 20%;
  min-width: 20%;
}

.flex-3-10 {
  width: 30%;
  max-width: 30%;
  flex-basis: 30%;
  min-width: 30%;
}

.flex-4-10 {
  width: 40%;
  max-width: 40%;
  flex-basis: 40%;
  min-width: 40%;
}

.flex-5-10 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
}

.flex-6-10 {
  width: 60%;
  max-width: 60%;
  flex-basis: 60%;
  min-width: 60%;
}

.flex-7-10 {
  width: 70%;
  max-width: 70%;
  flex-basis: 70%;
  min-width: 70%;
}

.flex-8-10 {
  width: 80%;
  max-width: 80%;
  flex-basis: 80%;
  min-width: 80%;
}

.flex-9-10 {
  width: 90%;
  max-width: 90%;
  flex-basis: 90%;
  min-width: 90%;
}

.flex-1-11 {
  width: 9.09091%;
  max-width: 9.09091%;
  flex-basis: 9.09091%;
  min-width: 9.09091%;
}

.flex-2-11 {
  width: 18.18182%;
  max-width: 18.18182%;
  flex-basis: 18.18182%;
  min-width: 18.18182%;
}

.flex-3-11 {
  width: 27.27273%;
  max-width: 27.27273%;
  flex-basis: 27.27273%;
  min-width: 27.27273%;
}

.flex-4-11 {
  width: 36.36364%;
  max-width: 36.36364%;
  flex-basis: 36.36364%;
  min-width: 36.36364%;
}

.flex-5-11 {
  width: 45.45455%;
  max-width: 45.45455%;
  flex-basis: 45.45455%;
  min-width: 45.45455%;
}

.flex-6-11 {
  width: 54.54545%;
  max-width: 54.54545%;
  flex-basis: 54.54545%;
  min-width: 54.54545%;
}

.flex-7-11 {
  width: 63.63636%;
  max-width: 63.63636%;
  flex-basis: 63.63636%;
  min-width: 63.63636%;
}

.flex-8-11 {
  width: 72.72727%;
  max-width: 72.72727%;
  flex-basis: 72.72727%;
  min-width: 72.72727%;
}

.flex-9-11 {
  width: 81.81818%;
  max-width: 81.81818%;
  flex-basis: 81.81818%;
  min-width: 81.81818%;
}

.flex-10-11 {
  width: 90.90909%;
  max-width: 90.90909%;
  flex-basis: 90.90909%;
  min-width: 90.90909%;
}

.flex-1-12 {
  width: 8.33333%;
  max-width: 8.33333%;
  flex-basis: 8.33333%;
  min-width: 8.33333%;
}

.flex-2-12 {
  width: 16.66667%;
  max-width: 16.66667%;
  flex-basis: 16.66667%;
  min-width: 16.66667%;
}

.flex-3-12 {
  width: 25%;
  max-width: 25%;
  flex-basis: 25%;
  min-width: 25%;
}

.flex-4-12 {
  width: 33.33333%;
  max-width: 33.33333%;
  flex-basis: 33.33333%;
  min-width: 33.33333%;
}

.flex-5-12 {
  width: 41.66667%;
  max-width: 41.66667%;
  flex-basis: 41.66667%;
  min-width: 41.66667%;
}

.flex-6-12 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  min-width: 50%;
}

.flex-7-12 {
  width: 58.33333%;
  max-width: 58.33333%;
  flex-basis: 58.33333%;
  min-width: 58.33333%;
}

.flex-8-12 {
  width: 66.66667%;
  max-width: 66.66667%;
  flex-basis: 66.66667%;
  min-width: 66.66667%;
}

.flex-9-12 {
  width: 75%;
  max-width: 75%;
  flex-basis: 75%;
  min-width: 75%;
}

.flex-10-12 {
  width: 83.33333%;
  max-width: 83.33333%;
  flex-basis: 83.33333%;
  min-width: 83.33333%;
}

.flex-11-12 {
  width: 91.66667%;
  max-width: 91.66667%;
  flex-basis: 91.66667%;
  min-width: 91.66667%;
} */



@media (min-width: 1300px) {

  /* Horizontal positions flex items */

.flex-xl-left {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  /* text-align: left; */
  display:flex;
  flex-wrap:wrap;
}


.flex-xl-center {
  -ms-justify-content: center;
  justify-content: center;
  /* text-align: center; */
  display:flex;
  flex-wrap:wrap;
}


.flex-xl-right {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  /* text-align: right; */
  display:flex;
  flex-wrap:wrap;
}

/* Vertical positions flex items */

.flex-xl-top {
  -ms-align-items: flex-start;
  align-items: flex-start;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}

.flex-xl-middle {
  -ms-align-items: center;
  align-items: center;
  display:flex;
  flex-wrap:wrap;
}

.flex-xl-bottom {
  -ms-align-items: flex-end;
  align-items: flex-end;
  display:flex;
  flex-wrap:wrap;
}

/* Left vertical positions */


.flex-xl-left-bottom {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
}

.flex-xl-left-top {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
}

.flex-xl-left-middle {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
  display:flex;
  flex-wrap:wrap;
  align-items: center;
}

.flex-xl-left-between {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  display:flex;
  flex-wrap:wrap;
  align-content: space-between;
}

  .flex-xl-left-around {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    display:flex;
    flex-wrap:wrap;
    align-content: space-around;
  }

/* Right vertical positions */

.flex-xl-right-bottom {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
}

.flex-xl-right-top {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
}

.flex-xl-right-start {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.flex-xl-right-end {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

.flex-xl-right-middle{
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
  display:flex;
  flex-wrap:wrap;
  align-items: center;
}

.flex-xl-right-between {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  display:flex;
  flex-wrap:wrap;
  align-content: space-between;
}

  .flex-xl-right-around {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    display:flex;
    flex-wrap:wrap;
    align-content: space-around;
  }

/* center vertical positions */

.flex-xl-center-top {
  -ms-align-items: flex-start;
  align-items: flex-start;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: flex-start;
  justify-content: center;
  flex-wrap:wrap;
}

.flex-xl-center-middle {
  -ms-align-items: flex-start;
  align-items: flex-start;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: center;
  justify-content: center;
  flex-wrap:wrap;
}

.flex-xl-center-bottom {
  -ms-align-items: flex-start;
  align-items: flex-end;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: flex-end;
  justify-content: center;
  flex-wrap:wrap;
}

.flex-xl-center-between {
  -ms-justify-content: center;
  justify-content: center;
  display:flex;
  flex-wrap:wrap;
  align-content: space-between;
}

  .flex-xl-center-around {
    -ms-justify-content: center;
    justify-content: center;
    display:flex;
    flex-wrap:wrap;
    align-content: space-around;
  }


/* top horizontal positions */

.flex-xl-top-center {
  -ms-align-items: flex-start;
  align-items: flex-start;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: flex-start;
  justify-content: center;
  flex-wrap:wrap;
}

.flex-xl-top-left {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.flex-xl-top-right {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.flex-xl-top-between {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

  .flex-xl-top-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }

/* bottom horizontal positions */

.flex-xl-bottom-center {
  -ms-align-items: flex-start;
  align-items: flex-end;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: flex-end;
  justify-content: center;
  flex-wrap:wrap;
}

.flex-xl-bottom-left {
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

.flex-xl-bottom-right {
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

.flex-xl-bottom-between {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

  .flex-xl-bottom-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }


/* middle horizontal positions */

.flex-xl-middle-left {
  -ms-align-items: center;
  align-items: center;
  display:flex;
  -ms-flex-wrap:wrap;
  justify-content: flex-start;
  flex-wrap:wrap;
  align-content: center;
  
}

.flex-xl-middle-center {
  -ms-justify-content: center;
  justify-content: center;
  text-align: center;
  display:flex;
  flex-wrap:wrap;
  align-content: center;
  align-items: center;
}

.flex-xl-middle-right {
  -ms-align-items: center;
  align-items: center;
  display:flex;
  -ms-flex-wrap:wrap;
  align-content: center;
  justify-content: flex-end;
  flex-wrap:wrap;
}

.flex-xl-middle-between {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  align-content: center;
}

.flex-xl-middle-around {
  -ms-justify-content: space-around;
  justify-content: space-around;
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  align-content: center;
}

/* between vertical positions */

.flex-xl-between-middle {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  align-content: center;
}

.flex-xl-between-bottom {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

.flex-xl-between-top {
  -ms-justify-content: space-between;
  justify-content: space-between;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

/* around vertical positions */

.flex-xl-around-middle {
  -ms-justify-content: space-around;
  justify-content: space-around;
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  align-content: center;
}

.flex-xl-around-bottom {
  -ms-justify-content: space-around;
  justify-content: space-around;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-end;
  align-content: flex-end;
}

.flex-xl-around-top {
  -ms-justify-content: space-around;
  justify-content: space-around;
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.flex-xl-between {
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-align-content: space-between;
  align-content: space-between;
  display:flex;
  flex-wrap:wrap;
}

.flex-xl-around {
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-align-content: space-around;
  align-content: space-around;
  display:flex;
  flex-wrap:wrap;
}

.flex-xl-baseline {
  -ms-align-items: baseline;
  align-items: baseline;
  display:flex;
  flex-wrap:wrap;
}


.flex-xl-stretch {
  align-items: stretch;
  display:flex;
  flex-wrap:wrap;
  align-content: stretch;
}



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

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

  .justify-xl-center {
    justify-content: center !important;
  }

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

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



  /*ALIGN-ITEMS*/

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

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

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

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

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



  /*SELF-ITEMS*/

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

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

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

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

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


  /*ALIGN-CONTENT*/

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

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

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

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

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

  .d-xl-table {
    display: table;
    table-layout: fixed;
    flex-direction: initial;
    flex-wrap: initial;
    -ms-justify-content: initial;
    justify-content: initial;
    -ms-align-content: initial;
    align-content: initial;
    -ms-align-items: initial;
    align-items: initial;
    -webkit-column-count: auto;
    column-count: auto;
  }

  .d-xl-table > * {
    display: table-cell;
  }

  .d-xl-flexbox {
    display: flex;
    table-layout: auto;
    flex-direction: row;
    flex-wrap: wrap;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-align-content: center;
    align-content: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-column-count: auto;
    column-count: auto;
  }

  .d-xl-flexbox > * {
    display: inline-block;
  }

  .d-xl-normal {
    display: block;
    table-layout: auto;
    flex-direction: initial;
    flex-wrap: initial;
    -ms-justify-content: initial;
    justify-content: initial;
    -ms-align-content: initial;
    align-content: initial;
    -ms-align-items: initial;
    align-items: initial;
    -webkit-column-count: auto;
    column-count: auto;
  }

  .flex-xl-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    display:flex;
  }

  .flex-xl-not-reverse {
    flex-direction: row;
    flex-wrap: wrap;
    display:flex;
  }

  .d-xl-normal > * {
    display: inline-block;
  }

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

  .flex-xl-column > *{
    flex-basis: auto;
  }
  .flex-xl-column-reverse > *{
    flex-basis: auto;
  }

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

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

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

  .flex-xl-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    /* text-align: left; */
    flex-wrap: wrap;
    display:flex;
  }

  .flex-xl-center {
    -ms-justify-content: center;
    justify-content: center;
    /* text-align: center; */
    flex-wrap: wrap;
    display:flex;
  }

  .flex-xl-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    /* text-align: right; */
    flex-wrap: wrap;
    display:flex;
  }

  .flex-xl-top {
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    display:flex;
  }

  .xl-top > * {
    vertical-align: top;
  }

  .flex-xl-middle {
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    display:flex;
  }

  .flex-xl-middle > * {
    vertical-align: middle;
  }

  .flex-xl-bottom {
    -ms-align-items: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    display:flex;
  }

  .flex-xl-bottom > * {
    vertical-align: bottom;
  }

  .flex-xl-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-align-content: space-between;
    align-content: space-between;
    flex-wrap: wrap;
    display:flex;
  }

  .flex-xl-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-align-content: space-around;
    align-content: space-around;
    flex-wrap: wrap;
    display:flex;
  }

  .flex-xl-baseline {
    -ms-align-items: baseline;
    align-items: baseline;
    flex-wrap: wrap;
    display:flex;
  }

  .flex-xl-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    display:flex;
  }

  .flex-xl-not-reverse {
    flex-direction: row;
    flex-wrap: wrap;
    flex-wrap: wrap;
    display:flex;
  }    

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

  .flex-xl-wrap-reverse{
    flex-wrap: wrap-reverse;
  }

  .flex-xl-auto > * {
    width: auto;
  }

  .col-items-xl-1 > * {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .col-items-xl-2 > * {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }

  .col-items-xl-3 > * {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }

  .col-items-xl-4 > * {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }

  .col-items-xl-5 > * {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }

  .col-items-xl-6 > * {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }

  .col-items-xl-7 > * {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }

  .col-items-xl-8 > * {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }

  .col-items-xl-9 > * {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }

  .col-items-xl-10 > * {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }

  .col-items-xl-11 > * {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }

  .col-items-xl-12 > * {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }

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

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

  .xl-first {
    order: -1;
  }

  .xl-not-first {
    order: 0;
  }

  .xl-last {
    order: 1;
  }

  .xl-not-last {
    order: 0;
  }

  .xl-gutter-0 {
    width: calc(100% + 0px);
    margin-left: -0px;
    margin-right: -0px;
    padding-left: 0;
    padding-right: 0;
  }

  .xl-gutter-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }

  .xl-gutter-8 {
    width: calc(100% + 8px);
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 0;
    padding-right: 0;
  }

  .xl-gutter-8 > * {
    padding-left: 4px;
    padding-right: 4px;
  }

  .xl-gutter-16 {
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 0;
    padding-right: 0;
  }

  .xl-gutter-16 > * {
    padding-left: 8px;
    padding-right: 8px;
  }

  .xl-gutter-24 {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 0;
    padding-right: 0;
  }

  .xl-gutter-24 > * {
    padding-left: 12px;
    padding-right: 12px;
  }

  .xl-gutter-40 {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 0;
    padding-right: 0;
  }

  .xl-gutter-40 > * {
    padding-left: 20px;
    padding-right: 20px;
  }

  .xl-outside-0 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0px;
    padding-right: 0px;
  }

  .xl-outside-8 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 4px;
    padding-right: 4px;
  }

  .xl-outside-16 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .xl-outside-24 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .xl-outside-40 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .xl-masonry-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }

  .xl-masonry-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }

  .xl-masonry-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }

  .xl-masonry-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }

  .xl-masonry-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }


  .col-xl-1-1 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .col-xl-1-2 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }

  .col-xl-1-3 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }

  .col-xl-2-3 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }

  .col-xl-1-4 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }

  .col-xl-2-4 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }

  .col-xl-3-4 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }

  .col-xl-1-5 {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }

  .col-xl-2-5 {
    width: 40%;
    max-width: 40%;
    flex-basis: 40%;
  }

  .col-xl-3-5 {
    width: 60%;
    max-width: 60%;
    flex-basis: 60%;
  }

  .col-xl-4-5 {
    width: 80%;
    max-width: 80%;
    flex-basis: 80%;
  }

  .col-xl-1-6 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }

  .col-xl-2-6 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }

  .col-xl-3-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }

  .col-xl-4-6 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }

  .col-xl-5-6 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }

  .col-xl-1-7 {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }

  .col-xl-2-7 {
    width: 28.57143%;
    max-width: 28.57143%;
    flex-basis: 28.57143%;
  }

  .col-xl-3-7 {
    width: 42.85714%;
    max-width: 42.85714%;
    flex-basis: 42.85714%;
  }

  .col-xl-4-7 {
    width: 57.14286%;
    max-width: 57.14286%;
    flex-basis: 57.14286%;
  }

  .col-xl-5-7 {
    width: 71.42857%;
    max-width: 71.42857%;
    flex-basis: 71.42857%;
  }

  .col-xl-6-7 {
    width: 85.71429%;
    max-width: 85.71429%;
    flex-basis: 85.71429%;
  }

  .col-xl-1-8 {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }

  .col-xl-2-8 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }

  .col-xl-3-8 {
    width: 37.5%;
    max-width: 37.5%;
    flex-basis: 37.5%;
  }

  .col-xl-4-8 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }

  .col-xl-5-8 {
    width: 62.5%;
    max-width: 62.5%;
    flex-basis: 62.5%;
  }

  .col-xl-6-8 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }

  .col-xl-7-8 {
    width: 87.5%;
    max-width: 87.5%;
    flex-basis: 87.5%;
  }

  .col-xl-1-9 {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }

  .col-xl-2-9 {
    width: 22.22222%;
    max-width: 22.22222%;
    flex-basis: 22.22222%;
  }

  .col-xl-3-9 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }

  .col-xl-4-9 {
    width: 44.44444%;
    max-width: 44.44444%;
    flex-basis: 44.44444%;
  }

  .col-xl-5-9 {
    width: 55.55556%;
    max-width: 55.55556%;
    flex-basis: 55.55556%;
  }

  .col-xl-6-9 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }

  .col-xl-7-9 {
    width: 77.77778%;
    max-width: 77.77778%;
    flex-basis: 77.77778%;
  }

  .col-xl-8-9 {
    width: 88.88889%;
    max-width: 88.88889%;
    flex-basis: 88.88889%;
  }

  .col-xl-1-10 {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }

  .col-xl-2-10 {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }

  .col-xl-3-10 {
    width: 30%;
    max-width: 30%;
    flex-basis: 30%;
  }

  .col-xl-4-10 {
    width: 40%;
    max-width: 40%;
    flex-basis: 40%;
  }

  .col-xl-5-10 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }

  .col-xl-6-10 {
    width: 60%;
    max-width: 60%;
    flex-basis: 60%;
  }

  .col-xl-7-10 {
    width: 70%;
    max-width: 70%;
    flex-basis: 70%;
  }

  .col-xl-8-10 {
    width: 80%;
    max-width: 80%;
    flex-basis: 80%;
  }

  .col-xl-9-10 {
    width: 90%;
    max-width: 90%;
    flex-basis: 90%;
  }

  .col-xl-1-11 {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }

  .col-xl-2-11 {
    width: 18.18182%;
    max-width: 18.18182%;
    flex-basis: 18.18182%;
  }

  .col-xl-3-11 {
    width: 27.27273%;
    max-width: 27.27273%;
    flex-basis: 27.27273%;
  }

  .col-xl-4-11 {
    width: 36.36364%;
    max-width: 36.36364%;
    flex-basis: 36.36364%;
  }

  .col-xl-5-11 {
    width: 45.45455%;
    max-width: 45.45455%;
    flex-basis: 45.45455%;
  }

  .col-xl-6-11 {
    width: 54.54545%;
    max-width: 54.54545%;
    flex-basis: 54.54545%;
  }

  .col-xl-7-11 {
    width: 63.63636%;
    max-width: 63.63636%;
    flex-basis: 63.63636%;
  }

  .col-xl-8-11 {
    width: 72.72727%;
    max-width: 72.72727%;
    flex-basis: 72.72727%;
  }

  .col-xl-9-11 {
    width: 81.81818%;
    max-width: 81.81818%;
    flex-basis: 81.81818%;
  }

  .col-xl-10-11 {
    width: 90.90909%;
    max-width: 90.90909%;
    flex-basis: 90.90909%;
  }

  .col-xl-1-12 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }

  .col-xl-2-12 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }

  .col-xl-3-12 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }

  .col-xl-4-12 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }

  .col-xl-5-12 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }

  .col-xl-6-12 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }

  .col-xl-7-12 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }

  .col-xl-8-12 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }

  .col-xl-9-12 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }

  .col-xl-10-12 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }

  .col-xl-11-12 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }

  .col-xl-12-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .xl-hidden {
    display: none !important;
  }
  .xl-not-hidden {
    display: inline-block !important;
  }

  .xl-first {
    order: -1;
  }
  .xl-not-first {
    order: 0;
  }
  .xl-last {
    order: 1;
  }
  .xl-not-last {
    order: 0;
  }
  .xl-gutter-0 {
    width: calc(100% + 0px);
    margin-left: -0px;
    margin-right: -0px;
    padding-left: 0;
    padding-right: 0;
  }
  .xl-gutter-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }
  .xl-gutter-8 {
    width: calc(100% + 8px);
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 0;
    padding-right: 0;
  }
  .xl-gutter-8 > * {
    padding-left: 4px;
    padding-right: 4px;
  }
  .xl-gutter-16 {
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 0;
    padding-right: 0;
  }
  .xl-gutter-16 > * {
    padding-left: 8px;
    padding-right: 8px;
  }
  .xl-gutter-24 {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 0;
    padding-right: 0;
  }
  .xl-gutter-24 > * {
    padding-left: 12px;
    padding-right: 12px;
  }
  .xl-gutter-40 {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 0;
    padding-right: 0;
  }
  .xl-gutter-40 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
  .xl-outside-0 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0px;
    padding-right: 0px;
  }
  .xl-outside-8 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 4px;
    padding-right: 4px;
  }
  .xl-outside-16 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
  .xl-outside-24 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
  .xl-outside-40 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .xl-masonry-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .xl-masonry-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
  .xl-masonry-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
  .xl-masonry-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }
  .xl-masonry-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }

  .h1-xl {
    font-size: 4rem !important;
  }

  .h2-xl {
    font-size: 3rem !important;
  }
  .h3-xl {
    font-size: 2rem !important;
  }

  .h4-xl {
    font-size: 1.5rem !important;
  }

  .h5-xl {
    font-size: 1.25rem !important;
  }

  .h6-xl {
    font-size: 1rem !important;
  }

  .h7-xl {
    font-size: .9rem !important;
  }

  .h8-xl {
    font-size: .8rem !important;
  }

  .h9-xl {
    font-size: .7rem !important;
  }

  .h9-xl {
    font-size: .6rem !important;
  }

  .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: 2.5rem !important;
  }
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 2.5rem !important;
  }
  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 2.5rem !important;
  }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 2.5rem !important;
  }
  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 2.5rem !important;
  }
  .m-xl-7 {
    margin: 3rem !important;
  }
  .mt-xl-7,
  .my-xl-7 {
    margin-top: 3rem !important;
  }
  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 3rem !important;
  }
  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 3rem !important;
  }
  .m-xl-8 {
    margin: 3.5rem !important;
  }
  .mt-xl-8,
  .my-xl-8 {
    margin-top: 3.5rem !important;
  }
  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 3.5rem !important;
  }
  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 3.5rem !important;
  }
  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 3.5rem !important;
  }
  .m-xl-9 {
    margin: 4rem !important;
  }
  .mt-xl-9,
  .my-xl-9 {
    margin-top: 4rem !important;
  }
  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 4rem !important;
  }
  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 4rem !important;
  }
  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 4rem !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: 2.5rem !important;
  }
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 2.5rem !important;
  }
  .pr-xl-6,
  .px-xl-6 {
    padding-right: 2.5rem !important;
  }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 2.5rem !important;
  }
  .pl-xl-6,
  .px-xl-6 {
    padding-left: 2.5rem !important;
  }
  .p-xl-7 {
    padding: 3rem !important;
  }
  .pt-xl-7,
  .py-xl-7 {
    padding-top: 3rem !important;
  }
  .pr-xl-7,
  .px-xl-7 {
    padding-right: 3rem !important;
  }
  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 3rem !important;
  }
  .p-xl-8 {
    padding: 3.5rem !important;
  }
  .pt-xl-8,
  .py-xl-8 {
    padding-top: 3.5rem !important;
  }
  .pr-xl-8,
  .px-xl-8 {
    padding-right: 3.5rem !important;
  }
  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 3.5rem !important;
  }
  .pl-xl-8,
  .px-xl-8 {
    padding-left: 3.5rem !important;
  }
  .p-xl-9 {
    padding: 4rem !important;
  }
  .pt-xl-9,
  .py-xl-9 {
    padding-top: 4rem !important;
  }
  .pr-xl-9,
  .px-xl-9 {
    padding-right: 4rem !important;
  }
  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 4rem !important;
  }
  .pl-xl-9,
  .px-xl-9 {
    padding-left: 4rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-absolute{
    position: absolute;
  }
  .p-xl-relative{
    position: relative;
  }
  
  .position-xl-relative{
    position: relative;
  }
  
  .position-xl-absolute
  {
    position: absolute;
  }
}
/* 
@media (min-width: 1199px) and (max-width: 1300px) {
    .visible-lg {
    display: block;
    }
  } */

@media (max-width: 1199px) {
  .justify-lg-start {
    justify-content: flex-start !important;
  }

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

  .justify-lg-center {
    justify-content: center !important;
  }

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

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



  /*ALIGN-ITEMS*/

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

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

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

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

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



  /*SELF-ITEMS*/

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

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

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

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

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


  /*ALIGN-CONTENT*/

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

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

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

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

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


  .col-items-lg-auto > * {
    width: auto;
  }
  .col-items-lg-1 > * {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .col-items-lg-2 > * {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-items-lg-3 > * {
    width: 33.33333%;
    flex-basis: 33.33333% !important;
  }
  .col-items-lg-4 > * {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-items-lg-5 > * {
    max-width: 20%;
  }
  .col-items-lg-6 > * {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-items-lg-7 > * {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .col-items-lg-8 > * {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .col-items-lg-9 > * {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .col-items-lg-10 > * {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .col-items-lg-11 > * {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .col-items-lg-12 > * {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .lg-table {
    display: table;
    table-layout: fixed;
    flex-direction: initial;
    flex-wrap: initial;
    -ms-justify-content: initial;
    justify-content: initial;
    -ms-align-content: initial;
    align-content: initial;
    -ms-align-items: initial;
    align-items: initial;
    -webkit-column-count: auto;
    column-count: auto;
  }
  .lg-table > * {
    display: table-cell;
  }
  .lg-flexbox {
    display: flex;
    table-layout: auto;
    flex-direction: row;
    flex-wrap: wrap;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-align-content: center;
    align-content: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-column-count: auto;
    column-count: auto;
  }
  .lg-flexbox > * {
    display: inline-block;
  }
  .lg-normal {
    display: block;
    table-layout: auto;
    flex-direction: initial;
    flex-wrap: initial;
    -ms-justify-content: initial;
    justify-content: initial;
    -ms-align-content: initial;
    align-content: initial;
    -ms-align-items: initial;
    align-items: initial;
    -webkit-column-count: auto;
    column-count: auto;
  }
  .lg-normal > * {
    display: inline-block;
  }

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

  .flex-lg-wrap-reverse{
    flex-wrap: wrap-reverse;
  }

  .flex-lg-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    display:flex;

  }

  .flex-lg-not-reverse {
    flex-direction: row;
    flex-wrap: wrap;
    display:flex;

  }

  .flex-lg-column {
    flex-direction: column
  }

  .flex-lg-column > *{
    flex-basis: auto;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse;
  }

  .flex-lg-column-reverse > *{
    flex-basis: auto;
  }


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

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

  .flex-lg-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    /* text-align: left; */
    flex-wrap: wrap;
    display:flex
  }
  .flex-lg-center {
    -ms-justify-content: center;
    justify-content: center;
    /* text-align: center; */
    flex-wrap: wrap;
    display:flex
  }
  .flex-lg-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    /* text-align: right; */
    flex-wrap: wrap;
    display:flex
  }
  .flex-lg-top {
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    display:-webkit-box;
    align-content: flex-start;
    display:flex
  }
  .flex-lg-top > * {
    vertical-align: top;
  }
  .flex-lg-middle {
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    display:flex
  }
  .flex-lg-middle > * {
    vertical-align: middle;
  }
  .flex-lg-bottom {
    -ms-align-items: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    display:flex
  }
  .flex-lg-bottom > * {
    vertical-align: bottom;
  }
  .flex-lg-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-align-content: space-between;
    align-content: space-between;
    flex-wrap: wrap;
    display:flex;
  }
  .flex-lg-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-align-content: space-around;
    align-content: space-around;
    flex-wrap: wrap;
    display:flex;
  }
  .flex-lg-baseline {
    -ms-align-items: baseline;
    align-items: baseline;
    flex-wrap: wrap;
    display:flex;
  }
  .flex-lg-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    display:flex;
  }
  .flex-lg-not-reverse {
    flex-direction: row;
    flex-wrap: wrap;
    display:flex;
  }
  .col-lg-1-1 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .col-lg-1-2 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-lg-1-3 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-lg-2-3 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-lg-1-4 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-lg-2-4 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-lg-3-4 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-lg-1-5 {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .col-lg-2-5 {
    width: 40%;
    max-width: 40%;
    flex-basis: 40%;
  }
  .col-lg-3-5 {
    width: 60%;
    max-width: 60%;
    flex-basis: 60%;
  }
  .col-lg-4-5 {
    width: 80%;
    max-width: 80%;
    flex-basis: 80%;
  }
  .col-lg-1-6 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-lg-2-6 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-lg-3-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-lg-4-6 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-lg-5-6 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .col-lg-1-7 {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .col-lg-2-7 {
    width: 28.57143%;
    max-width: 28.57143%;
    flex-basis: 28.57143%;
  }
  .col-lg-3-7 {
    width: 42.85714%;
    max-width: 42.85714%;
    flex-basis: 42.85714%;
  }
  .col-lg-4-7 {
    width: 57.14286%;
    max-width: 57.14286%;
    flex-basis: 57.14286%;
  }
  .col-lg-5-7 {
    width: 71.42857%;
    max-width: 71.42857%;
    flex-basis: 71.42857%;
  }
  .col-lg-6-7 {
    width: 85.71429%;
    max-width: 85.71429%;
    flex-basis: 85.71429%;
  }
  .col-lg-1-8 {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .col-lg-2-8 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-lg-3-8 {
    width: 37.5%;
    max-width: 37.5%;
    flex-basis: 37.5%;
  }
  .col-lg-4-8 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-lg-5-8 {
    width: 62.5%;
    max-width: 62.5%;
    flex-basis: 62.5%;
  }
  .col-lg-6-8 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-lg-7-8 {
    width: 87.5%;
    max-width: 87.5%;
    flex-basis: 87.5%;
  }
  .col-lg-1-9 {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .col-lg-2-9 {
    width: 22.22222%;
    max-width: 22.22222%;
    flex-basis: 22.22222%;
  }
  .col-lg-3-9 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-lg-4-9 {
    width: 44.44444%;
    max-width: 44.44444%;
    flex-basis: 44.44444%;
  }
  .col-lg-5-9 {
    width: 55.55556%;
    max-width: 55.55556%;
    flex-basis: 55.55556%;
  }
  .col-lg-6-9 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-lg-7-9 {
    width: 77.77778%;
    max-width: 77.77778%;
    flex-basis: 77.77778%;
  }
  .col-lg-8-9 {
    width: 88.88889%;
    max-width: 88.88889%;
    flex-basis: 88.88889%;
  }
  .col-lg-1-10 {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .col-lg-2-10 {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .col-lg-3-10 {
    width: 30%;
    max-width: 30%;
    flex-basis: 30%;
  }
  .col-lg-4-10 {
    width: 40%;
    max-width: 40%;
    flex-basis: 40%;
  }
  .col-lg-5-10 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-lg-6-10 {
    width: 60%;
    max-width: 60%;
    flex-basis: 60%;
  }
  .col-lg-7-10 {
    width: 70%;
    max-width: 70%;
    flex-basis: 70%;
  }
  .col-lg-8-10 {
    width: 80%;
    max-width: 80%;
    flex-basis: 80%;
  }
  .col-lg-9-10 {
    width: 90%;
    max-width: 90%;
    flex-basis: 90%;
  }
  .col-lg-1-11 {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .col-lg-2-11 {
    width: 18.18182%;
    max-width: 18.18182%;
    flex-basis: 18.18182%;
  }
  .col-lg-3-11 {
    width: 27.27273%;
    max-width: 27.27273%;
    flex-basis: 27.27273%;
  }
  .col-lg-4-11 {
    width: 36.36364%;
    max-width: 36.36364%;
    flex-basis: 36.36364%;
  }
  .col-lg-5-11 {
    width: 45.45455%;
    max-width: 45.45455%;
    flex-basis: 45.45455%;
  }
  .col-lg-6-11 {
    width: 54.54545%;
    max-width: 54.54545%;
    flex-basis: 54.54545%;
  }
  .col-lg-7-11 {
    width: 63.63636%;
    max-width: 63.63636%;
    flex-basis: 63.63636%;
  }
  .col-lg-8-11 {
    width: 72.72727%;
    max-width: 72.72727%;
    flex-basis: 72.72727%;
  }
  .col-lg-9-11 {
    width: 81.81818%;
    max-width: 81.81818%;
    flex-basis: 81.81818%;
  }
  .col-lg-10-11 {
    width: 90.90909%;
    max-width: 90.90909%;
    flex-basis: 90.90909%;
  }
  .col-lg-1-12 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .col-lg-2-12 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-lg-3-12 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-lg-4-12 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-lg-5-12 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .col-lg-6-12 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-lg-7-12 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .col-lg-8-12 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-lg-9-12 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-lg-10-12 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .col-lg-11-12 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }

  .col-lg-12-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .lg-hidden {
    display: none !important;
  }
  .lg-not-hidden {
    display: inline-block !important;
  }
  .lg-first {
    order: -1;
  }
  .lg-not-first {
    order: 0;
  }
  .lg-last {
    order: 1;
  }
  .lg-not-last {
    order: 0;
  }
  .lg-gutter-0 {
    width: calc(100% + 0px);
    margin-left: -0px;
    margin-right: -0px;
    padding-left: 0;
    padding-right: 0;
  }
  .lg-gutter-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }
  .lg-gutter-8 {
    width: calc(100% + 8px);
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 0;
    padding-right: 0;
  }
  .lg-gutter-8 > * {
    padding-left: 4px;
    padding-right: 4px;
  }
  .lg-gutter-16 {
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 0;
    padding-right: 0;
  }
  .lg-gutter-16 > * {
    padding-left: 8px;
    padding-right: 8px;
  }
  .lg-gutter-24 {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 0;
    padding-right: 0;
  }
  .lg-gutter-24 > * {
    padding-left: 12px;
    padding-right: 12px;
  }
  .lg-gutter-40 {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 0;
    padding-right: 0;
  }
  .lg-gutter-40 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
  .lg-outside-0 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0px;
    padding-right: 0px;
  }
  .lg-outside-8 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 4px;
    padding-right: 4px;
  }
  .lg-outside-16 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
  .lg-outside-24 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
  .lg-outside-40 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .lg-masonry-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .lg-masonry-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
  .lg-masonry-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
  .lg-masonry-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }
  .lg-masonry-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }

  .h1-lg {
    font-size: 4rem !important;
  }

  .h2-lg {
    font-size: 3rem !important;
  }
  .h3-lg {
    font-size: 2rem !important;
  }

  .h4-lg {
    font-size: 1.5rem !important;
  }

  .h5-lg {
    font-size: 1.25rem !important;
  }

  .h6-lg {
    font-size: 1rem !important;
  }

  .h7-lg {
    font-size: .9rem !important;
  }

  .h8-lg {
    font-size: .8rem !important;
  }

  .h9-lg {
    font-size: .7rem !important;
  }

  .h9-lg {
    font-size: .6rem !important;
  }

  .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: 2.5rem !important;
  }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 2.5rem !important;
  }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 2.5rem !important;
  }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 2.5rem !important;
  }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 2.5rem !important;
  }
  .m-lg-7 {
    margin: 3rem !important;
  }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 3rem !important;
  }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 3rem !important;
  }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 3rem !important;
  }
  .m-lg-8 {
    margin: 3.5rem !important;
  }
  .mt-lg-8,
  .my-lg-8 {
    margin-top: 3.5rem !important;
  }
  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 3.5rem !important;
  }
  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 3.5rem !important;
  }
  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 3.5rem !important;
  }
  .m-lg-9 {
    margin: 4rem !important;
  }
  .mt-lg-9,
  .my-lg-9 {
    margin-top: 4rem !important;
  }
  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 4rem !important;
  }
  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 4rem !important;
  }
  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 4rem !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: 2.5rem !important;
  }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 2.5rem !important;
  }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 2.5rem !important;
  }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 2.5rem !important;
  }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 2.5rem !important;
  }
  .p-lg-7 {
    padding: 3rem !important;
  }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 3rem !important;
  }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 3rem !important;
  }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 3rem !important;
  }
  .p-lg-8 {
    padding: 3.5rem !important;
  }
  .pt-lg-8,
  .py-lg-8 {
    padding-top: 3.5rem !important;
  }
  .pr-lg-8,
  .px-lg-8 {
    padding-right: 3.5rem !important;
  }
  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 3.5rem !important;
  }
  .pl-lg-8,
  .px-lg-8 {
    padding-left: 3.5rem !important;
  }
  .p-lg-9 {
    padding: 4rem !important;
  }
  .pt-lg-9,
  .py-lg-9 {
    padding-top: 4rem !important;
  }
  .pr-lg-9,
  .px-lg-9 {
    padding-right: 4rem !important;
  }
  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 4rem !important;
  }
  .pl-lg-9,
  .px-lg-9 {
    padding-left: 4rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-absolute{
    position: absolute;
  }
  .p-lg-relative{
    position: relative;
  }
  
  .position-lg-relative{
    position: relative;
  }
  
  .position-lg-absolute
  {
    position: absolute;
  }
}

@media (max-width: 991px) {
  .flex-md-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    /* text-align: left; */
    display:flex;
    flex-wrap:wrap;
  }
  
  
  .flex-md-center {
    -ms-justify-content: center;
    justify-content: center;
    /* text-align: center; */
    display:flex;
    flex-wrap:wrap;
  }
  
  
  .flex-md-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    /* text-align: right; */
    display:flex;
    flex-wrap:wrap;
  }
  
  /* Vertical positions flex items */
  
  .flex-md-top {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
  }
  
  .flex-md-middle {
    -ms-align-items: center;
    align-items: center;
    display:flex;
    flex-wrap:wrap;
  }
  
  .flex-md-bottom {
    -ms-align-items: flex-end;
    align-items: flex-end;
    display:flex;
    flex-wrap:wrap;
  }
  
  /* Left vertical positions */
  
  
  .flex-md-left-bottom {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
  }
  
  .flex-md-left-top {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
  }
  
  .flex-md-left-middle {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
  }
  
  .flex-md-left-between {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    display:flex;
    flex-wrap:wrap;
    align-content: space-between;
  }
  
    .flex-md-left-around {
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      display:flex;
      flex-wrap:wrap;
      align-content: space-around;
    }
  
  /* Right vertical positions */
  
  .flex-md-right-bottom {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
  }
  
  .flex-md-right-top {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
  }
  
  .flex-md-right-start {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-md-right-end {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-md-right-middle{
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
  }
  
  .flex-md-right-between {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    display:flex;
    flex-wrap:wrap;
    align-content: space-between;
  }
  
    .flex-md-right-around {
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      display:flex;
      flex-wrap:wrap;
      align-content: space-around;
    }
  
  /* center vertical positions */
  
  .flex-md-center-top {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-start;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-md-center-middle {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: center;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-md-center-bottom {
    -ms-align-items: flex-start;
    align-items: flex-end;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-end;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-md-center-between {
    -ms-justify-content: center;
    justify-content: center;
    display:flex;
    flex-wrap:wrap;
    align-content: space-between;
  }
  
    .flex-md-center-around {
      -ms-justify-content: center;
      justify-content: center;
      display:flex;
      flex-wrap:wrap;
      align-content: space-around;
    }
  
  
  /* top horizontal positions */
  
  .flex-md-top-center {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-start;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-md-top-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-md-top-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-md-top-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
    .flex-md-top-around {
      -ms-justify-content: space-around;
      justify-content: space-around;
      display:flex;
      flex-wrap:wrap;
      align-items: flex-end;
      align-content: flex-end;
    }
  
  /* bottom horizontal positions */
  
  .flex-md-bottom-center {
    -ms-align-items: flex-start;
    align-items: flex-end;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-end;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-md-bottom-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-md-bottom-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-md-bottom-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
    .flex-md-bottom-around {
      -ms-justify-content: space-around;
      justify-content: space-around;
      display:flex;
      flex-wrap:wrap;
      align-items: flex-end;
      align-content: flex-end;
    }
  
  
  /* middle horizontal positions */
  
  .flex-md-middle-left {
    -ms-align-items: center;
    align-items: center;
    display:flex;
    -ms-flex-wrap:wrap;
    justify-content: flex-start;
    flex-wrap:wrap;
    align-content: center;
    
  }
  
  .flex-md-middle-center {
    -ms-justify-content: center;
    justify-content: center;
    text-align: center;
    display:flex;
    flex-wrap:wrap;
    align-content: center;
    align-items: center;
  }
  
  .flex-md-middle-right {
    -ms-align-items: center;
    align-items: center;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: center;
    justify-content: flex-end;
    flex-wrap:wrap;
  }
  
  .flex-md-middle-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  .flex-md-middle-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  /* between vertical positions */
  
  .flex-md-between-middle {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  .flex-md-between-bottom {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-md-between-top {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  /* around vertical positions */
  
  .flex-md-around-middle {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  .flex-md-around-bottom {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-md-around-top {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-md-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-align-content: space-between;
    align-content: space-between;
    display:flex;
    flex-wrap:wrap;
  }
  
  .flex-md-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-align-content: space-around;
    align-content: space-around;
    display:flex;
    flex-wrap:wrap;
  }
  
  .flex-md-baseline {
    -ms-align-items: baseline;
    align-items: baseline;
    display:flex;
    flex-wrap:wrap;
  }
  
  
  .flex-md-stretch {
    align-items: stretch;
    display:flex;
    flex-wrap:wrap;
    align-content: stretch;
  }
  

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

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

  .justify-md-center {
    justify-content: center !important;
  }

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

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



  /*ALIGN-ITEMS*/

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

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

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

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

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



  /*SELF-ITEMS*/

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

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

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

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

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


  /*ALIGN-CONTENT*/

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

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

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

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

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


  .col-items-md-auto > * {
    width: auto;
  }
  .col-items-md-1 > * {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .col-items-md-2 > * {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-items-md-3 > * {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-items-md-4 > * {
    max-width: 25%;
    width: 25%;
    flex-basis: 25%;
  }
  .col-items-md-5 > * {
    max-width: 20%;
  }
  .col-items-md-6 > * {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-items-md-7 > * {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .col-items-md-8 > * {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .col-items-md-9 > * {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .col-items-md-10 > * {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .col-items-md-11 > * {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .col-items-md-12 > * {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .md-table {
    display: table;
    table-layout: fixed;
    flex-direction: initial;
    flex-wrap: initial;
    -ms-justify-content: initial;
    justify-content: initial;
    -ms-align-content: initial;
    align-content: initial;
    -ms-align-items: initial;
    align-items: initial;
    -webkit-column-count: auto;
    column-count: auto;
  }
  .md-table > * {
    display: table-cell;
  }
  .md-flexbox {
    display: flex;
    table-layout: auto;
    flex-direction: row;
    flex-wrap: wrap;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-align-content: center;
    align-content: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-column-count: auto;
    column-count: auto;
  }
  .md-flexbox > * {
    display: inline-block;
  }
  .md-normal {
    display: block;
    table-layout: auto;
    flex-direction: initial;
    flex-wrap: initial;
    -ms-justify-content: initial;
    justify-content: initial;
    -ms-align-content: initial;
    align-content: initial;
    -ms-align-items: initial;
    align-items: initial;
    -webkit-column-count: auto;
    column-count: auto;
  }
  .md-normal > * {
    display: inline-block;
  }

  .flex-md-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    display:flex;

  }

  .flex-md-not-reverse {
    flex-direction: row;
    flex-wrap: wrap;
    display:flex;

  }

  .flex-md-column {
    flex-direction: column ;
    /* flex-basis: unset; */
  }

  .flex-md-column > *{
    flex-basis: auto;
  }


  .flex-md-column-reverse > *{
    flex-basis: auto;
  }

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

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

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


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

  .flex-md-wrap-reverse{
    flex-wrap: wrap-reverse;
  }




  .flex-md-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    flex-wrap: wrap;
    display:flex
  }
  .flex-md-center {
    -ms-justify-content: center;
    justify-content: center;
    /* text-align: center; */
    flex-wrap: wrap;
    display:flex
  }
  .flex-md-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    /* text-align: right; */
    flex-wrap: wrap;
    display:flex
  }
  .flex-md-top {
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    display:flex
  }
  .flex-md-top > * {
    vertical-align: top;
  }
  .flex-md-middle {
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    display:flex
  }
  .flex-md-middle > * {
    vertical-align: middle;
  }
  .flex-md-bottom {
    -ms-align-items: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    display:flex
  }
  .flex-md-bottom > * {
    vertical-align: bottom;
  }
  .flex-md-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-align-content: space-between;
    align-content: space-between;
    flex-wrap: wrap;
    display:flex
  }
  .flex-md-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-align-content: space-around;
    align-content: space-around;
    flex-wrap: wrap;
    display:flex
  }
  .flex-md-baseline {
    -ms-align-items: baseline;
    align-items: baseline;
    flex-wrap: wrap;
    display:flex
  }
  .flex-md-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    display:flex
  }
  .flex-md-not-reverse {
    flex-direction: row;
    flex-wrap: wrap;
    flex-wrap: wrap;
    display:flex
  }
  .col-md-1-1 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .col-md-1-2 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-md-1-3 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-md-2-3 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-md-1-4 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-md-2-4 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-md-3-4 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-md-1-5 {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .col-md-2-5 {
    width: 40%;
    max-width: 40%;
    flex-basis: 40%;
  }
  .col-md-3-5 {
    width: 60%;
    max-width: 60%;
    flex-basis: 60%;
  }
  .col-md-4-5 {
    width: 80%;
    max-width: 80%;
    flex-basis: 80%;
  }
  .col-md-1-6 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-md-2-6 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-md-3-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-md-4-6 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-md-5-6 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .col-md-1-7 {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .col-md-2-7 {
    width: 28.57143%;
    max-width: 28.57143%;
    flex-basis: 28.57143%;
  }
  .col-md-3-7 {
    width: 42.85714%;
    max-width: 42.85714%;
    flex-basis: 42.85714%;
  }
  .col-md-4-7 {
    width: 57.14286%;
    max-width: 57.14286%;
    flex-basis: 57.14286%;
  }
  .col-md-5-7 {
    width: 71.42857%;
    max-width: 71.42857%;
    flex-basis: 71.42857%;
  }
  .col-md-6-7 {
    width: 85.71429%;
    max-width: 85.71429%;
    flex-basis: 85.71429%;
  }
  .col-md-1-8 {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .col-md-2-8 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-md-3-8 {
    width: 37.5%;
    max-width: 37.5%;
    flex-basis: 37.5%;
  }
  .col-md-4-8 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-md-5-8 {
    width: 62.5%;
    max-width: 62.5%;
    flex-basis: 62.5%;
  }
  .col-md-6-8 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-md-7-8 {
    width: 87.5%;
    max-width: 87.5%;
    flex-basis: 87.5%;
  }
  .col-md-1-9 {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .col-md-2-9 {
    width: 22.22222%;
    max-width: 22.22222%;
    flex-basis: 22.22222%;
  }
  .col-md-3-9 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-md-4-9 {
    width: 44.44444%;
    max-width: 44.44444%;
    flex-basis: 44.44444%;
  }
  .col-md-5-9 {
    width: 55.55556%;
    max-width: 55.55556%;
    flex-basis: 55.55556%;
  }
  .col-md-6-9 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-md-7-9 {
    width: 77.77778%;
    max-width: 77.77778%;
    flex-basis: 77.77778%;
  }
  .col-md-8-9 {
    width: 88.88889%;
    max-width: 88.88889%;
    flex-basis: 88.88889%;
  }
  .col-md-1-10 {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .col-md-2-10 {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .col-md-3-10 {
    width: 30%;
    max-width: 30%;
    flex-basis: 30%;
  }
  .col-md-4-10 {
    width: 40%;
    max-width: 40%;
    flex-basis: 40%;
  }
  .col-md-5-10 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-md-6-10 {
    width: 60%;
    max-width: 60%;
    flex-basis: 60%;
  }
  .col-md-7-10 {
    width: 70%;
    max-width: 70%;
    flex-basis: 70%;
  }
  .col-md-8-10 {
    width: 80%;
    max-width: 80%;
    flex-basis: 80%;
  }
  .col-md-9-10 {
    width: 90%;
    max-width: 90%;
    flex-basis: 90%;
  }
  .col-md-1-11 {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .col-md-2-11 {
    width: 18.18182%;
    max-width: 18.18182%;
    flex-basis: 18.18182%;
  }
  .col-md-3-11 {
    width: 27.27273%;
    max-width: 27.27273%;
    flex-basis: 27.27273%;
  }
  .col-md-4-11 {
    width: 36.36364%;
    max-width: 36.36364%;
    flex-basis: 36.36364%;
  }
  .col-md-5-11 {
    width: 45.45455%;
    max-width: 45.45455%;
    flex-basis: 45.45455%;
  }
  .col-md-6-11 {
    width: 54.54545%;
    max-width: 54.54545%;
    flex-basis: 54.54545%;
  }
  .col-md-7-11 {
    width: 63.63636%;
    max-width: 63.63636%;
    flex-basis: 63.63636%;
  }
  .col-md-8-11 {
    width: 72.72727%;
    max-width: 72.72727%;
    flex-basis: 72.72727%;
  }
  .col-md-9-11 {
    width: 81.81818%;
    max-width: 81.81818%;
    flex-basis: 81.81818%;
  }
  .col-md-10-11 {
    width: 90.90909%;
    max-width: 90.90909%;
    flex-basis: 90.90909%;
  }
  .col-md-1-12 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .col-md-2-12 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-md-3-12 {
    max-width: 25%;
  }
  .col-md-4-12 {
    max-width: 33.33333%;
  }
  .col-md-5-12 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .col-md-6-12 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-md-7-12 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .col-md-8-12 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-md-9-12 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-md-10-12 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .col-md-11-12 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }

  .col-md-12-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .md-hidden {
    display: none !important;
  }
  .md-not-hidden {
    display: inline-block !important;
  }
  .md-first {
    order: -1;
  }
  .md-not-first {
    order: 0;
  }
  .md-last {
    order: 1;
  }
  .md-not-last {
    order: 0;
  }
  .md-gutter-0 {
    width: calc(100% + 0px);
    margin-left: -0px;
    margin-right: -0px;
    padding-left: 0;
    padding-right: 0;
  }
  .md-gutter-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }
  .md-gutter-8 {
    width: calc(100% + 8px);
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 0;
    padding-right: 0;
  }
  .md-gutter-8 > * {
    padding-left: 4px;
    padding-right: 4px;
  }
  .md-gutter-16 {
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 0;
    padding-right: 0;
  }
  .md-gutter-16 > * {
    padding-left: 8px;
    padding-right: 8px;
  }
  .md-gutter-24 {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 0;
    padding-right: 0;
  }
  .md-gutter-24 > * {
    padding-left: 12px;
    padding-right: 12px;
  }
  .md-gutter-40 {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 0;
    padding-right: 0;
  }
  .md-gutter-40 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
  .md-outside-0 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0px;
    padding-right: 0px;
  }
  .md-outside-8 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 4px;
    padding-right: 4px;
  }
  .md-outside-16 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
  .md-outside-24 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
  .md-outside-40 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .md-masonry-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .md-masonry-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
  .md-masonry-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
  .md-masonry-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }
  .md-masonry-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }

  .h1-md {
    font-size: 4rem !important;
  }

  .h2-md {
    font-size: 3rem !important;
  }
  .h3-md {
    font-size: 2rem !important;
  }

  .h4-md {
    font-size: 1.5rem !important;
  }

  .h5-md {
    font-size: 1.25rem !important;
  }

  .h6-md {
    font-size: 1rem !important;
  }

  .h7-md {
    font-size: .9rem !important;
  }

  .h8-md {
    font-size: .8rem !important;
  }

  .h9-md {
    font-size: .7rem !important;
  }

  .h9-md {
    font-size: .6rem !important;
  }

  .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: 2.5rem !important;
  }
  .mt-md-6,
  .my-md-6 {
    margin-top: 2.5rem !important;
  }
  .mr-md-6,
  .mx-md-6 {
    margin-right: 2.5rem !important;
  }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 2.5rem !important;
  }
  .ml-md-6,
  .mx-md-6 {
    margin-left: 2.5rem !important;
  }
  .m-md-7 {
    margin: 3rem !important;
  }
  .mt-md-7,
  .my-md-7 {
    margin-top: 3rem !important;
  }
  .mr-md-7,
  .mx-md-7 {
    margin-right: 3rem !important;
  }
  .mb-md-7,
  .my-md-7 {
    margin-bottom: 3rem !important;
  }
  .ml-md-7,
  .mx-md-7 {
    margin-left: 3rem !important;
  }
  .m-md-8 {
    margin: 3.5rem !important;
  }
  .mt-md-8,
  .my-md-8 {
    margin-top: 3.5rem !important;
  }
  .mr-md-8,
  .mx-md-8 {
    margin-right: 3.5rem !important;
  }
  .mb-md-8,
  .my-md-8 {
    margin-bottom: 3.5rem !important;
  }
  .ml-md-8,
  .mx-md-8 {
    margin-left: 3.5rem !important;
  }
  .m-md-9 {
    margin: 4rem !important;
  }
  .mt-md-9,
  .my-md-9 {
    margin-top: 4rem !important;
  }
  .mr-md-9,
  .mx-md-9 {
    margin-right: 4rem !important;
  }
  .mb-md-9,
  .my-md-9 {
    margin-bottom: 4rem !important;
  }
  .ml-md-9,
  .mx-md-9 {
    margin-left: 4rem !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: 2.5rem !important;
  }
  .pt-md-6,
  .py-md-6 {
    padding-top: 2.5rem !important;
  }
  .pr-md-6,
  .px-md-6 {
    padding-right: 2.5rem !important;
  }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 2.5rem !important;
  }
  .pl-md-6,
  .px-md-6 {
    padding-left: 2.5rem !important;
  }
  .p-md-7 {
    padding: 3rem !important;
  }
  .pt-md-7,
  .py-md-7 {
    padding-top: 3rem !important;
  }
  .pr-md-7,
  .px-md-7 {
    padding-right: 3rem !important;
  }
  .pb-md-7,
  .py-md-7 {
    padding-bottom: 3rem !important;
  }
  .pl-md-7,
  .px-md-7 {
    padding-left: 3rem !important;
  }
  .p-md-8 {
    padding: 3.5rem !important;
  }
  .pt-md-8,
  .py-md-8 {
    padding-top: 3.5rem !important;
  }
  .pr-md-8,
  .px-md-8 {
    padding-right: 3.5rem !important;
  }
  .pb-md-8,
  .py-md-8 {
    padding-bottom: 3.5rem !important;
  }
  .pl-md-8,
  .px-md-8 {
    padding-left: 3.5rem !important;
  }
  .p-md-9 {
    padding: 4rem !important;
  }
  .pt-md-9,
  .py-md-9 {
    padding-top: 4rem !important;
  }
  .pr-md-9,
  .px-md-9 {
    padding-right: 4rem !important;
  }
  .pb-md-9,
  .py-md-9 {
    padding-bottom: 4rem !important;
  }
  .pl-md-9,
  .px-md-9 {
    padding-left: 4rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }

  .p-md-absolute{
    position: absolute;
  }
  .p-md-relative{
    position: relative;
  }
  
  .position-md-relative{
    position: relative;
  }
  
  .position-md-absolute
  {
    position: absolute;
  }
}

@media (max-width: 767px) {
  .flex-sm-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    /* text-align: left; */
    display:flex;
    flex-wrap:wrap;
  }
  
  
  .flex-sm-center {
    -ms-justify-content: center;
    justify-content: center;
    /* text-align: center; */
    display:flex;
    flex-wrap:wrap;
  }
  
  
  .flex-sm-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    /* text-align: right; */
    display:flex;
    flex-wrap:wrap;
  }
  
  /* Vertical positions flex items */
  
  .flex-sm-top {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
  }
  
  .flex-sm-middle {
    -ms-align-items: center;
    align-items: center;
    display:flex;
    flex-wrap:wrap;
  }
  
  .flex-sm-bottom {
    -ms-align-items: flex-end;
    align-items: flex-end;
    display:flex;
    flex-wrap:wrap;
  }
  
  /* Left vertical positions */
  
  
  .flex-sm-left-bottom {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
  }
  
  .flex-sm-left-top {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
  }
  
  .flex-sm-left-middle {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
  }
  
  .flex-sm-left-between {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    display:flex;
    flex-wrap:wrap;
    align-content: space-between;
  }
  
    .flex-sm-left-around {
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      display:flex;
      flex-wrap:wrap;
      align-content: space-around;
    }
  
  /* Right vertical positions */
  
  .flex-sm-right-bottom {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
  }
  
  .flex-sm-right-top {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
  }
  
  .flex-sm-right-start {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-sm-right-end {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-sm-right-middle{
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
  }
  
  .flex-sm-right-between {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    display:flex;
    flex-wrap:wrap;
    align-content: space-between;
  }
  
    .flex-sm-right-around {
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      display:flex;
      flex-wrap:wrap;
      align-content: space-around;
    }
  
  /* center vertical positions */
  
  .flex-sm-center-top {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-start;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-sm-center-middle {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: center;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-sm-center-bottom {
    -ms-align-items: flex-start;
    align-items: flex-end;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-end;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-sm-center-between {
    -ms-justify-content: center;
    justify-content: center;
    display:flex;
    flex-wrap:wrap;
    align-content: space-between;
  }
  
    .flex-sm-center-around {
      -ms-justify-content: center;
      justify-content: center;
      display:flex;
      flex-wrap:wrap;
      align-content: space-around;
    }
  
  
  /* top horizontal positions */
  
  .flex-sm-top-center {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-start;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-sm-top-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-sm-top-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-sm-top-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
    .flex-sm-top-around {
      -ms-justify-content: space-around;
      justify-content: space-around;
      display:flex;
      flex-wrap:wrap;
      align-items: flex-end;
      align-content: flex-end;
    }
  
  /* bottom horizontal positions */
  
  .flex-sm-bottom-center {
    -ms-align-items: flex-start;
    align-items: flex-end;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-end;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-sm-bottom-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-sm-bottom-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-sm-bottom-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
    .flex-sm-bottom-around {
      -ms-justify-content: space-around;
      justify-content: space-around;
      display:flex;
      flex-wrap:wrap;
      align-items: flex-end;
      align-content: flex-end;
    }
  
  
  /* middle horizontal positions */
  
  .flex-sm-middle-left {
    -ms-align-items: center;
    align-items: center;
    display:flex;
    -ms-flex-wrap:wrap;
    justify-content: flex-start;
    flex-wrap:wrap;
    align-content: center;
    
  }
  
  .flex-sm-middle-center {
    -ms-justify-content: center;
    justify-content: center;
    text-align: center;
    display:flex;
    flex-wrap:wrap;
    align-content: center;
    align-items: center;
  }
  
  .flex-sm-middle-right {
    -ms-align-items: center;
    align-items: center;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: center;
    justify-content: flex-end;
    flex-wrap:wrap;
  }
  
  .flex-sm-middle-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  .flex-sm-middle-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  /* between vertical positions */
  
  .flex-sm-between-middle {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  .flex-sm-between-bottom {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-sm-between-top {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  /* around vertical positions */
  
  .flex-sm-around-middle {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  .flex-sm-around-bottom {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-sm-around-top {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-sm-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-align-content: space-between;
    align-content: space-between;
    display:flex;
    flex-wrap:wrap;
  }
  
  .flex-sm-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-align-content: space-around;
    align-content: space-around;
    display:flex;
    flex-wrap:wrap;
  }
  
  .flex-sm-baseline {
    -ms-align-items: baseline;
    align-items: baseline;
    display:flex;
    flex-wrap:wrap;
  }
  
  
  .flex-sm-stretch {
    align-items: stretch;
    display:flex;
    flex-wrap:wrap;
    align-content: stretch;
  }
  



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

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

  .justify-sm-center {
    justify-content: center !important;
  }

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

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



  /*ALIGN-ITEMS*/

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

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

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

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

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



  /*SELF-ITEMS*/

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

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

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

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

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


  /*ALIGN-CONTENT*/

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

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

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

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

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


  .col-items-sm-auto > * {
    width: auto;
  }
  .col-items-sm-1 > * {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .col-items-sm-2 > * {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-items-sm-3 > * {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-items-sm-4 > * {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-items-sm-5 > * {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .col-items-sm-6 > * {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-items-sm-7 > * {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .col-items-sm-8 > * {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .col-items-sm-9 > * {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .col-items-sm-10 > * {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .col-items-sm-11 > * {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .col-items-sm-12 > * {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .flex-sm-table {
    display: table;
    table-layout: fixed;
    flex-direction: initial;
    flex-wrap: initial;
    -ms-justify-content: initial;
    justify-content: initial;
    -ms-align-content: initial;
    align-content: initial;
    -ms-align-items: initial;
    align-items: initial;
    -webkit-column-count: auto;
    column-count: auto;
  }
  .d-sm-table > * {
    display: table-cell;
  }
  .d-sm-flexbox {
    display: flex;
    table-layout: auto;
    flex-direction: row;
    flex-wrap: wrap;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-align-content: center;
    align-content: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-column-count: auto;
    column-count: auto;
  }
  .d-sm-flexbox > * {
    display: inline-block;
  }
  .d-sm-normal {
    display: block;
    table-layout: auto;
    flex-direction: initial;
    flex-wrap: initial;
    -ms-justify-content: initial;
    justify-content: initial;
    -ms-align-content: initial;
    align-content: initial;
    -ms-align-items: initial;
    align-items: initial;
    -webkit-column-count: auto;
    column-count: auto;
  }

  .d-sm-normal > * {
    display: inline-block;
  }

  .flex-sm-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    display:flex;

  }

  .flex-sm-not-reverse {
    flex-direction: row;
    flex-wrap: wrap;
    display:flex;

  }

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

  .flex-sm-column > *{
    flex-basis: auto;
  }


  .flex-sm-column-reverse > *{
    flex-basis: auto;
  }

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

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

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

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


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

  .flex-sm-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    flex-wrap: wrap;
    display:flex
  }
  .flex-sm-center {
    -ms-justify-content: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    display:flex
  }
  .flex-sm-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    flex-wrap: wrap;
    display:flex
  }
  .flex-sm-top {
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    display:flex
  }
  .flex-sm-top > * {
    vertical-align: top;
  }
  .flex-sm-middle {
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    display:flex
  }
  .flex-sm-middle > * {
    vertical-align: middle;
  }
  .flex-sm-bottom {
    -ms-align-items: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    display:flex
  }
  .flex-sm-bottom > * {
    vertical-align: bottom;
  }
  .flex-sm-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-align-content: space-between;
    align-content: space-between;
    flex-wrap: wrap;
    display:flex
  }
  .flex-sm-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-align-content: space-around;
    align-content: space-around;
    flex-wrap: wrap;
    display:flex
  }
  .flex-sm-baseline {
    -ms-align-items: baseline;
    align-items: baseline;
    flex-wrap: wrap;
    display:flex
  }
  .flex-sm-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-sm-not-reverse {
    flex-direction: row;
    flex-wrap: wrap;
    flex-wrap: wrap;
    display:flex
  }
  .col-sm-1-1 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .col-sm-1-2 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-sm-1-3 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-sm-2-3 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-sm-1-4 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-sm-2-4 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-sm-3-4 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-sm-1-5 {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .col-sm-2-5 {
    width: 40%;
    max-width: 40%;
    flex-basis: 40%;
  }
  .col-sm-3-5 {
    width: 60%;
    max-width: 60%;
    flex-basis: 60%;
  }
  .col-sm-4-5 {
    width: 80%;
    max-width: 80%;
    flex-basis: 80%;
  }
  .col-sm-1-6 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-sm-2-6 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-sm-3-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-sm-4-6 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-sm-5-6 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .col-sm-1-7 {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .col-sm-2-7 {
    width: 28.57143%;
    max-width: 28.57143%;
    flex-basis: 28.57143%;
  }
  .col-sm-3-7 {
    width: 42.85714%;
    max-width: 42.85714%;
    flex-basis: 42.85714%;
  }
  .col-sm-4-7 {
    width: 57.14286%;
    max-width: 57.14286%;
    flex-basis: 57.14286%;
  }
  .col-sm-5-7 {
    width: 71.42857%;
    max-width: 71.42857%;
    flex-basis: 71.42857%;
  }
  .col-sm-6-7 {
    width: 85.71429%;
    max-width: 85.71429%;
    flex-basis: 85.71429%;
  }
  .col-sm-1-8 {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .col-sm-2-8 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-sm-3-8 {
    width: 37.5%;
    max-width: 37.5%;
    flex-basis: 37.5%;
  }
  .col-sm-4-8 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-sm-5-8 {
    width: 62.5%;
    max-width: 62.5%;
    flex-basis: 62.5%;
  }
  .col-sm-6-8 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-sm-7-8 {
    width: 87.5%;
    max-width: 87.5%;
    flex-basis: 87.5%;
  }
  .col-sm-1-9 {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .col-sm-2-9 {
    width: 22.22222%;
    max-width: 22.22222%;
    flex-basis: 22.22222%;
  }
  .col-sm-3-9 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-sm-4-9 {
    width: 44.44444%;
    max-width: 44.44444%;
    flex-basis: 44.44444%;
  }
  .col-sm-5-9 {
    width: 55.55556%;
    max-width: 55.55556%;
    flex-basis: 55.55556%;
  }
  .col-sm-6-9 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-sm-7-9 {
    width: 77.77778%;
    max-width: 77.77778%;
    flex-basis: 77.77778%;
  }
  .col-sm-8-9 {
    width: 88.88889%;
    max-width: 88.88889%;
    flex-basis: 88.88889%;
  }
  .col-sm-1-10 {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .col-sm-2-10 {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .col-sm-3-10 {
    width: 30%;
    max-width: 30%;
    flex-basis: 30%;
  }
  .col-sm-4-10 {
    width: 40%;
    max-width: 40%;
    flex-basis: 40%;
  }
  .col-sm-5-10 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-sm-6-10 {
    width: 60%;
    max-width: 60%;
    flex-basis: 60%;
  }
  .col-sm-7-10 {
    width: 70%;
    max-width: 70%;
    flex-basis: 70%;
  }
  .col-sm-8-10 {
    width: 80%;
    max-width: 80%;
    flex-basis: 80%;
  }
  .col-sm-9-10 {
    width: 90%;
    max-width: 90%;
    flex-basis: 90%;
  }
  .col-sm-1-11 {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .col-sm-2-11 {
    width: 18.18182%;
    max-width: 18.18182%;
    flex-basis: 18.18182%;
  }
  .col-sm-3-11 {
    width: 27.27273%;
    max-width: 27.27273%;
    flex-basis: 27.27273%;
  }
  .col-sm-4-11 {
    width: 36.36364%;
    max-width: 36.36364%;
    flex-basis: 36.36364%;
  }
  .col-sm-5-11 {
    width: 45.45455%;
    max-width: 45.45455%;
    flex-basis: 45.45455%;
  }
  .col-sm-6-11 {
    width: 54.54545%;
    max-width: 54.54545%;
    flex-basis: 54.54545%;
  }
  .col-sm-7-11 {
    width: 63.63636%;
    max-width: 63.63636%;
    flex-basis: 63.63636%;
  }
  .col-sm-8-11 {
    width: 72.72727%;
    max-width: 72.72727%;
    flex-basis: 72.72727%;
  }
  .col-sm-9-11 {
    width: 81.81818%;
    max-width: 81.81818%;
    flex-basis: 81.81818%;
  }
  .col-sm-10-11 {
    width: 90.90909%;
    max-width: 90.90909%;
    flex-basis: 90.90909%;
  }
  .col-sm-1-12 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .col-sm-2-12 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-sm-3-12 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-sm-4-12 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-sm-5-12 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .col-sm-6-12 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-sm-7-12 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .col-sm-8-12 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-sm-9-12 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-sm-10-12 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .col-sm-11-12 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }

  .col-sm-12-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .sm-hidden {
    display: none !important;
  }
  .sm-not-hidden {
    display: inline-block !important;
  }
  .sm-first {
    order: -1;
  }
  .sm-not-first {
    order: 0;
  }
  .sm-last {
    order: 1;
  }
  .sm-not-last {
    order: 0;
  }
  .sm-gutter-0 {
    width: calc(100% + 0px);
    margin-left: -0px;
    margin-right: -0px;
    padding-left: 0;
    padding-right: 0;
  }
  .sm-gutter-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }
  .sm-gutter-8 {
    width: calc(100% + 8px);
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 0;
    padding-right: 0;
  }
  .sm-gutter-8 > * {
    padding-left: 4px;
    padding-right: 4px;
  }
  .sm-gutter-16 {
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 0;
    padding-right: 0;
  }
  .sm-gutter-16 > * {
    padding-left: 8px;
    padding-right: 8px;
  }
  .sm-gutter-24 {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 0;
    padding-right: 0;
  }
  .sm-gutter-24 > * {
    padding-left: 12px;
    padding-right: 12px;
  }
  .sm-gutter-40 {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 0;
    padding-right: 0;
  }
  .sm-gutter-40 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sm-outside-0 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0px;
    padding-right: 0px;
  }
  .sm-outside-8 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 4px;
    padding-right: 4px;
  }
  .sm-outside-16 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
  .sm-outside-24 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
  .sm-outside-40 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .sm-masonry-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .sm-masonry-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
  .sm-masonry-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
  .sm-masonry-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }
  .sm-masonry-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }

  .h1-sm {
    font-size: 4rem !important;
  }

  .h2-sm {
    font-size: 3rem !important;
  }
  .h3-sm {
    font-size: 2rem !important;
  }

  .h4-sm {
    font-size: 1.5rem !important;
  }

  .h5-sm {
    font-size: 1.25rem !important;
  }

  .h6-sm {
    font-size: 1rem !important;
  }

  .h7-sm {
    font-size: .9rem !important;
  }

  .h8-sm {
    font-size: .8rem !important;
  }

  .h9-sm {
    font-size: .7rem !important;
  }

  .h9-sm {
    font-size: .6rem !important;
  }

  .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: 2.5rem !important;
  }
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 2.5rem !important;
  }
  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 2.5rem !important;
  }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 2.5rem !important;
  }
  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 2.5rem !important;
  }
  .m-sm-7 {
    margin: 3rem !important;
  }
  .mt-sm-7,
  .my-sm-7 {
    margin-top: 3rem !important;
  }
  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 3rem !important;
  }
  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 3rem !important;
  }
  .m-sm-8 {
    margin: 3.5rem !important;
  }
  .mt-sm-8,
  .my-sm-8 {
    margin-top: 3.5rem !important;
  }
  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 3.5rem !important;
  }
  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 3.5rem !important;
  }
  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 3.5rem !important;
  }
  .m-sm-9 {
    margin: 4rem !important;
  }
  .mt-sm-9,
  .my-sm-9 {
    margin-top: 4rem !important;
  }
  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 4rem !important;
  }
  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 4rem !important;
  }
  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 4rem !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: 2.5rem !important;
  }
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 2.5rem !important;
  }
  .pr-sm-6,
  .px-sm-6 {
    padding-right: 2.5rem !important;
  }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 2.5rem !important;
  }
  .pl-sm-6,
  .px-sm-6 {
    padding-left: 2.5rem !important;
  }
  .p-sm-7 {
    padding: 3rem !important;
  }
  .pt-sm-7,
  .py-sm-7 {
    padding-top: 3rem !important;
  }
  .pr-sm-7,
  .px-sm-7 {
    padding-right: 3rem !important;
  }
  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-7,
  .px-sm-7 {
    padding-left: 3rem !important;
  }
  .p-sm-8 {
    padding: 3.5rem !important;
  }
  .pt-sm-8,
  .py-sm-8 {
    padding-top: 3.5rem !important;
  }
  .pr-sm-8,
  .px-sm-8 {
    padding-right: 3.5rem !important;
  }
  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 3.5rem !important;
  }
  .pl-sm-8,
  .px-sm-8 {
    padding-left: 3.5rem !important;
  }
  .p-sm-9 {
    padding: 4rem !important;
  }
  .pt-sm-9,
  .py-sm-9 {
    padding-top: 4rem !important;
  }
  .pr-sm-9,
  .px-sm-9 {
    padding-right: 4rem !important;
  }
  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 4rem !important;
  }
  .pl-sm-9,
  .px-sm-9 {
    padding-left: 4rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-absolute{
    position: absolute;
  }
  .p-sm-relative{
    position: relative;
  }
  
  .position-sm-relative{
    position: relative;
  }
  
  .position-sm-absolute
  {
    position: absolute;
  }
}

@media (max-width: 575px) {

  .flex-xs-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    /* text-align: left; */
    display:flex;
    flex-wrap:wrap;
  }
  
  
  .flex-xs-center {
    -ms-justify-content: center;
    justify-content: center;
    /* text-align: center; */
    display:flex;
    flex-wrap:wrap;
  }
  
  
  .flex-xs-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    /* text-align: right; */
    display:flex;
    flex-wrap:wrap;
  }
  
  /* Vertical positions flex items */
  
  .flex-xs-top {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
  }
  
  .flex-xs-middle {
    -ms-align-items: center;
    align-items: center;
    display:flex;
    flex-wrap:wrap;
  }
  
  .flex-xs-bottom {
    -ms-align-items: flex-end;
    align-items: flex-end;
    display:flex;
    flex-wrap:wrap;
  }
  
  /* Left vertical positions */
  
  
  .flex-xs-left-bottom {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
  }
  
  .flex-xs-left-top {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
  }
  
  .flex-xs-left-middle {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
  }
  
  .flex-xs-left-between {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    display:flex;
    flex-wrap:wrap;
    align-content: space-between;
  }
  
    .flex-xs-left-around {
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      display:flex;
      flex-wrap:wrap;
      align-content: space-around;
    }
  
  /* Right vertical positions */
  
  .flex-xs-right-bottom {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
  }
  
  .flex-xs-right-top {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
  }
  
  .flex-xs-right-start {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-xs-right-end {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-xs-right-middle{
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
  }
  
  .flex-xs-right-between {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    display:flex;
    flex-wrap:wrap;
    align-content: space-between;
  }
  
    .flex-xs-right-around {
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      display:flex;
      flex-wrap:wrap;
      align-content: space-around;
    }
  
  /* center vertical positions */
  
  .flex-xs-center-top {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-start;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-xs-center-middle {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: center;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-xs-center-bottom {
    -ms-align-items: flex-start;
    align-items: flex-end;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-end;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-xs-center-between {
    -ms-justify-content: center;
    justify-content: center;
    display:flex;
    flex-wrap:wrap;
    align-content: space-between;
  }
  
    .flex-xs-center-around {
      -ms-justify-content: center;
      justify-content: center;
      display:flex;
      flex-wrap:wrap;
      align-content: space-around;
    }
  
  
  /* top horizontal positions */
  
  .flex-xs-top-center {
    -ms-align-items: flex-start;
    align-items: flex-start;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-start;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-xs-top-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-xs-top-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-xs-top-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
    .flex-xs-top-around {
      -ms-justify-content: space-around;
      justify-content: space-around;
      display:flex;
      flex-wrap:wrap;
      align-items: flex-end;
      align-content: flex-end;
    }
  
  /* bottom horizontal positions */
  
  .flex-xs-bottom-center {
    -ms-align-items: flex-start;
    align-items: flex-end;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: flex-end;
    justify-content: center;
    flex-wrap:wrap;
  }
  
  .flex-xs-bottom-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-xs-bottom-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-xs-bottom-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
    .flex-xs-bottom-around {
      -ms-justify-content: space-around;
      justify-content: space-around;
      display:flex;
      flex-wrap:wrap;
      align-items: flex-end;
      align-content: flex-end;
    }
  
  
  /* middle horizontal positions */
  
  .flex-xs-middle-left {
    -ms-align-items: center;
    align-items: center;
    display:flex;
    -ms-flex-wrap:wrap;
    justify-content: flex-start;
    flex-wrap:wrap;
    align-content: center;
    
  }
  
  .flex-xs-middle-center {
    -ms-justify-content: center;
    justify-content: center;
    text-align: center;
    display:flex;
    flex-wrap:wrap;
    align-content: center;
    align-items: center;
  }
  
  .flex-xs-middle-right {
    -ms-align-items: center;
    align-items: center;
    display:flex;
    -ms-flex-wrap:wrap;
    align-content: center;
    justify-content: flex-end;
    flex-wrap:wrap;
  }
  
  .flex-xs-middle-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  .flex-xs-middle-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  /* between vertical positions */
  
  .flex-xs-between-middle {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  .flex-xs-between-bottom {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-xs-between-top {
    -ms-justify-content: space-between;
    justify-content: space-between;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  /* around vertical positions */
  
  .flex-xs-around-middle {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    align-content: center;
  }
  
  .flex-xs-around-bottom {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .flex-xs-around-top {
    -ms-justify-content: space-around;
    justify-content: space-around;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  .flex-xs-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-align-content: space-between;
    align-content: space-between;
    display:flex;
    flex-wrap:wrap;
  }
  
  .flex-xs-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-align-content: space-around;
    align-content: space-around;
    display:flex;
    flex-wrap:wrap;
  }
  
  .flex-xs-baseline {
    -ms-align-items: baseline;
    align-items: baseline;
    display:flex;
    flex-wrap:wrap;
  }
  
  
  .flex-xs-stretch {
    align-items: stretch;
    display:flex;
    flex-wrap:wrap;
    align-content: stretch;
  }
  


  .justify-xs-start {
    justify-content: flex-start !important;
  }

  .justify-xs-end {
    justify-content: flex-end !important;
  }

  .justify-xs-center {
    justify-content: center !important;
  }

  .justify-xs-between{
    justify-content: space-between !important;
  }

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



  /*ALIGN-ITEMS*/

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

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

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

  .align-xs-center {
    align-items: center !important;
  }

  .align-xs-stretch {
    align-items: stretch !important;
  }



  /*SELF-ITEMS*/

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

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

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

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

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


  /*ALIGN-CONTENT*/

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

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

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

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

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


  .col-items-xs-auto > * {
    width: auto;
  }
  .col-items-xs-1 > * {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .col-items-xs-2 > * {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-items-xs-3 > * {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-items-xs-4 > * {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-items-xs-5 > * {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .col-items-xs-6 > * {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-items-xs-7 > * {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .col-items-xs-8 > * {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .col-items-xs-9 > * {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .col-items-xs-10 > * {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .col-items-xs-11 > * {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .col-items-xs-12 > * {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .flex-xs-table {
    display: table;
    table-layout: fixed;
    flex-direction: initial;
    flex-wrap: initial;
    -ms-justify-content: initial;
    justify-content: initial;
    -ms-align-content: initial;
    align-content: initial;
    -ms-align-items: initial;
    align-items: initial;
    -webkit-column-count: auto;
    column-count: auto;
  }
  .d-xs-table > * {
    display: table-cell;
  }
  .d-xs-flexbox {
    display: flex;
    table-layout: auto;
    flex-direction: row;
    flex-wrap: wrap;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-align-content: center;
    align-content: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-column-count: auto;
    column-count: auto;
  }
  .d-xs-flexbox > * {
    display: inline-block;
  }
  .d-xs-normal {
    display: block;
    table-layout: auto;
    flex-direction: initial;
    flex-wrap: initial;
    -ms-justify-content: initial;
    justify-content: initial;
    -ms-align-content: initial;
    align-content: initial;
    -ms-align-items: initial;
    align-items: initial;
    -webkit-column-count: auto;
    column-count: auto;
  }
  .d-xs-normal > * {
    display: inline-block;
  }

  .flex-xs-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    display:flex;

  }

  .flex-xs-not-reverse {
    flex-direction: row;
    flex-wrap: wrap;
    display:flex;

  }

  .flex-xs-wrap{
    flex-wrap: wrap;
  }

  .flex-xs-wrap-reverse{
    flex-wrap: wrap-reverse;
  }

  .flex-xs-column {
    flex-direction: column;
  }

  .flex-xs-column > *{
    flex-basis: auto;
  }
  .flex-xs-column-reverse > *{
    flex-basis: auto;
  }

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

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

  .flex-xs-row-reverse {
    flex-direction: row-reverse!important;
  }

  .flex-xs-wrap{
    flex-wrap: wrap;
  }

  .flex-xs-left {
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
    flex-wrap: wrap;
    display:flex
  }
  .flex-xs-center {
    -ms-justify-content: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    display:flex
  }
  .flex-xs-right {
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    flex-wrap: wrap;
    display:flex
  }
  .flex-xs-top {
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    display:flex

  }
  .flex-xs-top > * {
    vertical-align: top;
  }
  .flex-xs-middle {
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    display:flex
  }
  .flex-xs-middle > * {
    vertical-align: middle;
  }
  .flex-xs-bottom {
    -ms-align-items: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    display:flex
  }
  .flex-xs-bottom > * {
    vertical-align: bottom;
  }
  .flex-xs-between {
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-align-content: space-between;
    align-content: space-between;
    flex-wrap: wrap;
    display:flex
  }
  .flex-xs-around {
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-align-content: space-around;
    align-content: space-around;
    flex-wrap: wrap;
    display:flex
  }
  .flex-xs-baseline {
    -ms-align-items: baseline;
    align-items: baseline;
    flex-wrap: wrap;
    display:flex
  }
  .flex-xs-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-xs-not-reverse {
    flex-direction: row;
    flex-wrap: wrap;
    flex-wrap: wrap;
    display:flex
  }
  .col-xs-1-1 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .col-xs-1-2 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-xs-1-3 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-xs-2-3 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-xs-1-4 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-xs-2-4 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-xs-3-4 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-xs-1-5 {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .col-xs-2-5 {
    width: 40%;
    max-width: 40%;
    flex-basis: 40%;
  }
  .col-xs-3-5 {
    width: 60%;
    max-width: 60%;
    flex-basis: 60%;
  }
  .col-xs-4-5 {
    width: 80%;
    max-width: 80%;
    flex-basis: 80%;
  }
  .col-xs-1-6 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-xs-2-6 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-xs-3-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-xs-4-6 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-xs-5-6 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .col-xs-1-7 {
    width: 14.28571%;
    max-width: 14.28571%;
    flex-basis: 14.28571%;
  }
  .col-xs-2-7 {
    width: 28.57143%;
    max-width: 28.57143%;
    flex-basis: 28.57143%;
  }

  .col-xs-3-7 {
    width: 42.85714%;
    max-width: 42.85714%;
    flex-basis: 42.85714%;
  }
  .col-xs-4-7 {
    width: 57.14286%;
    max-width: 57.14286%;
    flex-basis: 57.14286%;
  }
  .col-xs-5-7 {
    width: 71.42857%;
    max-width: 71.42857%;
    flex-basis: 71.42857%;
  }
  .col-xs-6-7 {
    width: 85.71429%;
    max-width: 85.71429%;
    flex-basis: 85.71429%;
  }
  .col-xs-1-8 {
    width: 12.5%;
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .col-xs-2-8 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-xs-3-8 {
    width: 37.5%;
    max-width: 37.5%;
    flex-basis: 37.5%;
  }
  .col-xs-4-8 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-xs-5-8 {
    width: 62.5%;
    max-width: 62.5%;
    flex-basis: 62.5%;
  }
  .col-xs-6-8 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-xs-7-8 {
    width: 87.5%;
    max-width: 87.5%;
    flex-basis: 87.5%;
  }
  .col-xs-1-9 {
    width: 11.11111%;
    max-width: 11.11111%;
    flex-basis: 11.11111%;
  }
  .col-xs-2-9 {
    width: 22.22222%;
    max-width: 22.22222%;
    flex-basis: 22.22222%;
  }
  .col-xs-3-9 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-xs-4-9 {
    width: 44.44444%;
    max-width: 44.44444%;
    flex-basis: 44.44444%;
  }
  .col-xs-5-9 {
    width: 55.55556%;
    max-width: 55.55556%;
    flex-basis: 55.55556%;
  }
  .col-xs-6-9 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-xs-7-9 {
    width: 77.77778%;
    max-width: 77.77778%;
    flex-basis: 77.77778%;
  }
  .col-xs-8-9 {
    width: 88.88889%;
    max-width: 88.88889%;
    flex-basis: 88.88889%;
  }
  .col-xs-1-10 {
    width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
  .col-xs-2-10 {
    width: 20%;
    max-width: 20%;
    flex-basis: 20%;
  }
  .col-xs-3-10 {
    width: 30%;
    max-width: 30%;
    flex-basis: 30%;
  }
  .col-xs-4-10 {
    width: 40%;
    max-width: 40%;
    flex-basis: 40%;
  }
  .col-xs-5-10 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-xs-6-10 {
    width: 60%;
    max-width: 60%;
    flex-basis: 60%;
  }
  .col-xs-7-10 {
    width: 70%;
    max-width: 70%;
    flex-basis: 70%;
  }
  .col-xs-8-10 {
    width: 80%;
    max-width: 80%;
    flex-basis: 80%;
  }
  .col-xs-9-10 {
    width: 90%;
    max-width: 90%;
    flex-basis: 90%;
  }
  .col-xs-1-11 {
    width: 9.09091%;
    max-width: 9.09091%;
    flex-basis: 9.09091%;
  }
  .col-xs-2-11 {
    width: 18.18182%;
    max-width: 18.18182%;
    flex-basis: 18.18182%;
  }
  .col-xs-3-11 {
    width: 27.27273%;
    max-width: 27.27273%;
    flex-basis: 27.27273%;
  }
  .col-xs-4-11 {
    width: 36.36364%;
    max-width: 36.36364%;
    flex-basis: 36.36364%;
  }
  .col-xs-5-11 {
    width: 45.45455%;
    max-width: 45.45455%;
    flex-basis: 45.45455%;
  }
  .col-xs-6-11 {
    width: 54.54545%;
    max-width: 54.54545%;
    flex-basis: 54.54545%;
  }
  .col-xs-7-11 {
    width: 63.63636%;
    max-width: 63.63636%;
    flex-basis: 63.63636%;
  }
  .col-xs-8-11 {
    width: 72.72727%;
    max-width: 72.72727%;
    flex-basis: 72.72727%;
  }
  .col-xs-9-11 {
    width: 81.81818%;
    max-width: 81.81818%;
    flex-basis: 81.81818%;
  }
  .col-xs-10-11 {
    width: 90.90909%;
    max-width: 90.90909%;
    flex-basis: 90.90909%;
  }
  .col-xs-1-12 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .col-xs-2-12 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-xs-3-12 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-xs-4-12 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-xs-5-12 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .col-xs-6-12 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-xs-7-12 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .col-xs-8-12 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-xs-9-12 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-xs-10-12 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .col-items-xs-11-12 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }

 .col-items-xl-12-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .xs-hidden {
    display: none !important;
  }
  .xs-not-hidden {
    display: inline-block !important;
  }
  .xs-first {
    order: -1;
  }
  .xs-not-first {
    order: 0;
  }
  .xs-last {
    order: 1;
  }
  .xs-not-last {
    order: 0;
  }
  .xs-gutter-0 {
    width: calc(100% + 0px);
    margin-left: -0px;
    margin-right: -0px;
    padding-left: 0;
    padding-right: 0;
  }
  .xs-gutter-0 > * {
    padding-left: 0px;
    padding-right: 0px;
  }
  .xs-gutter-8 {
    width: calc(100% + 8px);
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 0;
    padding-right: 0;
  }
  .xs-gutter-8 > * {
    padding-left: 4px;
    padding-right: 4px;
  }
  .xs-gutter-16 {
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 0;
    padding-right: 0;
  }
  .xs-gutter-16 > * {
    padding-left: 8px;
    padding-right: 8px;
  }
  .xs-gutter-24 {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 0;
    padding-right: 0;
  }
  .xs-gutter-24 > * {
    padding-left: 12px;
    padding-right: 12px;
  }
  .xs-gutter-40 {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 0;
    padding-right: 0;
  }
  .xs-gutter-40 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
  .xs-outside-0 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0px;
    padding-right: 0px;
  }
  .xs-outside-8 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 4px;
    padding-right: 4px;
  }
  .xs-outside-16 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
  .xs-outside-24 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
  .xs-outside-40 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .xs-masonry-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .xs-masonry-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
  .xs-masonry-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
  .xs-masonry-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }
  .xs-masonry-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }

  .h1-xs {
    font-size: 4rem !important;
  }

  .h2-xs {
    font-size: 3rem !important;
  }
  .h3-xs {
    font-size: 2rem !important;
  }

  .h4-xs {
    font-size: 1.5rem !important;
  }

  .h5-xs {
    font-size: 1.25rem !important;
  }

  .h6-xs {
    font-size: 1rem !important;
  }

  .h7-xs {
    font-size: .9rem !important;
  }

  .h8-xs {
    font-size: .8rem !important;
  }

  .h9-xs {
    font-size: .7rem !important;
  }

  .h9-xs {
    font-size: .6rem !important;
  }

  .p-xs-absolute{
    position: absolute;
  }
  .p-xs-relative{
    position: relative;
  }
  
  .position-xs-relative{
    position: relative;
  }
  
  .position-xs-absolute
  {
    position: absolute;
  }
}


@media only screen and (max-width: 575px) {
  .xs-visible{ 
    display: inherit !important;
  }

}


@media only screen and (max-width: 767px) {
  .sm-visible{ 
    display: inherit !important;
  }

}


@media only screen and (max-width: 991px) {
  .md-visible{ 
    display: inherit !important;
  }

}


@media only screen and (max-width: 1200px){
  .lg-visible{ 
    display: initial !important;
  }

}

