@charset "utf-8";
/* CSS Document */
/* cookies */


.cookie-container {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #2f3640;
  color: #f5f6fa;
  padding: 0 32px;
  box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
  transition: 400ms;
}

.cookie-container.active {
  bottom: 0;
}

.cookie-container a {
  color: #f5f6fa;
}


.close {
  background: #21618C;
  border: 0;
  color: #f5f6fa;
  padding: 12px 48px;
  font-size: 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  cursor: pointer;
  width: 22%;
}

/* The Modal (background) */
.modal,
.termsmodal,
.policymodal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 999;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
}
.close:hover,
.close:focus {
  color: #21618C;
  text-decoration: none;
  cursor: pointer;
  background: #e0e0e0;
  border: 0;

}

#terms,
#policy {
  text-decoration: underline;
  cursor: pointer;
}

.close_terms,
.close_policy {
  color: #aaaaaa;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  text-align: right;
}

