/* ADJUSTER MIXINS/CLASSES */
/* FONTS */
.round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.sep {
  display: inline;
}
.sep::after {
  content: "\a";
  white-space: pre;
}
@media all and (min-width: 768px) {
  .sep {
    display: none;
  }
}

.d-flex {
  display: flex;
}

.absolute {
  position: absolute;
}
.absolute.right {
  right: 0px;
}
.absolute.top {
  top: 0px;
}
.absolute.left {
  left: 0px;
}
.absolute.bottom {
  bottom: 0px;
}
.absolute.absright {
  right: 0px !important;
}
.absolute.absleft {
  left: 0px !important;
}

.fixed {
  position: fixed;
}
.fixed.right {
  right: 0px;
}
.fixed.top {
  top: 0px;
}
.fixed.left {
  left: 0px;
}
.fixed.bottom {
  bottom: 0px;
}

.hidden-xs {
  display: none;
}
@media all and (min-width: 768px) {
  .hidden-xs {
    display: block;
  }
}

.visible-xs {
  display: block;
}
@media all and (min-width: 768px) {
  .visible-xs {
    display: none;
  }
}

.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}

.align_center {
  text-align: center;
}

.align_justify {
  text-align: justify;
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.inline_block {
  display: inline-block;
}

.inline {
  display: inline;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.clear_both {
  clear: both;
}

.nowrap {
  white-space: nowrap;
}

.overflow_hidden {
  overflow: hidden;
}

.italic {
  font-style: italic;
}

ul {
  margin-left: 0;
}

[data-href] {
  cursor: pointer;
}

.flex {
  display: -webkit-flex;
  display: flex;
}
.flex > .flex.align_center {
  width: 100%;
}
.flex.column {
  flex-direction: column;
}
.flex.align_center {
  align-items: center;
  justify-content: center;
}
.flex.align_left .align_left {
  align-items: flex-start;
  justify-content: center;
}
.flex.space_between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex.row {
  margin-left: 0px;
}

.img-responsive {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  /*to make working with rem easier. With this setting, 1.6rem = 16px*/
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.sidebar h2 {
  text-align: center !important;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
@media all and (min-width: 768px) {
  body {
    font-size: 1.65rem;
    line-height: 2.25rem;
  }
}
@media all and (min-width: 1024px) {
  body {
    font-size: 1.7rem;
    line-height: 2.3rem;
  }
}
@media all and (min-width: 1440px) {
  body {
    font-size: 1.75rem;
    line-height: 2.35rem;
  }
}
@media all and (min-width: 1600px) {
  body {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}

section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media all and (min-width: 768px) {
  section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
@media all and (min-width: 1024px) {
  section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media all and (min-width: 1440px) {
  section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}
@media all and (min-width: 1600px) {
  section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
section.container-fluid {
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  margin-left: 0rem;
  margin-right: 0rem;
}
@media all and (max-width: 1025px) {
  section.container-fluid.hero {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media all and (max-width: 1025px) {
  section.container-fluid.footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media all and (max-width: 1025px) {
  header.container-fluid, nav.container-fluid {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.container {
  width: 100%;
  max-width: 1440px;
}
@media all and (min-width: 1024px) {
  .container {
    width: 1024px;
  }
}
@media all and (min-width: 1440px) {
  .container {
    width: 1280px;
  }
}
@media all and (min-width: 1600px) {
  .container {
    width: 1440px;
  }
}
.container > .row > .col h2 {
  margin-bottom: 4.5rem;
}
@media all and (min-width: 768px) {
  .container > .row > .col h2 {
    margin-bottom: 5rem;
  }
}
@media all and (min-width: 1024px) {
  .container > .row > .col h2 {
    margin-bottom: 5.5rem;
  }
}
@media all and (min-width: 1440px) {
  .container > .row > .col h2 {
    margin-bottom: 6rem;
  }
}
@media all and (min-width: 1600px) {
  .container > .row > .col h2 {
    margin-bottom: 6.5rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0 !important;
  width: 100%;
}

h1, .h1 {
  margin-bottom: 3rem;
  font-size: 3.6rem;
  line-height: 4.6rem;
}
@media all and (min-width: 768px) {
  h1, .h1 {
    margin-bottom: 3.5rem;
  }
}
@media all and (min-width: 1024px) {
  h1, .h1 {
    margin-bottom: 4rem;
  }
}
@media all and (min-width: 1440px) {
  h1, .h1 {
    margin-bottom: 4.5rem;
  }
}
@media all and (min-width: 1600px) {
  h1, .h1 {
    margin-bottom: 5rem;
  }
}
@media all and (min-width: 768px) {
  h1, .h1 {
    font-size: 4.2rem;
    line-height: 5.2rem;
  }
}
@media all and (min-width: 1024px) {
  h1, .h1 {
    font-size: 4.8rem;
    line-height: 5.8rem;
  }
}
@media all and (min-width: 1440px) {
  h1, .h1 {
    font-size: 5.6rem;
    line-height: 6.6rem;
  }
}
@media all and (min-width: 1600px) {
  h1, .h1 {
    font-size: 6.2rem;
    line-height: 7.2rem;
  }
}

h2, .h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 2.6rem;
}
@media all and (min-width: 768px) {
  h2, .h2 {
    margin-bottom: 2.5rem;
  }
}
@media all and (min-width: 1024px) {
  h2, .h2 {
    margin-bottom: 3.25rem;
  }
}
@media all and (min-width: 1440px) {
  h2, .h2 {
    margin-bottom: 3.75rem;
  }
}
@media all and (min-width: 1600px) {
  h2, .h2 {
    margin-bottom: 4.25rem;
  }
}
@media all and (min-width: 768px) {
  h2, .h2 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}
@media all and (min-width: 1024px) {
  h2, .h2 {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
}
@media all and (min-width: 1440px) {
  h2, .h2 {
    font-size: 3rem;
    line-height: 3.6rem;
  }
}
@media all and (min-width: 1600px) {
  h2, .h2 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
}

h3, .h3 {
  margin-bottom: 1.75rem;
  font-size: 1.8rem;
  line-height: 2.5rem;
}
@media all and (min-width: 768px) {
  h3, .h3 {
    margin-bottom: 2rem;
  }
}
@media all and (min-width: 1024px) {
  h3, .h3 {
    margin-bottom: 2.5rem;
  }
}
@media all and (min-width: 1440px) {
  h3, .h3 {
    margin-bottom: 3rem;
  }
}
@media all and (min-width: 1600px) {
  h3, .h3 {
    margin-bottom: 3.5rem;
  }
}
@media all and (min-width: 768px) {
  h3, .h3 {
    font-size: 1.9rem;
    line-height: 2.6rem;
  }
}
@media all and (min-width: 1024px) {
  h3, .h3 {
    font-size: 2rem;
    line-height: 2.7rem;
  }
}
@media all and (min-width: 1440px) {
  h3, .h3 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}
@media all and (min-width: 1600px) {
  h3, .h3 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}

h4, .h4, h5, .h5, h6, .h6 {
  margin-bottom: 1.25rem;
  font-size: 1.7rem;
  line-height: 2.4rem;
}
@media all and (min-width: 768px) {
  h4, .h4, h5, .h5, h6, .h6 {
    margin-bottom: 1.5rem;
  }
}
@media all and (min-width: 1024px) {
  h4, .h4, h5, .h5, h6, .h6 {
    margin-bottom: 2rem;
  }
}
@media all and (min-width: 1440px) {
  h4, .h4, h5, .h5, h6, .h6 {
    margin-bottom: 2.5rem;
  }
}
@media all and (min-width: 1600px) {
  h4, .h4, h5, .h5, h6, .h6 {
    margin-bottom: 2.75rem;
  }
}
@media all and (min-width: 768px) {
  h4, .h4, h5, .h5, h6, .h6 {
    font-size: 1.75rem;
    line-height: 2.45rem;
  }
}
@media all and (min-width: 1024px) {
  h4, .h4, h5, .h5, h6, .h6 {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
}
@media all and (min-width: 1440px) {
  h4, .h4, h5, .h5, h6, .h6 {
    font-size: 1.85rem;
    line-height: 2.55rem;
  }
}
@media all and (min-width: 1600px) {
  h4, .h4, h5, .h5, h6, .h6 {
    font-size: 1.9rem;
    line-height: 2.6rem;
  }
}

/*
h5, .h5 {
  margin-bottom:2rem;
}

h6, .h6 {
  margin-bottom:1.75rem;
}*/
p {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 1.6rem;
  width: 100%;
}
p.lead {
  font-size: 2rem;
  line-height: 2.6rem;
}
@media all and (min-width: 768px) {
  p.lead {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}
@media all and (min-width: 1024px) {
  p.lead {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}
@media all and (min-width: 1440px) {
  p.lead {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
}
@media all and (min-width: 1600px) {
  p.lead {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
}

.button, div[class*=frm_style_formidable-style].with_frm_style .frm_submit button {
  display: inline-block;
  width: auto;
  padding: 2rem 3rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button.link, div[class*=frm_style_formidable-style].with_frm_style .frm_submit button.link {
  padding: 1rem 3rem;
}
.button:hover, div[class*=frm_style_formidable-style].with_frm_style .frm_submit button:hover {
  opacity: 0.8;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.image_container {
  line-height: 0;
}

img {
  width: 100%;
  height: auto;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
img.align_center {
  margin: 0 auto;
}
img.thumb {
  min-width: 170px;
}
@media all and (min-width: 768px) {
  img.thumb {
    min-width: 256px;
  }
}
@media all and (min-width: 1024px) {
  img.thumb {
    min-width: 300px;
  }
}
img.social {
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
}
@media all and (min-width: 768px) {
  img.social {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media all and (min-width: 1024px) {
  img.social {
    width: 5rem;
    height: 5rem;
  }
}

[data-href] {
  cursor: pointer;
}

header {
  margin: 0;
  padding: 0 !important;
  height: auto;
}
header.minimized_navigation .inner > div .hamburger {
  display: block;
  display: block;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  float: right;
}
header.minimized_navigation .inner > div .hamburger svg {
  width: 3rem;
  height: 3rem;
}
header .right .inner, header .left .inner {
  align-items: center;
}
header .left .inner > div nav.desktop {
  justify-content: flex-end;
}
header .right .inner > div h1 {
  display: flex;
  justify-content: flex-end;
}
header .right .inner > div nav.desktop {
  justify-content: flex-start;
}
header .center .inner > div.logo-holder h1 {
  display: flex;
  justify-content: center;
}
@media all and (max-width: 769px) {
  header .center .inner > div.logo-holder h1 {
    justify-content: space-between;
  }
}
@media all and (max-width: 769px) {
  header .center .inner > div.logo-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
header .center .inner > div nav.desktop {
  justify-content: center;
  padding-bottom: 3rem;
}
header .center .inner > div nav.desktop > ul {
  width: 100%;
  display: flex;
  justify-content: center;
}
header .inner > div {
  height: auto;
}
header .inner > div .hamburger {
  display: none;
}
@media all and (max-width: 769px) {
  header .inner > div .hamburger {
    display: block;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    float: right;
  }
  header .inner > div .hamburger svg {
    width: 3rem;
    height: 3rem;
  }
}
header .inner > div nav.desktop {
  display: flex;
}
header .inner > div nav.desktop ul li {
  padding: 0 0 0 2rem;
  margin: 0;
  display: inline-block;
}
@media all and (max-width: 769px) {
  header .inner > div nav.desktop {
    display: none;
  }
}
header .inner > div ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
header .inner > div ul li {
  list-style: none;
  list-style-type: none;
  padding: 0 0 0 2rem;
  margin: 0;
  display: inline-block;
}
header .inner > div ul li a {
  text-transform: uppercase;
  text-decoration: none;
}
header h1.logo {
  margin: 0 !important;
}
header h1.logo a {
  display: inline;
  margin: 0;
  padding: 0;
  height: auto;
  line-height: 0;
}
header h1.logo img {
  display: block;
  width: auto;
}
@media all and (min-width: 768px) {
  header h1.logo img {
    width: auto;
  }
}
@media all and (min-width: 1024px) {
  header h1.logo img {
    width: auto;
  }
}
@media all and (min-width: 1440px) {
  header h1.logo img {
    width: auto;
  }
}
header h1.small {
  height: 5rem;
}
header h1.small img {
  height: 4rem;
}
@media all and (min-width: 768px) {
  header h1.small {
    height: 6rem;
  }
  header h1.small img {
    height: 5rem;
  }
}
@media all and (min-width: 1024px) {
  header h1.small {
    height: 9rem;
  }
  header h1.small img {
    height: 7rem;
  }
}
@media all and (min-width: 1440px) {
  header h1.small {
    height: 10rem;
  }
  header h1.small img {
    height: 8rem;
  }
}
header h1.medium {
  height: 7rem;
}
header h1.medium img {
  height: 5rem;
}
@media all and (min-width: 768px) {
  header h1.medium {
    height: 8rem;
  }
  header h1.medium img {
    height: 6rem;
  }
}
@media all and (min-width: 1024px) {
  header h1.medium {
    height: 11rem;
  }
  header h1.medium img {
    height: 9rem;
  }
}
@media all and (min-width: 1440px) {
  header h1.medium {
    height: 12rem;
  }
  header h1.medium img {
    height: 10rem;
  }
}
header h1.large {
  height: 9rem;
}
header h1.large img {
  height: 7rem;
}
@media all and (min-width: 768px) {
  header h1.large {
    height: 10rem;
  }
  header h1.large img {
    height: 8rem;
  }
}
@media all and (min-width: 1024px) {
  header h1.large {
    height: 13rem;
  }
  header h1.large img {
    height: 11rem;
  }
}
@media all and (min-width: 1440px) {
  header h1.large {
    height: 14rem;
  }
  header h1.large img {
    height: 12rem;
  }
}
header h1.xlarge {
  height: 11rem;
}
header h1.xlarge img {
  height: 9rem;
}
@media all and (min-width: 768px) {
  header h1.xlarge {
    height: 12rem;
  }
  header h1.xlarge img {
    height: 10rem;
  }
}
@media all and (min-width: 1024px) {
  header h1.xlarge {
    height: 15rem;
  }
  header h1.xlarge img {
    height: 13rem;
  }
}
@media all and (min-width: 1440px) {
  header h1.xlarge {
    height: 16rem;
  }
  header h1.xlarge img {
    height: 14rem;
  }
}
@media all and (min-width: 1024px) {
  header {
    /*.container {
      width:calc(100% - 4rem);  
    }*/
  }
}

nav.mobile.hidden {
  display: none;
}
nav.mobile ul li {
  padding: 2rem;
  margin: 0;
  display: block;
}

section.hero {
  padding-top: 0px;
  padding-bottom: 0px;
}
section.hero > .row img {
  display: block;
}
section.hero > .row.owl-carousel {
  width: calc(100% + 15px);
  position: relative;
}
section.hero > .row.owl-carousel .overlay {
  padding-left: 15px !important;
}
section.hero > .row.owl-carousel .overlay h1, section.hero > .row.owl-carousel .overlay .h1, section.hero > .row.owl-carousel .overlay h2, section.hero > .row.owl-carousel .overlay .h2 {
  width: 80%;
}
@media all and (min-width: 1024px) {
  section.hero > .row.owl-carousel .overlay h1, section.hero > .row.owl-carousel .overlay .h1, section.hero > .row.owl-carousel .overlay h2, section.hero > .row.owl-carousel .overlay .h2 {
    width: 100%;
  }
}
section.hero > .row.owl-carousel .owl-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
section.hero > .row.owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
section.hero > .row.owl-carousel .owl-nav > div {
  top: 0;
  position: absolute;
  font-size: 0;
  height: 4rem;
  width: 2rem;
  background: none;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0.5;
  transition: all 0.3s ease;
}
section.hero > .row.owl-carousel .owl-nav > div:hover {
  opacity: 1;
}
section.hero > .row.owl-carousel .owl-nav > div.owl-prev {
  left: 20px;
  background: url(/wp-content/themes/dice/images/left.svg) center center no-repeat rgba(0, 0, 0, 0);
  background-size: 100%;
}
section.hero > .row.owl-carousel .owl-nav > div.owl-next {
  right: 10px;
  background: url(/wp-content/themes/dice/images/right.svg) center center no-repeat rgba(0, 0, 0, 0);
  background-size: 100%;
}
section.hero > .row.owl-carousel .owl-item .col-12 {
  padding-right: 0;
  padding-left: 0;
}
section.hero > .row.hero .container.flex .row.inner.flex {
  width: 100%;
  margin-left: 0px;
}
@media all and (min-width: 1024px) {
  section.hero > .row.hero .container.flex .row.inner.flex {
    margin-left: -15px;
  }
}
section.hero > .row .col > .map > #map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
section.hero > .row .col > .overlay {
  z-index: 10000;
}
section.hero > .row .col > .overlay > .container > .row .col h1, section.hero > .row .col > .overlay > .container > .row .col .h1 {
  margin-bottom: 1.6rem;
}
@media all and (min-width: 768px) {
  section.hero > .row .col > .overlay > .container > .row .col h1, section.hero > .row .col > .overlay > .container > .row .col .h1 {
    margin-bottom: 1.7rem;
  }
}
@media all and (min-width: 1024px) {
  section.hero > .row .col > .overlay > .container > .row .col h1, section.hero > .row .col > .overlay > .container > .row .col .h1 {
    margin-bottom: 1.8rem;
  }
}
@media all and (min-width: 1440px) {
  section.hero > .row .col > .overlay > .container > .row .col h1, section.hero > .row .col > .overlay > .container > .row .col .h1 {
    margin-bottom: 1.9rem;
  }
}
@media all and (min-width: 1600px) {
  section.hero > .row .col > .overlay > .container > .row .col h1, section.hero > .row .col > .overlay > .container > .row .col .h1 {
    margin-bottom: 2rem;
  }
}
section.hero > .row .col > .overlay > .container > .row .col h2, section.hero > .row .col > .overlay > .container > .row .col .h2 {
  margin-bottom: 3.6rem;
}
@media all and (min-width: 768px) {
  section.hero > .row .col > .overlay > .container > .row .col h2, section.hero > .row .col > .overlay > .container > .row .col .h2 {
    margin-bottom: 3.7rem;
  }
}
@media all and (min-width: 1024px) {
  section.hero > .row .col > .overlay > .container > .row .col h2, section.hero > .row .col > .overlay > .container > .row .col .h2 {
    margin-bottom: 3.8rem;
  }
}
@media all and (min-width: 1440px) {
  section.hero > .row .col > .overlay > .container > .row .col h2, section.hero > .row .col > .overlay > .container > .row .col .h2 {
    margin-bottom: 3.9rem;
  }
}
@media all and (min-width: 1600px) {
  section.hero > .row .col > .overlay > .container > .row .col h2, section.hero > .row .col > .overlay > .container > .row .col .h2 {
    margin-bottom: 4rem;
  }
}
section.hero .video-container {
  z-index: 1;
}
section.hero .video-container video {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 768px) {
  section.hero .video-container video {
    height: auto;
    width: 100%;
    max-width: 100%;
  }
}

section.actions .col-12 {
  padding-bottom: 3rem;
}
@media all and (min-width: 768px) {
  section.actions .col-12 {
    padding-bottom: 2rem;
  }
  section.actions .col-12.col-sm-6 {
    padding-bottom: 3rem;
  }
  section.actions .col-12.col-sm-6 .icon_container {
    width: 60%;
  }
  section.actions .col-12.col-sm-4 {
    padding-bottom: 3rem;
  }
  section.actions .col-12.col-sm-4 .icon_container {
    width: 80%;
  }
  section.actions .col-12.col-sm-3 {
    padding-bottom: 3rem;
  }
  section.actions .col-12.col-sm-3 .icon_container {
    width: 100%;
  }
  section.actions .col-12 h3 {
    margin-bottom: 1.1rem;
  }
}
section.actions .col-12 .icon_container {
  width: 50%;
  margin-bottom: 3rem;
}
section.actions .col-12 .icon_container.align_center {
  margin: 0 auto 3rem auto;
}

section.gallery a {
  max-width: 100%;
}
section.gallery .thumb {
  margin-bottom: 2rem;
  max-width: 100%;
  min-width: 100%;
}

section.sponsors .row.inner {
  align-items: center;
}
section.sponsors .row .col-xs-6 {
  padding-bottom: 3rem;
}
@media all and (min-width: 768px) {
  section.sponsors .row .col-xs-6 {
    padding-bottom: 0rem;
  }
}
section.sponsors .row .col-xs-6 .sponsor_container {
  width: 70%;
  margin-bottom: 3rem;
}
section.sponsors .row .col-xs-6 .sponsor_container.align_center {
  margin: 0 auto 3rem auto;
}

@media all and (max-width: 769px) {
  section .inner > .col-12:first-of-type {
    padding-bottom: 3rem;
  }
}
section.article {
  background: yellow;
}
section.article .outer .col .center {
  text-align: center;
}
section.article .outer .col .center p, section.article .outer .col .center * {
  text-align: center !important;
}
section.articles p.link {
  /*a
  {
      position:relative;
      padding-left:2rem;

      &::before
      {
          position:absolute;
          left:0;
          content:": : ";
      }
  }*/
}
section.articles p.link.first {
  padding-top: 3rem;
}
section.articles a.link {
  display: block;
  width: auto;
}
section.articles a.link.align_center {
  margin: 0 auto;
}
section.articles a.link.button {
  display: inline-block;
}
section.articles .link_logo {
  height: auto;
  width: 75%;
}
section.articles.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
section.articles .title-fluid h2 {
  padding-left: 2rem;
  padding-right: 2rem;
}
section.articles .articles-fluid {
  margin-left: 0;
  margin-right: 0;
}
section.articles .articles-fluid > .col-12 {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 4rem;
}
section.articles .articles-fluid > .col-12.flexwrap {
  flex-wrap: nowrap;
}
section.articles .articles-fluid > .col-12.flexwrap img.thumb {
  min-width: 100px;
}
section.articles .articles-fluid > .col-12 h3 {
  padding-left: 2rem;
  padding-bottom: 2rem;
  padding-right: 2rem;
  padding-top: 1.5rem;
  font-size: 2rem;
  line-height: 2.4rem;
}
@media all and (min-width: 768px) {
  section.articles .articles-fluid > .col-12 h3 {
    font-size: 2.1rem;
    line-height: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
    padding-right: 3rem;
  }
}
@media all and (min-width: 1024px) {
  section.articles .articles-fluid > .col-12 h3 {
    font-size: 2.2rem;
    line-height: 2.6rem;
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
    padding-right: 4rem;
  }
}
@media all and (min-width: 1440px) {
  section.articles .articles-fluid > .col-12 h3 {
    font-size: 2.3rem;
    line-height: 2.7rem;
    padding-right: 5rem;
  }
}
@media all and (min-width: 1600px) {
  section.articles .articles-fluid > .col-12 h3 {
    font-size: 2.4rem;
    line-height: 3rem;
    padding-right: 6rem;
  }
}
section.articles .articles-fluid > .col-12 > a {
  padding-left: 20px;
  padding-right: 60px;
}
section.articles .articles-fluid > .col-12 p {
  padding-left: 20px;
  padding-right: 60px;
}
section.articles .articles-fluid > .col-12 p.text > a {
  padding-left: 2.8rem;
  background: url(/wp-content/themes/dice/images/globe.svg) left center no-repeat;
  background-size: 1.8rem 1.8rem;
}
section.articles .inner.fullwidth {
  padding-bottom: 6rem;
  width: 100%;
}
@media all and (max-width: 1025px) {
  section.articles .inner.fullwidth {
    width: calc(100% + 30px);
  }
}
section.articles .inner.fullwidth:last-of-type {
  padding-bottom: 0;
}
section.articles .inner.fullwidth.float_left {
  align-items: center;
  justify-content: center;
}
section.articles .inner.fullwidth.float_right {
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}
section.articles .inner.fullwidth .col-md {
  padding: 0rem 2rem;
}
section.articles .inner.fullwidth .col-md img.shadow {
  box-shadow: 20px 20px 100px 10px rgba(0, 0, 0, 0.2);
}
@media all and (max-width: 1025px) {
  section.articles .inner.fullwidth .col-md h3.h4 {
    margin-top: 1.25rem;
  }
}
@media all and (max-width: 1025px) and (min-width: 768px) {
  section.articles .inner.fullwidth .col-md h3.h4 {
    margin-top: 1.5rem;
  }
}
@media all and (max-width: 1025px) and (min-width: 1024px) {
  section.articles .inner.fullwidth .col-md h3.h4 {
    margin-top: 2rem;
  }
}
@media all and (max-width: 1025px) and (min-width: 1440px) {
  section.articles .inner.fullwidth .col-md h3.h4 {
    margin-top: 2.5rem;
  }
}
@media all and (max-width: 1025px) and (min-width: 1600px) {
  section.articles .inner.fullwidth .col-md h3.h4 {
    margin-top: 2.75rem;
  }
}
section.articles .inner .col .button {
  margin-top: 1.25rem;
}
@media all and (min-width: 768px) {
  section.articles .inner .col .button {
    margin-top: 1.5rem;
  }
}
@media all and (min-width: 1024px) {
  section.articles .inner .col .button {
    margin-top: 2rem;
  }
}
@media all and (min-width: 1440px) {
  section.articles .inner .col .button {
    margin-top: 2.5rem;
  }
}
@media all and (min-width: 1600px) {
  section.articles .inner .col .button {
    margin-top: 2.75rem;
  }
}
section.articles .inner .col.articles {
  padding-bottom: 3rem;
}
@media all and (min-width: 768px) {
  section.articles .inner .col.articles {
    padding-bottom: 0rem;
  }
}
section.articles .inner .col.articles h3.h4 {
  margin-top: 1.25rem;
}
@media all and (min-width: 768px) {
  section.articles .inner .col.articles h3.h4 {
    margin-top: 1.5rem;
  }
}
@media all and (min-width: 1024px) {
  section.articles .inner .col.articles h3.h4 {
    margin-top: 2rem;
  }
}
@media all and (min-width: 1440px) {
  section.articles .inner .col.articles h3.h4 {
    margin-top: 2.5rem;
  }
}
@media all and (min-width: 1600px) {
  section.articles .inner .col.articles h3.h4 {
    margin-top: 2.75rem;
  }
}
section.article .inner .col.articles h3.h4 {
  margin-top: 1.25rem;
}
@media all and (min-width: 768px) {
  section.article .inner .col.articles h3.h4 {
    margin-top: 1.5rem;
  }
}
@media all and (min-width: 1024px) {
  section.article .inner .col.articles h3.h4 {
    margin-top: 2rem;
  }
}
@media all and (min-width: 1440px) {
  section.article .inner .col.articles h3.h4 {
    margin-top: 2.5rem;
  }
}
@media all and (min-width: 1600px) {
  section.article .inner .col.articles h3.h4 {
    margin-top: 2.75rem;
  }
}
section .sidebar h3.h4 {
  margin-top: 1.25rem;
}
@media all and (min-width: 768px) {
  section .sidebar h3.h4 {
    margin-top: 1.5rem;
  }
}
@media all and (min-width: 1024px) {
  section .sidebar h3.h4 {
    margin-top: 2rem;
  }
}
@media all and (min-width: 1440px) {
  section .sidebar h3.h4 {
    margin-top: 2.5rem;
  }
}
@media all and (min-width: 1600px) {
  section .sidebar h3.h4 {
    margin-top: 2.75rem;
  }
}
section .sidebar .col {
  padding-bottom: 3rem;
}
section .sidebar .col a:hover {
  text-decoration: none !important;
}

/*@mixin opacities
{
  &.ten
  {
    opacity:0.1
  }
  &.twenty
  {
    opacity:0.2
  }
  &.thirty
  {
    opacity:0.3
  }
  &.forty
  {
    opacity:0.4
  }
  &.fifty
  {
    opacity:0.5
  }
  &.sixty
  {
    opacity:0.6
  }
  &.seventy
  {
    opacity:0.7
  }
  &.eighty
  {
    opacity:0.8
  }
  &.ninety
  {
    opacity:0.9
  }
  &.hundred
  {
    opacity:1
  }
} */
section.container-fluid.fullwidth {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
section.container-fluid.fullwidth .overlay {
  /*&.ten
  {
      opacity:0.1
  }
  &.twenty
  {
      opacity:0.2
  }
  &.thirty
  {
      opacity:0.3
  }
  &.forty
  {
      opacity:0.4
  }
  &.fifty
  {
      opacity:0.5
  }
  &.sixty
  {
      opacity:0.6
  }
  &.seventy
  {
      opacity:0.7
  }
  &.eighty
  {
      opacity:0.8
  }
  &.ninety
  {
      opacity:0.9
  }
  &.hundred
  {
      opacity:1
  }*/
}
section.container-fluid.fullwidth .overlay.normal {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media all and (min-width: 768px) {
  section.container-fluid.fullwidth .overlay.normal {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media all and (min-width: 1024px) {
  section.container-fluid.fullwidth .overlay.normal {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media all and (min-width: 1440px) {
  section.container-fluid.fullwidth .overlay.normal {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
@media all and (min-width: 1600px) {
  section.container-fluid.fullwidth .overlay.normal {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
section.container-fluid.fullwidth .overlay.medium {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media all and (min-width: 768px) {
  section.container-fluid.fullwidth .overlay.medium {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}
@media all and (min-width: 1024px) {
  section.container-fluid.fullwidth .overlay.medium {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media all and (min-width: 1440px) {
  section.container-fluid.fullwidth .overlay.medium {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }
}
@media all and (min-width: 1600px) {
  section.container-fluid.fullwidth .overlay.medium {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
section.container-fluid.fullwidth .overlay.large {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media all and (min-width: 768px) {
  section.container-fluid.fullwidth .overlay.large {
    padding-top: 13rem;
    padding-bottom: 13rem;
  }
}
@media all and (min-width: 1024px) {
  section.container-fluid.fullwidth .overlay.large {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }
}
@media all and (min-width: 1440px) {
  section.container-fluid.fullwidth .overlay.large {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
}
@media all and (min-width: 1600px) {
  section.container-fluid.fullwidth .overlay.large {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }
}
section.container-fluid.fullwidth .overlay.hover {
  opacity: 0;
  cursor: pointer;
  transition: all 1.1s ease;
}
section.container-fluid.fullwidth .overlay.hover:hover {
  opacity: 1;
}
section.container-fluid.fullwidth .overlay.default {
  opacity: 1;
}
section .container.callout h2.h1 {
  margin-bottom: 2rem;
}
section .container.callout h2.h1.no-margin {
  margin-bottom: 0;
}
section .container.callout h3 {
  font-weight: normal;
  margin-bottom: 3.75rem;
}
section .container.callout .button {
  margin-top: 2.75rem;
}

section.quotes .quote-holder {
  display: none;
  transition: all 1.1s ease;
}
section.quotes .quote-holder.visible {
  display: block;
}
section.quotes .quote-holder .byline {
  align-items: center;
  justify-content: center;
}
section.quotes .quote-holder .byline h5 {
  margin-bottom: 0.5rem;
}
section.quotes .quote-holder p.lead {
  margin-bottom: 4rem;
}
@media all and (min-width: 768px) {
  section.quotes .quote-holder p.lead {
    margin-bottom: 4.4rem;
  }
}
@media all and (min-width: 1024px) {
  section.quotes .quote-holder p.lead {
    margin-bottom: 4.8rem;
  }
}
@media all and (min-width: 1440px) {
  section.quotes .quote-holder p.lead {
    margin-bottom: 5.2rem;
  }
}
@media all and (min-width: 1600px) {
  section.quotes .quote-holder p.lead {
    margin-bottom: 5.6rem;
  }
}
section.quotes .marker {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  display: inline-block;
  margin: 4rem 1.5rem 0 1.5rem;
}
section.quotes .marker.passive {
  opacity: 0.7;
  transition: all 0.3s ease;
}
section.quotes .marker.passive:hover {
  opacity: 1;
}

section.people > .row > .col > .container > .row > .col h2.h3 {
  margin-bottom: 4rem;
}
@media all and (min-width: 768px) {
  section.people > .row > .col > .container > .row > .col h2.h3 {
    margin-bottom: 5rem;
  }
}
@media all and (min-width: 1024px) {
  section.people > .row > .col > .container > .row > .col h2.h3 {
    margin-bottom: 6rem;
  }
}
@media all and (min-width: 1440px) {
  section.people > .row > .col > .container > .row > .col h2.h3 {
    margin-bottom: 7rem;
  }
}
@media all and (min-width: 1600px) {
  section.people > .row > .col > .container > .row > .col h2.h3 {
    margin-bottom: 8rem;
  }
}
section.people h5 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
@media all and (min-width: 768px) {
  section.people h5 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
}
@media all and (min-width: 1024px) {
  section.people h5 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }
}
@media all and (min-width: 1440px) {
  section.people h5 {
    font-size: 1.85rem;
    margin-bottom: 0.8rem;
  }
}
@media all and (min-width: 1600px) {
  section.people h5 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }
}
section.people p {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
@media all and (min-width: 768px) {
  section.people p {
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
  }
}
@media all and (min-width: 1024px) {
  section.people p {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
}
@media all and (min-width: 1440px) {
  section.people p {
    font-size: 1.65rem;
    margin-bottom: 0.8rem;
  }
}
@media all and (min-width: 1600px) {
  section.people p {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
}
section.people .col-sm {
  padding-bottom: 3rem;
}
@media all and (min-width: 768px) {
  section.people .col-sm {
    padding-bottom: 0rem;
  }
}
section.people .person_image_container {
  width: 50%;
  margin-bottom: 3rem;
}
section.people .person_image_container.align_center {
  margin: 0 auto 3rem auto;
}

div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields input[type=text], div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields input[type=email] {
  padding: 2rem 1rem;
}
div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields textarea {
  padding: 1rem 1rem 2rem 1rem;
}
div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields input, div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields textarea, div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields button {
  font-size: 1.6rem;
  line-height: 2.2rem;
}
@media all and (min-width: 768px) {
  div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields input, div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields textarea, div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields button {
    font-size: 1.65rem;
    line-height: 2.25rem;
  }
}
@media all and (min-width: 1024px) {
  div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields input, div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields textarea, div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields button {
    font-size: 1.7rem;
    line-height: 2.3rem;
  }
}
@media all and (min-width: 1440px) {
  div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields input, div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields textarea, div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields button {
    font-size: 1.75rem;
    line-height: 2.35rem;
  }
}
@media all and (min-width: 1600px) {
  div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields input, div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields textarea, div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields button {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields .g-recaptcha > div {
  margin: 0 auto;
}
div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields .frm_submit {
  display: flex;
  justify-content: center;
}
div[class*=frm_style_formidable-style].with_frm_style .frm_form_fields .frm_submit button {
  outline: none;
  border: none;
}

section.map {
  padding-top: 0px;
  padding-bottom: 0px;
}
section.map #map {
  height: 30rem;
}
section.map #map .map_content {
  width: 100%;
  overflow: hidden;
}
section.map #map .map_content .map_body_content {
  width: 100%;
  overflow: hidden;
}
section.map #map .map_content .map_body_content h3 {
  margin-bottom: 1rem;
}
@media all and (min-width: 768px) {
  section.map #map {
    height: 35rem;
  }
}
@media all and (min-width: 1024px) {
  section.map #map {
    height: 40rem;
  }
}
@media all and (min-width: 1440px) {
  section.map #map {
    height: 50rem;
  }
}
@media all and (min-width: 1600px) {
  section.map #map {
    height: 60rem;
  }
}
@media all and (max-width: 769px) {
  section.map .container.address {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 769px) {
  section.map .container.address .row {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
  }
}
section.map .container.address .row .col {
  margin-top: 0rem;
  margin-bottom: 0rem;
}
@media all and (min-width: 768px) {
  section.map .container.address .row .col {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
@media all and (min-width: 1024px) {
  section.map .container.address .row .col {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
@media all and (min-width: 1440px) {
  section.map .container.address .row .col {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
}
@media all and (min-width: 1600px) {
  section.map .container.address .row .col {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
section.map .container.address .row .col > div {
  padding: 3rem;
}
footer {
  margin: 0;
  padding-top: 4rem;
  padding-bottom: 6rem;
  height: auto;
}
footer .col-sm-4 {
  padding-bottom: 3rem;
}
@media all and (min-width: 768px) {
  footer .col-sm-4 {
    padding-bottom: 0rem;
  }
}
footer .col-sm-4 > .align_left {
  padding-right: 0;
}
@media all and (min-width: 768px) {
  footer .col-sm-4 > .align_left {
    padding-right: 3rem;
  }
}
footer h1.logo {
  margin: 0 !important;
  height: 5rem;
}
footer h1.logo img {
  padding-top: 0.5rem;
  height: 4rem;
  width: auto;
}
@media all and (min-width: 768px) {
  footer h1.logo {
    height: 6rem;
  }
  footer h1.logo img {
    padding-top: 1rem;
    height: 5rem;
    width: auto;
  }
}
@media all and (min-width: 1024px) {
  footer h1.logo {
    height: 9rem;
  }
  footer h1.logo img {
    padding-top: 1.5rem;
    height: 7rem;
    width: auto;
  }
}
@media all and (min-width: 1440px) {
  footer h1.logo {
    height: 10rem;
  }
  footer h1.logo img {
    padding-top: 2rem;
    height: 8rem;
    width: auto;
  }
}
footer .col-12.align_center > h6 {
  display: none;
}
footer #map {
  height: 30rem;
}
@media all and (min-width: 1024px) {
  footer .container {
    width: calc(100% - 4rem);
  }
}

.article .sidebar .some {
  margin-bottom: 3rem;
}

html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw;
}

.lightboxOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: fixed;
  left: 0;
  right: 0;
  top: 0 !important;
  bottom: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

section.content_column table {
  border-top-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 0px;
  border-right-width: 0px;
}
section.content_column table td {
  border-top-width: 0px;
  border-left-width: 0px;
  border-bottom-width: 1px;
  border-right-width: 1px;
  padding: 10px;
}

section.video .col-12.relative {
  background: black;
  border-left: 15px solid white;
  border-right: 15px solid white;
  padding-left: 0;
  padding-right: 0;
}
section.video.play .video-play-btn {
  display: none !important;
}
section.video img {
  display: block;
  opacity: 1;
}
section.video .video-play-btn {
  display: none;
}
section.video.hover img {
  opacity: 0.5;
}
section.video.hover .video-play-btn {
  display: block;
  z-index: 30;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(calc(-100% + 25px));
  cursor: pointer;
  height: 50px;
  width: 50px;
}
@media all and (min-width: 768px) {
  section.video.hover .video-play-btn {
    transform: translateY(-50%) translateX(calc(-100% + 30px));
    height: 60px;
    width: 60px;
  }
}
@media all and (min-width: 1024px) {
  section.video.hover .video-play-btn {
    transform: translateY(-50%) translateX(calc(-100% + 35px));
    height: 70px;
    width: 70px;
  }
}
@media all and (min-width: 1440px) {
  section.video.hover .video-play-btn {
    transform: translateY(-50%) translateX(calc(-100% + 40px));
    height: 80px;
    width: 80px;
  }
}
@media all and (min-width: 1600px) {
  section.video.hover .video-play-btn {
    transform: translateY(-50%) translateX(calc(-100% + 50px));
    height: 100px;
    width: 100px;
  }
}
section.video.hover .video-play-btn svg {
  width: 100%;
  height: auto;
}
section.video .hidden {
  display: none;
}
section.video .video-container {
  display: none;
}
section.video .video-container.play {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
section.video .video-container video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.page-template-page-eggegaard-status {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-template-page-eggegaard-status > main {
  flex-grow: 1;
  display: inherit;
  flex-direction: inherit;
}
.page-template-page-eggegaard-status > main > .status-section {
  flex-grow: 1;
}
.page-template-page-eggegaard-status > main .status-container {
  display: grid;
  grid-template-columns: 1fr;
}
@media all and (min-width: 1024px) {
  .page-template-page-eggegaard-status > main .status-container {
    grid-template-columns: 1fr 1fr;
  }
}
.page-template-page-eggegaard-status > main .status-container table {
  margin: 2rem 0;
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
}
.page-template-page-eggegaard-status > main .status-container table, .page-template-page-eggegaard-status > main .status-container table tr, .page-template-page-eggegaard-status > main .status-container table td, .page-template-page-eggegaard-status > main .status-container table th {
  border: 1px solid lightgrey;
  text-align: left;
  padding: 1rem;
}
.page-template-page-eggegaard-status > main .status-container table th {
  font-weight: 700;
}
.page-template-page-eggegaard-status > main .status-container .warning-text {
  font-size: 2rem;
  margin: 2rem 0;
  font-family: sans-serif;
  font-weight: 700;
}
.page-template-page-eggegaard-status > main .form-group label {
  font-weight: 700;
  margin: 2rem 0;
  font-size: 3rem;
  display: block;
}
.page-template-page-eggegaard-status > main .form-group .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  max-width: 23rem;
  font-family: Helvetica, sans-serif !important;
  text-transform: capitalize;
  text-align: center;
}
.page-template-page-eggegaard-status > main .submit-btn {
  margin: 2rem 0;
  background-color: #d6b05d;
  color: white;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1.8rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/*# sourceMappingURL=main.css.map */
