#popup_body {
    display: none;
    position: fixed;
    min-width: 100%;
    z-index: 100000;
    font-size: 14px;
    line-height: 18px;
    left: 0;
    text-align: left;	
    color: #434245; 
}

.cookie-notice-container {
    padding: 10px;
}

.cn-top {
    top: 0;
}

.cn-bottom {
    bottom: 0;
}

/*
* cookie-mabager settings modal
*/

.popup-modal {
	z-index:999999997;
    display: none;
    position: fixed;
    padding-top: 2%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content */

.popup-modal-content {
	position: relative;
	z-index: 999999999;
    background-color: #fff;
    margin: auto;
    padding: 45px;
    border: 1px solid #888;
    max-width: 520px;
    width: 100%;
}
	.popup-modal-content h3 {
		display: inline-block;
		color: #244472;
		margin: 0 0 35px;
		padding-bottom: 5px;
		border-bottom: 1px solid #bebebe;
	}
	.popup-modal-content .v-button {
		display: block;
		margin: 50px auto 0;
	}

/* The Close Button */
.popup-modal-close {
	position: absolute;
	top: 30px;
	right: 26px;
	width: 42px;
	height: 42px;
    color: #bebebe;
    float: right;
    font-size: 51px;
	text-align: center;
    line-height: 36px;
    vertical-align: middle;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.popup-modal-close:hover,
.popup-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#popup-category-list {
	list-style:none;
	padding-left: 0;
}
	#popup-category-list li {
		margin-bottom: 20px;
	}

.checkbox-wrap {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
	.checkbox-wrap .checkbox-title {
		color: #244472;
		font-size: 16px;
		display: inline-block;
		padding-top: 0;
	}
	
.checkbox-desc {
	padding-left: 35px;
}

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

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 28px;
    width: 28px;
	background-color: #fff;
	border: 3px solid #bebebe;
	border-radius: 7px;
}

.checkbox-wrap:hover input:not([disabled]) ~ .checkmark {
	border-color: #bebebe;
	/*border-color: #5ba718;*/
}

/* When the checkbox is checked, add a blue background */
.checkbox-wrap input:checked ~ .checkmark {
    /*background-color: #2196F3;*/
}

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

/* Show the checkmark when checked */
.checkbox-wrap input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-wrap .checkmark:after {
    left: 5px;
    top: 0px;
    width: 9px;
    height: 14px;
	border: solid #244472;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 2px;
}
.checkbox-wrap input:disabled ~ .checkmark:after {
	border-color: #cfcfcf;
}
.blue-button{
    background-color: #244472;
    border: none;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    border-radius: 4px;
}
