@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


@font-face {
    font-family: 'Jakob';
    src: url('../font/jakob/jakob.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/*
Grid system
*/

/* Uncomment and set these variables to customize the grid. */

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

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

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

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

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

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

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

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

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem;
  }

  .col-sm,
  .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 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem;
  }

  .col-md,
  .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 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .container {
    width: 71rem;
  }

  .col-lg,
  .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 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}


code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 2px;
}

kbd {
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

pre {
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 10px;
}

blockquote {
  border-left: 3px solid #29abe2;
}

/*.region--hero, .region--title {
	max-width: 100% !important;
	padding: 0px !important;
}*/

.cover-wrap {
	max-width: calc(1200px - 2rem) !important;
	padding: 0 1rem !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.text-primary {
  color: #29abe2;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #1a8dbe;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

.text-muted {
  color: #555555;
}

a.text-muted:hover,
a.text-muted:focus {
  color: #3c3c3c;
}

.text-gray {
  color: #555555;
}

a.text-gray:hover,
a.text-gray:focus {
  color: #3c3c3c;
}

.text-gray-light {
  color: #777;
}

a.text-gray-light:hover,
a.text-gray-light:focus {
  color: #5e5e5e;
}

.text-gray-lighter {
  color: #adadad;
}

a.text-gray-lighter:hover,
a.text-gray-lighter:focus {
  color: #949494;
}

.text-gray-lightest {
  color: #e6e6e6;
}

a.text-gray-lightest:hover,
a.text-gray-lightest:focus {
  color: #cdcdcd;
}

.text-accent {
  color: #ffc142;
}

a.text-accent:hover,
a.text-accent:focus {
  color: #ffb00f;
}

.bg-primary {
  background-color: #29abe2;
}

.bg-secondary {
  background-color: #1f80aa;
}

.bg-accent {
  background-color: #ffc142;
}

.bg-success {
  background-color: #dff0d8;
}

.bg-warning {
  background-color: #fcf8e3;
}

.bg-danger {
  background-color: #f2dede;
}

.bg-info {
  background-color: #d9edf7;
}

.bg-gray-base {
  background-color: #000;
}

.bg-gray-darker {
  background-color: #222222;
}

.bg-gray-dark {
  background-color: #333333;
}

.bg-gray {
  background-color: #555555;
}

.bg-gray-light {
  background-color: #777;
}

.bg-gray-light-1 {
  background-color: #adadad;
}

.bg-gray-lighter {
  background-color: #e6e6e6;
}

.bg-gray-lighter-1 {
  background-color: #f7f7f7;
}

.bg-gray-lightest {
  background-color: #f3f3f3;
}

.bg-white {
  background-color: white;
}

.brand-primary {
  background-color: #29abe2;
  border-color: #29abe2;
  color: white;
}

a.brand-primary:hover,
a.brand-primary:focus {
  background-color: #1a8dbe;
  border-color: #1a8dbe;
  color: white;
}

.brand-secondary {
  background-color: #1f80aa;
  border-color: #1f80aa;
  color: white;
}

a.brand-secondary:hover,
a.brand-secondary:focus {
  background-color: #17607f;
  border-color: #17607f;
  color: white;
}

.brand-accent {
  background-color: #ffc142;
  border-color: #ffc142;
  color: #4d4d4d;
}

a.brand-accent:hover,
a.brand-accent:focus {
  background-color: #ffb00f;
  border-color: #ffb00f;
  color: #4d4d4d;
}

.brand-user {
  background-color: #222222;
  border-color: #222222;
  color: white;
}

a.brand-user:hover,
a.brand-user:focus {
  background-color: #090909;
  border-color: #090909;
  color: white;
}

.default-light {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  color: #4d4d4d;
}

a.default-light:hover,
a.default-light:focus {
  background-color: #cdcdcd;
  border-color: #cdcdcd;
  color: #4d4d4d;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #c3e7f7;
}

.table-hover .table-primary:hover {
  background-color: #addef4;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #addef4;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #c0dbe7;
}

.table-hover .table-secondary:hover {
  background-color: #aed0e0;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #aed0e0;
}

.table-accent,
.table-accent > th,
.table-accent > td {
  background-color: #ffeeca;
}

.table-hover .table-accent:hover {
  background-color: #ffe6b1;
}

.table-hover .table-accent:hover > td,
.table-hover .table-accent:hover > th {
  background-color: #ffe6b1;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #d1ebd1;
}

.table-hover .table-success:hover {
  background-color: #bfe3bf;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #bfe3bf;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #c6eaf8;
}

.table-hover .table-info:hover {
  background-color: #afe2f5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #afe2f5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffdeb8;
}

.table-hover .table-warning:hover {
  background-color: #ffd29f;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffd29f;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f4cfce;
}

.table-hover .table-danger:hover {
  background-color: #efbbb9;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #efbbb9;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #f8f8f8;
}

.table-hover .table-light:hover {
  background-color: #ebebeb;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ebebeb;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c6c6;
}

.table-hover .table-dark:hover {
  background-color: #b9b9b9;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9b9b9;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .table {
  background-color: #f3f3f3;
}

.table th a {
  color: #1d789e;
}

.table th.is-active > a {
  color: #29abe2;
}

.table .icon-tablesort {
  fill: #29abe2;
}

.img-avatar,
.avatar img,
.avatar-icon {
  border-radius: 50%;
}

/* Additions and Overrides */

p {
	margin: 0 0 0.75rem;
	font-size: 1em;
	font-weight: normal;
    line-height: 1.5em;
}

.field--type-text-long ul li, .field--type-text-long ol li {
font-weight: normal;
}

.field--type-text-long a {
color: #118E91;
}

.paragraph--section .paragraph--block {
    background-color: transparent !important;
}

.page-node-26 .primary-col, .page-node-14 .primary-col {
	max-width: 100% !important;
	width: 100% !important;
}

.paragraph--section h2, .paragraph--section h1 {
	font-weight: bold;
	color: #000000;
	font-size: 2rem !important;
	padding: 0px 0px 40px 0px;
}


.paragraph--type--accordion {
    /*padding: 165px 1rem 100px !important;*/
}

.card__accordion--item .card__text-accord {
	max-width: 100% !important;
}



.paragraph--type--accordion .field--name-field-accord-item > .field--item, .paragraph--type--accordion .field--name-field-accord-item .card {
    margin-bottom: -1px !important;
	border-radius: 0px !important; 
	background-color: #f3f6f7;
}

.card__title-accord svg {
	background-color: #686868;
	border-radius: 50%;
	fill: #fff !important;
	min-width: 24px;
}

.paragraph--type--section-body .card__title-accord svg {
	min-width: auto !important;
}

.page-node-type-tool .paragraph--type--section-body .card__title-accord svg {
	min-width: 16px !important;
}

.card__title-accord.is-active .card__title-accord--text {
	color: #118E91 !important;
}

.card__title-accord.is-active svg {
	background-color: #118E91 !important;
}


.card__title-accord {
	border-top: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important ;
}

.card__text-accord--wrapper {
	max-width: 100% !important;
	background-color: #fff;
}



.region--content {
	width: 100%;
}



.path-user .view-id-user_information .field-base {
	font: normal normal 800 15px/18px Roboto;
	letter-spacing: 1.4px;
	color: #303030;
	text-transform: uppercase;
	font-size: 13px;
}

.path-user #block-toolbox-content .badge-default {
	font-size: 0.9em !important;
}

.path-user #block-toolbox-content .field--label {
    margin-bottom: 10px !important;
}

.path-user .contact-details .field-base{
	margin-bottom: 12px !important;
}

.path-user .contact-details .field-base a {
	color: #686868;
	text-transform: none !important;
}

.path-user .contact-details .field-base a:hover {
	color: #303030;
}

.path-user .contact-details .field-base svg {
	margin-right: 5px;
}

.path-user .field-base .field-text, .path-user .field-base .field-text .field-base {
    text-transform: initial !important;
    font-size: 1.1em !important;
    color: #686868 !important;
	font-weight: normal !important;
} 

.path-user .field-base--withlabel {
	margin-bottom: 30px !important;
}

.paddup {
	margin-top: 100px;
}

.path-group .section-title em {
	font-size: 0.5em;
display: block;
margin-bottom: 10px;
color: #686868;
font-style: normal;
font-weight: 500;
margin-top: 10px;
}

.more-link, .view-display-id-block_user_groups .waves-btn, .group--teaser .card__link, .card--views__sidebar .waves-btn, .teaser .card__link a {
	font-size: 16px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
}

.group--teaser .card__link {
	margin-top: 0px;
}

.group--teaser .card__actionbar {
	padding: 1.25rem 1.25rem 0 1.25rem;
}

.more-link:hover, .view-display-id-block_user_groups .waves-btn:hover, .card--views__sidebar .waves-btn {
	border: none !important;
border-radius: 5px;
	background: transparent !important;
}	

#block-views-block-group-members-block-newest-members.card--views__sidebar > footer {
	display: none;
}

.group--teaser .teaser__teaser-type {
	background-color: transparent !important;
	padding: 0;
	width: 50px;
	height: 50px;
}

.stream-icon {
	box-shadow: none !important;
}

.path-group .stream-icon-new{
	background-color: #00aeef !important;
}

.group--teaser .group-type {
	display: inline-block;
}

.group--teaser .group-type svg{
	margin-right: 0px; 
}

.group--teaser .group-type .teaser__content-text {
	font-weight:500;
	font-size: 13px !important;
}

#block-communities-hero {
	padding: 0px !important;
}

#block-communities-hero h1 {
	color: #00AEEF;
}

#block-communities-hero .field--name-field-text-block {
	color: #686868;
	font-size: 15px;
	max-width: 520px;
}


.field-multiple-table th {
	font-size: 14px !important;
}

.field--widget-entity-reference-autocomplete button.tabledrag-toggle-weight {
	display:none !important;
}

.js-media-library-view a {
	margin-right: 20px;
	background-color: #eee;
	padding: 10px;
	margin-bottom: 20px;
	display: inline-block;
}

.ajax-new-content {
	padding: 30px !important;
}

.group-right, .group-left {
    padding-left: 1em;
    padding-right: 1em;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.page-learn-resource-library .primary-col, .page-explore-case-studies .primary-col{
	max-width: 100% !important;
}

@media (min-width: 900px) {
	
	.group-right, .group-left {
    padding-left: 1em;
    padding-right: 1em;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
}
}


.introduction .field--name-field-introduction-link-lu a, .introduction .field--name-field-introduction-link-an a{
	font-family: Jakob;
	color: #303030 !important;
	font-size: 2.5em;
	margin: auto;
	text-decoration: underline;
}

.page-node-178 .field--name-field-introduction-link-lu a, .page-node-178 .field--name-field-introduction-link-an a{
	text-decoration-color: #A2B863;
}

.page-node-add-case-study .h4.section-title {
	color: #A2B863 !important;
}

.page-node-178 .introduction .card__actionbar .card__link {
	text-align:center;
	float: none;
}

.page-node-178 .cover-small {
	text-align: center;
	max-width: 100%;
	width: 100%;
}

.page-node-178 .cover-small h1{
	color: #5E6A3A !important;;
	text-align: left !important;
}

.hero__bgimage-overlay {
	background: none !important;
}

.page-node-type-tool .card__title-accord.is-active .card__title-accord--text{
	color: #fb9a4a !important;
}

.page-node-type-case-study .card__title-accord.is-active .card__title-accord--text{
	color: #a2b863 !important;
}

.page-node-type-tool .card__title-accord.is-active svg {
	background-color: #fb9a4a !important;
}

.page-node-type-case-study .card__title-accord.is-active svg {
	background-color: #a2b863 !important;
}

.paragraph--type--section.paragraph--type--accordion {
	padding: 0px !important;
	
}

.paragraph-type--section .field--name-field-body *{
	color: #686868 !important;	
}

.paragraph--type--section .card__title-accord--text {
	font: normal normal 800 15px/18px Roboto;
    font-size: 13px;
	letter-spacing: 1.4px;
	color: #303030 !important;
	text-transform: uppercase;
}

.paragraph--type--section ol, .paragraph--type--section ul {
	font-weight: normal;
}	

.paragraph--type--section .card__accordion--item .card__title-accord svg {
    width: 16px;
    height: 16px;
}

.paragraph--type--section .card__title-accord{
	border: none !important;
}

.paragraph--type--section .card {
	margin-bottom: 15px !important;
}



.path-user .view-user-content h2{
	margin-bottom: 45px; 
	color: #686868;
}

.js-notification-center-wrapper {
	text-transform:none;
}

.view .small.card__block {
	font-size: 1em;
	font-weight: 500;
}

.post-date {
	color: #939598;
}

.card.card--stream p {
	color: #363636;
}

#block-toolbox-content .body-text {
	color: #363636;
}

.comment__author a{
	font-weight: 700;
}

.comment__text {
	color: #363636;
}

.body-text a, .comment__text a {
	color: #118E91;
}

.body-text iframe, .comment__text iframe {
  max-width: 500px !important;
  width: 100% !important;
  max-height: 400px !important;
  height: 320px;
  display: block;
}

#edit-group-type--wrapper {
	display: none;
}

.page-group-add #edit-group-type--wrapper {
	display: block;
}

.dropup.has-alert.has-alert--desktop > a:before, .dropdown.has-alert.has-alert--desktop > a:before {
    top: 15px !important;
    right: -5px !important;
}

.path-group .region--complementary-top .views-element-container .list-item__text--small * {
	display: inline;
}



.ajax-throbber.sk-chasing-dots .sk-dot1 { 
	background-color: #00adc9 !important;
}

.ajax-throbber.sk-chasing-dots .sk-dot2 { 
	background-color: #00ab6f !important;
}

.page-learn-iwrm-explained .paragraph--section:not(:first-child) {
	margin-top: 160px;
}

.page-learn-iwrm-explained .paragraph--featured img {
	margin: auto;
}	

.page-node-type-landing-page .primary-col .block-title {
	padding: 0px !important;
}


#block-homefeaturedactions .field--items {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content:center;
}

.maintenance-page #navbar {
	width: 100%;
	max-width: 100%;
}

.maintenance-page .navbar-header .navbar-brand {
	display: none !important;
}

.maintenance-page .navbar-header .logo {
	margin-top: 100px !important;
}

.maintenance-page .main-container {
	margin-top: 200px !important; 
}

.page-node-type-microsite. main-container {
	margin-top: -16px !important; 
	z-index: -5;
}

.page-learn-learning-opportunities h2.block-title {
	letter-spacing: 1.4px;
	color: #303030;
	text-transform: uppercase;
	margin-bottom: 12px !important;
	font-size: 13px;
	margin-top: 30px;
	color: #303030 !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	padding-left: 0px !important;
}

.page-learn-learning-opportunities .paragraph--block .container > h2.title{
	text-align: left;
	letter-spacing: 0px;
	color: #303030;
	margin-bottom: 30px;
	padding-left: 0px;
}

.page-learn-learning-opportunities .secondary-col {
	margin-top: 0px !important;
}


.page-learn-learning-opportunities .paragraph--block .container .card:not(.promo):not(.block-facet--dropdown) {
	background-color: #fff;
	border-radius: 5px;
	padding: 20px; 
}
.page-learn-learning-opportunities .fc-header-toolbar h2 {
	font-weight: 600;
	color: #303030;
	font-size: 15px !important;
}


.page-learn-learning-opportunities .fc-body tr, .page-learn-learning-opportunities .fc-body td, .page-learn-learning-opportunities .fc-head th, .page-learn-learning-opportunities .fc-head tr, .page-learn-learning-opportunities .fc-head td, .page-learn-learning-opportunities .fc-head thead {
	border-color: transparent !important;
}

.page-learn-learning-opportunities .fc-day-top {
	text-align: center;
}

.page-learn-learning-opportunities .fc-day-top a {
	float: none !important;
}

.page-learn-learning-opportunities .fc-event {
	background-color: #F68121 !important;
	border-color: transparent !important;
	border-radius: 8px;
}

.page-learn-learning-opportunities .fc-unthemed td.fc-today {
  background: #f3f6f7 !important;
}

.page-learn-learning-opportunities .fc-button-primary:not(.fc-button-active) {
	color: #828282 !important;
	background-color: #F3F6F7 !important;
	border-color: #F3F6F7 !important;
}

.page-learn-learning-opportunities .views-exposed-form .form-item {
	float: left !important;
margin: 20px 20px 0px 20px !important;
max-width: 180px !important;
}

.path-user .user-recommendations .curator, .path-user .user-recommendations .survey{
	display: flex;
	font-size:16px;
	padding: 20px;
	justify-content: center;
	flex-direction: row;
	flex-grow: 1;
	background: #fff;
	margin: 20px;
	border-radius: 5px;
	height: 120px;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: contain;
	box-shadow: 0px 10px 20px -10px rgba(17,103,145,0.2);
	background-image: url("data:image/svg+xml,%3Csvg width='589' height='132' viewBox='0 0 589 132' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M293.041 42.0133C125.326 118.103 27.799 47.5188 0 2.71523V132H589V42.0133C560.228 10.3091 460.756 -34.0768 293.041 42.0133Z' fill='rgb(17, 142, 145)' fill-opacity='0.04'/%3E%3C/svg%3E%0A");
	background-size: 100%;
}
.path-user .user-recommendations .curator a, .path-user .user-recommendations .survey a{
font-family: Jakob;
text-decoration: underline;
text-decoration-color: #118e91;
text-decoration-thickness: 1.5px;
font-size: 18px;
transition: 0.3s;
}

.path-user .user-recommendations .curator a:hover, .path-user .user-recommendations .survey a:hover{
text-decoration-color: #f68121;
}

.path-user .user-recommendations .view-header h3 {
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 20px !important;
	font-size: 13px;
	color: #333 !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	margin-top: 10px;
	padding: 0px;
}

.path-user .user-recommendations .cta {
	margin-bottom: 30px;
}

.path-user .alert-warning-recommendations {
	margin-top: 30px;
}

.path-user .user-recommendations .professionals {
	padding: 20px;
	font-size: 20px;
	margin-left: 15px;
	margin-top: 10px;
}

.path-user .user-recommendations .professionals .heading span{
	font-size: 20px;
	margin-left: 15px;
	margin-top: 10px;
}
 
.path-user .user-recommendations .professionals .more-link {
	font-size: 20px;
	float: right;
}

#block-socialauthlogin .block-title {
	color: #000;
font-weight: 500;
position: relative;
margin: 0;
padding: 15px 1.25rem 0;
padding-bottom: 15px;
margin-bottom: 1.25rem;
line-height: 1;
font-size: 1rem;
border-bottom: 1px solid #e6e6e6;
}

.social-auth.auth-link {
	width: 50px;
	height: 50px;
	display: inline-block;
}

.social-auth.auth-link img{
	border-radius: 8px;
	margin-top:0px !important;
}

#block-groupmembershipnotice .alert{
	background-color: transparent;
	border-color: transparent;
	font-size: 0.9em;
}

.engage-metrics .metric .card {
	text-align: center;
	padding: 20px;
	background-image: url("data:image/svg+xml,%3Csvg width='589' height='132' viewBox='0 0 589 132' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M293.041 42.0133C125.326 118.103 27.799 47.5188 0 2.71523V132H589V42.0133C560.228 10.3091 460.756 -34.0768 293.041 42.0133Z' fill='%2300AEEF' fill-opacity='0.04'/%3E%3C/svg%3E%0A");
	background-position: bottom;
	background-repeat: no-repeat;
}

.engage-metrics .metric .number {
  font-size: 4em;
  font-weight: 700;
  display:block;
  color: #21b5b9;
}

.engage-metrics .metric .text {
	font-weight: 500;
	color: #363636;
	margin-top: -5px;
}

.page-connect-engage .paragraph--section h2 {
	margin: 0 0 2rem;
	letter-spacing: 1.4px;
	color: #303030;
	text-transform: uppercase;
	margin-bottom: 12px !important;
	font-size: 13px;
	color: #303030 !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	padding-bottom: 20px !important;
}

.page-connect-engage .paragraph--section h2.block-title {
	padding-left: 0px;
}

.page-connect-engage .view-featured-communities {
	padding: 20px;
}

.page-connect-engage .paragraph--section:nth-child(3) .primary-col {
	max-width: 100%;
}

.page-connect-engage h1.page-title {
	color: #6898BE !important;	
}

.page-connect-engage .secondary-col {
  margin-top: 0px;
}

.block-engage-metrics .block-title {
	padding-left: 40px !important;
}

.page-connect-engage .pagination > .active > a {
	background-color: #6898BE;
}


.fc-dayGridMonth-view .fc-day-grid-event .fc-time { 
	display: none !important;
}

#block-groupmembershipnotice a {
	text-decoration: underline;
}

.block-views-blockfeatured-resources-featured .view{
	padding: 20px 20px 0px 20px;
	background-repeat: no-repeat;
	background-color: #21b5b9;
	border-radius: 5px;
	background-image: url("../img/featured-vector-1.png"), url("../img/featured-vector-2.png");
	background-position: -50px -120px, 700px 120px;
}

.block-views-blockfeatured-resources-featured .teaser__content {
	text-align: left !important;
}

.block-views-blockfeatured-resources-featured .view .promo {
	margin-left: auto;
margin-right: auto;
}

.page-learn-resource-library .paragraph--section:nth-child(2) .paragraph--block {
	padding: 0px !important;
}

.page-learn-resource-library .paragraph--block h2 {
	font-size: 1em !important;
	padding-left: 0px !important;
	color: #303030;
	margin-bottom: 10px !important;
	margin-top: 20px !important;
	font-weight: 700;
	text-transform: uppercase;
}

@media screen and (max-width: 531px) {
    .page-learn-resource-library #block-toolbox-content article > .field-base { display: flex; flex-flow: column; }
    .page-learn-resource-library .paragraph--section:nth-child(1) { order: 0; }
	.page-learn-resource-library .paragraph--section:nth-child(2) { order: 3; }
    .page-learn-resource-library .paragraph--section:nth-child(3) { order: 2; }
}



.block-views-blockfeatured-resources-featured .card.promo .img-responsive {
	border-radius: 5px !important;
}

.block-views-blockfeatured-resources-featured .teaser--small {
	background: #fff;
	border-radius: 3px;
	display: flex;
	align-items: center;
	min-height: 100px;
}

.block-views-blockfeatured-resources-featured .teaser--small__media {
	width: 100px;
	padding: 20px;
}

.block-views-blockfeatured-resources-featured .teaser--small__details{
	color: #303030;
}

.block-views-blockfeatured-resources-featured.teaser--small__meta {
	display: none;
}

.pager__item .ajax-progress.ajax-progress-throbber {
	display: none !important;
}

body[class$="-delete"] #sub-header{
  padding-top: 245px;
}

#block-views-block-custom-communities-block-1 .more-link {
  float: right !important;
}

#block-views-block-custom-communities-block-1 .more-link a{
  text-decoration-color: #00aeef !important;
  font-size: 18px !important;
}

#block-views-block-custom-communities-block-1 .card__text {
	justify-content: left !important;
}

.ajax-progress:not(.glyphicon-refresh) {
  background-color: #fff !important;
  height: 70px !important;
  width: 70px !important;
  padding: 12px 20px 0px 15px !important;
  border-radius: 50% !important;
  -webkit-filter: drop-shadow( 0px 5px 10px rgba(227, 227, 227, 0.7));
filter: drop-shadow( 0px 5px 10px rgba(227, 227, 227, 0.7));
}

.skiptranslate {
	display: none !important;
}

.page-clp-unccd-drought-toolbox iframe {
	max-width: none !important;
	border: none;
	max-height: none !important;
	height: 1200px;
}



#unccd-banner {
background: black;
overflow: hidden;
background: #C33764;
background: -webkit-linear-gradient(to right,rgba(253, 174, 59, 0.8) 50%, rgba(195, 55, 100, 0)), url("/themes/custom/unccd/assets/img/unccd_banner.jpg");
background: linear-gradient(to right,rgba(253, 174, 59, 0.8) 50%, rgba(195, 55, 100, 0)), url("/themes/custom/unccd/assets/img/unccd_banner.jpg");
height: 600px;
margin-top: 0px;
padding: 120px 100px 100px 100px;
}

#unccd-banner p, .unncd-banner h1 {
	color: #fff;
}

#unccd-banner p {
	color: #fff;
font-size: 16px;
font-weight: 500;
}

#unccd-banner h1 {
	font-size: 75px;
	color: #fff;
}

@media only screen and (max-width: 1200px) {
	#unccd-banner h1 {
		font-size: 3.7em;
	}
}

@media only screen and (max-width: 990px) {
	#unccd-banner h1 {
		font-size: 2.7em;
	}
	
	#unccd-banner {
		padding: 80px 40px 40px 40px;
	}
}

.node--type-microsite .bs-region--main div:first-child .primary-col {
	width: 100%;
	max-width: 100%;
}

#droughtIframe {
	max-width: 100% !important;
	max-height: 1200px !important;
	height: 1200px !important;
	border: none;
}

.heading--heading-6 {
	font-size: 26px;
}

.head--left::before {
  background-color: rgb(0, 171, 241);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0;
  width: 58px;
}

.head--left {
	padding-top: 20px;
	position: relative;
	text-align: left;
	margin-top: 50px;
	margin-bottom: 35px;
}

.view-microsite-content {
	padding: 20px;
}

.view-microsite-content .views-field.views-field-title {
  margin-top: 20px;
  border-left: 2px solid #00abf1;
  padding-left: 20px;
}

.view-id-microsite_content.view-display-id-members {
	background-color: rgb(227, 80, 43);
	padding: 30px;
	margin-top: 50px;
	color: #fff;
}

.view-id-microsite_content.view-display-id-members h4 {
	font-weight: 900;
	font-size: 50px;
	text-align: center;
}

.view-id-microsite_content.view-display-id-members h4 span{
	font-weight: 900;
	line-height: 1;
	-webkit-text-stroke-color: #fff;
	-webkit-text-stroke-width: 2px;
	font-size: 105px;
	
	display: block;
}

.view-id-microsite_content.view-display-id-members .view-footer a{
	border: 2px solid #fff;
	padding: 10px;
	display: block;
	width: 200px;
	margin: auto;
	  margin-top: auto;
	margin-top: 50px;
	text-align: center;
}

.view-id-microsite_content.view-display-id-members .view-footer a:hover{
	color: rgb(227, 80, 43);
	background-color: #fff;
}

.page-node-type-landing-page {
padding-top: 0px !important;
}

.page-node-type-landing-page .main-container.communities .secondary-col {
	background: #fff;
  -webkit-filter: drop-shadow(0px 5px 10px rgba(227,227,227,0.7));
  filter: drop-shadow(0px 5px 10px rgba(227,227,227,0.7));
  margin-top: 0px;
	max-height: 360px;
	padding-left:0px;
}

.page-node-type-landing-page .main-container.communities .secondary-col .featured-blob{
	background-image: url('/sites/default/files/2021-09/Path%201550%20%283%29.svg');
}

@media (max-width: 599px) {
  
  .page-node-type-landing-page .main-container.communities .secondary-col .featured-blob {
    display: block !important;
	background-size: 80px 80px;
  }
  .page-node-type-landing-page .main-container.communities .secondary-col .featured-blob .teaser__image {
    display: block;
	height: 80px;
  }
  .page-node-type-landing-page .main-container.communities .secondary-col .featured-blob .teaser__image .img_wrapper {
    width: 40px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-node-type-landing-page .main-container.communities .secondary-col .featured-blob .img_wrapper img {
	  width: 70px;
	  margin-top: 15px;
	}
}

.page-node-type-landing-page .main-container.communities .secondary-col .featured-blob .img_wrapper{
text-align: center;
  margin-top: 25px;
  margin-left: -5px;
  
}

.page-node-type-landing-page .main-container.communities .secondary-col .featured-blob .img_wrapper img{
  width: 70px;
  margin-top: 70px;
}

.page-node-type-landing-page .main-container.communities .secondary-col .teaser__body {
	margin: auto;
  position: relative;
}  

.page-node-type-landing-page .main-container.communities .secondary-col .teaser__title {
	margin: auto;
	color: #000 !important;
}

.page-node-type-landing-page .main-container.communities .secondary-col .featured-blob .teaser__image{
  background-color: transparent !important;
}


.page-node-type-landing-page .main-container.communities .secondary-col .teaser__title a:hover {
  text-decoration: underline;
  text-decoration-color: #00aeef;
  transition: 0.3s;
}
.page-node-type-landing-page .main-container.communities .secondary-col .teaser__title span{
font-size: 17px;
  display: block;
}

.page-node-type-landing-page .main-container.communities .secondary-col a {
	color: #000;
}

@media (min-width: 900px) { 
  body:not(.path-group) .layout--with-complementary > .region--content, body[class$='-members'] .layout--with-complementary > .region--content { 
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100%  !important;
  }
}

@media only screen and (max-width: 500px) {
	#unccd-banner {
		padding: 40px 40px 40px 40px;
		height: 680px;
		background-size: cover;
	}
}


.view-id-search_microsite_content.view-display-id-events .view-header h4{
  font-size: 15px;
  letter-spacing: 1.4px;
  color: #303030;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1em;
}

.disclaimer-holder {
  background-color: rgb(0, 171, 241);
  padding: 30px;
  margin-top: 85px;
  color: #fff;
  height: 340px;
}

#edit-username-login {
	margin-top: 1rem !important;
}

.register-unccd {
	background-color: #e2f6ff;
  padding: 20px;
}

.register-unccd a {
	color: #00abf1;
}

.disclaimer-holder #block-toolbox-sitebranding {
	display: flex;
	justify-content: center;
}

.disclaimer-holder #block-toolbox-sitebranding .hosted-on {
 text-align: right;
  margin-right: 10px;
}


.btn-default.flag-enrollment-link {
  color: #ffffff;
  background-color: #f68121;
  border-color: #f68121 !important;
  font-size: 1.1em;
  font-weight: 500;
  width: 100%;
}

.btn-default.flag-enrollment-link:hover {
  color: #f68121;
  background-color: #fff;
}

.page-node-type-course .bs-region--right > .card__body {
    background: rgb(211, 237, 225);
background: linear-gradient(180deg,rgba(36, 161, 72, 0.21) 0%, rgb(211, 237, 225) 20%, rgb(255, 255, 255) 40%);
}

.page-node-type-course .bs-region--left  .card__body .field-base:first-child p {
	color: #303030;
}