@charset "UTF-8";
/* colors */
/* borders */
/* window width */
/* sizes */
body {
  font-family: "Trebuchet MS", sans-serif;
}

.f-12 {
  font-size: 12px;
}

.f-14 {
  font-size: 14px;
}

.f-16 {
  font-size: 16px;
}

.f-18 {
  font-size: 18px;
}

.f-20 {
  font-size: 20px;
}

.f-22 {
  font-size: 22px;
}

.f-24 {
  font-size: 24px;
}

.f-26 {
  font-size: 26px;
}

.f-30 {
  font-size: 30px;
}

.clearfix {
  clear: both;
  display: block;
}

/* bootstrap d-none alternative, old style. that's the reason !important is used */
.hidden {
  display: none !important;
}

.brand {
  color: #462110 !important;
}

.brand-bg {
  background-color: #462110;
}

.brand-bg-light {
  background-color: #e9ded4;
}

.bg-white {
  background-color: #fff;
}

.border-r {
  border-radius: 6px;
}

.transparent {
  background-color: transparent;
}

.flex {
  display: flex;
}
.flex .flex-item {
  flex: 1;
}

.b-t-1 {
  border-top: 1px solid;
}
.b-r-1 {
  border-right: 1px solid;
}
.b-b-1 {
  border-bottom: 1px solid;
}
.b-l-1 {
  border-left: 1px solid;
}

.border-gray {
  border-color: #e3e3e3;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-33 {
  width: 33.33333333%;
}

.w-44 {
  width: 44.44444444%;
}

.w-50 {
  width: 50%;
}

.w-56 {
  width: 56%;
}

.w-60 {
  width: 60%;
}

.w-66 {
  width: 66%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

.w-10px {
  width: 10px;
}

.w-16px {
  width: 16px;
}

.w-20px {
  width: 20px;
}

.w-25px {
  width: 25px;
}

.w-30px {
  width: 30px;
}

.w-32px {
  width: 32px;
}

.w-40px {
  width: 40px;
}

.w-50px {
  width: 50px;
}

.w-60px {
  width: 60px;
}

.w-64px {
  width: 64px;
}

.w-70px {
  width: 70px;
}

.w-75px {
  width: 75px;
}

.w-80px {
  width: 80px;
}

.w-100px {
  width: 100px;
}

.w-150px {
  width: 150px;
}

.w-200px {
  width: 200px;
}

.rel {
  position: relative;
}

.pointer {
  cursor: pointer;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline;
}

/* without e.g. 30 *1%, sass fails (no interpolation with percent sign) */
.h-25 {
  height: 25%;
}

.h-25px {
  height: 25px;
}

.min-h-25 {
  min-height: 25%;
  /* the parent tag has flex column dir; see .inner-content-content > * */
}
.inner-content-content > .min-h-25 {
  /* flex: 1; would set flex-shrink to 1 */
  flex-grow: 1;
  flex-shrink: 0;
}

.min-h-25vh {
  min-height: 25vh;
}

.h-30 {
  height: 30%;
}

.h-30px {
  height: 30px;
}

.min-h-30 {
  min-height: 30%;
  /* the parent tag has flex column dir; see .inner-content-content > * */
}
.inner-content-content > .min-h-30 {
  /* flex: 1; would set flex-shrink to 1 */
  flex-grow: 1;
  flex-shrink: 0;
}

.min-h-30vh {
  min-height: 30vh;
}

.h-40 {
  height: 40%;
}

.h-40px {
  height: 40px;
}

.min-h-40 {
  min-height: 40%;
  /* the parent tag has flex column dir; see .inner-content-content > * */
}
.inner-content-content > .min-h-40 {
  /* flex: 1; would set flex-shrink to 1 */
  flex-grow: 1;
  flex-shrink: 0;
}

.min-h-40vh {
  min-height: 40vh;
}

.h-50 {
  height: 50%;
}

.h-50px {
  height: 50px;
}

.min-h-50 {
  min-height: 50%;
  /* the parent tag has flex column dir; see .inner-content-content > * */
}
.inner-content-content > .min-h-50 {
  /* flex: 1; would set flex-shrink to 1 */
  flex-grow: 1;
  flex-shrink: 0;
}

.min-h-50vh {
  min-height: 50vh;
}

.h-75 {
  height: 75%;
}

.h-75px {
  height: 75px;
}

.min-h-75 {
  min-height: 75%;
  /* the parent tag has flex column dir; see .inner-content-content > * */
}
.inner-content-content > .min-h-75 {
  /* flex: 1; would set flex-shrink to 1 */
  flex-grow: 1;
  flex-shrink: 0;
}

.min-h-75vh {
  min-height: 75vh;
}

.h-100 {
  height: 100%;
}

.h-100px {
  height: 100px;
}

.min-h-100 {
  min-height: 100%;
  /* the parent tag has flex column dir; see .inner-content-content > * */
}
.inner-content-content > .min-h-100 {
  /* flex: 1; would set flex-shrink to 1 */
  flex-grow: 1;
  flex-shrink: 0;
}

.min-h-100vh {
  min-height: 100vh;
}

.h-100p-minus-50 {
  height: calc(100% - 50px);
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ws-now {
  white-space: nowrap;
}

.wsn, .w-s-n {
  white-space: nowrap;
}

.w-s-normal {
  white-space: normal;
}

.w-b-b-a {
  word-break: break-all;
}

.cu-d {
  cursor: default;
}

.cu-p {
  cursor: pointer;
}

.p-e-n, .pen {
  pointer-events: none;
}

.p-e-a, .pea {
  pointer-events: all;
}

.b-r-50 {
  border-radius: 50%;
}

.b-r-2 {
  border-radius: 2px;
}

.b-r-3 {
  border-radius: 3px;
}

.b-r-4 {
  border-radius: 4px;
}

.b-r-5 {
  border-radius: 5px;
}

.b-r-6 {
  border-radius: 6px;
}

.b-r-7 {
  border-radius: 7px;
}

.b-r-8 {
  border-radius: 8px;
}

.rotate-minus-90 {
  transform: rotate(-90deg);
}

.rotate-minus-45 {
  transform: rotate(-45deg);
}

.rotate-45 {
  transform: rotate(45deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

.rotate-270 {
  transform: rotate(270deg);
}

.flex-wrap {
  flex-wrap: wrap;
}

/* instead of this hack, made default active tab display: flex; flex-direction: column; */
/*.tab-content>.active {
    &.flex-apart, &.flex-apart-flex-start, &.flex-apart-flex-end, &.flex-apart-stretch, &.flex-center, &.inline-flex-center, &.flex-wrap { display: flex; }
}*/
/* generates e.g. .flex-right-bottom that aligns contents that way using flexbox */
.flex-center-center, .flex-col-center-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-row-center-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-left-center, .flex-col-left-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.flex-row-left-center {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.flex-right-center, .flex-col-right-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.flex-row-right-center {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.flex-stretch-center, .flex-col-stretch-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.flex-row-stretch-center {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: center;
}

.flex-spacebetween-center, .flex-col-spacebetween-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: space-between;
}

.flex-row-spacebetween-center {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.flex-spacearound-center, .flex-col-spacearound-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: space-around;
}

.flex-row-spacearound-center {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.flex-center-top, .flex-col-center-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.flex-row-center-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.flex-left-top, .flex-col-left-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-row-left-top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-right-top, .flex-col-right-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.flex-row-right-top {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex-stretch-top, .flex-col-stretch-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.flex-row-stretch-top {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: flex-start;
}

.flex-spacebetween-top, .flex-col-spacebetween-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: space-between;
}

.flex-row-spacebetween-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-spacearound-top, .flex-col-spacearound-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: space-around;
}

.flex-row-spacearound-top {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}

.flex-center-bottom, .flex-col-center-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.flex-row-center-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}

.flex-left-bottom, .flex-col-left-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex-row-left-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}

.flex-right-bottom, .flex-col-right-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.flex-row-right-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}

.flex-stretch-bottom, .flex-col-stretch-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}

.flex-row-stretch-bottom {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: flex-end;
}

.flex-spacebetween-bottom, .flex-col-spacebetween-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: space-between;
}

.flex-row-spacebetween-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.flex-spacearound-bottom, .flex-col-spacearound-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: space-around;
}

.flex-row-spacearound-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
}

.flex-center-stretch, .flex-col-center-stretch {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
}

.flex-row-center-stretch {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}

.flex-left-stretch, .flex-col-left-stretch {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
}

.flex-row-left-stretch {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}

.flex-right-stretch, .flex-col-right-stretch {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-end;
}

.flex-row-right-stretch {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
}

.flex-stretch-stretch, .flex-col-stretch-stretch {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
}

.flex-row-stretch-stretch {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
}

.flex-spacebetween-stretch, .flex-col-spacebetween-stretch {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: space-between;
}

.flex-row-spacebetween-stretch {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

.flex-spacearound-stretch, .flex-col-spacearound-stretch {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: space-around;
}

.flex-row-spacearound-stretch {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
}

.flex-center-spacebetween, .flex-col-center-spacebetween {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.flex-row-center-spacebetween {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: space-between;
}

.flex-left-spacebetween, .flex-col-left-spacebetween {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-row-left-spacebetween {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: space-between;
}

.flex-right-spacebetween, .flex-col-right-spacebetween {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.flex-row-right-spacebetween {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: space-between;
}

.flex-stretch-spacebetween, .flex-col-stretch-spacebetween {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.flex-row-stretch-spacebetween {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: space-between;
}

.flex-spacebetween-spacebetween, .flex-col-spacebetween-spacebetween {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: space-between;
}

.flex-row-spacebetween-spacebetween {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: space-between;
}

.flex-spacearound-spacebetween, .flex-col-spacearound-spacebetween {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: space-around;
}

.flex-row-spacearound-spacebetween {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: space-between;
}

.flex-center-spacearound, .flex-col-center-spacearound {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.flex-row-center-spacearound {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: space-around;
}

.flex-left-spacearound, .flex-col-left-spacearound {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}

.flex-row-left-spacearound {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: space-around;
}

.flex-right-spacearound, .flex-col-right-spacearound {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}

.flex-row-right-spacearound {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: space-around;
}

.flex-stretch-spacearound, .flex-col-stretch-spacearound {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
}

.flex-row-stretch-spacearound {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: space-around;
}

.flex-spacebetween-spacearound, .flex-col-spacebetween-spacearound {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: space-between;
}

.flex-row-spacebetween-spacearound {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: space-around;
}

.flex-spacearound-spacearound, .flex-col-spacearound-spacearound {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: space-around;
}

.flex-row-spacearound-spacearound {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: space-around;
}

.flex-0 {
  flex: 0;
}

.flex-1 {
  flex: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink-1 {
  flex-shrink: 1;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

.op-0 {
  opacity: 0;
}

.op-5 {
  opacity: 0.05;
}

.op-10 {
  opacity: 0.1;
}

.op-15 {
  opacity: 0.15;
}

.op-20 {
  opacity: 0.2;
}

.op-25 {
  opacity: 0.25;
}

.op-30 {
  opacity: 0.3;
}

.op-35 {
  opacity: 0.35;
}

.op-40 {
  opacity: 0.4;
}

.op-45 {
  opacity: 0.45;
}

.op-50 {
  opacity: 0.5;
}

.op-55 {
  opacity: 0.55;
}

.op-60 {
  opacity: 0.6;
}

.op-65 {
  opacity: 0.65;
}

.op-70 {
  opacity: 0.7;
}

.op-75 {
  opacity: 0.75;
}

.op-80 {
  opacity: 0.8;
}

.op-85 {
  opacity: 0.85;
}

.op-90 {
  opacity: 0.9;
}

.op-95 {
  opacity: 0.95;
}

.op-100 {
  opacity: 1;
}

.db, .d-b {
  display: block;
}

.dib, .d-i-b {
  display: inline-block;
}

.df, .d-f {
  display: flex;
}

.dif, .d-i-f {
  display: inline-flex;
}

.v-h, .visibility-hidden {
  visibility: hidden;
}

.v-v, .visibility-visible {
  visibility: visible;
}

.f-d-r {
  flex-direction: row;
}

.f-d-c {
  flex-direction: column;
}

.flex-row, .d-f-r {
  display: flex;
  flex-direction: row;
}

.flex-col, .flex-column, .d-f-c {
  display: flex;
  flex-direction: column;
}

.j-c-s-b, .justify-content-space-between {
  justify-content: space-between;
}

.j-c-c, .justify-content-center {
  justify-content: center;
}

.j-c-s, .justify-content-stretch {
  justify-content: stretch;
}

.j-c-f-s, .justify-content-flex-start {
  justify-content: flex-start;
}

.j-c-f-e, .justify-content-flex-end {
  justify-content: flex-end;
}

.a-i-c, .align-items-center {
  align-items: center;
}

.a-i-s, .align-items-stretch {
  align-items: stretch;
}

.a-i-f-s, .align-items-flex-start {
  align-items: flex-start;
}

.a-i-f-e, .align-items-flex-end {
  align-items: flex-end;
}

.j-s-c, .justify-self-center {
  justify-self: center;
}

.j-s-s, .justify-self-stretch {
  justify-self: stretch;
}

.j-s-f-s, .justify-self-flex-start {
  justify-self: flex-start;
}

.j-s-f-e, .justify-self-flex-end {
  justify-self: flex-end;
}

.a-s-c, .align-self-center {
  align-self: center;
}

.a-s-s, .align-self-stretch {
  align-self: stretch;
}

.a-s-f-s, .align-self-flex-start {
  align-self: flex-start;
}

.a-s-f-e, .align-self-flex-end {
  align-self: flex-end;
}

.vat, .v-a-t {
  vertical-align: top;
}

.vam, .v-a-m {
  vertical-align: middle;
}

@media (max-width: 767px) {
  .text-xs-left {
    text-align: left;
  }

  .text-xs-center {
    text-align: center;
  }

  .text-xs-right {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .text-sm-left {
    text-align: left;
  }

  .text-sm-center {
    text-align: center;
  }

  .text-sm-right {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .text-md-left {
    text-align: left;
  }

  .text-md-center {
    text-align: center;
  }

  .text-md-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left;
  }

  .text-lg-center {
    text-align: center;
  }

  .text-lg-right {
    text-align: right;
  }
}
/* place here to allow overriding components (e.g. .box) */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.non-bold {
  font-weight: normal;
}

.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.italic {
  font-weight: italic;
}

.underline-border {
  /* inherit border-bottom-color from color: attribute */
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.tt-up, .tt-uppercase {
  text-transform: uppercase;
}

.tt-cap, .tt-capitalize {
  text-transform: capitalize;
}

.tt-normal {
  text-transform: none;
}

.lh-100 {
  line-height: 100%;
}

.lh-120 {
  line-height: 120%;
}

.lh-150 {
  line-height: 150%;
}

.lh-200 {
  line-height: 200%;
}

.m-auto {
  margin: auto;
}

.m-t-auto {
  margin-top: auto;
}

.m-b-auto {
  margin-bottom: auto;
}

.m-r-auto {
  margin-right: auto;
}

.m-l-auto {
  margin-left: auto;
}

.m-0 {
  margin: 0px;
}

.m-t-0 {
  margin-top: 0px;
}

.m-b-0 {
  margin-bottom: 0px;
}

.m-r-0 {
  margin-right: 0px;
}

.m-l-0 {
  margin-left: 0px;
}

.p-0 {
  padding: 0px;
}

.p-t-0 {
  padding-top: 0px;
}

.p-b-0 {
  padding-bottom: 0px;
}

.p-r-0 {
  padding-right: 0px;
}

.p-l-0 {
  padding-left: 0px;
}

.m-1 {
  margin: 1px;
}

.m-t-1 {
  margin-top: 1px;
}

.m-b-1 {
  margin-bottom: 1px;
}

.m-r-1 {
  margin-right: 1px;
}

.m-l-1 {
  margin-left: 1px;
}

.p-1 {
  padding: 1px;
}

.p-t-1 {
  padding-top: 1px;
}

.p-b-1 {
  padding-bottom: 1px;
}

.p-r-1 {
  padding-right: 1px;
}

.p-l-1 {
  padding-left: 1px;
}

.m-2 {
  margin: 2px;
}

.m-t-2 {
  margin-top: 2px;
}

.m-b-2 {
  margin-bottom: 2px;
}

.m-r-2 {
  margin-right: 2px;
}

.m-l-2 {
  margin-left: 2px;
}

.p-2 {
  padding: 2px;
}

.p-t-2 {
  padding-top: 2px;
}

.p-b-2 {
  padding-bottom: 2px;
}

.p-r-2 {
  padding-right: 2px;
}

.p-l-2 {
  padding-left: 2px;
}

.m-3 {
  margin: 3px;
}

.m-t-3 {
  margin-top: 3px;
}

.m-b-3 {
  margin-bottom: 3px;
}

.m-r-3 {
  margin-right: 3px;
}

.m-l-3 {
  margin-left: 3px;
}

.p-3 {
  padding: 3px;
}

.p-t-3 {
  padding-top: 3px;
}

.p-b-3 {
  padding-bottom: 3px;
}

.p-r-3 {
  padding-right: 3px;
}

.p-l-3 {
  padding-left: 3px;
}

.m-4 {
  margin: 4px;
}

.m-t-4 {
  margin-top: 4px;
}

.m-b-4 {
  margin-bottom: 4px;
}

.m-r-4 {
  margin-right: 4px;
}

.m-l-4 {
  margin-left: 4px;
}

.p-4 {
  padding: 4px;
}

.p-t-4 {
  padding-top: 4px;
}

.p-b-4 {
  padding-bottom: 4px;
}

.p-r-4 {
  padding-right: 4px;
}

.p-l-4 {
  padding-left: 4px;
}

.m-5 {
  margin: 5px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-r-5 {
  margin-right: 5px;
}

.m-l-5 {
  margin-left: 5px;
}

.p-5 {
  padding: 5px;
}

.p-t-5 {
  padding-top: 5px;
}

.p-b-5 {
  padding-bottom: 5px;
}

.p-r-5 {
  padding-right: 5px;
}

.p-l-5 {
  padding-left: 5px;
}

.m-6 {
  margin: 6px;
}

.m-t-6 {
  margin-top: 6px;
}

.m-b-6 {
  margin-bottom: 6px;
}

.m-r-6 {
  margin-right: 6px;
}

.m-l-6 {
  margin-left: 6px;
}

.p-6 {
  padding: 6px;
}

.p-t-6 {
  padding-top: 6px;
}

.p-b-6 {
  padding-bottom: 6px;
}

.p-r-6 {
  padding-right: 6px;
}

.p-l-6 {
  padding-left: 6px;
}

.m-7 {
  margin: 7px;
}

.m-t-7 {
  margin-top: 7px;
}

.m-b-7 {
  margin-bottom: 7px;
}

.m-r-7 {
  margin-right: 7px;
}

.m-l-7 {
  margin-left: 7px;
}

.p-7 {
  padding: 7px;
}

.p-t-7 {
  padding-top: 7px;
}

.p-b-7 {
  padding-bottom: 7px;
}

.p-r-7 {
  padding-right: 7px;
}

.p-l-7 {
  padding-left: 7px;
}

.m-8 {
  margin: 8px;
}

.m-t-8 {
  margin-top: 8px;
}

.m-b-8 {
  margin-bottom: 8px;
}

.m-r-8 {
  margin-right: 8px;
}

.m-l-8 {
  margin-left: 8px;
}

.p-8 {
  padding: 8px;
}

.p-t-8 {
  padding-top: 8px;
}

.p-b-8 {
  padding-bottom: 8px;
}

.p-r-8 {
  padding-right: 8px;
}

.p-l-8 {
  padding-left: 8px;
}

.m-9 {
  margin: 9px;
}

.m-t-9 {
  margin-top: 9px;
}

.m-b-9 {
  margin-bottom: 9px;
}

.m-r-9 {
  margin-right: 9px;
}

.m-l-9 {
  margin-left: 9px;
}

.p-9 {
  padding: 9px;
}

.p-t-9 {
  padding-top: 9px;
}

.p-b-9 {
  padding-bottom: 9px;
}

.p-r-9 {
  padding-right: 9px;
}

.p-l-9 {
  padding-left: 9px;
}

.m-10 {
  margin: 10px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-l-10 {
  margin-left: 10px;
}

.p-10 {
  padding: 10px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-r-10 {
  padding-right: 10px;
}

.p-l-10 {
  padding-left: 10px;
}

.m-11 {
  margin: 11px;
}

.m-t-11 {
  margin-top: 11px;
}

.m-b-11 {
  margin-bottom: 11px;
}

.m-r-11 {
  margin-right: 11px;
}

.m-l-11 {
  margin-left: 11px;
}

.p-11 {
  padding: 11px;
}

.p-t-11 {
  padding-top: 11px;
}

.p-b-11 {
  padding-bottom: 11px;
}

.p-r-11 {
  padding-right: 11px;
}

.p-l-11 {
  padding-left: 11px;
}

.m-12 {
  margin: 12px;
}

.m-t-12 {
  margin-top: 12px;
}

.m-b-12 {
  margin-bottom: 12px;
}

.m-r-12 {
  margin-right: 12px;
}

.m-l-12 {
  margin-left: 12px;
}

.p-12 {
  padding: 12px;
}

.p-t-12 {
  padding-top: 12px;
}

.p-b-12 {
  padding-bottom: 12px;
}

.p-r-12 {
  padding-right: 12px;
}

.p-l-12 {
  padding-left: 12px;
}

.m-13 {
  margin: 13px;
}

.m-t-13 {
  margin-top: 13px;
}

.m-b-13 {
  margin-bottom: 13px;
}

.m-r-13 {
  margin-right: 13px;
}

.m-l-13 {
  margin-left: 13px;
}

.p-13 {
  padding: 13px;
}

.p-t-13 {
  padding-top: 13px;
}

.p-b-13 {
  padding-bottom: 13px;
}

.p-r-13 {
  padding-right: 13px;
}

.p-l-13 {
  padding-left: 13px;
}

.m-14 {
  margin: 14px;
}

.m-t-14 {
  margin-top: 14px;
}

.m-b-14 {
  margin-bottom: 14px;
}

.m-r-14 {
  margin-right: 14px;
}

.m-l-14 {
  margin-left: 14px;
}

.p-14 {
  padding: 14px;
}

.p-t-14 {
  padding-top: 14px;
}

.p-b-14 {
  padding-bottom: 14px;
}

.p-r-14 {
  padding-right: 14px;
}

.p-l-14 {
  padding-left: 14px;
}

.m-15 {
  margin: 15px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-l-15 {
  margin-left: 15px;
}

.p-15 {
  padding: 15px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-r-15 {
  padding-right: 15px;
}

.p-l-15 {
  padding-left: 15px;
}

.m-20 {
  margin: 20px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-r-20 {
  margin-right: 20px;
}

.m-l-20 {
  margin-left: 20px;
}

.p-20 {
  padding: 20px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-r-20 {
  padding-right: 20px;
}

.p-l-20 {
  padding-left: 20px;
}

.m-25 {
  margin: 25px;
}

.m-t-25 {
  margin-top: 25px;
}

.m-b-25 {
  margin-bottom: 25px;
}

.m-r-25 {
  margin-right: 25px;
}

.m-l-25 {
  margin-left: 25px;
}

.p-25 {
  padding: 25px;
}

.p-t-25 {
  padding-top: 25px;
}

.p-b-25 {
  padding-bottom: 25px;
}

.p-r-25 {
  padding-right: 25px;
}

.p-l-25 {
  padding-left: 25px;
}

.m-30 {
  margin: 30px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-l-30 {
  margin-left: 30px;
}

.p-30 {
  padding: 30px;
}

.p-t-30 {
  padding-top: 30px;
}

.p-b-30 {
  padding-bottom: 30px;
}

.p-r-30 {
  padding-right: 30px;
}

.p-l-30 {
  padding-left: 30px;
}

.m-35 {
  margin: 35px;
}

.m-t-35 {
  margin-top: 35px;
}

.m-b-35 {
  margin-bottom: 35px;
}

.m-r-35 {
  margin-right: 35px;
}

.m-l-35 {
  margin-left: 35px;
}

.p-35 {
  padding: 35px;
}

.p-t-35 {
  padding-top: 35px;
}

.p-b-35 {
  padding-bottom: 35px;
}

.p-r-35 {
  padding-right: 35px;
}

.p-l-35 {
  padding-left: 35px;
}

.m-40 {
  margin: 40px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-r-40 {
  margin-right: 40px;
}

.m-l-40 {
  margin-left: 40px;
}

.p-40 {
  padding: 40px;
}

.p-t-40 {
  padding-top: 40px;
}

.p-b-40 {
  padding-bottom: 40px;
}

.p-r-40 {
  padding-right: 40px;
}

.p-l-40 {
  padding-left: 40px;
}

.m-45 {
  margin: 45px;
}

.m-t-45 {
  margin-top: 45px;
}

.m-b-45 {
  margin-bottom: 45px;
}

.m-r-45 {
  margin-right: 45px;
}

.m-l-45 {
  margin-left: 45px;
}

.p-45 {
  padding: 45px;
}

.p-t-45 {
  padding-top: 45px;
}

.p-b-45 {
  padding-bottom: 45px;
}

.p-r-45 {
  padding-right: 45px;
}

.p-l-45 {
  padding-left: 45px;
}

.m-50 {
  margin: 50px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-r-50 {
  margin-right: 50px;
}

.m-l-50 {
  margin-left: 50px;
}

.p-50 {
  padding: 50px;
}

.p-t-50 {
  padding-top: 50px;
}

.p-b-50 {
  padding-bottom: 50px;
}

.p-r-50 {
  padding-right: 50px;
}

.p-l-50 {
  padding-left: 50px;
}

.m-55 {
  margin: 55px;
}

.m-t-55 {
  margin-top: 55px;
}

.m-b-55 {
  margin-bottom: 55px;
}

.m-r-55 {
  margin-right: 55px;
}

.m-l-55 {
  margin-left: 55px;
}

.p-55 {
  padding: 55px;
}

.p-t-55 {
  padding-top: 55px;
}

.p-b-55 {
  padding-bottom: 55px;
}

.p-r-55 {
  padding-right: 55px;
}

.p-l-55 {
  padding-left: 55px;
}

.m-60 {
  margin: 60px;
}

.m-t-60 {
  margin-top: 60px;
}

.m-b-60 {
  margin-bottom: 60px;
}

.m-r-60 {
  margin-right: 60px;
}

.m-l-60 {
  margin-left: 60px;
}

.p-60 {
  padding: 60px;
}

.p-t-60 {
  padding-top: 60px;
}

.p-b-60 {
  padding-bottom: 60px;
}

.p-r-60 {
  padding-right: 60px;
}

.p-l-60 {
  padding-left: 60px;
}

.m-65 {
  margin: 65px;
}

.m-t-65 {
  margin-top: 65px;
}

.m-b-65 {
  margin-bottom: 65px;
}

.m-r-65 {
  margin-right: 65px;
}

.m-l-65 {
  margin-left: 65px;
}

.p-65 {
  padding: 65px;
}

.p-t-65 {
  padding-top: 65px;
}

.p-b-65 {
  padding-bottom: 65px;
}

.p-r-65 {
  padding-right: 65px;
}

.p-l-65 {
  padding-left: 65px;
}

.m-70 {
  margin: 70px;
}

.m-t-70 {
  margin-top: 70px;
}

.m-b-70 {
  margin-bottom: 70px;
}

.m-r-70 {
  margin-right: 70px;
}

.m-l-70 {
  margin-left: 70px;
}

.p-70 {
  padding: 70px;
}

.p-t-70 {
  padding-top: 70px;
}

.p-b-70 {
  padding-bottom: 70px;
}

.p-r-70 {
  padding-right: 70px;
}

.p-l-70 {
  padding-left: 70px;
}

.m-75 {
  margin: 75px;
}

.m-t-75 {
  margin-top: 75px;
}

.m-b-75 {
  margin-bottom: 75px;
}

.m-r-75 {
  margin-right: 75px;
}

.m-l-75 {
  margin-left: 75px;
}

.p-75 {
  padding: 75px;
}

.p-t-75 {
  padding-top: 75px;
}

.p-b-75 {
  padding-bottom: 75px;
}

.p-r-75 {
  padding-right: 75px;
}

.p-l-75 {
  padding-left: 75px;
}

.m-80 {
  margin: 80px;
}

.m-t-80 {
  margin-top: 80px;
}

.m-b-80 {
  margin-bottom: 80px;
}

.m-r-80 {
  margin-right: 80px;
}

.m-l-80 {
  margin-left: 80px;
}

.p-80 {
  padding: 80px;
}

.p-t-80 {
  padding-top: 80px;
}

.p-b-80 {
  padding-bottom: 80px;
}

.p-r-80 {
  padding-right: 80px;
}

.p-l-80 {
  padding-left: 80px;
}

.m-85 {
  margin: 85px;
}

.m-t-85 {
  margin-top: 85px;
}

.m-b-85 {
  margin-bottom: 85px;
}

.m-r-85 {
  margin-right: 85px;
}

.m-l-85 {
  margin-left: 85px;
}

.p-85 {
  padding: 85px;
}

.p-t-85 {
  padding-top: 85px;
}

.p-b-85 {
  padding-bottom: 85px;
}

.p-r-85 {
  padding-right: 85px;
}

.p-l-85 {
  padding-left: 85px;
}

.m-90 {
  margin: 90px;
}

.m-t-90 {
  margin-top: 90px;
}

.m-b-90 {
  margin-bottom: 90px;
}

.m-r-90 {
  margin-right: 90px;
}

.m-l-90 {
  margin-left: 90px;
}

.p-90 {
  padding: 90px;
}

.p-t-90 {
  padding-top: 90px;
}

.p-b-90 {
  padding-bottom: 90px;
}

.p-r-90 {
  padding-right: 90px;
}

.p-l-90 {
  padding-left: 90px;
}

.m-95 {
  margin: 95px;
}

.m-t-95 {
  margin-top: 95px;
}

.m-b-95 {
  margin-bottom: 95px;
}

.m-r-95 {
  margin-right: 95px;
}

.m-l-95 {
  margin-left: 95px;
}

.p-95 {
  padding: 95px;
}

.p-t-95 {
  padding-top: 95px;
}

.p-b-95 {
  padding-bottom: 95px;
}

.p-r-95 {
  padding-right: 95px;
}

.p-l-95 {
  padding-left: 95px;
}

.m-100 {
  margin: 100px;
}

.m-t-100 {
  margin-top: 100px;
}

.m-b-100 {
  margin-bottom: 100px;
}

.m-r-100 {
  margin-right: 100px;
}

.m-l-100 {
  margin-left: 100px;
}

.p-100 {
  padding: 100px;
}

.p-t-100 {
  padding-top: 100px;
}

.p-b-100 {
  padding-bottom: 100px;
}

.p-r-100 {
  padding-right: 100px;
}

.p-l-100 {
  padding-left: 100px;
}

.m-120 {
  margin: 120px;
}

.m-t-120 {
  margin-top: 120px;
}

.m-b-120 {
  margin-bottom: 120px;
}

.m-r-120 {
  margin-right: 120px;
}

.m-l-120 {
  margin-left: 120px;
}

.p-120 {
  padding: 120px;
}

.p-t-120 {
  padding-top: 120px;
}

.p-b-120 {
  padding-bottom: 120px;
}

.p-r-120 {
  padding-right: 120px;
}

.p-l-120 {
  padding-left: 120px;
}

.m-150 {
  margin: 150px;
}

.m-t-150 {
  margin-top: 150px;
}

.m-b-150 {
  margin-bottom: 150px;
}

.m-r-150 {
  margin-right: 150px;
}

.m-l-150 {
  margin-left: 150px;
}

.p-150 {
  padding: 150px;
}

.p-t-150 {
  padding-top: 150px;
}

.p-b-150 {
  padding-bottom: 150px;
}

.p-r-150 {
  padding-right: 150px;
}

.p-l-150 {
  padding-left: 150px;
}

.m-200 {
  margin: 200px;
}

.m-t-200 {
  margin-top: 200px;
}

.m-b-200 {
  margin-bottom: 200px;
}

.m-r-200 {
  margin-right: 200px;
}

.m-l-200 {
  margin-left: 200px;
}

.p-200 {
  padding: 200px;
}

.p-t-200 {
  padding-top: 200px;
}

.p-b-200 {
  padding-bottom: 200px;
}

.p-r-200 {
  padding-right: 200px;
}

.p-l-200 {
  padding-left: 200px;
}

/* separate responsive classes to avoid css priority issues */
@media (max-width: 767px) {
  .m-xs-0 {
    margin: 0px;
  }

  .m-t-xs-0 {
    margin-top: 0px;
  }

  .m-b-xs-0 {
    margin-bottom: 0px;
  }

  .m-r-xs-0 {
    margin-right: 0px;
  }

  .m-l-xs-0 {
    margin-left: 0px;
  }

  .p-xs-0 {
    padding: 0px;
  }

  .p-t-xs-0 {
    padding-top: 0px;
  }

  .p-b-xs-0 {
    padding-bottom: 0px;
  }

  .p-r-xs-0 {
    padding-right: 0px;
  }

  .p-l-xs-0 {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .m-xs-1 {
    margin: 1px;
  }

  .m-t-xs-1 {
    margin-top: 1px;
  }

  .m-b-xs-1 {
    margin-bottom: 1px;
  }

  .m-r-xs-1 {
    margin-right: 1px;
  }

  .m-l-xs-1 {
    margin-left: 1px;
  }

  .p-xs-1 {
    padding: 1px;
  }

  .p-t-xs-1 {
    padding-top: 1px;
  }

  .p-b-xs-1 {
    padding-bottom: 1px;
  }

  .p-r-xs-1 {
    padding-right: 1px;
  }

  .p-l-xs-1 {
    padding-left: 1px;
  }
}
@media (max-width: 767px) {
  .m-xs-2 {
    margin: 2px;
  }

  .m-t-xs-2 {
    margin-top: 2px;
  }

  .m-b-xs-2 {
    margin-bottom: 2px;
  }

  .m-r-xs-2 {
    margin-right: 2px;
  }

  .m-l-xs-2 {
    margin-left: 2px;
  }

  .p-xs-2 {
    padding: 2px;
  }

  .p-t-xs-2 {
    padding-top: 2px;
  }

  .p-b-xs-2 {
    padding-bottom: 2px;
  }

  .p-r-xs-2 {
    padding-right: 2px;
  }

  .p-l-xs-2 {
    padding-left: 2px;
  }
}
@media (max-width: 767px) {
  .m-xs-3 {
    margin: 3px;
  }

  .m-t-xs-3 {
    margin-top: 3px;
  }

  .m-b-xs-3 {
    margin-bottom: 3px;
  }

  .m-r-xs-3 {
    margin-right: 3px;
  }

  .m-l-xs-3 {
    margin-left: 3px;
  }

  .p-xs-3 {
    padding: 3px;
  }

  .p-t-xs-3 {
    padding-top: 3px;
  }

  .p-b-xs-3 {
    padding-bottom: 3px;
  }

  .p-r-xs-3 {
    padding-right: 3px;
  }

  .p-l-xs-3 {
    padding-left: 3px;
  }
}
@media (max-width: 767px) {
  .m-xs-4 {
    margin: 4px;
  }

  .m-t-xs-4 {
    margin-top: 4px;
  }

  .m-b-xs-4 {
    margin-bottom: 4px;
  }

  .m-r-xs-4 {
    margin-right: 4px;
  }

  .m-l-xs-4 {
    margin-left: 4px;
  }

  .p-xs-4 {
    padding: 4px;
  }

  .p-t-xs-4 {
    padding-top: 4px;
  }

  .p-b-xs-4 {
    padding-bottom: 4px;
  }

  .p-r-xs-4 {
    padding-right: 4px;
  }

  .p-l-xs-4 {
    padding-left: 4px;
  }
}
@media (max-width: 767px) {
  .m-xs-5 {
    margin: 5px;
  }

  .m-t-xs-5 {
    margin-top: 5px;
  }

  .m-b-xs-5 {
    margin-bottom: 5px;
  }

  .m-r-xs-5 {
    margin-right: 5px;
  }

  .m-l-xs-5 {
    margin-left: 5px;
  }

  .p-xs-5 {
    padding: 5px;
  }

  .p-t-xs-5 {
    padding-top: 5px;
  }

  .p-b-xs-5 {
    padding-bottom: 5px;
  }

  .p-r-xs-5 {
    padding-right: 5px;
  }

  .p-l-xs-5 {
    padding-left: 5px;
  }
}
@media (max-width: 767px) {
  .m-xs-6 {
    margin: 6px;
  }

  .m-t-xs-6 {
    margin-top: 6px;
  }

  .m-b-xs-6 {
    margin-bottom: 6px;
  }

  .m-r-xs-6 {
    margin-right: 6px;
  }

  .m-l-xs-6 {
    margin-left: 6px;
  }

  .p-xs-6 {
    padding: 6px;
  }

  .p-t-xs-6 {
    padding-top: 6px;
  }

  .p-b-xs-6 {
    padding-bottom: 6px;
  }

  .p-r-xs-6 {
    padding-right: 6px;
  }

  .p-l-xs-6 {
    padding-left: 6px;
  }
}
@media (max-width: 767px) {
  .m-xs-7 {
    margin: 7px;
  }

  .m-t-xs-7 {
    margin-top: 7px;
  }

  .m-b-xs-7 {
    margin-bottom: 7px;
  }

  .m-r-xs-7 {
    margin-right: 7px;
  }

  .m-l-xs-7 {
    margin-left: 7px;
  }

  .p-xs-7 {
    padding: 7px;
  }

  .p-t-xs-7 {
    padding-top: 7px;
  }

  .p-b-xs-7 {
    padding-bottom: 7px;
  }

  .p-r-xs-7 {
    padding-right: 7px;
  }

  .p-l-xs-7 {
    padding-left: 7px;
  }
}
@media (max-width: 767px) {
  .m-xs-8 {
    margin: 8px;
  }

  .m-t-xs-8 {
    margin-top: 8px;
  }

  .m-b-xs-8 {
    margin-bottom: 8px;
  }

  .m-r-xs-8 {
    margin-right: 8px;
  }

  .m-l-xs-8 {
    margin-left: 8px;
  }

  .p-xs-8 {
    padding: 8px;
  }

  .p-t-xs-8 {
    padding-top: 8px;
  }

  .p-b-xs-8 {
    padding-bottom: 8px;
  }

  .p-r-xs-8 {
    padding-right: 8px;
  }

  .p-l-xs-8 {
    padding-left: 8px;
  }
}
@media (max-width: 767px) {
  .m-xs-9 {
    margin: 9px;
  }

  .m-t-xs-9 {
    margin-top: 9px;
  }

  .m-b-xs-9 {
    margin-bottom: 9px;
  }

  .m-r-xs-9 {
    margin-right: 9px;
  }

  .m-l-xs-9 {
    margin-left: 9px;
  }

  .p-xs-9 {
    padding: 9px;
  }

  .p-t-xs-9 {
    padding-top: 9px;
  }

  .p-b-xs-9 {
    padding-bottom: 9px;
  }

  .p-r-xs-9 {
    padding-right: 9px;
  }

  .p-l-xs-9 {
    padding-left: 9px;
  }
}
@media (max-width: 767px) {
  .m-xs-10 {
    margin: 10px;
  }

  .m-t-xs-10 {
    margin-top: 10px;
  }

  .m-b-xs-10 {
    margin-bottom: 10px;
  }

  .m-r-xs-10 {
    margin-right: 10px;
  }

  .m-l-xs-10 {
    margin-left: 10px;
  }

  .p-xs-10 {
    padding: 10px;
  }

  .p-t-xs-10 {
    padding-top: 10px;
  }

  .p-b-xs-10 {
    padding-bottom: 10px;
  }

  .p-r-xs-10 {
    padding-right: 10px;
  }

  .p-l-xs-10 {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .m-xs-11 {
    margin: 11px;
  }

  .m-t-xs-11 {
    margin-top: 11px;
  }

  .m-b-xs-11 {
    margin-bottom: 11px;
  }

  .m-r-xs-11 {
    margin-right: 11px;
  }

  .m-l-xs-11 {
    margin-left: 11px;
  }

  .p-xs-11 {
    padding: 11px;
  }

  .p-t-xs-11 {
    padding-top: 11px;
  }

  .p-b-xs-11 {
    padding-bottom: 11px;
  }

  .p-r-xs-11 {
    padding-right: 11px;
  }

  .p-l-xs-11 {
    padding-left: 11px;
  }
}
@media (max-width: 767px) {
  .m-xs-12 {
    margin: 12px;
  }

  .m-t-xs-12 {
    margin-top: 12px;
  }

  .m-b-xs-12 {
    margin-bottom: 12px;
  }

  .m-r-xs-12 {
    margin-right: 12px;
  }

  .m-l-xs-12 {
    margin-left: 12px;
  }

  .p-xs-12 {
    padding: 12px;
  }

  .p-t-xs-12 {
    padding-top: 12px;
  }

  .p-b-xs-12 {
    padding-bottom: 12px;
  }

  .p-r-xs-12 {
    padding-right: 12px;
  }

  .p-l-xs-12 {
    padding-left: 12px;
  }
}
@media (max-width: 767px) {
  .m-xs-13 {
    margin: 13px;
  }

  .m-t-xs-13 {
    margin-top: 13px;
  }

  .m-b-xs-13 {
    margin-bottom: 13px;
  }

  .m-r-xs-13 {
    margin-right: 13px;
  }

  .m-l-xs-13 {
    margin-left: 13px;
  }

  .p-xs-13 {
    padding: 13px;
  }

  .p-t-xs-13 {
    padding-top: 13px;
  }

  .p-b-xs-13 {
    padding-bottom: 13px;
  }

  .p-r-xs-13 {
    padding-right: 13px;
  }

  .p-l-xs-13 {
    padding-left: 13px;
  }
}
@media (max-width: 767px) {
  .m-xs-14 {
    margin: 14px;
  }

  .m-t-xs-14 {
    margin-top: 14px;
  }

  .m-b-xs-14 {
    margin-bottom: 14px;
  }

  .m-r-xs-14 {
    margin-right: 14px;
  }

  .m-l-xs-14 {
    margin-left: 14px;
  }

  .p-xs-14 {
    padding: 14px;
  }

  .p-t-xs-14 {
    padding-top: 14px;
  }

  .p-b-xs-14 {
    padding-bottom: 14px;
  }

  .p-r-xs-14 {
    padding-right: 14px;
  }

  .p-l-xs-14 {
    padding-left: 14px;
  }
}
@media (max-width: 767px) {
  .m-xs-15 {
    margin: 15px;
  }

  .m-t-xs-15 {
    margin-top: 15px;
  }

  .m-b-xs-15 {
    margin-bottom: 15px;
  }

  .m-r-xs-15 {
    margin-right: 15px;
  }

  .m-l-xs-15 {
    margin-left: 15px;
  }

  .p-xs-15 {
    padding: 15px;
  }

  .p-t-xs-15 {
    padding-top: 15px;
  }

  .p-b-xs-15 {
    padding-bottom: 15px;
  }

  .p-r-xs-15 {
    padding-right: 15px;
  }

  .p-l-xs-15 {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .m-xs-20 {
    margin: 20px;
  }

  .m-t-xs-20 {
    margin-top: 20px;
  }

  .m-b-xs-20 {
    margin-bottom: 20px;
  }

  .m-r-xs-20 {
    margin-right: 20px;
  }

  .m-l-xs-20 {
    margin-left: 20px;
  }

  .p-xs-20 {
    padding: 20px;
  }

  .p-t-xs-20 {
    padding-top: 20px;
  }

  .p-b-xs-20 {
    padding-bottom: 20px;
  }

  .p-r-xs-20 {
    padding-right: 20px;
  }

  .p-l-xs-20 {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .m-xs-25 {
    margin: 25px;
  }

  .m-t-xs-25 {
    margin-top: 25px;
  }

  .m-b-xs-25 {
    margin-bottom: 25px;
  }

  .m-r-xs-25 {
    margin-right: 25px;
  }

  .m-l-xs-25 {
    margin-left: 25px;
  }

  .p-xs-25 {
    padding: 25px;
  }

  .p-t-xs-25 {
    padding-top: 25px;
  }

  .p-b-xs-25 {
    padding-bottom: 25px;
  }

  .p-r-xs-25 {
    padding-right: 25px;
  }

  .p-l-xs-25 {
    padding-left: 25px;
  }
}
@media (max-width: 767px) {
  .m-xs-30 {
    margin: 30px;
  }

  .m-t-xs-30 {
    margin-top: 30px;
  }

  .m-b-xs-30 {
    margin-bottom: 30px;
  }

  .m-r-xs-30 {
    margin-right: 30px;
  }

  .m-l-xs-30 {
    margin-left: 30px;
  }

  .p-xs-30 {
    padding: 30px;
  }

  .p-t-xs-30 {
    padding-top: 30px;
  }

  .p-b-xs-30 {
    padding-bottom: 30px;
  }

  .p-r-xs-30 {
    padding-right: 30px;
  }

  .p-l-xs-30 {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .m-xs-35 {
    margin: 35px;
  }

  .m-t-xs-35 {
    margin-top: 35px;
  }

  .m-b-xs-35 {
    margin-bottom: 35px;
  }

  .m-r-xs-35 {
    margin-right: 35px;
  }

  .m-l-xs-35 {
    margin-left: 35px;
  }

  .p-xs-35 {
    padding: 35px;
  }

  .p-t-xs-35 {
    padding-top: 35px;
  }

  .p-b-xs-35 {
    padding-bottom: 35px;
  }

  .p-r-xs-35 {
    padding-right: 35px;
  }

  .p-l-xs-35 {
    padding-left: 35px;
  }
}
@media (max-width: 767px) {
  .m-xs-40 {
    margin: 40px;
  }

  .m-t-xs-40 {
    margin-top: 40px;
  }

  .m-b-xs-40 {
    margin-bottom: 40px;
  }

  .m-r-xs-40 {
    margin-right: 40px;
  }

  .m-l-xs-40 {
    margin-left: 40px;
  }

  .p-xs-40 {
    padding: 40px;
  }

  .p-t-xs-40 {
    padding-top: 40px;
  }

  .p-b-xs-40 {
    padding-bottom: 40px;
  }

  .p-r-xs-40 {
    padding-right: 40px;
  }

  .p-l-xs-40 {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .m-xs-45 {
    margin: 45px;
  }

  .m-t-xs-45 {
    margin-top: 45px;
  }

  .m-b-xs-45 {
    margin-bottom: 45px;
  }

  .m-r-xs-45 {
    margin-right: 45px;
  }

  .m-l-xs-45 {
    margin-left: 45px;
  }

  .p-xs-45 {
    padding: 45px;
  }

  .p-t-xs-45 {
    padding-top: 45px;
  }

  .p-b-xs-45 {
    padding-bottom: 45px;
  }

  .p-r-xs-45 {
    padding-right: 45px;
  }

  .p-l-xs-45 {
    padding-left: 45px;
  }
}
@media (max-width: 767px) {
  .m-xs-50 {
    margin: 50px;
  }

  .m-t-xs-50 {
    margin-top: 50px;
  }

  .m-b-xs-50 {
    margin-bottom: 50px;
  }

  .m-r-xs-50 {
    margin-right: 50px;
  }

  .m-l-xs-50 {
    margin-left: 50px;
  }

  .p-xs-50 {
    padding: 50px;
  }

  .p-t-xs-50 {
    padding-top: 50px;
  }

  .p-b-xs-50 {
    padding-bottom: 50px;
  }

  .p-r-xs-50 {
    padding-right: 50px;
  }

  .p-l-xs-50 {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .m-xs-55 {
    margin: 55px;
  }

  .m-t-xs-55 {
    margin-top: 55px;
  }

  .m-b-xs-55 {
    margin-bottom: 55px;
  }

  .m-r-xs-55 {
    margin-right: 55px;
  }

  .m-l-xs-55 {
    margin-left: 55px;
  }

  .p-xs-55 {
    padding: 55px;
  }

  .p-t-xs-55 {
    padding-top: 55px;
  }

  .p-b-xs-55 {
    padding-bottom: 55px;
  }

  .p-r-xs-55 {
    padding-right: 55px;
  }

  .p-l-xs-55 {
    padding-left: 55px;
  }
}
@media (max-width: 767px) {
  .m-xs-60 {
    margin: 60px;
  }

  .m-t-xs-60 {
    margin-top: 60px;
  }

  .m-b-xs-60 {
    margin-bottom: 60px;
  }

  .m-r-xs-60 {
    margin-right: 60px;
  }

  .m-l-xs-60 {
    margin-left: 60px;
  }

  .p-xs-60 {
    padding: 60px;
  }

  .p-t-xs-60 {
    padding-top: 60px;
  }

  .p-b-xs-60 {
    padding-bottom: 60px;
  }

  .p-r-xs-60 {
    padding-right: 60px;
  }

  .p-l-xs-60 {
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .m-xs-65 {
    margin: 65px;
  }

  .m-t-xs-65 {
    margin-top: 65px;
  }

  .m-b-xs-65 {
    margin-bottom: 65px;
  }

  .m-r-xs-65 {
    margin-right: 65px;
  }

  .m-l-xs-65 {
    margin-left: 65px;
  }

  .p-xs-65 {
    padding: 65px;
  }

  .p-t-xs-65 {
    padding-top: 65px;
  }

  .p-b-xs-65 {
    padding-bottom: 65px;
  }

  .p-r-xs-65 {
    padding-right: 65px;
  }

  .p-l-xs-65 {
    padding-left: 65px;
  }
}
@media (max-width: 767px) {
  .m-xs-70 {
    margin: 70px;
  }

  .m-t-xs-70 {
    margin-top: 70px;
  }

  .m-b-xs-70 {
    margin-bottom: 70px;
  }

  .m-r-xs-70 {
    margin-right: 70px;
  }

  .m-l-xs-70 {
    margin-left: 70px;
  }

  .p-xs-70 {
    padding: 70px;
  }

  .p-t-xs-70 {
    padding-top: 70px;
  }

  .p-b-xs-70 {
    padding-bottom: 70px;
  }

  .p-r-xs-70 {
    padding-right: 70px;
  }

  .p-l-xs-70 {
    padding-left: 70px;
  }
}
@media (max-width: 767px) {
  .m-xs-75 {
    margin: 75px;
  }

  .m-t-xs-75 {
    margin-top: 75px;
  }

  .m-b-xs-75 {
    margin-bottom: 75px;
  }

  .m-r-xs-75 {
    margin-right: 75px;
  }

  .m-l-xs-75 {
    margin-left: 75px;
  }

  .p-xs-75 {
    padding: 75px;
  }

  .p-t-xs-75 {
    padding-top: 75px;
  }

  .p-b-xs-75 {
    padding-bottom: 75px;
  }

  .p-r-xs-75 {
    padding-right: 75px;
  }

  .p-l-xs-75 {
    padding-left: 75px;
  }
}
@media (max-width: 767px) {
  .m-xs-80 {
    margin: 80px;
  }

  .m-t-xs-80 {
    margin-top: 80px;
  }

  .m-b-xs-80 {
    margin-bottom: 80px;
  }

  .m-r-xs-80 {
    margin-right: 80px;
  }

  .m-l-xs-80 {
    margin-left: 80px;
  }

  .p-xs-80 {
    padding: 80px;
  }

  .p-t-xs-80 {
    padding-top: 80px;
  }

  .p-b-xs-80 {
    padding-bottom: 80px;
  }

  .p-r-xs-80 {
    padding-right: 80px;
  }

  .p-l-xs-80 {
    padding-left: 80px;
  }
}
@media (max-width: 767px) {
  .m-xs-85 {
    margin: 85px;
  }

  .m-t-xs-85 {
    margin-top: 85px;
  }

  .m-b-xs-85 {
    margin-bottom: 85px;
  }

  .m-r-xs-85 {
    margin-right: 85px;
  }

  .m-l-xs-85 {
    margin-left: 85px;
  }

  .p-xs-85 {
    padding: 85px;
  }

  .p-t-xs-85 {
    padding-top: 85px;
  }

  .p-b-xs-85 {
    padding-bottom: 85px;
  }

  .p-r-xs-85 {
    padding-right: 85px;
  }

  .p-l-xs-85 {
    padding-left: 85px;
  }
}
@media (max-width: 767px) {
  .m-xs-90 {
    margin: 90px;
  }

  .m-t-xs-90 {
    margin-top: 90px;
  }

  .m-b-xs-90 {
    margin-bottom: 90px;
  }

  .m-r-xs-90 {
    margin-right: 90px;
  }

  .m-l-xs-90 {
    margin-left: 90px;
  }

  .p-xs-90 {
    padding: 90px;
  }

  .p-t-xs-90 {
    padding-top: 90px;
  }

  .p-b-xs-90 {
    padding-bottom: 90px;
  }

  .p-r-xs-90 {
    padding-right: 90px;
  }

  .p-l-xs-90 {
    padding-left: 90px;
  }
}
@media (max-width: 767px) {
  .m-xs-95 {
    margin: 95px;
  }

  .m-t-xs-95 {
    margin-top: 95px;
  }

  .m-b-xs-95 {
    margin-bottom: 95px;
  }

  .m-r-xs-95 {
    margin-right: 95px;
  }

  .m-l-xs-95 {
    margin-left: 95px;
  }

  .p-xs-95 {
    padding: 95px;
  }

  .p-t-xs-95 {
    padding-top: 95px;
  }

  .p-b-xs-95 {
    padding-bottom: 95px;
  }

  .p-r-xs-95 {
    padding-right: 95px;
  }

  .p-l-xs-95 {
    padding-left: 95px;
  }
}
@media (max-width: 767px) {
  .m-xs-100 {
    margin: 100px;
  }

  .m-t-xs-100 {
    margin-top: 100px;
  }

  .m-b-xs-100 {
    margin-bottom: 100px;
  }

  .m-r-xs-100 {
    margin-right: 100px;
  }

  .m-l-xs-100 {
    margin-left: 100px;
  }

  .p-xs-100 {
    padding: 100px;
  }

  .p-t-xs-100 {
    padding-top: 100px;
  }

  .p-b-xs-100 {
    padding-bottom: 100px;
  }

  .p-r-xs-100 {
    padding-right: 100px;
  }

  .p-l-xs-100 {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .m-xs-120 {
    margin: 120px;
  }

  .m-t-xs-120 {
    margin-top: 120px;
  }

  .m-b-xs-120 {
    margin-bottom: 120px;
  }

  .m-r-xs-120 {
    margin-right: 120px;
  }

  .m-l-xs-120 {
    margin-left: 120px;
  }

  .p-xs-120 {
    padding: 120px;
  }

  .p-t-xs-120 {
    padding-top: 120px;
  }

  .p-b-xs-120 {
    padding-bottom: 120px;
  }

  .p-r-xs-120 {
    padding-right: 120px;
  }

  .p-l-xs-120 {
    padding-left: 120px;
  }
}
@media (max-width: 767px) {
  .m-xs-150 {
    margin: 150px;
  }

  .m-t-xs-150 {
    margin-top: 150px;
  }

  .m-b-xs-150 {
    margin-bottom: 150px;
  }

  .m-r-xs-150 {
    margin-right: 150px;
  }

  .m-l-xs-150 {
    margin-left: 150px;
  }

  .p-xs-150 {
    padding: 150px;
  }

  .p-t-xs-150 {
    padding-top: 150px;
  }

  .p-b-xs-150 {
    padding-bottom: 150px;
  }

  .p-r-xs-150 {
    padding-right: 150px;
  }

  .p-l-xs-150 {
    padding-left: 150px;
  }
}
@media (max-width: 767px) {
  .m-xs-200 {
    margin: 200px;
  }

  .m-t-xs-200 {
    margin-top: 200px;
  }

  .m-b-xs-200 {
    margin-bottom: 200px;
  }

  .m-r-xs-200 {
    margin-right: 200px;
  }

  .m-l-xs-200 {
    margin-left: 200px;
  }

  .p-xs-200 {
    padding: 200px;
  }

  .p-t-xs-200 {
    padding-top: 200px;
  }

  .p-b-xs-200 {
    padding-bottom: 200px;
  }

  .p-r-xs-200 {
    padding-right: 200px;
  }

  .p-l-xs-200 {
    padding-left: 200px;
  }
}
@media (min-width: 768px) {
  .m-sm-0 {
    margin: 0px;
  }

  .m-t-sm-0 {
    margin-top: 0px;
  }

  .m-b-sm-0 {
    margin-bottom: 0px;
  }

  .m-r-sm-0 {
    margin-right: 0px;
  }

  .m-l-sm-0 {
    margin-left: 0px;
  }

  .p-sm-0 {
    padding: 0px;
  }

  .p-t-sm-0 {
    padding-top: 0px;
  }

  .p-b-sm-0 {
    padding-bottom: 0px;
  }

  .p-r-sm-0 {
    padding-right: 0px;
  }

  .p-l-sm-0 {
    padding-left: 0px;
  }
}
@media (min-width: 768px) {
  .m-sm-1 {
    margin: 1px;
  }

  .m-t-sm-1 {
    margin-top: 1px;
  }

  .m-b-sm-1 {
    margin-bottom: 1px;
  }

  .m-r-sm-1 {
    margin-right: 1px;
  }

  .m-l-sm-1 {
    margin-left: 1px;
  }

  .p-sm-1 {
    padding: 1px;
  }

  .p-t-sm-1 {
    padding-top: 1px;
  }

  .p-b-sm-1 {
    padding-bottom: 1px;
  }

  .p-r-sm-1 {
    padding-right: 1px;
  }

  .p-l-sm-1 {
    padding-left: 1px;
  }
}
@media (min-width: 768px) {
  .m-sm-2 {
    margin: 2px;
  }

  .m-t-sm-2 {
    margin-top: 2px;
  }

  .m-b-sm-2 {
    margin-bottom: 2px;
  }

  .m-r-sm-2 {
    margin-right: 2px;
  }

  .m-l-sm-2 {
    margin-left: 2px;
  }

  .p-sm-2 {
    padding: 2px;
  }

  .p-t-sm-2 {
    padding-top: 2px;
  }

  .p-b-sm-2 {
    padding-bottom: 2px;
  }

  .p-r-sm-2 {
    padding-right: 2px;
  }

  .p-l-sm-2 {
    padding-left: 2px;
  }
}
@media (min-width: 768px) {
  .m-sm-3 {
    margin: 3px;
  }

  .m-t-sm-3 {
    margin-top: 3px;
  }

  .m-b-sm-3 {
    margin-bottom: 3px;
  }

  .m-r-sm-3 {
    margin-right: 3px;
  }

  .m-l-sm-3 {
    margin-left: 3px;
  }

  .p-sm-3 {
    padding: 3px;
  }

  .p-t-sm-3 {
    padding-top: 3px;
  }

  .p-b-sm-3 {
    padding-bottom: 3px;
  }

  .p-r-sm-3 {
    padding-right: 3px;
  }

  .p-l-sm-3 {
    padding-left: 3px;
  }
}
@media (min-width: 768px) {
  .m-sm-4 {
    margin: 4px;
  }

  .m-t-sm-4 {
    margin-top: 4px;
  }

  .m-b-sm-4 {
    margin-bottom: 4px;
  }

  .m-r-sm-4 {
    margin-right: 4px;
  }

  .m-l-sm-4 {
    margin-left: 4px;
  }

  .p-sm-4 {
    padding: 4px;
  }

  .p-t-sm-4 {
    padding-top: 4px;
  }

  .p-b-sm-4 {
    padding-bottom: 4px;
  }

  .p-r-sm-4 {
    padding-right: 4px;
  }

  .p-l-sm-4 {
    padding-left: 4px;
  }
}
@media (min-width: 768px) {
  .m-sm-5 {
    margin: 5px;
  }

  .m-t-sm-5 {
    margin-top: 5px;
  }

  .m-b-sm-5 {
    margin-bottom: 5px;
  }

  .m-r-sm-5 {
    margin-right: 5px;
  }

  .m-l-sm-5 {
    margin-left: 5px;
  }

  .p-sm-5 {
    padding: 5px;
  }

  .p-t-sm-5 {
    padding-top: 5px;
  }

  .p-b-sm-5 {
    padding-bottom: 5px;
  }

  .p-r-sm-5 {
    padding-right: 5px;
  }

  .p-l-sm-5 {
    padding-left: 5px;
  }
}
@media (min-width: 768px) {
  .m-sm-6 {
    margin: 6px;
  }

  .m-t-sm-6 {
    margin-top: 6px;
  }

  .m-b-sm-6 {
    margin-bottom: 6px;
  }

  .m-r-sm-6 {
    margin-right: 6px;
  }

  .m-l-sm-6 {
    margin-left: 6px;
  }

  .p-sm-6 {
    padding: 6px;
  }

  .p-t-sm-6 {
    padding-top: 6px;
  }

  .p-b-sm-6 {
    padding-bottom: 6px;
  }

  .p-r-sm-6 {
    padding-right: 6px;
  }

  .p-l-sm-6 {
    padding-left: 6px;
  }
}
@media (min-width: 768px) {
  .m-sm-7 {
    margin: 7px;
  }

  .m-t-sm-7 {
    margin-top: 7px;
  }

  .m-b-sm-7 {
    margin-bottom: 7px;
  }

  .m-r-sm-7 {
    margin-right: 7px;
  }

  .m-l-sm-7 {
    margin-left: 7px;
  }

  .p-sm-7 {
    padding: 7px;
  }

  .p-t-sm-7 {
    padding-top: 7px;
  }

  .p-b-sm-7 {
    padding-bottom: 7px;
  }

  .p-r-sm-7 {
    padding-right: 7px;
  }

  .p-l-sm-7 {
    padding-left: 7px;
  }
}
@media (min-width: 768px) {
  .m-sm-8 {
    margin: 8px;
  }

  .m-t-sm-8 {
    margin-top: 8px;
  }

  .m-b-sm-8 {
    margin-bottom: 8px;
  }

  .m-r-sm-8 {
    margin-right: 8px;
  }

  .m-l-sm-8 {
    margin-left: 8px;
  }

  .p-sm-8 {
    padding: 8px;
  }

  .p-t-sm-8 {
    padding-top: 8px;
  }

  .p-b-sm-8 {
    padding-bottom: 8px;
  }

  .p-r-sm-8 {
    padding-right: 8px;
  }

  .p-l-sm-8 {
    padding-left: 8px;
  }
}
@media (min-width: 768px) {
  .m-sm-9 {
    margin: 9px;
  }

  .m-t-sm-9 {
    margin-top: 9px;
  }

  .m-b-sm-9 {
    margin-bottom: 9px;
  }

  .m-r-sm-9 {
    margin-right: 9px;
  }

  .m-l-sm-9 {
    margin-left: 9px;
  }

  .p-sm-9 {
    padding: 9px;
  }

  .p-t-sm-9 {
    padding-top: 9px;
  }

  .p-b-sm-9 {
    padding-bottom: 9px;
  }

  .p-r-sm-9 {
    padding-right: 9px;
  }

  .p-l-sm-9 {
    padding-left: 9px;
  }
}
@media (min-width: 768px) {
  .m-sm-10 {
    margin: 10px;
  }

  .m-t-sm-10 {
    margin-top: 10px;
  }

  .m-b-sm-10 {
    margin-bottom: 10px;
  }

  .m-r-sm-10 {
    margin-right: 10px;
  }

  .m-l-sm-10 {
    margin-left: 10px;
  }

  .p-sm-10 {
    padding: 10px;
  }

  .p-t-sm-10 {
    padding-top: 10px;
  }

  .p-b-sm-10 {
    padding-bottom: 10px;
  }

  .p-r-sm-10 {
    padding-right: 10px;
  }

  .p-l-sm-10 {
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  .m-sm-11 {
    margin: 11px;
  }

  .m-t-sm-11 {
    margin-top: 11px;
  }

  .m-b-sm-11 {
    margin-bottom: 11px;
  }

  .m-r-sm-11 {
    margin-right: 11px;
  }

  .m-l-sm-11 {
    margin-left: 11px;
  }

  .p-sm-11 {
    padding: 11px;
  }

  .p-t-sm-11 {
    padding-top: 11px;
  }

  .p-b-sm-11 {
    padding-bottom: 11px;
  }

  .p-r-sm-11 {
    padding-right: 11px;
  }

  .p-l-sm-11 {
    padding-left: 11px;
  }
}
@media (min-width: 768px) {
  .m-sm-12 {
    margin: 12px;
  }

  .m-t-sm-12 {
    margin-top: 12px;
  }

  .m-b-sm-12 {
    margin-bottom: 12px;
  }

  .m-r-sm-12 {
    margin-right: 12px;
  }

  .m-l-sm-12 {
    margin-left: 12px;
  }

  .p-sm-12 {
    padding: 12px;
  }

  .p-t-sm-12 {
    padding-top: 12px;
  }

  .p-b-sm-12 {
    padding-bottom: 12px;
  }

  .p-r-sm-12 {
    padding-right: 12px;
  }

  .p-l-sm-12 {
    padding-left: 12px;
  }
}
@media (min-width: 768px) {
  .m-sm-13 {
    margin: 13px;
  }

  .m-t-sm-13 {
    margin-top: 13px;
  }

  .m-b-sm-13 {
    margin-bottom: 13px;
  }

  .m-r-sm-13 {
    margin-right: 13px;
  }

  .m-l-sm-13 {
    margin-left: 13px;
  }

  .p-sm-13 {
    padding: 13px;
  }

  .p-t-sm-13 {
    padding-top: 13px;
  }

  .p-b-sm-13 {
    padding-bottom: 13px;
  }

  .p-r-sm-13 {
    padding-right: 13px;
  }

  .p-l-sm-13 {
    padding-left: 13px;
  }
}
@media (min-width: 768px) {
  .m-sm-14 {
    margin: 14px;
  }

  .m-t-sm-14 {
    margin-top: 14px;
  }

  .m-b-sm-14 {
    margin-bottom: 14px;
  }

  .m-r-sm-14 {
    margin-right: 14px;
  }

  .m-l-sm-14 {
    margin-left: 14px;
  }

  .p-sm-14 {
    padding: 14px;
  }

  .p-t-sm-14 {
    padding-top: 14px;
  }

  .p-b-sm-14 {
    padding-bottom: 14px;
  }

  .p-r-sm-14 {
    padding-right: 14px;
  }

  .p-l-sm-14 {
    padding-left: 14px;
  }
}
@media (min-width: 768px) {
  .m-sm-15 {
    margin: 15px;
  }

  .m-t-sm-15 {
    margin-top: 15px;
  }

  .m-b-sm-15 {
    margin-bottom: 15px;
  }

  .m-r-sm-15 {
    margin-right: 15px;
  }

  .m-l-sm-15 {
    margin-left: 15px;
  }

  .p-sm-15 {
    padding: 15px;
  }

  .p-t-sm-15 {
    padding-top: 15px;
  }

  .p-b-sm-15 {
    padding-bottom: 15px;
  }

  .p-r-sm-15 {
    padding-right: 15px;
  }

  .p-l-sm-15 {
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .m-sm-20 {
    margin: 20px;
  }

  .m-t-sm-20 {
    margin-top: 20px;
  }

  .m-b-sm-20 {
    margin-bottom: 20px;
  }

  .m-r-sm-20 {
    margin-right: 20px;
  }

  .m-l-sm-20 {
    margin-left: 20px;
  }

  .p-sm-20 {
    padding: 20px;
  }

  .p-t-sm-20 {
    padding-top: 20px;
  }

  .p-b-sm-20 {
    padding-bottom: 20px;
  }

  .p-r-sm-20 {
    padding-right: 20px;
  }

  .p-l-sm-20 {
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  .m-sm-25 {
    margin: 25px;
  }

  .m-t-sm-25 {
    margin-top: 25px;
  }

  .m-b-sm-25 {
    margin-bottom: 25px;
  }

  .m-r-sm-25 {
    margin-right: 25px;
  }

  .m-l-sm-25 {
    margin-left: 25px;
  }

  .p-sm-25 {
    padding: 25px;
  }

  .p-t-sm-25 {
    padding-top: 25px;
  }

  .p-b-sm-25 {
    padding-bottom: 25px;
  }

  .p-r-sm-25 {
    padding-right: 25px;
  }

  .p-l-sm-25 {
    padding-left: 25px;
  }
}
@media (min-width: 768px) {
  .m-sm-30 {
    margin: 30px;
  }

  .m-t-sm-30 {
    margin-top: 30px;
  }

  .m-b-sm-30 {
    margin-bottom: 30px;
  }

  .m-r-sm-30 {
    margin-right: 30px;
  }

  .m-l-sm-30 {
    margin-left: 30px;
  }

  .p-sm-30 {
    padding: 30px;
  }

  .p-t-sm-30 {
    padding-top: 30px;
  }

  .p-b-sm-30 {
    padding-bottom: 30px;
  }

  .p-r-sm-30 {
    padding-right: 30px;
  }

  .p-l-sm-30 {
    padding-left: 30px;
  }
}
@media (min-width: 768px) {
  .m-sm-35 {
    margin: 35px;
  }

  .m-t-sm-35 {
    margin-top: 35px;
  }

  .m-b-sm-35 {
    margin-bottom: 35px;
  }

  .m-r-sm-35 {
    margin-right: 35px;
  }

  .m-l-sm-35 {
    margin-left: 35px;
  }

  .p-sm-35 {
    padding: 35px;
  }

  .p-t-sm-35 {
    padding-top: 35px;
  }

  .p-b-sm-35 {
    padding-bottom: 35px;
  }

  .p-r-sm-35 {
    padding-right: 35px;
  }

  .p-l-sm-35 {
    padding-left: 35px;
  }
}
@media (min-width: 768px) {
  .m-sm-40 {
    margin: 40px;
  }

  .m-t-sm-40 {
    margin-top: 40px;
  }

  .m-b-sm-40 {
    margin-bottom: 40px;
  }

  .m-r-sm-40 {
    margin-right: 40px;
  }

  .m-l-sm-40 {
    margin-left: 40px;
  }

  .p-sm-40 {
    padding: 40px;
  }

  .p-t-sm-40 {
    padding-top: 40px;
  }

  .p-b-sm-40 {
    padding-bottom: 40px;
  }

  .p-r-sm-40 {
    padding-right: 40px;
  }

  .p-l-sm-40 {
    padding-left: 40px;
  }
}
@media (min-width: 768px) {
  .m-sm-45 {
    margin: 45px;
  }

  .m-t-sm-45 {
    margin-top: 45px;
  }

  .m-b-sm-45 {
    margin-bottom: 45px;
  }

  .m-r-sm-45 {
    margin-right: 45px;
  }

  .m-l-sm-45 {
    margin-left: 45px;
  }

  .p-sm-45 {
    padding: 45px;
  }

  .p-t-sm-45 {
    padding-top: 45px;
  }

  .p-b-sm-45 {
    padding-bottom: 45px;
  }

  .p-r-sm-45 {
    padding-right: 45px;
  }

  .p-l-sm-45 {
    padding-left: 45px;
  }
}
@media (min-width: 768px) {
  .m-sm-50 {
    margin: 50px;
  }

  .m-t-sm-50 {
    margin-top: 50px;
  }

  .m-b-sm-50 {
    margin-bottom: 50px;
  }

  .m-r-sm-50 {
    margin-right: 50px;
  }

  .m-l-sm-50 {
    margin-left: 50px;
  }

  .p-sm-50 {
    padding: 50px;
  }

  .p-t-sm-50 {
    padding-top: 50px;
  }

  .p-b-sm-50 {
    padding-bottom: 50px;
  }

  .p-r-sm-50 {
    padding-right: 50px;
  }

  .p-l-sm-50 {
    padding-left: 50px;
  }
}
@media (min-width: 768px) {
  .m-sm-55 {
    margin: 55px;
  }

  .m-t-sm-55 {
    margin-top: 55px;
  }

  .m-b-sm-55 {
    margin-bottom: 55px;
  }

  .m-r-sm-55 {
    margin-right: 55px;
  }

  .m-l-sm-55 {
    margin-left: 55px;
  }

  .p-sm-55 {
    padding: 55px;
  }

  .p-t-sm-55 {
    padding-top: 55px;
  }

  .p-b-sm-55 {
    padding-bottom: 55px;
  }

  .p-r-sm-55 {
    padding-right: 55px;
  }

  .p-l-sm-55 {
    padding-left: 55px;
  }
}
@media (min-width: 768px) {
  .m-sm-60 {
    margin: 60px;
  }

  .m-t-sm-60 {
    margin-top: 60px;
  }

  .m-b-sm-60 {
    margin-bottom: 60px;
  }

  .m-r-sm-60 {
    margin-right: 60px;
  }

  .m-l-sm-60 {
    margin-left: 60px;
  }

  .p-sm-60 {
    padding: 60px;
  }

  .p-t-sm-60 {
    padding-top: 60px;
  }

  .p-b-sm-60 {
    padding-bottom: 60px;
  }

  .p-r-sm-60 {
    padding-right: 60px;
  }

  .p-l-sm-60 {
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .m-sm-65 {
    margin: 65px;
  }

  .m-t-sm-65 {
    margin-top: 65px;
  }

  .m-b-sm-65 {
    margin-bottom: 65px;
  }

  .m-r-sm-65 {
    margin-right: 65px;
  }

  .m-l-sm-65 {
    margin-left: 65px;
  }

  .p-sm-65 {
    padding: 65px;
  }

  .p-t-sm-65 {
    padding-top: 65px;
  }

  .p-b-sm-65 {
    padding-bottom: 65px;
  }

  .p-r-sm-65 {
    padding-right: 65px;
  }

  .p-l-sm-65 {
    padding-left: 65px;
  }
}
@media (min-width: 768px) {
  .m-sm-70 {
    margin: 70px;
  }

  .m-t-sm-70 {
    margin-top: 70px;
  }

  .m-b-sm-70 {
    margin-bottom: 70px;
  }

  .m-r-sm-70 {
    margin-right: 70px;
  }

  .m-l-sm-70 {
    margin-left: 70px;
  }

  .p-sm-70 {
    padding: 70px;
  }

  .p-t-sm-70 {
    padding-top: 70px;
  }

  .p-b-sm-70 {
    padding-bottom: 70px;
  }

  .p-r-sm-70 {
    padding-right: 70px;
  }

  .p-l-sm-70 {
    padding-left: 70px;
  }
}
@media (min-width: 768px) {
  .m-sm-75 {
    margin: 75px;
  }

  .m-t-sm-75 {
    margin-top: 75px;
  }

  .m-b-sm-75 {
    margin-bottom: 75px;
  }

  .m-r-sm-75 {
    margin-right: 75px;
  }

  .m-l-sm-75 {
    margin-left: 75px;
  }

  .p-sm-75 {
    padding: 75px;
  }

  .p-t-sm-75 {
    padding-top: 75px;
  }

  .p-b-sm-75 {
    padding-bottom: 75px;
  }

  .p-r-sm-75 {
    padding-right: 75px;
  }

  .p-l-sm-75 {
    padding-left: 75px;
  }
}
@media (min-width: 768px) {
  .m-sm-80 {
    margin: 80px;
  }

  .m-t-sm-80 {
    margin-top: 80px;
  }

  .m-b-sm-80 {
    margin-bottom: 80px;
  }

  .m-r-sm-80 {
    margin-right: 80px;
  }

  .m-l-sm-80 {
    margin-left: 80px;
  }

  .p-sm-80 {
    padding: 80px;
  }

  .p-t-sm-80 {
    padding-top: 80px;
  }

  .p-b-sm-80 {
    padding-bottom: 80px;
  }

  .p-r-sm-80 {
    padding-right: 80px;
  }

  .p-l-sm-80 {
    padding-left: 80px;
  }
}
@media (min-width: 768px) {
  .m-sm-85 {
    margin: 85px;
  }

  .m-t-sm-85 {
    margin-top: 85px;
  }

  .m-b-sm-85 {
    margin-bottom: 85px;
  }

  .m-r-sm-85 {
    margin-right: 85px;
  }

  .m-l-sm-85 {
    margin-left: 85px;
  }

  .p-sm-85 {
    padding: 85px;
  }

  .p-t-sm-85 {
    padding-top: 85px;
  }

  .p-b-sm-85 {
    padding-bottom: 85px;
  }

  .p-r-sm-85 {
    padding-right: 85px;
  }

  .p-l-sm-85 {
    padding-left: 85px;
  }
}
@media (min-width: 768px) {
  .m-sm-90 {
    margin: 90px;
  }

  .m-t-sm-90 {
    margin-top: 90px;
  }

  .m-b-sm-90 {
    margin-bottom: 90px;
  }

  .m-r-sm-90 {
    margin-right: 90px;
  }

  .m-l-sm-90 {
    margin-left: 90px;
  }

  .p-sm-90 {
    padding: 90px;
  }

  .p-t-sm-90 {
    padding-top: 90px;
  }

  .p-b-sm-90 {
    padding-bottom: 90px;
  }

  .p-r-sm-90 {
    padding-right: 90px;
  }

  .p-l-sm-90 {
    padding-left: 90px;
  }
}
@media (min-width: 768px) {
  .m-sm-95 {
    margin: 95px;
  }

  .m-t-sm-95 {
    margin-top: 95px;
  }

  .m-b-sm-95 {
    margin-bottom: 95px;
  }

  .m-r-sm-95 {
    margin-right: 95px;
  }

  .m-l-sm-95 {
    margin-left: 95px;
  }

  .p-sm-95 {
    padding: 95px;
  }

  .p-t-sm-95 {
    padding-top: 95px;
  }

  .p-b-sm-95 {
    padding-bottom: 95px;
  }

  .p-r-sm-95 {
    padding-right: 95px;
  }

  .p-l-sm-95 {
    padding-left: 95px;
  }
}
@media (min-width: 768px) {
  .m-sm-100 {
    margin: 100px;
  }

  .m-t-sm-100 {
    margin-top: 100px;
  }

  .m-b-sm-100 {
    margin-bottom: 100px;
  }

  .m-r-sm-100 {
    margin-right: 100px;
  }

  .m-l-sm-100 {
    margin-left: 100px;
  }

  .p-sm-100 {
    padding: 100px;
  }

  .p-t-sm-100 {
    padding-top: 100px;
  }

  .p-b-sm-100 {
    padding-bottom: 100px;
  }

  .p-r-sm-100 {
    padding-right: 100px;
  }

  .p-l-sm-100 {
    padding-left: 100px;
  }
}
@media (min-width: 768px) {
  .m-sm-120 {
    margin: 120px;
  }

  .m-t-sm-120 {
    margin-top: 120px;
  }

  .m-b-sm-120 {
    margin-bottom: 120px;
  }

  .m-r-sm-120 {
    margin-right: 120px;
  }

  .m-l-sm-120 {
    margin-left: 120px;
  }

  .p-sm-120 {
    padding: 120px;
  }

  .p-t-sm-120 {
    padding-top: 120px;
  }

  .p-b-sm-120 {
    padding-bottom: 120px;
  }

  .p-r-sm-120 {
    padding-right: 120px;
  }

  .p-l-sm-120 {
    padding-left: 120px;
  }
}
@media (min-width: 768px) {
  .m-sm-150 {
    margin: 150px;
  }

  .m-t-sm-150 {
    margin-top: 150px;
  }

  .m-b-sm-150 {
    margin-bottom: 150px;
  }

  .m-r-sm-150 {
    margin-right: 150px;
  }

  .m-l-sm-150 {
    margin-left: 150px;
  }

  .p-sm-150 {
    padding: 150px;
  }

  .p-t-sm-150 {
    padding-top: 150px;
  }

  .p-b-sm-150 {
    padding-bottom: 150px;
  }

  .p-r-sm-150 {
    padding-right: 150px;
  }

  .p-l-sm-150 {
    padding-left: 150px;
  }
}
@media (min-width: 768px) {
  .m-sm-200 {
    margin: 200px;
  }

  .m-t-sm-200 {
    margin-top: 200px;
  }

  .m-b-sm-200 {
    margin-bottom: 200px;
  }

  .m-r-sm-200 {
    margin-right: 200px;
  }

  .m-l-sm-200 {
    margin-left: 200px;
  }

  .p-sm-200 {
    padding: 200px;
  }

  .p-t-sm-200 {
    padding-top: 200px;
  }

  .p-b-sm-200 {
    padding-bottom: 200px;
  }

  .p-r-sm-200 {
    padding-right: 200px;
  }

  .p-l-sm-200 {
    padding-left: 200px;
  }
}
@media (min-width: 992px) {
  .m-md-0 {
    margin: 0px;
  }

  .m-t-md-0 {
    margin-top: 0px;
  }

  .m-b-md-0 {
    margin-bottom: 0px;
  }

  .m-r-md-0 {
    margin-right: 0px;
  }

  .m-l-md-0 {
    margin-left: 0px;
  }

  .p-md-0 {
    padding: 0px;
  }

  .p-t-md-0 {
    padding-top: 0px;
  }

  .p-b-md-0 {
    padding-bottom: 0px;
  }

  .p-r-md-0 {
    padding-right: 0px;
  }

  .p-l-md-0 {
    padding-left: 0px;
  }
}
@media (min-width: 992px) {
  .m-md-1 {
    margin: 1px;
  }

  .m-t-md-1 {
    margin-top: 1px;
  }

  .m-b-md-1 {
    margin-bottom: 1px;
  }

  .m-r-md-1 {
    margin-right: 1px;
  }

  .m-l-md-1 {
    margin-left: 1px;
  }

  .p-md-1 {
    padding: 1px;
  }

  .p-t-md-1 {
    padding-top: 1px;
  }

  .p-b-md-1 {
    padding-bottom: 1px;
  }

  .p-r-md-1 {
    padding-right: 1px;
  }

  .p-l-md-1 {
    padding-left: 1px;
  }
}
@media (min-width: 992px) {
  .m-md-2 {
    margin: 2px;
  }

  .m-t-md-2 {
    margin-top: 2px;
  }

  .m-b-md-2 {
    margin-bottom: 2px;
  }

  .m-r-md-2 {
    margin-right: 2px;
  }

  .m-l-md-2 {
    margin-left: 2px;
  }

  .p-md-2 {
    padding: 2px;
  }

  .p-t-md-2 {
    padding-top: 2px;
  }

  .p-b-md-2 {
    padding-bottom: 2px;
  }

  .p-r-md-2 {
    padding-right: 2px;
  }

  .p-l-md-2 {
    padding-left: 2px;
  }
}
@media (min-width: 992px) {
  .m-md-3 {
    margin: 3px;
  }

  .m-t-md-3 {
    margin-top: 3px;
  }

  .m-b-md-3 {
    margin-bottom: 3px;
  }

  .m-r-md-3 {
    margin-right: 3px;
  }

  .m-l-md-3 {
    margin-left: 3px;
  }

  .p-md-3 {
    padding: 3px;
  }

  .p-t-md-3 {
    padding-top: 3px;
  }

  .p-b-md-3 {
    padding-bottom: 3px;
  }

  .p-r-md-3 {
    padding-right: 3px;
  }

  .p-l-md-3 {
    padding-left: 3px;
  }
}
@media (min-width: 992px) {
  .m-md-4 {
    margin: 4px;
  }

  .m-t-md-4 {
    margin-top: 4px;
  }

  .m-b-md-4 {
    margin-bottom: 4px;
  }

  .m-r-md-4 {
    margin-right: 4px;
  }

  .m-l-md-4 {
    margin-left: 4px;
  }

  .p-md-4 {
    padding: 4px;
  }

  .p-t-md-4 {
    padding-top: 4px;
  }

  .p-b-md-4 {
    padding-bottom: 4px;
  }

  .p-r-md-4 {
    padding-right: 4px;
  }

  .p-l-md-4 {
    padding-left: 4px;
  }
}
@media (min-width: 992px) {
  .m-md-5 {
    margin: 5px;
  }

  .m-t-md-5 {
    margin-top: 5px;
  }

  .m-b-md-5 {
    margin-bottom: 5px;
  }

  .m-r-md-5 {
    margin-right: 5px;
  }

  .m-l-md-5 {
    margin-left: 5px;
  }

  .p-md-5 {
    padding: 5px;
  }

  .p-t-md-5 {
    padding-top: 5px;
  }

  .p-b-md-5 {
    padding-bottom: 5px;
  }

  .p-r-md-5 {
    padding-right: 5px;
  }

  .p-l-md-5 {
    padding-left: 5px;
  }
}
@media (min-width: 992px) {
  .m-md-6 {
    margin: 6px;
  }

  .m-t-md-6 {
    margin-top: 6px;
  }

  .m-b-md-6 {
    margin-bottom: 6px;
  }

  .m-r-md-6 {
    margin-right: 6px;
  }

  .m-l-md-6 {
    margin-left: 6px;
  }

  .p-md-6 {
    padding: 6px;
  }

  .p-t-md-6 {
    padding-top: 6px;
  }

  .p-b-md-6 {
    padding-bottom: 6px;
  }

  .p-r-md-6 {
    padding-right: 6px;
  }

  .p-l-md-6 {
    padding-left: 6px;
  }
}
@media (min-width: 992px) {
  .m-md-7 {
    margin: 7px;
  }

  .m-t-md-7 {
    margin-top: 7px;
  }

  .m-b-md-7 {
    margin-bottom: 7px;
  }

  .m-r-md-7 {
    margin-right: 7px;
  }

  .m-l-md-7 {
    margin-left: 7px;
  }

  .p-md-7 {
    padding: 7px;
  }

  .p-t-md-7 {
    padding-top: 7px;
  }

  .p-b-md-7 {
    padding-bottom: 7px;
  }

  .p-r-md-7 {
    padding-right: 7px;
  }

  .p-l-md-7 {
    padding-left: 7px;
  }
}
@media (min-width: 992px) {
  .m-md-8 {
    margin: 8px;
  }

  .m-t-md-8 {
    margin-top: 8px;
  }

  .m-b-md-8 {
    margin-bottom: 8px;
  }

  .m-r-md-8 {
    margin-right: 8px;
  }

  .m-l-md-8 {
    margin-left: 8px;
  }

  .p-md-8 {
    padding: 8px;
  }

  .p-t-md-8 {
    padding-top: 8px;
  }

  .p-b-md-8 {
    padding-bottom: 8px;
  }

  .p-r-md-8 {
    padding-right: 8px;
  }

  .p-l-md-8 {
    padding-left: 8px;
  }
}
@media (min-width: 992px) {
  .m-md-9 {
    margin: 9px;
  }

  .m-t-md-9 {
    margin-top: 9px;
  }

  .m-b-md-9 {
    margin-bottom: 9px;
  }

  .m-r-md-9 {
    margin-right: 9px;
  }

  .m-l-md-9 {
    margin-left: 9px;
  }

  .p-md-9 {
    padding: 9px;
  }

  .p-t-md-9 {
    padding-top: 9px;
  }

  .p-b-md-9 {
    padding-bottom: 9px;
  }

  .p-r-md-9 {
    padding-right: 9px;
  }

  .p-l-md-9 {
    padding-left: 9px;
  }
}
@media (min-width: 992px) {
  .m-md-10 {
    margin: 10px;
  }

  .m-t-md-10 {
    margin-top: 10px;
  }

  .m-b-md-10 {
    margin-bottom: 10px;
  }

  .m-r-md-10 {
    margin-right: 10px;
  }

  .m-l-md-10 {
    margin-left: 10px;
  }

  .p-md-10 {
    padding: 10px;
  }

  .p-t-md-10 {
    padding-top: 10px;
  }

  .p-b-md-10 {
    padding-bottom: 10px;
  }

  .p-r-md-10 {
    padding-right: 10px;
  }

  .p-l-md-10 {
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  .m-md-11 {
    margin: 11px;
  }

  .m-t-md-11 {
    margin-top: 11px;
  }

  .m-b-md-11 {
    margin-bottom: 11px;
  }

  .m-r-md-11 {
    margin-right: 11px;
  }

  .m-l-md-11 {
    margin-left: 11px;
  }

  .p-md-11 {
    padding: 11px;
  }

  .p-t-md-11 {
    padding-top: 11px;
  }

  .p-b-md-11 {
    padding-bottom: 11px;
  }

  .p-r-md-11 {
    padding-right: 11px;
  }

  .p-l-md-11 {
    padding-left: 11px;
  }
}
@media (min-width: 992px) {
  .m-md-12 {
    margin: 12px;
  }

  .m-t-md-12 {
    margin-top: 12px;
  }

  .m-b-md-12 {
    margin-bottom: 12px;
  }

  .m-r-md-12 {
    margin-right: 12px;
  }

  .m-l-md-12 {
    margin-left: 12px;
  }

  .p-md-12 {
    padding: 12px;
  }

  .p-t-md-12 {
    padding-top: 12px;
  }

  .p-b-md-12 {
    padding-bottom: 12px;
  }

  .p-r-md-12 {
    padding-right: 12px;
  }

  .p-l-md-12 {
    padding-left: 12px;
  }
}
@media (min-width: 992px) {
  .m-md-13 {
    margin: 13px;
  }

  .m-t-md-13 {
    margin-top: 13px;
  }

  .m-b-md-13 {
    margin-bottom: 13px;
  }

  .m-r-md-13 {
    margin-right: 13px;
  }

  .m-l-md-13 {
    margin-left: 13px;
  }

  .p-md-13 {
    padding: 13px;
  }

  .p-t-md-13 {
    padding-top: 13px;
  }

  .p-b-md-13 {
    padding-bottom: 13px;
  }

  .p-r-md-13 {
    padding-right: 13px;
  }

  .p-l-md-13 {
    padding-left: 13px;
  }
}
@media (min-width: 992px) {
  .m-md-14 {
    margin: 14px;
  }

  .m-t-md-14 {
    margin-top: 14px;
  }

  .m-b-md-14 {
    margin-bottom: 14px;
  }

  .m-r-md-14 {
    margin-right: 14px;
  }

  .m-l-md-14 {
    margin-left: 14px;
  }

  .p-md-14 {
    padding: 14px;
  }

  .p-t-md-14 {
    padding-top: 14px;
  }

  .p-b-md-14 {
    padding-bottom: 14px;
  }

  .p-r-md-14 {
    padding-right: 14px;
  }

  .p-l-md-14 {
    padding-left: 14px;
  }
}
@media (min-width: 992px) {
  .m-md-15 {
    margin: 15px;
  }

  .m-t-md-15 {
    margin-top: 15px;
  }

  .m-b-md-15 {
    margin-bottom: 15px;
  }

  .m-r-md-15 {
    margin-right: 15px;
  }

  .m-l-md-15 {
    margin-left: 15px;
  }

  .p-md-15 {
    padding: 15px;
  }

  .p-t-md-15 {
    padding-top: 15px;
  }

  .p-b-md-15 {
    padding-bottom: 15px;
  }

  .p-r-md-15 {
    padding-right: 15px;
  }

  .p-l-md-15 {
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .m-md-20 {
    margin: 20px;
  }

  .m-t-md-20 {
    margin-top: 20px;
  }

  .m-b-md-20 {
    margin-bottom: 20px;
  }

  .m-r-md-20 {
    margin-right: 20px;
  }

  .m-l-md-20 {
    margin-left: 20px;
  }

  .p-md-20 {
    padding: 20px;
  }

  .p-t-md-20 {
    padding-top: 20px;
  }

  .p-b-md-20 {
    padding-bottom: 20px;
  }

  .p-r-md-20 {
    padding-right: 20px;
  }

  .p-l-md-20 {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .m-md-25 {
    margin: 25px;
  }

  .m-t-md-25 {
    margin-top: 25px;
  }

  .m-b-md-25 {
    margin-bottom: 25px;
  }

  .m-r-md-25 {
    margin-right: 25px;
  }

  .m-l-md-25 {
    margin-left: 25px;
  }

  .p-md-25 {
    padding: 25px;
  }

  .p-t-md-25 {
    padding-top: 25px;
  }

  .p-b-md-25 {
    padding-bottom: 25px;
  }

  .p-r-md-25 {
    padding-right: 25px;
  }

  .p-l-md-25 {
    padding-left: 25px;
  }
}
@media (min-width: 992px) {
  .m-md-30 {
    margin: 30px;
  }

  .m-t-md-30 {
    margin-top: 30px;
  }

  .m-b-md-30 {
    margin-bottom: 30px;
  }

  .m-r-md-30 {
    margin-right: 30px;
  }

  .m-l-md-30 {
    margin-left: 30px;
  }

  .p-md-30 {
    padding: 30px;
  }

  .p-t-md-30 {
    padding-top: 30px;
  }

  .p-b-md-30 {
    padding-bottom: 30px;
  }

  .p-r-md-30 {
    padding-right: 30px;
  }

  .p-l-md-30 {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .m-md-35 {
    margin: 35px;
  }

  .m-t-md-35 {
    margin-top: 35px;
  }

  .m-b-md-35 {
    margin-bottom: 35px;
  }

  .m-r-md-35 {
    margin-right: 35px;
  }

  .m-l-md-35 {
    margin-left: 35px;
  }

  .p-md-35 {
    padding: 35px;
  }

  .p-t-md-35 {
    padding-top: 35px;
  }

  .p-b-md-35 {
    padding-bottom: 35px;
  }

  .p-r-md-35 {
    padding-right: 35px;
  }

  .p-l-md-35 {
    padding-left: 35px;
  }
}
@media (min-width: 992px) {
  .m-md-40 {
    margin: 40px;
  }

  .m-t-md-40 {
    margin-top: 40px;
  }

  .m-b-md-40 {
    margin-bottom: 40px;
  }

  .m-r-md-40 {
    margin-right: 40px;
  }

  .m-l-md-40 {
    margin-left: 40px;
  }

  .p-md-40 {
    padding: 40px;
  }

  .p-t-md-40 {
    padding-top: 40px;
  }

  .p-b-md-40 {
    padding-bottom: 40px;
  }

  .p-r-md-40 {
    padding-right: 40px;
  }

  .p-l-md-40 {
    padding-left: 40px;
  }
}
@media (min-width: 992px) {
  .m-md-45 {
    margin: 45px;
  }

  .m-t-md-45 {
    margin-top: 45px;
  }

  .m-b-md-45 {
    margin-bottom: 45px;
  }

  .m-r-md-45 {
    margin-right: 45px;
  }

  .m-l-md-45 {
    margin-left: 45px;
  }

  .p-md-45 {
    padding: 45px;
  }

  .p-t-md-45 {
    padding-top: 45px;
  }

  .p-b-md-45 {
    padding-bottom: 45px;
  }

  .p-r-md-45 {
    padding-right: 45px;
  }

  .p-l-md-45 {
    padding-left: 45px;
  }
}
@media (min-width: 992px) {
  .m-md-50 {
    margin: 50px;
  }

  .m-t-md-50 {
    margin-top: 50px;
  }

  .m-b-md-50 {
    margin-bottom: 50px;
  }

  .m-r-md-50 {
    margin-right: 50px;
  }

  .m-l-md-50 {
    margin-left: 50px;
  }

  .p-md-50 {
    padding: 50px;
  }

  .p-t-md-50 {
    padding-top: 50px;
  }

  .p-b-md-50 {
    padding-bottom: 50px;
  }

  .p-r-md-50 {
    padding-right: 50px;
  }

  .p-l-md-50 {
    padding-left: 50px;
  }
}
@media (min-width: 992px) {
  .m-md-55 {
    margin: 55px;
  }

  .m-t-md-55 {
    margin-top: 55px;
  }

  .m-b-md-55 {
    margin-bottom: 55px;
  }

  .m-r-md-55 {
    margin-right: 55px;
  }

  .m-l-md-55 {
    margin-left: 55px;
  }

  .p-md-55 {
    padding: 55px;
  }

  .p-t-md-55 {
    padding-top: 55px;
  }

  .p-b-md-55 {
    padding-bottom: 55px;
  }

  .p-r-md-55 {
    padding-right: 55px;
  }

  .p-l-md-55 {
    padding-left: 55px;
  }
}
@media (min-width: 992px) {
  .m-md-60 {
    margin: 60px;
  }

  .m-t-md-60 {
    margin-top: 60px;
  }

  .m-b-md-60 {
    margin-bottom: 60px;
  }

  .m-r-md-60 {
    margin-right: 60px;
  }

  .m-l-md-60 {
    margin-left: 60px;
  }

  .p-md-60 {
    padding: 60px;
  }

  .p-t-md-60 {
    padding-top: 60px;
  }

  .p-b-md-60 {
    padding-bottom: 60px;
  }

  .p-r-md-60 {
    padding-right: 60px;
  }

  .p-l-md-60 {
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .m-md-65 {
    margin: 65px;
  }

  .m-t-md-65 {
    margin-top: 65px;
  }

  .m-b-md-65 {
    margin-bottom: 65px;
  }

  .m-r-md-65 {
    margin-right: 65px;
  }

  .m-l-md-65 {
    margin-left: 65px;
  }

  .p-md-65 {
    padding: 65px;
  }

  .p-t-md-65 {
    padding-top: 65px;
  }

  .p-b-md-65 {
    padding-bottom: 65px;
  }

  .p-r-md-65 {
    padding-right: 65px;
  }

  .p-l-md-65 {
    padding-left: 65px;
  }
}
@media (min-width: 992px) {
  .m-md-70 {
    margin: 70px;
  }

  .m-t-md-70 {
    margin-top: 70px;
  }

  .m-b-md-70 {
    margin-bottom: 70px;
  }

  .m-r-md-70 {
    margin-right: 70px;
  }

  .m-l-md-70 {
    margin-left: 70px;
  }

  .p-md-70 {
    padding: 70px;
  }

  .p-t-md-70 {
    padding-top: 70px;
  }

  .p-b-md-70 {
    padding-bottom: 70px;
  }

  .p-r-md-70 {
    padding-right: 70px;
  }

  .p-l-md-70 {
    padding-left: 70px;
  }
}
@media (min-width: 992px) {
  .m-md-75 {
    margin: 75px;
  }

  .m-t-md-75 {
    margin-top: 75px;
  }

  .m-b-md-75 {
    margin-bottom: 75px;
  }

  .m-r-md-75 {
    margin-right: 75px;
  }

  .m-l-md-75 {
    margin-left: 75px;
  }

  .p-md-75 {
    padding: 75px;
  }

  .p-t-md-75 {
    padding-top: 75px;
  }

  .p-b-md-75 {
    padding-bottom: 75px;
  }

  .p-r-md-75 {
    padding-right: 75px;
  }

  .p-l-md-75 {
    padding-left: 75px;
  }
}
@media (min-width: 992px) {
  .m-md-80 {
    margin: 80px;
  }

  .m-t-md-80 {
    margin-top: 80px;
  }

  .m-b-md-80 {
    margin-bottom: 80px;
  }

  .m-r-md-80 {
    margin-right: 80px;
  }

  .m-l-md-80 {
    margin-left: 80px;
  }

  .p-md-80 {
    padding: 80px;
  }

  .p-t-md-80 {
    padding-top: 80px;
  }

  .p-b-md-80 {
    padding-bottom: 80px;
  }

  .p-r-md-80 {
    padding-right: 80px;
  }

  .p-l-md-80 {
    padding-left: 80px;
  }
}
@media (min-width: 992px) {
  .m-md-85 {
    margin: 85px;
  }

  .m-t-md-85 {
    margin-top: 85px;
  }

  .m-b-md-85 {
    margin-bottom: 85px;
  }

  .m-r-md-85 {
    margin-right: 85px;
  }

  .m-l-md-85 {
    margin-left: 85px;
  }

  .p-md-85 {
    padding: 85px;
  }

  .p-t-md-85 {
    padding-top: 85px;
  }

  .p-b-md-85 {
    padding-bottom: 85px;
  }

  .p-r-md-85 {
    padding-right: 85px;
  }

  .p-l-md-85 {
    padding-left: 85px;
  }
}
@media (min-width: 992px) {
  .m-md-90 {
    margin: 90px;
  }

  .m-t-md-90 {
    margin-top: 90px;
  }

  .m-b-md-90 {
    margin-bottom: 90px;
  }

  .m-r-md-90 {
    margin-right: 90px;
  }

  .m-l-md-90 {
    margin-left: 90px;
  }

  .p-md-90 {
    padding: 90px;
  }

  .p-t-md-90 {
    padding-top: 90px;
  }

  .p-b-md-90 {
    padding-bottom: 90px;
  }

  .p-r-md-90 {
    padding-right: 90px;
  }

  .p-l-md-90 {
    padding-left: 90px;
  }
}
@media (min-width: 992px) {
  .m-md-95 {
    margin: 95px;
  }

  .m-t-md-95 {
    margin-top: 95px;
  }

  .m-b-md-95 {
    margin-bottom: 95px;
  }

  .m-r-md-95 {
    margin-right: 95px;
  }

  .m-l-md-95 {
    margin-left: 95px;
  }

  .p-md-95 {
    padding: 95px;
  }

  .p-t-md-95 {
    padding-top: 95px;
  }

  .p-b-md-95 {
    padding-bottom: 95px;
  }

  .p-r-md-95 {
    padding-right: 95px;
  }

  .p-l-md-95 {
    padding-left: 95px;
  }
}
@media (min-width: 992px) {
  .m-md-100 {
    margin: 100px;
  }

  .m-t-md-100 {
    margin-top: 100px;
  }

  .m-b-md-100 {
    margin-bottom: 100px;
  }

  .m-r-md-100 {
    margin-right: 100px;
  }

  .m-l-md-100 {
    margin-left: 100px;
  }

  .p-md-100 {
    padding: 100px;
  }

  .p-t-md-100 {
    padding-top: 100px;
  }

  .p-b-md-100 {
    padding-bottom: 100px;
  }

  .p-r-md-100 {
    padding-right: 100px;
  }

  .p-l-md-100 {
    padding-left: 100px;
  }
}
@media (min-width: 992px) {
  .m-md-120 {
    margin: 120px;
  }

  .m-t-md-120 {
    margin-top: 120px;
  }

  .m-b-md-120 {
    margin-bottom: 120px;
  }

  .m-r-md-120 {
    margin-right: 120px;
  }

  .m-l-md-120 {
    margin-left: 120px;
  }

  .p-md-120 {
    padding: 120px;
  }

  .p-t-md-120 {
    padding-top: 120px;
  }

  .p-b-md-120 {
    padding-bottom: 120px;
  }

  .p-r-md-120 {
    padding-right: 120px;
  }

  .p-l-md-120 {
    padding-left: 120px;
  }
}
@media (min-width: 992px) {
  .m-md-150 {
    margin: 150px;
  }

  .m-t-md-150 {
    margin-top: 150px;
  }

  .m-b-md-150 {
    margin-bottom: 150px;
  }

  .m-r-md-150 {
    margin-right: 150px;
  }

  .m-l-md-150 {
    margin-left: 150px;
  }

  .p-md-150 {
    padding: 150px;
  }

  .p-t-md-150 {
    padding-top: 150px;
  }

  .p-b-md-150 {
    padding-bottom: 150px;
  }

  .p-r-md-150 {
    padding-right: 150px;
  }

  .p-l-md-150 {
    padding-left: 150px;
  }
}
@media (min-width: 992px) {
  .m-md-200 {
    margin: 200px;
  }

  .m-t-md-200 {
    margin-top: 200px;
  }

  .m-b-md-200 {
    margin-bottom: 200px;
  }

  .m-r-md-200 {
    margin-right: 200px;
  }

  .m-l-md-200 {
    margin-left: 200px;
  }

  .p-md-200 {
    padding: 200px;
  }

  .p-t-md-200 {
    padding-top: 200px;
  }

  .p-b-md-200 {
    padding-bottom: 200px;
  }

  .p-r-md-200 {
    padding-right: 200px;
  }

  .p-l-md-200 {
    padding-left: 200px;
  }
}
@media (min-width: 1200px) {
  .m-lg-0 {
    margin: 0px;
  }

  .m-t-lg-0 {
    margin-top: 0px;
  }

  .m-b-lg-0 {
    margin-bottom: 0px;
  }

  .m-r-lg-0 {
    margin-right: 0px;
  }

  .m-l-lg-0 {
    margin-left: 0px;
  }

  .p-lg-0 {
    padding: 0px;
  }

  .p-t-lg-0 {
    padding-top: 0px;
  }

  .p-b-lg-0 {
    padding-bottom: 0px;
  }

  .p-r-lg-0 {
    padding-right: 0px;
  }

  .p-l-lg-0 {
    padding-left: 0px;
  }
}
@media (min-width: 1200px) {
  .m-lg-1 {
    margin: 1px;
  }

  .m-t-lg-1 {
    margin-top: 1px;
  }

  .m-b-lg-1 {
    margin-bottom: 1px;
  }

  .m-r-lg-1 {
    margin-right: 1px;
  }

  .m-l-lg-1 {
    margin-left: 1px;
  }

  .p-lg-1 {
    padding: 1px;
  }

  .p-t-lg-1 {
    padding-top: 1px;
  }

  .p-b-lg-1 {
    padding-bottom: 1px;
  }

  .p-r-lg-1 {
    padding-right: 1px;
  }

  .p-l-lg-1 {
    padding-left: 1px;
  }
}
@media (min-width: 1200px) {
  .m-lg-2 {
    margin: 2px;
  }

  .m-t-lg-2 {
    margin-top: 2px;
  }

  .m-b-lg-2 {
    margin-bottom: 2px;
  }

  .m-r-lg-2 {
    margin-right: 2px;
  }

  .m-l-lg-2 {
    margin-left: 2px;
  }

  .p-lg-2 {
    padding: 2px;
  }

  .p-t-lg-2 {
    padding-top: 2px;
  }

  .p-b-lg-2 {
    padding-bottom: 2px;
  }

  .p-r-lg-2 {
    padding-right: 2px;
  }

  .p-l-lg-2 {
    padding-left: 2px;
  }
}
@media (min-width: 1200px) {
  .m-lg-3 {
    margin: 3px;
  }

  .m-t-lg-3 {
    margin-top: 3px;
  }

  .m-b-lg-3 {
    margin-bottom: 3px;
  }

  .m-r-lg-3 {
    margin-right: 3px;
  }

  .m-l-lg-3 {
    margin-left: 3px;
  }

  .p-lg-3 {
    padding: 3px;
  }

  .p-t-lg-3 {
    padding-top: 3px;
  }

  .p-b-lg-3 {
    padding-bottom: 3px;
  }

  .p-r-lg-3 {
    padding-right: 3px;
  }

  .p-l-lg-3 {
    padding-left: 3px;
  }
}
@media (min-width: 1200px) {
  .m-lg-4 {
    margin: 4px;
  }

  .m-t-lg-4 {
    margin-top: 4px;
  }

  .m-b-lg-4 {
    margin-bottom: 4px;
  }

  .m-r-lg-4 {
    margin-right: 4px;
  }

  .m-l-lg-4 {
    margin-left: 4px;
  }

  .p-lg-4 {
    padding: 4px;
  }

  .p-t-lg-4 {
    padding-top: 4px;
  }

  .p-b-lg-4 {
    padding-bottom: 4px;
  }

  .p-r-lg-4 {
    padding-right: 4px;
  }

  .p-l-lg-4 {
    padding-left: 4px;
  }
}
@media (min-width: 1200px) {
  .m-lg-5 {
    margin: 5px;
  }

  .m-t-lg-5 {
    margin-top: 5px;
  }

  .m-b-lg-5 {
    margin-bottom: 5px;
  }

  .m-r-lg-5 {
    margin-right: 5px;
  }

  .m-l-lg-5 {
    margin-left: 5px;
  }

  .p-lg-5 {
    padding: 5px;
  }

  .p-t-lg-5 {
    padding-top: 5px;
  }

  .p-b-lg-5 {
    padding-bottom: 5px;
  }

  .p-r-lg-5 {
    padding-right: 5px;
  }

  .p-l-lg-5 {
    padding-left: 5px;
  }
}
@media (min-width: 1200px) {
  .m-lg-6 {
    margin: 6px;
  }

  .m-t-lg-6 {
    margin-top: 6px;
  }

  .m-b-lg-6 {
    margin-bottom: 6px;
  }

  .m-r-lg-6 {
    margin-right: 6px;
  }

  .m-l-lg-6 {
    margin-left: 6px;
  }

  .p-lg-6 {
    padding: 6px;
  }

  .p-t-lg-6 {
    padding-top: 6px;
  }

  .p-b-lg-6 {
    padding-bottom: 6px;
  }

  .p-r-lg-6 {
    padding-right: 6px;
  }

  .p-l-lg-6 {
    padding-left: 6px;
  }
}
@media (min-width: 1200px) {
  .m-lg-7 {
    margin: 7px;
  }

  .m-t-lg-7 {
    margin-top: 7px;
  }

  .m-b-lg-7 {
    margin-bottom: 7px;
  }

  .m-r-lg-7 {
    margin-right: 7px;
  }

  .m-l-lg-7 {
    margin-left: 7px;
  }

  .p-lg-7 {
    padding: 7px;
  }

  .p-t-lg-7 {
    padding-top: 7px;
  }

  .p-b-lg-7 {
    padding-bottom: 7px;
  }

  .p-r-lg-7 {
    padding-right: 7px;
  }

  .p-l-lg-7 {
    padding-left: 7px;
  }
}
@media (min-width: 1200px) {
  .m-lg-8 {
    margin: 8px;
  }

  .m-t-lg-8 {
    margin-top: 8px;
  }

  .m-b-lg-8 {
    margin-bottom: 8px;
  }

  .m-r-lg-8 {
    margin-right: 8px;
  }

  .m-l-lg-8 {
    margin-left: 8px;
  }

  .p-lg-8 {
    padding: 8px;
  }

  .p-t-lg-8 {
    padding-top: 8px;
  }

  .p-b-lg-8 {
    padding-bottom: 8px;
  }

  .p-r-lg-8 {
    padding-right: 8px;
  }

  .p-l-lg-8 {
    padding-left: 8px;
  }
}
@media (min-width: 1200px) {
  .m-lg-9 {
    margin: 9px;
  }

  .m-t-lg-9 {
    margin-top: 9px;
  }

  .m-b-lg-9 {
    margin-bottom: 9px;
  }

  .m-r-lg-9 {
    margin-right: 9px;
  }

  .m-l-lg-9 {
    margin-left: 9px;
  }

  .p-lg-9 {
    padding: 9px;
  }

  .p-t-lg-9 {
    padding-top: 9px;
  }

  .p-b-lg-9 {
    padding-bottom: 9px;
  }

  .p-r-lg-9 {
    padding-right: 9px;
  }

  .p-l-lg-9 {
    padding-left: 9px;
  }
}
@media (min-width: 1200px) {
  .m-lg-10 {
    margin: 10px;
  }

  .m-t-lg-10 {
    margin-top: 10px;
  }

  .m-b-lg-10 {
    margin-bottom: 10px;
  }

  .m-r-lg-10 {
    margin-right: 10px;
  }

  .m-l-lg-10 {
    margin-left: 10px;
  }

  .p-lg-10 {
    padding: 10px;
  }

  .p-t-lg-10 {
    padding-top: 10px;
  }

  .p-b-lg-10 {
    padding-bottom: 10px;
  }

  .p-r-lg-10 {
    padding-right: 10px;
  }

  .p-l-lg-10 {
    padding-left: 10px;
  }
}
@media (min-width: 1200px) {
  .m-lg-11 {
    margin: 11px;
  }

  .m-t-lg-11 {
    margin-top: 11px;
  }

  .m-b-lg-11 {
    margin-bottom: 11px;
  }

  .m-r-lg-11 {
    margin-right: 11px;
  }

  .m-l-lg-11 {
    margin-left: 11px;
  }

  .p-lg-11 {
    padding: 11px;
  }

  .p-t-lg-11 {
    padding-top: 11px;
  }

  .p-b-lg-11 {
    padding-bottom: 11px;
  }

  .p-r-lg-11 {
    padding-right: 11px;
  }

  .p-l-lg-11 {
    padding-left: 11px;
  }
}
@media (min-width: 1200px) {
  .m-lg-12 {
    margin: 12px;
  }

  .m-t-lg-12 {
    margin-top: 12px;
  }

  .m-b-lg-12 {
    margin-bottom: 12px;
  }

  .m-r-lg-12 {
    margin-right: 12px;
  }

  .m-l-lg-12 {
    margin-left: 12px;
  }

  .p-lg-12 {
    padding: 12px;
  }

  .p-t-lg-12 {
    padding-top: 12px;
  }

  .p-b-lg-12 {
    padding-bottom: 12px;
  }

  .p-r-lg-12 {
    padding-right: 12px;
  }

  .p-l-lg-12 {
    padding-left: 12px;
  }
}
@media (min-width: 1200px) {
  .m-lg-13 {
    margin: 13px;
  }

  .m-t-lg-13 {
    margin-top: 13px;
  }

  .m-b-lg-13 {
    margin-bottom: 13px;
  }

  .m-r-lg-13 {
    margin-right: 13px;
  }

  .m-l-lg-13 {
    margin-left: 13px;
  }

  .p-lg-13 {
    padding: 13px;
  }

  .p-t-lg-13 {
    padding-top: 13px;
  }

  .p-b-lg-13 {
    padding-bottom: 13px;
  }

  .p-r-lg-13 {
    padding-right: 13px;
  }

  .p-l-lg-13 {
    padding-left: 13px;
  }
}
@media (min-width: 1200px) {
  .m-lg-14 {
    margin: 14px;
  }

  .m-t-lg-14 {
    margin-top: 14px;
  }

  .m-b-lg-14 {
    margin-bottom: 14px;
  }

  .m-r-lg-14 {
    margin-right: 14px;
  }

  .m-l-lg-14 {
    margin-left: 14px;
  }

  .p-lg-14 {
    padding: 14px;
  }

  .p-t-lg-14 {
    padding-top: 14px;
  }

  .p-b-lg-14 {
    padding-bottom: 14px;
  }

  .p-r-lg-14 {
    padding-right: 14px;
  }

  .p-l-lg-14 {
    padding-left: 14px;
  }
}
@media (min-width: 1200px) {
  .m-lg-15 {
    margin: 15px;
  }

  .m-t-lg-15 {
    margin-top: 15px;
  }

  .m-b-lg-15 {
    margin-bottom: 15px;
  }

  .m-r-lg-15 {
    margin-right: 15px;
  }

  .m-l-lg-15 {
    margin-left: 15px;
  }

  .p-lg-15 {
    padding: 15px;
  }

  .p-t-lg-15 {
    padding-top: 15px;
  }

  .p-b-lg-15 {
    padding-bottom: 15px;
  }

  .p-r-lg-15 {
    padding-right: 15px;
  }

  .p-l-lg-15 {
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .m-lg-20 {
    margin: 20px;
  }

  .m-t-lg-20 {
    margin-top: 20px;
  }

  .m-b-lg-20 {
    margin-bottom: 20px;
  }

  .m-r-lg-20 {
    margin-right: 20px;
  }

  .m-l-lg-20 {
    margin-left: 20px;
  }

  .p-lg-20 {
    padding: 20px;
  }

  .p-t-lg-20 {
    padding-top: 20px;
  }

  .p-b-lg-20 {
    padding-bottom: 20px;
  }

  .p-r-lg-20 {
    padding-right: 20px;
  }

  .p-l-lg-20 {
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  .m-lg-25 {
    margin: 25px;
  }

  .m-t-lg-25 {
    margin-top: 25px;
  }

  .m-b-lg-25 {
    margin-bottom: 25px;
  }

  .m-r-lg-25 {
    margin-right: 25px;
  }

  .m-l-lg-25 {
    margin-left: 25px;
  }

  .p-lg-25 {
    padding: 25px;
  }

  .p-t-lg-25 {
    padding-top: 25px;
  }

  .p-b-lg-25 {
    padding-bottom: 25px;
  }

  .p-r-lg-25 {
    padding-right: 25px;
  }

  .p-l-lg-25 {
    padding-left: 25px;
  }
}
@media (min-width: 1200px) {
  .m-lg-30 {
    margin: 30px;
  }

  .m-t-lg-30 {
    margin-top: 30px;
  }

  .m-b-lg-30 {
    margin-bottom: 30px;
  }

  .m-r-lg-30 {
    margin-right: 30px;
  }

  .m-l-lg-30 {
    margin-left: 30px;
  }

  .p-lg-30 {
    padding: 30px;
  }

  .p-t-lg-30 {
    padding-top: 30px;
  }

  .p-b-lg-30 {
    padding-bottom: 30px;
  }

  .p-r-lg-30 {
    padding-right: 30px;
  }

  .p-l-lg-30 {
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  .m-lg-35 {
    margin: 35px;
  }

  .m-t-lg-35 {
    margin-top: 35px;
  }

  .m-b-lg-35 {
    margin-bottom: 35px;
  }

  .m-r-lg-35 {
    margin-right: 35px;
  }

  .m-l-lg-35 {
    margin-left: 35px;
  }

  .p-lg-35 {
    padding: 35px;
  }

  .p-t-lg-35 {
    padding-top: 35px;
  }

  .p-b-lg-35 {
    padding-bottom: 35px;
  }

  .p-r-lg-35 {
    padding-right: 35px;
  }

  .p-l-lg-35 {
    padding-left: 35px;
  }
}
@media (min-width: 1200px) {
  .m-lg-40 {
    margin: 40px;
  }

  .m-t-lg-40 {
    margin-top: 40px;
  }

  .m-b-lg-40 {
    margin-bottom: 40px;
  }

  .m-r-lg-40 {
    margin-right: 40px;
  }

  .m-l-lg-40 {
    margin-left: 40px;
  }

  .p-lg-40 {
    padding: 40px;
  }

  .p-t-lg-40 {
    padding-top: 40px;
  }

  .p-b-lg-40 {
    padding-bottom: 40px;
  }

  .p-r-lg-40 {
    padding-right: 40px;
  }

  .p-l-lg-40 {
    padding-left: 40px;
  }
}
@media (min-width: 1200px) {
  .m-lg-45 {
    margin: 45px;
  }

  .m-t-lg-45 {
    margin-top: 45px;
  }

  .m-b-lg-45 {
    margin-bottom: 45px;
  }

  .m-r-lg-45 {
    margin-right: 45px;
  }

  .m-l-lg-45 {
    margin-left: 45px;
  }

  .p-lg-45 {
    padding: 45px;
  }

  .p-t-lg-45 {
    padding-top: 45px;
  }

  .p-b-lg-45 {
    padding-bottom: 45px;
  }

  .p-r-lg-45 {
    padding-right: 45px;
  }

  .p-l-lg-45 {
    padding-left: 45px;
  }
}
@media (min-width: 1200px) {
  .m-lg-50 {
    margin: 50px;
  }

  .m-t-lg-50 {
    margin-top: 50px;
  }

  .m-b-lg-50 {
    margin-bottom: 50px;
  }

  .m-r-lg-50 {
    margin-right: 50px;
  }

  .m-l-lg-50 {
    margin-left: 50px;
  }

  .p-lg-50 {
    padding: 50px;
  }

  .p-t-lg-50 {
    padding-top: 50px;
  }

  .p-b-lg-50 {
    padding-bottom: 50px;
  }

  .p-r-lg-50 {
    padding-right: 50px;
  }

  .p-l-lg-50 {
    padding-left: 50px;
  }
}
@media (min-width: 1200px) {
  .m-lg-55 {
    margin: 55px;
  }

  .m-t-lg-55 {
    margin-top: 55px;
  }

  .m-b-lg-55 {
    margin-bottom: 55px;
  }

  .m-r-lg-55 {
    margin-right: 55px;
  }

  .m-l-lg-55 {
    margin-left: 55px;
  }

  .p-lg-55 {
    padding: 55px;
  }

  .p-t-lg-55 {
    padding-top: 55px;
  }

  .p-b-lg-55 {
    padding-bottom: 55px;
  }

  .p-r-lg-55 {
    padding-right: 55px;
  }

  .p-l-lg-55 {
    padding-left: 55px;
  }
}
@media (min-width: 1200px) {
  .m-lg-60 {
    margin: 60px;
  }

  .m-t-lg-60 {
    margin-top: 60px;
  }

  .m-b-lg-60 {
    margin-bottom: 60px;
  }

  .m-r-lg-60 {
    margin-right: 60px;
  }

  .m-l-lg-60 {
    margin-left: 60px;
  }

  .p-lg-60 {
    padding: 60px;
  }

  .p-t-lg-60 {
    padding-top: 60px;
  }

  .p-b-lg-60 {
    padding-bottom: 60px;
  }

  .p-r-lg-60 {
    padding-right: 60px;
  }

  .p-l-lg-60 {
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .m-lg-65 {
    margin: 65px;
  }

  .m-t-lg-65 {
    margin-top: 65px;
  }

  .m-b-lg-65 {
    margin-bottom: 65px;
  }

  .m-r-lg-65 {
    margin-right: 65px;
  }

  .m-l-lg-65 {
    margin-left: 65px;
  }

  .p-lg-65 {
    padding: 65px;
  }

  .p-t-lg-65 {
    padding-top: 65px;
  }

  .p-b-lg-65 {
    padding-bottom: 65px;
  }

  .p-r-lg-65 {
    padding-right: 65px;
  }

  .p-l-lg-65 {
    padding-left: 65px;
  }
}
@media (min-width: 1200px) {
  .m-lg-70 {
    margin: 70px;
  }

  .m-t-lg-70 {
    margin-top: 70px;
  }

  .m-b-lg-70 {
    margin-bottom: 70px;
  }

  .m-r-lg-70 {
    margin-right: 70px;
  }

  .m-l-lg-70 {
    margin-left: 70px;
  }

  .p-lg-70 {
    padding: 70px;
  }

  .p-t-lg-70 {
    padding-top: 70px;
  }

  .p-b-lg-70 {
    padding-bottom: 70px;
  }

  .p-r-lg-70 {
    padding-right: 70px;
  }

  .p-l-lg-70 {
    padding-left: 70px;
  }
}
@media (min-width: 1200px) {
  .m-lg-75 {
    margin: 75px;
  }

  .m-t-lg-75 {
    margin-top: 75px;
  }

  .m-b-lg-75 {
    margin-bottom: 75px;
  }

  .m-r-lg-75 {
    margin-right: 75px;
  }

  .m-l-lg-75 {
    margin-left: 75px;
  }

  .p-lg-75 {
    padding: 75px;
  }

  .p-t-lg-75 {
    padding-top: 75px;
  }

  .p-b-lg-75 {
    padding-bottom: 75px;
  }

  .p-r-lg-75 {
    padding-right: 75px;
  }

  .p-l-lg-75 {
    padding-left: 75px;
  }
}
@media (min-width: 1200px) {
  .m-lg-80 {
    margin: 80px;
  }

  .m-t-lg-80 {
    margin-top: 80px;
  }

  .m-b-lg-80 {
    margin-bottom: 80px;
  }

  .m-r-lg-80 {
    margin-right: 80px;
  }

  .m-l-lg-80 {
    margin-left: 80px;
  }

  .p-lg-80 {
    padding: 80px;
  }

  .p-t-lg-80 {
    padding-top: 80px;
  }

  .p-b-lg-80 {
    padding-bottom: 80px;
  }

  .p-r-lg-80 {
    padding-right: 80px;
  }

  .p-l-lg-80 {
    padding-left: 80px;
  }
}
@media (min-width: 1200px) {
  .m-lg-85 {
    margin: 85px;
  }

  .m-t-lg-85 {
    margin-top: 85px;
  }

  .m-b-lg-85 {
    margin-bottom: 85px;
  }

  .m-r-lg-85 {
    margin-right: 85px;
  }

  .m-l-lg-85 {
    margin-left: 85px;
  }

  .p-lg-85 {
    padding: 85px;
  }

  .p-t-lg-85 {
    padding-top: 85px;
  }

  .p-b-lg-85 {
    padding-bottom: 85px;
  }

  .p-r-lg-85 {
    padding-right: 85px;
  }

  .p-l-lg-85 {
    padding-left: 85px;
  }
}
@media (min-width: 1200px) {
  .m-lg-90 {
    margin: 90px;
  }

  .m-t-lg-90 {
    margin-top: 90px;
  }

  .m-b-lg-90 {
    margin-bottom: 90px;
  }

  .m-r-lg-90 {
    margin-right: 90px;
  }

  .m-l-lg-90 {
    margin-left: 90px;
  }

  .p-lg-90 {
    padding: 90px;
  }

  .p-t-lg-90 {
    padding-top: 90px;
  }

  .p-b-lg-90 {
    padding-bottom: 90px;
  }

  .p-r-lg-90 {
    padding-right: 90px;
  }

  .p-l-lg-90 {
    padding-left: 90px;
  }
}
@media (min-width: 1200px) {
  .m-lg-95 {
    margin: 95px;
  }

  .m-t-lg-95 {
    margin-top: 95px;
  }

  .m-b-lg-95 {
    margin-bottom: 95px;
  }

  .m-r-lg-95 {
    margin-right: 95px;
  }

  .m-l-lg-95 {
    margin-left: 95px;
  }

  .p-lg-95 {
    padding: 95px;
  }

  .p-t-lg-95 {
    padding-top: 95px;
  }

  .p-b-lg-95 {
    padding-bottom: 95px;
  }

  .p-r-lg-95 {
    padding-right: 95px;
  }

  .p-l-lg-95 {
    padding-left: 95px;
  }
}
@media (min-width: 1200px) {
  .m-lg-100 {
    margin: 100px;
  }

  .m-t-lg-100 {
    margin-top: 100px;
  }

  .m-b-lg-100 {
    margin-bottom: 100px;
  }

  .m-r-lg-100 {
    margin-right: 100px;
  }

  .m-l-lg-100 {
    margin-left: 100px;
  }

  .p-lg-100 {
    padding: 100px;
  }

  .p-t-lg-100 {
    padding-top: 100px;
  }

  .p-b-lg-100 {
    padding-bottom: 100px;
  }

  .p-r-lg-100 {
    padding-right: 100px;
  }

  .p-l-lg-100 {
    padding-left: 100px;
  }
}
@media (min-width: 1200px) {
  .m-lg-120 {
    margin: 120px;
  }

  .m-t-lg-120 {
    margin-top: 120px;
  }

  .m-b-lg-120 {
    margin-bottom: 120px;
  }

  .m-r-lg-120 {
    margin-right: 120px;
  }

  .m-l-lg-120 {
    margin-left: 120px;
  }

  .p-lg-120 {
    padding: 120px;
  }

  .p-t-lg-120 {
    padding-top: 120px;
  }

  .p-b-lg-120 {
    padding-bottom: 120px;
  }

  .p-r-lg-120 {
    padding-right: 120px;
  }

  .p-l-lg-120 {
    padding-left: 120px;
  }
}
@media (min-width: 1200px) {
  .m-lg-150 {
    margin: 150px;
  }

  .m-t-lg-150 {
    margin-top: 150px;
  }

  .m-b-lg-150 {
    margin-bottom: 150px;
  }

  .m-r-lg-150 {
    margin-right: 150px;
  }

  .m-l-lg-150 {
    margin-left: 150px;
  }

  .p-lg-150 {
    padding: 150px;
  }

  .p-t-lg-150 {
    padding-top: 150px;
  }

  .p-b-lg-150 {
    padding-bottom: 150px;
  }

  .p-r-lg-150 {
    padding-right: 150px;
  }

  .p-l-lg-150 {
    padding-left: 150px;
  }
}
@media (min-width: 1200px) {
  .m-lg-200 {
    margin: 200px;
  }

  .m-t-lg-200 {
    margin-top: 200px;
  }

  .m-b-lg-200 {
    margin-bottom: 200px;
  }

  .m-r-lg-200 {
    margin-right: 200px;
  }

  .m-l-lg-200 {
    margin-left: 200px;
  }

  .p-lg-200 {
    padding: 200px;
  }

  .p-t-lg-200 {
    padding-top: 200px;
  }

  .p-b-lg-200 {
    padding-bottom: 200px;
  }

  .p-r-lg-200 {
    padding-right: 200px;
  }

  .p-l-lg-200 {
    padding-left: 200px;
  }
}
.item {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.item img {
  height: 245px;
  object-fit: cover;
  width: 100%;
}
.item > a {
  display: block;
  position: relative;
  height: 245px;
  background-size: auto 100%;
  background-position: center center;
  transition: background-size 0.2s ease-in;
  width: 100%;
}
.item > a:hover {
  background-size: auto 103%;
}
.item > a:hover:after {
  display: block;
  background: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.3;
  background: #000 url("/images/icons/find_plus.png") no-repeat center center;
}
.item-content {
  padding: 0 50px;
  color: #bbb5c2;
  height: 90px;
}
.item-content a {
  color: #bbb5c2;
}
.item-content p {
  margin: 0px;
}
.item-content h6 {
  color: #5c5453;
  font-size: 22px;
  margin: 0;
  padding: 30px 0px 15px 0px;
}
.item-icon img {
  width: auto;
  height: 100px;
  object-fit: inherit;
  padding-left: 20px;
}

button {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

/* custom upload*/
.inputfile {
  display: none !important;
}

.custom-file-upload {
  border: 1px solid #462110;
  color: #462110;
  display: inline-block;
  padding: 8px 20px;
  cursor: pointer;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.custom-file-upload:hover {
  color: #fff;
  background: #462110;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group > input,
.form-label-group > label {
  height: 3.125rem;
  padding: 0.75rem;
}

.form-label-group > label {
  position: absolute;
  top: 12px;
  left: 14px;
  display: block;
  width: auto;
  height: 20px;
  padding: 0px 3px;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  background-color: #FFFFFF;
  color: #495057;
  pointer-events: none;
  cursor: text;
  /* Match the input under the label */
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
}

.b0 {
  border: 0px !important;
  outline: none;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
}

.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 14px;
  top: -13px;
}

/* Fallback for Edge
-------------------------------------------------- */
@supports (-ms-ime-align: auto) {
  .form-label-group > label {
    display: none;
  }

  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}
/* Fallback for IE
-------------------------------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form-label-group > label {
    display: none;
  }

  .form-label-group input:-ms-input-placeholder {
    color: #777;
  }
}
.login-form {
  max-width: 40%;
  float: right;
  min-width: 400px;
}
@media screen and (max-width: 768px) {
  .login-form {
    min-width: 300px;
  }
}

.brand-form .form-control {
  padding: 23px 40px;
  border: 1px;
  border-style: solid;
  border-color: #e8e7ee;
  border-radius: 6px;
  color: #bfbcbb;
  background-color: transparent;
}
.brand-form .form-control:focus {
  border-color: #462110 !important;
  outline: 0;
  box-shadow: none;
}
.brand-form .form-label-group > label {
  color: #bfbcbb;
  font-size: 16px;
}

.checkboxless {
  position: relative;
  cursor: pointer;
}
.checkboxless i {
  display: none;
  position: absolute;
  background: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  padding: 2px;
  color: #462110;
  top: 5px;
  right: 5px;
}
.checkboxless input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkboxless input[type=radio]:checked ~ .checkmark {
  color: #462110;
}
.checkboxless input[type=radio]:checked ~ .checkmark i {
  display: block;
}

.arrangements {
  margin-bottom: 15px;
}
.arrangements label {
  height: 25px;
  width: 25px;
  text-align: center;
  margin: 12px 20px 0 0;
}
.arrangements label img {
  height: 100%;
}

.registration label {
  color: #C2C1CB;
}
.registration .form-label-group input:not(:placeholder-shown) ~ label {
  color: #232323;
}

body {
  color: #232323;
  background-color: #fbfbfc;
}

header {
  width: 100%;
  z-index: 2;
}
header .logo {
  color: #fff;
  font-size: 30px;
  margin-top: 5px;
  display: inline-block;
}
header .logo img {
  height: 30px;
}
header .favorites {
  margin-right: 0 !important;
}
header .favorites.show i {
  background: #462110 !important;
  color: #fff !important;
  box-shadow: 0 0 3px #462110;
}
header .favorites .dropdown-toggle {
  border-radius: 100%;
}
header .favorites .dropdown-toggle::after {
  display: none;
}
header .favorites .dropdown-toggle i {
  background: #e9ded4;
  padding: 12px;
  border-radius: 100%;
  color: #462110;
  cursor: pointer;
}
header .favorites .dropdown-menu {
  width: 350px;
  margin-left: -130px;
}
header .favorites .dropdown-menu::after {
  left: 139px;
}
header .favorites .dropdown-menu::before {
  left: 140px;
}
header .favorites .dropdown-menu .thumb {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center center;
}
header .dropdown-menu {
  margin-top: 16px;
  border: 1px solid #e8e7ee;
  box-shadow: 0 0 5px #CCC9C9;
}
header .dropdown-menu::after {
  position: absolute;
  content: " ";
  top: -13px;
  left: 79px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 11px 14px 11px;
  border-color: transparent transparent #e8e7ee transparent;
  z-index: 1;
}
header .dropdown-menu::before {
  position: absolute;
  content: " ";
  top: -12px;
  left: 80px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 13px 10px;
  border-color: transparent transparent #ffffff transparent;
  z-index: 2;
}
header .menu a, header .menu .dropdown {
  color: #9e9998;
  font-size: 16px;
  padding: 5px 0;
  margin: 0px 10px;
  display: inline-block;
}
header .menu a button, header .menu .dropdown button {
  display: block;
  background-color: #e9ded4;
  color: #462110;
  padding: 10px 25px;
  margin-right: 0px;
  box-shadow: none;
}
header .menu a.login, header .menu .dropdown.login {
  background-color: #e9ded4;
  color: #f94a3d;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  padding: 15px 40px;
  margin-right: 0px;
}
header .menu a.login img, header .menu .dropdown.login img {
  margin-left: 11px;
  margin-top: -2px;
}
header .menu a.show button, header .menu .dropdown.show button {
  background-color: #462110;
  color: #fff;
  box-shadow: 0 0 3px #462110;
}
header .menu_mobile {
  display: none;
}
header .change_lang {
  padding: 0 !important;
  margin: 0 !important;
}
header .change_lang > div {
  min-width: auto;
}
header .change_lang a {
  margin: 0 !important;
}
header .cart {
  display: inline-block;
  color: #462110 !important;
  padding: 8px !important;
  margin: 0 0 0 5px !important;
}

.footer form {
  max-width: 350px;
  outline: none;
  overflow: hidden;
}
.footer form button {
  position: relative;
  float: right;
  outline: none;
  border: 1px solid #e9ded4;
  padding: 0 20px;
  height: 60px;
  line-height: 60px;
  margin-left: -5px;
  background: #e9ded4;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.footer form input {
  outline: none;
  border: none;
  background: transparent;
  height: 100%;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  display: inline-block;
  width: calc(100% - 60px);
  height: 60px;
  line-height: 60px;
  padding: 0 5px 0 20px;
  color: #bbb5c2;
}
.footer .footer-line {
  margin-top: 50px;
  margin-bottom: 30px;
  background: #e5e5e5;
  height: 1px;
  width: 100%;
}
.footer .footer-menu {
  list-style: none;
}
.footer .footer-menu a {
  color: #6d6160;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 10px;
}
.footer .footer-bottom {
  padding-bottom: 40px;
}
.footer .footer-bottom span {
  color: #bbb5c2;
}
.footer .footer-bottom a {
  text-decoration: none;
  color: #bbb5c2;
  margin-right: 50px;
}
.footer .footer-bottom a i {
  margin-right: 10px;
}

#breadcrumb {
  margin: 20px 0;
  overflow: hidden;
}
#breadcrumb a {
  color: #232323;
}
#breadcrumb a:hover {
  color: #462110;
}
#breadcrumb i {
  color: #232323;
  margin: 0 10px;
}

.nav-tabs a {
  color: #232323;
}
.nav-tabs .nav-link.active {
  color: #462110;
}

.alert ul {
  margin-bottom: 0;
}

.orders_calendar {
  border: 1px solid #dedede;
  padding-top: 30px;
}
.orders_calendar > div {
  margin: 0;
}
.orders_calendar > div > div {
  border-collapse: collapse;
  padding: 0;
}
.orders_calendar > div .offers {
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  text-indent: 5px;
  line-height: 50px;
}
.orders_calendar > div .days {
  border: 1px solid #dedede;
  border-left: none;
  position: relative;
  text-indent: 3px;
  width: 10%;
  float: left;
  height: 100%;
}
.orders_calendar > div .days .month {
  position: absolute;
  height: 30px;
  top: -30px;
  left: -1px;
  border-left: 1px solid #dedede;
}
.orders_calendar .orders > div {
  height: 50px;
}
.orders_calendar .orders .days {
  font-size: 12px;
  border-left: none;
  border-top: none;
}
.orders_calendar .orders .order {
  height: 20px;
  position: absolute;
  z-index: 2;
  margin-left: 2%;
  left: 0;
}
.orders_calendar .orders .order_1 {
  bottom: 2px;
}
.orders_calendar .orders .order_2 {
  top: 2px;
}
.orders_calendar .orders .paid_0 {
  border: 1px solid #dc3545;
  color: #dc3545;
  background: rgba(220, 53, 69, 0.2);
}
.orders_calendar .orders .paid_1 {
  border: 1px solid #28a745;
  color: #28a745;
  background: rgba(40, 167, 69, 0.2);
}

.navbar-nav .nav-item {
  width: 100px;
  text-align: center;
  font-size: 18px;
}
.navbar-nav .active {
  background-color: transparent;
}
.navbar-nav .active a {
  font-weight: bold;
}

a {
  text-decoration: none !important;
}

.socials-login-container {
  font-size: 12px;
}
.socials-login-container .btn {
  padding: 12px 28px;
  font-size: 12px;
}

select {
  display: block;
  /*margin-bottom: 20px;*/
  border: 1px solid #ced4da;
  padding: 12px 12px;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 6px;
  background-color: #fff;
  background-image: url("/images/arrow.png");
  background-repeat: no-repeat;
  background-position: right 6px center;
  width: 100%;
  outline: none !important;
  color: #232323;
}
select.is-invalid {
  border-color: #dc3545 !important;
}

input, textarea {
  color: #232323;
}

.page-title {
  font-size: 24px;
  color: #4a4544;
  margin-bottom: 0px;
  font-weight: bold;
  height: 43px;
  line-height: 43px;
}

.filter-page .page-title {
  color: #bbb5c2;
  font-size: 16px;
}

.heder-headline {
  -webkit-box-shadow: 0px 9px 10px 0px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 9px 10px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 9px 10px 0px rgba(0, 0, 0, 0.13);
}

h4.filter {
  color: #4a4544;
  font-size: 22px;
  margin-bottom: 32px;
}

.sort {
  color: #ccc8d1;
  width: 250px;
}
.sort select#sort_by {
  display: inline-block;
  max-width: 120px;
  color: #565150;
  outline: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-position: right 5px top 15px;
  color: #232323;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.sort select#sort_by:focus {
  border: none;
  box-shadow: 0 0 0 #CCC9C9;
  background-color: #fbfbfc;
}
.sort select#sort_by option {
  background: #fff;
  border: 1px solid red;
  outline: 0px;
  color: #232323;
}

.filter-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}
.filter-container label {
  font-size: 16px;
  color: #bbb5c2;
  margin-bottom: 10px;
  display: block;
}

.hero {
  background-image: url("../images/brand.jpg");
  background-repeat: no-repeat;
  background-position: top left;
  min-height: 60vh;
  background-size: auto 100%;
}
.hero:after {
  content: "Under Construction";
  position: absolute;
  top: 200px;
  left: 190px;
  color: #ffffff;
  transform: rotate(-16deg);
  text-shadow: 0 0 10px #868686;
  font-size: 38px;
}

.line {
  background: #ebeaef;
  width: 1px;
  margin: 0px 25px;
  height: 100%;
  min-height: 50px;
}

.height-50 {
  line-height: 57px;
  height: 50px;
}

/* @import "homepage"; */
.visible-xs-block,
.visible-xs {
  display: none;
}

@media screen and (max-width: 1450px) {
  .hero {
    min-height: 50vh;
  }
}
@media screen and (max-width: 992px) {
  body .hidden-xs {
    display: none !important;
  }

  body .visible-xs {
    display: inline-block;
  }

  body .visible-xs-block {
    display: block;
  }

  header {
    position: absolute;
  }

  .home-desc {
    color: #fff;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0px;
  }

  .hero {
    height: 260px;
    min-height: 260px;
    padding-top: 20px !important;
  }

  .home-form-container {
    margin-top: 52px;
    margin-bottom: 0px;
  }
  .home-form-container .height-50 {
    line-height: 46px;
    height: 35px;
    width: 100%;
  }
  .home-form-container form {
    padding: 5px 20px;
    border-radius: 22px;
  }
  .home-form-container input {
    height: 35px;
    float: left;
  }
  .home-form-container i {
    margin-top: 4px;
    float: right;
    font-size: 25px;
  }

  .logo-mobile {
    width: 35px;
    margin: 0px auto;
  }
  .logo-mobile img {
    width: 100%;
  }

  header .menu a.login {
    float: left;
    padding: 5px 8px;
    position: relative;
    top: -39px;
  }
  header .menu a.login img {
    margin: 0px;
  }

  .headline-home {
    color: #fff;
    text-align: center;
    padding-top: 70px;
    font-size: 30px;
  }

  .categories .col-lg-4 {
    margin-bottom: 20px;
  }
  .categories .col-lg-4 img {
    width: 40%;
    height: 140px;
    float: left;
  }
  .categories .col-lg-4 .item-content {
    padding: 10px 20px;
    float: left;
    width: 60%;
  }
  .categories .col-lg-4 .item-content * {
    width: 100% !important;
  }
  .categories .col-lg-4 .item-content h6 {
    font-size: 20px;
    padding-bottom: 5px;
  }

  .home-works .item {
    text-align: center;
  }

  .footer-menu {
    margin: 15px 0px;
    padding: 0px 10px;
  }

  .footer .footer-bottom span,
.footer .footer-bottom a {
    display: block;
    text-align: center;
    margin: 2px 0px;
    float: none !important;
  }
}
/* mobile */
@media screen and (max-width: 700px) {
  #header {
    height: 80px;
  }

  .logo {
    position: absolute;
    top: 10px;
    left: calc(50% - 15px);
  }

  .menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .menu > .menu_items {
    display: none !important;
  }
  .menu > i {
    margin: 10px 0 0 20px;
  }
  .menu .login {
    position: absolute !important;
    top: 10px !important;
    right: 20px;
  }

  .menu_mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    padding-right: 40px;
    background: rgba(0, 0, 0, 0.75);
    height: 100%;
    width: 100%;
    z-index: 999;
  }
  .menu_mobile .menu_items {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 40px;
    height: 100%;
    width: 90%;
    background: #ffffff;
  }
  .menu_mobile .menu_items > i {
    position: absolute;
    right: 20px;
    top: 20px;
  }
  .menu_mobile .menu_items h3 {
    margin-left: 40px;
  }
  .menu_mobile .menu_items a {
    display: block;
    padding: 15px 0 10px 30px;
    margin: 0 30px 0 0;
  }
  .menu_mobile .menu_items a:hover {
    background: #e9ded4;
    color: #462110;
  }
  .menu_mobile .change_lang {
    position: fixed;
    bottom: 20px;
    left: 30px;
  }

  .search_box {
    margin: 80px auto 15px auto;
    width: 95%;
    overflow: hidden;
  }
  .search_box #search_form > div {
    padding: 0;
  }
  .search_box #search_form > div input {
    width: 100%;
  }
  .search_box #search_form button {
    margin: 0 auto;
  }

  .home-page .hero {
    background-image: url("../images/brand_mobile.jpg");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 180px;
  }
  .home-page .search_box {
    margin: 17px auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px #CCC9C9;
  }
  .home-page .categories {
    margin-top: 100px;
  }
  .home-page .item {
    text-align: center;
  }

  .text_main {
    padding-top: 20px;
  }

  .auth_user {
    float: right;
    padding-right: 0 !important;
  }
  .auth_user button {
    padding: 7px !important;
  }

  /* offer details */
  .slider #main_img {
    height: 300px !important;
  }
  .slider .slider-active {
    width: 100% !important;
  }
}
button, a {
  outline: none;
}

.hotel {
  border-radius: 10px;
  overflow: hidden;
}
.hotel img {
  width: 100%;
  object-fit: cover;
  height: 200px;
}
.hotel-content {
  background-color: #fff;
  padding: 20px 35px;
  display: block;
}
.hotel-content button {
  color: #462110;
  border: 1px solid #462110;
  padding: 16px 0px;
  text-align: center;
  width: 80%;
  margin-left: 10%;
  border-radius: 26px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.hotel-content button:hover {
  background-color: #462110;
  color: #fff;
}
.hotel-content .favorite {
  margin-top: 10px;
  width: 30px;
  height: 30px;
  line-height: 32px;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #e9ded4;
}
.hotel-content .favorite i {
  color: #462110;
}
.hotel-content .favorite:hover {
  background: #462110;
}
.hotel-content .favorite:hover i {
  color: #e9ded4;
}
.hotel-content .favorite_active {
  background: #462110;
}
.hotel-content .favorite_active i {
  color: #e9ded4;
}
.hotel-content .capacity {
  color: #5e5c71;
  display: block;
  margin-bottom: 20px;
  margin-top: 15px;
}
.hotel-content .capacity i {
  margin: 3px 10px 0 0;
  width: 20px;
  height: 20px;
  float: left;
}
.hotel-content p {
  color: #5e5c71;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.hotel-content .price {
  color: #bebbce;
  margin: 0px;
}
.hotel-content .price span {
  font-size: 20px;
  position: relative;
}

.separator {
  background-color: #e8e7ee;
  width: 2px;
  height: 50px;
  margin-left: 30px;
  margin-right: 30px;
  position: relative;
  top: 3px;
}

.single-room h1 {
  color: #4a4544;
  font-size: 30px;
  margin-bottom: 0px;
}
.single-room .cat {
  border: 0px;
  font-size: 14px;
  background-color: #f1f1f1;
  border-radius: 24px;
  color: #4a4544;
  padding: 11px 27px;
  margin-right: 15px;
}
.single-room .fa-star {
  color: #f94a3d;
  margin-right: 5px;
}
.single-room .dollar,
.single-room .price-text,
.single-room .price {
  color: #5e5c71;
}
.single-room .dollar {
  position: relative;
  top: -8px;
  font-size: 12px;
  font-weight: 900;
}
.single-room .persons {
  color: black;
  margin-top: 6px;
}
.single-room .room-text {
  color: #bebbce;
}
.single-room h3 {
  color: #4a4544;
  font-size: 22px;
}
.single-room .features-list {
  color: #4a4544;
  vertical-align: top;
}
.single-room .features-list .icon_desc {
  display: inline-block;
  vertical-align: top;
}
.single-room .features-list .icon_desc .small {
  display: inline-block;
  clear: both;
}
.single-room .features-list input[type=number] {
  width: 60px;
  color: #232323;
  padding: 3px;
  border: 1px solid #dedede;
  border-radius: 4px;
}
.single-room .single-review p {
  margin: 10px 0px 0px 20px;
}
.single-room .single-review .author {
  color: #4a4544;
  padding-right: 10px;
}
.single-room .single-review .time {
  font-size: 14px;
  color: #bebbce;
}
.single-room .stars {
  margin-top: 10px;
}
.single-room .fa-star-half {
  color: #f4e0df;
}
.single-room .order_days {
  display: block;
  color: #232323;
}

.slider .slider-active {
  width: calc(80% - 10px);
  margin-right: 10px;
  float: left;
  position: relative;
}
.slider .slider-active #main_img {
  width: 100%;
  height: 600px;
  background-position: center center;
  background-size: cover;
}
.slider .slider-active img {
  width: 100%;
  object-fit: cover;
  height: 600px;
}
.slider .slider-thumbs {
  width: 20%;
  float: left;
  overflow: hidden;
  height: 600px;
  position: relative;
}
.slider .slider-thumbs .more_images {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 143px;
  text-align: center;
  padding-top: 40px;
  background: #000;
  opacity: 0.6;
  line-height: 35px;
  color: #fff;
  cursor: pointer;
}
.slider .slider-thumbs a {
  display: block;
  margin-bottom: 10px;
}
.slider .slider-thumbs a:last-child {
  margin-bottom: 0px;
}
.slider .slider-thumbs img {
  width: 100%;
  height: 143px;
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}
.slider .slider-thumbs img:last-child {
  margin-bottom: 0px;
}
.slider .loading {
  display: none;
  background: #fff;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}

.my-offers .slider-thumbs {
  height: 430px !important;
  overflow-y: auto;
}
.my-offers .slider-thumbs div {
  position: relative;
}
.my-offers .slider-thumbs div .delete_image {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  padding: 2px 4px;
}
.my-offers .slider-thumbs img {
  height: 100px;
}
.my-offers #main_img {
  height: 430px !important;
}
.my-offers #main_img .set_main_img {
  background: #fff;
  padding: 4px 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0.8;
  border-radius: 25px;
  cursor: pointer;
}
.my-offers #main_img .set_main_img:hover {
  opacity: 1;
}

.room-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 6px;
}
.room-content .days a {
  display: block;
  color: #232323;
}
.room-content .day-active {
  background: #462110;
  border-color: #462110 !important;
  color: #fff;
}
.room-content .day-active a {
  color: #fff;
}

.room-sidebar input[type=text] {
  display: block;
  margin-bottom: 20px;
  border: 1px solid #e8e7ee;
  padding: 15px 27px;
  color: #b4b3bd;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 6px;
  background-color: #fff;
  width: 100%;
  outline: none !important;
}
.room-sidebar p {
  color: #bbb5c2;
}
.room-sidebar select {
  display: block;
  margin-bottom: 20px;
  border: 1px solid #e8e7ee;
  padding: 15px 27px;
  color: #b4b3bd;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 6px;
  background-color: #fff;
  background-image: url("/images/arrow.png");
  background-repeat: no-repeat;
  background-position: right 20px top 22px;
  width: 100%;
  outline: none !important;
}
.room-sidebar label {
  display: block;
  margin-bottom: 20px;
  color: #4a4544;
  font-weight: bold;
  cursor: pointer;
}
.room-sidebar label input {
  margin-right: 20px;
}
.room-sidebar button {
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  width: 100%;
  outline: none;
  border: 0px;
}
.room-sidebar .guests div span {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
}
.room-sidebar .guests div span:nth-child(1) {
  cursor: pointer;
  background-color: #f1f1f1;
  border-radius: 50%;
  color: #5a5655;
}
.room-sidebar .guests div span:nth-child(3) {
  background-color: #faedeb;
  color: #462110;
  cursor: pointer;
  border-radius: 50%;
}
.room-sidebar .guests div input[type=text] {
  display: inline-block;
  height: 30px;
  width: 60px !important;
  line-height: 30px;
  text-align: center !important;
  padding: 0;
  border: none;
}

.search_bar .icon, .filter-container .icon {
  float: left;
  margin-top: 10px;
}
.search_bar input, .search_bar select, .filter-container input, .filter-container select {
  float: left;
  border: none;
  color: #C2C1CB;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  outline: none !important;
  width: auto;
}
.search_bar input, .filter-container input {
  height: 50px;
  line-height: 50px;
}
.search_bar input::placeholder, .filter-container input::placeholder {
  opacity: 0.5;
}
.search_bar select, .filter-container select {
  margin-bottom: 20px;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  border-radius: 6px;
  background-color: #fff;
  background-image: url("/images/arrow.png");
  background-repeat: no-repeat;
  background-position: right 5px top 20px;
}

.home-page .search_bar {
  box-shadow: 0 0 5px #CCC9C9;
}

.room-contact button {
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #f94a3d;
  width: 100%;
  outline: none;
  background-color: #fff;
  border: 1px solid #f94a3d;
}

.orders order {
  border-bottom: 1px solid #C2C1CB;
}
.orders p {
  margin-bottom: 7px;
}

.add-offer {
  padding: 30px;
}
.add-offer .item:hover {
  box-shadow: 0 0 5px #CCC9C9;
}
.add-offer .item:hover .item-title {
  color: #462110;
}
.add-offer .item .item-content {
  height: 80px;
  padding: 0;
  text-align: center;
}
.add-offer .item img {
  height: 140px;
}
.add-offer input[type=text] {
  height: 45px;
  line-height: 45px;
}

.modal-content .modal-title {
  color: #4a4544;
  font-size: 22px;
}

.icon {
  width: 27px;
  height: 27px;
  background-size: contain;
  display: inline-block;
  position: relative;
  background-repeat: no-repeat;
}

.icon-board {
  background-image: url("/images/icons/board.svg");
}

.icon-calendar {
  background-image: url("/images/icons/calendar.svg");
}

.icon-capacity {
  background-image: url("/images/icons/capacity.svg");
}

.icon-cbreak-cookies {
  background-image: url("/images/icons/cbreak_cookies.svg");
}

.icon-cbreak-sandwich {
  background-image: url("/images/icons/cbreak_sandwich.svg");
}

.icon-checked {
  background-image: url("/images/icons/checked.svg");
}

.icon-city {
  background-image: url("/images/icons/city.svg");
}

.icon-coffee {
  background-image: url("/images/icons/coffee.svg");
}

.icon-drop {
  background-image: url("/images/icons/drop.svg");
}

.icon-favorite {
  background-image: url("/images/icons/favorite.svg");
}

.icon-find-plus.png {
  background-image: url("/images/icons/find_plus.png.svg");
}

.icon-headphone {
  background-image: url("/images/icons/headphone.svg");
}

.icon-interpretation-booth {
  background-image: url("/images/icons/interpretation_booth.svg");
}

.icon-interpreter {
  background-image: url("/images/icons/interpreter.svg");
}

.icon-laptop {
  background-image: url("/images/icons/laptop.svg");
}

.icon-lunch-buffet {
  background-image: url("/images/icons/lunch_buffet.svg");
}

.icon-lunch-diverse {
  background-image: url("/images/icons/lunch_diverse.svg");
}

.icon-lunch-light {
  background-image: url("/images/icons/lunch_light.svg");
}

.icon-map {
  background-image: url("/images/icons/map.svg");
}

.icon-mic {
  background-image: url("/images/icons/mic.svg");
}

.icon-mic-wearable {
  background-image: url("/images/icons/mic_wearable.svg");
}

.icon-mic-wifi {
  background-image: url("/images/icons/mic_wifi.svg");
}

.icon-notebook {
  background-image: url("/images/icons/notebook.svg");
}

.icon-parking {
  background-image: url("/images/icons/parking.svg");
}

.icon-pen {
  background-image: url("/images/icons/pen.svg");
}

.icon-pencil {
  background-image: url("/images/icons/pencil.svg");
}

.icon-pin {
  background-image: url("/images/icons/pin.svg");
}

.icon-podium {
  background-image: url("/images/icons/podium.svg");
}

.icon-profile {
  background-image: url("/images/icons/profile.svg");
}

.icon-projector {
  background-image: url("/images/icons/projector.svg");
}

.icon-review {
  background-image: url("/images/icons/review.svg");
}

.icon-search {
  background-image: url("/images/icons/search.svg");
}

.icon-send.png {
  background-image: url("/images/icons/send.png.svg");
}

.icon-tv {
  background-image: url("/images/icons/tv.svg");
}

.icon-wifi {
  background-image: url("/images/icons/wifi.svg");
}

.icon-water {
  background-image: url("/images/icons/water.svg");
}

.clearfix-10 {
  clear: both;
  overflow: hidden;
  height: 10px;
}

.clearfix-20 {
  clear: both;
  overflow: hidden;
  height: 20px;
}

.errors, .ok_message {
  display: none;
}

.fa-trash,
.fa-trash-alt {
  cursor: pointer;
  display: inline-block;
  color: #de495b;
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
.disabled:hover {
  pointer-events: none !important;
}

.fa-check {
  color: #2bb673;
}

.fa-ban {
  color: #de495b;
}

.btn-success .fa {
  color: #fff;
}

.pointer {
  cursor: pointer;
}

.disable_text_select {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -o-user-select: none;
}

.text_main {
  position: relative;
  border: 1px solid transparent;
}
.text_main .edit_text {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 10px;
  background: #fff;
  box-shadow: 0 0 5px #CCC9C9;
  z-index: 999;
}
.text_main .edit_text i {
  color: #462110 !important;
}

.mobile {
  display: none !important;
}

@media (max-width: 700px) {
  .no_mobile {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }
}
.ui-datepicker {
  z-index: 9999 !important;
}

@media print {
  .page-break {
    display: block;
    page-break-before: always;
  }

  @page {
    size: auto;
    margin: 0;
  }
  body {
    margin: 0px 1cm;
    background: #fff;
  }

  .noprint {
    display: none !important;
  }
}
/* Date Picker Default Styles */
/* colors */
/* borders */
/* window width */
/* sizes */
.ui-datepicker {
  padding: 0;
  border: 1px solid #e8e7ee;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  box-shadow: 0 0 10px #CCC9C9;
}
.ui-datepicker:before {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
}
.ui-datepicker * {
  padding: 0;
  font-family: "Open Sans", sans-serif;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ui-datepicker table {
  font-size: 13px;
  margin: 0;
}
.ui-datepicker .ui-datepicker-header {
  border: none;
  background: transparent;
  color: #232323;
  font-weight: normal;
}
.ui-datepicker .ui-datepicker-header .ui-state-hover {
  background: transparent;
  border-color: transparent;
  color: #462110;
  cursor: pointer;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ui-datepicker thead {
  background: transparent;
  color: #232323;
}
.ui-datepicker .ui-datepicker-title {
  margin-top: 0.4em;
  margin-bottom: 0.3em;
  color: #232323;
  font-size: 14px;
}
.ui-datepicker .ui-datepicker-next-hover:before,
.ui-datepicker .ui-datepicker-next:before {
  content: "";
}
.ui-datepicker .ui-datepicker-prev-hover:before,
.ui-datepicker .ui-datepicker-prev:before {
  content: "";
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  height: 1em;
  top: 0.9em;
  border: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.ui-datepicker .ui-datepicker-prev-hover:before,
.ui-datepicker .ui-datepicker-next-hover:before,
.ui-datepicker .ui-datepicker-next:before,
.ui-datepicker .ui-datepicker-prev:before {
  background: #f5f7f6;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: block;
  hidth: 25px;
  line-hidth: 25px;
  width: 25px;
  text-align: center;
}
.ui-datepicker .ui-datepicker-prev-hover:hover:before,
.ui-datepicker .ui-datepicker-next-hover:hover:before,
.ui-datepicker .ui-datepicker-next:hover:before,
.ui-datepicker .ui-datepicker-prev:hover:before {
  background: #e9ded4;
  color: #462110;
}
.ui-datepicker .ui-datepicker-prev-hover > span,
.ui-datepicker .ui-datepicker-next-hover > span,
.ui-datepicker .ui-datepicker-next > span,
.ui-datepicker .ui-datepicker-prev > span {
  background: none !important;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 2px;
}
.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  background-image: url("data:image/png;base64,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");
  background-position: -32px 0;
  margin-top: 0;
  top: 0;
  font-weight: normal;
}
.ui-datepicker .ui-datepicker-prev span {
  background-position: -96px 0;
}
.ui-datepicker th {
  padding: 0.75em 0;
  color: #232323;
  font-weight: normal;
  border: none;
}
.ui-datepicker th * {
  color: #232323 !important;
}
.ui-datepicker td {
  background: transparent;
  border: none;
  padding: 0;
}
.ui-datepicker td .ui-state-default {
  background: transparent;
  border: none;
  text-align: center;
  padding: 0.5em;
  margin: 0;
  font-weight: normal;
  color: #232323;
}
.ui-datepicker td .ui-state-active,
.ui-datepicker td .ui-state-hover {
  color: #462110;
}
.ui-datepicker td.ui-state-disabled,
.ui-datepicker td.ui-state-disabled .ui-state-default {
  opacity: 0.6;
  color: #232323;
}

.ui-timepicker-div .ui-widget-header {
  margin-bottom: 8px;
}
.ui-timepicker-div dl {
  text-align: left;
}
.ui-timepicker-div dl dt {
  float: left;
  clear: left;
  padding: 0 0 0 5px;
}
.ui-timepicker-div dl dd {
  margin: 0 10px 10px 40%;
}
.ui-timepicker-div td {
  font-size: 90%;
}

.ui-tpicker-grid-label {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

.ui-timepicker-div .ui_tpicker_unit_hide {
  display: none;
}
.ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input {
  background: none;
  color: inherit;
  border: none;
  outline: none;
  border-bottom: solid 1px #555;
  width: 95%;
}
.ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input:focus {
  border-bottom-color: #aaa;
}

.ui-timepicker-rtl {
  direction: rtl;
}
.ui-timepicker-rtl dl {
  text-align: right;
  padding: 0 5px 0 0;
}
.ui-timepicker-rtl dl dt {
  float: right;
  clear: right;
}
.ui-timepicker-rtl dl dd {
  margin: 0 40% 10px 10px;
}

/* Shortened version style */
.ui-timepicker-div.ui-timepicker-oneLine {
  padding-right: 10px;
  padding-top: 10px;
}
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time, .ui-timepicker-div.ui-timepicker-oneLine dt {
  display: none;
}
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time_label {
  display: block;
  padding-top: 2px;
}
.ui-timepicker-div.ui-timepicker-oneLine dl {
  text-align: right;
}
.ui-timepicker-div.ui-timepicker-oneLine dl dd {
  display: inline-block;
  margin: 0;
}
.ui-timepicker-div.ui-timepicker-oneLine dl dd > div {
  display: inline-block;
  margin: 0;
}
.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_minute:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_second:before {
  content: ":";
  display: inline-block;
}
.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_millisec:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_microsec:before {
  content: ".";
  display: inline-block;
}
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide {
  display: none;
}
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide:before {
  display: none;
}

.is-invalid {
  background: #f8d7da;
}

.is-ok {
  background: #d4edda;
}

.hide {
  display: none;
}

.form-check-input:disabled ~ .form-check-label {
  color: inherit;
}

.progress-bar {
  background: #C2C1CB;
  height: 5px;
}

.progress-bar .progress {
  background: green;
}

/*# sourceMappingURL=style.css.map */
