/*
 * Theme: Bootstrap-like
 * Author: Diego La Monica (https://diegolamonica.info)
 * Project: EUCookieLaw3
 * Version: 20180521
 * Copyright (c) 2018 Diego La Monica CC-BY-NC
 *
 */

.modal-open {
	overflow: hidden;
	box-sizing: border-box;

}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.9);
}
.dialog-container, .dialog-container *{
	box-sizing: border-box;
}
.modal-dialog {
	position: relative;
	margin: 10px;
	width: 800px;
	top: 100px;
	margin-left: auto;
	margin-right: auto;
}


@media screen and(max-width: 800px){
	.modal-dialog{
		width: 600px;
	}
}
.modal-content {
	position: relative;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #999;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 6px;
	outline: 0;
	-webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
	box-shadow: 0 3px 9px rgba(0,0,0,.5);
}

.modal-header {
	padding: 15px;
	border-bottom: 1px solid #e5e5e5;
}

.modal-title {
	margin: 0;
	line-height: 1.42857143;
}

.modal-title:before{
	display: table;
	content: " ";
}
.modal-body {
	position: relative;
	padding: 15px;
}

.modal-footer {
	padding: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5;
}

.btn {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn-default, .btn-primary {
	color: #333;
	background-color: #fff;
	border: 1px solid #ccc;
}

div.modal.in .list-group-item.rejected span {
	display: inline;
	border: 0;
	line-height: 1.2em;
	margin-left: 2px;
}