@import 'react-datepicker.css';
/*
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
font-family: @display-font;
*/
html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif !important;
}
@media screen and (max-width: 550px) {
  html,
  body {
    overflow-x: hidden;
  }
}
#root {
  height: 100%;
}
.app-container {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 550px) {
  .app-container {
    padding-top: 60px;
  }
}
.column-content {
  max-width: 1200px;
}
.toolbar {
  position: fixed;
  left: 33.33333%;
  bottom: 0;
  z-index: 20;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .toolbar {
    left: 50%;
  }
}
@media screen and (max-width: 992px) {
  .toolbar {
    left: 30px;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media screen and (max-width: 550px) {
  .toolbar {
    left: 10px;
    bottom: 10px;
  }
}
.toolbar button,
.toolbar a {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 2px 2px #000000ab;
  background-color: #329599;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
@media screen and (max-width: 550px) {
  .toolbar button,
  .toolbar a {
    width: 40px;
    height: 40px;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.toolbar button:focus,
.toolbar a:focus {
  outline: 0;
}
.toolbar button:hover,
.toolbar a:hover {
  background-color: #2c8286;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.toolbar button.icon-send,
.toolbar a.icon-send {
  background-image: url(../img/icon-send.svg);
}
.toolbar button.icon-search,
.toolbar a.icon-search {
  background-image: url(../img/icon-search.svg);
}
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  padding: 10px 0;
  background: #fff;
  text-align: center;
  box-shadow: 0 2px 5px #00000038;
  box-sizing: border-box;
}
.mobile-header h1 {
  margin: 0;
  color: #772122;
  font-family: 'Permanent Marker', cursive;
  font-size: 2rem;
}
@media screen and (max-width: 550px) {
  .mobile-header {
    display: block;
  }
}
.header-column {
  position: sticky;
  top: 0;
  height: 100vh;
  align-self: flex-start;
  background-color: #772122;
  background-image: url(../img/header-back.png);
  background-position: top;
  background-repeat: repeat-x;
  color: #fff;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 550px) {
  .header-column {
    background: transparent;
    z-index: 50;
  }
}
@media (max-width: 992px) {
  .header-column {
    position: relative;
    height: auto;
  }
}
@media (max-width: 1200px) {
  .header-column {
    background-image: url(../img/header-back-smaller.png);
  }
}
@media screen and (max-height: 1000px) {
  .header-column {
    background-image: url(../img/header-back-smaller.png);
  }
}
.header-column .logo {
  max-width: 120px;
  margin: 80px 0 50px 0;
}
.header-column .mobile-menu-button {
  display: none;
  position: fixed;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background: #772122;
  border: 0;
  border-radius: 5px;
  z-index: 50;
}
@media screen and (max-width: 550px) {
  .header-column .mobile-menu-button {
    display: block;
  }
}
.header-column .mobile-menu-button:focus {
  outline: 0;
}
.header-column .mobile-menu-button .icon-middle {
  display: block;
  position: absolute;
  top: 19px;
  left: 8px;
  width: 25px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.open.header-column .mobile-menu-button .icon-middle {
  opacity: 0;
}
.header-column .mobile-menu-button .icon-before-after:before,
.header-column .mobile-menu-button .icon-before-after:after {
  content: ' ';
  display: block;
  position: absolute;
  width: 25px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
.header-column .mobile-menu-button .icon-before-after:before {
  top: 10px;
  left: 8px;
}
.open.header-column .mobile-menu-button .icon-before-after:before {
  transform: rotate(45deg);
}
.header-column .mobile-menu-button .icon-before-after:after {
  top: 28px;
  left: 8px;
}
.open.header-column .mobile-menu-button .icon-before-after:after {
  transform: rotate(-45deg);
}
.header-column .column-content {
  float: right;
  width: 100%;
  padding: 0 20px;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 550px) {
  .header-column .column-content {
    position: fixed;
    width: auto;
    float: none;
    top: 0;
    left: 0;
    bottom: 0;
    background: #772122;
    z-index: 40;
    overflow-y: auto;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .open.header-column .column-content {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .header-column .column-content .logo {
    margin: 30px 0;
  }
  .header-column .column-content header .app-title-container {
    margin-bottom: 30px;
  }
  .header-column .column-content header .app-title-container .app-title {
    font-size: 3rem;
  }
  .header-column .column-content header .subtitle {
    font-size: 1rem;
  }
}
.header-column header {
  margin-bottom: 50px;
}
@media screen and (max-height: 850px) {
  .header-column header {
    margin-bottom: 30px;
  }
}
.header-column header .app-title-container {
  position: relative;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 40px;
}
@media screen and (max-height: 850px) {
  .header-column header .app-title-container {
    margin-bottom: 30px;
  }
}
.header-column header .app-title-container .app-title {
  display: inline-block;
  position: relative;
  padding: 0 15px;
  font-family: 'Permanent Marker', cursive;
  font-size: 7rem;
  background-color: #772122;
}
@media (max-width: 1200px) {
  .header-column header .app-title-container .app-title {
    font-size: 5rem;
  }
}
@media screen and (max-height: 1000px) {
  .header-column header .app-title-container .app-title {
    font-size: 5rem;
  }
}
.header-column header .app-title-container .app-title a {
  color: #fff;
}
.header-column header .app-title-container .app-title a:hover {
  text-decoration: none;
}
.header-column header .subtitle {
  font-size: 1.2rem;
}
@media screen and (max-height: 850px) {
  .header-column header .subtitle {
    font-size: 1rem;
  }
}
.header-column header .subtitle span {
  display: inline-block;
  max-width: 360px;
}
.header-column .main-link,
.header-column h2 {
  display: block;
  position: relative;
  margin-bottom: 35px;
  font-weight: bold;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-height: 850px) {
  .header-column .main-link,
  .header-column h2 {
    margin-bottom: 25px;
  }
}
.header-column .main-link span,
.header-column h2 span {
  display: inline-block;
  padding: 0 10px;
  background: #772122;
}
.header-column .main-link:after,
.header-column h2:after {
  content: ' ';
  display: block;
  margin-top: -18px;
  border-top: 1px solid #ffffff1c;
}
.header-column .main-link {
  margin-bottom: 70px;
}
.header-column .main-link span {
  border-bottom: 1px dotted #ffffff40;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.header-column .main-link:hover span {
  border-bottom: 1px dotted #fff;
  text-decoration: none;
}
.header-column .main-link.active {
  font-weight: bold;
}
.header-column .main-link.active span {
  border-bottom: 1px solid #fff;
}
.header-column .menu {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-height: 850px) {
  .header-column .menu {
    margin-bottom: 15px;
  }
}
.header-column .menu a {
  display: inline-block;
  margin: 0 15px 5px 15px;
  border-bottom: 1px dotted transparent;
  font-size: 1rem;
  color: #fff;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
@media screen and (max-height: 850px) {
  .header-column .menu a {
    font-size: 0.95rem;
  }
}
.header-column .menu a:hover {
  border-bottom: 1px dotted #fff;
  text-decoration: none;
}
.header-column .menu a.active {
  border-bottom: 1px solid #fff;
  font-weight: bold;
}
.header-column .page-links {
  text-align: center;
}
@media screen and (max-width: 550px) {
  .header-column .page-links {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }
}
.header-column .page-links a {
  display: inline-block;
  margin: 0 10px 20px 10px;
  color: #fff;
  border-bottom: 1px dotted #ffffff40;
}
.header-column .page-links a:hover {
  text-decoration: none;
  border-bottom-color: #fff;
}
.header-column .page-links a.active {
  border-bottom: 1px solid #fff;
  font-weight: bold;
}
.word-list {
  padding: 20px;
}
.word-list.fetching {
  min-height: 300px;
  background-image: url('../img/icon-loading.gif');
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1200px) {
  .word-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0;
  }
  .word-list.no-results {
    padding-top: 50px;
    grid-template-columns: auto;
  }
}
.word-list .word-entry {
  display: block;
  margin-bottom: 20px;
  color: #000;
  opacity: 0;
  -webkit-transform: scale(0.8) translateY(0);
  -moz-transform: scale(0.8) translateY(0);
  -ms-transform: scale(0.8) translateY(0);
  transform: scale(0.8) translateY(0);
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.initialized.word-list .word-entry {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
  -moz-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.word-list .word-entry .hover-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f2f2f2;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 100ms ease-in-out;
  -o-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}
.word-list .word-entry .hover-info .hover-content {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.word-list .word-entry .inner-frame {
  position: relative;
}
@media (min-width: 1200px) {
  .word-list .word-entry .word-item {
    height: 100%;
  }
  .word-list .word-entry .word-item .inner-frame {
    height: 100%;
  }
}
@media (min-width: 550px) {
  .word-list .word-entry:hover {
    text-decoration: none;
  }
  .word-list .word-entry:hover .word-item {
    color: #329599;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  .word-list .word-entry:hover .word-display {
    color: #329599;
    text-decoration: none;
  }
  .word-list .word-entry:hover .word-item {
    background-color: #f7f7f7;
  }
  .word-list .word-entry:hover .inner-frame {
    border-color: #329599;
  }
  .word-list .word-entry:hover .hover-info {
    opacity: 1;
  }
  .word-list .word-entry:hover .hover-info .hover-content {
    top: 40%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.word-entry.single {
  opacity: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.word-entry.single.initialized {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.word-entry.single .word-footnote {
  padding: 0 10px 10px 0;
  margin-top: -20px;
  text-align: right;
  color: #999;
}
.word-item {
  position: relative;
  padding: 20px;
  background-color: #f2f2f2;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.word-item .item-title {
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 50%;
  padding: 0 15px;
  background: #f2f2f2;
  font-size: 1.2rem;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.word-item .inner-frame {
  padding: 0 10px;
  border: 1px solid #dddddd;
  text-align: center;
}
.word-item .inner-frame .word-display {
  padding: 40px 20px 40px 20px;
  margin: 0 20px 25px 20px;
  font-family: 'Caveat Brush', cursive;
  font-size: 3rem;
  color: #252525;
  border-bottom: 1px solid #dddddd;
}
.word-item .inner-frame .word-display.long-word {
  font-size: 2.4rem;
}
@media (max-width: 992px) {
  .word-item .inner-frame .word-display {
    font-size: 2rem;
  }
  .word-item .inner-frame .word-display.long-word,
  .word-item .inner-frame .word-display.medium-word {
    font-size: 1.8rem;
  }
}
@media (max-width: 550px) {
  .word-item .inner-frame .word-display {
    padding: 10px;
    margin: 0 10px 15px 10px;
  }
}
.word-item .inner-frame .description {
  display: block;
  margin-bottom: 25px;
  color: #000;
  overflow: hidden;
}
.word-item .inner-frame .description .item {
  display: block;
}
.word-item .inner-frame .description .votes {
  display: inline-block;
  margin-left: 5px;
}
.word-item .inner-frame .description .votes .vote {
  display: inline-block;
  margin: 0 5px 0 5px;
  padding: 5px 3px 5px 23px;
  background-repeat: no-repeat;
  background-size: 17px;
  background-position: 0 5px;
  text-align: right;
  font-weight: bold;
  font-size: 0.9rem;
}
.word-item .inner-frame .description .votes .vote.upvotes {
  background-image: url('../img/icon-like.svg');
}
.word-item .inner-frame .description .votes .vote.downvotes {
  background-image: url('../img/icon-dislike.svg');
}
.word-item .inner-frame h4,
.word-item .inner-frame h5 {
  position: relative;
  margin-bottom: 30px;
  color: #7e7e7e;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}
.word-item .inner-frame h4 span,
.word-item .inner-frame h5 span {
  display: inline-block;
  padding: 0 10px;
  background: #f2f2f2;
}
.word-item .inner-frame h4:after,
.word-item .inner-frame h5:after {
  content: ' ';
  display: block;
  margin: -12px auto 0 auto;
  border-top: 1px dashed #dddddd;
}
.word-item .inner-frame h5 {
  margin-bottom: 25px;
  font-size: 0.9rem;
}
.word-item .inner-frame h5:after {
  margin-top: -9px;
  max-width: 380px;
}
.word-item .inner-frame .metadata-container {
  position: relative;
  padding: 0 20px;
  margin-bottom: 20px;
  text-align: left;
}
.word-item .inner-frame .metadata-container .skyring-index {
  display: block;
  position: absolute;
  left: 15px;
  top: -2px;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  line-height: 30px;
  background: #329599;
  border-radius: 100%;
}
.word-item .inner-frame .metadata-container:not(:last-child):after {
  content: ' ';
  display: block;
  margin-left: -20px;
  margin-right: -20px;
  border-top: 1px solid #dddddd;
}
.word-item .inner-frame .metadata-container p.skyring {
  padding: 0 115px 0 50px;
}
@media screen and (max-width: 550px) {
  .word-item .inner-frame .metadata-container p.skyring {
    padding-right: 0;
  }
}
.word-item .inner-frame .metadata-container .voting-buttons {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 550px) {
  .word-item .inner-frame .metadata-container .voting-buttons {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 20px;
  }
}
.word-item .inner-frame .metadata-container .examples-list {
  margin-left: 50px;
}
.word-item .inner-frame .metadata-container .examples-list blockquote {
  margin-bottom: 0;
  font-style: italic;
}
.word-item .inner-frame .metadata-container .examples-list blockquote:before {
  content: "„";
}
.word-item .inner-frame .metadata-container .examples-list blockquote:after {
  content: "“";
}
.word-item .inner-frame .metadata-container .examples-list .source {
  color: #329599;
}
.word-item .inner-frame .metadata-container .examples-list .source a {
  color: #329599;
  border-bottom: 1px dotted #0f0f0f40;
}
.word-item .inner-frame .metadata-container .examples-list .source a:hover {
  text-decoration: none;
  border-bottom-color: #333;
}
.word-item .inner-frame .metadata-container .word-footnote {
  margin-right: -20px;
  margin-top: 0;
}
.word-item .inner-frame .btn-secondary {
  margin: 0 6px;
  padding: 5px 8px;
  border: 0;
  border-radius: 4px;
  background-color: white;
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: 6px 5px;
  color: #000;
  text-align: right;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.word-item .inner-frame .btn-secondary:hover {
  background-color: #e1e4e4;
}
.word-item .frame-footer {
  padding-top: 15px;
}
.word-item .frame-footer a {
  color: #000;
  border-bottom: 1px dotted #444;
}
.word-item .frame-footer a:hover {
  text-decoration: none;
  color: #772122;
}
.voting-buttons button {
  margin-left: 13px;
  padding: 5px 8px 5px 38px;
  border: 0;
  border-radius: 4px;
  background-color: white;
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: 6px 5px;
  text-align: right;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.voting-buttons button:hover {
  background-color: #e1e4e4;
}
.voting-buttons button.upvote {
  background-image: url('../img/icon-like.svg');
}
.voting-buttons button.upvote:disabled {
  background-image: url('../img/icon-like-white.svg');
}
.voting-buttons button.downvote {
  background-image: url('../img/icon-dislike.svg');
}
.voting-buttons button.downvote:disabled {
  background-image: url('../img/icon-dislike-white.svg');
}
.voting-buttons button:disabled {
  background-color: #329599;
  color: #fff;
}
@media screen and (max-width: 550px) {
  .voting-buttons button:first-child {
    margin-left: 0;
  }
}
.word-entry .entry-footer {
  padding: 40px;
}
@media screen and (max-width: 550px) {
  .word-entry .entry-footer {
    padding: 20px;
  }
}
.content-container {
  padding: 40px;
  margin-left: 40px;
  margin-right: 40px;
}
@media screen and (max-width: 550px) {
  .content-container {
    margin-left: 0;
    margin-right: 0;
  }
}
.content-container h2,
.content-container h3 {
  margin-left: -40px;
  margin-right: -40px;
}
.content-container.category-info {
  margin: 20px 20px 0 20px;
  padding-top: 30px;
  padding-bottom: 20px;
  background: #f2f2f2;
}
.content-container.category-info h2,
.content-container.category-info h3 {
  margin-left: 0;
  margin-right: 0;
}
.content-container.category-info h2 span,
.content-container.category-info h3 span {
  background: #f2f2f2;
}
.content-container blockquote {
  margin-left: 20px;
}
.content-container table {
  width: 100%;
  table-layout: fixed;
}
.content-container table th {
  font-weight: bold;
}
.content-container table th,
.content-container table td {
  padding: 4px;
}
.content-container.manual-init {
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.content-container.manual-init form,
.content-container.manual-init .page-content {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
}
.content-container.manual-init.initialized {
  opacity: 1;
}
.content-container.manual-init.initialized form,
.content-container.manual-init.initialized .page-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.comments-wrapper .form-container {
  padding: 0;
}
.comments-wrapper .form-container form {
  position: relative;
  max-height: 0;
  opacity: 0;
  -webkit-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
  overflow: hidden;
}
.comments-wrapper .form-container form textarea {
  min-height: 200px;
}
.comments-wrapper .form-container form .confirm-overlay {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: #ffffffcf;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}
.comments-wrapper .form-container form .confirm-overlay .message {
  position: absolute;
  bottom: 20%;
  left: 50%;
  font-size: 1.5rem;
  color: #444444;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
  -moz-transform: translate(-50%, -50%) scale(0.8);
  -ms-transform: translate(-50%, -50%) scale(0.8);
  transform: translate(-50%, -50%) scale(0.8);
}
.comments-wrapper .form-container form .confirm-overlay.visible {
  opacity: 1;
}
.comments-wrapper .form-container form .confirm-overlay.visible .message {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.comments-wrapper .form-container.open form {
  max-height: 1000px;
  opacity: 1;
  overflow: visible;
}
.comments-wrapper .comments-list .comment {
  margin-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
h3 {
  position: relative;
  margin-bottom: 50px;
  font-weight: bold;
  text-align: center;
  color: #444;
}
h3 span {
  display: inline-block;
  padding: 0 10px;
  background: #fff;
}
h3:after {
  content: ' ';
  display: block;
  margin-top: -18px;
  border-top: 1px solid #dddddd;
}
h4 {
  position: relative;
  margin-top: 40px;
  margin-bottom: 50px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  color: #444;
}
h4 span {
  display: inline-block;
  padding: 0 10px;
  background: #fff;
}
h4:after {
  content: ' ';
  display: block;
  margin-top: -13px;
  border-top: 1px solid #dddddd;
}
.fb-comments {
  margin-top: 50px;
  width: 100% !important;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  opacity: 1;
}
.fb-comments.initialized {
  opacity: 1;
}
.fb-comments > span {
  width: 100% !important;
}
.fb-comments > span iframe {
  width: 100% !important;
}
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fffffff5;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}
.search-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.search-overlay .close-button {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: url('../img/icon-close.svg');
  background-size: cover;
  border: 0;
  cursor: pointer;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.search-overlay .close-button:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.search-overlay .overlay-content {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.8);
  -moz-transform: translateX(-50%) scale(0.8);
  -ms-transform: translateX(-50%) scale(0.8);
  transform: translateX(-50%) scale(0.8);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 550px) {
  .search-overlay .overlay-content {
    top: 20px;
    width: 80%;
  }
}
.visible.search-overlay .overlay-content {
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
}
.search-overlay .overlay-content h3 {
  margin-bottom: 30px;
}
.search-overlay .overlay-content h3:after {
  content: none;
}
.search-overlay .overlay-content input {
  height: auto;
  padding: 10px;
  font-size: 2rem;
  text-align: center;
  font-family: 'Caveat Brush', cursive;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #555;
  border-radius: 0;
}
@media screen and (max-width: 550px) {
  .search-overlay .overlay-content input {
    font-size: 1.5rem;
  }
}
.search-overlay .overlay-content input:focus {
  outline: 0;
  border-bottom: 2px solid #772122;
  box-shadow: none !important;
}
.search-overlay .autocomplete-list {
  text-align: center;
}
.search-overlay .autocomplete-list a.list-group-item {
  color: #329599;
}
.search-overlay .autocomplete-list .list-group-item.active {
  background-color: #329599;
  color: #fff;
}
.search-overlay .autocomplete-list .list-group-item strong {
  font-size: 1.2rem;
}
.send-form {
  margin-top: 80px;
}
.send-form .react-datepicker-wrapper,
.send-form .react-datepicker__input-container {
  display: block;
}
form label {
  color: #329599;
  font-weight: bold;
}
form p {
  margin-bottom: 30px;
}
form small {
  color: #666;
}
form .row {
  margin-bottom: 20px;
}
form .form-control:required {
  border-width: 3px;
  border-color: #64c8cd;
}
form .form-section {
  position: relative;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
form .form-section.open {
  max-height: 200px;
  background-color: transparent;
  opacity: 1;
  overflow: visible;
}
form .form-section.open:before {
  background-color: transparent;
}
form .form-section:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -15px 0;
  border-radius: 5px;
  background-color: #51c2c6;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transition-delay: 700ms;
  transition-delay: 700ms;
  pointer-events: none;
}
.btn-primary {
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1.2rem;
  background-color: #329599;
  border-color: #329599;
  box-shadow: 0 2px 2px #00000026;
  border-radius: 2px;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.btn-primary:not(:disabled):hover {
  background-color: #257073;
  border-color: #257073;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.btn-primary:disabled {
  background-color: #888888;
  border-color: #888888;
}
.btn-link {
  padding-left: 20px;
  color: #329599;
  background-image: url(../img/icon-link.svg);
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: left center;
}
.grecaptcha-badge {
  bottom: 20px;
}
.pagination {
  justify-content: center;
}
.pagination .page-link {
  margin: 0 15px;
  border-radius: 5px;
  color: #fff;
}
.pagination .page-link .arrows {
  font-weight: normal;
}
@media screen and (max-width: 992px) {
  #_sam_portal_menu {
    display: none;
  }
}
