
@font-face {
    font-family: 'montserrat';
    src: url('../fonts/montserrat.ttf');
    font-weight: normal;
    font-style: normal;
}
body {
	margin:0 auto;
	padding:0;
	width:100%;
	overflow-x: hidden;
	background-color: #17222E;
	font-family:montserrat !important;
}

/* === Font CSS === */
h1 {
    letter-spacing: 0.8px;
	font-size:24px;
}
h2 {
    color: #05C368 !important;
    letter-spacing: 0.8px;
	font-size:24px;
}
p {
    letter-spacing: 0.8px;
	font-size:16px !important;
	margin:0;
}

.btn-next {
    background-color: #17222E !important;
    border: 1px solid #00e676;
    border-radius: 30px;
    padding: 10px 0px 10px 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color:#00e676;
    font-size: 14px !important;
    text-align:center;
}
.btn-next:hover {
    background-color: #00e676 !important;
    border: 1px solid #00e676;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color:#17222E;
    text-align:center;
}
.item {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin:10px 0 10px 0;
    color:#FFFFFF;
    text-align:left;
}
.line {
    background-color: #17222E !important;
    border: 2px solid #00e676;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color:#00e676;
    text-align:center;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#loader p{
    letter-spacing: 0.8px;
	font-size:16px !important;
	margin:0;
	color:#000000;
}

/* Spinner Animation */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 1);
    border-top: 5px solid #00e676;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (min-width: 576px) { 
    h1 {
	font-size:24px;
	font-weight:500
    }
    h5, h6 {
	font-size:14px;
    }
}

@media (min-width: 768px) { 
    h1 {
	font-size:24px;
	font-weight:500
    }
    h5, h6 {
	font-size:14px;
    }
}


/* Cookie Dialog */
.no-scroll {
    overflow: hidden;
}
#cookieConsentOverlay {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
#cookieConsentContainer {
    width: 100%;
    background-color: #17222E;
    color: #FFF;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}
#cookieConsentContainer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}
#cookieConsentContainer a {
    color: #4CAF50;
    text-decoration: none;
}
#acceptCookies {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
#acceptCookies:hover {
    background-color: #45a049;
}
#rejectCookies {
    background-color: #f45555;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
#rejectCookies:hover {
    background-color: #e43838;
}
