/* CSS VARIABLES */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --bg-color: white;
  --text-color: black;
  --card-bg: #f4f4f4;
  --card-shadow: rgba(0, 0, 0, 0.1);
  --btn-bg: #f06921;
  --btn-text: white;
}

.dark-mode {
  --bg-color: #0f1e3b;
  --text-color: #ffffff;
  --card-bg: #1e1e1e;
  --card-shadow: rgba(255, 255, 255, 0.1);
  --btn-bg: #f06921;
  --btn-text: black;
}



body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  background-color: #000000;
  /* background-image: url(../img/bg/bgv.png); */
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
  padding-bottom: 100px;
  position: relative;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0f0e1a;
  display: flex
;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-top: 2px solid #000;
}

.bottom-bar a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 3px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3px;
}
.bottom-bar a div{
  text-align: center;
}
.bottom-bar a svg {
  margin-right: 5px;
  max-width: 20px;
  max-height: 20px;
}
.bottom-bar a:hover {
  background-color: #575757;
  border-radius: 5px;
}
.bottom-bar a.active {
  background-color: #000000;
  color: #ffffff;
  border-radius: 5px;
}
.bottom-bar a.active svg {
  fill: #fff;
}
.bottom-bar a.active:hover {
  background-color: rgba(255, 255, 255, .2);
  color: #f06921;
  border-radius: 5px;
}

/* Header Start */
.menu-btn {
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-btn div {
  width: 100%;
  height: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-btn.active div:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-btn.active div:nth-child(2) {
  opacity: 0;
}

.menu-btn.active div:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background: #000000;
  color: white;
  padding-top: 70px;
  transition: 0.3s;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding-bottom: 150px;
}

.sidebar a {
  display: flex;
  align-items: center;
  padding: 15px;
  text-decoration: none;
  color: #fff;
}
.sidebar a svg {
  margin-right: 20px;
  max-width: 20px;
  max-height: 20px;
}

.sidebar a:hover {
  background: #575757;
}

.overlay {
  position: fixed;
  top: 0;
  left: 250px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 20;
}

.sidebar.active {
  left: 0;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  width: 100%;
}

.navbar {
  background-color: #0f0e1a;
  padding: 1px 16px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  max-width: 480px;
  z-index: 1;
  margin: auto;
}

.navbar a image {
  max-width: 50px;

}

a.rounded-button-link {
  background-color: #201f31;
  padding: 3px;
  border-radius: 50%;
  width: 40px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  height: 40px;
}

a.rounded-button-link:hover {
  text-decoration: none;
}

a.rounded-button-link svg {
  max-width: 23px;
  max-height: 23px;
}

/* Header End */

/* Main Start */
/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container for the entire layout */
.container {
  display: flex;
  gap: 10px;
  /* Space between left and right sections */
  max-height: 200px;
  /* Limit the height of the container */
}

/* Left section (main image) */
.left-section {
  flex: 2;
  /* Takes up more space than the right section */
  overflow: hidden;
  /* In case the image overflows */
}

.left-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the area without distortion */
}

/* Right section (stacked divs) */
.right-section {
  flex: 1;
  /* Takes up less space than the left section */
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Space between the two right divs */
}

/* Right top and bottom sections */
.right-top,
.right-bottom {
  flex: 1;
  /* Each takes up equal height within the right section */
  overflow: hidden;
  /* In case the image overflows */
}

/* Ensure images in the right sections scale properly */
.right-top img,
.right-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the area */
}

.right-bottom button:hover {
  background-color: #e5e7eb;
}

.main-section-header {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
  margin-bottom: 20px;
}

section.default-padding {
  padding: 17px 16px;
  margin: 10px 0px;
  background: #988aff1a;
}

.img-rounded {
  border-radius: 5px;
}

#main-wrapper {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  padding-top: 60px;
}


/* Horizontal Nav */
/* Navigation container */
.nav-container {
  display: flex;
  overflow-x: auto;
  /* Enables horizontal scrolling */
  white-space: nowrap;
  /* Prevents items from wrapping to the next line */
  padding: 10px;
  gap: 10px;
  /* Space between nav items */

  /* Hide scrollbar for Firefox */
  scrollbar-width: none;
  /* Removes the scrollbar entirely in Firefox */

  /* Hide scrollbar for Internet Explorer and Edge (legacy) */
  -ms-overflow-style: none;
  /* Removes the scrollbar in IE/Edge */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.nav-container::-webkit-scrollbar {
  display: none;
  /* Completely hides the scrollbar in Webkit browsers */
}

.nav-container::-webkit-scrollbar-track {
  background: #1e2a44;
  /* Background of the scrollbar track */
}

.nav-container::-webkit-scrollbar-thumb {
  background: #6b7280;
  /* Color of the scrollbar thumb */
  border-radius: 4px;
}

.nav-container::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
  /* Lighter color on hover */
}

/* Rest of the styles remain the same */
.nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background-color: rgba(0, 0, 0, .2);
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

a.nav-item i {
  margin-right: 5px;
}

.nav-item.active {
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
}

.nav-item:not(.active):hover {
  background-color: #4b5563;
}

/* GAMES TILES & CONTAINER */
.games-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  gap: 9px;
}

.games-container .game-tile {
  width: calc(100% / 3 - 6px);
  border-radius: 5px;
  max-height: 300px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
  position: relative;
  min-height: 150px;
  max-height: 150px;
}

.challenge-duration {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  border-radius: 5px;
  padding: 5px 20px;
  background: #1e1c37;
  text-transform: capitalize;
  color: #fff;
}

.games-container .game-tile img.img-fluid.img-rounded {
  height: 90%;
}

.games-container .challenge-tile {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
  position: relative;
}

.img-fluid {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.game-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #3b3c3d;
  color: white;
  padding: 5px;
  text-align: center;
  border-radius: 0px 0px 10px 10px;
  transition: 0.3s;
}

.game-name {
  font-size: .9rem;
  font-weight: 300;
  /* One line with ellipsis */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}

/* Hoeme carousel */
.gallery {
  background: transparent;
}

.gallery-cell {
  width: 100%;
  min-height: 160px;
  padding: 5px;
  counter-increment: gallery-cell;
  display: flex;
  justify-content: center;

  background: rgba(255, 255, 255, 0.2);
  margin: 0px 20px;
  border-radius: 5px;
}

.left-content {
  background: #000;
  border-radius: 5px 0px 0px 5px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  padding: 5px 10px;
}

.right-content {
  background: #fff;
  border-radius: 0px 5px 5px 0px;
}

.left-content,
.right-content {
  height: 100%;
  flex: 1;
}

.flickity-page-dots .dot {
  background: #fff;
}

.slider-subtitle {
  font-weight: normal;
  font-size: 1rem;
  margin: 0px;
}

.left-content h3 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0px;
}

.left-content p {
  margin: 5px 0px;
}

.left-content a, .challenge-right-bottom a {
  background: transparent;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  color: dodgerblue;
  border-radius: 15px;
  font-size: 11px;
  border: 1px solid dodgerblue;
  padding: 10px 20px;
}

/* IMage to cover all div */
.right-content img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 145px;
  object-fit: cover;
  border-radius: 0px 5px 5px 0px;
}

.game-container {
  position: relative;
}

.game-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;

}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 5px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px;
  transition: opacity 0.3s ease-in-out;
}

.game-content {
  text-align: center;
}

.play-button {
  background-color: #201f31;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
  display: inline-block;

}

.game-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.game-buttons a svg {
  max-width: 25px;
  max-height: 25px;
}

.game-description {
  background-color: #988aff1a;
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
  color: #fff;

}

h4.game-breadcrumbs {
  font-size: 1rem;
  font-weight: bold;
  margin: 20px 0px;
  color: rgba(255, 255, 255, .6);
}

.game-description h2 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.game-description p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.profile-tile,
.profile-stats {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.profile-stats {
  align-items: stretch;
  background: transparent;
  justify-content: space-between;
  padding: 0px;
}

.profile-tile .avatar {
  flex: 1;
}

.profile-tile .profile-data {
  flex: 3;
}

.profile-tile .profile-data p {
  margin-bottom: 0px;
}

.profile-tile .profile-edit {
  flex: 1;
}

div.avatar {
  min-width: 50px;
  min-height: 50px;
  height: 50px;
  max-width: 50px;
  max-height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;

  background-color: rgba(255, 255, 255, 0.2);
}

div.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .2)
}

.left-stats {
  margin-right: 5px;
}

.right-stats {
  margin-left: 5px;
}

.left-stats,
.right-stats {
  flex: 1;
  background-color: #988aff1a;
  padding: 10px;

}

.left-stats h5,
.right-stats h5 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 10px;
  color: #fff;
}

.left-stats p,
.right-stats p {
  font-size: .7rem;
}

.liked-games-tile {
  padding: 0px;
  margin: 20px 0px;
  border-radius: 5px;
  background-color: transparent;
  color: #fff;
}

/* CHALLENGES PAGE */
[data-tab-content] {
  display: none;
}

.active[data-tab-content] {
  display: block;
}

.tabs li {
  display: inline-block;
  flex: 1;
  text-align: center;
  border-radius: 30px;
}

.tabs {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin: 0;
  padding: 5px;
  background-color:hsl(245deg 30% 7.84%);
  border-radius: 30px;
  margin-bottom: 20px;
  color: #fff;
}

.tab {
  cursor: pointer;
  padding: 5px;
}

.tab.active {
  background-color: #1e1c37;
  color: #fff;
}

.tab:hover {
  background-color: #1e1c37;
}

.challenges-header {
  font-weight: normal;
  margin-top: 30px;
}

.challenges-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  min-height: 60px;
  background: linear-gradient(to top, black, transparent);
}

.challenges-footer .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.challenges-footer .right p {
  margin: 0px;
  font-size: .8rem;
  font-weight: normal;
}

.challenges-footer .right h5 {
  margin: 0px;
  font-size: .6rem;
  font-weight: bold;
  color: #fff;
}



/* Style the tab */
.inner-tab {
  overflow: hidden;
  border: none;
  background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

/* Style the buttons inside the tab */
.inner-tab button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
  font-weight: bold;
  flex: 1;
  /* Make buttons take equal space */
  text-align: center;
  /* Center the text inside the button */
  color: #fff;
  border-bottom: 3px solid transparent;

}

/* Change background color of buttons on hover */
.inner-tab button:hover {
  background-color: transparent;
  font-weight: bold;
  border-bottom: 3px solid #fff;

}

/* Create an active/current tablink class */
.inner-tab button.active {
  background-color: transparent;
  font-weight: bold;
  border-bottom: 3px solid #ecc902;
}

/* Style the tab content */
.tabcontent {
  display: none;
  border-top: none;
}

#contact-form .form-fields .form-group:first-child {
  padding-right: 5px;
}

#contact-form .form-fields .form-group input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: .5px solid rgba(255, 255, 255, 0.2);
  margin: 0px 0px 10px 0px;
  font-size: 1rem;
  color: #fff;
  background-color: rgba(0, 0, 0, .2);
  transition: border-color 0.3s ease;
  font-family: "Space Grotesk", sans-serif;
}

#contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: .5px solid rgba(255, 255, 255, 0.2);
  margin: 0px 0px 10px 0px;
  font-size: 1rem;
  color: #fff;
  background-color: rgba(0, 0, 0, .2);
  transition: border-color 0.3s ease;
  font-family: "Space Grotesk", sans-serif;
}

#contact-form .form-fields .form-group input:focus,
#contact-form .form-group textarea:focus {
  border-color: #ffffff;
  outline: none;
}

#contact-form .form-group button[type="submit"] {
  background-color: #EF373F;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
  display: inline-block;
  border: none;
  cursor: pointer;
}

#contact-form .form-group button[type="submit"]:hover {
  background-color: #9a3c0a;
  color: white;
  text-decoration: none;
}

#contact-form .form-fields .form-group label,
#contact-form .form-group label {
  font-size: .6rem;
  font-weight: normal;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
  text-align: left;
}

.contact-list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  padding: 10px;
  border-radius: 5px;
}

.contact-list-tile {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.contact-list-tile .contact-avatar {
  flex: 1;
  max-width: 50px;
  max-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  background-color: rgba(240, 105, 33, .1);
  padding: 7px;
  border-radius: 5px;
}

.contact-list-tile .contact-avatar svg {
  color: #f06921;
  width: 30px;
  height: 30px;
}

.contact-list-tile .contact-details {
  flex: 3;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
}

.contact-list-tile .contact-details h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0px;
  color: #fff;
}

.contact-list-tile .contact-details p {
  font-size: .7rem;
  font-weight: normal;
  margin: 0px;
  color: rgba(255, 255, 255, .6);
}

.contact-list-tile .contact-details p span {
  font-weight: bold;
  color: #f06921;
}

.sign-in-prompt {
  font-size: 14px !important;
  color: rgba(255, 255, 255, .6);
}

.sign-in-prompt a {
  color: dodgerblue;
  text-decoration: none;
  font-weight: bold;
}

.sign-in-prompt a:hover {
  text-decoration: underline;
}

.alert {
  background-color: #f44336;
  /* Red */
  color: white;
  padding: 15px;
  margin: auto;
  border-radius: 5px;
  position: fixed;
  z-index: 1;
  bottom: 50px;
  left: 16px;
  right: 16px;
  max-width: 480px;
  text-align: center;
}

.alert.success {
  background-color: #4BB543;
}

/* Green */

.alert.info {
  background-color: #2196F3;
}

/* Blue */

.alert.warning {
  background-color: #ff9800;
}

/* Orange */

.alert.danger {
  background-color: rgb(244 67 54 / 60%);
}

/* Red */

.alert.closebtn {
  position: absolute;
  top: 10px;
  right: 25px;
  color: white;
  font-weight: bold;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.alert.closebtn:hover {
  color: black;
}

.alert.closebtn:after {
  content: "×";
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  right: 10px;
  top: 0;
}

.alert.closebtn:hover:after {
  color: black;
}

.challenge-overlay{
  align-items: flex-end !important;
  background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
}
.challenge-overlay .game-content .game-buttons {
  margin-top: 10px;
  margin-bottom: 0px;
}

.back-button{
  background-color: #201f31;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
  display: inline-block;
}
.extras-holder{
  position: absolute;top: 0;right: 0;left: 0;
  
  border-radius: 5px 5px 0px 0px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  display: none;
}
.fav-button{
  background: rgba(255, 255, 255, .6);
  display: flex;justify-content: center;align-items: center;
  padding: 3px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: #fff !important;
}
.tag-holder{
  background: rgba(255, 255, 255, .6);
  padding: 2px 4px;
  border-radius: 5px;
  margin-right: 5px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-size: .5rem;
  font-weight: bold;
}
.tag-holder a{
  color: #000 !important;
  text-decoration: none;
  font-size: .6rem;
  font-weight: normal;
  text-transform: capitalize;
}
.fav-button a{
  color: #000 !important;
  text-decoration: none;
  font-size: .7rem;
  font-weight: normal;
  display: inline-block;
  padding: 5px;
}
.sidebar a.sidebar-btn{
  color: #000 !important;
}
.sidebar a.sidebar-btn svg {
  margin-right: 20px;
  max-width: 20px;
  max-height: 20px;
  fill: black !important;
  stroke: black !important;
  
}
.bottom-sheet {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.bottom-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #ddd;
}
.bottom-sheet-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}
.bottom-sheet-header i {
  font-size: 24px;
  cursor: pointer;
}
.bottom-sheet-body {
  padding: 16px;
}
.bottom-sheet-body p {
  margin: 0;
  font-size: 16px;
  color: #555;
}
.bottom-sheet-footer {
  padding: 16px;
  text-align: center;
}
.bottom-sheet-footer a {
  background-color: #2F7C0A;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}
.bottom-sheet-footer a:hover {
  background-color: #1f5b0a;
}
.show{
  display: block !important;
  
}
.challenge-container a{
  flex: 1;
}
.challenge-container a img{
  max-height: 450px;
}
.challenge-horiz-tile{
  display: flex;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
}
.left-image-thumbnail img{
  min-height: 100%;
  border-radius: 5px 0px 0px 5px;
  max-height: 200px;
}
.left-image-thumbnail{
  flex: 3;
}
.right-description{
  
  flex: 5;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
}
.challenge-right-top-part{
  padding: 10px;
}
.challenge-right-bottom-part{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;

}
.challenge-right-bottom-part a{
    background-color: #EF373F;
    color: white;
    padding: 5px 10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: normal;
    font-size: 14px;
    transition: background-color 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    flex: 1;

}
.challenge-right-top-part p{
  color: grey;
  font-size: .8rem;
}
.challenge-right-bottom-part a:nth-child(2){
  margin-right: 5px;
}
.challenge-right-bottom-part a:nth-child(2){
  background-color: #201f31;
  margin-left: 5px;
}
.challenge-dates{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.challenge-dates p{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .8rem;
}
