@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap');

/* FLEX UTILITIES */

*,
*::before,
*::after {
  box-sizing: border-box;
}

.d-flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* GRID SYSTEM */

.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}

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

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

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}

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

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

.no-gutters>.col,.no-gutters>[class*="col-"]{
  padding-right:0;
  padding-left:0
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

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

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

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

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

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

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

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

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

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

.offset-1 {
  margin-left: 8.333333% !important;
}

.offset-2 {
  margin-left: 16.666667% !important;
}

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

.offset-4 {
  margin-left: 33.333333% !important;
}

.offset-5 {
  margin-left: 41.666667% !important;
}

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

.offset-7 {
  margin-left: 58.333333% !important;
}

.offset-8 {
  margin-left: 66.666667% !important;
}

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

.offset-10 {
  margin-left: 83.333333% !important;
}

.offset-11 {
  margin-left: 91.666667% !important;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-sm-1 {
    margin-left: 8.33333333% !important;
  }
  .offset-sm-2 {
    margin-left: 16.66666667% !important;
  }
  .offset-sm-3 {
    margin-left: 25% !important;
  }
  .offset-sm-4 {
    margin-left: 33.33333333% !important;
  }
  .offset-sm-5 {
    margin-left: 41.66666667% !important;
  }
  .offset-sm-6 {
    margin-left: 50% !important;
  }
  .offset-sm-7 {
    margin-left: 58.33333333% !important;
  }
  .offset-sm-8 {
    margin-left: 66.66666667% !important;
  }
  .offset-sm-9 {
    margin-left: 75% !important;
  }
  .offset-sm-10 {
    margin-left: 83.33333333% !important;
  }
  .offset-sm-11 {
    margin-left: 91.66666667% !important;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-md-1 {
    margin-left: 8.33333333% !important;
  }
  .offset-md-2 {
    margin-left: 16.66666667% !important;
  }
  .offset-md-3 {
    margin-left: 25% !important;
  }
  .offset-md-4 {
    margin-left: 33.33333333% !important;
  }
  .offset-md-5 {
    margin-left: 41.66666667% !important;
  }
  .offset-md-6 {
    margin-left: 50% !important;
  }
  .offset-md-7 {
    margin-left: 58.33333333% !important;
  }
  .offset-md-8 {
    margin-left: 66.66666667% !important;
  }
  .offset-md-9 {
    margin-left: 75% !important;
  }
  .offset-md-10 {
    margin-left: 83.33333333% !important;
  }
  .offset-md-11 {
    margin-left: 91.66666667% !important;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-lg-1 {
    margin-left: 8.33333333% !important;
  }
  .offset-lg-2 {
    margin-left: 16.66666667% !important;
  }
  .offset-lg-3 {
    margin-left: 25% !important;
  }
  .offset-lg-4 {
    margin-left: 33.33333333% !important;
  }
  .offset-lg-5 {
    margin-left: 41.66666667% !important;
  }
  .offset-lg-6 {
    margin-left: 50% !important;
  }
  .offset-lg-7 {
    margin-left: 58.33333333% !important;
  }
  .offset-lg-8 {
    margin-left: 66.66666667% !important;
  }
  .offset-lg-9 {
    margin-left: 75% !important;
  }
  .offset-lg-10 {
    margin-left: 83.33333333% !important;
  }
  .offset-lg-11 {
    margin-left: 91.66666667% !important;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-xl-1 {
    margin-left: 8.33333333% !important;
  }
  .offset-xl-2 {
    margin-left: 16.66666667% !important;
  }
  .offset-xl-3 {
    margin-left: 25% !important;
  }
  .offset-xl-4 {
    margin-left: 33.33333333% !important;
  }
  .offset-xl-5 {
    margin-left: 41.66666667% !important;
  }
  .offset-xl-6 {
    margin-left: 50% !important;
  }
  .offset-xl-7 {
    margin-left: 58.33333333% !important;
  }
  .offset-xl-8 {
    margin-left: 66.66666667% !important;
  }
  .offset-xl-9 {
    margin-left: 75% !important;
  }
  .offset-xl-10 {
    margin-left: 83.33333333% !important;
  }
  .offset-xl-11 {
    margin-left: 91.66666667% !important;
  }
}

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

.mr-1, .mx-1 {
  margin-right: .25rem !important;
}

.mr-2, .mx-2 {
  margin-right: .5rem !important;
}

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

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

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

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

.ml-1, .mx-1 {
  margin-left: .25rem !important;
}

.ml-2, .mx-2 {
  margin-left: .5rem !important;
}

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

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

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

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

.mt-1, .my-1 {
  margin-top: .25rem !important;
}

.mt-2, .my-2 {
  margin-top: .5rem !important;
}

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

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

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

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

.mb-1, .my-1 {
  margin-bottom: .25rem !important;
}

.mb-2, .my-2 {
  margin-bottom: .5rem !important;
}

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

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

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

.pr-1, .px-1 {
  padding-right: .25rem !important;
}

.pr-2, .px-2 {
  padding-right: .5rem !important;
}

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

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

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

.pl-1, .px-1 {
  padding-left: .25rem !important;
}

.pl-2, .px-2 {
  padding-left: .5rem !important;
}

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

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

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

.pt-1, .py-1 {
  padding-top: .25rem !important;
}

.pt-2, .py-2 {
  padding-top: .5rem !important;
}

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

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

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

.pb-1, .py-1 {
  padding-bottom: .25rem !important;
}

.pb-2, .py-2 {
  padding-bottom: .5rem !important;
}

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

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

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

.w-25 {
  width: 25%;
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-100 {
  width: 100%;
}

.h-25 {
  height: 25%;
}

.h-50 {
  height: 50%;
}

.h-75 {
  height: 75%;
}

.h-100 {
  height: 100%;
}

.horizontal-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(216, 217, 224, 0.8);
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: .25rem 1rem;
}

.horizontal-form .form-item {
  margin: .25rem 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.08);
}

.group-header-row {
  background-color: #444 !important;
  color: #fff !important;
  font-weight: bold;
}

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
}

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-black { color: #000 !important; }
.text-danger { color: #dc3545 !important; }
.text-success { color: #28a745 !important; }
.font-weight-bold { font-weight: bold !important; }
.font-weight-bolder { font-weight: bolder !important; }

.invalid { border: 1px solid red !important; }

@media (min-width: 576px) {
  .text-sm-left { text-align: left !important; }
  .text-sm-center { text-align: center !important; }
  .text-sm-right { text-align: right !important; }
}

@media (min-width: 768px) {
  .text-md-left { text-align: left !important; }
  .text-md-center { text-align: center !important; }
  .text-md-right { text-align: right !important; }
}

@media (min-width: 992px) {
  .text-lg-left { text-align: left !important; }
  .text-lg-center { text-align: center !important; }
  .text-lg-right { text-align: right !important; }
}

@media (min-width: 1200px) {
  .text-xl-left { text-align: left !important; }
  .text-xl-center { text-align: center !important; }
  .text-xl-right { text-align: right !important; }
}

small, .small {
  font-size: 80%;
  font-weight: 400;
}

/* reset the default centering of columns on responsive-enabled */
#page main .layout-content .region-content #block-autointerests-autointerests-zen-system-main table.responsive-enabled.responsive-enabled-reset tbody tr td { text-align: left; }
#page main .layout-content .region-content #block-autointerests-autointerests-zen-system-main table.responsive-enabled.responsive-enabled-reset tbody tr td:nth-child(2) { text-align: left; }
#page main .layout-content .region-content #block-autointerests-autointerests-zen-system-main table.responsive-enabled.responsive-enabled-reset tbody tr td:nth-child(3) { text-align: left; }
table.responsive-enabled.responsive-enabled-reset thead th { text-align: left; }
table.responsive-enabled.responsive-enabled-reset tfoot tr:nth-child(1) { border-top: 1px solid #000; }
table.responsive-enabled.responsive-enabled-reset th, table.responsive-enabled.responsive-enabled-reset td { padding: .25rem; }

.pos-wrapper hr {
  background: unset !important;
  border-top: 1px solid #102c52 !important;
}

.pos-wrapper input[type=submit] {
  padding: 4px;
}

.pos-wrapper input[type=number], .pos-wrapper input[type=text] {
  font-family: "Open Sans";
  font-size: 24px;
  color: #102c52;
  border: 1px solid #102c52;
}

.pos-wrapper input[type=number] {
  text-align: right;
}

.pos-wrapper select {
  background: url(../../../../core/misc/icons/333333/caret-down.svg) no-repeat 99% 63%;
  background-size: 40px;
  font-family: "Open Sans";
  font-size: 24px;
  width: 100%;
  padding: 10px;
  color: #102c52;
  border: 1px solid #102c52;
  border-radius: 0;
}

.pos-wrapper select:hover, .pos-wrapper select:focus {
  background: url(../../../../core/misc/icons/333333/caret-down.svg) no-repeat 99% 63%;
  background-size: 40px;
}

.pos-wrapper a {
  text-decoration: none !important;
}

.pos-wrapper .input-group {
  display: table;
  border-collapse: collapse;
  border: 1px solid #102c52;
  width: 100%;
}

.pos-wrapper .input-group > div {
  display: table-cell;
  vertical-align: middle; /* needed for Safari */
}

.pos-wrapper .input-group-icon {
  background-color: #eee;
  color: #777;
  padding: 0 12px;
  font-size: 24px;
  font-weight: bold;
}

.pos-wrapper .input-group-area {
  width: 100%;
}

.pos-wrapper .input-group input {
  border: 0;
  display: block;
  width: 100%;
  padding: 8px;
}

.pos-wrapper input[readonly] {
  background-color: #ddd;
}

.action-button {
  background: #ad0104;
  border: 2px solid #000;
  -webkit-box-shadow: 3px 3px 3px #000;
  box-shadow: 3px 3px 3px #000;
  color: #fff;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 0;
  margin-bottom: 1rem;
  margin-right: .5rem;
  padding: 6px;
}

.pos-button {
  background-color: #102c52;
  color: white;
  font-family: 'Open Sans';
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  border: none;
  padding: 12px 5px;
}

.pos-button:hover {
  background-color: #134285;
}



.pos-title {
  font-family: 'Open Sans';
  font-weight: 800;
  font-size: 38px;
  color: #102c52;
}

.pos-complete-title {
  font-family: 'Open Sans';
  font-weight: 800;
  font-size: 42px;
  line-height: 42px;
  color: #102c52;
}

.pos-label {
  font-family: 'Open Sans';
  font-weight: 800;
  font-size: 26px;
  color: #102c52;
}

.pos-report-amount {
  font-family: 'Open Sans';
  font-size: 24px;
  color: #102c52;
  text-align: right;
}

.pos-identification {
  font-family: 'Open Sans';
  font-size: 16px;
  color: #102c52;
  background-color: #e4e4e4;
  padding: 2px 5px;
}
