.bg-t {
  background-color: #F5F5F5 !important;
}

/**
 * Buttons
 **/
.br-btn {
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 20px;
  margin: 4px;
  background-color: #12498a;
  color: #FF9400 !important;
  border-radius: 25px;
  border: 1px solid #FF9400;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.br-btn:hover {
  background-color: #FF9400;
  color: #12498a !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px); /* Subtle lift effect on hover */
}

.br-btn-rev {
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  margin: 4px;
  background-color: #12498a;
  color: #FF9400 !important;
  border-radius: 25px;
  border: 1.7px solid #12498a;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.br-btn-rev:hover {
  background-color: #FF9400;
  color: #12498a !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px); /* Subtle lift effect on hover */
}

.br-search-btn {
  font-family: "Gilroy-Regular", sans-serif;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 20px;
  margin: 4px;
  color: white !important;
  background-color: #12498a;
  border: 1px solid #12498a;
  border-radius: 25px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.br-search-btn:hover {
  background-color: rgb(12.1153846154, 49.1346153846, 92.8846153846);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px); /* Subtle lift effect on hover */
}

/* Basic input field styling */
.form-input {
  font-family: "Gilroy-Regular", sans-serif;
  font-size: 16px;
  padding: 10px 15px;
  border: 2px solid #ccc;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 15px; /* Space between fields */
}

/* Focus state for inputs */
.form-input:focus {
  outline: none;
  border-color: #210646; /* Focused border color */
  box-shadow: 0 0 5px rgba(32, 6, 70, 0.3); /* Focused box-shadow */
}

/* Placeholder text styling */
.form-input::placeholder {
  color: #aaa;
  font-style: italic;
}

/* Error message styling */
.error-message {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

/* Styling for the labels */
.form-label {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

/* For buttons */
.form-br-btn {
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  padding: 10px 20px;
  background-color: #12498a;
  color: white !important;
  border: none;
  border-radius: 25px;
  width: 100%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 15px;
}

.form-br-btn:hover {
  background-color: #12498a;
  color: #210646 !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

a.br-link-primary {
  font-family: "Gilroy-SemiBold", sans-serif;
  color: #FF9400 !important;
}

a.br-link-primary:hover {
  background-color: transparent !important;
  color: #12498a !important;
  text-shadow: -1px 0 #FF9400, 0 1px #FF9400, 1px 0 #FF9400, 0 -1px #FF9400;
}

a.br-link-secondary {
  text-decoration: none;
  font-family: "Gilroy-SemiBold", sans-serif;
  color: #12498a !important;
}

a.br-link-secondary:hover {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  color: #FF9400 !important;
}

@font-face {
  font-family: "Gilroy-Light";
  src: local("Gilroy-Light"), url(./Gilroy-Light.ttf) format("truetype");
}
@font-face {
  font-family: "Gilroy-Medium";
  src: local("Gilroy-Medium"), url(./Gilroy-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Gilroy-Regular";
  src: local("Gilroy-Regular"), url(./Gilroy-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Gilroy-SemiBold";
  src: local("Gilroy-SemiBold"), url(./Gilroy-SemiBold.ttf) format("truetype");
}
body {
  background: url(../images/pack-01.png) no-repeat center center;
  background-size: cover;
  max-width: 100vw !important;
}

span.logo {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: xx-large;
  color: rgba(207, 197, 224, 0.8) !important;
}

div.page-content {
  position: relative;
  min-height: 100vh !important;
  width: 100vw !important;
}

.trustee-container {
  font-family: "Gilroy-SemiBold", sans-serif;
  background-color: rgba(245, 245, 245, 0.6) !important;
  padding: 5vh 0vw 5vh 0vw;
  margin-top: 5vh;
  border-radius: 25px;
}

.features-title {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 26px;
}

p {
  color: #12498a;
  font-family: "Gilroy-Regular", sans-serif;
}

/**
 *  Navigation
**/
#top_nav {
  padding: 1vh 2vh 1vh 2vh;
  background-color: #12498a;
}

#mobile-navbar {
  background-color: #12498a;
  display: block;
  padding: 1vh 1vh 1vh 1vh;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  height: 100vh;
  width: 250px;
  background-color: #12498a;
  color: white;
  overflow-y: auto;
  padding: 2rem 1rem;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  transition: left 0.3s ease-in-out; /* Smooth slide transition */
}

.sidebar.is-active {
  left: 0; /* Show sidebar when active */
}

.sidebar a {
  display: block;
  padding: 0.5rem 0;
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.sidebar a:hover {
  color: #cfc5e0;
}

span.toggle-icon {
  color: white;
  font-size: 1.5rem;
}

footer {
  background-color: rgba(18, 73, 138, 0.4) !important;
  margin-top: 5vh !important;
  padding-top: 5vh !important;
  margin-bottom: 0vh !important;
  bottom: 0;
  width: 100%;
}

a {
  text-decoration: none !important;
}

.form-container {
  background-color: white;
  margin-top: 5vh;
  padding-top: 4vh;
  border-radius: 25px;
  box-shadow: -7px 10px lightblue;
  padding: 20px; /* Inner padding for comfort */
  width: 100%;
  max-width: 600px; /* Max width for large screens */
  margin-left: auto;
  margin-right: auto;
}

/* Payment styling */
/* Payment Container */
.payment-container {
  background-color: white;
  padding-top: 4vh;
  width: 45vw;
  border-radius: 25px;
  box-shadow: -7px 10px lightblue;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  align-items: center; /* Horizontally center content */
  margin: 5vh auto; /* Center the container horizontally and add top/bottom margin */
}

/* Payment Columns */
.payment-columns {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Payment Column */
.payment-column {
  width: 100%;
}

/* Payment Status (Confirmed, Issues, Pending) */
.payment-status {
  padding-bottom: 15vh;
  text-align: center;
}

.payment-divider {
  margin: 20px 0;
}

/* Bitcoin Address Styling (small on small screens) */
.payment-address {
  border-radius: 15px;
  background-color: #FF9400;
  color: white;
  font-size: 14px;
}

/* Payment Cancelled Section */
.payment-cancelled {
  padding: 15vh 0vh 15vh 0vh;
  text-align: center;
}

.payment-link {
  color: #210646;
  text-decoration: none;
}

.payment-link:hover {
  text-decoration: underline;
}

/** 
 * Mobile
**/
@media only screen and (min-width: 0px) and (max-width: 767px) {
  #top_nav, .lg-only {
    display: none !important;
  }
  .payment-container {
    width: 90%;
    max-width: 100%;
    padding: 10px;
  }
  .payment-address {
    font-size: 12px !important; /* Smaller font size */
    word-wrap: break-word !important; /* Ensure address wraps nicely */
    white-space: normal !important; /* Prevents it from being in a single line */
  }
  div.currency-selection-container {
    margin-top: 10vh;
  }
}
/**
 * Tablet
 */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #top_nav, .lg-only {
    display: none !important;
  }
  .payment-container {
    width: 90%;
    max-width: 100%;
    padding: 10px;
  }
  .payment-address {
    font-size: 12px !important; /* Smaller font size */
    word-wrap: break-word !important; /* Ensure address wraps nicely */
    white-space: normal !important; /* Prevents it from being in a single line */
  }
  div.currency-selection-container {
    margin-top: 10vh;
  }
}
/** 
 * Computer 
 */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #mobile-navbar, .sm-only {
    display: none !important;
  }
  div.currency-selection-container {
    padding: 2rem;
    margin-top: 10vh;
  }
  div.currency-selection-container-colums {
    max-width: 600px;
  }
}
/** 
 * Extra large screen
 */
@media only screen and (min-width: 1200px) {
  #mobile-navbar, .sm-only {
    display: none !important;
  }
  div.currency-selection-container {
    padding: 2rem;
    margin-top: 10vh;
  }
  div.currency-selection-container-colums {
    max-width: 600px;
  }
}
/**
 * Large screen and x-large screen only
 */
@media only screen and (min-width: 992px) {
  #mobile-navbar, .sm-only {
    display: none !important;
  }
  div.currency-selection-container {
    padding: 2rem;
    margin-top: 10vh;
  }
  div.currency-selection-container-colums {
    max-width: 600px;
  }
}
/**
	* Tablet and Large screen only
	*/
/**
 * Mobile and Tablet only
 */
@media only screen and (min-width: 0px) and (max-width: 992px) {
  #top_nav {
    display: none !important;
  }
}
