	/* This is for a large screen */
	@media (min-width: 992px) {
		#cookie_block {
			height:80px;
			background:rgba(0,0,0,0.8);
			z-index: 550;
			color: white;
		}

		.cookie_circle {
			float: left;
			height:80px;
			z-index: 550;
			color: white;
			line-height: 80px;
			font-size: 22pt;
			width: 80px;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.cookie_text {
			float: left;
			font-size: 12pt;
			width: calc(100% - 480px);
			display: flex;
			align-items: center;
			height: 80px;
			line-height: 25px;
		}

		#cookie_tell_more {
			float: right;
			display: flex;
			align-content: center;
			cursor: pointer;
			font-size: 12pt;
			font-weight: bold;
			padding: 0 20px;
			width: 200px;
			line-height: 80px;
			margin: auto;
			height: 80px;
		}

		#cookie_accept {
			float: right;
			display: flex;
			align-content: center;
			cursor: pointer;
			font-size: 12pt;
			font-weight: bold;
			padding: 0 20px;
			width: 200px;
			line-height: 80px;
			margin: auto;
			height: 80px;
		}

		.cookie_button {
			border:1px solid lightgrey;
			border-radius: 4px;
			padding: 0;
			height: 40px;
			line-height: 40px;
			margin: auto;
			width: 100%;
			text-align: center;
		}
	}

	/*This is for a small screen*/
	@media (max-width: 992px) {
		#cookie_block {
			float: left;
			height:100px;
			background:rgba(0,0,0,0.8);
			z-index: 550;
			color: white;
			font-size: 15pt;
		}

		.cookie_circle {
			float: left;
			height:50px;
			z-index: 550;
			color: white;
			line-height: 50px;
			text-align: center;
			font-size: 18pt;
			width: 20%;
		}

		.cookie_text {
			display: flex;
			float: left;
			font-size: 9pt;
			line-height: 10px;
			width: 80%;
			height: 50px;
		}

		#cookie_tell_more {
			width: 50%;
			cursor: pointer;
			float: right;
			text-align: center;
			padding: 0;
			line-height: 50px;
			font-size: 11pt;
			border-top: 1px solid lightgrey;
		}

		#cookie_accept {
			width: 50%;
			cursor: pointer;
			float: right;
			text-align: center;
			padding: 0;
			line-height: 50px;
			font-size: 11pt;
			border-top: 1px solid lightgrey;
			border-left: 1px solid lightgrey;
		}
	}