.cookies {
	height: auto;
	position: fixed;
	bottom: 0px;
	background: #1e1e1e;
	width: 100%;
	z-index: 999;
}

.cookies-content {
	height: 100%;
	padding: 0px !important;
}

.cookies-content button {
	margin-left: 5px;
}

.cookies-content cite {
	color: #b3b3b3;
}

.vertical-align {
  display: flex;
  flex-direction: row;
	margin: 0px !important
}

.vertical-align > [class^="col-"],
.vertical-align > [class*=" col-"] {
  display: flex;
  align-items: center;     /* Align the flex-items vertically */
  justify-content: right; /* Optional, to align inner flex-items
                              horizontally within the column  */
}

@media (max-width: 767px) {
    .row.vertical-align {
        display: block; /* Turn off the flexible box layout */
    }
}

div#cookiesModal p {
    padding-left: 25px;
    text-align: justify;
}

.labelcontainer {
	display: block !important;
	position: relative;
	padding-left: 25px;
	margin-bottom: 9px;
	cursor: pointer;
	font-size: 13px;
	font-weight: normal;
	text-transform: capitalize;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

label.labelcontainer:hover {
    color: #00aef0;
    font-weight: 500;
}

/* Hide inactive labels */
.labelcontainer.hid {
	display: none !important;
}

/* Hide the browser's default checkbox */
.labelcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
	height: 20px;
	width: 20px;
	background-color: #fff;
	border: 1px solid #adadad;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	-moz-border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.labelcontainer:hover input ~ .checkmark {
  background-color: #fff;
	border: 1px solid #00aef0;
}

/* When the checkbox is checked, add a blue background */
.labelcontainer input:checked ~ .checkmark {
  background-color: #fff;
	border: 1px solid #00aef0;
}

.labelcontainer > input:disabled {
  color: #eee;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.labelcontainer input:disabled ~ .checkmark {
  display: block;
	border: 1px solid #c1ecc6;
}
/* Show the checkmark when checked */
.labelcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.labelcontainer .checkmark:after {
	left: 5px;
	top: 2px;
	width: 6px;
	height: 12px;
	border: solid #00aef0;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}


/* Create a custom radio button */
.radiobtn {
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
	border: 1px solid #d4d2d2;

}


/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobtn:after {
  content: "";
  position: absolute;
  display: none;
}

/* On mouse-over, add a grey background color */
.labelcontainer:hover input ~ .radiobtn {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.labelcontainer input:checked ~ .radiobtn {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.labelcontainer:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.labelcontainer input:checked ~ .radiobtn:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.labelcontainer .radiobtn:after {
	top: 5px;
	left: 5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #00aef0;
}


.modal-header.bg_white {
	background: white !important;
	border-bottom: 1px solid #bfbfbf !important;
}

.modal-header.bg_white h5 {
	font-size: 18px;
	font-weight: 400;
	margin-right: 20px;
}

button.close.blue {
	position: fixed;
    right: 10px;
    top: 40px;
    color: #00aef0;
    margin: -26px 0px 0px 5px;
    padding: 2px 6px;
    border: 1px solid #00aef0;
    border-radius: 3px;
}
