@charset "UTF-8";
:root{
  --bs-blue:#0d6efd;
  --bs-indigo:#6610f2;
  --bs-purple:#6f42c1;
  --bs-pink:#d63384;
  --bs-red:#dc3545;
  --bs-orange:#fd7e14;
  --bs-yellow:#ffc107;
  --bs-green:#198754;
  --bs-teal:#20c997;
  --bs-cyan:#0dcaf0;
  --bs-white:#fff;
  --bs-gray:#6c757d;
  --bs-gray-dark:#343a40;
  --bs-gray-100:#f8f9fa;
  --bs-gray-200:#e9ecef;
  --bs-gray-300:#dee2e6;
  --bs-gray-400:#ced4da;
  --bs-gray-500:#adb5bd;
  --bs-gray-600:#6c757d;
  --bs-gray-700:#495057;
  --bs-gray-800:#343a40;
  --bs-gray-900:#212529;
  --bs-primary:#0d6efd;
  --bs-secondary:#6c757d;
  --bs-success:#198754;
  --bs-info:#0dcaf0;
  --bs-warning:#ffc107;
  --bs-danger:#dc3545;
  --bs-light:#f8f9fa;
  --bs-dark:#212529;
  --bs-primary-rgb:13, 110, 253;
  --bs-secondary-rgb:108, 117, 125;
  --bs-success-rgb:25, 135, 84;
  --bs-info-rgb:13, 202, 240;
  --bs-warning-rgb:255, 193, 7;
  --bs-danger-rgb:220, 53, 69;
  --bs-light-rgb:248, 249, 250;
  --bs-dark-rgb:33, 37, 41;
  --bs-white-rgb:255, 255, 255;
  --bs-black-rgb:0, 0, 0;
  --bs-body-color-rgb:33, 37, 41;
  --bs-body-bg-rgb:255, 255, 255;
  --bs-font-sans-serif:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family:var(--bs-font-sans-serif);
  --bs-body-font-size:1rem;
  --bs-body-font-weight:400;
  --bs-body-line-height:1.5;
  --bs-body-color:#212529;
  --bs-body-bg:#fff;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm{
  width:100%;
  padding-right:var(--bs-gutter-x, 0.75rem);
  padding-left:var(--bs-gutter-x, 0.75rem);
  margin-right:auto;
  margin-left:auto;
}

@media (min-width: 576px){
  .container-sm, .container{
    max-width:540px;
  }
}
@media (min-width: 768px){
  .container-md, .container-sm, .container{
    max-width:720px;
  }
}
@media (min-width: 992px){
  .container-lg, .container-md, .container-sm, .container{
    max-width:960px;
  }
}
@media (min-width: 1200px){
  .container-xl, .container-lg, .container-md, .container-sm, .container{
    max-width:1140px;
  }
}
@media (min-width: 1400px){
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container{
    max-width:1320px;
  }
}
.row{
  --bs-gutter-x:1.5rem;
  --bs-gutter-y:0;
  display:flex;
  flex-wrap:wrap;
  margin-top:calc(-1 * var(--bs-gutter-y));
  margin-right:calc(-0.5 * var(--bs-gutter-x));
  margin-left:calc(-0.5 * var(--bs-gutter-x));
}
.row > *{
  box-sizing:border-box;
  flex-shrink:0;
  width:100%;
  max-width:100%;
  padding-right:calc(var(--bs-gutter-x) * 0.5);
  padding-left:calc(var(--bs-gutter-x) * 0.5);
  margin-top:var(--bs-gutter-y);
}

.col{
  flex:1 0 0%;
}

.row-cols-auto > *{
  flex:0 0 auto;
  width:auto;
}

.row-cols-1 > *{
  flex:0 0 auto;
  width:100%;
}

.row-cols-2 > *{
  flex:0 0 auto;
  width:50%;
}

.row-cols-3 > *{
  flex:0 0 auto;
  width:33.3333333333%;
}

.row-cols-4 > *{
  flex:0 0 auto;
  width:25%;
}

.row-cols-5 > *{
  flex:0 0 auto;
  width:20%;
}

.row-cols-6 > *{
  flex:0 0 auto;
  width:16.6666666667%;
}

.col-auto{
  flex:0 0 auto;
  width:auto;
}

.col-1{
  flex:0 0 auto;
  width:8.33333333%;
}

.col-2{
  flex:0 0 auto;
  width:16.66666667%;
}

.col-3{
  flex:0 0 auto;
  width:25%;
}

.col-4{
  flex:0 0 auto;
  width:33.33333333%;
}

.col-5{
  flex:0 0 auto;
  width:41.66666667%;
}

.col-6{
  flex:0 0 auto;
  width:50%;
}

.col-7{
  flex:0 0 auto;
  width:58.33333333%;
}

.col-8{
  flex:0 0 auto;
  width:66.66666667%;
}

.col-9{
  flex:0 0 auto;
  width:75%;
}

.col-10{
  flex:0 0 auto;
  width:83.33333333%;
}

.col-11{
  flex:0 0 auto;
  width:91.66666667%;
}

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

.offset-1{
  margin-left:8.33333333%;
}

.offset-2{
  margin-left:16.66666667%;
}

.offset-3{
  margin-left:25%;
}

.offset-4{
  margin-left:33.33333333%;
}

.offset-5{
  margin-left:41.66666667%;
}

.offset-6{
  margin-left:50%;
}

.offset-7{
  margin-left:58.33333333%;
}

.offset-8{
  margin-left:66.66666667%;
}

.offset-9{
  margin-left:75%;
}

.offset-10{
  margin-left:83.33333333%;
}

.offset-11{
  margin-left:91.66666667%;
}

.g-0,
.gx-0{
  --bs-gutter-x:0;
}

.g-0,
.gy-0{
  --bs-gutter-y:0;
}

.g-1,
.gx-1{
  --bs-gutter-x:0.25rem;
}

.g-1,
.gy-1{
  --bs-gutter-y:0.25rem;
}

.g-2,
.gx-2{
  --bs-gutter-x:0.5rem;
}

.g-2,
.gy-2{
  --bs-gutter-y:0.5rem;
}

.g-3,
.gx-3{
  --bs-gutter-x:1rem;
}

.g-3,
.gy-3{
  --bs-gutter-y:1rem;
}

.g-4,
.gx-4{
  --bs-gutter-x:1.5rem;
}

.g-4,
.gy-4{
  --bs-gutter-y:1.5rem;
}

.g-5,
.gx-5{
  --bs-gutter-x:3rem;
}

.g-5,
.gy-5{
  --bs-gutter-y:3rem;
}

@media (min-width: 576px){
  .col-sm{
    flex:1 0 0%;
  }

  .row-cols-sm-auto > *{
    flex:0 0 auto;
    width:auto;
  }

  .row-cols-sm-1 > *{
    flex:0 0 auto;
    width:100%;
  }

  .row-cols-sm-2 > *{
    flex:0 0 auto;
    width:50%;
  }

  .row-cols-sm-3 > *{
    flex:0 0 auto;
    width:33.3333333333%;
  }

  .row-cols-sm-4 > *{
    flex:0 0 auto;
    width:25%;
  }

  .row-cols-sm-5 > *{
    flex:0 0 auto;
    width:20%;
  }

  .row-cols-sm-6 > *{
    flex:0 0 auto;
    width:16.6666666667%;
  }

  .col-sm-auto{
    flex:0 0 auto;
    width:auto;
  }

  .col-sm-1{
    flex:0 0 auto;
    width:8.33333333%;
  }

  .col-sm-2{
    flex:0 0 auto;
    width:16.66666667%;
  }

  .col-sm-3{
    flex:0 0 auto;
    width:25%;
  }

  .col-sm-4{
    flex:0 0 auto;
    width:33.33333333%;
  }

  .col-sm-5{
    flex:0 0 auto;
    width:41.66666667%;
  }

  .col-sm-6{
    flex:0 0 auto;
    width:50%;
  }

  .col-sm-7{
    flex:0 0 auto;
    width:58.33333333%;
  }

  .col-sm-8{
    flex:0 0 auto;
    width:66.66666667%;
  }

  .col-sm-9{
    flex:0 0 auto;
    width:75%;
  }

  .col-sm-10{
    flex:0 0 auto;
    width:83.33333333%;
  }

  .col-sm-11{
    flex:0 0 auto;
    width:91.66666667%;
  }

  .col-sm-12{
    flex:0 0 auto;
    width:100%;
  }

  .offset-sm-0{
    margin-left:0;
  }

  .offset-sm-1{
    margin-left:8.33333333%;
  }

  .offset-sm-2{
    margin-left:16.66666667%;
  }

  .offset-sm-3{
    margin-left:25%;
  }

  .offset-sm-4{
    margin-left:33.33333333%;
  }

  .offset-sm-5{
    margin-left:41.66666667%;
  }

  .offset-sm-6{
    margin-left:50%;
  }

  .offset-sm-7{
    margin-left:58.33333333%;
  }

  .offset-sm-8{
    margin-left:66.66666667%;
  }

  .offset-sm-9{
    margin-left:75%;
  }

  .offset-sm-10{
    margin-left:83.33333333%;
  }

  .offset-sm-11{
    margin-left:91.66666667%;
  }

  .g-sm-0,
.gx-sm-0{
    --bs-gutter-x:0;
  }

  .g-sm-0,
.gy-sm-0{
    --bs-gutter-y:0;
  }

  .g-sm-1,
.gx-sm-1{
    --bs-gutter-x:0.25rem;
  }

  .g-sm-1,
.gy-sm-1{
    --bs-gutter-y:0.25rem;
  }

  .g-sm-2,
.gx-sm-2{
    --bs-gutter-x:0.5rem;
  }

  .g-sm-2,
.gy-sm-2{
    --bs-gutter-y:0.5rem;
  }

  .g-sm-3,
.gx-sm-3{
    --bs-gutter-x:1rem;
  }

  .g-sm-3,
.gy-sm-3{
    --bs-gutter-y:1rem;
  }

  .g-sm-4,
.gx-sm-4{
    --bs-gutter-x:1.5rem;
  }

  .g-sm-4,
.gy-sm-4{
    --bs-gutter-y:1.5rem;
  }

  .g-sm-5,
.gx-sm-5{
    --bs-gutter-x:3rem;
  }

  .g-sm-5,
.gy-sm-5{
    --bs-gutter-y:3rem;
  }
}
@media (min-width: 768px){
  .col-md{
    flex:1 0 0%;
  }

  .row-cols-md-auto > *{
    flex:0 0 auto;
    width:auto;
  }

  .row-cols-md-1 > *{
    flex:0 0 auto;
    width:100%;
  }

  .row-cols-md-2 > *{
    flex:0 0 auto;
    width:50%;
  }

  .row-cols-md-3 > *{
    flex:0 0 auto;
    width:33.3333333333%;
  }

  .row-cols-md-4 > *{
    flex:0 0 auto;
    width:25%;
  }

  .row-cols-md-5 > *{
    flex:0 0 auto;
    width:20%;
  }

  .row-cols-md-6 > *{
    flex:0 0 auto;
    width:16.6666666667%;
  }

  .col-md-auto{
    flex:0 0 auto;
    width:auto;
  }

  .col-md-1{
    flex:0 0 auto;
    width:8.33333333%;
  }

  .col-md-2{
    flex:0 0 auto;
    width:16.66666667%;
  }

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

  .col-md-4{
    flex:0 0 auto;
    width:33.33333333%;
  }

  .col-md-5{
    flex:0 0 auto;
    width:41.66666667%;
  }

  .col-md-6{
    flex:0 0 auto;
    width:50%;
  }

  .col-md-7{
    flex:0 0 auto;
    width:58.33333333%;
  }

  .col-md-8{
    flex:0 0 auto;
    width:66.66666667%;
  }

  .col-md-9{
    flex:0 0 auto;
    width:75%;
  }

  .col-md-10{
    flex:0 0 auto;
    width:83.33333333%;
  }

  .col-md-11{
    flex:0 0 auto;
    width:91.66666667%;
  }

  .col-md-12{
    flex:0 0 auto;
    width:100%;
  }

  .offset-md-0{
    margin-left:0;
  }

  .offset-md-1{
    margin-left:8.33333333%;
  }

  .offset-md-2{
    margin-left:16.66666667%;
  }

  .offset-md-3{
    margin-left:25%;
  }

  .offset-md-4{
    margin-left:33.33333333%;
  }

  .offset-md-5{
    margin-left:41.66666667%;
  }

  .offset-md-6{
    margin-left:50%;
  }

  .offset-md-7{
    margin-left:58.33333333%;
  }

  .offset-md-8{
    margin-left:66.66666667%;
  }

  .offset-md-9{
    margin-left:75%;
  }

  .offset-md-10{
    margin-left:83.33333333%;
  }

  .offset-md-11{
    margin-left:91.66666667%;
  }

  .g-md-0,
.gx-md-0{
    --bs-gutter-x:0;
  }

  .g-md-0,
.gy-md-0{
    --bs-gutter-y:0;
  }

  .g-md-1,
.gx-md-1{
    --bs-gutter-x:0.25rem;
  }

  .g-md-1,
.gy-md-1{
    --bs-gutter-y:0.25rem;
  }

  .g-md-2,
.gx-md-2{
    --bs-gutter-x:0.5rem;
  }

  .g-md-2,
.gy-md-2{
    --bs-gutter-y:0.5rem;
  }

  .g-md-3,
.gx-md-3{
    --bs-gutter-x:1rem;
  }

  .g-md-3,
.gy-md-3{
    --bs-gutter-y:1rem;
  }

  .g-md-4,
.gx-md-4{
    --bs-gutter-x:1.5rem;
  }

  .g-md-4,
.gy-md-4{
    --bs-gutter-y:1.5rem;
  }

  .g-md-5,
.gx-md-5{
    --bs-gutter-x:3rem;
  }

  .g-md-5,
.gy-md-5{
    --bs-gutter-y:3rem;
  }
}
@media (min-width: 992px){
  .col-lg{
    flex:1 0 0%;
  }

  .row-cols-lg-auto > *{
    flex:0 0 auto;
    width:auto;
  }

  .row-cols-lg-1 > *{
    flex:0 0 auto;
    width:100%;
  }

  .row-cols-lg-2 > *{
    flex:0 0 auto;
    width:50%;
  }

  .row-cols-lg-3 > *{
    flex:0 0 auto;
    width:33.3333333333%;
  }

  .row-cols-lg-4 > *{
    flex:0 0 auto;
    width:25%;
  }

  .row-cols-lg-5 > *{
    flex:0 0 auto;
    width:20%;
  }

  .row-cols-lg-6 > *{
    flex:0 0 auto;
    width:16.6666666667%;
  }

  .col-lg-auto{
    flex:0 0 auto;
    width:auto;
  }

  .col-lg-1{
    flex:0 0 auto;
    width:8.33333333%;
  }

  .col-lg-2{
    flex:0 0 auto;
    width:16.66666667%;
  }

  .col-lg-3{
    flex:0 0 auto;
    width:25%;
  }

  .col-lg-4{
    flex:0 0 auto;
    width:33.33333333%;
  }

  .col-lg-5{
    flex:0 0 auto;
    width:41.66666667%;
  }

  .col-lg-6{
    flex:0 0 auto;
    width:50%;
  }

  .col-lg-7{
    flex:0 0 auto;
    width:58.33333333%;
  }

  .col-lg-8{
    flex:0 0 auto;
    width:66.66666667%;
  }

  .col-lg-9{
    flex:0 0 auto;
    width:75%;
  }

  .col-lg-10{
    flex:0 0 auto;
    width:83.33333333%;
  }

  .col-lg-11{
    flex:0 0 auto;
    width:91.66666667%;
  }

  .col-lg-12{
    flex:0 0 auto;
    width:100%;
  }

  .offset-lg-0{
    margin-left:0;
  }

  .offset-lg-1{
    margin-left:8.33333333%;
  }

  .offset-lg-2{
    margin-left:16.66666667%;
  }

  .offset-lg-3{
    margin-left:25%;
  }

  .offset-lg-4{
    margin-left:33.33333333%;
  }

  .offset-lg-5{
    margin-left:41.66666667%;
  }

  .offset-lg-6{
    margin-left:50%;
  }

  .offset-lg-7{
    margin-left:58.33333333%;
  }

  .offset-lg-8{
    margin-left:66.66666667%;
  }

  .offset-lg-9{
    margin-left:75%;
  }

  .offset-lg-10{
    margin-left:83.33333333%;
  }

  .offset-lg-11{
    margin-left:91.66666667%;
  }

  .g-lg-0,
.gx-lg-0{
    --bs-gutter-x:0;
  }

  .g-lg-0,
.gy-lg-0{
    --bs-gutter-y:0;
  }

  .g-lg-1,
.gx-lg-1{
    --bs-gutter-x:0.25rem;
  }

  .g-lg-1,
.gy-lg-1{
    --bs-gutter-y:0.25rem;
  }

  .g-lg-2,
.gx-lg-2{
    --bs-gutter-x:0.5rem;
  }

  .g-lg-2,
.gy-lg-2{
    --bs-gutter-y:0.5rem;
  }

  .g-lg-3,
.gx-lg-3{
    --bs-gutter-x:1rem;
  }

  .g-lg-3,
.gy-lg-3{
    --bs-gutter-y:1rem;
  }

  .g-lg-4,
.gx-lg-4{
    --bs-gutter-x:1.5rem;
  }

  .g-lg-4,
.gy-lg-4{
    --bs-gutter-y:1.5rem;
  }

  .g-lg-5,
.gx-lg-5{
    --bs-gutter-x:3rem;
  }

  .g-lg-5,
.gy-lg-5{
    --bs-gutter-y:3rem;
  }
}
@media (min-width: 1200px){
  .col-xl{
    flex:1 0 0%;
  }

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

  .row-cols-xl-1 > *{
    flex:0 0 auto;
    width:100%;
  }

  .row-cols-xl-2 > *{
    flex:0 0 auto;
    width:50%;
  }

  .row-cols-xl-3 > *{
    flex:0 0 auto;
    width:33.3333333333%;
  }

  .row-cols-xl-4 > *{
    flex:0 0 auto;
    width:25%;
  }

  .row-cols-xl-5 > *{
    flex:0 0 auto;
    width:20%;
  }

  .row-cols-xl-6 > *{
    flex:0 0 auto;
    width:16.6666666667%;
  }

  .col-xl-auto{
    flex:0 0 auto;
    width:auto;
  }

  .col-xl-1{
    flex:0 0 auto;
    width:8.33333333%;
  }

  .col-xl-2{
    flex:0 0 auto;
    width:16.66666667%;
  }

  .col-xl-3{
    flex:0 0 auto;
    width:25%;
  }

  .col-xl-4{
    flex:0 0 auto;
    width:33.33333333%;
  }

  .col-xl-5{
    flex:0 0 auto;
    width:41.66666667%;
  }

  .col-xl-6{
    flex:0 0 auto;
    width:50%;
  }

  .col-xl-7{
    flex:0 0 auto;
    width:58.33333333%;
  }

  .col-xl-8{
    flex:0 0 auto;
    width:66.66666667%;
  }

  .col-xl-9{
    flex:0 0 auto;
    width:75%;
  }

  .col-xl-10{
    flex:0 0 auto;
    width:83.33333333%;
  }

  .col-xl-11{
    flex:0 0 auto;
    width:91.66666667%;
  }

  .col-xl-12{
    flex:0 0 auto;
    width:100%;
  }

  .offset-xl-0{
    margin-left:0;
  }

  .offset-xl-1{
    margin-left:8.33333333%;
  }

  .offset-xl-2{
    margin-left:16.66666667%;
  }

  .offset-xl-3{
    margin-left:25%;
  }

  .offset-xl-4{
    margin-left:33.33333333%;
  }

  .offset-xl-5{
    margin-left:41.66666667%;
  }

  .offset-xl-6{
    margin-left:50%;
  }

  .offset-xl-7{
    margin-left:58.33333333%;
  }

  .offset-xl-8{
    margin-left:66.66666667%;
  }

  .offset-xl-9{
    margin-left:75%;
  }

  .offset-xl-10{
    margin-left:83.33333333%;
  }

  .offset-xl-11{
    margin-left:91.66666667%;
  }

  .g-xl-0,
.gx-xl-0{
    --bs-gutter-x:0;
  }

  .g-xl-0,
.gy-xl-0{
    --bs-gutter-y:0;
  }

  .g-xl-1,
.gx-xl-1{
    --bs-gutter-x:0.25rem;
  }

  .g-xl-1,
.gy-xl-1{
    --bs-gutter-y:0.25rem;
  }

  .g-xl-2,
.gx-xl-2{
    --bs-gutter-x:0.5rem;
  }

  .g-xl-2,
.gy-xl-2{
    --bs-gutter-y:0.5rem;
  }

  .g-xl-3,
.gx-xl-3{
    --bs-gutter-x:1rem;
  }

  .g-xl-3,
.gy-xl-3{
    --bs-gutter-y:1rem;
  }

  .g-xl-4,
.gx-xl-4{
    --bs-gutter-x:1.5rem;
  }

  .g-xl-4,
.gy-xl-4{
    --bs-gutter-y:1.5rem;
  }

  .g-xl-5,
.gx-xl-5{
    --bs-gutter-x:3rem;
  }

  .g-xl-5,
.gy-xl-5{
    --bs-gutter-y:3rem;
  }
}
@media (min-width: 1400px){
  .col-xxl{
    flex:1 0 0%;
  }

  .row-cols-xxl-auto > *{
    flex:0 0 auto;
    width:auto;
  }

  .row-cols-xxl-1 > *{
    flex:0 0 auto;
    width:100%;
  }

  .row-cols-xxl-2 > *{
    flex:0 0 auto;
    width:50%;
  }

  .row-cols-xxl-3 > *{
    flex:0 0 auto;
    width:33.3333333333%;
  }

  .row-cols-xxl-4 > *{
    flex:0 0 auto;
    width:25%;
  }

  .row-cols-xxl-5 > *{
    flex:0 0 auto;
    width:20%;
  }

  .row-cols-xxl-6 > *{
    flex:0 0 auto;
    width:16.6666666667%;
  }

  .col-xxl-auto{
    flex:0 0 auto;
    width:auto;
  }

  .col-xxl-1{
    flex:0 0 auto;
    width:8.33333333%;
  }

  .col-xxl-2{
    flex:0 0 auto;
    width:16.66666667%;
  }

  .col-xxl-3{
    flex:0 0 auto;
    width:25%;
  }

  .col-xxl-4{
    flex:0 0 auto;
    width:33.33333333%;
  }

  .col-xxl-5{
    flex:0 0 auto;
    width:41.66666667%;
  }

  .col-xxl-6{
    flex:0 0 auto;
    width:50%;
  }

  .col-xxl-7{
    flex:0 0 auto;
    width:58.33333333%;
  }

  .col-xxl-8{
    flex:0 0 auto;
    width:66.66666667%;
  }

  .col-xxl-9{
    flex:0 0 auto;
    width:75%;
  }

  .col-xxl-10{
    flex:0 0 auto;
    width:83.33333333%;
  }

  .col-xxl-11{
    flex:0 0 auto;
    width:91.66666667%;
  }

  .col-xxl-12{
    flex:0 0 auto;
    width:100%;
  }

  .offset-xxl-0{
    margin-left:0;
  }

  .offset-xxl-1{
    margin-left:8.33333333%;
  }

  .offset-xxl-2{
    margin-left:16.66666667%;
  }

  .offset-xxl-3{
    margin-left:25%;
  }

  .offset-xxl-4{
    margin-left:33.33333333%;
  }

  .offset-xxl-5{
    margin-left:41.66666667%;
  }

  .offset-xxl-6{
    margin-left:50%;
  }

  .offset-xxl-7{
    margin-left:58.33333333%;
  }

  .offset-xxl-8{
    margin-left:66.66666667%;
  }

  .offset-xxl-9{
    margin-left:75%;
  }

  .offset-xxl-10{
    margin-left:83.33333333%;
  }

  .offset-xxl-11{
    margin-left:91.66666667%;
  }

  .g-xxl-0,
.gx-xxl-0{
    --bs-gutter-x:0;
  }

  .g-xxl-0,
.gy-xxl-0{
    --bs-gutter-y:0;
  }

  .g-xxl-1,
.gx-xxl-1{
    --bs-gutter-x:0.25rem;
  }

  .g-xxl-1,
.gy-xxl-1{
    --bs-gutter-y:0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2{
    --bs-gutter-x:0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2{
    --bs-gutter-y:0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3{
    --bs-gutter-x:1rem;
  }

  .g-xxl-3,
.gy-xxl-3{
    --bs-gutter-y:1rem;
  }

  .g-xxl-4,
.gx-xxl-4{
    --bs-gutter-x:1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4{
    --bs-gutter-y:1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5{
    --bs-gutter-x:3rem;
  }

  .g-xxl-5,
.gy-xxl-5{
    --bs-gutter-y:3rem;
  }
}
.d-inline{
  display:inline !important;
}

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

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

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

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

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

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

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

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

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

.flex-fill{
  flex:1 1 auto !important;
}

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

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

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

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

.flex-grow-0{
  flex-grow:0 !important;
}

.flex-grow-1{
  flex-grow:1 !important;
}

.flex-shrink-0{
  flex-shrink:0 !important;
}

.flex-shrink-1{
  flex-shrink:1 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first{
  order:-1 !important;
}

.order-0{
  order:0 !important;
}

.order-1{
  order:1 !important;
}

.order-2{
  order:2 !important;
}

.order-3{
  order:3 !important;
}

.order-4{
  order:4 !important;
}

.order-5{
  order:5 !important;
}

.order-last{
  order:6 !important;
}

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

.m-1{
  margin:0.25rem !important;
}

.m-2{
  margin:0.5rem !important;
}

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

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

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

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

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

.mx-1{
  margin-right:0.25rem !important;
  margin-left:0.25rem !important;
}

.mx-2{
  margin-right:0.5rem !important;
  margin-left:0.5rem !important;
}

.mx-3{
  margin-right:1rem !important;
  margin-left:1rem !important;
}

.mx-4{
  margin-right:1.5rem !important;
  margin-left:1.5rem !important;
}

.mx-5{
  margin-right:3rem !important;
  margin-left:3rem !important;
}

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

.my-0{
  margin-top:0 !important;
  margin-bottom:0 !important;
}

.my-1{
  margin-top:0.25rem !important;
  margin-bottom:0.25rem !important;
}

.my-2{
  margin-top:0.5rem !important;
  margin-bottom:0.5rem !important;
}

.my-3{
  margin-top:1rem !important;
  margin-bottom:1rem !important;
}

.my-4{
  margin-top:1.5rem !important;
  margin-bottom:1.5rem !important;
}

.my-5{
  margin-top:3rem !important;
  margin-bottom:3rem !important;
}

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

.mt-0{
  margin-top:0 !important;
}

.mt-1{
  margin-top:0.25rem !important;
}

.mt-2{
  margin-top:0.5rem !important;
}

.mt-3{
  margin-top:1rem !important;
}

.mt-4{
  margin-top:1.5rem !important;
}

.mt-5{
  margin-top:3rem !important;
}

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

.me-0{
  margin-right:0 !important;
}

.me-1{
  margin-right:0.25rem !important;
}

.me-2{
  margin-right:0.5rem !important;
}

.me-3{
  margin-right:1rem !important;
}

.me-4{
  margin-right:1.5rem !important;
}

.me-5{
  margin-right:3rem !important;
}

.me-auto{
  margin-right:auto !important;
}

.mb-0{
  margin-bottom:0 !important;
}

.mb-1{
  margin-bottom:0.25rem !important;
}

.mb-2{
  margin-bottom:0.5rem !important;
}

.mb-3{
  margin-bottom:1rem !important;
}

.mb-4{
  margin-bottom:1.5rem !important;
}

.mb-5{
  margin-bottom:3rem !important;
}

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

.ms-0{
  margin-left:0 !important;
}

.ms-1{
  margin-left:0.25rem !important;
}

.ms-2{
  margin-left:0.5rem !important;
}

.ms-3{
  margin-left:1rem !important;
}

.ms-4{
  margin-left:1.5rem !important;
}

.ms-5{
  margin-left:3rem !important;
}

.ms-auto{
  margin-left:auto !important;
}

.p-0{
  padding:0 !important;
}

.p-1{
  padding:0.25rem !important;
}

.p-2{
  padding:0.5rem !important;
}

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

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

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

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

.px-1{
  padding-right:0.25rem !important;
  padding-left:0.25rem !important;
}

.px-2{
  padding-right:0.5rem !important;
  padding-left:0.5rem !important;
}

.px-3{
  padding-right:1rem !important;
  padding-left:1rem !important;
}

.px-4{
  padding-right:1.5rem !important;
  padding-left:1.5rem !important;
}

.px-5{
  padding-right:3rem !important;
  padding-left:3rem !important;
}

.py-0{
  padding-top:0 !important;
  padding-bottom:0 !important;
}

.py-1{
  padding-top:0.25rem !important;
  padding-bottom:0.25rem !important;
}

.py-2{
  padding-top:0.5rem !important;
  padding-bottom:0.5rem !important;
}

.py-3{
  padding-top:1rem !important;
  padding-bottom:1rem !important;
}

.py-4{
  padding-top:1.5rem !important;
  padding-bottom:1.5rem !important;
}

.py-5{
  padding-top:3rem !important;
  padding-bottom:3rem !important;
}

.pt-0{
  padding-top:0 !important;
}

.pt-1{
  padding-top:0.25rem !important;
}

.pt-2{
  padding-top:0.5rem !important;
}

.pt-3{
  padding-top:1rem !important;
}

.pt-4{
  padding-top:1.5rem !important;
}

.pt-5{
  padding-top:3rem !important;
}

.pe-0{
  padding-right:0 !important;
}

.pe-1{
  padding-right:0.25rem !important;
}

.pe-2{
  padding-right:0.5rem !important;
}

.pe-3{
  padding-right:1rem !important;
}

.pe-4{
  padding-right:1.5rem !important;
}

.pe-5{
  padding-right:3rem !important;
}

.pb-0{
  padding-bottom:0 !important;
}

.pb-1{
  padding-bottom:0.25rem !important;
}

.pb-2{
  padding-bottom:0.5rem !important;
}

.pb-3{
  padding-bottom:1rem !important;
}

.pb-4{
  padding-bottom:1.5rem !important;
}

.pb-5{
  padding-bottom:3rem !important;
}

.ps-0{
  padding-left:0 !important;
}

.ps-1{
  padding-left:0.25rem !important;
}

.ps-2{
  padding-left:0.5rem !important;
}

.ps-3{
  padding-left:1rem !important;
}

.ps-4{
  padding-left:1.5rem !important;
}

.ps-5{
  padding-left:3rem !important;
}

@media (min-width: 576px){
  .d-sm-inline{
    display:inline !important;
  }

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

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

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

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

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

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

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

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

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

  .flex-sm-fill{
    flex:1 1 auto !important;
  }

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

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

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

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

  .flex-sm-grow-0{
    flex-grow:0 !important;
  }

  .flex-sm-grow-1{
    flex-grow:1 !important;
  }

  .flex-sm-shrink-0{
    flex-shrink:0 !important;
  }

  .flex-sm-shrink-1{
    flex-shrink:1 !important;
  }

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

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

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

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

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

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

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

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

  .justify-content-sm-evenly{
    justify-content:space-evenly !important;
  }

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

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

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

  .align-items-sm-baseline{
    align-items:baseline !important;
  }

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

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

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

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

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

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

  .align-content-sm-stretch{
    align-content:stretch !important;
  }

  .align-self-sm-auto{
    align-self:auto !important;
  }

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

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

  .align-self-sm-center{
    align-self:center !important;
  }

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

  .align-self-sm-stretch{
    align-self:stretch !important;
  }

  .order-sm-first{
    order:-1 !important;
  }

  .order-sm-0{
    order:0 !important;
  }

  .order-sm-1{
    order:1 !important;
  }

  .order-sm-2{
    order:2 !important;
  }

  .order-sm-3{
    order:3 !important;
  }

  .order-sm-4{
    order:4 !important;
  }

  .order-sm-5{
    order:5 !important;
  }

  .order-sm-last{
    order:6 !important;
  }

  .m-sm-0{
    margin:0 !important;
  }

  .m-sm-1{
    margin:0.25rem !important;
  }

  .m-sm-2{
    margin:0.5rem !important;
  }

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

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

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

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

  .mx-sm-0{
    margin-right:0 !important;
    margin-left:0 !important;
  }

  .mx-sm-1{
    margin-right:0.25rem !important;
    margin-left:0.25rem !important;
  }

  .mx-sm-2{
    margin-right:0.5rem !important;
    margin-left:0.5rem !important;
  }

  .mx-sm-3{
    margin-right:1rem !important;
    margin-left:1rem !important;
  }

  .mx-sm-4{
    margin-right:1.5rem !important;
    margin-left:1.5rem !important;
  }

  .mx-sm-5{
    margin-right:3rem !important;
    margin-left:3rem !important;
  }

  .mx-sm-auto{
    margin-right:auto !important;
    margin-left:auto !important;
  }

  .my-sm-0{
    margin-top:0 !important;
    margin-bottom:0 !important;
  }

  .my-sm-1{
    margin-top:0.25rem !important;
    margin-bottom:0.25rem !important;
  }

  .my-sm-2{
    margin-top:0.5rem !important;
    margin-bottom:0.5rem !important;
  }

  .my-sm-3{
    margin-top:1rem !important;
    margin-bottom:1rem !important;
  }

  .my-sm-4{
    margin-top:1.5rem !important;
    margin-bottom:1.5rem !important;
  }

  .my-sm-5{
    margin-top:3rem !important;
    margin-bottom:3rem !important;
  }

  .my-sm-auto{
    margin-top:auto !important;
    margin-bottom:auto !important;
  }

  .mt-sm-0{
    margin-top:0 !important;
  }

  .mt-sm-1{
    margin-top:0.25rem !important;
  }

  .mt-sm-2{
    margin-top:0.5rem !important;
  }

  .mt-sm-3{
    margin-top:1rem !important;
  }

  .mt-sm-4{
    margin-top:1.5rem !important;
  }

  .mt-sm-5{
    margin-top:3rem !important;
  }

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

  .me-sm-0{
    margin-right:0 !important;
  }

  .me-sm-1{
    margin-right:0.25rem !important;
  }

  .me-sm-2{
    margin-right:0.5rem !important;
  }

  .me-sm-3{
    margin-right:1rem !important;
  }

  .me-sm-4{
    margin-right:1.5rem !important;
  }

  .me-sm-5{
    margin-right:3rem !important;
  }

  .me-sm-auto{
    margin-right:auto !important;
  }

  .mb-sm-0{
    margin-bottom:0 !important;
  }

  .mb-sm-1{
    margin-bottom:0.25rem !important;
  }

  .mb-sm-2{
    margin-bottom:0.5rem !important;
  }

  .mb-sm-3{
    margin-bottom:1rem !important;
  }

  .mb-sm-4{
    margin-bottom:1.5rem !important;
  }

  .mb-sm-5{
    margin-bottom:3rem !important;
  }

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

  .ms-sm-0{
    margin-left:0 !important;
  }

  .ms-sm-1{
    margin-left:0.25rem !important;
  }

  .ms-sm-2{
    margin-left:0.5rem !important;
  }

  .ms-sm-3{
    margin-left:1rem !important;
  }

  .ms-sm-4{
    margin-left:1.5rem !important;
  }

  .ms-sm-5{
    margin-left:3rem !important;
  }

  .ms-sm-auto{
    margin-left:auto !important;
  }

  .p-sm-0{
    padding:0 !important;
  }

  .p-sm-1{
    padding:0.25rem !important;
  }

  .p-sm-2{
    padding:0.5rem !important;
  }

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

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

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

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

  .px-sm-1{
    padding-right:0.25rem !important;
    padding-left:0.25rem !important;
  }

  .px-sm-2{
    padding-right:0.5rem !important;
    padding-left:0.5rem !important;
  }

  .px-sm-3{
    padding-right:1rem !important;
    padding-left:1rem !important;
  }

  .px-sm-4{
    padding-right:1.5rem !important;
    padding-left:1.5rem !important;
  }

  .px-sm-5{
    padding-right:3rem !important;
    padding-left:3rem !important;
  }

  .py-sm-0{
    padding-top:0 !important;
    padding-bottom:0 !important;
  }

  .py-sm-1{
    padding-top:0.25rem !important;
    padding-bottom:0.25rem !important;
  }

  .py-sm-2{
    padding-top:0.5rem !important;
    padding-bottom:0.5rem !important;
  }

  .py-sm-3{
    padding-top:1rem !important;
    padding-bottom:1rem !important;
  }

  .py-sm-4{
    padding-top:1.5rem !important;
    padding-bottom:1.5rem !important;
  }

  .py-sm-5{
    padding-top:3rem !important;
    padding-bottom:3rem !important;
  }

  .pt-sm-0{
    padding-top:0 !important;
  }

  .pt-sm-1{
    padding-top:0.25rem !important;
  }

  .pt-sm-2{
    padding-top:0.5rem !important;
  }

  .pt-sm-3{
    padding-top:1rem !important;
  }

  .pt-sm-4{
    padding-top:1.5rem !important;
  }

  .pt-sm-5{
    padding-top:3rem !important;
  }

  .pe-sm-0{
    padding-right:0 !important;
  }

  .pe-sm-1{
    padding-right:0.25rem !important;
  }

  .pe-sm-2{
    padding-right:0.5rem !important;
  }

  .pe-sm-3{
    padding-right:1rem !important;
  }

  .pe-sm-4{
    padding-right:1.5rem !important;
  }

  .pe-sm-5{
    padding-right:3rem !important;
  }

  .pb-sm-0{
    padding-bottom:0 !important;
  }

  .pb-sm-1{
    padding-bottom:0.25rem !important;
  }

  .pb-sm-2{
    padding-bottom:0.5rem !important;
  }

  .pb-sm-3{
    padding-bottom:1rem !important;
  }

  .pb-sm-4{
    padding-bottom:1.5rem !important;
  }

  .pb-sm-5{
    padding-bottom:3rem !important;
  }

  .ps-sm-0{
    padding-left:0 !important;
  }

  .ps-sm-1{
    padding-left:0.25rem !important;
  }

  .ps-sm-2{
    padding-left:0.5rem !important;
  }

  .ps-sm-3{
    padding-left:1rem !important;
  }

  .ps-sm-4{
    padding-left:1.5rem !important;
  }

  .ps-sm-5{
    padding-left:3rem !important;
  }
}
@media (min-width: 768px){
  .d-md-inline{
    display:inline !important;
  }

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

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

  .d-md-grid{
    display:grid !important;
  }

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

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

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

  .d-md-flex{
    display:flex !important;
  }

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

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

  .flex-md-fill{
    flex:1 1 auto !important;
  }

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

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

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

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

  .flex-md-grow-0{
    flex-grow:0 !important;
  }

  .flex-md-grow-1{
    flex-grow:1 !important;
  }

  .flex-md-shrink-0{
    flex-shrink:0 !important;
  }

  .flex-md-shrink-1{
    flex-shrink:1 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-md-first{
    order:-1 !important;
  }

  .order-md-0{
    order:0 !important;
  }

  .order-md-1{
    order:1 !important;
  }

  .order-md-2{
    order:2 !important;
  }

  .order-md-3{
    order:3 !important;
  }

  .order-md-4{
    order:4 !important;
  }

  .order-md-5{
    order:5 !important;
  }

  .order-md-last{
    order:6 !important;
  }

  .m-md-0{
    margin:0 !important;
  }

  .m-md-1{
    margin:0.25rem !important;
  }

  .m-md-2{
    margin:0.5rem !important;
  }

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

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

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

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

  .mx-md-0{
    margin-right:0 !important;
    margin-left:0 !important;
  }

  .mx-md-1{
    margin-right:0.25rem !important;
    margin-left:0.25rem !important;
  }

  .mx-md-2{
    margin-right:0.5rem !important;
    margin-left:0.5rem !important;
  }

  .mx-md-3{
    margin-right:1rem !important;
    margin-left:1rem !important;
  }

  .mx-md-4{
    margin-right:1.5rem !important;
    margin-left:1.5rem !important;
  }

  .mx-md-5{
    margin-right:3rem !important;
    margin-left:3rem !important;
  }

  .mx-md-auto{
    margin-right:auto !important;
    margin-left:auto !important;
  }

  .my-md-0{
    margin-top:0 !important;
    margin-bottom:0 !important;
  }

  .my-md-1{
    margin-top:0.25rem !important;
    margin-bottom:0.25rem !important;
  }

  .my-md-2{
    margin-top:0.5rem !important;
    margin-bottom:0.5rem !important;
  }

  .my-md-3{
    margin-top:1rem !important;
    margin-bottom:1rem !important;
  }

  .my-md-4{
    margin-top:1.5rem !important;
    margin-bottom:1.5rem !important;
  }

  .my-md-5{
    margin-top:3rem !important;
    margin-bottom:3rem !important;
  }

  .my-md-auto{
    margin-top:auto !important;
    margin-bottom:auto !important;
  }

  .mt-md-0{
    margin-top:0 !important;
  }

  .mt-md-1{
    margin-top:0.25rem !important;
  }

  .mt-md-2{
    margin-top:0.5rem !important;
  }

  .mt-md-3{
    margin-top:1rem !important;
  }

  .mt-md-4{
    margin-top:1.5rem !important;
  }

  .mt-md-5{
    margin-top:3rem !important;
  }

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

  .me-md-0{
    margin-right:0 !important;
  }

  .me-md-1{
    margin-right:0.25rem !important;
  }

  .me-md-2{
    margin-right:0.5rem !important;
  }

  .me-md-3{
    margin-right:1rem !important;
  }

  .me-md-4{
    margin-right:1.5rem !important;
  }

  .me-md-5{
    margin-right:3rem !important;
  }

  .me-md-auto{
    margin-right:auto !important;
  }

  .mb-md-0{
    margin-bottom:0 !important;
  }

  .mb-md-1{
    margin-bottom:0.25rem !important;
  }

  .mb-md-2{
    margin-bottom:0.5rem !important;
  }

  .mb-md-3{
    margin-bottom:1rem !important;
  }

  .mb-md-4{
    margin-bottom:1.5rem !important;
  }

  .mb-md-5{
    margin-bottom:3rem !important;
  }

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

  .ms-md-0{
    margin-left:0 !important;
  }

  .ms-md-1{
    margin-left:0.25rem !important;
  }

  .ms-md-2{
    margin-left:0.5rem !important;
  }

  .ms-md-3{
    margin-left:1rem !important;
  }

  .ms-md-4{
    margin-left:1.5rem !important;
  }

  .ms-md-5{
    margin-left:3rem !important;
  }

  .ms-md-auto{
    margin-left:auto !important;
  }

  .p-md-0{
    padding:0 !important;
  }

  .p-md-1{
    padding:0.25rem !important;
  }

  .p-md-2{
    padding:0.5rem !important;
  }

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

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

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

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

  .px-md-1{
    padding-right:0.25rem !important;
    padding-left:0.25rem !important;
  }

  .px-md-2{
    padding-right:0.5rem !important;
    padding-left:0.5rem !important;
  }

  .px-md-3{
    padding-right:1rem !important;
    padding-left:1rem !important;
  }

  .px-md-4{
    padding-right:1.5rem !important;
    padding-left:1.5rem !important;
  }

  .px-md-5{
    padding-right:3rem !important;
    padding-left:3rem !important;
  }

  .py-md-0{
    padding-top:0 !important;
    padding-bottom:0 !important;
  }

  .py-md-1{
    padding-top:0.25rem !important;
    padding-bottom:0.25rem !important;
  }

  .py-md-2{
    padding-top:0.5rem !important;
    padding-bottom:0.5rem !important;
  }

  .py-md-3{
    padding-top:1rem !important;
    padding-bottom:1rem !important;
  }

  .py-md-4{
    padding-top:1.5rem !important;
    padding-bottom:1.5rem !important;
  }

  .py-md-5{
    padding-top:3rem !important;
    padding-bottom:3rem !important;
  }

  .pt-md-0{
    padding-top:0 !important;
  }

  .pt-md-1{
    padding-top:0.25rem !important;
  }

  .pt-md-2{
    padding-top:0.5rem !important;
  }

  .pt-md-3{
    padding-top:1rem !important;
  }

  .pt-md-4{
    padding-top:1.5rem !important;
  }

  .pt-md-5{
    padding-top:3rem !important;
  }

  .pe-md-0{
    padding-right:0 !important;
  }

  .pe-md-1{
    padding-right:0.25rem !important;
  }

  .pe-md-2{
    padding-right:0.5rem !important;
  }

  .pe-md-3{
    padding-right:1rem !important;
  }

  .pe-md-4{
    padding-right:1.5rem !important;
  }

  .pe-md-5{
    padding-right:3rem !important;
  }

  .pb-md-0{
    padding-bottom:0 !important;
  }

  .pb-md-1{
    padding-bottom:0.25rem !important;
  }

  .pb-md-2{
    padding-bottom:0.5rem !important;
  }

  .pb-md-3{
    padding-bottom:1rem !important;
  }

  .pb-md-4{
    padding-bottom:1.5rem !important;
  }

  .pb-md-5{
    padding-bottom:3rem !important;
  }

  .ps-md-0{
    padding-left:0 !important;
  }

  .ps-md-1{
    padding-left:0.25rem !important;
  }

  .ps-md-2{
    padding-left:0.5rem !important;
  }

  .ps-md-3{
    padding-left:1rem !important;
  }

  .ps-md-4{
    padding-left:1.5rem !important;
  }

  .ps-md-5{
    padding-left:3rem !important;
  }
}
@media (min-width: 992px){
  .d-lg-inline{
    display:inline !important;
  }

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

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

  .d-lg-grid{
    display:grid !important;
  }

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

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

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

  .d-lg-flex{
    display:flex !important;
  }

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

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

  .flex-lg-fill{
    flex:1 1 auto !important;
  }

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

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

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

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

  .flex-lg-grow-0{
    flex-grow:0 !important;
  }

  .flex-lg-grow-1{
    flex-grow:1 !important;
  }

  .flex-lg-shrink-0{
    flex-shrink:0 !important;
  }

  .flex-lg-shrink-1{
    flex-shrink:1 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-lg-first{
    order:-1 !important;
  }

  .order-lg-0{
    order:0 !important;
  }

  .order-lg-1{
    order:1 !important;
  }

  .order-lg-2{
    order:2 !important;
  }

  .order-lg-3{
    order:3 !important;
  }

  .order-lg-4{
    order:4 !important;
  }

  .order-lg-5{
    order:5 !important;
  }

  .order-lg-last{
    order:6 !important;
  }

  .m-lg-0{
    margin:0 !important;
  }

  .m-lg-1{
    margin:0.25rem !important;
  }

  .m-lg-2{
    margin:0.5rem !important;
  }

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

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

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

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

  .mx-lg-0{
    margin-right:0 !important;
    margin-left:0 !important;
  }

  .mx-lg-1{
    margin-right:0.25rem !important;
    margin-left:0.25rem !important;
  }

  .mx-lg-2{
    margin-right:0.5rem !important;
    margin-left:0.5rem !important;
  }

  .mx-lg-3{
    margin-right:1rem !important;
    margin-left:1rem !important;
  }

  .mx-lg-4{
    margin-right:1.5rem !important;
    margin-left:1.5rem !important;
  }

  .mx-lg-5{
    margin-right:3rem !important;
    margin-left:3rem !important;
  }

  .mx-lg-auto{
    margin-right:auto !important;
    margin-left:auto !important;
  }

  .my-lg-0{
    margin-top:0 !important;
    margin-bottom:0 !important;
  }

  .my-lg-1{
    margin-top:0.25rem !important;
    margin-bottom:0.25rem !important;
  }

  .my-lg-2{
    margin-top:0.5rem !important;
    margin-bottom:0.5rem !important;
  }

  .my-lg-3{
    margin-top:1rem !important;
    margin-bottom:1rem !important;
  }

  .my-lg-4{
    margin-top:1.5rem !important;
    margin-bottom:1.5rem !important;
  }

  .my-lg-5{
    margin-top:3rem !important;
    margin-bottom:3rem !important;
  }

  .my-lg-auto{
    margin-top:auto !important;
    margin-bottom:auto !important;
  }

  .mt-lg-0{
    margin-top:0 !important;
  }

  .mt-lg-1{
    margin-top:0.25rem !important;
  }

  .mt-lg-2{
    margin-top:0.5rem !important;
  }

  .mt-lg-3{
    margin-top:1rem !important;
  }

  .mt-lg-4{
    margin-top:1.5rem !important;
  }

  .mt-lg-5{
    margin-top:3rem !important;
  }

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

  .me-lg-0{
    margin-right:0 !important;
  }

  .me-lg-1{
    margin-right:0.25rem !important;
  }

  .me-lg-2{
    margin-right:0.5rem !important;
  }

  .me-lg-3{
    margin-right:1rem !important;
  }

  .me-lg-4{
    margin-right:1.5rem !important;
  }

  .me-lg-5{
    margin-right:3rem !important;
  }

  .me-lg-auto{
    margin-right:auto !important;
  }

  .mb-lg-0{
    margin-bottom:0 !important;
  }

  .mb-lg-1{
    margin-bottom:0.25rem !important;
  }

  .mb-lg-2{
    margin-bottom:0.5rem !important;
  }

  .mb-lg-3{
    margin-bottom:1rem !important;
  }

  .mb-lg-4{
    margin-bottom:1.5rem !important;
  }

  .mb-lg-5{
    margin-bottom:3rem !important;
  }

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

  .ms-lg-0{
    margin-left:0 !important;
  }

  .ms-lg-1{
    margin-left:0.25rem !important;
  }

  .ms-lg-2{
    margin-left:0.5rem !important;
  }

  .ms-lg-3{
    margin-left:1rem !important;
  }

  .ms-lg-4{
    margin-left:1.5rem !important;
  }

  .ms-lg-5{
    margin-left:3rem !important;
  }

  .ms-lg-auto{
    margin-left:auto !important;
  }

  .p-lg-0{
    padding:0 !important;
  }

  .p-lg-1{
    padding:0.25rem !important;
  }

  .p-lg-2{
    padding:0.5rem !important;
  }

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

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

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

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

  .px-lg-1{
    padding-right:0.25rem !important;
    padding-left:0.25rem !important;
  }

  .px-lg-2{
    padding-right:0.5rem !important;
    padding-left:0.5rem !important;
  }

  .px-lg-3{
    padding-right:1rem !important;
    padding-left:1rem !important;
  }

  .px-lg-4{
    padding-right:1.5rem !important;
    padding-left:1.5rem !important;
  }

  .px-lg-5{
    padding-right:3rem !important;
    padding-left:3rem !important;
  }

  .py-lg-0{
    padding-top:0 !important;
    padding-bottom:0 !important;
  }

  .py-lg-1{
    padding-top:0.25rem !important;
    padding-bottom:0.25rem !important;
  }

  .py-lg-2{
    padding-top:0.5rem !important;
    padding-bottom:0.5rem !important;
  }

  .py-lg-3{
    padding-top:1rem !important;
    padding-bottom:1rem !important;
  }

  .py-lg-4{
    padding-top:1.5rem !important;
    padding-bottom:1.5rem !important;
  }

  .py-lg-5{
    padding-top:3rem !important;
    padding-bottom:3rem !important;
  }

  .pt-lg-0{
    padding-top:0 !important;
  }

  .pt-lg-1{
    padding-top:0.25rem !important;
  }

  .pt-lg-2{
    padding-top:0.5rem !important;
  }

  .pt-lg-3{
    padding-top:1rem !important;
  }

  .pt-lg-4{
    padding-top:1.5rem !important;
  }

  .pt-lg-5{
    padding-top:3rem !important;
  }

  .pe-lg-0{
    padding-right:0 !important;
  }

  .pe-lg-1{
    padding-right:0.25rem !important;
  }

  .pe-lg-2{
    padding-right:0.5rem !important;
  }

  .pe-lg-3{
    padding-right:1rem !important;
  }

  .pe-lg-4{
    padding-right:1.5rem !important;
  }

  .pe-lg-5{
    padding-right:3rem !important;
  }

  .pb-lg-0{
    padding-bottom:0 !important;
  }

  .pb-lg-1{
    padding-bottom:0.25rem !important;
  }

  .pb-lg-2{
    padding-bottom:0.5rem !important;
  }

  .pb-lg-3{
    padding-bottom:1rem !important;
  }

  .pb-lg-4{
    padding-bottom:1.5rem !important;
  }

  .pb-lg-5{
    padding-bottom:3rem !important;
  }

  .ps-lg-0{
    padding-left:0 !important;
  }

  .ps-lg-1{
    padding-left:0.25rem !important;
  }

  .ps-lg-2{
    padding-left:0.5rem !important;
  }

  .ps-lg-3{
    padding-left:1rem !important;
  }

  .ps-lg-4{
    padding-left:1.5rem !important;
  }

  .ps-lg-5{
    padding-left:3rem !important;
  }
}
@media (min-width: 1200px){
  .d-xl-inline{
    display:inline !important;
  }

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

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

  .d-xl-grid{
    display:grid !important;
  }

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

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

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

  .d-xl-flex{
    display:flex !important;
  }

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

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

  .flex-xl-fill{
    flex:1 1 auto !important;
  }

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

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

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

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

  .flex-xl-grow-0{
    flex-grow:0 !important;
  }

  .flex-xl-grow-1{
    flex-grow:1 !important;
  }

  .flex-xl-shrink-0{
    flex-shrink:0 !important;
  }

  .flex-xl-shrink-1{
    flex-shrink:1 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xl-first{
    order:-1 !important;
  }

  .order-xl-0{
    order:0 !important;
  }

  .order-xl-1{
    order:1 !important;
  }

  .order-xl-2{
    order:2 !important;
  }

  .order-xl-3{
    order:3 !important;
  }

  .order-xl-4{
    order:4 !important;
  }

  .order-xl-5{
    order:5 !important;
  }

  .order-xl-last{
    order:6 !important;
  }

  .m-xl-0{
    margin:0 !important;
  }

  .m-xl-1{
    margin:0.25rem !important;
  }

  .m-xl-2{
    margin:0.5rem !important;
  }

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

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

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

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

  .mx-xl-0{
    margin-right:0 !important;
    margin-left:0 !important;
  }

  .mx-xl-1{
    margin-right:0.25rem !important;
    margin-left:0.25rem !important;
  }

  .mx-xl-2{
    margin-right:0.5rem !important;
    margin-left:0.5rem !important;
  }

  .mx-xl-3{
    margin-right:1rem !important;
    margin-left:1rem !important;
  }

  .mx-xl-4{
    margin-right:1.5rem !important;
    margin-left:1.5rem !important;
  }

  .mx-xl-5{
    margin-right:3rem !important;
    margin-left:3rem !important;
  }

  .mx-xl-auto{
    margin-right:auto !important;
    margin-left:auto !important;
  }

  .my-xl-0{
    margin-top:0 !important;
    margin-bottom:0 !important;
  }

  .my-xl-1{
    margin-top:0.25rem !important;
    margin-bottom:0.25rem !important;
  }

  .my-xl-2{
    margin-top:0.5rem !important;
    margin-bottom:0.5rem !important;
  }

  .my-xl-3{
    margin-top:1rem !important;
    margin-bottom:1rem !important;
  }

  .my-xl-4{
    margin-top:1.5rem !important;
    margin-bottom:1.5rem !important;
  }

  .my-xl-5{
    margin-top:3rem !important;
    margin-bottom:3rem !important;
  }

  .my-xl-auto{
    margin-top:auto !important;
    margin-bottom:auto !important;
  }

  .mt-xl-0{
    margin-top:0 !important;
  }

  .mt-xl-1{
    margin-top:0.25rem !important;
  }

  .mt-xl-2{
    margin-top:0.5rem !important;
  }

  .mt-xl-3{
    margin-top:1rem !important;
  }

  .mt-xl-4{
    margin-top:1.5rem !important;
  }

  .mt-xl-5{
    margin-top:3rem !important;
  }

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

  .me-xl-0{
    margin-right:0 !important;
  }

  .me-xl-1{
    margin-right:0.25rem !important;
  }

  .me-xl-2{
    margin-right:0.5rem !important;
  }

  .me-xl-3{
    margin-right:1rem !important;
  }

  .me-xl-4{
    margin-right:1.5rem !important;
  }

  .me-xl-5{
    margin-right:3rem !important;
  }

  .me-xl-auto{
    margin-right:auto !important;
  }

  .mb-xl-0{
    margin-bottom:0 !important;
  }

  .mb-xl-1{
    margin-bottom:0.25rem !important;
  }

  .mb-xl-2{
    margin-bottom:0.5rem !important;
  }

  .mb-xl-3{
    margin-bottom:1rem !important;
  }

  .mb-xl-4{
    margin-bottom:1.5rem !important;
  }

  .mb-xl-5{
    margin-bottom:3rem !important;
  }

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

  .ms-xl-0{
    margin-left:0 !important;
  }

  .ms-xl-1{
    margin-left:0.25rem !important;
  }

  .ms-xl-2{
    margin-left:0.5rem !important;
  }

  .ms-xl-3{
    margin-left:1rem !important;
  }

  .ms-xl-4{
    margin-left:1.5rem !important;
  }

  .ms-xl-5{
    margin-left:3rem !important;
  }

  .ms-xl-auto{
    margin-left:auto !important;
  }

  .p-xl-0{
    padding:0 !important;
  }

  .p-xl-1{
    padding:0.25rem !important;
  }

  .p-xl-2{
    padding:0.5rem !important;
  }

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

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

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

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

  .px-xl-1{
    padding-right:0.25rem !important;
    padding-left:0.25rem !important;
  }

  .px-xl-2{
    padding-right:0.5rem !important;
    padding-left:0.5rem !important;
  }

  .px-xl-3{
    padding-right:1rem !important;
    padding-left:1rem !important;
  }

  .px-xl-4{
    padding-right:1.5rem !important;
    padding-left:1.5rem !important;
  }

  .px-xl-5{
    padding-right:3rem !important;
    padding-left:3rem !important;
  }

  .py-xl-0{
    padding-top:0 !important;
    padding-bottom:0 !important;
  }

  .py-xl-1{
    padding-top:0.25rem !important;
    padding-bottom:0.25rem !important;
  }

  .py-xl-2{
    padding-top:0.5rem !important;
    padding-bottom:0.5rem !important;
  }

  .py-xl-3{
    padding-top:1rem !important;
    padding-bottom:1rem !important;
  }

  .py-xl-4{
    padding-top:1.5rem !important;
    padding-bottom:1.5rem !important;
  }

  .py-xl-5{
    padding-top:3rem !important;
    padding-bottom:3rem !important;
  }

  .pt-xl-0{
    padding-top:0 !important;
  }

  .pt-xl-1{
    padding-top:0.25rem !important;
  }

  .pt-xl-2{
    padding-top:0.5rem !important;
  }

  .pt-xl-3{
    padding-top:1rem !important;
  }

  .pt-xl-4{
    padding-top:1.5rem !important;
  }

  .pt-xl-5{
    padding-top:3rem !important;
  }

  .pe-xl-0{
    padding-right:0 !important;
  }

  .pe-xl-1{
    padding-right:0.25rem !important;
  }

  .pe-xl-2{
    padding-right:0.5rem !important;
  }

  .pe-xl-3{
    padding-right:1rem !important;
  }

  .pe-xl-4{
    padding-right:1.5rem !important;
  }

  .pe-xl-5{
    padding-right:3rem !important;
  }

  .pb-xl-0{
    padding-bottom:0 !important;
  }

  .pb-xl-1{
    padding-bottom:0.25rem !important;
  }

  .pb-xl-2{
    padding-bottom:0.5rem !important;
  }

  .pb-xl-3{
    padding-bottom:1rem !important;
  }

  .pb-xl-4{
    padding-bottom:1.5rem !important;
  }

  .pb-xl-5{
    padding-bottom:3rem !important;
  }

  .ps-xl-0{
    padding-left:0 !important;
  }

  .ps-xl-1{
    padding-left:0.25rem !important;
  }

  .ps-xl-2{
    padding-left:0.5rem !important;
  }

  .ps-xl-3{
    padding-left:1rem !important;
  }

  .ps-xl-4{
    padding-left:1.5rem !important;
  }

  .ps-xl-5{
    padding-left:3rem !important;
  }
}
@media (min-width: 1400px){
  .d-xxl-inline{
    display:inline !important;
  }

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

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

  .d-xxl-grid{
    display:grid !important;
  }

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

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

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

  .d-xxl-flex{
    display:flex !important;
  }

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

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

  .flex-xxl-fill{
    flex:1 1 auto !important;
  }

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

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

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

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

  .flex-xxl-grow-0{
    flex-grow:0 !important;
  }

  .flex-xxl-grow-1{
    flex-grow:1 !important;
  }

  .flex-xxl-shrink-0{
    flex-shrink:0 !important;
  }

  .flex-xxl-shrink-1{
    flex-shrink:1 !important;
  }

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

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

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

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

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

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

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

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

  .justify-content-xxl-evenly{
    justify-content:space-evenly !important;
  }

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

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

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

  .align-items-xxl-baseline{
    align-items:baseline !important;
  }

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

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

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

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

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

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

  .align-content-xxl-stretch{
    align-content:stretch !important;
  }

  .align-self-xxl-auto{
    align-self:auto !important;
  }

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

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

  .align-self-xxl-center{
    align-self:center !important;
  }

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

  .align-self-xxl-stretch{
    align-self:stretch !important;
  }

  .order-xxl-first{
    order:-1 !important;
  }

  .order-xxl-0{
    order:0 !important;
  }

  .order-xxl-1{
    order:1 !important;
  }

  .order-xxl-2{
    order:2 !important;
  }

  .order-xxl-3{
    order:3 !important;
  }

  .order-xxl-4{
    order:4 !important;
  }

  .order-xxl-5{
    order:5 !important;
  }

  .order-xxl-last{
    order:6 !important;
  }

  .m-xxl-0{
    margin:0 !important;
  }

  .m-xxl-1{
    margin:0.25rem !important;
  }

  .m-xxl-2{
    margin:0.5rem !important;
  }

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

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

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

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

  .mx-xxl-0{
    margin-right:0 !important;
    margin-left:0 !important;
  }

  .mx-xxl-1{
    margin-right:0.25rem !important;
    margin-left:0.25rem !important;
  }

  .mx-xxl-2{
    margin-right:0.5rem !important;
    margin-left:0.5rem !important;
  }

  .mx-xxl-3{
    margin-right:1rem !important;
    margin-left:1rem !important;
  }

  .mx-xxl-4{
    margin-right:1.5rem !important;
    margin-left:1.5rem !important;
  }

  .mx-xxl-5{
    margin-right:3rem !important;
    margin-left:3rem !important;
  }

  .mx-xxl-auto{
    margin-right:auto !important;
    margin-left:auto !important;
  }

  .my-xxl-0{
    margin-top:0 !important;
    margin-bottom:0 !important;
  }

  .my-xxl-1{
    margin-top:0.25rem !important;
    margin-bottom:0.25rem !important;
  }

  .my-xxl-2{
    margin-top:0.5rem !important;
    margin-bottom:0.5rem !important;
  }

  .my-xxl-3{
    margin-top:1rem !important;
    margin-bottom:1rem !important;
  }

  .my-xxl-4{
    margin-top:1.5rem !important;
    margin-bottom:1.5rem !important;
  }

  .my-xxl-5{
    margin-top:3rem !important;
    margin-bottom:3rem !important;
  }

  .my-xxl-auto{
    margin-top:auto !important;
    margin-bottom:auto !important;
  }

  .mt-xxl-0{
    margin-top:0 !important;
  }

  .mt-xxl-1{
    margin-top:0.25rem !important;
  }

  .mt-xxl-2{
    margin-top:0.5rem !important;
  }

  .mt-xxl-3{
    margin-top:1rem !important;
  }

  .mt-xxl-4{
    margin-top:1.5rem !important;
  }

  .mt-xxl-5{
    margin-top:3rem !important;
  }

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

  .me-xxl-0{
    margin-right:0 !important;
  }

  .me-xxl-1{
    margin-right:0.25rem !important;
  }

  .me-xxl-2{
    margin-right:0.5rem !important;
  }

  .me-xxl-3{
    margin-right:1rem !important;
  }

  .me-xxl-4{
    margin-right:1.5rem !important;
  }

  .me-xxl-5{
    margin-right:3rem !important;
  }

  .me-xxl-auto{
    margin-right:auto !important;
  }

  .mb-xxl-0{
    margin-bottom:0 !important;
  }

  .mb-xxl-1{
    margin-bottom:0.25rem !important;
  }

  .mb-xxl-2{
    margin-bottom:0.5rem !important;
  }

  .mb-xxl-3{
    margin-bottom:1rem !important;
  }

  .mb-xxl-4{
    margin-bottom:1.5rem !important;
  }

  .mb-xxl-5{
    margin-bottom:3rem !important;
  }

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

  .ms-xxl-0{
    margin-left:0 !important;
  }

  .ms-xxl-1{
    margin-left:0.25rem !important;
  }

  .ms-xxl-2{
    margin-left:0.5rem !important;
  }

  .ms-xxl-3{
    margin-left:1rem !important;
  }

  .ms-xxl-4{
    margin-left:1.5rem !important;
  }

  .ms-xxl-5{
    margin-left:3rem !important;
  }

  .ms-xxl-auto{
    margin-left:auto !important;
  }

  .p-xxl-0{
    padding:0 !important;
  }

  .p-xxl-1{
    padding:0.25rem !important;
  }

  .p-xxl-2{
    padding:0.5rem !important;
  }

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

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

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

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

  .px-xxl-1{
    padding-right:0.25rem !important;
    padding-left:0.25rem !important;
  }

  .px-xxl-2{
    padding-right:0.5rem !important;
    padding-left:0.5rem !important;
  }

  .px-xxl-3{
    padding-right:1rem !important;
    padding-left:1rem !important;
  }

  .px-xxl-4{
    padding-right:1.5rem !important;
    padding-left:1.5rem !important;
  }

  .px-xxl-5{
    padding-right:3rem !important;
    padding-left:3rem !important;
  }

  .py-xxl-0{
    padding-top:0 !important;
    padding-bottom:0 !important;
  }

  .py-xxl-1{
    padding-top:0.25rem !important;
    padding-bottom:0.25rem !important;
  }

  .py-xxl-2{
    padding-top:0.5rem !important;
    padding-bottom:0.5rem !important;
  }

  .py-xxl-3{
    padding-top:1rem !important;
    padding-bottom:1rem !important;
  }

  .py-xxl-4{
    padding-top:1.5rem !important;
    padding-bottom:1.5rem !important;
  }

  .py-xxl-5{
    padding-top:3rem !important;
    padding-bottom:3rem !important;
  }

  .pt-xxl-0{
    padding-top:0 !important;
  }

  .pt-xxl-1{
    padding-top:0.25rem !important;
  }

  .pt-xxl-2{
    padding-top:0.5rem !important;
  }

  .pt-xxl-3{
    padding-top:1rem !important;
  }

  .pt-xxl-4{
    padding-top:1.5rem !important;
  }

  .pt-xxl-5{
    padding-top:3rem !important;
  }

  .pe-xxl-0{
    padding-right:0 !important;
  }

  .pe-xxl-1{
    padding-right:0.25rem !important;
  }

  .pe-xxl-2{
    padding-right:0.5rem !important;
  }

  .pe-xxl-3{
    padding-right:1rem !important;
  }

  .pe-xxl-4{
    padding-right:1.5rem !important;
  }

  .pe-xxl-5{
    padding-right:3rem !important;
  }

  .pb-xxl-0{
    padding-bottom:0 !important;
  }

  .pb-xxl-1{
    padding-bottom:0.25rem !important;
  }

  .pb-xxl-2{
    padding-bottom:0.5rem !important;
  }

  .pb-xxl-3{
    padding-bottom:1rem !important;
  }

  .pb-xxl-4{
    padding-bottom:1.5rem !important;
  }

  .pb-xxl-5{
    padding-bottom:3rem !important;
  }

  .ps-xxl-0{
    padding-left:0 !important;
  }

  .ps-xxl-1{
    padding-left:0.25rem !important;
  }

  .ps-xxl-2{
    padding-left:0.5rem !important;
  }

  .ps-xxl-3{
    padding-left:1rem !important;
  }

  .ps-xxl-4{
    padding-left:1.5rem !important;
  }

  .ps-xxl-5{
    padding-left:3rem !important;
  }
}
@media print{
  .d-print-inline{
    display:inline !important;
  }

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

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

  .d-print-grid{
    display:grid !important;
  }

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

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

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

  .d-print-flex{
    display:flex !important;
  }

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

  .d-print-none{
    display:none !important;
  }
}
*,
::before,
::after{
  box-sizing:border-box;
  border-style:solid;
  border-width:0;
}
html{
  line-height:1.15;
  -webkit-text-size-adjust:100%;
  -webkit-tap-highlight-color:transparent;
}
body{
  margin:0;
}
main{
  display:block;
}
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl{
  margin:0;
}
h1,
h2,
h3,
h4,
h5,
h6{
  font-size:inherit;
  font-weight:inherit;
  margin:0;
}
ul,
ol{
  margin:0;
  padding:0;
  list-style:none;
}
dt{
  font-weight:bold;
}

dd{
  margin-left:0;
}
hr{
  box-sizing:content-box;
  height:0;
  overflow:visible;
  border-top-width:1px;
  margin:0;
  clear:both;
  color:inherit;
}
pre{
  font-family:monospace, monospace;
  font-size:inherit;
}

address{
  font-style:inherit;
}
a{
  background-color:transparent;
  text-decoration:none;
  color:inherit;
}
abbr[title]{
  -webkit-text-decoration:underline dotted;
          text-decoration:underline dotted;
}
b,
strong{
  font-weight:bolder;
}
code,
kbd,
samp{
  font-family:monospace, monospace;
  font-size:inherit;
}
small{
  font-size:80%;
}
sub,
sup{
  font-size:75%;
  line-height:0;
  position:relative;
  vertical-align:baseline;
}

sub{
  bottom:-0.25em;
}

sup{
  top:-0.5em;
}
svg,
img,
embed,
object,
iframe{
  vertical-align:bottom;
}
button,
input,
optgroup,
select,
textarea{
  -webkit-appearance:none;
  appearance:none;
  vertical-align:middle;
  color:inherit;
  font:inherit;
  background:transparent;
  padding:0;
  margin:0;
  border-radius:0;
  text-align:inherit;
  text-transform:inherit;
}
[type=checkbox]{
  -webkit-appearance:checkbox;
  appearance:checkbox;
}

[type=radio]{
  -webkit-appearance:radio;
  appearance:radio;
}
button,
[type=button],
[type=reset],
[type=submit]{
  cursor:pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled{
  cursor:default;
}
:-moz-focusring{
  outline:auto;
}

select:disabled{
  opacity:inherit;
}
option{
  padding:0;
}
fieldset{
  margin:0;
  padding:0;
  min-width:0;
}

legend{
  padding:0;
}
progress{
  vertical-align:baseline;
}
textarea{
  overflow:auto;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button{
  height:auto;
}
[type=search]{
  outline-offset:-2px;
}
[type=search]::-webkit-search-decoration{
  -webkit-appearance:none;
}
::-webkit-file-upload-button{
  -webkit-appearance:button;
  font:inherit;
}
label[for]{
  cursor:pointer;
}
details{
  display:block;
}
summary{
  display:list-item;
}
[contenteditable]:focus{
  outline:auto;
}
table{
  border-color:inherit;
  border-collapse:collapse;
}

caption{
  text-align:left;
}

td,
th{
  vertical-align:top;
  padding:0;
}

th{
  text-align:left;
  font-weight:bold;
}

.tns-outer{
  padding:0 !important;
}

.tns-outer [hidden]{
  display:none !important;
}

.tns-outer [aria-controls], .tns-outer [data-action]{
  cursor:pointer;
}

.tns-slider{
  transition:all 0s;
}

.tns-slider > .tns-item{
  box-sizing:border-box;
}

.tns-horizontal.tns-subpixel{
  white-space:nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item{
  display:inline-block;
  vertical-align:top;
  white-space:normal;
}

.tns-horizontal.tns-no-subpixel:after{
  content:"";
  display:table;
  clear:both;
}

.tns-horizontal.tns-no-subpixel > .tns-item{
  float:left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item{
  margin-right:-100%;
}

.tns-no-calc{
  position:relative;
  left:0;
}

.tns-gallery{
  position:relative;
  left:0;
  min-height:1px;
}

.tns-gallery > .tns-item{
  position:absolute;
  left:-100%;
  transition:transform 0s, opacity 0s;
}

.tns-gallery > .tns-slide-active{
  position:relative;
  left:auto !important;
}

.tns-gallery > .tns-moving{
  transition:all 0.25s;
}

.tns-autowidth{
  display:inline-block;
}

.tns-lazy-img{
  transition:opacity 0.6s;
  opacity:0.6;
}

.tns-lazy-img.tns-complete{
  opacity:1;
}

.tns-ah{
  transition:height 0s;
}

.tns-ovh{
  overflow:hidden;
}

.tns-visually-hidden{
  position:absolute;
  left:-10000em;
}

.tns-transparent{
  opacity:0;
  visibility:hidden;
}

.tns-fadeIn{
  opacity:1;
  filter:alpha(opacity=100);
  z-index:0;
}

.tns-normal, .tns-fadeOut{
  opacity:0;
  filter:alpha(opacity=0);
  z-index:-1;
}

.tns-vpfix{
  white-space:nowrap;
}

.tns-vpfix > div, .tns-vpfix > li{
  display:inline-block;
}

.tns-t-subp2{
  margin:0 auto;
  width:310px;
  position:relative;
  height:10px;
  overflow:hidden;
}

.tns-t-ct{
  width:2333.3333333%;
  width:-moz-calc(100% * 70 / 3);
  width:2333.3333333333%;
  position:absolute;
  right:0;
}

.tns-t-ct:after{
  content:"";
  display:table;
  clear:both;
}

.tns-t-ct > div{
  width:1.4285714%;
  width:-moz-calc(100% / 70);
  width:1.4285714286%;
  height:10px;
  float:left;
}
.bg-deep{
  background-color:#1c1c1c !important;
}

.bg-soft{
  background-color:#323232 !important;
}

.bg-peel{
  background-color:#f28c00 !important;
}

.bg-milk{
  background-color:#fff !important;
}

.bg-dusty{
  background-color:#989898 !important;
}

.bg-cool{
  background-color:#bec7cb !important;
}

.bg-metal{
  background-color:#e3e7e9 !important;
}

.bg-silver{
  background-color:#f1f3f4 !important;
}

.bg-negative{
  background-color:#ed5153 !important;
}

.bg-positive{
  background-color:#01c383 !important;
}

.bg-carbon{
  background-color:#000 !important;
}

.bg-deep *:not(.btn):not(.form-control),
.bg-peel *:not(.btn):not(.form-control){
  color:#fff;
}

.text-deep{
  font-weight:700;
  color:#1c1c1c !important;
}
.text-deep > *{
  color:inherit;
}

.text-soft{
  font-weight:700;
  color:#323232 !important;
}
.text-soft > *{
  color:inherit;
}

.text-peel{
  font-weight:700;
  color:#f28c00 !important;
}
.text-peel > *{
  color:inherit;
}

.text-milk{
  font-weight:700;
  color:#fff !important;
}
.text-milk > *{
  color:inherit;
}

:root{
  --size-accordion-indicator:16px;
  --size-cross-check-icon:20px;
  --size-form-check-indicator:16px;
  --size-touch-point:42px;
  --size-spinner:30px;
  --size-counter:16px;
  --size-slider-nav:12px;
  --size-brand-view-img:80px;
  --width-btn-toggle-icon:25px;
  --width-menu:340px;
  --width-search:calc(100vw - (var(--pi-container) * 2));
  --width-product-image-container:70px;
  --height-logo:35px;
  --height-badge:28px;
  --height-autocomplete-suggest:55px;
  --height-autocomplete-product:80px;
  --height-control:47px;
  --height-control-search:44px;
  --height-topbar:30px;
  --height-navbar:60px;
  --height-input-group:65px;
  --height-tabs-opc:70px;
  --height-hero-countdown:55px;
  --height-cat:115px;
  --height-tab-link:70px;
  --border-radius:5px;
  --border-radius-big:10px;
  --border-radius-huge:15px;
  --mbs-btn:20px;
  --mbs-nav-item:22px;
  --mbs-nav-item-sub:var(--mbs-nav-item);
  --mbs-nav-item-sub-sub:10px;
  --mbs-nav-item-small:24px;
  --mis-nav-el:20px;
  --mbs-product-link:15px;
  --mbs-tns-nav:25px;
  --pi-btn:20px;
  --pi-form-control:16px;
  --pb-form-control:10px;
  --pb-accordion:25px;
  --pie-accordion:60px;
  --pis-accordion:30px;
  --p-checkout:30px;
  --pbs-product-item-details:0;
  --pi-product-item-details:15px;
  --pbe-product-item-details:25px;
  --pb-hero-default-content:30px;
  --pi-minicart-quote:30px;
  --fs-base:14px;
  --fs-intro:18px;
  --fs-small:12px;
  --fs-h1:28px;
  --fs-h2:24px;
  --fs-h3:20px;
  --fs-h4:16px;
  --fs-h5:14px;
  --fs-h6:12px;
  --fs-navbar-icon:23px;
  --fs-select-icon:9px;
  --lh-base:26px;
  --lh-intro:32px;
  --lh-small:20px;
  --lh-h1:36px;
  --lh-h2:30px;
  --lh-h3:28px;
  --lh-h4:22px;
  --lh-h5:20px;
  --lh-h6:16px;
  --time-fast:.125s;
  --time-norm:.25s;
  --time-slow:.375s;
  --time-slug:.5s;
  --cubic-bezier:cubic-bezier(.215, .61, .355, 1);
}
@media (min-width: 768px){
  :root{
    --size-brand-view-img:120px;
    --width-search:335px;
    --height-navbar:70px;
    --height-autocomplete-suggest:60px;
    --height-autocomplete-product:105px;
    --mbs-nav-item-sub:30px;
    --mis-nav-el:25px;
    --pb-hero-default-content:120px;
    --pi-minicart-quote:40px;
    --fs-intro:20px;
    --fs-h1:42px;
    --fs-h2:32px;
    --fs-h3:22px;
    --fs-h4:18px;
    --lh-intro:31px;
    --lh-h1:50px;
    --lh-h2:40px;
    --lh-h3:30px;
    --lh-h4:26px;
  }
}
@media (min-width: 992px){
  :root{
    --height-cat:125px;
    --mie-filter-option:30px;
    --mbs-tns-nav:40px;
    --p-checkout:40px;
    --pbs-product-item-details:30px;
    --pi-product-item-details:20px;
  }
}
@media (min-width: 1200px){
  :root{
    --size-counter:20px;
    --size-brand-view-img:160px;
    --width-menu:455px;
    --width-search:490px;
    --width-product-image-container:100px;
    --height-logo:50px;
    --height-topbar:40px;
    --height-navbar:90px;
    --height-control:53px;
    --height-control-search:var(--height-control);
    --height-input-group:77px;
    --height-cat:165px;
    --mbs-nav-item:35px;
    --mbs-nav-item-small:30px;
    --mis-nav-el:30px;
    --mie-filter-option:50px;
    --pb-form-control:15px;
    --fs-base:16px;
    --fs-intro:24px;
    --fs-small:14px;
    --fs-h1:56px;
    --fs-h2:46px;
    --fs-h3:32px;
    --fs-h4:22px;
    --fs-h5:18px;
    --fs-h6:14px;
    --lh-base:28px;
    --lh-small:22px;
    --lh-h1:64px;
    --lh-h2:54px;
    --lh-h3:40px;
    --lh-h4:30px;
    --lh-h5:28px;
    --lh-h6:18px;
  }
}
@media (min-width: 1400px){
  :root{
    --width-menu:415px;
    --width-search:540px;
  }
}

.text-start{
  text-align:left !important;
}

.text-end{
  text-align:right !important;
}

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

@media (min-width: 576px){
  .text-sm-start{
    text-align:left !important;
  }

  .text-sm-end{
    text-align:right !important;
  }

  .text-sm-center{
    text-align:center !important;
  }
}
@media (min-width: 768px){
  .text-md-start{
    text-align:left !important;
  }

  .text-md-end{
    text-align:right !important;
  }

  .text-md-center{
    text-align:center !important;
  }
}
@media (min-width: 992px){
  .text-lg-start{
    text-align:left !important;
  }

  .text-lg-end{
    text-align:right !important;
  }

  .text-lg-center{
    text-align:center !important;
  }
}
@media (min-width: 1200px){
  .text-xl-start{
    text-align:left !important;
  }

  .text-xl-end{
    text-align:right !important;
  }

  .text-xl-center{
    text-align:center !important;
  }
}
@media (min-width: 1400px){
  .text-xxl-start{
    text-align:left !important;
  }

  .text-xxl-end{
    text-align:right !important;
  }

  .text-xxl-center{
    text-align:center !important;
  }
}
*:focus{
  outline:0;
}

::selection{
  background-color:#f28c00;
  color:#fff;
}

html body._has-modal-custom .modal-custom-overlay{
  width:100vw;
  height:100vh;
  position:fixed;
  top:0;
  left:0;
  z-index:899;
}
html.menu-open body, html.modal-open body, html.lightbox-open body, html.minicart-open body, html.miniquote-open body, html.switchers-open body{
  overflow:hidden;
}
@media (max-width: 767.98px){
  html body._has-modal-custom,
html .autocomplete-open body{
    overflow:hidden;
  }
  html body._has-modal-custom .modal-custom-overlay{
    background-color:rgba(51, 51, 51, 0.55);
  }
}

.page-wrapper{
  display:flex;
  flex-direction:column;
  min-height:100vh;
  background-color:#fff;
}

.page-main{
  flex-grow:1;
}
.page-main .page-products .columns{
  position:relative;
}
.page-main .column.main > .order-links{
  display:none;
}
.page-main.sticky{
  width:100%;
  position:fixed;
  bottom:0;
  left:0;
}

.w-100{
  width:100%;
}

.img-fluid{
  max-width:100%;
  height:auto;
}

.grecaptcha-badge{
  display:none !important;
}

body{
  font-family:"proxima-nova", sans-serif;
  font-weight:400;
  font-size:var(--fs-base);
  line-height:var(--lh-base);
  color:#323232;
}

body,
button,
input,
select,
textarea{
  text-rendering:optimizelegibility;
  -webkit-tap-highlight-color:transparent;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-feature-settings:"liga", "kern";
}

h1,
.h1{
  font-family:"proxima-soft", sans-serif;
  font-weight:700;
  color:#1c1c1c;
  font-size:var(--fs-h1);
  line-height:var(--lh-h1);
}

h1 + *,
.h1 + *,
section:not(.hero--default) .page-title-wrapper + *{
  margin-block-start:var(--lh-base);
}

h2,
.h2{
  font-family:"proxima-soft", sans-serif;
  font-weight:700;
  color:#1c1c1c;
  font-size:var(--fs-h2);
  line-height:var(--lh-h2);
}

h2 + *,
h2 + .row,
.h2 + *,
.h2 + .row,
.summary.title + *,
.summary.title + .row,
.opc-block-summary > .title + *,
.opc-block-summary > .title + .row{
  margin-block-start:25px;
}
@media (min-width: 992px){
  h2 + *,
h2 + .row,
.h2 + *,
.h2 + .row,
.summary.title + *,
.summary.title + .row,
.opc-block-summary > .title + *,
.opc-block-summary > .title + .row{
    margin-block-start:35px;
  }
}
@media (min-width: 1200px){
  h2 + *,
h2 + .row,
.h2 + *,
.h2 + .row,
.summary.title + *,
.summary.title + .row,
.opc-block-summary > .title + *,
.opc-block-summary > .title + .row{
    margin-block-start:45px;
  }
}
h2 + p,
.h2 + p,
.summary.title + p,
.opc-block-summary > .title + p{
  margin-block-start:15px;
}
@media (min-width: 1200px){
  h2 + p,
.h2 + p,
.summary.title + p,
.opc-block-summary > .title + p{
    margin-block-start:30px;
  }
}

h3,
.h3{
  font-family:"proxima-soft", sans-serif;
  font-weight:700;
  color:#1c1c1c;
  font-size:var(--fs-h3);
  line-height:var(--lh-h3);
}
h3 + *,
h3 + *[style*="display: none"] + *,
.h3 + *,
.h3 + *[style*="display: none"] + *{
  margin-block-start:15px;
}

h4,
.h4{
  font-family:"proxima-soft", sans-serif;
  font-weight:700;
  color:#1c1c1c;
  font-size:var(--fs-h4);
  line-height:var(--lh-h4);
}
h4 + *,
.h4 + *{
  margin-block-start:5px;
}

h5,
.h5{
  font-family:"proxima-soft", sans-serif;
  font-weight:700;
  color:#1c1c1c;
  font-size:var(--fs-h5);
  line-height:var(--lh-h5);
}
h5 + *,
.h5 + *{
  margin-block-start:5px;
}

h6,
.h6,
.hero--default .page-title-wrapper:not(:only-child){
  font-family:"proxima-soft", sans-serif;
  font-weight:700;
  color:#1c1c1c;
  font-size:var(--fs-h6);
  line-height:var(--lh-h6);
  text-transform:uppercase;
  letter-spacing:1px;
}
h6 + *,
.h6 + *,
.hero--default .page-title-wrapper:not(:only-child) + *{
  margin-block-start:8px;
}
@media (min-width: 1200px){
  h6 + *,
.h6 + *,
.hero--default .page-title-wrapper:not(:only-child) + *{
    margin-block-start:15px;
  }
}

.hero--default .page-title-wrapper:not(:only-child) .page-title,
.section--description .page-title-wrapper:not(:only-child) .page-title{
  font-size:var(--fs-small);
  line-height:var(--lh-small);
  font-family:"proxima-soft", sans-serif;
  font-weight:700;
  color:#f28c00;
  text-transform:uppercase;
  letter-spacing:0.72px;
}
@media (min-width: 992px){
  .hero--default .page-title-wrapper:not(:only-child) .page-title,
.section--description .page-title-wrapper:not(:only-child) .page-title{
    letter-spacing:1.4px;
  }
}

@font-face{
  font-family:"babymax-icons";
  src:url("../fonts/babymax-icons.woff2?uhlnt7") format("woff2"), url("../fonts/babymax-icons.ttf?uhlnt7") format("truetype"), url("../fonts/babymax-icons.woff?uhlnt7") format("woff"), url("../fonts/babymax-icons.svg?uhlnt7#babymax-icons") format("svg");
  font-weight:normal;
  font-style:normal;
  font-display:block;
}
[class^=icon-], [class*=" icon-"]{
  font-family:"babymax-icons" !important;
  speak:never;
  font-style:normal;
  font-weight:normal;
  font-variant:normal;
  text-transform:none;
  line-height:1;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.icon-tiktok:before{
  content:"\e935";
}

.icon-checkmark_black .path1:before{
  content:"\e933";
  color:#323232;
}

.icon-checkmark_black .path2:before{
  content:"\e934";
  margin-left:-1em;
  color:#f8f9f9;
}

.icon-box:before{
  content:"\e900";
}

.icon-buggy:before{
  content:"\e901";
}

.icon-car-seat:before{
  content:"\e902";
}

.icon-chair:before{
  content:"\e903";
}

.icon-chat:before{
  content:"\e904";
}

.icon-chat-o:before{
  content:"\e905";
}

.icon-check:before{
  content:"\e906";
}

.icon-check-o:before{
  content:"\e907";
}

.icon-chevron-down:before{
  content:"\e908";
}

.icon-chevron-left:before{
  content:"\e909";
}

.icon-chevron-right:before{
  content:"\e90a";
}

.icon-chevron-up:before{
  content:"\e90b";
}

.icon-clipboard:before{
  content:"\e90c";
}

.icon-credit-card:before{
  content:"\e90d";
}

.icon-crib:before{
  content:"\e90e";
}

.icon-cross:before{
  content:"\e90f";
}

.icon-discount:before{
  content:"\e910";
}

.icon-envelope:before{
  content:"\e911";
}

.icon-envelope-o:before{
  content:"\e912";
}

.icon-exit:before{
  content:"\e913";
}

.icon-filter:before{
  content:"\e914";
}

.icon-gear:before{
  content:"\e915";
}

.icon-liquid:before{
  content:"\e916";
}

.icon-marker:before{
  content:"\e917";
}

.icon-minus:before{
  content:"\e918";
}

.icon-pencil:before{
  content:"\e919";
}

.icon-phone:before{
  content:"\e91a";
}

.icon-plus:before{
  content:"\e91b";
}

.icon-quote:before{
  content:"\e91c";
}

.icon-reload:before{
  content:"\e91d";
}

.icon-search:before{
  content:"\e91e";
}

.icon-seesaw:before{
  content:"\e91f";
}

.icon-shop:before{
  content:"\e920";
}

.icon-social-facebook:before{
  content:"\e921";
}

.icon-social-facebook-round:before{
  content:"\e922";
}

.icon-social-instagram:before{
  content:"\e923";
}

.icon-social-linkedin:before{
  content:"\e924";
}

.icon-social-linkedin-square:before{
  content:"\e925";
}

.icon-social-pinterest:before{
  content:"\e926";
}

.icon-social-share:before{
  content:"\e927";
}

.icon-social-twitter:before{
  content:"\e928";
}

.icon-social-whatsapp:before{
  content:"\e929";
}

.icon-social-youtube:before{
  content:"\e92a";
}

.icon-stopwatch:before{
  content:"\e92b";
}

.icon-stroller:before{
  content:"\e92c";
}

.icon-stroller-alt:before{
  content:"\e92d";
}

.icon-stroller-simple:before{
  content:"\e92e";
}

.icon-trash:before{
  content:"\e92f";
}

.icon-truck:before{
  content:"\e930";
}

.icon-user:before{
  content:"\e931";
}

.icon-wheel:before{
  content:"\e932";
}

.page-main p:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.page-main small:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.page-main table:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.page-main blockquote:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.page-main .list-styled:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.page-main .accordion .accordion__content ul:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.page-main .accordion .accordion__content ol:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.section--subscribe p:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.section--subscribe small:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.section--subscribe table:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.section--subscribe blockquote:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.section--subscribe .list-styled:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.page-main .accordion .accordion__content .section--subscribe ul:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section),
.page-main .accordion .accordion__content .section--subscribe ol:not([style*="display: none"]) + *:not(.show-more__btn):not(.field):not(.price-to):not(.section){
  margin-block-start:var(--lh-base);
}

b,
strong{
  font-weight:700;
}

small{
  font-size:var(--fs-small);
  line-height:var(--lh-small);
}

.intro{
  font-size:var(--fs-intro);
  line-height:var(--lh-intro);
}

ul.list-styled > li, .page-main .accordion .accordion__content ul > li,
ol.list-styled > li,
.page-main .accordion .accordion__content ol > li{
  padding-inline-start:20px;
  position:relative;
}
ul.list-styled > li::before, .page-main .accordion .accordion__content ul > li::before,
ol.list-styled > li::before,
.page-main .accordion .accordion__content ol > li::before{
  position:absolute;
  top:0;
  left:0;
}
@media (min-width: 1200px){
  ul.list-styled > li, .page-main .accordion .accordion__content ul > li,
ol.list-styled > li,
.page-main .accordion .accordion__content ol > li{
    padding-inline-start:30px;
  }
}

ul.list-styled > li::before, .page-main .accordion .accordion__content ul > li::before{
  content:"•";
  font-size:25px;
  color:#f28c00;
  top:-1px;
}
ul.list-check > li, ul.list-cross > li{
  padding-inline-start:calc(var(--size-cross-check-icon) + 15px);
  position:relative;
}
ul.list-check > li::before, ul.list-cross > li::before{
  display:flex;
  align-items:center;
  justify-content:center;
  width:var(--size-cross-check-icon);
  height:var(--size-cross-check-icon);
  border-radius:50%;
  background-color:#323232;
  font-family:"babymax-icons";
  font-size:10px;
  line-height:1;
  color:#fff;
  position:absolute;
  top:calc((var(--lh-base) - var(--fs-base)) / 4);
  left:0;
}
ul.list-check > li + li, ul.list-cross > li + li{
  margin-block-start:5px;
}
ul.list-check > li::before{
  content:"\e906";
}

ol.list-styled,
.page-main .accordion .accordion__content ol{
  counter-reset:ol-counter;
}
ol.list-styled > li,
.page-main .accordion .accordion__content ol > li{
  counter-increment:ol-counter;
}
ol.list-styled > li::before,
.page-main .accordion .accordion__content ol > li::before{
  content:counter(ol-counter) ". ";
  font-weight:700;
}

figcaption{
  font-size:var(--fs-small);
  line-height:var(--lh-small);
  margin-block-start:10px;
  font-style:italic;
}
@media (min-width: 768px){
  figcaption{
    margin-block-start:15px;
  }
}

p a,
small a,
.form-check__text a,
.link,
.box-actions a{
  text-decoration:underline;
}
@media (hover: hover) and (pointer: fine){
  p a,
small a,
.form-check__text a,
.link,
.box-actions a{
    transition:color var(--time-fast) ease-out;
  }
}

p a,
small a,
.box-actions a{
  color:#f28c00;
}
@media (hover: hover) and (pointer: fine){
  p a:hover,
small a:hover,
.box-actions a:hover{
    color:#323232;
  }
}

@media (hover: hover) and (pointer: fine){
  .form-check__text a:hover,
.link:hover{
    color:#f28c00;
  }
}

.collapse:not(.show){
  display:none;
}

.collapsing{
  overflow:hidden;
  height:0;
  transition:height var(--time-norm) ease;
}

@keyframes rotate{
  0%{
    transform:rotate(0);
  }
  100%{
    transform:rotate(360deg);
  }
}
.accordion{
  border:1px solid #e3e7e9;
  background:#fff;
  text-align:left;
}
.accordion .accordion__summary,
.accordion .accordion__content{
  padding-block-end:20px;
  padding-inline-start:20px;
  padding-inline-end:55px;
}
.accordion .accordion__summary{
  display:flex;
  align-items:center;
  padding-block-start:20px;
  background:#fff;
  cursor:pointer;
  position:relative;
}
.accordion .accordion__summary::marker, .accordion .accordion__summary::-webkit-details-marker{
  display:none;
}
.accordion .accordion__summary .accordion__summary__title + *{
  margin-block-start:0;
}
.accordion .accordion__summary i{
  position:absolute;
  top:50%;
  transition:transform var(--time-norm) ease-out;
  transform:translateY(-50%);
}
.accordion .accordion__summary i.accordion__summary__icon{
  width:var(--size-accordion-indicator);
  height:var(--size-accordion-indicator);
  right:calc((var(--pie-accordion) - var(--size-accordion-indicator)) / 2);
}
.accordion .accordion__summary i.accordion__summary__icon::before, .accordion .accordion__summary i.accordion__summary__icon::after{
  border-radius:1px;
  background-color:#1c1c1c;
  content:"";
  position:absolute;
}
.accordion .accordion__summary i.accordion__summary__icon::before{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  left:0;
  right:auto;
  width:100%;
  height:2px;
}
.accordion .accordion__summary i.accordion__summary__icon::after{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:0;
  bottom:auto;
  width:2px;
  height:100%;
  transition:opacity var(--time-norm) ease-out;
}
.accordion .accordion__summary i.icon-chevron-down{
  font-size:10px;
  right:20px;
}
.accordion + .accordion{
  margin-block-start:-1px;
}
.accordion + .accordion-group-title{
  margin-block-start:50px;
  scroll-margin-block-start:calc(var(--height-topbar) + var(--height-navbar));
}
.accordion.open .accordion__summary i.accordion__summary__icon{
  transform:translateY(-50%) rotate(180deg);
}
.accordion.open .accordion__summary i.accordion__summary__icon::after{
  opacity:0;
}
.accordion.open .accordion__summary i.icon-chevron-down{
  transform:translateY(-50%) scaleY(-1);
}
@media (min-width: 768px){
  .accordion + .accordion-group-title{
    margin-block-start:60px;
  }
}
@media (min-width: 1200px){
  .accordion .accordion__summary,
.accordion .accordion__content{
    padding-block-end:25px;
    padding-inline-start:25px;
    padding-inline-end:68px;
  }
  .accordion .accordion__summary{
    padding-block-start:25px;
  }
  .accordion .accordion__summary::after{
    font-size:18px;
  }
  .accordion + .accordion-group-title{
    margin-block-start:90px;
  }
}

.badges-wrap,
.aw-onsale__label-wrap{
  display:flex;
  flex-wrap:wrap;
  margin-block-end:-10px;
}

.badges-wrap .badge{
  margin-block-end:10px;
}
.badges-wrap .badge:not(:last-of-type){
  margin-inline-end:10px;
}
.hero .badges-wrap, .section--widget .badges-wrap{
  justify-content:center;
}

.aw-onsale__label-wrap .label-block{
  margin-block-end:10px;
}
.aw-onsale__label-wrap .label-block:not(:last-of-type){
  margin-inline-end:10px;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  font-family:"proxima-soft", sans-serif;
  font-weight:700;
  font-size:10px;
  line-height:14px;
  color:#1c1c1c;
  text-transform:uppercase;
  letter-spacing:1px;
  white-space:nowrap;
  position:relative;
}
.badge *{
  z-index:1;
}
.badge[class*=badge--], .badge[class*=rectangle]{
  height:var(--height-badge);
  padding-inline-start:15px;
  padding-inline-end:15px;
}
.badge.badge--default, .badge.rectangle-with-bevel-down{
  background-color:#f1f3f4;
}
.badge.badge--milk{
  background-color:#fff;
}
.badge.badge--peel, .badge.rectangle-with-bevel-up{
  background-color:#f28c00;
}
.badge.badge--soft, .badge.rectangle{
  background-color:#323232;
}
.badge.badge--peel, .badge.badge--soft, .badge.rectangle-with-bevel-up, .badge.rectangle{
  color:#fff;
}
@media (min-width: 1200px){
  .badge{
    font-size:12px;
    line-height:18px;
  }
}

.btn{
  overflow:hidden;
  display:inline-flex;
  flex-shrink:0;
  align-items:center;
  justify-content:center;
  border:1px solid transparent;
  padding-inline-start:var(--pi-btn);
  padding-inline-end:var(--pi-btn);
  color:#323232;
  white-space:nowrap;
  position:relative;
}
.btn i{
  font-size:1.2em;
}
.btn i[class*=arrow], .btn i[class*=chevron]{
  font-size:7px;
}
.btn:disabled{
  pointer-events:none;
  -webkit-user-select:none;
          user-select:none;
}
@media (hover: hover) and (pointer: fine){
  .btn{
    transition:all var(--time-fast) ease-out;
  }
  .btn::before{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:100%;
    bottom:auto;
    width:147.02970297%;
    min-width:300px;
    height:300px;
    border-radius:50%;
    content:"";
    transition:transform var(--time-norm) linear;
  }
  .btn *{
    z-index:1;
  }
  .btn:hover::before{
    transform:translate(-50%, calc(-1 * (var(--height-control) + 92px)));
  }
}
.btn:not(:last-of-type){
  margin-inline-end:10px;
}
.btn.btn--il i{
  margin-inline-end:10px;
}
.btn.btn--ir i{
  margin-inline-start:10px;
}
.btn.btn--primary, .btn.btn--secondary, .btn.btn--light, .btn.btn--to-top{
  font-family:"proxima-soft", sans-serif;
  font-weight:700;
  color:#1c1c1c;
  font-size:var(--fs-h6);
  line-height:var(--lh-h6);
  text-transform:uppercase;
  letter-spacing:1px;
}
.btn.btn--primary, .btn.btn--secondary, .btn.btn--light, .btn.btn--io{
  height:var(--height-control);
}
.btn.btn--primary, .btn.btn--secondary, .btn.btn--light{
  border-radius:var(--border-radius);
}
@media (max-width: 575.98px){
  .btn.btn--primary + .btn, .btn.btn--secondary + .btn, .btn.btn--light + .btn{
    margin-block-start:15px;
  }
}
.btn.btn--primary, .btn.btn--secondary{
  color:#fff;
}
.btn.btn--primary{
  border-color:#f28c00;
  background-color:#f28c00;
}
@media (hover: hover) and (pointer: fine){
  .btn.btn--primary::before{
    opacity:0.2;
    background:transparent linear-gradient(287deg, #1c1c1c 0%, rgba(28, 28, 28, 0.97) 14%, #1c1c1c 100%) 0% 0% no-repeat padding-box;
  }
}
.btn.btn--secondary{
  border-color:#1c1c1c;
  background-color:#1c1c1c;
}
@media (hover: hover) and (pointer: fine){
  .btn.btn--secondary::before{
    background:transparent linear-gradient(287deg, #323232 0%, #323232 14%, #1c1c1c 100%) 0% 0% no-repeat padding-box;
  }
}
.btn.btn--light, .btn.btn--io{
  border-color:#e3e7e9;
}
@media (hover: hover) and (pointer: fine){
  .btn.btn--light::before, .btn.btn--io::before{
    background:transparent linear-gradient(180deg, #f1f3f4 0%, #f1f3f4 100%, #fff 100%) 0% 0% no-repeat padding-box;
  }
}
.btn.btn--light.btn--light--spinner{
  width:var(--height-control);
  margin:0;
  padding:0;
  background-color:#fff;
}
.btn.btn--light.btn--light--spinner::after{
  font-family:"babymax-icons";
  line-height:1;
  z-index:1;
}
.btn.btn--light.btn--light--spinner:disabled{
  color:#e3e7e9;
}
.btn.btn--light.btn--light--spinner.btn--light--spinner--left{
  border-top-right-radius:0;
  border-bottom-right-radius:0;
}
.btn.btn--light.btn--light--spinner.btn--light--spinner--left::after{
  content:"\e918";
  font-size:14px;
}
.btn.btn--light.btn--light--spinner.btn--light--spinner--right{
  border-top-left-radius:0;
  border-bottom-left-radius:0;
}
.btn.btn--light.btn--light--spinner.btn--light--spinner--right::after{
  content:"\e91b";
  font-size:14px;
}
.bg-deep .btn.btn--light.btn--light--spinner{
  border-color:#323232;
  border-block-start:0;
  border-block-end:0;
  background-color:rgba(50, 50, 50, 0.5);
  color:#fff;
}
.bg-deep .btn.btn--light.btn--light--spinner.btn--light--spinner--left{
  border-inline-start:0;
}
.bg-deep .btn.btn--light.btn--light--spinner.btn--light--spinner--right{
  border-inline-end:0;
}
.btn.btn--io{
  width:var(--height-control);
  border-radius:50%;
}
.btn.btn--io i{
  transition:color var(--time-slow) ease-out;
}
.btn.btn--io i:not([class*=arrow]):not([class*=chevron]){
  font-size:17px;
}
.btn.btn--io i:not([class*=arrow]):not([class*=chevron]).icon-social-facebook{
  font-size:20px;
}
.btn.btn--io.btn--io--light, .btn.btn--io.btn--io--dark{
  width:50px;
  height:50px;
}
.btn.btn--io.btn--io--light i:not([class*=arrow]):not([class*=chevron]), .btn.btn--io.btn--io--dark i:not([class*=arrow]):not([class*=chevron]){
  font-size:28px;
}
.btn.btn--io.btn--io--light i:not([class*=arrow]):not([class*=chevron]).icon-social-youtube, .btn.btn--io.btn--io--dark i:not([class*=arrow]):not([class*=chevron]).icon-social-youtube{
  font-size:20px;
}
.btn.btn--io.btn--io--light i:not([class*=arrow]):not([class*=chevron]).icon-envelope, .btn.btn--io.btn--io--light i:not([class*=arrow]):not([class*=chevron]).icon-phone, .btn.btn--io.btn--io--light i:not([class*=arrow]):not([class*=chevron]).icon-chat, .btn.btn--io.btn--io--light i:not([class*=arrow]):not([class*=chevron]).icon-shop, .btn.btn--io.btn--io--dark i:not([class*=arrow]):not([class*=chevron]).icon-envelope, .btn.btn--io.btn--io--dark i:not([class*=arrow]):not([class*=chevron]).icon-phone, .btn.btn--io.btn--io--dark i:not([class*=arrow]):not([class*=chevron]).icon-chat, .btn.btn--io.btn--io--dark i:not([class*=arrow]):not([class*=chevron]).icon-shop{
  font-size:24px;
}
.btn.btn--io.btn--io--light{
  border-color:#f1f3f4;
  background-color:#f1f3f4;
}
.btn.btn--io.btn--io--light i{
  color:#bec7cb;
}
.btn.btn--io.btn--io--dark{
  border-color:#323232;
  background-color:#323232;
}
.btn.btn--io.btn--io--dark i{
  color:rgba(255, 255, 255, 0.5);
}

.social-list{
  display:flex;
}

table{
  width:100%;
}
table tr th{
  font-weight:600;
}
table.table-company-info tr th,
table.table-company-info tr td, table.aw-raf__advocate-info-summary tr th,
table.aw-raf__advocate-info-summary tr td{
  width:50%;
}
table.table-company-info tr th:not(:last-child),
table.table-company-info tr td:not(:last-child), table.aw-raf__advocate-info-summary tr th:not(:last-child),
table.aw-raf__advocate-info-summary tr td:not(:last-child){
  padding-inline-end:10px;
}
table.table-company-info tr th:not(:first-child),
table.table-company-info tr td:not(:first-child), table.aw-raf__advocate-info-summary tr th:not(:first-child),
table.aw-raf__advocate-info-summary tr td:not(:first-child){
  padding-inline-start:10px;
}
table.table-company-info tr{
  border-block-start:1px solid #e3e7e9;
}
table.table-company-info tr th,
table.table-company-info tr td{
  padding-block-start:20px;
  padding-block-end:20px;
}
table.table-company-info tr:last-child{
  border-block-end:1px solid #e3e7e9;
}

.table-responsive{
  -webkit-overflow-scrolling:touch;
  overflow-x:auto;
}

.breadcrumbs{
  font-size:var(--fs-small);
  line-height:var(--lh-small);
  color:#1c1c1c;
  position:absolute;
  top:20px;
  left:var(--pi-container);
}
.breadcrumbs .items{
  display:flex;
}
.breadcrumbs .items li{
  white-space:nowrap;
}
.breadcrumbs .items li strong{
  opacity:0.5;
  font-weight:400;
}
.breadcrumbs .items li + li{
  display:flex;
  align-items:center;
  margin-inline-start:15px;
}
.breadcrumbs .items li + li::before{
  opacity:0.5;
  margin-inline-end:15px;
  content:"\e90a";
  font-family:"babymax-icons";
  font-size:11px;
  line-height:1;
}
@media (max-width: 991.98px){
  .breadcrumbs{
    display:none;
  }
}
@media (min-width: 1200px){
  .breadcrumbs{
    top:30px;
  }
}
@media (min-width: 1400px){
  .breadcrumbs{
    left:calc(var(--mi-container) - var(--pi-container));
  }
}

.row.row--form{
  --bs-gutter-x:10px;
}
@media (min-width: 768px){
  .row.row--form{
    --bs-gutter-x:20px;
  }
  .row.row--form + .field--check{
    margin-block-start:5px;
  }
}

fieldset + fieldset{
  margin-block-start:30px;
}

.field,
.swatch-opt,
.form-group{
  margin-block-end:15px;
  position:relative;
}
.field .swatch-attribute-label,
.field > label:not(.form-check):not([for=search]):not([for=search-faq]):not([for*=multisafepay]):not([for*=check]):not([for*=radio]),
.swatch-opt .swatch-attribute-label,
.swatch-opt > label:not(.form-check):not([for=search]):not([for=search-faq]):not([for*=multisafepay]):not([for*=check]):not([for*=radio]),
.form-group .swatch-attribute-label,
.form-group > label:not(.form-check):not([for=search]):not([for=search-faq]):not([for*=multisafepay]):not([for*=check]):not([for*=radio]){
  display:block;
  margin-block-end:5px;
  font-weight:700;
  line-height:normal;
}
.field .swatch-attribute-label::after,
.field > label:not(.form-check):not([for=search]):not([for=search-faq]):not([for*=multisafepay]):not([for*=check]):not([for*=radio])::after,
.swatch-opt .swatch-attribute-label::after,
.swatch-opt > label:not(.form-check):not([for=search]):not([for=search-faq]):not([for*=multisafepay]):not([for*=check]):not([for*=radio])::after,
.form-group .swatch-attribute-label::after,
.form-group > label:not(.form-check):not([for=search]):not([for=search-faq]):not([for*=multisafepay]):not([for*=check]):not([for*=radio])::after{
  content:":";
}
.field .swatch-attribute-label span:last-child:not(:first-child),
.field > label:not(.form-check):not([for=search]):not([for=search-faq]):not([for*=multisafepay]):not([for*=check]):not([for*=radio]) span:last-child:not(:first-child),
.swatch-opt .swatch-attribute-label span:last-child:not(:first-child),
.swatch-opt > label:not(.form-check):not([for=search]):not([for=search-faq]):not([for*=multisafepay]):not([for*=check]):not([for*=radio]) span:last-child:not(:first-child),
.form-group .swatch-attribute-label span:last-child:not(:first-child),
.form-group > label:not(.form-check):not([for=search]):not([for=search-faq]):not([for*=multisafepay]):not([for*=check]):not([for*=radio]) span:last-child:not(:first-child){
  text-transform:lowercase;
}
.field.qty .control,
.field.qty .control > label,
.swatch-opt.qty .control,
.swatch-opt.qty .control > label,
.form-group.qty .control,
.form-group.qty .control > label{
  display:flex;
}

.field.field-name-prefix .form-check:first-child{
  display:none;
}

div.mage-error, div.field-error{
  font-size:var(--fs-small);
  line-height:var(--lh-small);
  display:block;
  margin-block-start:7.5px;
  line-height:normal;
  color:#ed5153 !important;
  text-align:left;
}

.form-check{
  display:inline-flex;
  position:relative;
}
.form-check > *{
  cursor:pointer;
}
.form-check .form-check__indicator{
  display:flex;
  flex-shrink:0;
  align-items:center;
  justify-content:center;
  width:var(--size-form-check-indicator);
  height:var(--size-form-check-indicator);
  border:1px solid #bec7cb;
  background-color:#fff;
  position:relative;
  top:calc((var(--lh-base) - var(--size-form-check-indicator)) / 2);
  transition:border-color var(--time-norm) ease-out, background-color var(--time-norm) ease-out;
}
.form-check .form-check__indicator::after{
  opacity:0;
  width:71.5%;
  height:71.5%;
  background-color:#f28c00;
  content:"";
  transition:transform var(--time-norm) ease-out;
  transform:scale(0);
}
.form-check .form-check__text{
  padding-inline-start:10px;
  -webkit-user-select:none;
          user-select:none;
}
.form-check input{
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  opacity:0;
  z-index:-1;
}
.form-check input:disabled ~ *{
  cursor:default;
}
.form-check input:disabled ~ *.form-check__indicator{
  background-color:rgba(227, 231, 233, 0.5);
}
.form-check input:disabled ~ *.form-check__text{
  color:rgba(50, 50, 50, 0.5);
}
.form-check input:checked ~ .form-check__indicator::after{
  opacity:1;
  transform:scale(1);
}
.form-check input[type=radio] ~ .form-check__indicator{
  border-radius:50%;
}
.form-check input[type=radio] ~ .form-check__indicator::after{
  border-radius:50%;
}
.form-check:not(:last-of-type){
  margin-inline-end:15px;
}

.form-checks-wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.form-checks-wrap .form-check:not(:last-of-type){
  margin-block-end:15px;
  margin-inline-end:0;
}

.form-select__btn, .filter-options-title,
select[data-bind],
.control--country select,
.control--region select,
.form-select__option, .form-control,
.input-text,
.admin__control-textarea{
  display:flex;
  align-items:center;
  width:100%;
  height:var(--height-control);
  border:1px solid #e3e7e9;
  border-radius:var(--border-radius);
  padding-inline-start:var(--pi-form-control);
  padding-inline-end:var(--pi-form-control);
  background-color:#fff;
  color:#323232;
  text-align:left;
}
.form-select__btn::placeholder, .filter-options-title::placeholder,
select[data-bind]::placeholder,
.control--country select::placeholder,
.control--region select::placeholder,
.form-select__option::placeholder, .form-control::placeholder,
.input-text::placeholder,
.admin__control-textarea::placeholder{
  color:rgba(50, 50, 50, 0.5);
}
.form-select__btn:disabled, .filter-options-title:disabled,
select[data-bind]:disabled,
.control--country select:disabled,
.control--region select:disabled,
.form-select__option:disabled, .form-control:disabled,
.input-text:disabled,
.admin__control-textarea:disabled{
  opacity:0.3;
}
.valid.form-select__btn, .valid.filter-options-title,
select.valid[data-bind],
.control--country select.valid,
.control--region select.valid,
.valid.form-select__option, .valid.form-control,
.valid.input-text,
.valid.admin__control-textarea{
  border-color:#01c383 !important;
}
.mage-error.form-select__btn, .mage-error.filter-options-title,
select.mage-error[data-bind],
.control--country select.mage-error,
.control--region select.mage-error,
.mage-error.form-select__option, .mage-error.form-control,
.mage-error.input-text,
.mage-error.admin__control-textarea, [aria-invalid=true].form-select__btn, [aria-invalid=true].filter-options-title,
select[aria-invalid=true][data-bind],
.control--country select[aria-invalid=true],
.control--region select[aria-invalid=true],
[aria-invalid=true].form-select__option, [aria-invalid=true].form-control,
[aria-invalid=true].input-text,
[aria-invalid=true].admin__control-textarea{
  border-color:#ed5153 !important;
}
.qty.form-select__btn, .qty.filter-options-title,
select.qty[data-bind],
.control--country select.qty,
.control--region select.qty,
.qty.form-select__option, .qty.form-control,
.qty.input-text,
.qty.admin__control-textarea, .bg-deep .form-select__btn, .bg-deep .filter-options-title,
.bg-deep select[data-bind],
.bg-deep .control--country select,
.control--country .bg-deep select,
.bg-deep .control--region select,
.control--region .bg-deep select,
.bg-deep .form-select__option, .bg-deep .form-control,
.bg-deep .input-text,
.bg-deep .admin__control-textarea{
  font-family:"proxima-soft", sans-serif;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.72px;
}
.qty.form-select__btn, .qty.filter-options-title,
select.qty[data-bind],
.control--country select.qty,
.control--region select.qty,
.qty.form-select__option, .qty.form-control,
.qty.input-text,
.qty.admin__control-textarea{
  border-width:1px 0;
  border-radius:0;
  text-align:center;
}
.qty.form-select__btn::-webkit-inner-spin-button, .qty.filter-options-title::-webkit-inner-spin-button,
select.qty[data-bind]::-webkit-inner-spin-button,
.control--country select.qty::-webkit-inner-spin-button,
.control--region select.qty::-webkit-inner-spin-button,
.qty.form-select__option::-webkit-inner-spin-button, .qty.form-control::-webkit-inner-spin-button,
.qty.input-text::-webkit-inner-spin-button,
.qty.admin__control-textarea::-webkit-inner-spin-button, .qty.form-select__btn::-webkit-outer-spin-button, .qty.filter-options-title::-webkit-outer-spin-button,
select.qty[data-bind]::-webkit-outer-spin-button,
.control--country select.qty::-webkit-outer-spin-button,
.control--region select.qty::-webkit-outer-spin-button,
.qty.form-select__option::-webkit-outer-spin-button, .qty.form-control::-webkit-outer-spin-button,
.qty.input-text::-webkit-outer-spin-button,
.qty.admin__control-textarea::-webkit-outer-spin-button{
  display:none;
}
.bg-deep .form-select__btn, .bg-deep .filter-options-title,
.bg-deep select[data-bind],
.bg-deep .control--country select,
.control--country .bg-deep select,
.bg-deep .control--region select,
.control--region .bg-deep select,
.bg-deep .form-select__option, .bg-deep .form-control,
.bg-deep .input-text,
.bg-deep .admin__control-textarea{
  font-size:var(--fs-small);
  line-height:var(--lh-small);
  border:0;
  background-color:rgba(50, 50, 50, 0.5);
  color:#fff;
}
.bg-deep .form-select__btn::placeholder, .bg-deep .filter-options-title::placeholder,
.bg-deep select[data-bind]::placeholder,
.bg-deep .control--country select::placeholder,
.control--country .bg-deep select::placeholder,
.bg-deep .control--region select::placeholder,
.control--region .bg-deep select::placeholder,
.bg-deep .form-select__option::placeholder, .bg-deep .form-control::placeholder,
.bg-deep .input-text::placeholder,
.bg-deep .admin__control-textarea::placeholder{
  color:rgba(255, 255, 255, 0.5);
}

textarea{
  display:block;
  height:auto;
  min-height:calc(var(--height-control) * 3);
  padding-block-start:var(--pb-form-control);
  padding-block-end:var(--pb-form-control);
  resize:vertical;
}

.control._with-tooltip{
  display:flex;
  flex-direction:column;
}
.control._with-tooltip .note{
  order:-1;
}

.remarks{
  margin-block-start:15px;
}

.show-remarks-checkbox:not(:checked) ~ .remarks{
  display:none;
}

.input-group{
  overflow:hidden;
  position:relative;
}
.input-group .spinner{
  opacity:0;
  position:absolute;
  top:calc((var(--height-input-group) - var(--size-spinner)) / 2);
  left:calc(100% + 10px);
}
.input-group:not(.coupon):not(.form-discount) .form-control{
  border-radius:var(--border-radius-big);
}
.input-group.coupon .form-control, .input-group.form-discount .form-control{
  padding-inline-end:135px;
}
.input-group.coupon .btn, .input-group.form-discount .btn{
  position:absolute;
}
.input-group.coupon .btn:disabled, .input-group.form-discount .btn:disabled{
  opacity:1;
}
.input-group.coupon .btn, .input-group.form-discount .btn{
  width:auto;
  margin-block-start:0;
  top:0;
  right:0;
}
.loading .input-group .spinner{
  opacity:1;
}
@media (max-width: 575.98px){
  .input-group .btn{
    width:100%;
    margin-block-start:20px;
  }
}
@media (min-width: 576px){
  .input-group .form-control{
    padding-inline-start:20px;
  }
  .input-group:not(.coupon):not(.form-discount) .form-control{
    padding-inline-end:135px;
  }
  .input-group:not(.coupon):not(.form-discount) .btn{
    position:absolute;
  }
  .input-group:not(.coupon):not(.form-discount) .btn:disabled{
    opacity:1;
  }
  .input-group:not(.coupon):not(.form-discount) .form-control{
    height:var(--height-input-group);
  }
  .input-group:not(.coupon):not(.form-discount) .btn{
    top:calc((var(--height-input-group) - var(--height-control)) / 2);
    right:10px;
  }
}
@media (min-width: 1200px){
  .input-group .form-control{
    border-radius:var(--border-radius-huge);
    padding-inline-start:25px;
    padding-inline-end:172px;
  }
  .input-group .btn{
    right:17px;
  }
}

.form-select__btn, .filter-options-title,
select[data-bind],
.control--country select,
.control--region select,
.form-select__option{
  cursor:pointer;
}
.form-select__btn figure, .filter-options-title figure,
select[data-bind] figure,
.control--country select figure,
.control--region select figure,
.form-select__btn i,
.filter-options-title i,
select[data-bind] i,
.control--country select i,
.control--region select i,
.form-select__option figure,
.form-select__option i{
  flex-shrink:0;
  width:25px;
  height:25px;
  margin-inline-end:10px;
}
.form-select__btn figure, .filter-options-title figure,
select[data-bind] figure,
.control--country select figure,
.control--region select figure,
.form-select__btn .icon-dot,
.filter-options-title .icon-dot,
select[data-bind] .icon-dot,
.control--country select .icon-dot,
.control--region select .icon-dot,
.form-select__option figure,
.form-select__option .icon-dot{
  border-radius:50%;
}
.form-select__btn figure, .filter-options-title figure,
select[data-bind] figure,
.control--country select figure,
.control--region select figure,
.form-select__option figure{
  overflow:hidden;
  position:relative;
}
.form-select__btn figure img, .filter-options-title figure img,
select[data-bind] figure img,
.control--country select figure img,
.control--region select figure img,
.form-select__option figure img{
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  border-radius:50%;
  object-fit:cover;
}
.form-select__btn .icon-dot, .filter-options-title .icon-dot,
select[data-bind] .icon-dot,
.control--country select .icon-dot,
.control--region select .icon-dot,
.form-select__option .icon-dot{
  border:1px solid #e3e7e9;
}
.form-select__btn i:not(.icon-dot), .filter-options-title i:not(.icon-dot),
select[data-bind] i:not(.icon-dot),
.control--country select i:not(.icon-dot),
.control--region select i:not(.icon-dot),
.form-select__option i:not(.icon-dot){
  display:flex;
  justify-content:center;
  font-size:25px;
}

.form-select__btn, .filter-options-title,
select[data-bind],
.control--country select,
.control--region select{
  border:0;
  white-space:nowrap;
  -webkit-user-select:none;
          user-select:none;
  position:relative;
}
.form-select__btn::after, .filter-options-title::after,
select[data-bind]::after,
.control--country select::after,
.control--region select::after{
  content:"\e908";
  font-family:"babymax-icons";
  font-size:var(--fs-select-icon);
  line-height:1;
  pointer-events:none;
  transition:transform var(--time-norm) ease-out;
  flex-shrink:0;
  margin-inline-start:auto;
  padding-inline-start:var(--pi-form-control);
}
.form-select__btn span, .filter-options-title span,
select[data-bind] span,
.control--country select span,
.control--region select span{
  overflow:hidden;
  text-overflow:ellipsis;
  pointer-events:none;
}

.form-select__list{
  width:100%;
  position:absolute;
  top:50%;
  left:0;
  z-index:-1;
}
.form-select__list .form-select__list__body, .form-select__list .filter-options-content > *:first-child{
  overflow:hidden;
  border-radius:0 0 var(--border-radius) var(--border-radius);
  padding-block-start:calc(var(--height-control) / 2);
  background-color:#fff;
}

.form-select__option{
  height:auto;
  border-width:1px 0 0;
  border-radius:0;
  background-color:transparent;
  line-height:normal;
  position:relative;
}
.form-select__option span{
  color:rgba(50, 50, 50, 0.5);
}
.form-select__option.disabled{
  cursor:default;
}
.form-select__option.equals-selected{
  display:none;
}

.form-select, .filter-options-item{
  position:relative;
}
.form-select select, .filter-options-item select{
  display:none;
}
.form-select .form-select__inner, .filter-options-item .form-select__inner{
  filter:drop-shadow(0 0 1px #91a0a8);
  position:relative;
  z-index:10;
}
.form-select .form-select__inner::before, .filter-options-item .form-select__inner::before{
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  content:"";
  transition:opacity var(--time-norm) ease-out;
}
.form-select + .form-select:not(.filter-options-item), .filter-options-item + .form-select:not(.filter-options-item), .form-select + .filter-options-item:not(.filter-options-item), .filter-options-item + .filter-options-item:not(.filter-options-item){
  margin-block-start:10px;
}
.form-select.active, .active.filter-options-item{
  z-index:11;
}
.form-select.active .form-select__inner::before, .active.filter-options-item .form-select__inner::before{
  filter:drop-shadow(0 4px 14px rgba(0, 0, 0, 0.05));
}
.form-select.active .form-select__btn::after, .form-select.active .filter-options-title::after,
.form-select.active select[data-bind]::after,
.form-select.active .control--country select::after,
.control--country .form-select.active select::after,
.form-select.active .control--region select::after,
.control--region .form-select.active select::after, .active.filter-options-item .form-select__btn::after, .active.filter-options-item .filter-options-title::after,
.active.filter-options-item select[data-bind]::after,
.active.filter-options-item .control--country select::after,
.control--country .active.filter-options-item select::after,
.active.filter-options-item .control--region select::after,
.control--region .active.filter-options-item select::after{
  transform:scaleY(-1);
}
.form-select:not(.form-select--checkbox):not(.filter-options-item) .form-select__option, .filter-options-item:not(.form-select--checkbox):not(.filter-options-item) .form-select__option{
  min-height:var(--height-control);
  padding-block-start:var(--pb-form-control);
  padding-block-end:var(--pb-form-control);
}
@media (hover: hover) and (pointer: fine){
  .form-select:not(.form-select--checkbox):not(.filter-options-item) .form-select__option:not(.disabled), .filter-options-item:not(.form-select--checkbox):not(.filter-options-item) .form-select__option:not(.disabled){
    transition:background-color var(--time-fast) ease-out;
  }
  .form-select:not(.form-select--checkbox):not(.filter-options-item) .form-select__option:not(.disabled):hover, .filter-options-item:not(.form-select--checkbox):not(.filter-options-item) .form-select__option:not(.disabled):hover{
    background-color:#e3e7e9;
  }
}
.form-select.form-select--sort .form-select__btn, .form-select.form-select--sort .filter-options-title,
.form-select.form-select--sort select[data-bind],
.form-select.form-select--sort .control--country select,
.control--country .form-select.form-select--sort select,
.form-select.form-select--sort .control--region select,
.control--region .form-select.form-select--sort select,
.form-select.form-select--sort .form-select__option, .form-select.form-select--checkbox .form-select__btn, .form-select.form-select--checkbox .filter-options-title,
.form-select.form-select--checkbox select[data-bind],
.form-select.form-select--checkbox .control--country select,
.control--country .form-select.form-select--checkbox select,
.form-select.form-select--checkbox .control--region select,
.control--region .form-select.form-select--checkbox select, .filter-options-item .form-select__btn, .filter-options-item .filter-options-title,
.filter-options-item select[data-bind],
.filter-options-item .control--country select,
.control--country .filter-options-item select,
.filter-options-item .control--region select,
.control--region .filter-options-item select,
.form-select.form-select--checkbox .form-select__option,
.filter-options-item .form-select__option, .form-select.form-select--product .form-select__btn, .form-select.form-select--product .filter-options-title,
.form-select.form-select--product select[data-bind],
.form-select.form-select--product .control--country select,
.control--country .form-select.form-select--product select,
.form-select.form-select--product .control--region select,
.control--region .form-select.form-select--product select,
.form-select.form-select--product .form-select__option{
  font-family:"proxima-soft", sans-serif;
  font-weight:700;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1.2px;
}
.form-select.form-select--sort .form-select__btn, .form-select.form-select--sort .filter-options-title,
.form-select.form-select--sort select[data-bind],
.form-select.form-select--sort .control--country select,
.control--country .form-select.form-select--sort select,
.form-select.form-select--sort .control--region select,
.control--region .form-select.form-select--sort select, .form-select--sort.filter-options-item .form-select__btn, .form-select--sort.filter-options-item .filter-options-title,
.form-select--sort.filter-options-item select[data-bind],
.form-select--sort.filter-options-item .control--country select,
.control--country .form-select--sort.filter-options-item select,
.form-select--sort.filter-options-item .control--region select,
.control--region .form-select--sort.filter-options-item select,
.form-select.form-select--sort .form-select__option,
.form-select--sort.filter-options-item .form-select__option, .form-select.form-select--product .form-select__btn, .form-select.form-select--product .filter-options-title,
.form-select.form-select--product select[data-bind],
.form-select.form-select--product .control--country select,
.control--country .form-select.form-select--product select,
.form-select.form-select--product .control--region select,
.control--region .form-select.form-select--product select, .form-select--product.filter-options-item .form-select__btn, .form-select--product.filter-options-item .filter-options-title,
.form-select--product.filter-options-item select[data-bind],
.form-select--product.filter-options-item .control--country select,
.control--country .form-select--product.filter-options-item select,
.form-select--product.filter-options-item .control--region select,
.control--region .form-select--product.filter-options-item select,
.form-select.form-select--product .form-select__option,
.form-select--product.filter-options-item .form-select__option{
  font-weight:700;
}
.form-select.form-select--sort .form-select__inner, .form-select.form-select--checkbox .form-select__inner, .filter-options-item .form-select__inner{
  filter:none;
}
.form-select.form-select--sort .form-select__btn, .form-select.form-select--sort .filter-options-title,
.form-select.form-select--sort select[data-bind],
.form-select.form-select--sort .control--country select,
.control--country .form-select.form-select--sort select,
.form-select.form-select--sort .control--region select,
.control--region .form-select.form-select--sort select, .form-select.form-select--checkbox .form-select__btn, .form-select.form-select--checkbox .filter-options-title,
.form-select.form-select--checkbox select[data-bind],
.form-select.form-select--checkbox .control--country select,
.control--country .form-select.form-select--checkbox select,
.form-select.form-select--checkbox .control--region select,
.control--region .form-select.form-select--checkbox select, .filter-options-item .form-select__btn, .filter-options-item .filter-options-title,
.filter-options-item select[data-bind],
.filter-options-item .control--country select,
.control--country .filter-options-item select,
.filter-options-item .control--region select,
.control--region .filter-options-item select{
  border:0;
  border-radius:0;
  padding-inline-start:0;
}
.form-select.form-select--sort .form-select__btn::after, .form-select.form-select--sort .filter-options-title::after,
.form-select.form-select--sort select[data-bind]::after,
.form-select.form-select--sort .control--country select::after,
.control--country .form-select.form-select--sort select::after,
.form-select.form-select--sort .control--region select::after,
.control--region .form-select.form-select--sort select::after, .form-select.form-select--checkbox .form-select__btn::after, .form-select.form-select--checkbox .filter-options-title::after,
.form-select.form-select--checkbox select[data-bind]::after,
.form-select.form-select--checkbox .control--country select::after,
.control--country .form-select.form-select--checkbox select::after,
.form-select.form-select--checkbox .control--region select::after,
.control--region .form-select.form-select--checkbox select::after, .filter-options-item .form-select__btn::after, .filter-options-item .filter-options-title::after,
.filter-options-item select[data-bind]::after,
.filter-options-item .control--country select::after,
.control--country .filter-options-item select::after,
.filter-options-item .control--region select::after,
.control--region .filter-options-item select::after{
  padding-inline-start:10px;
  font-size:6px;
  right:0;
}
.form-select.form-select--sort .form-select__btn, .form-select.form-select--sort .filter-options-title,
.form-select.form-select--sort select[data-bind],
.form-select.form-select--sort .control--country select,
.control--country .form-select.form-select--sort select,
.form-select.form-select--sort .control--region select,
.control--region .form-select.form-select--sort select, .form-select--sort.filter-options-item .form-select__btn, .form-select--sort.filter-options-item .filter-options-title,
.form-select--sort.filter-options-item select[data-bind],
.form-select--sort.filter-options-item .control--country select,
.control--country .form-select--sort.filter-options-item select,
.form-select--sort.filter-options-item .control--region select,
.control--region .form-select--sort.filter-options-item select{
  width:auto;
  height:auto;
  padding-inline-end:0;
}
.form-select.form-select--sort .form-select__list, .form-select--sort.filter-options-item .form-select__list{
  min-width:200px;
  filter:drop-shadow(0 0 1px #91a0a8);
  top:calc(100% + 20px);
  left:auto;
  right:0;
}
.form-select.form-select--sort .form-select__list .form-select__list__body, .form-select.form-select--sort .form-select__list .filter-options-content > *:first-child, .form-select--sort.filter-options-item .form-select__list .form-select__list__body, .form-select--sort.filter-options-item .form-select__list .filter-options-content > *:first-child{
  border-radius:var(--border-radius);
  padding-block-start:0;
}
.form-select.form-select--sort .form-select__option span, .form-select--sort.filter-options-item .form-select__option span{
  color:#1c1c1c;
}
.form-select.form-select--sort .form-select__option:first-child, .form-select--sort.filter-options-item .form-select__option:first-child{
  border-block-start:0;
}
.form-select.form-select--sort .form-select__option:first-child.equals-selected + .form-select__option, .form-select--sort.filter-options-item .form-select__option:first-child.equals-selected + .form-select__option{
  border-block-start:0;
}
.form-select.form-select--checkbox, .filter-options-item{
  border-block-end:1px solid #e3e7e9;
}
.form-select.form-select--checkbox .form-select__btn, .form-select.form-select--checkbox .filter-options-title,
.form-select.form-select--checkbox select[data-bind],
.form-select.form-select--checkbox .control--country select,
.control--country .form-select.form-select--checkbox select,
.form-select.form-select--checkbox .control--region select,
.control--region .form-select.form-select--checkbox select, .filter-options-item .form-select__btn, .filter-options-item .filter-options-title,
.filter-options-item select[data-bind],
.filter-options-item .control--country select,
.control--country .filter-options-item select,
.filter-options-item .control--region select,
.control--region .filter-options-item select{
  padding-inline-end:13px;
}
.form-select.form-select--checkbox .form-select__list, .filter-options-item .form-select__list{
  position:static;
}
.form-select.form-select--checkbox .form-select__list .form-select__list__body, .form-select.form-select--checkbox .form-select__list .filter-options-content > *:first-child, .filter-options-item .form-select__list .form-select__list__body, .filter-options-item .form-select__list .filter-options-content > *:first-child{
  padding-block-start:0;
  padding-block-end:20px;
}
.form-select.form-select--checkbox .form-select__option, .filter-options-item .form-select__option{
  border-block-start:0;
  padding-inline-start:0;
  padding-inline-end:0;
  font-weight:500;
}
.form-select.form-select--checkbox .form-select__option + .form-select__option, .filter-options-item .form-select__option + .form-select__option{
  margin-block-start:var(--size-form-check-indicator);
}
.form-select.form-select--checkbox:first-child, .filter-options-item:first-child{
  border-block-start:1px solid #e3e7e9;
}
.form-select.form-select--product + .form-select--product, .form-select--product.filter-options-item + .form-select--product{
  margin-block-start:10px;
}
.tabs .form-select.form-select--product, .tabs .form-select--product.filter-options-item{
  border-block-end:1px solid #e3e7e9;
}
.tabs .form-select.form-select--product .form-select__inner, .tabs .form-select--product.filter-options-item .form-select__inner{
  filter:none;
}
.tabs .form-select.form-select--product .form-select__btn, .tabs .form-select.form-select--product .filter-options-title,
.tabs .form-select.form-select--product select[data-bind],
.tabs .form-select.form-select--product .control--country select,
.control--country .tabs .form-select.form-select--product select,
.tabs .form-select.form-select--product .control--region select,
.control--region .tabs .form-select.form-select--product select, .tabs .form-select--product.filter-options-item .form-select__btn, .tabs .form-select--product.filter-options-item .filter-options-title,
.tabs .form-select--product.filter-options-item select[data-bind],
.tabs .form-select--product.filter-options-item .control--country select,
.control--country .tabs .form-select--product.filter-options-item select,
.tabs .form-select--product.filter-options-item .control--region select,
.control--region .tabs .form-select--product.filter-options-item select,
.tabs .form-select.form-select--product .form-select__option,
.tabs .form-select--product.filter-options-item .form-select__option{
  padding-inline-start:30px;
  padding-inline-end:30px;
}
.tabs .form-select.form-select--product .form-select__list, .tabs .form-select--product.filter-options-item .form-select__list{
  border-block-end:1px solid #e3e7e9;
}

.filter-options-title,
select[data-bind],
.control--country select,
.control--region select{
  border:1px solid #e3e7e9;
}

[name="shippingAddress.country_id"] .control[data-bind],
[name="shippingAddress.region_id"] .control[data-bind],
.payment-method-issuers,
.control--country,
.control--region{
  position:relative;
}
[name="shippingAddress.country_id"] .control[data-bind]::after,
[name="shippingAddress.region_id"] .control[data-bind]::after,
.payment-method-issuers::after,
.control--country::after,
.control--region::after{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  left:auto;
  right:var(--pi-form-control);
  content:"\e908";
  font-family:"babymax-icons";
  font-size:var(--fs-select-icon);
  line-height:1;
  pointer-events:none;
  transition:transform var(--time-norm) ease-out;
}

:root{
  --size-sg-icon:55px;
  --width-column-gutter:15px;
  --pi-sg-container:0.75rem;
  --pb-sg-section:55px;
  --pb-sg-section-first:var(--pb-sg-section);
  --p-sg-card:10px;
  --pi-sg-table-cell:10px;
  --pb-sg-table-cell:12.5px;
  --br-sg:10px;
  --clr-sg:#f5f7fb;
  --clr-border:#ccdad8;
  --clr-box-shadow:#e7edf9;
  --pb-sg-section:250px;
  --pb-sg-section-first:150px;
}
@media (min-width: 768px){
  :root{
    --width-column-gutter:20px;
    --pb-sg-section:65px;
  }
}
@media (min-width: 992px){
  :root{
    --pb-sg-section:105px;
  }
}
@media (min-width: 1200px){
  :root{
    --width-column-gutter:25px;
    --pb-sg-section:135px;
  }
}
@media (min-width: 1400px){
  :root{
    --width-column-gutter:30px;
    --pb-sg-section-first:125px;
  }
}

.section.section--sg{
  overflow:hidden;
  padding-block-start:var(--pb-sg-section);
  padding-block-end:var(--pb-sg-section);
  background-color:var(--clr-sg);
}
.section.section--sg .subsection + .subsection{
  margin-block-start:60px;
}
.section.section--sg .card{
  border-radius:var(--br-sg);
  box-shadow:0 4px 10px rgba(var(--clr-box-shadow), 0.4);
  background-color:#fff;
}
.section.section--sg .card .card__title{
  margin-block-end:15px;
}
.section.section--sg:first-of-type{
  padding-block-start:calc(var(--pb-sg-section-first) + var(--height-navbar));
}
.section.section--sg:not([class*=bg-]) + .section:not([class*=bg-]){
  padding-block-start:0;
}
@media (min-width: 1200px){
  .section.section--sg:first-of-type{
    padding-block-end:var(--pb-sg-section-first);
  }
}

.section--sg.section--sg--breakpoints .card.card--breakpoint{
  padding-block-start:30px;
  padding-block-end:30px;
  padding-inline-start:30px;
  padding-inline-end:30px;
}
.section--sg.section--sg--breakpoints .card.card--breakpoint table tr td,
.section--sg.section--sg--breakpoints .card.card--breakpoint table tr th{
  padding-block-start:var(--pb-sg-table-cell);
  padding-block-end:var(--pb-sg-table-cell);
  white-space:nowrap;
}
.section--sg.section--sg--breakpoints .card.card--breakpoint table tr td:not(:last-child),
.section--sg.section--sg--breakpoints .card.card--breakpoint table tr th:not(:last-child){
  padding-inline-end:var(--pi-sg-table-cell);
}
.section--sg.section--sg--breakpoints .card.card--breakpoint table tr td:not(:first-child),
.section--sg.section--sg--breakpoints .card.card--breakpoint table tr th:not(:first-child){
  padding-inline-start:var(--pi-sg-table-cell);
}
.section--sg.section--sg--breakpoints .card.card--breakpoint table tbody tr{
  border-block-start:1px solid var(--clr-border);
}

.section--sg.section--sg--colors .card.card--color{
  overflow:hidden;
  margin-block-end:var(--bs-gutter-x);
}
.section--sg.section--sg--colors .card.card--color .card--color__preview{
  width:100%;
  min-width:140px;
  height:140px;
}
.section--sg.section--sg--colors .card.card--color .card--color__content{
  display:flex;
  flex-direction:column;
  padding:var(--p-sg-card);
  text-align:center;
}
.section--sg.section--sg--colors .card.card--color .card--color__content .card--color__content__hex{
  text-transform:uppercase;
}

.section--sg.section--sg--fonts .row + .row{
  margin-block-start:var(--bs-gutter-x);
}
.section--sg.section--sg--fonts .card.card--font{
  display:flex;
  align-items:center;
  border-radius:var(--br-sg);
  padding:var(--p-sg-card);
}
.section--sg.section--sg--fonts .card.card--font .card--font__preview{
  display:flex;
  align-items:center;
  justify-content:center;
  width:120px;
  height:105px;
  border:1px solid var(--clr-border);
  border-radius:var(--br-sg);
  font-size:40px;
  line-height:1;
  position:relative;
}
.section--sg.section--sg--fonts .card.card--font .card--font__preview.card--font__preview--thin{
  font-weight:100;
}
.section--sg.section--sg--fonts .card.card--font .card--font__preview.card--font__preview--extra-light{
  font-weight:200;
}
.section--sg.section--sg--fonts .card.card--font .card--font__preview.card--font__preview--light{
  font-weight:300;
}
.section--sg.section--sg--fonts .card.card--font .card--font__preview.card--font__preview--regular{
  font-weight:400;
}
.section--sg.section--sg--fonts .card.card--font .card--font__preview.card--font__preview--medium{
  font-weight:500;
}
.section--sg.section--sg--fonts .card.card--font .card--font__preview.card--font__preview--semi-bold{
  font-weight:600;
}
.section--sg.section--sg--fonts .card.card--font .card--font__preview.card--font__preview--bold{
  font-weight:700;
}
.section--sg.section--sg--fonts .card.card--font .card--font__preview.card--font__preview--extra-bold{
  font-weight:800;
}
.section--sg.section--sg--fonts .card.card--font .card--font__preview.card--font__preview--black{
  font-weight:900;
}
.section--sg.section--sg--fonts .card.card--font .card--font__preview.card--font__preview--extra-black{
  font-weight:950;
}
.section--sg.section--sg--fonts .card.card--font .card--font__content{
  display:flex;
  flex-direction:column;
  padding-inline-start:30px;
  padding-inline-end:30px;
}
@media (min-width: 1400px){
  .section--sg.section--sg--fonts .card.card--font .card--font__preview{
    width:130px;
  }
}

.section--sg.section--sg--typography .row > *{
  margin-block-end:var(--bs-gutter-x);
}
.section--sg.section--sg--typography .card.card--typography{
  padding-block-start:30px;
  padding-block-end:30px;
  padding-inline-start:30px;
  padding-inline-end:30px;
}
@media (max-width: 575.98px){
  .section--sg.section--sg--typography .card.card--typography .row > * + *{
    margin-block-start:15px;
  }
}

.section--sg.section--sg--icons .section--sg--icons__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, var(--size-sg-icon));
  grid-gap:10px;
  padding-block-start:30px;
  padding-block-end:30px;
  padding-inline-start:30px;
  padding-inline-end:30px;
  background-color:#fff;
}
.section--sg.section--sg--icons .section--sg--icons__grid .card.card--icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:var(--size-sg-icon);
  height:var(--size-sg-icon);
  border:1px solid var(--clr-border);
  border-radius:var(--br-sg);
  font-size:16px;
}

.section--sg.section--sg--badges .row > *{
  margin-block-end:var(--bs-gutter-x);
}
.section--sg.section--sg--badges .card.card--badge{
  height:100%;
  padding-block-start:30px;
  padding-block-end:30px;
  padding-inline-start:30px;
  padding-inline-end:30px;
}

.section--sg.section--sg--buttons .row > *{
  margin-block-end:var(--bs-gutter-x);
}
.section--sg.section--sg--buttons .card.card--button{
  height:100%;
  padding-block-start:30px;
  padding-block-end:30px;
  padding-inline-start:30px;
  padding-inline-end:30px;
}

.section--sg.section--sg--forms .container > .row > *{
  margin-block-end:var(--bs-gutter-x);
}
.section--sg.section--sg--forms .card.card--form{
  height:100%;
  padding-block-start:30px;
  padding-block-end:30px;
  padding-inline-start:30px;
  padding-inline-end:30px;
}
.section--sg.section--sg--forms .card.card--form h6{
  margin-block-end:15px;
}

.section.section--sg--elements .container > .row > *{
  margin-block-end:var(--bs-gutter-x);
}
.section.section--sg--elements .card.card--element{
  padding-block-start:30px;
  padding-block-end:30px;
  padding-inline-start:30px;
  padding-inline-end:30px;
}

/*# sourceMappingURL=styleguide.css.map*/