/* COOKIE CONSENT BANNER */
/* Alap stílusok a bannerhez */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
	max-width: 100vw !important;
    background-color: #333; /* Sötét háttér */
    color: #c7c8cb;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
	padding: 1.5rem !important;
	line-height: 150%;
	font-size: 14px
}

#cookie-consent-banner ul, #cookie-consent-banner ol{
	padding: 0;
	margin: 0 0 12px 0;
}
#cookie-consent-banner ul li, #cookie-consent-banner ol li{
	margin: 0 8px 0 40px;
	padding: 2px;
	line-height: 140%;
	text-align: left;
}
#cookie-consent-banner ul li p, #cookie-consent-banner ol li p{
	margin: 0;
	padding: 0;
	line-height: 100%;
}

/* Elrejtett állapot (ezzel indul a kód futása előtt) */
.cookie-banner-hidden {
    display: none; /* Alapból elrejtve, a JS dönti el, megjelenjen-e */
}

#cookie-consent-banner .link {
    color: rgb(148 209 193);
	cursor: pointer;
}
#cookie-consent-banner .link:hover {
    color: rgb(185 255 237);
}

#cookie-consent-banner p{
	line-height: 150%;
    padding: 0 0 12px 0;
    margin: 0;
}

#cookie-consent-banner #more-info{
	overflow-y: auto;
	display: none;
	max-height: 65vh;
	max-width: 980px;
	margin: 22px auto 0 auto;
	text-align: left;
	border-left: 1px solid rgba(185,255,237,0.5);
	border-right: 1px solid rgba(185,255,237,0.5);
	padding: 0 40px;
}

#cookie-consent-banner #short-info{
	overflow-y: auto;
	max-height: 65vh;
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
}

#cookie-consent-banner h2{
	font-size: 28px;
	font-weight: bold;
	padding-bottom: 16px;	
}

#cookie-consent-banner h3{
	font-size: 22px;
	font-weight: bold;
	padding-bottom: 14px;	
}

#cookie-consent-banner #deny-button{
	display: none;
}
#cookie-consent-banner #accept-button,
#cookie-consent-banner #deny-button{
	background-color: var(--defcolor) !important;
	font-weight: bold;
	margin-top: 0.5rem;
}
#cookie-consent-banner #accept-button:hover,
#cookie-consent-banner #deny-button:hover{
	color: White !important;
	font-weight: bold;
	margin-top: 0.5rem;
}

/* COOKIE CONSENT BANNER END */


/*  LEBEGŐ IKON A MÓDOSÍTÁSOKHOZ  */

#cc-float-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 22px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    display: none;
}

#cc-float-btn:hover {
    background: #e6e6e6;
}


@media (max-width: 768px) and (orientation: portrait) {
  
	#cookie-consent-banner h1{
		font-size: 24px;
		font-weight: 900;
		padding-bottom: 18px;
	}
	#cookie-consent-banner h2{
		font-size: 20px;
		font-weight: 700;
		padding-bottom: 16px;	
	}

	#cookie-consent-banner h3{
		font-size: 18px;
		font-weight: 500;
		padding-bottom: 14px;	
	}
  
  #cookie-consent-banner #more-info{
	margin: 10px -12px 0 -12px;
	padding: 0 20px;
}
}