@charset "utf-8";
/*-------------------------*/

.radio-buttons {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-left: -5px;
}
.custom-radio input {
  display: none;
}

.radio-btn {
  margin: 10px;
  width: 90%;
  height: auto;
  border: 3px solid transparent;
  display: inline-block;
  border-radius: 5px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 4px #c3c3c367;
  cursor: pointer;
}
.radio-btn > i {
  color: #ffffff;
  background-color: #002c6c;
  font-size: 20px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) scale(2);
  border-radius: 50px;
  padding: 3px;
  transition: 0.5s;
  pointer-events: none;
  opacity: 0;
}
.radio-btn .hobbies-icon {
  width: 100%;
  height: 100%;
  text-align: center;
}
.radio-btn .hobbies-icon img{
  display: block;
  width: 70%;
  margin-bottom: 20px;
  margin: 0 auto;
  margin-bottom: 4px; 
}
.radio-btn .hobbies-icon i {
  color: #002c6c;
  line-height: 80px;
  font-size: 60px;
}
.radio-btn .hobbies-icon .barcodetype{
    color: #002c6c;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 14px;
    font-weight: bold;
}
.custom-radio input:checked + .radio-btn {
  border: 2px solid #002c6c;
}
.custom-radio input:checked + .radio-btn > i {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.loading_spinner{
  font-size: 50px;
  color: #002c6c;
  padding: 100px 0px;
}
.radio-to-checkbox input[type="radio"]{
   appearance: none;
   border: 1px solid #d3d3d3;
   border-radius: 5px;
   width: 32px;
   height: 30px;
   content: none;
   outline: none;
   margin: 0;
   box-shadow: 0 0 4px #c3c3c367;
   cursor:pointer;
}
.radio-to-checkbox input[type="radio"]:checked {
  appearance: none;
  outline: none;
  padding: 0;
  content: none;
  border: none;
}
.radio-to-checkbox input[type="radio"]:checked::before{
  position: absolute;
  color: green !important;
  content: "\00A0\2713\00A0" !important;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  font-weight: bolder;
  font-size: 21px;
}
.style-1::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
	border-radius: 10px;
	background-color: #daf1fe;

}
.style-1::-webkit-scrollbar{
	width: 5px;
	background-color: #daf1fe;
  height: 5px;
}
.style-1::-webkit-scrollbar-thumb{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.1);
	background-color: #bcd0db;
}

.digit-group {
	input {
		width: 30px;
		height: 50px;
		border: none;
		line-height: 50px;
		text-align: center;
		font-size: 18px;
		font-family: 'Raleway', sans-serif;
		font-weight: bold;
		color: #555;
		border: 1px solid #b1b3b3;
		border-radius: 5px;
	}

	.splitter {
		padding: 0 5px;
		color: #555;
		font-size: 24px;
	}
}

/*-----------------------------*/

.container_generator {
  margin-bottom: 20px;
  margin-top: 10px;
  width: 100%;
}
.content_generator {
  background: #fff; 
  color: #373737;
  backface-visibility: hidden;
  overflow: hidden;
}
.content_generator > div {
  display: none;
  padding: 20px 25px 5px;
}
.container_generator input {
  display: none;
}
.container_generator label {
  display: inline-block; 
  padding: 15px 25px; 
  font-weight: 600; 
  font-size: 20px;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: all .3s ease-out 0.1s;
}
.container_generator label:hover {
  color: #AAA; 
  cursor: pointer;
}
.container_generator input:checked + label {
  background: #ffffff;
  color: #fd7034;
  border-bottom: 1px solid;
}

#tab-1:checked ~ .content_generator #content-1,
#tab-2:checked ~ .content_generator #content-2,
#frm, 
#frm1,
#aj_inputbox{
  display: block;
  animation-name: inUp;
  animation-timing-function: ease-in-out;
  animation-duration: .6s;
}
@media screen and (max-width: 400px) { .container_generator label {padding: 15px 10px;} }
@keyframes inUp {
  0%{
    opacity: 0;
    transform: translateY(100px)
  }
    90%{
    transform: translateY(-10px)
  }
  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

/*-----------------------------*/

.telegram-button{
    position: relative;
    display: inline-block;
    vertical-align: top;
    height: 20px;
    box-sizing: border-box;
    
    cursor: pointer;
    background-color: #0088cc;
    border-radius: 3px;
    padding: 3px 6px;
    
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 11px;
    color: #FFF;
    text-decoration: none;
}

.telegram-button:hover{
    background-color: #007dbb;
}

.telegram-button:active{
    background-color: #026698;
}

.telegram-button i{
    display: inline-block;
    height: 12px;
    width: 14px;
    vertical-align: middle;
    margin-right: 2px;
    
    background: url('https://telegram.org/img/oauth/tg_button_small.png') no-repeat;
    background-size: contain;
}

.telegram-button span{
    display: inline-block;
    vertical-align: top;
}

/*--------------------------------*/

#cookieConsentBanner {
    display: none; /* Hidden by default, shown by JavaScript */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a202c; /* Dark background */
    color: white;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Ensure it's above other content */
    border-top-left-radius: 0.5rem; /* Rounded top corners */
    border-top-right-radius: 0.5rem;
}

#cookieConsentBanner .content-wrapper {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* Space between text and button */
    padding: 0 1rem; /* Horizontal padding for smaller screens */
}

#cookieConsentBanner p {
    margin: 0;
    font-size: 0.875rem; /* text-sm */
    line-height: 1.5;
    flex-grow: 1; /* Allows text to take up available space */
}

#cookieConsentBanner a {
    color: #4CAF50; /* Green link color */
    text-decoration: underline;
    transition: color 0.3s ease;
}

#cookieConsentBanner a:hover {
    color: #6fcf71; /* Lighter green on hover */
}

#acceptCookies {
    background-color: #4CAF50; /* Green button */
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 0.375rem; /* rounded-md */
    font-size: 0.875rem; /* text-sm */
    transition: background-color 0.3s ease, transform 0.1s ease;
    white-space: nowrap; /* Prevent button text from wrapping */
}

#acceptCookies:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: translateY(-1px); /* Slight lift effect */
}

#acceptCookies:active {
    transform: translateY(0); /* Reset on click */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #cookieConsentBanner .content-wrapper {
        flex-direction: column; /* Stack text and button on small screens */
        text-align: left;
        align-items: flex-start;
    }
    #cookieConsentBanner p {
        width: 100%; /* Full width for text */
    }
    #acceptCookies {
        width: 100%; /* Full width button on small screens */
    }
    body {
        padding-bottom: 120px; /* Adjust padding for stacked banner */
    }
}

/*---------------------------------*/
/* Custom styles for rounded corners on elements not covered by Tailwind */
    .rounded-element {
        border-radius: 0.5rem; /* Equivalent to Tailwind's rounded-lg */
    }
    /* Skeleton Preloader Styles */
    .skeleton-item {
        background-color: #e2e8f0; /* Light gray background for skeleton */
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        padding: 1.5rem;
        position: relative;
        overflow: hidden; /* For shimmer effect */
    }
    .skeleton-image {
        width: 100%;
        height: 120px; /* Placeholder for an image */
        background-color: #cbd5e1; /* Slightly darker gray for image placeholder */
        border-radius: 0.375rem; /* rounded-md */
        margin-bottom: 1rem;
    }
    .skeleton-text {
        height: 0.875rem; /* text-sm equivalent */
        background-color: #cbd5e1;
        border-radius: 0.25rem; /* rounded-sm */
        margin-bottom: 0.5rem;
    }
    .skeleton-text.short {
        width: 60%;
    }
    .skeleton-text.medium {
        width: 85%;
    }
    /* Shimmer animation */
    .skeleton-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transform: translateX(-100%);
        animation: shimmer 1.5s infinite;
    }
    @keyframes shimmer {
        100% {
            transform: translateX(100%);
        }
    }
    .news_date_tag{
        font-size: 12px;
        width: 150px;
        position: absolute;
        top: 140px;
        right: 5%;
        text-align: center;
        font-weight: bold;
        color: #FFF;
        background-color: rgba(239, 84, 134, 0.8);
    }
