/**
 * Frontend Cookie Bar & Modal Styles
 */
html.has-cookie-bar.cookie-bar-top-bar {
  margin-top: 30px;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

#aws-cookie-bar {
  box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  direction: ltr;
  padding: 0 20px;
  z-index: 99999;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  text-align: center;
}

.cookie-bar-block #aws-cookie-bar {
  max-height: 999px;
  -webkit-transition: opacity 0.25s;
  -moz-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.has-cookie-bar #aws-cookie-bar {
  opacity: 1;
  max-height: 999px;
  min-height: 30px;
  padding: 15px 20px 15px;
}

.cookie-bar-block #aws-cookie-bar span {
  display: block;
  margin: 1em 0;
}

.cookie-bar-bar #aws-cookie-bar.float-accept span.awscookie-right-side {
  float: right;
}

#awsCookieDismiss {
  cursor: pointer;
  margin: 0 20px 0 20px;
  border-radius: 2px;
  padding: 10px 20px;
}

#setCookieButton {
  padding: 10px 20px;
  border-radius: 2px;
}

.cookie-bar-bar button#awsCookie {
  margin: 0 0 0 20px;
}

.cookie-bar-bar .awscookie-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}

.cookie-bar-bar .float-accept .awscookie-inner {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .awscookie-left-side {
    margin-right: 1em;
  }
}
.awscookie-right-side {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.awscookie-center-side {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.cookie-bar-block #aws-cookie-bar h3 {
  margin: 0.5em 0 0;
}

.use_x_close .x_close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-family: sans-serif;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.cookie-bar-bar .use_x_close .x_close {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.x_close {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
  width: 14px;
  height: 30px;
  position: relative;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.x_close span {
  display: block;
  position: absolute;
  height: 3px;
  width: 14px;
  background: #111;
  border-radius: 6px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transition-delay: 0.14s;
  -webkit-transition-delay: 0.14s;
  -moz-transition-delay: 0.14s;
}

.x_close span:nth-child(1),
.x_close span:nth-child(2) {
  top: 14px;
}

.x_close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.x_close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.x_close:hover span:nth-child(1) {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.x_close:hover span:nth-child(2) {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.8);
}

/* Modal Content/Box */
.modal-float .aws-cookie-modal-content {
  background-color: #fefefe;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid #888;
  width: 65%;
  max-width: 800px;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
@media only screen and (max-width: 640px) {
  .modal-float .aws-cookie-modal-content {
    width: 90%;
  }
}

/* The Close Button */
.close {
  color: #000;
  float: right;
  font-size: 38px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/*
 *  Cookie Modal Styles
 */
* {
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.cookie-modal {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
}

.aws-cookie-modal-content.cookie-container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 32px;
}

.aws-cookie-modal-content p {
  padding: 8px 0;
  display: block;
  font-size: 18px;
}

.aws-cookie-modal-content a {
  color: #666;
}

.aws-cookie-modal-content img {
  height: 70px;
}

.aws-cookie-modal-content .title {
  display: inline-block;
  color: #666;
  font-size: 22px;
  margin: 0px 0 0;
}

.aws-cookie-modal-content .cookie-links a {
  font-size: 18px;
  float: left;
  clear: both;
}

.aws-cookie-modal-content .cookie-links, .blue-cookie-modal-content .cookie-button {
  display: inline-block;
  width: calc(100% - 2px);
}

.aws-cookie-modal-content .cookie-button {
  text-align: right;
}
@media only screen and (max-width: 640px) {
  .aws-cookie-modal-content .cookie-button {
    margin-top: 16px;
  }
}

.cookie-radio {
  margin-bottom: 16px;
}
.cookie-radio label {
  display: inline-block;
  font-size: 18px;
}

.aws-cookie-modal-content .cookie-button .link-button {
  background: #666;
  color: #fff;
  margin: 0;
  cursor: pointer;
  font-size: 12px;
  padding: 10px;
  border-radius: 0px;
  border: solid 2px #ccc;
}

.aws-cookie-modal-content .cookie-2 {
  display: none;
}

.aws-cookie-modal-content label.container {
  font-size: 1.1rem;
}

.aws-cookie-modal-content label.container input, .blue-cookie-modal-content label.container span {
  display: inline-block;
  font-size: 18px;
  vertical-align: top;
}

.aws-cookie-modal-content label.container input {
  vertical-align: top;
  margin-top: 6px;
}

.aws-cookie-modal-content label.container span {
  width: calc(100% - 30px);
}

.privacy-content {
  overflow: auto;
  height: 300px;
}

.cookie-container .clearfix {
  display: flex;
}

.cookie-container .box:first-of-type {
  flex-basis: 100px;
}

.cookie-container .box:last-of-type {
  padding-left: 32px;
}

@media only screen and (max-width: 640px) {
  .aws-cookie-modal-content {
    width: 100%;
    padding: 0 16px;
  }

  .blue-cookie-modal-content .cookie-button {
    margin-top: 16px;
  }

  .box {
    flex-basis: 100%;
  }
}
.modal.modal-float .accept-cookies-button {
  padding: 10px 20px;
  font-size: 18px;
  background: #777;
  border-radius: 0;
}

.modal.modal-bottom {
  display: block;
}
.modal.modal-bottom .aws-cookie-modal-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  background: #ffffff;
}
.modal.modal-bottom .aws-cookie-modal-content p {
  color: #000000;
}
.modal.modal-bottom .cookie-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1600px;
  margin: 0 auto;
}
.modal.modal-bottom .cookie-container > .box {
  flex-basis: 100%;
}
.modal.modal-bottom .cookie-container .box {
  padding: 0;
  margin-bottom: 16px;
}
.modal.modal-bottom button {
  min-width: 315px;
  margin-bottom: 16px;
  background-color: #222;
  border: 0;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  padding: 1em 2em;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.modal.modal-bottom .cookie-container-left {
  flex: 3;
}
.modal.modal-bottom .cookie-container-right {
  flex: 1;
  padding-left: 60px;
}
.modal.modal-bottom .cookie-links {
  width: 315px;
  text-align: center;
}
.modal.modal-bottom .cookie-links a {
  float: none;
  color: #000000;
  text-decoration: none;
}

.modal.modal-top {
  display: block;
}
.modal.modal-top form {
  max-width: 800px;
  margin: 0 auto;
}
.modal.modal-top .aws-cookie-modal-content .accept-cookies-button {
  margin-top: 16px;
}
.modal.modal-top .aws-cookie-modal-content .cookie-button,
.modal.modal-top .aws-cookie-modal-content .cookie-links {
  text-align: left;
}
.modal.modal-top .aws-cookie-modal-content .cookie-links a {
  float: none;
  display: inline-block;
  margin-right: 16px;
}
.modal.modal-top .cookie-container {
  padding: 16px 0 32px 0;
}

/*# sourceMappingURL=aws_cookie_notice-public.css.map */
