body{
    font-family:system-ui;
}
/* Custom CSS to style the image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, max-content)); /* Adjusts dynamically */
  gap: 10px; /* Gap between images */
  justify-content: center; /* Center the grid horizontally */
}

.image-grid img {
  width: 60px;
  height: 60px;
  border-radius:10px;
}

.more-groups {
  grid-column: span 2; /* This will make the text span across multiple columns (adjust as needed) */
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  font-weight: 800;
  color: black; /* Adjust the color as needed */
}

@media (max-width: 576px) {
  .image-grid {
      grid-template-columns: repeat(auto-fit, minmax(40px, max-content)); /* Smaller grid on mobile */
  }

  .image-grid img {
      width: 40px;
      height: 40px;
  }
  .more-groups {
    margin-top: 10px;
    font-size: 16px;
  }
  
}

/* Center the grid both vertically and horizontally */
.grid-wrapper {
  justify-content: center;
  align-items: center;
  margin-top:15px;
  margin-bottom: 80px;
}
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 0.75rem;
    color: var(--si-form-invalid-color);
}


/* SELECT2 JS */
.select2-container .select2-selection--single .select2-selection__rendered {
    color: #444 !important;
    font-size: initial !important;
}
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color:red !important;
box-shadow:none !important;
}
.select2-container--bootstrap-5.select2-container--focus .select2-selection{
  border-color:red !important;
  box-shadow:none !important;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected{
  background-color:#ff007c !important;
}
.select2-container--bootstrap-5 .select2-dropdown{
  border-color:red !important;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
  border-color: red !important;
  box-shadow: 0 0 0 .15rem rgba(255, 105, 180, .25) !important;
}

  /*Navbar */
  .navbar{
    background-color:white;
  }
  .nav-link{
    font-weight: 700;
    font-size: 17px;
  }
  .nav-link:hover{
    color:#ff007c !important;
  }
  .nav-link:focus{
    color:#ff007c !important;
  }
  .nav-item:hover{
    color:#ff007c !important;
  }

  .navbar .nav-item:hover>.nav-link:not(.disabled) {
    color:#ff007c !important;
  }

.navbar .nav-item.active>.nav-link:not(.disabled) {
  color:#ff007c !important;
}
a{
  color:#ff007c;
}

  @media (min-width: 992px){
    .navbar-nav{
    float: right;
    padding-right: 30px;
}
}


/* Search Styles */
/* Wrapper to center image within its container */
.search-card{
  margin-bottom:20px !important;
}
.search-card .image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px; /* Fixed width for the wrapper */
    height: 100px; /* Fixed height for the wrapper */
}

.search-card .logo-img {
    width: 100px; /* Fixed width for the image */
    height: 100px; /* Fixed height for the image */
    border-radius: 10px; /* Makes the image circular */
    object-fit: cover; /* Ensures the image covers the area without stretching */
    background-color:white;
}
/* Style for limiting the description to two lines */
.search-card .card-text {
    display: -webkit-box; /* Flexbox for truncating text */
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical; /* Specifies vertical orientation for the box */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Adds ellipsis (...) after truncated text */
    white-space: normal; /* Allows text to wrap */
    color:black;
    margin-bottom:10px;
}
.search-card .card-title{
  margin-bottom:5px;
}
/* CSS for mobile responsiveness */
@media (max-width: 1090px) {
  .search-card .logo-img {
    max-width: 80px; /* Set a smaller image size for mobile */
    height: 80px; /* Keep image aspect ratio */
  }
}
@media (max-width: 768px) {
  .search-card {
    width: 100%; /* Adjust the width to 90% on smaller screens */
    margin: 0 auto; /* Center the card horizontally */
    margin-bottom:10px !important;
  }

  .search-card .row {
    display: flex; /* Use flexbox to align items side by side */
    flex-wrap: nowrap; /* Prevent row from wrapping */
    align-items: center; /* Vertically center align the content */
  }

  .search-card .col-md-4 {
    flex: 0 0 auto; /* Prevent column from expanding */
    max-width: 20%; /* Set the logo column width */
  }

  .search-card .col-md-8 {
    flex: 1; /* Allow the text column to expand */
  }

  .search-card .logo-img {
    max-width: 50px; /* Set a smaller image size for mobile */
    height: 50px; /* Keep image aspect ratio */
  }

  .search-card .card-body {
    padding-left: 10px; /* Add some spacing between the image and text */
  }

  .search-card .card-text.d-none.d-md-block {
    display: none; /* Hide longer text on smaller screens */
  }
}
.search-card .icon-top-right {
  position: absolute; /* Position icon relative to card body */
  top: 0; /* Align icon with the top of the card body */
  right: 10px; /* Position icon to the right */
  font-size: 16px; /* Adjust icon size as needed */
  font-weight:bold;
  color: black; /* Change to desired color */
  margin-top: 5px; /* Fine-tune the vertical alignment */
}
.search-card .icon-bottom-right {
  position: absolute; /* Position icon relative to card body */
  bottom: 0; /* Align icon with the top of the card body */
  right: 10px; /* Position icon to the right */
  font-size: 16px; /* Adjust icon size as needed */
  font-weight:bold;
  color: black; /* Change to desired color */
  margin-top: 5px; /* Fine-tune the vertical alignment */
}
#searchresults{
  margin-bottom:100px;
}
#load-more{
  display:block;
  margin:0 auto;
}

/* Similar Cards */
/* Wrapper to center image within its container */
.similar-card{
  margin-bottom:20px !important;
}
.similar-card .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px; /* Fixed width for the wrapper */
  height: 90px; /* Fixed height for the wrapper */
}

.similar-card .logo-img {
  width: 90px; /* Fixed width for the image */
  height: 90px; /* Fixed height for the image */
  border-radius: 10px; /* Makes the image circular */
  object-fit: cover; /* Ensures the image covers the area without stretching */
  background-color:white;
}
/* Style for limiting the description to two lines */
.similar-card .card-text {
  display: -webkit-box; /* Flexbox for truncating text */
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical; /* Specifies vertical orientation for the box */
  overflow: hidden; /* Hide overflow */
  text-overflow: ellipsis; /* Adds ellipsis (...) after truncated text */
  white-space: normal; /* Allows text to wrap */
  color:black;
  margin-bottom:10px;
}
.similar-card .card-title{
margin-bottom:5px;
}
/* CSS for mobile responsiveness */
@media (max-width: 1090px) {
.similar-card .logo-img {
  max-width: 80px; /* Set a smaller image size for mobile */
  height: 80px; /* Keep image aspect ratio */
}
}
@media (max-width: 768px) {
.similar-card {
  width: 100%; /* Adjust the width to 90% on smaller screens */
  margin: 0 auto; /* Center the card horizontally */
  margin-bottom:10px !important;
}

.similar-card .row {
  display: flex; /* Use flexbox to align items side by side */
  flex-wrap: nowrap; /* Prevent row from wrapping */
  align-items: center; /* Vertically center align the content */
}

.similar-card .col-md-4 {
  flex: 0 0 auto; /* Prevent column from expanding */
  max-width: 20%; /* Set the logo column width */
}

.similar-card .col-md-8 {
  flex: 1; /* Allow the text column to expand */
}

.similar-card .logo-img {
  max-width: 50px; /* Set a smaller image size for mobile */
  height: 50px; /* Keep image aspect ratio */
}

.similar-card .card-body {
  padding-left: 10px; /* Add some spacing between the image and text */
}

.similar-card .card-text.d-none.d-md-block {
  display: none; /* Hide longer text on smaller screens */
}
}
.similar-card .icon-top-right {
position: absolute; /* Position icon relative to card body */
top: 0; /* Align icon with the top of the card body */
right: 10px; /* Position icon to the right */
font-size: 16px; /* Adjust icon size as needed */
font-weight:bold;
color: black; /* Change to desired color */
margin-top: 5px; /* Fine-tune the vertical alignment */
}




/* Sort Button on the Search Bar*/
#sort-options{
  padding-right:0px;
  font-weight:bold;
  font-size:15px;
  cursor: pointer;
}
#sort-options option[value="title"] {
  font-weight: bold;
  color: #333;
  background-color: #f0f0f0;
  pointer-events: none; /* Make the title non-clickable */
}


/* Style for limiting the description to two lines */
#randomgroup-result .card-text {
  display: -webkit-box; /* Flexbox for truncating text */
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical; /* Specifies vertical orientation for the box */
  overflow: hidden; /* Hide overflow */
  text-overflow: ellipsis; /* Adds ellipsis (...) after truncated text */
  white-space: normal; /* Allows text to wrap */
  color:black;
  margin-bottom:10px;
}
#randomgroup-result .icon-top-right {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 16px;
  font-weight: bold;
  color: black;
  margin-top: 5px;
}
#randomgroup-result .badge {
display: block;
width: fit-content;
margin: 0 auto;
margin-bottom: 10px;
}

#randomgroup-result .btn{
  background-color:#ff007c;
  border-color:#ff007c;
}

/* Sekelton Loader */
.skeleton-loader {
  .badge,
  .btn,
  h5,
  p {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
    color: transparent !important;
  }
  .btn{
    border:0px;
  }

}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}



/* Bot Listing Styles */
.list-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card-text p {
  margin-bottom: 5px !important;
}
.list-title-box{
  width:40%;
}
.list-header .card-title{
  width: 100%;
  line-height: 1;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .list-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start; /* Align title and upvotes to top */
  }

  .list-header .list-upvotes {
    align-self: flex-start; /* Align buttons to the top right of the card title */
    justify-content: flex-end;
  }
}

@media (max-width: 1200px) {
  .list-title-box{
    width:63% !important;
  }

  .logo-container img {
    width: 120px !important;
    height: 120px !important;
  }

  .card-text {
    font-size: 1rem !important;
  }

  .category-badge {
    position: relative !important;
    margin: 0 auto;
    margin-top: -40px;
  }

  .logo-container {
    top: 20px !important;
  }

  .list-links {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .list-header {
    text-align: center !important;
    align-items: center !important;
    margin-bottom:20px;
  }
  .list-title-box{
    width:100% !important;
  }
  .list-stars{
    margin:0 auto;
  }
  .list-header .list-upvotes {
    display: block;
    margin-top: 10px;
    text-align: center;
  }
  .list-card hr {
    display: none;
  }
}



/*Quill Forms */
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 5px !important;
}

/*Random Shit*/
.pencil-img{
  margin: 0 auto;
  display: block;
  rotate: 40deg;
  width: 120px;
  height: 120px;
}
@media (max-width: 768px) {
.pencil-img{
  width:75px;
  height:75px;
}
}


/* Review System */
.star-rating {
  font-size: 1.5rem;
  cursor: pointer;
}
.text-warning {
  color: #ffc107 !important;
}
.text-muted {
  color: #6c757d !important;
}
.review-bar {
  display: flex;
  align-items: center;
}
.total-container {
  display: flex;
  justify-content: flex-start; /* Align items side by side */
}
.total-score {
  font-size: 3rem; /* Adjust score size if needed */
  margin-right: 15px; /* Space between score and reviews */
}
.total-reviews {
  display: flex;
  flex-direction: column; /* Align stars and review count vertically */
}
.reviews-text{
  font-weight: 500;
  font-size: 0.85rem;
}

/*Special Gradient Button*/
.animated-btn{
  background: -webkit-linear-gradient(45deg, #680aca, #ff897e);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  -webkit-animation: animatedgradient 6s ease infinite alternate;
  animation: animatedgradient 6s ease infinite alternate;
  background-size: 300% 300%;
  border: 1px solid rgba(0, 0, 0, 0);
  color: #fff;
  padding-top: 14px;
  padding-bottom: 14px;
}
@keyframes animatedgradient{
0% {
  background-position: 0% 50%;
}
50% {
  background-position: 100% 50%;
}
100% {
  background-position: 0% 50%;
}
}


/* Add Bot Loader Animation */
.loader {
  display: inline-block;
  position: relative;
  width: 73px;
  height: 73px;
  z-index:10;
}
.loader div {
  position: absolute;
  border: 4px solid red;
  opacity: 1;
  border-radius: 50%;
  animation: loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loader div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes loader {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}


/* Highlighting Effect */
.border-effect{
  position: relative;
width: 50px;
height: 50px;
}
.border-effect:before, .border-effect:after {
content: '';
position: absolute;
left: -2px;
top: -2px;
background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, 
  #0000ff, #00ff00,#ffff00, #ff0000);
background-size: 400%;
width: calc(100% + 4px);
height: calc(100% + 4px);
z-index: -1;
animation: steam 20s linear infinite;
}

@keyframes steam {
0% {
  background-position: 0 0;
}
50% {
  background-position: 400% 0;
}
100% {
  background-position: 0 0;
}
}

.border-effect:after {
filter: blur(50px);
}


/* Cookie Alert */
.cookiealert {
  position: fixed;
  padding:10px;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width:100%;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  border-radius: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
  color: #ecf0f1;
  font-weight:normal;
  background: #212327 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEECAIAAAAd4J55AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUIyQzg0Q0RDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUIyQzg0Q0VDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QjJDODRDQkNDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5QjJDODRDQ0NDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnMLhJsAAB3qSURBVHja7J3ZkqNIsoYhWASqzqqsrWdu2/qiL8bmom3Mzvs/0pyLoxWJ44SnKCUBKIgFQuQfVibLUiqBD0nuf0T4Ev/9n//573//N5prbMtyt9/PdrrX1y/0CEAAhgyYlNvf6CchRJqm1+vV+znjeIazEAs91nV9OBzpHwABGDKg4KforLEcvs99Pp+9Hj9JBFFcLpfOfQQgAIMFFEmS8E+n04m+l3mebzYbr77epwmLsyyv5bgBJwAEYOCAaedFxMk/EGr7s0szU1U+2Ohq+eIPh8P4KwEIwNAAky+v34a+sjTa76ur4Vxtp2lyvdZ0WPLv6m/vTQ4AARgm4C852hlVVdHf0PSxdOqd3fp6unghEiYZegEAARg64LfvP0dsCX19K+mdyZm6sRCOlp6KoqDHixwjLxNCjPADEIAhAA7KUdVppklif3H2R2Dnrq6eDV22plwBIACXAhyUo+qV0YSVvrXb7dZmmdjS12dZFkfxuGnUFDMABGAogONyVP3W8i4KnclwQmzk6+meku7nqe2kP38oZgAIwMUBdeWoikqQ42LXla9njUHnMrin+mIGgABcClBXjqp/yVs05PonHWGqr99sNvXtjGZrUwAEYOiAk+SoOsj1NxPiNNXdsdHz9eSjy7I4nysz62IsZgAIwPkBDeWo6sFzPdf/EI/uFJmGVtlbDmMxA0AAzgZoKEfVcZSuvygKEuI2vp6cO90FV2EQxmIGgACcD9BSjnZGVVV0fU3WydCOzYCvJ7WQ53klR+Ru2IsZAALQN6AbOap62KHUL/XJ9i5XHgJnXYkZAALQH6AzOdoZQ1knnMt4L685utzHjXYrZgAIQE+AaeRz/Mo6ybKTnMW2tiTPSZfHOqkrIQ8AAtDB99CHHO1x8dKKkFHhSa10+rXBRmogYgaAAHwCOaqeiR7Lsvj0aUuP/pz7bGIGgAB8DjmquP4znZIeo5UOAAIwXDm62eQc2EoKm309OX0hhO+yVrOJGQAC0Bgw+fHzH/4gyajkeX6f19jmmHCwTxt84O8C6D56BswACEArQE+HbkmOx+P986VMN743cmma8j7Mc407wBMAARicHKUrLoqiN7GqVjZD2d5kcjhfjPIkZgAIwHDlKF0luVe60KHYgqFzXeWI5FapQxXuXMxkWWoN2NQ+AOBigGka3EfUrXOv6+t4aPm9r++F52rnwaqXh7HzGoAJAJcEjOrQPqJu5Ggb2/rQBNaPUkVYIZB5KIqNfaieKzEDQAD6A7SVo5tNzpeleTX6lbNYfFtqG3sxA0AAege0dO6y/uqEqeqIrx+6Fxw+u5R6uXgHjAHoF/AS+kfUUI7SWXl2O9VE1RML6XD8Ht3NbVlW0xemjMVMC3j1Dnh9A9yWZNEA6B7wGvpHdJocpTPxwu5U6zLV16uD8aaGEU4VM0sCVgB8ckDjj+hU585ZWMaeV9/X91pEGhtv2gaAAFwEUFeOcmF9+9IatV2Z8Sa7Wdqbsix0hIq+mAEgAJcCfCBH2blzXQ0nG5Sudl15pethMNFDMQNAAC4POO7chYg7wZ+Ww9jXD9lIm6atAARgCICDcnS7LadW1Z/B1w/ZmybrpK9I1ogeWD9gCcDnAOzK0Tb56HyuPFW58jEjH8o6UcXMBwKs1goo1gaoplG5de7+fH2vycyyd1knvXliAHxywHhlgMnXbz+i0cyOwH294vobe5NnWf3epDWdA2j6DkAAhgcY/+vff+92u2iuoduUw9HYbrf0CEAAhgwois3Gpq1pOL6+924SHQABGDhg8vLyhRx8LMcMZ/Xt61s2tmdVVZ1OJwACMGRAcb7ld5RlMQPkDNVUI5ldwj8Q3ToBEwCu5yNK0923fOrdbs+l+b2mRXv19TJUf0tE7fYD/bxOwAqAzwr4qecjKt4Ffbel+T2ZnNPZS1lVwsiyTL5Pu/vUFaL7kIA1AIMF/D8FsCdihgWxZvjpZMHtZ90py9LevOm2OE8PYPFcgNkUwBqATwT4JkfVsd8fSBxzZY5gfX2SJNttKa3juffetWKmB/DwXIAnAK4VsAlbG1kLuspVKX4MaumJ+4Rw9Nnoy9I4Fo8AG8sKQAAuBfg4n9BtXX5Xvp6c+1lDu/eKmV5tA0AALgU4KEc743g80hHp1TaJJ/a+nsA4d7NdX3k0G44BCMDAAR/I0SEjYez6jX09sUVTCtdpipmQANOVA6YA7AdMp1Yv5a1M+kqQyTEIZjfbCeXwAoNbY1CbdTlA+qhVawYkrVgBsAdQV452Bvl9xiPPO8nkTPX1JC3yPCfzpuncjcUMAAG4FOA0OTqwNjWBUN/Xb26NDW3CiKaKmTkBcwACUAIKy2L6vHjV5HqVpUNf36ztulgm5vo/YQJeAQhACZh8//HTfkmWg8Eb17/ZXEeDGLZleR69p3ynXKUXk6+XseoABGC4gLZytGtFpMkZWZsa8vX0enburgrXuRIzAASgb0Bh39upY28ub5VPy17IIV9Pzt3tlbgSM8OABQA/FGCa+gI0XB19yLnb7d6yTt6X5u+E+d1SV4Rb62K/tqYBuAfghwI8n/0BiiTyNppF2ziK+gqB0TN3qSu+EpnVRBj3gBEAAWgH6MPDvve2vHOadlCHko8CFzM9p7gAEIBWgG5WRx/Phi9vUeCfP79wPzd+xvdwtbYGQAD6A/QrRxcfvsUMAAFoDxj/8edfM5wpz7PT6RzdFXWkZzwVol9kABCAFt9D4bd8FVeVavMaWyR6xmu5njtf7xkwASAAA5ajzWpv/Q6szfWiZ87nc7v++6Ripl3OBiAAjQF1O/VOGnzdVVU1c9v33pxMS2czlDiJlk2Oc9evk5dtClhKPgAC0BbQsRzlzk9RUydq33u5Q/ldXLEnfDFzB3gAIABDlKMbmVg1UohuqPRAm45VlqVDVOdiBoAAdA7oZjuSG1OS9ztYN46jg/AByWLZX5urzVYArgCQvn67IAFtN+uF3EzlKazO6zWTtZpeioo0N/P1llu9/gBTAALQiRzNb85dVwxoV8I6StfPtQMWFDP+AE8AnAVwEzygoRxtq+gcDofI5+BZMofSGtTwMFYLAFwN4D54wMlylFeWrter2d0xdt+8UTN1gdhAzCwHGAPwYwJOk6P0atLBNl04jAuzkqCn29pWVvUkZhYFrAD4MQF1N+u5xrhlYamobyd00mjNGxca0Hm9bnE3AAJwIcDHcpSuiW+Ekw6mDtug6pS70hEzaUrHqdcMSMepARgu4AM5St9As8mYc1+v3qlmRnvrO2UsZiRgsnLABIBBAw7KUW4Sau/c3fr6zpCbP+z6s/vupzpihltMPg9g3guyIsDJ72CxFsAeOcr601VZRX++/j3q22XriJnnBKynACacG77ed3BVgN0EDTWzw+1w5etVc3KXdTIW7/sxAGMAPhGgYBfJmR30eDqdZihu42ncCmPVWZZyuR654rJGwPRjAm5XCZj8/vs/uWMGgc2Qye/J16uo/AOhJrJ7KwABGCygeHl54fDWeYqFePL1KiEN4nqRA4AADBkwPRyPq6nVo3Jy3goAARgyYPLbyxe5RCOKopjBEc/j6/Msq281QjiBpemMVRTVWgC5efiKAT/UOyjapZvDocn2TxK/NR59+/qiaGKXTjLQ9P55+u9+RYDntQN+qHdQtIn6arWp5xrc177TtSOVA4AADBkw+frt+73ebhtHbbelrEPlWIt78vX0rsSy9Zxywd35/AcCLMu+1wcKWHxgwOT16/fev+FYmyQRzj9MDiHJrtBU9q22Yl/wBPEOvUfrB6yeCbD6wIBipG5U3USm18G6fnbux9G6PfdiBoAADBOwK0fV8dbpW+Yp2ofqubIxZVlw/tGjFz7eXgLgQoClXq7g+gEH5ajKyXuLQggbFW7p6+nsmzyvZJKIzmWMiBkAAjAQQKFfxvTWqibv7fQ9j2dvnPuUWjrjYgaAAAwB8LEc7XX9xJkkiYHBMLMxBFbK2e10sTE52gmAAJwZUFeOqhfKJyPOSXdoqq8nM5GmGf3J2ShwXl/MDAFy6QQAAnAQMEnSzApQGFfV5+8e3WJPEQytojCo5WgmZnoBEwACcBwwtgWcLEdVe8NJ3+T9dbK8NG1M0zlgk0vnbrkVaxt8D0AA+gY0lKOd0Ra64roDNr6eZ9VcJMf+wozFDAABOBugcNXkiY1VHAsODzd27saFk52LmQHAGIAAdAtoK0dVe8OdR4cSo4ZsDN0XrnLlunSP41xQAALQOaAbOareNhbi6tqp6uvpGR+F69yKGQAC0B+g8NEBOBrOOrlfR+KdTaOtlQXEzDBgDkAABiRHe+0Nc6rWhWe3nisX+C1NAkAABipHh3Q2fek/fdq2nS38WRffYgaAAHwCOdo78pwmtxk9znZGf2IGgAB8Djl6r62jJqivMS1tZ9NZGGeqlAdAABoDCuv9fq2RSWNG9/J4q7CYZalNp2/N0dZvBiAAgwX0K0eJgVdHT7JqHTvf2xrU+XQ6cfK/P5PjW8wAEIDhylFu5aVurRSbTSfYnOe+3iB9iRkAAtAVoJfVUSG7zlz6VpbU4q23bAzd+NqpS08+3j8AAtAhoGM5So47y7KmC9TAtQ4llRDb4XDgIzg0Oc7FDAAB6BxQkEN2cqyNnMLSVZ5v2rpfAzyKnaVpsZCNIR3Nei8ABOAb4CZQQDdylFuQ6ih3nV4CdJym8UBZcGnQEMQMAAHYB1iOf581AZOfsj+h8SG22y3PbjXnzr0dg3sh+f3jlSvjiXnj62V3OwAC0APg2Q2gma8nX8xbKLvdblJoeT4xlYtcf3w745xiBoAAnA3QUI7S1NZsmcigtdVVFpOk2fB1euMBYzEDQADOBjhtdZSEAfcNJ0ds5n/NSu7Qufb7PRFmMrPS39oaAAE4P6CuHCW2TGplcu42W6d5ZhUa29zZqNZ3/fpiBoAAXApQV44aO3d7X69cdEOo2XhAX8wAEIBLAT6Qo/TbsiwjmW7sJHbIVQXIw+FAd5yONh5i+1DMABCAywMO+Xr6FSFVckTuRu7IXPG4XC5v9VfjuPcNGFEyaZrQXwDwiQGTpI7WADiYykQK20dZm70M/HE4qurCUqTX3owkwgiRAPC5AZOVAIqO8/2V2WFR2XsGX98ZJzl4mbhzOgACMHTAL6/fWrbezA63Q80TcTvq+l3WyX0aDAABGCagaMXnPFUEnPt6RYJfuZgkEXXUNQABGCageH39IoXp1T4UdUFfr6jwt0KRRAdAAAYOKKJ5h+VOaPgDgACcOuI//vyLfT0ZgBkszdBCrdvBgfD3+6QABGCwgG+ekP7DFb+f3deT0uaqyZ1IBQACMFjAX1sUHHDQrv8+o6+XXa/y++n7/QI3AAEYKOC37z/vnW+7/kuoPhaCKz+Ly3S1idy67cQ68AIUAAEYMuCvfUL1K+tDHGumLU85YCKDKq6978fIojbpmjgWAHxiQPon1gAoRmpL0d+00bFh+nq52ZJEw8UF1HiLO8ALAJ8b8LIWwI4c7Yy2MzAHK4Tj6zn252HwhCpmAAjA0AAH5ajqNNMksYe09/Xs3DXbVunHWAAQgEsBCs0FWS6W2tYOWMrXZ1kWN3MB3eJWI2IGgAAMBXBcjqrfWt4tpTOZTYjNfD3dU9L9Bn0bH4oZAAJwcUBdOaqiEqTBArGBr2eNYda12DjkF4AAnA1QGNeW4mwucv2TjjDV1282m/p2RrO1KQACMHTASXJUHVxYjoyH5qaipq9vi6ibWRdjMQNAAE4BbMrg2wO6qWFRVVWqZ2we2iS6U/Qaotrt9vYX5ioBFIBrAEydA+6cAApX4apH6fq575SNryfnblDG2LmYAeAKAY+hAlrKUdXe0PWRgx3asRny9W0HRreVs+zFDAAB6BvQcHX04Zx4aIlJfb69y5WHwh6eCiIAEIAOr0T4qy2lk3XSts7xlEbpUMwAEICeANPI52iL0pHOPskt1NaW5Dkp75hecPBcVweAAAwc0IscVce1fmuRwZPaSNY89Vq4zquYASAAn0COqmeix7IsPn3a0qM/5z6bmAEgAJ9Djiqu/0ynpMdopQOAAAxXjm42OQe2ksJmX09O37IXeVBiBoAANAZMfvz8hz9I7gt1H/TQ5phwsE8bfODvAoSHCgjvATMAAtAK0NOhW5Lj8Xj/fHnXDYONXNMuWMxdg9gp4AmAAAxOjtIVF0XRm1hVK71L2d5kcjhfjPIkZgAIwHDlKF1lb123zhqUOtpqxG5rXTkXM1mWAhCAjgHdOve6ftC1o3zfnE2Fb4L60lnXbCcC1gAEoFtAN3K0jW0daqo64us7gxUCmYei2NiH6rkSMwAEoD9AWzm62eR8WZpXo185i8U3F65aUMwAEIDeAS2dO1eY1f+rEV8/dC96O33Ppl4uAATgOGBtC2goR9vC+lNN1ENfr8yGG3tDd3NblgZlsIzFTAt4BSAAxwFrW8BpcpTb3l9uw0wBm1kLxpsaRjhVzAAQgAsATnXunIVl7Hn1fX2vRaSx8aZtAAjARQB15SgX1rcvrTHV16ucbG/KstARKvpiBoCzA5YA1JKj7Ny5roaTDUpXu6680vUwmOihmAEgAJcHHHfuQsSd4E/LYezrh2ykTdNWAAIwBMBBObrdllOr6s/g64fsTZN1Esc9cYDDemBbAhCA8wEWm008ANiVo23y0flceapy5WNGPpR1ooqZX4AVAAE4H2A1AqimUbl17v58fa/JzLJ3WSe9eWIABGBQgMnXbz+i0cyOwH294vobe5NnWf3epDWdA2j6vhZAriG9YsAP9Q7G//r3305K6uvPpOepVnCb2W7pEYAADBlQ8HxxtlP68/W9d5PoAAjAwAGTl89fyMPHcsxwVt++vmVje1ZdqtPpBEAAhgwozue3/I6yLGaAnKGaaiQ7p/IPRAdAAAYOSNPdt3Tj3W7Ppfm9pkV79fVNJDspbBG3i9f0MwABGDygeBf03Zbm92RyTmcvZVUJI8sy7tt4n2FJdB8SsAbgEwH2RMywINYMIJ4suP2sO2VZ2ps33Rbn6QEsngswmwJYPyFg+mEB3+SoOvb7A4ljrswRrK9PkmS7LaV1PPfeu1bM9AAengvwtHbA84cFbMLWRtaC6Fcc8ObK9btaeuI+IRxeN/qyNI7FI8DGsq4ZUGZ/AzBYwMf5hG7r8rvy9STPzhravVfM9GqbNQPWAAwacFCOdsbxeKQj0qttEk/sfT2Bce5mu77yaDYcAxCAgQM+kKNDRsLY9Rv7eprXRlMK12mKGQACcHHAdGr1Ut7KpK87mRyDYHaznVAZXUDvxORCqwa1WQEIwJkBdeVoZ5DfZzzyvJNMzlRfT9Iiz3Myb5rO3VjMAHCtgGXwgNPkaP/a1BRCfV/fNja0CSOaKmYACMD5AYVlMX1evGpyvcrSoa9PksTJMjHX/wEgAEMGTL7/+Gm/JNsEg98KaVxHgxi2ZXkevad8p1ylF5Ovl7HqAARguIC2crRrRaTJGVmbGvL19Hp27q4K17kSMwAEoG9AYd/bqWNvLrfKp72QQ76enLvbK3ElZoYBCwAC0Amg4eroQ87dbveWdfK+NH8nzO+W2SHcWhf7tTUNwD0AAegIUCSRt9Es2sZR1Fcni565y+zwlcisJsK4B4wACEA7QB8e9r235Z3TtIM6lNkRuJjpOcUFgAC0AnSzOvp4Nnx5iwL//PmFG9bxM76Hq7U1AALQH6BfObr48C1mAAhAe8D4jz//muFMeZ6dTuforqgjPeOp0v4iA4AAtPgeCr/lq3jpqc1rbJHoGa/leu58PQABGDigT1/frva2YG2uFz1zPp/b9d8nFTMABKA9oG6n3klDXndZVXJu+96bk2npbIYSJ9GyyXHu+nXysgEIQB3AzBugYznKnZ8iWSeq93KH8ru4Yk/4YgaAHxaw8gjo1NdvZGLVSCG6odIDbTpWWZYOUZ2LGQAC0Dmgm+1I7tu4J9ti3TiODsIHJItlf22uNlsBCEB/gLab9UJupvIUVuf1mslaLMHtuwLYb/X6A0wBCEAncjS/OXddMaBdCesoXT/XDlhQzPgDPAEQgDZytK2iczgcIp+DZ8kcSmtQw8NYLQAQgLMBTpajvLJ0vV7N7o6x++aNmqkLxAZiZjnAeOWAMQBdyFF6Nelgmy4cxoVZSdDTbW0rq3oSM4sCVisHrADYD6i7Wc81xi0LS0V9O6GTRmveuNCAzus1t3oBCMClAB/L0TRNrteaXuqkg6nDNqg65a50xAwAAbgs4AM5SlaBX+AqWseyT8D9nWpmtLe+U8ZiBoAAXBxwUI5yB0Z75+7W13eG3Pxh15/ddz/VETPPBpj3ggBwBYA9cpQugj27j8BZt/frDvXtsnXEzHMC1lMAE84NB+BTAHYTNNTMDrfDla9Xzcld1slYvO/HAIwB+ESAglUcZ3bQ4+l0mqG4jadxK4xVZ1nK5XrkfH2NgCkA1/MRTX7//Z/cMYPAZsjk9+TrVVT+gd7LRHZvBSAAgwUULy8vHN46T7EQT75eJaxlE/MXOQAIwJAB08PxuJpaPSon560AEIAhAya/vXyRSzSiKIoZHPE8vj7PsvpWI4QTWJrOWEVRARCA4QGKdunmcGiy/ZPEb41H376+KJrYpZMMNL1/nv67ByAAgwQUbaK+Wm3quYZsGh5zGHT7ZCoHANcFWK8MMPn67fu93m4bR223paxD5ViLe/L19K7EsvWccsHd+fwHAizLvtcDMDjA5PXr996/4VibJBHOL8UhJNkVmspWsnJdb/AE8Q69R+sHrAD4HIBipG4UfWXpexus62fnfhyt23MvZgAIwDABu3JUHW+dvmWeon2onisbU5YFZ688euHj7SUAAnBZwEE5qnLy3qIQwkaFW/p6OvsmzyuZJKJzGSNiBoAADARQ6JcxvbWqyXs7fc/j2RvnPqWWzriYASAAQwB8LEd7XT9xJkliYDDMbAyBlXJ2O11sTI52WgywBOCTA5p+RHXlqHqhfDLinHSHpvp6MhNpmtGfnI0C5/XFzBBgmiRXv4ApZ5G2rbkA6BhQJh+G/BEVxlX1+btHV+ApgqFVFAa1HM3ETC9g4h2wBqBfwCT0j+hkOaraG04ZJu+vk+WlaWPorm02uXTulluxtsH3AASgb0BDOdoZbaGrh67/oa/nWTUXybG/MGMxA0AAzgYoXDV5YmMVxyLLMhvnblw42bmYGQCMrQEvAFwSMIpD+4jaylHV3nDn0aHEqCEbQ/eFp++uS/c4zgV1AVgD8MkBHX9E3chR9baxEFfXTlVfT8/4KFznVswAEID+AIWPDsDRcFrN/ToS72waba0sIGaGAXMAAjAgOdprb5hTtS48u/VcucBvaRIAAjBQOTqks+lL/+nTlkW5p8qt84gZAALwCeRo78hzmtxm9DjbGf2JGQAC8Dnk6L22jpqgvsa0tJ1NZ2GcqVIeAAFoDChcLyj3j0waM7qXx1uFxSxLbTp9a462fjMAARgsoF85Sgy8OnqSVevY+d7WoM6n04mT//2ZHN9iBoAADFeOciModWul2Gw6weY89/UG6UvMABCArgC9rI4K2XXm0reypBZvvWVj6MbXTl168vH+ARCADgEdy1Fy3FmWNV2gBq51KKmE2A6HAx/BoclxLmYACEDngIIcspNjbeQUlq7yfNPW/RrgUewsTYuFbAzpaNZ7ASAAAwd0I0e5BamOctfpJUDHaRoPlIVZLrYPMQNAI8By/OOOd5ABk5+yP6HxIbbbLc9uNefOvR2DeyEZj1eujCfmja+X3e0AuATgGe+gRzlKvpi3UHa73aTQ8nxiKhe5/vh2xjnFDAABOBugoRylqa3ZMpFBa6urLCZJs+Hr9MYDxmIGgACcDXDa6igJA3LusrPM2cz/mpXcoXPt93sizGRmpb+1NQACcH5AXTlKbJnUyuTcbbZO88wqNLa5s1Gt7/r1xQwAAbgUoK4cNXbu9r5eueiGULPxgL6YASAAlwJ8IEfpt2VZRjLd2EnskKsKkIfDge44HW08xPahmAEgAJcHHPL19CtCquSI3I3ckbnicblc2OeT6+99A0aUDAABGAjgYCoTKWwfZW32MvDH4aiqC0uRXnszkggDQAAGAig6zvdXZodFZe8ZfH1nnOTgZeLO6QAIwNABv7x+a9l6MzvcDjVPxO2o63dZJ/dpMAAEYJiAovXs81QRcO7rFQl+5WKSRNSRLgAEYJiA4vX1ixSmV/tY2wV9vaLC3wpFEh0AARg44P8LMACM4cURIdXaEQAAAABJRU5ErkJggg==');
}

.cookiealert a{
color: #4044ee;
font-weight: bold;
}
.cookiealert a:active, .cookiealert a:focus, .cookiealert a:hover {
  color: #4044ee;
}
.cookiealert .btn {
  color: #fff;
  background-color: #ff5367;
  border-color: #ff007c;   
  font-weight:bold;
}

.cookiealert.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.cookiealert a {
  text-decoration: underline
}

.cookiealert .acceptcookies {
  margin-left: 10px;
  vertical-align: baseline;
}



/* Keyframe animation to make the border change colors */
@keyframes colorChange {
  0% {
    border-color: #6000ff;
  }
  25% {
    border-color: #ff007c;
  }
  50% {
    border-color: #6000ff;
  }
  75% {
    border-color: #ff007c;
  }
  100% {
    border-color: #6000ff;
  }
}

/*Promoted Bots Styles */
.promoted-small img{
  border: 4px solid #6000ff; /* Initial border color */
  border-radius:10px;
  animation: colorChange 3s infinite; 
}
.promoted-big{
  border: 4px solid #6000ff; /* Initial border color */
  border-radius:10px;
  animation: colorChange 3s infinite; 
}

/* PAYMENT FORM */
.paymentform{
  margin:0 auto;
  text-align:center;
  max-width:500px;
  padding: 20px 40px 20px 40px;
  margin-top:20px;
  background:radial-gradient(116.18% 118% at 50% 100%, rgba(99, 102, 241, 0.1) 0%, rgba(218, 70, 239, 0.05) 41.83%, rgba(241, 244, 253, 1) 82.52%);
  border-radius:10px;
}
.payment-types {
  width:100%;
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
}
.payment-type{
width:100%; 
height:65px;
border: 3px solid #53FF94;
border-radius: 3px;
    margin: 0 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-type:hover{
background-color:rgba(83,255,148,.25); 
cursor: pointer;
}
.payment-type img{
max-width: 129px;
max-height: 66px;
}

.payment-types input[type="radio"] {
display:none;
}

.payment-types input[type="radio"]:checked + .payment-type{
background-color:rgba(83,255,148,.3); 
}

@media (max-width: 768px) {
.paymentform{
  padding: 10px !important;
  margin-top:10px !important;
}
.payment-type{
  margin: 0 5px 5px;  
}
}

/* Week Calendar */
.calendar-wrapper {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.calendar {
  border: 1px solid #ddd;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

#prev-month, #next-month {
  background-color: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

#week-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.day-name {
  text-align: center;
  font-weight: bold;
}

#calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.day {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.day:hover {
  background-color: #ddd;
}

.day.highlight {
  background-color: #898cfd;
  color: white;
}

.current-week {
  background-color: #4044ee !important;
  color: white;
}

.disabled {
  color: #bbb;
  pointer-events: none;
}

.locked-week {
  background-color: #ff6f6f;
  color: white;
  pointer-events: none;
}

#month-name {
  font-size: 18px;
  font-weight: bold;
}

#selected-week {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

/* Emoji Bullet Points*/
.emoji-list {
  list-style-type: none;
  padding-left: 0px; /* Add some padding to the left to align list properly */
  text-align: center; /* Center-align the whole list container */
  display: inline-block; /* Make the list block-level but inline for centering */
}

.emoji-list li {
  display: flex;
  align-items: center;  /* Vertically center-align the emoji and text */
  margin-bottom: 4px;    /* Optional: add some space between the list items */
  text-align: left; /* Keep the text left-aligned */
}

.emoji-bullets {
  margin-right: 6px;  /* Space between the emoji and the text */
  font-size: 18px;      /* Optional: adjust the emoji size */
}
