/*Popup*/
div.cookie-popup-wrap {
	/* display: none; */
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0,0,0,0.6);
	top: 0;
	left: 0;
	z-index: 9999;
}
div.cookie-popup {
	position: relative;
	width: 50%;
	height: max-content;
	margin: 7% auto;
	background: #FFF;
	/* padding: 10px 30px 22px; */
}
.popup-content {
    position: relative;
}
.popup-header {
	padding: 24px 20px;
}
.body-top {
	background: #ed1c24;
	color: #fff;
	text-align: center;
	padding: 15px 15px;
}
.body-bottom {
	position: relative;
	padding: 15px;
}
.popup-body .title{
	margin-bottom: 5px;
	font-size: 25px;
	padding: 0 15px;
}

#closepopup {
	color: #333;
	font-size: 25px;
	position: absolute;
	right: 24px;
	padding: 4px 10px;
	z-index: 9999;
	top: 12px;
}

.form-group-content {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
    margin-right: -10px;
}

.form-group-content .form-group {
	flex: 0 0 46%;
	max-width: 46%;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 16px;
}

.custom-select {
	flex: 0 0 100%;
	max-width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 16px;
}

.custom-select .form-control {
	width: 95%;
}

.form-group-content .form-group .form-control {
	width: 100%;
}
.popup-footer {
	text-align: center;
	padding-bottom: 20px;
}
.popup-footer button, .popup-footer .btn {
	font-weight: bold;
	box-shadow: none;
	color: #fff;
	background: #003469;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}

@media screen and (max-width: 767px) {
	.form-group-content .form-group {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media screen and (max-width: 1024px) {
    div.cookie-popup {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    div.cookie-popup img {
        height: auto;
        max-height: unset;
    }
}

@media screen and (min-width: 1600px) {
    div.cookie-popup img {
        max-height: 600px;
    }
}
/*End popup*/

























