/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
  color: #ecf0f1;
  background: rgb(35 35 35 / 0.9);
}

.cookiealert.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.cookiealert a {
  text-decoration: underline
}

.cookiealert .acceptcookies {
  margin-left: 10px;
  vertical-align: baseline;
}

.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 50%;
	max-width: 630px;
	min-width: 320px;
	height: auto;
	z-index: 2000;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.md-modal .close-button {
  position: absolute;
  top: 0px;
  right: 0px;
  border: 0;
  color: white;
  padding: 13px 16px;
  font-size: 28px;
  height: 57px;
  opacity: 0.5;
  cursor: pointer;
}

.md-modal .close-button:hover {
  opacity: 1;
}

.md-show {
	visibility: visible;
}

.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: #000;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show .md-overlay {
	opacity: 0.5;
	visibility: visible;
}

.md-effect-1 .md-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-1 .md-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.md-content {
  color: #fff;
  background: #232323;
  position: relative;
  border-radius: 3px;
  margin: 0 auto;
}

.md-content h3 {
  margin: 0;
  padding: 15px 30px;
  text-align: center;
  font-family: 'Balooda-Medium';
  font-size: 34px;
  line-height: 34px;
  font-weight: 300;
  background: #444444;
  color: #fff;
  height: 57px;
}

.md-content h4 {
  margin: 30px auto 0;
  padding: 5px;
  text-align: center;
  font-family: 'Balooda-Semi-Bold';
  font-size: 20px;
  line-height: 20px;
  font-weight: 300;
  color: #00a7b3;
}

.md-content > div {
  padding: 30px;
  margin: 0;
  font-weight: 300;
  font-size: 1.15em;
}

.md-content button {
  display: block;
  margin: 18px auto 0;
  font-family: 'Balooda-Medium';  
  height: 46px;
  font-size: 18px;  
  padding: 12px 25px;
}
/* user preference */

/* check box */
.check-box {
  display: inline-flex;
  position: relative;  
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.check-box input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  height: 35px;
  width: 100%;
}

/* Create a custom checkbox */
.checkmark { 
  background-color: #232323;
  padding: 6px;
  color: #ccc;
  font-family: "Open Sans", sans-serif;
  font-family: 'Balooda-Medium';
  font-size: 16px;
  line-height: 19px;
  border: 1px solid #333;
}

/* On mouse-over or add a white text color */
.check-box input:checked ~ .checkmark {
  color: #fff;
}

/* On mouse-over or checkbox is checked, add background color */
.check-box.cyan input:checked ~ .checkmark {
  background-color: #00a0b0;
  border: 1px solid #00a0b0;
}

.check-box.blue input:checked ~ .checkmark {
  background-color: #436feb;
  border: 1px solid #436feb;
}

.check-box.red input:checked ~ .checkmark {
  background-color: #f44336;
  border: 1px solid #f44336;
}

.check-box.orange input:checked ~ .checkmark {
  background-color: #ff7e00;
  border: 1px solid #ff7e00;
}

.check-box.green input:checked ~ .checkmark {
  background-color: #7eb943;
  border: 1px solid #7eb943;
}

.check-box.purple input:checked ~ .checkmark {
  background-color: #aa35d6;
  border: 1px solid #aa35d6;
}

.check-box.teal input:checked ~ .checkmark {
  background-color: #32b47b;
  border: 1px solid #32b47b;
}
/* check box */