/* 
x-kom xlp cssgrid framework
01. Flexbox grid
02. Spacers ml, mr, mx, my, pl, pr, px, py - prefix example: xlp-mx-0
03. Buttons
04. General styles
05. Typography
06. Layout
07. Alignment
*/

/* 01. Flexbox grid Framework
================================================================ */
@import url('https://fonts.googleapis.com/css?family=Nunito:100,200,300,400,600&display=swap&subset=latin-ext');

.xlp {font-family: 'Nunito', sans-serif; line-height: 1.5;}

.xlp.container {
  max-width: 1140px;
  margin: 0 auto;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 30px;
}

.xlp.container-fluid {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
  font-family: 'Nunito', sans-serif;
}

.xlp .row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
}

.xlp .row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.xlp .col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

.xlp .col-xs,
.xlp .col-xs-1,
.xlp .col-xs-2,
.xlp .col-xs-3,
.xlp .col-xs-4,
.xlp .col-xs-5,
.xlp .col-xs-6,
.xlp .col-xs-7,
.xlp .col-xs-8,
.xlp .col-xs-9,
.xlp .col-xs-10,
.xlp .col-xs-11,
.xlp .col-xs-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.xlp .col-xs {
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.xlp .col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.xlp .col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.xlp .col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.xlp .col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.xlp .col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.xlp .col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.xlp .col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.xlp .col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.xlp .col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.xlp .col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.xlp .col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.xlp .col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.xlp .col-xs-offset-1 {
  margin-left: 8.333%;
}

.xlp .col-xs-offset-2 {
  margin-left: 16.667%;
}

.xlp .col-xs-offset-3 {
  margin-left: 25%;
}

.xlp .col-xs-offset-4 {
  margin-left: 33.333%;
}

.xlp .col-xs-offset-5 {
  margin-left: 41.667%;
}

.xlp .col-xs-offset-6 {
  margin-left: 50%;
}

.xlp .col-xs-offset-7 {
  margin-left: 58.333%;
}

.xlp .col-xs-offset-8 {
  margin-left: 66.667%;
}

.xlp .col-xs-offset-9 {
  margin-left: 75%;
}

.xlp .col-xs-offset-10 {
  margin-left: 83.333%;
}

.xlp .col-xs-offset-11 {
  margin-left: 91.667%;
}

.xlp .start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.xlp .center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.xlp .end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.xlp .top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.xlp .middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.xlp .bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.xlp .around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.xlp .between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.xlp .first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.xlp .last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media only screen and (min-width: 560px) {
  .xlp .col-sm,
  .xlp .col-sm-1,
  .xlp .col-sm-2,
  .xlp .col-sm-3,
  .xlp .col-sm-4,
  .xlp .col-sm-5,
  .xlp .col-sm-6,
  .xlp .col-sm-7,
  .xlp .col-sm-8,
  .xlp .col-sm-9,
  .xlp .col-sm-10,
  .xlp .col-sm-11,
  .xlp .col-sm-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .xlp .col-sm {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .xlp .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .xlp .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .xlp .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .xlp .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .xlp .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .xlp .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .xlp .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .xlp .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .xlp .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .xlp .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .xlp .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .xlp .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .xlp .col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .xlp .col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .xlp .col-sm-offset-3 {
    margin-left: 25%;
  }

  .xlp .col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .xlp .col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .xlp .col-sm-offset-6 {
    margin-left: 50%;
  }

  .xlp .col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .xlp .col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .xlp .col-sm-offset-9 {
    margin-left: 75%;
  }

  .xlp .col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .xlp .col-sm-offset-11 {
    margin-left: 91.667%;
  }

  .xlp .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .xlp .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .xlp .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .xlp .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .xlp .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .xlp .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .xlp .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .xlp .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .xlp .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .xlp .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 768px) {
  .xlp .col-md,
  .xlp .col-md-1,
  .xlp .col-md-2,
  .xlp .col-md-3,
  .xlp .col-md-4,
  .xlp .col-md-5,
  .xlp .col-md-6,
  .xlp .col-md-7,
  .xlp .col-md-8,
  .xlp .col-md-9,
  .xlp .col-md-10,
  .xlp .col-md-11,
  .xlp .col-md-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .xlp .col-md {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .xlp .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .xlp .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .xlp .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .xlp .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .xlp .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .xlp .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .xlp .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .xlp .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .xlp .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .xlp .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .xlp .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .xlp .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .xlp .col-md-offset-1 {
    margin-left: 8.333%;
  }

  .xlp .col-md-offset-2 {
    margin-left: 16.667%;
  }

  .xlp .col-md-offset-3 {
    margin-left: 25%;
  }

  .xlp .col-md-offset-4 {
    margin-left: 33.333%;
  }

  .xlp .col-md-offset-5 {
    margin-left: 41.667%;
  }

  .xlp .col-md-offset-6 {
    margin-left: 50%;
  }

  .xlp .col-md-offset-7 {
    margin-left: 58.333%;
  }

  .xlp .col-md-offset-8 {
    margin-left: 66.667%;
  }

  .xlp .col-md-offset-9 {
    margin-left: 75%;
  }

  .xlp .col-md-offset-10 {
    margin-left: 83.333%;
  }

  .xlp .col-md-offset-11 {
    margin-left: 91.667%;
  }

  .xlp .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .xlp .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .xlp .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .xlp .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .xlp .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .xlp .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .xlp .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .xlp .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .xlp .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .xlp .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 992px) {
  .xlp .col-lg,
  .xlp .col-lg-1,
  .xlp .col-lg-2,
  .xlp .col-lg-3,
  .xlp .col-lg-4,
  .xlp .col-lg-5,
  .xlp .col-lg-6,
  .xlp .col-lg-7,
  .xlp .col-lg-8,
  .xlp .col-lg-9,
  .xlp .col-lg-10,
  .xlp .col-lg-11,
  .xlp .col-lg-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .xlp .col-lg {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .xlp .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .xlp .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .xlp .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .xlp .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .xlp .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .xlp .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .xlp .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .xlp .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .xlp .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .xlp .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .xlp .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .xlp .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .xlp .col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .xlp .col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .xlp .col-lg-offset-3 {
    margin-left: 25%;
  }

  .xlp .col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .xlp .col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .xlp .col-lg-offset-6 {
    margin-left: 50%;
  }

  .xlp .col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .xlp .col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .xlp .col-lg-offset-9 {
    margin-left: 75%;
  }

  .xlp .col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .xlp .col-lg-offset-11 {
    margin-left: 91.667%;
  }

  .xlp .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .xlp .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .xlp .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .xlp .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .xlp .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .xlp .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .xlp .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .xlp .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .xlp .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .xlp .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

/* 02. Spacers ml, mr, mx, my, pl, pr, px, py - example: mx-0, my-5, py-5
================================================================ */
.xlp .m-0{margin:0!important}.xlp .mt-0,.xlp .my-0{margin-top:0!important}.xlp .mr-0,.xlp .mx-0{margin-right:0!important}.xlp .mb-0,.xlp .my-0{margin-bottom:0!important}.xlp .ml-0,.xlp .mx-0{margin-left:0!important}.xlp .m-1{margin:.25rem!important}.xlp .mt-1,.xlp .my-1{margin-top:.25rem!important}.xlp .mr-1,.xlp .mx-1{margin-right:.25rem!important}.xlp .mb-1,.xlp .my-1{margin-bottom:.25rem!important}.xlp .ml-1,.xlp .mx-1{margin-left:.25rem!important}.xlp .m-2{margin:.5rem!important}.xlp .mt-2,.xlp .my-2{margin-top:.5rem!important}.xlp .mr-2,.xlp .mx-2{margin-right:.5rem!important}.xlp .mb-2,.xlp .my-2{margin-bottom:.5rem!important}.xlp .ml-2,.xlp .mx-2{margin-left:.5rem!important}.xlp .m-3{margin:1rem!important}.xlp .mt-3,.xlp .my-3{margin-top:1rem!important}.xlp .mr-3,.xlp .mx-3{margin-right:1rem!important}.xlp .mb-3,.xlp .my-3{margin-bottom:1rem!important}.xlp .ml-3,.xlp .mx-3{margin-left:1rem!important}.xlp .m-4{margin:1.5rem!important}.xlp .mt-4,.xlp .my-4{margin-top:1.5rem!important}.xlp .mr-4,.xlp .mx-4{margin-right:1.5rem!important}.xlp .mb-4,.xlp .my-4{margin-bottom:1.5rem!important}.xlp .ml-4,.xlp .mx-4{margin-left:1.5rem!important}.xlp .m-5{margin:3rem!important}.xlp .mt-5,.xlp .my-5{margin-top:3rem!important}.xlp .mr-5,.xlp .mx-5{margin-right:3rem!important}.xlp .mb-5,.xlp .my-5{margin-bottom:3rem!important}.xlp .ml-5,.xlp .mx-5{margin-left:3rem!important}.xlp .p-0{padding:0!important}.xlp .pt-0,.xlp .py-0{padding-top:0!important}.xlp .pr-0,.xlp .px-0{padding-right:0!important}.xlp .pb-0,.xlp .py-0{padding-bottom:0!important}.xlp .pl-0,.xlp .px-0{padding-left:0!important}.xlp .p-1{padding:.25rem!important}.xlp .pt-1,.xlp .py-1{padding-top:.25rem!important}.xlp .pr-1,.xlp .px-1{padding-right:.25rem!important}.xlp .pb-1,.xlp .py-1{padding-bottom:.25rem!important}.xlp .pl-1,.xlp .px-1{padding-left:.25rem!important}.xlp .p-2{padding:.5rem!important}.xlp .pt-2,.xlp .py-2{padding-top:.5rem!important}.xlp .pr-2,.xlp .px-2{padding-right:.5rem!important}.xlp .pb-2,.xlp .py-2{padding-bottom:.5rem!important}.xlp .pl-2,.xlp .px-2{padding-left:.5rem!important}.xlp .p-3{padding:1rem!important}.xlp .pt-3,.xlp .py-3{padding-top:1rem!important}.xlp .pr-3,.xlp .px-3{padding-right:1rem!important}.xlp .pb-3,.xlp .py-3{padding-bottom:1rem!important}.xlp .pl-3,.xlp .px-3{padding-left:1rem!important}.xlp .p-4{padding:1.5rem!important}.xlp .pt-4,.xlp .py-4{padding-top:1.5rem!important}.xlp .pr-4,.xlp .px-4{padding-right:1.5rem!important}.xlp .pb-4,.xlp .py-4{padding-bottom:1.5rem!important}.xlp .pl-4,.xlp .px-4{padding-left:1.5rem!important}.xlp .p-5{padding:3rem!important}.xlp .pt-5,.xlp .py-5{padding-top:3rem!important}.xlp .pr-5,.xlp .px-5{padding-right:3rem!important}.xlp .pb-5,.xlp .py-5{padding-bottom:3rem!important}.xlp .pl-5,.xlp .px-5{padding-left:3rem!important}.xlp .m-n1{margin:-.25rem!important}.xlp .mt-n1,.xlp .my-n1{margin-top:-.25rem!important}.xlp .mr-n1,.xlp .mx-n1{margin-right:-.25rem!important}.xlp .mb-n1,.xlp .my-n1{margin-bottom:-.25rem!important}.xlp .ml-n1,.xlp .mx-n1{margin-left:-.25rem!important}.xlp .m-n2{margin:-.5rem!important}.xlp .mt-n2,.xlp .my-n2{margin-top:-.5rem!important}.xlp .mr-n2,.xlp .mx-n2{margin-right:-.5rem!important}.xlp .mb-n2,.xlp .my-n2{margin-bottom:-.5rem!important}.xlp .ml-n2,.xlp .mx-n2{margin-left:-.5rem!important}.xlp .m-n3{margin:-1rem!important}.xlp .mt-n3,.xlp .my-n3{margin-top:-1rem!important}.xlp .mr-n3,.xlp .mx-n3{margin-right:-1rem!important}.xlp .mb-n3,.xlp .my-n3{margin-bottom:-1rem!important}.xlp .ml-n3,.xlp .mx-n3{margin-left:-1rem!important}.xlp .m-n4{margin:-1.5rem!important}.xlp .mt-n4,.xlp .my-n4{margin-top:-1.5rem!important}.xlp .mr-n4,.xlp .mx-n4{margin-right:-1.5rem!important}.xlp .mb-n4,.xlp .my-n4{margin-bottom:-1.5rem!important}.xlp .ml-n4,.xlp .mx-n4{margin-left:-1.5rem!important}.xlp .m-n5{margin:-3rem!important}.xlp .mt-n5,.xlp .my-n5{margin-top:-3rem!important}.xlp .mr-n5,.xlp .mx-n5{margin-right:-3rem!important}.xlp .mb-n5,.xlp .my-n5{margin-bottom:-3rem!important}.xlp .ml-n5,.xlp .mx-n5{margin-left:-3rem!important}.xlp .m-auto{margin:auto!important}.xlp .mt-auto,.xlp .my-auto{margin-top:auto!important}.xlp .mr-auto,.xlp .mx-auto{margin-right:auto!important}.xlp .mb-auto,.xlp .my-auto{margin-bottom:auto!important}.xlp .ml-auto,.xlp .mx-auto{margin-left:auto!important}@media (min-width:576px){.xlp .m-sm-0{margin:0!important}.xlp .mt-sm-0,.xlp .my-sm-0{margin-top:0!important}.xlp .mr-sm-0,.xlp .mx-sm-0{margin-right:0!important}.xlp .mb-sm-0,.xlp .my-sm-0{margin-bottom:0!important}.xlp .ml-sm-0,.xlp .mx-sm-0{margin-left:0!important}.xlp .m-sm-1{margin:.25rem!important}.xlp .mt-sm-1,.xlp .my-sm-1{margin-top:.25rem!important}.xlp .mr-sm-1,.xlp .mx-sm-1{margin-right:.25rem!important}.xlp .mb-sm-1,.xlp .my-sm-1{margin-bottom:.25rem!important}.xlp .ml-sm-1,.xlp .mx-sm-1{margin-left:.25rem!important}.xlp .m-sm-2{margin:.5rem!important}.xlp .mt-sm-2,.xlp .my-sm-2{margin-top:.5rem!important}.xlp .mr-sm-2,.xlp .mx-sm-2{margin-right:.5rem!important}.xlp .mb-sm-2,.xlp .my-sm-2{margin-bottom:.5rem!important}.xlp .ml-sm-2,.xlp .mx-sm-2{margin-left:.5rem!important}.xlp .m-sm-3{margin:1rem!important}.xlp .mt-sm-3,.xlp .my-sm-3{margin-top:1rem!important}.xlp .mr-sm-3,.xlp .mx-sm-3{margin-right:1rem!important}.xlp .mb-sm-3,.xlp .my-sm-3{margin-bottom:1rem!important}.xlp .ml-sm-3,.xlp .mx-sm-3{margin-left:1rem!important}.xlp .m-sm-4{margin:1.5rem!important}.xlp .mt-sm-4,.xlp .my-sm-4{margin-top:1.5rem!important}.xlp .mr-sm-4,.xlp .mx-sm-4{margin-right:1.5rem!important}.xlp .mb-sm-4,.xlp .my-sm-4{margin-bottom:1.5rem!important}.xlp .ml-sm-4,.xlp .mx-sm-4{margin-left:1.5rem!important}.xlp .m-sm-5{margin:3rem!important}.xlp .mt-sm-5,.xlp .my-sm-5{margin-top:3rem!important}.xlp .mr-sm-5,.xlp .mx-sm-5{margin-right:3rem!important}.xlp .mb-sm-5,.xlp .my-sm-5{margin-bottom:3rem!important}.xlp .ml-sm-5,.xlp .mx-sm-5{margin-left:3rem!important}.xlp .p-sm-0{padding:0!important}.xlp .pt-sm-0,.xlp .py-sm-0{padding-top:0!important}.xlp .pr-sm-0,.xlp .px-sm-0{padding-right:0!important}.xlp .pb-sm-0,.xlp .py-sm-0{padding-bottom:0!important}.xlp .pl-sm-0,.xlp .px-sm-0{padding-left:0!important}.xlp .p-sm-1{padding:.25rem!important}.xlp .pt-sm-1,.xlp .py-sm-1{padding-top:.25rem!important}.xlp .pr-sm-1,.xlp .px-sm-1{padding-right:.25rem!important}.xlp .pb-sm-1,.xlp .py-sm-1{padding-bottom:.25rem!important}.xlp .pl-sm-1,.xlp .px-sm-1{padding-left:.25rem!important}.xlp .p-sm-2{padding:.5rem!important}.xlp .pt-sm-2,.xlp .py-sm-2{padding-top:.5rem!important}.xlp .pr-sm-2,.xlp .px-sm-2{padding-right:.5rem!important}.xlp .pb-sm-2,.xlp .py-sm-2{padding-bottom:.5rem!important}.xlp .pl-sm-2,.xlp .px-sm-2{padding-left:.5rem!important}.xlp .p-sm-3{padding:1rem!important}.xlp .pt-sm-3,.xlp .py-sm-3{padding-top:1rem!important}.xlp .pr-sm-3,.xlp .px-sm-3{padding-right:1rem!important}.xlp .pb-sm-3,.xlp .py-sm-3{padding-bottom:1rem!important}.xlp .pl-sm-3,.xlp .px-sm-3{padding-left:1rem!important}.xlp .p-sm-4{padding:1.5rem!important}.xlp .pt-sm-4,.xlp .py-sm-4{padding-top:1.5rem!important}.xlp .pr-sm-4,.xlp .px-sm-4{padding-right:1.5rem!important}.xlp .pb-sm-4,.xlp .py-sm-4{padding-bottom:1.5rem!important}.xlp .pl-sm-4,.xlp .px-sm-4{padding-left:1.5rem!important}.xlp .p-sm-5{padding:3rem!important}.xlp .pt-sm-5,.xlp .py-sm-5{padding-top:3rem!important}.xlp .pr-sm-5,.xlp .px-sm-5{padding-right:3rem!important}.xlp .pb-sm-5,.xlp .py-sm-5{padding-bottom:3rem!important}.xlp .pl-sm-5,.xlp .px-sm-5{padding-left:3rem!important}.xlp .m-sm-n1{margin:-.25rem!important}.xlp .mt-sm-n1,.xlp .my-sm-n1{margin-top:-.25rem!important}.xlp .mr-sm-n1,.xlp .mx-sm-n1{margin-right:-.25rem!important}.xlp .mb-sm-n1,.xlp .my-sm-n1{margin-bottom:-.25rem!important}.xlp .ml-sm-n1,.xlp .mx-sm-n1{margin-left:-.25rem!important}.xlp .m-sm-n2{margin:-.5rem!important}.xlp .mt-sm-n2,.xlp .my-sm-n2{margin-top:-.5rem!important}.xlp .mr-sm-n2,.xlp .mx-sm-n2{margin-right:-.5rem!important}.xlp .mb-sm-n2,.xlp .my-sm-n2{margin-bottom:-.5rem!important}.xlp .ml-sm-n2,.xlp .mx-sm-n2{margin-left:-.5rem!important}.xlp .m-sm-n3{margin:-1rem!important}.xlp .mt-sm-n3,.xlp .my-sm-n3{margin-top:-1rem!important}.xlp .mr-sm-n3,.xlp .mx-sm-n3{margin-right:-1rem!important}.xlp .mb-sm-n3,.xlp .my-sm-n3{margin-bottom:-1rem!important}.xlp .ml-sm-n3,.xlp .mx-sm-n3{margin-left:-1rem!important}.xlp .m-sm-n4{margin:-1.5rem!important}.xlp .mt-sm-n4,.xlp .my-sm-n4{margin-top:-1.5rem!important}.xlp .mr-sm-n4,.xlp .mx-sm-n4{margin-right:-1.5rem!important}.xlp .mb-sm-n4,.xlp .my-sm-n4{margin-bottom:-1.5rem!important}.xlp .ml-sm-n4,.xlp .mx-sm-n4{margin-left:-1.5rem!important}.xlp .m-sm-n5{margin:-3rem!important}.xlp .mt-sm-n5,.xlp .my-sm-n5{margin-top:-3rem!important}.xlp .mr-sm-n5,.xlp .mx-sm-n5{margin-right:-3rem!important}.xlp .mb-sm-n5,.xlp .my-sm-n5{margin-bottom:-3rem!important}.xlp .ml-sm-n5,.xlp .mx-sm-n5{margin-left:-3rem!important}.xlp .m-sm-auto{margin:auto!important}.xlp .mt-sm-auto,.xlp .my-sm-auto{margin-top:auto!important}.xlp .mr-sm-auto,.xlp .mx-sm-auto{margin-right:auto!important}.xlp .mb-sm-auto,.xlp .my-sm-auto{margin-bottom:auto!important}.xlp .ml-sm-auto,.xlp .mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.xlp .m-md-0{margin:0!important}.xlp .mt-md-0,.xlp .my-md-0{margin-top:0!important}.xlp .mr-md-0,.xlp .mx-md-0{margin-right:0!important}.xlp .mb-md-0,.xlp .my-md-0{margin-bottom:0!important}.xlp .ml-md-0,.xlp .mx-md-0{margin-left:0!important}.xlp .m-md-1{margin:.25rem!important}.xlp .mt-md-1,.xlp .my-md-1{margin-top:.25rem!important}.xlp .mr-md-1,.xlp .mx-md-1{margin-right:.25rem!important}.xlp .mb-md-1,.xlp .my-md-1{margin-bottom:.25rem!important}.xlp .ml-md-1,.xlp .mx-md-1{margin-left:.25rem!important}.xlp .m-md-2{margin:.5rem!important}.xlp .mt-md-2,.xlp .my-md-2{margin-top:.5rem!important}.xlp .mr-md-2,.xlp .mx-md-2{margin-right:.5rem!important}.xlp .mb-md-2,.xlp .my-md-2{margin-bottom:.5rem!important}.xlp .ml-md-2,.xlp .mx-md-2{margin-left:.5rem!important}.xlp .m-md-3{margin:1rem!important}.xlp .mt-md-3,.xlp .my-md-3{margin-top:1rem!important}.xlp .mr-md-3,.xlp .mx-md-3{margin-right:1rem!important}.xlp .mb-md-3,.xlp .my-md-3{margin-bottom:1rem!important}.xlp .ml-md-3,.xlp .mx-md-3{margin-left:1rem!important}.xlp .m-md-4{margin:1.5rem!important}.xlp .mt-md-4,.xlp .my-md-4{margin-top:1.5rem!important}.xlp .mr-md-4,.xlp .mx-md-4{margin-right:1.5rem!important}.xlp .mb-md-4,.xlp .my-md-4{margin-bottom:1.5rem!important}.xlp .ml-md-4,.xlp .mx-md-4{margin-left:1.5rem!important}.xlp .m-md-5{margin:3rem!important}.xlp .mt-md-5,.xlp .my-md-5{margin-top:3rem!important}.xlp .mr-md-5,.xlp .mx-md-5{margin-right:3rem!important}.xlp .mb-md-5,.xlp .my-md-5{margin-bottom:3rem!important}.xlp .ml-md-5,.xlp .mx-md-5{margin-left:3rem!important}.xlp .p-md-0{padding:0!important}.xlp .pt-md-0,.xlp .py-md-0{padding-top:0!important}.xlp .pr-md-0,.xlp .px-md-0{padding-right:0!important}.xlp .pb-md-0,.xlp .py-md-0{padding-bottom:0!important}.xlp .pl-md-0,.xlp .px-md-0{padding-left:0!important}.xlp .p-md-1{padding:.25rem!important}.xlp .pt-md-1,.xlp .py-md-1{padding-top:.25rem!important}.xlp .pr-md-1,.xlp .px-md-1{padding-right:.25rem!important}.xlp .pb-md-1,.xlp .py-md-1{padding-bottom:.25rem!important}.xlp .pl-md-1,.xlp .px-md-1{padding-left:.25rem!important}.xlp .p-md-2{padding:.5rem!important}.xlp .pt-md-2,.xlp .py-md-2{padding-top:.5rem!important}.xlp .pr-md-2,.xlp .px-md-2{padding-right:.5rem!important}.xlp .pb-md-2,.xlp .py-md-2{padding-bottom:.5rem!important}.xlp .pl-md-2,.xlp .px-md-2{padding-left:.5rem!important}.xlp .p-md-3{padding:1rem!important}.xlp .pt-md-3,.xlp .py-md-3{padding-top:1rem!important}.xlp .pr-md-3,.xlp .px-md-3{padding-right:1rem!important}.xlp .pb-md-3,.xlp .py-md-3{padding-bottom:1rem!important}.xlp .pl-md-3,.xlp .px-md-3{padding-left:1rem!important}.xlp .p-md-4{padding:1.5rem!important}.xlp .pt-md-4,.xlp .py-md-4{padding-top:1.5rem!important}.xlp .pr-md-4,.xlp .px-md-4{padding-right:1.5rem!important}.xlp .pb-md-4,.xlp .py-md-4{padding-bottom:1.5rem!important}.xlp .pl-md-4,.xlp .px-md-4{padding-left:1.5rem!important}.xlp .p-md-5{padding:3rem!important}.xlp .pt-md-5,.xlp .py-md-5{padding-top:3rem!important}.xlp .pr-md-5,.xlp .px-md-5{padding-right:3rem!important}.xlp .pb-md-5,.xlp .py-md-5{padding-bottom:3rem!important}.xlp .pl-md-5,.xlp .px-md-5{padding-left:3rem!important}.xlp .m-md-n1{margin:-.25rem!important}.xlp .mt-md-n1,.xlp .my-md-n1{margin-top:-.25rem!important}.xlp .mr-md-n1,.xlp .mx-md-n1{margin-right:-.25rem!important}.xlp .mb-md-n1,.xlp .my-md-n1{margin-bottom:-.25rem!important}.xlp .ml-md-n1,.xlp .mx-md-n1{margin-left:-.25rem!important}.xlp .m-md-n2{margin:-.5rem!important}.xlp .mt-md-n2,.xlp .my-md-n2{margin-top:-.5rem!important}.xlp .mr-md-n2,.xlp .mx-md-n2{margin-right:-.5rem!important}.xlp .mb-md-n2,.xlp .my-md-n2{margin-bottom:-.5rem!important}.xlp .ml-md-n2,.xlp .mx-md-n2{margin-left:-.5rem!important}.xlp .m-md-n3{margin:-1rem!important}.xlp .mt-md-n3,.xlp .my-md-n3{margin-top:-1rem!important}.xlp .mr-md-n3,.xlp .mx-md-n3{margin-right:-1rem!important}.xlp .mb-md-n3,.xlp .my-md-n3{margin-bottom:-1rem!important}.xlp .ml-md-n3,.xlp .mx-md-n3{margin-left:-1rem!important}.xlp .m-md-n4{margin:-1.5rem!important}.xlp .mt-md-n4,.xlp .my-md-n4{margin-top:-1.5rem!important}.xlp .mr-md-n4,.xlp .mx-md-n4{margin-right:-1.5rem!important}.xlp .mb-md-n4,.xlp .my-md-n4{margin-bottom:-1.5rem!important}.xlp .ml-md-n4,.xlp .mx-md-n4{margin-left:-1.5rem!important}.xlp .m-md-n5{margin:-3rem!important}.xlp .mt-md-n5,.xlp .my-md-n5{margin-top:-3rem!important}.xlp .mr-md-n5,.xlp .mx-md-n5{margin-right:-3rem!important}.xlp .mb-md-n5,.xlp .my-md-n5{margin-bottom:-3rem!important}.xlp .ml-md-n5,.xlp .mx-md-n5{margin-left:-3rem!important}.xlp .m-md-auto{margin:auto!important}.xlp .mt-md-auto,.xlp .my-md-auto{margin-top:auto!important}.xlp .mr-md-auto,.xlp .mx-md-auto{margin-right:auto!important}.xlp .mb-md-auto,.xlp .my-md-auto{margin-bottom:auto!important}.xlp .ml-md-auto,.xlp .mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.xlp .m-lg-0{margin:0!important}.xlp .mt-lg-0,.xlp .my-lg-0{margin-top:0!important}.xlp .mr-lg-0,.xlp .mx-lg-0{margin-right:0!important}.xlp .mb-lg-0,.xlp .my-lg-0{margin-bottom:0!important}.xlp .ml-lg-0,.xlp .mx-lg-0{margin-left:0!important}.xlp .m-lg-1{margin:.25rem!important}.xlp .mt-lg-1,.xlp .my-lg-1{margin-top:.25rem!important}.xlp .mr-lg-1,.xlp .mx-lg-1{margin-right:.25rem!important}.xlp .mb-lg-1,.xlp .my-lg-1{margin-bottom:.25rem!important}.xlp .ml-lg-1,.xlp .mx-lg-1{margin-left:.25rem!important}.xlp .m-lg-2{margin:.5rem!important}.xlp .mt-lg-2,.xlp .my-lg-2{margin-top:.5rem!important}.xlp .mr-lg-2,.xlp .mx-lg-2{margin-right:.5rem!important}.xlp .mb-lg-2,.xlp .my-lg-2{margin-bottom:.5rem!important}.xlp .ml-lg-2,.xlp .mx-lg-2{margin-left:.5rem!important}.xlp .m-lg-3{margin:1rem!important}.xlp .mt-lg-3,.xlp .my-lg-3{margin-top:1rem!important}.xlp .mr-lg-3,.xlp .mx-lg-3{margin-right:1rem!important}.xlp .mb-lg-3,.xlp .my-lg-3{margin-bottom:1rem!important}.xlp .ml-lg-3,.xlp .mx-lg-3{margin-left:1rem!important}.xlp .m-lg-4{margin:1.5rem!important}.xlp .mt-lg-4,.xlp .my-lg-4{margin-top:1.5rem!important}.xlp .mr-lg-4,.xlp .mx-lg-4{margin-right:1.5rem!important}.xlp .mb-lg-4,.xlp .my-lg-4{margin-bottom:1.5rem!important}.xlp .ml-lg-4,.xlp .mx-lg-4{margin-left:1.5rem!important}.xlp .m-lg-5{margin:3rem!important}.xlp .mt-lg-5,.xlp .my-lg-5{margin-top:3rem!important}.xlp .mr-lg-5,.xlp .mx-lg-5{margin-right:3rem!important}.xlp .mb-lg-5,.xlp .my-lg-5{margin-bottom:3rem!important}.xlp .ml-lg-5,.xlp .mx-lg-5{margin-left:3rem!important}.xlp .p-lg-0{padding:0!important}.xlp .pt-lg-0,.xlp .py-lg-0{padding-top:0!important}.xlp .pr-lg-0,.xlp .px-lg-0{padding-right:0!important}.xlp .pb-lg-0,.xlp .py-lg-0{padding-bottom:0!important}.xlp .pl-lg-0,.xlp .px-lg-0{padding-left:0!important}.xlp .p-lg-1{padding:.25rem!important}.xlp .pt-lg-1,.xlp .py-lg-1{padding-top:.25rem!important}.xlp .pr-lg-1,.xlp .px-lg-1{padding-right:.25rem!important}.xlp .pb-lg-1,.xlp .py-lg-1{padding-bottom:.25rem!important}.xlp .pl-lg-1,.xlp .px-lg-1{padding-left:.25rem!important}.xlp .p-lg-2{padding:.5rem!important}.xlp .pt-lg-2,.xlp .py-lg-2{padding-top:.5rem!important}.xlp .pr-lg-2,.xlp .px-lg-2{padding-right:.5rem!important}.xlp .pb-lg-2,.xlp .py-lg-2{padding-bottom:.5rem!important}.xlp .pl-lg-2,.xlp .px-lg-2{padding-left:.5rem!important}.xlp .p-lg-3{padding:1rem!important}.xlp .pt-lg-3,.xlp .py-lg-3{padding-top:1rem!important}.xlp .pr-lg-3,.xlp .px-lg-3{padding-right:1rem!important}.xlp .pb-lg-3,.xlp .py-lg-3{padding-bottom:1rem!important}.xlp .pl-lg-3,.xlp .px-lg-3{padding-left:1rem!important}.xlp .p-lg-4{padding:1.5rem!important}.xlp .pt-lg-4,.xlp .py-lg-4{padding-top:1.5rem!important}.xlp .pr-lg-4,.xlp .px-lg-4{padding-right:1.5rem!important}.xlp .pb-lg-4,.xlp .py-lg-4{padding-bottom:1.5rem!important}.xlp .pl-lg-4,.xlp .px-lg-4{padding-left:1.5rem!important}.xlp .p-lg-5{padding:3rem!important}.xlp .pt-lg-5,.xlp .py-lg-5{padding-top:3rem!important}.xlp .pr-lg-5,.xlp .px-lg-5{padding-right:3rem!important}.xlp .pb-lg-5,.xlp .py-lg-5{padding-bottom:3rem!important}.xlp .pl-lg-5,.xlp .px-lg-5{padding-left:3rem!important}.xlp .m-lg-n1{margin:-.25rem!important}.xlp .mt-lg-n1,.xlp .my-lg-n1{margin-top:-.25rem!important}.xlp .mr-lg-n1,.xlp .mx-lg-n1{margin-right:-.25rem!important}.xlp .mb-lg-n1,.xlp .my-lg-n1{margin-bottom:-.25rem!important}.xlp .ml-lg-n1,.xlp .mx-lg-n1{margin-left:-.25rem!important}.xlp .m-lg-n2{margin:-.5rem!important}.xlp .mt-lg-n2,.xlp .my-lg-n2{margin-top:-.5rem!important}.xlp .mr-lg-n2,.xlp .mx-lg-n2{margin-right:-.5rem!important}.xlp .mb-lg-n2,.xlp .my-lg-n2{margin-bottom:-.5rem!important}.xlp .ml-lg-n2,.xlp .mx-lg-n2{margin-left:-.5rem!important}.xlp .m-lg-n3{margin:-1rem!important}.xlp .mt-lg-n3,.xlp .my-lg-n3{margin-top:-1rem!important}.xlp .mr-lg-n3,.xlp .mx-lg-n3{margin-right:-1rem!important}.xlp .mb-lg-n3,.xlp .my-lg-n3{margin-bottom:-1rem!important}.xlp .ml-lg-n3,.xlp .mx-lg-n3{margin-left:-1rem!important}.xlp .m-lg-n4{margin:-1.5rem!important}.xlp .mt-lg-n4,.xlp .my-lg-n4{margin-top:-1.5rem!important}.xlp .mr-lg-n4,.xlp .mx-lg-n4{margin-right:-1.5rem!important}.xlp .mb-lg-n4,.xlp .my-lg-n4{margin-bottom:-1.5rem!important}.xlp .ml-lg-n4,.xlp .mx-lg-n4{margin-left:-1.5rem!important}.xlp .m-lg-n5{margin:-3rem!important}.xlp .mt-lg-n5,.xlp .my-lg-n5{margin-top:-3rem!important}.xlp .mr-lg-n5,.xlp .mx-lg-n5{margin-right:-3rem!important}.xlp .mb-lg-n5,.xlp .my-lg-n5{margin-bottom:-3rem!important}.xlp .ml-lg-n5,.xlp .mx-lg-n5{margin-left:-3rem!important}.xlp .m-lg-auto{margin:auto!important}.xlp .mt-lg-auto,.xlp .my-lg-auto{margin-top:auto!important}.xlp .mr-lg-auto,.xlp .mx-lg-auto{margin-right:auto!important}.xlp .mb-lg-auto,.xlp .my-lg-auto{margin-bottom:auto!important}.xlp .ml-lg-auto,.xlp .mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.xlp .m-xl-0{margin:0!important}.xlp .mt-xl-0,.xlp .my-xl-0{margin-top:0!important}.xlp .mr-xl-0,.xlp .mx-xl-0{margin-right:0!important}.xlp .mb-xl-0,.xlp .my-xl-0{margin-bottom:0!important}.xlp .ml-xl-0,.xlp .mx-xl-0{margin-left:0!important}.xlp .m-xl-1{margin:.25rem!important}.xlp .mt-xl-1,.xlp .my-xl-1{margin-top:.25rem!important}.xlp .mr-xl-1,.xlp .mx-xl-1{margin-right:.25rem!important}.xlp .mb-xl-1,.xlp .my-xl-1{margin-bottom:.25rem!important}.xlp .ml-xl-1,.xlp .mx-xl-1{margin-left:.25rem!important}.xlp .m-xl-2{margin:.5rem!important}.xlp .mt-xl-2,.xlp .my-xl-2{margin-top:.5rem!important}.xlp .mr-xl-2,.xlp .mx-xl-2{margin-right:.5rem!important}.xlp .mb-xl-2,.xlp .my-xl-2{margin-bottom:.5rem!important}.xlp .ml-xl-2,.xlp .mx-xl-2{margin-left:.5rem!important}.xlp .m-xl-3{margin:1rem!important}.xlp .mt-xl-3,.xlp .my-xl-3{margin-top:1rem!important}.xlp .mr-xl-3,.xlp .mx-xl-3{margin-right:1rem!important}.xlp .mb-xl-3,.xlp .my-xl-3{margin-bottom:1rem!important}.xlp .ml-xl-3,.xlp .mx-xl-3{margin-left:1rem!important}.xlp .m-xl-4{margin:1.5rem!important}.xlp .mt-xl-4,.xlp .my-xl-4{margin-top:1.5rem!important}.xlp .mr-xl-4,.xlp .mx-xl-4{margin-right:1.5rem!important}.xlp .mb-xl-4,.xlp .my-xl-4{margin-bottom:1.5rem!important}.xlp .ml-xl-4,.xlp .mx-xl-4{margin-left:1.5rem!important}.xlp .m-xl-5{margin:3rem!important}.xlp .mt-xl-5,.xlp .my-xl-5{margin-top:3rem!important}.xlp .mr-xl-5,.xlp .mx-xl-5{margin-right:3rem!important}.xlp .mb-xl-5,.xlp .my-xl-5{margin-bottom:3rem!important}.xlp .ml-xl-5,.xlp .mx-xl-5{margin-left:3rem!important}.xlp .p-xl-0{padding:0!important}.xlp .pt-xl-0,.xlp .py-xl-0{padding-top:0!important}.xlp .pr-xl-0,.xlp .px-xl-0{padding-right:0!important}.xlp .pb-xl-0,.xlp .py-xl-0{padding-bottom:0!important}.xlp .pl-xl-0,.xlp .px-xl-0{padding-left:0!important}.xlp .p-xl-1{padding:.25rem!important}.xlp .pt-xl-1,.xlp .py-xl-1{padding-top:.25rem!important}.xlp .pr-xl-1,.xlp .px-xl-1{padding-right:.25rem!important}.xlp .pb-xl-1,.xlp .py-xl-1{padding-bottom:.25rem!important}.xlp .pl-xl-1,.xlp .px-xl-1{padding-left:.25rem!important}.xlp .p-xl-2{padding:.5rem!important}.xlp .pt-xl-2,.xlp .py-xl-2{padding-top:.5rem!important}.xlp .pr-xl-2,.xlp .px-xl-2{padding-right:.5rem!important}.xlp .pb-xl-2,.xlp .py-xl-2{padding-bottom:.5rem!important}.xlp .pl-xl-2,.xlp .px-xl-2{padding-left:.5rem!important}.xlp .p-xl-3{padding:1rem!important}.xlp .pt-xl-3,.xlp .py-xl-3{padding-top:1rem!important}.xlp .pr-xl-3,.xlp .px-xl-3{padding-right:1rem!important}.xlp .pb-xl-3,.xlp .py-xl-3{padding-bottom:1rem!important}.xlp .pl-xl-3,.xlp .px-xl-3{padding-left:1rem!important}.xlp .p-xl-4{padding:1.5rem!important}.xlp .pt-xl-4,.xlp .py-xl-4{padding-top:1.5rem!important}.xlp .pr-xl-4,.xlp .px-xl-4{padding-right:1.5rem!important}.xlp .pb-xl-4,.xlp .py-xl-4{padding-bottom:1.5rem!important}.xlp .pl-xl-4,.xlp .px-xl-4{padding-left:1.5rem!important}.xlp .p-xl-5{padding:3rem!important}.xlp .pt-xl-5,.xlp .py-xl-5{padding-top:3rem!important}.xlp .pr-xl-5,.xlp .px-xl-5{padding-right:3rem!important}.xlp .pb-xl-5,.xlp .py-xl-5{padding-bottom:3rem!important}.xlp .pl-xl-5,.xlp .px-xl-5{padding-left:3rem!important}.xlp .m-xl-n1{margin:-.25rem!important}.xlp .mt-xl-n1,.xlp .my-xl-n1{margin-top:-.25rem!important}.xlp .mr-xl-n1,.xlp .mx-xl-n1{margin-right:-.25rem!important}.xlp .mb-xl-n1,.xlp .my-xl-n1{margin-bottom:-.25rem!important}.xlp .ml-xl-n1,.xlp .mx-xl-n1{margin-left:-.25rem!important}.xlp .m-xl-n2{margin:-.5rem!important}.xlp .mt-xl-n2,.xlp .my-xl-n2{margin-top:-.5rem!important}.xlp .mr-xl-n2,.xlp .mx-xl-n2{margin-right:-.5rem!important}.xlp .mb-xl-n2,.xlp .my-xl-n2{margin-bottom:-.5rem!important}.xlp .ml-xl-n2,.xlp .mx-xl-n2{margin-left:-.5rem!important}.xlp .m-xl-n3{margin:-1rem!important}.xlp .mt-xl-n3,.xlp .my-xl-n3{margin-top:-1rem!important}.xlp .mr-xl-n3,.xlp .mx-xl-n3{margin-right:-1rem!important}.xlp .mb-xl-n3,.xlp .my-xl-n3{margin-bottom:-1rem!important}.xlp .ml-xl-n3,.xlp .mx-xl-n3{margin-left:-1rem!important}.xlp .m-xl-n4{margin:-1.5rem!important}.xlp .mt-xl-n4,.xlp .my-xl-n4{margin-top:-1.5rem!important}.xlp .mr-xl-n4,.xlp .mx-xl-n4{margin-right:-1.5rem!important}.xlp .mb-xl-n4,.xlp .my-xl-n4{margin-bottom:-1.5rem!important}.xlp .ml-xl-n4,.xlp .mx-xl-n4{margin-left:-1.5rem!important}.xlp .m-xl-n5{margin:-3rem!important}.xlp .mt-xl-n5,.xlp .my-xl-n5{margin-top:-3rem!important}.xlp .mr-xl-n5,.xlp .mx-xl-n5{margin-right:-3rem!important}.xlp .mb-xl-n5,.xlp .my-xl-n5{margin-bottom:-3rem!important}.xlp .ml-xl-n5,.xlp .mx-xl-n5{margin-left:-3rem!important}.xlp .m-xl-auto{margin:auto!important}.xlp .mt-xl-auto,.xlp .my-xl-auto{margin-top:auto!important}.xlp .mr-xl-auto,.xlp .mx-xl-auto{margin-right:auto!important}.xlp .mb-xl-auto,.xlp .my-xl-auto{margin-bottom:auto!important}.xlp .ml-xl-auto,.xlp .mx-xl-auto{margin-left:auto!important}}

/* 03. buttons
================================================================ */
.xlp .btn {
	display: inline-block;
	background: rgba(0, 0, 0, .07);
	font-family: inherit;
	font-size: 1rem;
	border-radius: 30px;
	padding: 7px 28px 7px 28px;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
	text-rendering: optimizeLegibility;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	text-decoration: none;
}
.xlp .btn-black,
.xlp .btn-blue,
.xlp .btn-grey,
.xlp .btn-pink,
.xlp .btn-violet {
	color: #fff
}
.xlp .btn-blue {
	background: #0082fa;
  border: 1px solid #0082fa;
}
.xlp .btn-violet {
	background: #8250fa;
  border: 1px solid #8250fa;
}
.xlp .btn-pink {
	background: #fa0064;
  border: 1px solid #fa0064;
}
.xlp .btn-grey {
	background: #646464;
  border: 1px solid #646464;
}
.xlp .btn-black {
	background: #000;
  border: 1px solid #000;
}
.xlp .btn-white {
	background: #fff;
	color: #000;
  border: 1px solid #000;
}
.xlp .btn-black-o,
.xlp .btn-blue-o,
.xlp .btn-grey-o,
.xlp .btn-pink-o,
.xlp .btn-violet-o {
	background: 0 0;
	border-width: 1px;
	border-style: solid
}
.xlp .btn-blue-o {
	border-color: #0082fa;
	color: #0082fa
}
.xlp .btn-violet-o {
	border-color: #8250fa;
	color: #8250fa
}
.xlp .btn-pink-o {
	border-color: #fa0064;
	color: #fa0064
}
.xlp .btn-grey-o {
	border-color: #646464;
	color: #646464
}
.xlp .btn-black-o {
	border-color: #707070;
	border-color: rgba(0, 0, 0, .7);
	color: #000
}
.xlp .btn-white-o {
	border-color: #fff;
	color: #fff
}
.xlp .btn-black:hover,
.xlp .btn-blue:hover,
.xlp .btn-grey:hover,
.xlp .btn-pink:hover,
.xlp .btn-violet:hover,
.xlp .btn-white:hover {
	background: transparent;
}
.xlp .btn-black-o:hover,
.xlp .btn-blue-o:hover,
.xlp .btn-grey-o:hover,
.xlp .btn-pink-o:hover,
.xlp .btn-violet-o:hover {
	color: #fff
}
.xlp .btn-blue-o:hover {
	background: #0082fa
}
.xlp .btn-violet-o:hover {
	background: #8250fa
}
.xlp .btn-pink-o:hover {
	background: #fa0064
}
.xlp .btn-grey-o:hover {
	background: #646464
}
.xlp .btn-white-o:hover {
	background: #fff;
	color: #000
}
.xlp .btn-black-o:hover {
	background: #000
}
.xlp .btn-blue:hover {
	color: #0082fa;
	border: 1px solid #0082fa
}
.xlp .btn-violet:hover {
	color: #8250fa;
	border: 1px solid #8250fa
}
.xlp .btn-pink:hover {
	color: #fa0064;
	border: 1px solid #fa0064
}
.xlp .btn-grey:hover {
	color: #646464;
	border: 1px solid #646464
}
.xlp .btn-black:hover {
	color: #000;
	border: 1px solid #000
}
.xlp .btn-white:hover {
	color: #fff;
	border: 1px solid #fff
}

/* 04. General styles
================================================================ */
.xlp .disclaimer {
  padding: 25px 0;
  max-width: 80%;
  margin: auto;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
}
.xlp .no-gutters {
  padding-right: 0!important;
  padding-left: 0!important;
}
.xlp img.fluid {max-width: 100%; height: auto; -ms-flex-item-align: center; align-self: center;}

@media (max-width: 768px) {
  .xlp .disclaimer {
    padding: 25px 15px;
    max-width: 100%;
    margin: auto;
    text-align: center;
    font-size: 12px;
  }
}

/* 05. Typography
================================================================ */

/* resets, general */
.xlp h1,
.xlp h2,
.xlp h3,
.xlp h4,
.xlp h5,
.xlp h6,
.xlp p {margin-block-start: 0; margin-block-end: 0;}
.xlp h2, .xlp h3, .xlp h4, .xlp h5, .xlp h6, .xlp p, .xlp span
{font-weight: 300; line-height: 1.5;}
.xlp .text-left {text-align: left;}
.xlp .text-center {text-align: center;}
.xlp .text-right {text-align: right;}



/* font-weight */
.xlp .text-semi {font-weight: 600;}



/* 06. Layout
================================================================ */
.xlp header .btn, .xlp .section-title {margin: 25px 0;}
.xlp main .btn {margin: 15px 0;}
.xlp .no-gutters {margin-right: 0;margin-left: 0}
.xlp .no-gutters>.col,
.xlp .no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}

/* 07. Alignment
================================================================ */
.row-frame {max-width: 1440px!important;margin: 0 auto!important;padding:0 16px;}

