:root {
  --root-font-size: 62.5%;
  --root-font-family: "Roboto", sans-serif;

  --font-xxl: 3rem;
  --font-xl: 2.4rem;
  --font-lg: 2rem;
  --font-med: 1.8rem;
  --font-sm: 1.5rem;
  --font-xs: 1.2rem;

  --core-page-color: rgb(53, 46, 60);
  --core-page-color-light: rgb(161, 137, 183);
  --core-page-color-dark: rgb(39, 34, 45);
  --core-page-color-highlight: rgb(169, 146, 226);
  --core-page-color-faded: rgb(65, 57, 73);

  --core-font-color-primary: white;
  --core-font-color-faded: rgb(219, 219, 219);

  --core-alert-success: rgb(145, 201, 126);
  --core-alert-error: rgb(238, 109, 110);
  --core-alert-warning: rgb(254, 116, 4);
  --core-alert-secondary-info: rgb(132, 110, 149);
  --core-alert-high-alert: rgb(255, 10, 10);

  --core-box-color-standard: rgb(249, 232, 208);
  --core-box-color-callout: rgb(238, 128, 52);
  --core-box-color-info: rgb(213, 213, 213);

  --core-button-color-primary: rgb(42, 125, 253);
  --core-button-color-secondary: rgb(26, 135, 85);
  --core-button-color-callout: rgb(238, 128, 52);
  --core-button-color-info: rgb(90, 180, 201);

  --primary-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.3);
  --secondary-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.3);
  --alert-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.5);

  --primary-radius: 6px;
  --secondary-radius: 6px;
  --form-radius: 3px;
}

/* Plugin Overwrites */

.datepicker {
  font-size: var(--font-sm);
}

/* CORE */

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--core-page-color);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.orange {
  background-color: var(--core-alert-warning);
  color: var(--core-font-color-primary);
}

.disable-link {
  pointer-events: none;
  cursor: not-allowed;
}

.grecaptcha-badge {
  visibility: hidden;
}

.disabled-form {
  pointer-events: none;
}

.disabled-button {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.primary_header {
  color: var(--core-font-color-primary);
  padding: 1rem;
  font-weight: 400;
  font-size: var(--font-xl);
  display: block;
}

.page_divider {
  border-bottom: 0.1rem solid var(--core-alert-secondary-info);
  padding-top: 0rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.main_offcanvas {
  background-color: var(--core-page-color-dark);
  font-size: var(--font-sm);
}

.offcanvas-no-animation {
  transition: none !important;
}

.offcanvas_container {
  margin: 2rem;
}

.offcanvas_submit {
  position: fixed;
  bottom: 0rem;
  left: 0rem;
  width: 100%;
  background-color: var(--color-14-o7);
}

.data_grid {
  font-size: var(--font-med);
  margin-top: 3rem;
}

.data_grid .row {
  border-bottom: 1px solid #a189b7;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.data_grid .row_header {
  font-weight: 700;
  border-bottom: 3px solid #a189b7;
  margin-bottom: 1rem;
}

/* Targets the scrollbar itself */
::-webkit-scrollbar {
  width: 1.2rem;
}

/* Targets the draggable part of the scrollbar */
::-webkit-scrollbar-thumb {
  background-color: #5a4e66;
  border-radius: 0.5rem;
}

/* Targets the (optional) scrollbar track */
::-webkit-scrollbar-track {
  background-color: var(--core-page-color-dark);
}

/* HOST SHARED */
.host_active {
  color: var(--core-alert-success);
}

.host_inactive {
  color: var(--core-alert-error);
}

.host_icon_nav {
  position: fixed;
  border-radius: 20px;
  top: 20px;
  right: 20px;
  height: 40px;
  z-index: 100;
  background-color: var(--core-page-color-dark);
}

.host_banner {
  background-position: center;
  background-size: cover;
  padding-top: 25%;
  width: 100%;
  border-bottom: 0px solid white;
}

/* DEFAULT THEME */

.theme_idol_collect_container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  max-width: 500px;
  text-align: left;
}

#autocomplete::placeholder {
  color: var(--core-font-color-faded);
  font-size: var(--font-med);
}

.theme_idol_collect_container img {
  width: 50px;
  display: block;
}

.theme_idol_collect_container div {
  font-size: var(--font-med);
  padding-bottom: 15px;
}

.theme_terms_container {
  margin-top: 100px;
}

.theme_terms_container div {
  max-width: 150px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.theme_terms_container div a img {
  text-align: center;
  width: 100%;
}

.host_callout {
  font-size: var(--font-med);
  background-color: #27222d;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  margin: 40px auto 20px auto;
}

.host_callout_alert {
  background-color: #ff3901;
  font-size: var(--font-lg);
}

.host_callout_notice {
  background-color: #105ed8;
  font-size: var(--font-lg);
}

.theme_terms_text {
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: var(--font-med);
}

.theme_terms_text a {
  text-decoration: underline;
}

.theme_icon_nav {
  position: fixed;
  border-radius: 20px;
  top: 10px;
  right: 10px;
  height: 40px;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.4);
}

/* GLOBAL THEME */

.global_reward_coupon_box {
  margin: 20px auto 20px auto;
  padding: 30px 40px 40px 40px;
  border: 5px dashed black;
  border-radius: 15px;
  background-color: white;
  color: black;
  font-size: var(--font-lg);
  max-width: 500px;
}

.global_reward_coupon_box_header {
  color: black;
  font-size: var(--font-xl);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.global_reward_coupon_box_footer {
  font-size: var(--font-med);
  text-align: center;
  color: black;
}

.global_coupon_box_qr_container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: var(--font-med);
}

.global_coupon_box_qr_container img {
  flex: 0 1 auto;
  margin-right: 20px;
  width: 150px;
}

.global_coupon_box_qr_container_header {
  flex: 1 1 auto;
  font-size: var(--font-med);
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
  color: black;
}

.global_coupon_box_qr_container_header p {
  font-size: var(--font-sm);
  text-align: center;
  color: black;
  margin-top: 20px;
}

.global_coupon_box_qr_container .global_coupon_box_qr_container_header div {
  font-size: var(--font-med);
  text-align: left;
  color: black;
}

.app_header_primary {
  font-size: var(--font-xxl);
  margin: 20px;
  text-align: center;
}

.app_callout_primary {
  font-size: var(--font-lg);
  font-weight: 700;
  color: white;
  background-color: #ff7403;
  padding: 30px;
  margin: 20px auto 20px auto;
  width: 90%;
  border-radius: 5px;
  max-width: 600px;
  box-shadow: var(--secondary-shadow);
  position: relative;
}

.app_info_primary {
  font-size: var(--font-med);
  color: #e0d3bd;
  text-align: center;
  margin: 20px auto 20px auto;
  width: 90%;
}

.side_navigation_container a {
  display: block;
  margin: 10px;
  font-size: var(--font-lg);
}

.side_navigation_container h3 {
  display: block;
  font-size: var(--font-xxl);
}

.terms_container {
  line-height: 1.6;
  padding: 20px;
  max-width: 800px;
  margin: 50px auto 20px auto;
  text-align: left;
  font-size: var(--font-med);
}

.link_display_container {
  background-color: #211c25;
  border-radius: 10px;
  margin: 20px 0px 20px 0px;
  padding: 10px;
}

.link_display_link {
  font-size: var(--font-med);
  width: 90%;
  text-align: left;
}

.link_display_icon {
  width: 10%;
  text-align: right;
  cursor: pointer;
}

.page_dropdown {
}
.page_dropdown button {
  font-size: var(--font-med);
}

.page_dropdown ul {
  font-size: var(--font-med);
  background-color: #6b5a7a;
  padding: 10px;
}

.social_icons {
  text-align: center;
}

.social_icons a {
  margin: 20px 10px 0px 10px;
}

.social_icons div {
  font-size: var(--font-md);
  max-width: 600px;
  margin: 40px auto 10px auto;
  color: #fce8cd;
}
.social_icons .bi {
  color: white; /* Change icon color */
  font-size: 24px; /* Adjust icon size */
}

.login_banner {
  background-position: center;
  background-size: cover;
  padding-top: 30%;
  width: 100%;
  border-bottom: 3px solid white;
}

.meter-container {
  max-width: 500px;
  margin: 30px auto 30px auto;
  font-size: var(--font-lg);
  width: 80%;
}

.meter {
  height: 30px;
  background-color: #52475d;
  border-radius: 10px;
  overflow: hidden;
}

.meter-value {
  height: 100%;
  background-color: #ff3901;
  border-radius: 8px 0 0 8px;
  transition: width 0.5s ease-in-out;
}

.meter-container p {
  display: block;
  margin-top: 20px;
}

/* PRIMARY */

html,
body {
  margin: 0px;
  padding: 0px;
  background-color: rgba(53, 46, 60, 1);
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-size: var(--root-font-size);
  font-family: "Roboto", sans-serif;
  color: white;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: none;
  font-weight: 700;
  color: white;
}

/* FORMS */

.form_box {
  text-align: left;
  background-color: #f8f8f8;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.login_input {
  display: none;
}

label {
  display: block;
  text-align: left;
}

input[type="text"] {
  display: block;
  width: 100%;
  height: 30px;
  font-size: 16px;
  color: #515151;
  margin-bottom: 10px;
  border: 1px solid #d3d3d3;
  padding: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 5px;
}

input[type="password"] {
  display: block;
  width: 100%;
  height: 30px;
  font-size: 16px;
  color: #515151;
  margin-bottom: 30px;
  border: 1px solid #d3d3d3;
  padding: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 5px;
}

select {
  display: block;
  width: 100%;
  font-size: 16px;
  margin-bottom: 30px;
  border: 1px solid #d3d3d3;
  padding: 7px;
  background-color: white;
  height: 40px;
  -webkit-appearance: none;
}

.fastselect_container {
  margin-bottom: 30px;
  text-align: left;
}

/* TEXT */

.game_detail_header {
  font-size: 20px;
  margin-bottom: 20px;
  font-size: 35px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 3px;
}

/* IMAGES */
.game_box {
  display: inline-block;
  text-decoration: none;
  width: 40%;
  vertical-align: top;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  border: 3px solid white;
  padding: 0px;
  margin: 10px;
  position: relative;
}

.game_box_small {
  width: 20%;
  min-height: 100px;
}

.game_box div {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 0px 0px 0px;
  height: 30%;
}

.game_listing_box_container {
  padding: 10px;
  background-color: #483f53;
  border-radius: 20px;
  display: inline-block;
  width: 40%;
  margin: 10px;
  min-height: 300px;
  text-align: center;
}

.game_listing_name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game_listing_image {
  display: block;
  text-decoration: none;
  vertical-align: top;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  border: 3px solid white;
  padding: 0px;
  margin: 10px;
  position: relative;
}

.game_listing_box_container div {
  font-size: var(--font-lg);
}

.game_listing_box_container p {
  font-size: var(--font-sm);
}

.game_master_comment_headshot {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: cover;
  position: absolute;
  right: -25px;
  top: -25px;
}

.game_master_comment_box {
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
  text-align: left;
  font-size: var(--font-med);
  border-radius: 10px;
  border: var(--secondary-border-size) solid var(--secondary-border-color);
  box-shadow: var(--secondary-shadow);
  position: relative;
  margin: auto;
  width: 100%;
}

.game_master_comment_box_read {
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
  text-align: left;
  font-size: var(--font-med);
  border-radius: 10px;
  position: relative;
  margin: auto;
  width: 100%;
}

.theme_box_comment {
  background-color: white;
  color: black;
}

.theme_box_comment_read {
  background-color: #27222d;
  color: gray;
}

.theme_image_fade {
  opacity: 0.5;
}

.game_master_comment_box_read .game_master_comment_headshot_left {
  opacity: 0.5;
}

.game_master_comment_headshot_left {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.game_master_comment_box .d-flex {
  padding: 8px;
  font-size: var(--font-med);
}

.game_master_comment_box_read .d-flex {
  padding: 8px;
  font-size: var(--font-med);
}

.game_master_large {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: cover;
}

.campaign_plus_button {
  border-radius: 10px;
  background-color: var(--core-page-color-faded);
  padding: 10px;
  max-width: 100px;
  cursor: pointer;
}

.campaign_plus_button:hover {
  background-color: var(--core-page-color-light);
}

.subscribe_header {
  margin-top: 20px;
  font-size: var(--font-xl);
  text-align: center;
}

.image-link {
  display: inline-block;
}

.image-link img {
  transition: transform 0.3s ease;
}

.image-link:hover img {
  transform: scale(1.1);
}

.game-link {
  transition: transform 0.3s ease;
}

.game-link:hover {
  transform: scale(1.05);
}

.button-link {
  transition: transform 0.3s ease;
}

.button-link:hover {
  transform: scale(1.05);
}

.admin_view_header {
  display: absolute;
  top: 0px;
  left: 0px;
  background-color: black;
  color: white;
  padding: 10px;
  font-size: var(--font-med);
}

.admin_view_header a {
  font-weight: 700;
}

/* NEEDS VERIFICATION*/

h4 {
  font-size: 20px;
}

.section_divider {
  border-bottom: 1px solid #ebebeb;
  padding-top: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.list_divider {
  border-bottom: 1px solid #ebebeb;
  padding-top: 10px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.nav_divider {
  border-bottom: 1px solid #4f455a;
  padding-top: 0px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page_content {
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  margin-top: 30px;
}

.page_header {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 30px;
  text-align: center;
  color: #b1b1b1;
}

.page_subheader {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 10px;
  text-align: center;
  color: #b1b1b1;
}

.section_header {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 30px;
  text-align: left;
  color: #b1b1b1;
}

.data_list a {
  display: block;
  margin-top: 10px;
}

.inline_button {
  background-color: #717171;
  display: inline-block;
  color: white;
  text-align: center;
  font-size: 14px;
  padding: 5px;
  border-radius: 3px;
}

.inline_button_box {
  margin: 10px;
  text-align: left;
}

.alert_box {
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  box-shadow: var(--alert-shadow);
}

.alert_box_fade {
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 100;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease;
  max-width: 700px;
  width: 90%;
  box-shadow: var(--alert-shadow);
}

.tooltip {
  width: 10px;
  cursor: pointer;
}

.term_header {
  font-size: 14px;
  font-weight: 700;
}

/* SALES */

.info_box {
  padding: 20px;
  margin: 5px;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  vertical-align: top;
  background-color: #f5f5f5;
  margin-left: auto;
  margin-right: auto;
}

.info_box_header {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
  color: #646464;
}

.info_box_description {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  color: #646464;
}

.sales_box_container {
  text-align: center;
}

.sales_box {
  padding: 20px;
  margin: 5px;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  width: 40%;
  vertical-align: top;
  min-height: 175px;
}

.sales_box_row {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.sales_box_inactive {
  border: 1px solid silver;

  background-color: white;
}

.sales_box_active {
  border: 1px solid #4195fc;
  color: white;
  background-color: #4195fc;
}

.sales_box_active sales_box_typeHeader {
  color: white;
}

.sales_box_inactive sales_box_typeHeader {
  color: #4195fc;
}

.sales_box_active sales_box_type_description {
  color: white;
}

.sales_box_inactive sales_box_type_description {
  color: black;
}

.sales_box_active sales_box_price {
  color: white;
}

.sales_box_inactive sales_box_price {
  color: #4195fc;
}

.sales_box_active sales_box_type_header {
  color: white;
}

.sales_box_inactive sales_box_type_header {
  color: #4195fc;
}

.sales_box_active sales_box_price_terms {
  color: #757575;
}

.sales_box_inactive sales_box_price_terms {
  color: #757575;
}

.sales_box_type_header {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.sales_box_type_description {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: left;
  float: left;
  margin-left: 30px;
}

.sales_box_price {
  font-size: 40px;
  font-weight: 400;
  text-align: left;
  float: left;
}

.sales_box_price_terms {
  font-size: 14px;
  text-align: center;
}

.sales_box_type_next {
  width: 14px;
  float: right;
}

.sales_box_button {
  clear: both;
  padding-top: 10px;
}

.sales_box_button_active {
  border: 1px solid white;
  padding: 5px;
  color: white;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 14px;
  display: inline-block;
}

.sales_box_button_standard {
  background-image: linear-gradient(#7dc5ee, #008cdd 85%, #30a2e4);
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 0 12px;
  line-height: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  min-height: 30px;
  -webkit-font-smoothing: antialiased;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(85, 157, 221) rgb(63, 95, 139) rgb(47, 95, 144);
  cursor: pointer;
  margin: 3px;
}

.sales_box_button_free {
  background-image: linear-gradient(#7dc5ee, #008cdd 85%, #30a2e4);
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 0 12px;
  line-height: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  min-height: 30px;
  -webkit-font-smoothing: antialiased;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(85, 157, 221) rgb(63, 95, 139) rgb(47, 95, 144);
  cursor: pointer;
}

.sales_row_headshot {
  width: 25px;
  height: 25px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: cover;
  border: 1px solid silver;
  outline: none;
}

.bill_amount_box {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20px;
}

.bill_amount_header {
  font-size: 50px;
}

.bill_amount_info {
  font-size: 14px;
  color: #848484;
  max-width: 400px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bill_positive {
  color: #459a03;
}

.bill_negative {
  color: #770000;
}

.bill_detail_box {
  border: 1px solid #dddddd;
  padding: 10px;
  margin: 5px;
  border-radius: 3px;
  display: inline-block;
  width: 40%;
  max-width: 150px;
}

.bill_detail_header {
  font-size: 30px;
}

.bill_detail_info {
  font-size: 14px;
  color: #848484;
}

.bill_container_header {
  margin-top: 40px;
  font-size: 18px;
  color: #3b3b3b;
  text-align: left;
  margin-bottom: 30px;
}

.bill_row {
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 10px;
  text-align: left;
  padding-bottom: 5px;
  display: block;
  clear: both;
}

.bill_row_date {
  font-size: 16px;
  display: inline-block;
}

.bill_row_amount {
  float: right;
  font-size: 18px;
  display: inline-block;
}

.bill_total_row {
  margin-bottom: 10px;
  text-align: left;
  padding-bottom: 15px;
}

.bill_total_row_header {
  font-size: 16px;
  font-weight: 700;
}

.bill_total_row_amount {
  float: right;
  font-size: 18px;
  font-weight: 700;
  margin-right: 18px;
}

/* GAME */

.game_detail_box {
  text-align: left;
  background-color: #f8f8f8;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.game_detail_box_header {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.game_box_container {
  text-align: center;
}

.game_box_container a {
}

.inline_box {
  padding: 20px;
  margin: 5px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  width: 40%;
  vertical-align: top;
}

.game_box_row {
  padding: 20px;
  margin: 5px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  display: block;
  text-decoration: none;
}

.game_inprogress {
  background-color: #2495ff;
  color: white;
}

.game_over {
  background-color: #f5f5f5;
  color: #7f7f7f;
}

.game_points {
  background-color: #1e9d44;
  color: white;
}

.game_commitment {
  background-color: #3c6ac0;
  color: white;
}

.game_solo {
  background-color: #723791;
  color: white;
}

.game_collaboration {
  background-color: #8d2a6a;
  color: white;
}

.game_task {
  background-color: #2d9cc4;
  color: white;
}

.game_empty {
  background-color: white;
  color: white;
}

.game_type_points {
  background-color: #1e9d44;
  color: rgba(255, 255, 255, 0.5);
}

.game_type_commitment {
  background-color: #3c6ac0;
  color: rgba(255, 255, 255, 0.5);
}

.game_type_solo {
  background-color: #723791;
  color: rgba(255, 255, 255, 0.5);
}

.game_type_collaboration {
  background-color: #8d2a6a;
  color: rgba(255, 255, 255, 0.5);
}

.game_type_task {
  background-color: #2d84ba;
  color: rgba(255, 255, 255, 0.5);
}

.game_box_type_header {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  text-align: left;
}

.game_box_type_description {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  color: white;
  text-align: left;
}

.game_box_type_tip {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

.game_box_type_next {
  width: 14px;
  float: right;
}

.game_box_header {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game_box_date {
  font-size: 14px;
  margin-top: 8px;
}

.game_box_headshots_box {
  margin: 5px;
}

.game_box_headshots {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: cover;
  border: 1px solid silver;
}

.account_headshots_icon {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: cover;
  border: 1px solid silver;
  text-decoration: none;
}

.penalty_item {
  margin-bottom: 5px;
  font-size: 16px;
  color: #464646;
}

.penalty_item_points {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  margin-right: 5px;
  margin-left: 5px;
  color: #9b0000;
}

.task_item {
  margin-bottom: 5px;
  font-size: 16px;
  color: #464646;
}

.task_item_points {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  margin-right: 5px;
  margin-left: 5px;
  color: #0d9b00;
}

/* FOOTER */

.footer_container {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(53, 46, 60, 0.8);
  text-align: center;
  padding: 0px 0px 8px 0px;
}

.footer_button {
  display: inline-block;
  text-align: center;
  margin: 10px;
}

.footer_button_icon {
  width: 50px;
}

.footer_button_icon_text {
  font-size: 14px;
  margin-top: 2px;
  color: #c0c0c0;
}

.terms_container {
  margin-top: 100px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 16px;
}

.terms_container a {
  text-decoration: underline;
}

.login_logo_container {
  max-width: 150px;
  margin-bottom: 200px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.login_logo_container img {
  text-align: center;
  width: 100%;
}

.game_list_no_game_notice {
  margin: 20px auto 80px auto;
  padding: 20px;
  font-size: 18px;
  background-color: rgb(4, 135, 210);
  color: white;
  max-width: 500px;
  border-radius: var(--secondary-radius);
  box-shadow: var(--secondary-shadow);
}

.game_list_create_game_notice div {
  font-weight: 700;
  font-size: var(--font-xl);
}

.game_list_create_game_notice {
  margin: 20px auto 80px auto;
  padding: 20px;
  font-size: 18px;
  background-color: rgb(3, 125, 255);
  color: white;
  max-width: 500px;
  border-radius: var(--secondary-radius);
}

.game_list_no_game_notice div {
  font-weight: 700;
  font-size: var(--font-xl);
}

.collect_idol_graphic_container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  max-width: 500px;
  text-align: left;
}

.collect_idol_graphic_container img {
  display: block;
  height: 50px;
  margin-bottom: 2rem;
}

.collect_idol_graphic_container div {
  font-size: 18px;
  padding-bottom: 15px;
}

/*overrides fast select width*/
.fstElement {
  width: 100%;
}

textarea {
  display: block;
  width: 95%;
  height: 60px;
  font-size: 14px;
  color: #515151;
  margin-bottom: 30px;
  border: 1px solid #e2e2e2;
  box-shadow: none;
  padding: 7px;
  -webkit-appearance: none;
  border-radius: 5px;
}

.input_delete_container {
  font-weight: 400;
  color: red;
  padding: 5px;
  margin-top: 30px;
  font-size: 16px;
  text-align: center;
}

.input_tag_header {
  font-weight: 700;
  margin-top: 20px;
}

.input_tag_description {
  font-size: 15px;
  margin-bottom: 10px;
}

input[type="submit"] {
  padding: 5px 15px;
  border: 0 none;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  -webkit-appearance: none;
  font-size: 16px;
  margin: 3px;
}

.button_submit {
  background: #ff7403;
  color: white;
}

.button_cancel {
  background: #d0d0d0;
  color: #676767;
}

.input_button {
  padding: 5px 15px;
  background: #b7b7b7;
  color: white;
  border: 0 none;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  width: 80px;
  display: inline-block;
  -webkit-appearance: none;
  font-size: 14px;
  margin: 3px;
}

.tag_container {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.required {
  font-size: 14px;
  color: red;
}

.callout {
  color: black;
  font-weight: 700;
}

.input_header {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #282828;
}

.input_header_subtext {
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 10px;
  max-width: 600px;
}

.search_result_container {
  margin-bottom: 20px;
}

.search_result_header {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}

.search_result_clear {
  display: inline-block;
  font-size: 14px;
  color: silver;
}

.button_link {
  display: block;
  width: 100%;
  max-width: 300px;
  background-color: #5a93c8;
  border: 1px solid white;
  color: white;
  padding: 10px;
  border-radius: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

/* NOTICES */

.notice_good {
  background-color: #b6e8a9;
}

.notice_warning {
  background-color: #f4e3a2;
}

.notice_bad {
  background-color: #f68c8c;
}

.notice_affiliate {
  background-color: white;
  border: 1px solid silver;
}

/* ALERTS */

.alert_notice {
  background-color: #edca00;
  padding: 20px;
  color: #4d4000;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  font-weight: 700;
  font-size: 20px;
  text-shadow: none;
}

.alert_error {
  background-color: #ff0e00;
  padding: 20px;
  color: #610000;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  font-weight: 700;
  font-size: 20px;
  text-shadow: none;
}

.alert_info {
  background-color: #91caff;
  padding: 20px;
  color: #003455;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  font-weight: 700;
  font-size: 20px;
  text-shadow: none;
}

.alert_success {
  background-color: #42d646;
  padding: 20px;
  color: #005503;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  font-weight: 700;
  font-size: 20px;
  text-shadow: none;
}

/* HOST SHARED */

.host_price_container {
  background-color: #f9e8d0;
  color: black;
  width: auto;
  display: block;
  text-decoration: none;
  vertical-align: top;
  text-align: left;
  padding: 20px 20px 40px 20px;
  margin: 20px auto 20px auto;
  font-size: var(--font-lg);
  border-radius: var(--secondary-radius);
  border: var(--secondary-border-size) solid var(--secondary-border-color);
  box-shadow: var(--secondary-shadow);
  max-width: 600px;
}

.host_price_container .item-price {
  text-align: right;
  max-width: 120px;
}

.host_price_container_items {
  border-bottom: 2px solid black;
}

.host_price_container_items .row {
  margin: 10px 0px 10px 0px;
  padding-top: 10px;
  border-top: 1px solid #e0d1bb;
}

.host_price_container_total {
  margin-top: 20px;
}

.host_price_container_total .row {
  margin: 10px 0px 10px 0px;
  font-weight: 700;
}

.host_submit_container {
  margin-top: 30px;
  margin-bottom: 50px;
}

.host_submit_container button {
  margin-right: 20px;
}

.host_radio_container {
  text-align: left;
}

.host_radio_buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.host_radio_buttons input[type="radio"],
.host_radio_buttons input[type="checkbox"] {
  display: none;
}

.host_container .host_radio_label {
  margin: 5px 0px 5px 0px;
}

.host_container .host_radio_label_delete {
  margin: 5px 0px 5px 0px;
}

.host_radio_label {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #a992e2;
  border-radius: 7px;
  background-color: #5c5470;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.host_radio_label_delete {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #a992e2;
  border-radius: 7px;
  background-color: #5c5470;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

input[type="radio"]:checked + .host_radio_label {
  background-color: #a992e2;
  color: #fff;
}

input[type="radio"]:checked + .host_radio_label_delete {
  background-color: #ff0e0e;
  color: #fff;
  border: 1px solid #ff7d93;
}

input[type="checkbox"]:checked + .host_radio_label {
  background-color: #a992e2; /* Custom checked color */
  color: white;
  border-color: #a992e2;
}

/* SCORES */

.score_box {
  margin-top: 30px;
}

.score_row {
  white-space: nowrap;
  margin-bottom: 10px;
  text-align: center;
  border: 0px;
  outline: none;
  clear: both;
  cursor: pointer;
}

.score_row_headshot {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: cover;
  border: 1px solid silver;
  outline: none;
  position: relative;
  bottom: 5px;
}

.score_row_headshot_large {
  width: 75px;
  height: 75px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: cover;
  border: 1px solid silver;
  outline: none;
}

.score_row_chart {
  height: 35px;
  background-color: #f1f1f1;
  display: inline-block;
  vertical-align: top;
  width: 83%;
  border-collapse: collapse;
  margin-left: 10px;
  position: relative;
  top: 5px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  outline: none;
}

.score_row_chart_data {
  width: 0%;
  height: 35px;
  position: relative;
  text-align: left;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.score_row_chart_data_label {
  font-size: 14px;
  position: relative;
  left: 10px;
  top: 5px;
  display: inline-block;
}

.score_collab_row_chart {
  height: 35px;
  background-color: #f1f1f1;
  display: inline-block;
  vertical-align: top;
  width: 97%;
  border-collapse: collapse;
  margin-left: 10px;
  position: relative;
  top: 5px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  outline: none;
}

.score_collab_row_chart_data {
  width: 0%;
  height: 35px;
  position: relative;
  text-align: left;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.chart_data_playing {
  background-color: #61d367;
  color: white;
}

.chart_data_winning {
  background-color: #61d367;
  color: white;
}

.chart_data_losing {
  background-color: #ff482c;
  color: white;
}

.chart_data_none {
  background-color: #e1e1e1;
  color: #a2a2a2;
}

/* COMMENTS */

.comment_box {
  margin-top: 30px;
}

.comment_row {
  display: flex;
  align-items: center;
  margin: 10px;
  padding: 6px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  background-color: #f1f1f1;
}

.comment_row_headshot {
  width: 35px;
  height: 35px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid silver;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  flex-shrink: 0;
}

.comment_row_text {
  margin-left: 10px;
  font-size: 14px;
  margin-right: 25px;
}

.comment_row_text_date {
  margin-left: 10px;
  font-size: 10px;
  color: #7f7f7f;
  white-space: nowrap;
}

.comment_row_text_date {
  margin-left: 10px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.comment_row_chat {
  height: 30px;
  display: inline-block;
  vertical-align: top;
  border-collapse: collapse;
  position: relative;
  top: 5px;
  font-size: 14px;
  position: relative;
  top: 10px;
}

.comment_row_chat_reply {
  float: right;
  height: 20px;
  width: 20px;
}

.chat_score {
  background-color: #61d367;
  color: #276a2a;
}

.chat_comment {
  background-color: #27c3f7;
  color: #1a566a;
}

.chat_penalty {
  background-color: #f82727;
  color: #570909;
}

.chat_challenge {
  background-color: #efbb3a;
  color: #5e4711;
}

.chat_reply {
  background-color: #dadada;
  color: #3e3e3e;
}

.chat_reply_challenge {
  background-color: #f9cd63;
  color: #5e4711;
}

/* RULES */
.rule_options {
  margin-bottom: 10px;
}

.rule_options img {
  width: 10px;
}

/* MENUS */

.menu_dropdown_button_header {
  border: none;
  background-color: transparent;
  color: #7d7d7d;
  font-size: 20px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin: 0px;
  padding: 3px;
}

.menu_dropdown_container {
  position: relative;
  display: inline-block;
}

.menu_dropdown_content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  font-size: 16px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.menu_dropdown_content a {
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
}

.menu_dropdown_content a:hover {
  background-color: #ddd;
}

.menu_dropdown_container:hover .menu_dropdown_content {
  display: block;
}

.menu_dropdown_container:hover .menu_dropdown_button_header {
  background-color: #efefef;
}

/* CHARTS */

.item_icon {
  width: 25px;
  margin-right: 3px;
  vertical-align: bottom;
}

.item_icon_large {
  width: 45px;
  margin-right: 3px;
}

.item_icon_medium {
  width: 25px;
  margin-right: 3px;
}

.item_icon_small {
  width: 15px;
  margin-right: 3px;
}

.item_icon_xsmall {
  width: 10px;
  margin-right: 3px;
}

/* STRIPE */

.stripe_inline_button {
  display: inline-block;
  margin: 5px;
}

/* PLAY CARDS */

.card-inactive {
  opacity: 0.5;
  -webkit-filter: saturate(0);
  filter: saturate(0);
  width: 35px;
  -webkit-transform: translateZ(0);
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
}

.card-active {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
  width: 40px;
  -webkit-transform: translateZ(0);
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
}

.card-box {
  text-align: center;
  display: inline-block;
  margin: 5px;
}

.card_box img {
  outline: none;
}

.card-description-hidden {
  display: none;
}

.dropdown-menu {
  border-radius: 10px;
  background-color: #6a5a7a;
  font-size: var(--font-med);
  color: white;
}

.action_menu {
  text-align: left;
  font-size: var(--font-sm);
  margin-bottom: 10px;
}

.action_menu button {
  color: white;
  font-size: 30px;
  line-height: 5px;
}

.action_menu button:hover {
  color: #888888;
}

.action_menu ul li {
  margin: 10px;
}

.action_menu i {
  margin-right: 7px;
}

.inline_action_menu {
  text-align: left;
  font-size: var(--font-sm);
  margin-bottom: 0px;
}

.inline_action_menu .dropdown-item {
  min-height: 10px;
}

.inline_action_menu button {
  color: white;
  font-size: 20px;
  line-height: 5px;
}

.inline_action_menu button:hover {
  color: #888888;
}

.inline_action_menu ul li {
  margin: 10px;
}

.inline_action_menu i {
  margin-right: 7px;
}

.card-item-description {
  background-color: #888888;
  padding: 10px;
  margin: 10px;
  border-radius: 3px;
  font-size: 14px;
  color: white;
}

.sponsor_container {
  display: flex;
  align-items: center;
}

.logo {
  flex: 0 1 auto;
  margin-right: 20px;
}

.sponsor_header {
  flex: 1 1 auto;
}

.game_overview_image {
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  padding-top: 56.25%;
  border: 5px solid white;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}

.game_status_message {
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  border-radius: 10px;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid white;
}

.game_status_full {
  background-color: #ff3901;
  color: white;
}

.game_status_over {
  color: #352e3c;
  background-color: #cbfafc;
}

.game_button {
  border-radius: 10px;
  border: 1px solid white;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  padding: 15px;
  font-weight: 700;
  font-size: 20px;
}

.game_status_notice {
  font-size: 24px;
  margin-top: 10px;
  color: #ff7503;
  text-align: center;
}

.game_location {
  text-align: center;
  font-size: 24px;
}

.client_image_png {
  display: block;
  width: 80%;
  margin: 20px auto 20px auto;
}

.client_image {
  display: block;
  width: 100%;
  margin: 20px auto 20px auto;
  border-radius: 15px;
  border: 4px solid white;
  box-shadow: var(--secondary-shadow);
}

.client_image_horizontal {
  width: 100%;
}

.client_image_vertical {
  max-width: 400px;
}

.client_video {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  width: 100%; /* Full width */
  margin: auto;
  border: 4px solid white;
  border-radius: 3px;
  background-color: black;
  box-shadow: var(--secondary-shadow);
}

.client_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.client_link {
  font-weight: 700;
}

.client_map {
  width: 100%;
  display: block;
  border: 4px solid white;
  border-radius: 3px;
  margin: 20px auto 20px auto;
  height: 400px;
  box-shadow: var(--secondary-shadow);
}

/* SHARED ADMIN */
.admin_nav_primary_container {
  margin: 30px 0px 20px 0px;
  font-size: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
}

.admin_nav_primary_container a {
  color: white;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.admin_nav_sub_contaner {
  margin: 20px 0px 20px 0px;
  font-size: 18px;
  padding-bottom: 20px;
  border-bottom: 5px solid white;
}

.admin_nav_sub_contaner a {
  color: white;
  margin-right: 10px;
}

/* BOOTSTRAP OVERRIDE */
.form-control:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 1);
}

.svg-spinner {
  animation: rotate 2s linear infinite;
  height: 50px;
  width: 50px;
  display: block;
  margin: 30px auto;
}

.path {
  stroke: white;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

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

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.status-text {
  text-align: center;
  font-size: var(--font-xl);
  margin-top: 20px;
  font-weight: 700;
}
#loading {
  display: none;
  color: white;
}

.custom-flex-wrap {
  flex-wrap: nowrap;
}

/* MEDIA QUERIES */
@media screen and (min-width: 651px) AND (max-width: 800px) {
  .inline_box {
    display: block;
    width: auto;
    margin: 20px;
  }

  .game_box {
    display: block;
    width: auto;
    min-height: 360px;
    margin: 20px;
  }

  .game_listing_box_container {
    display: block;
    width: auto;
    margin: 20px;
  }

  .sales_box {
    display: block;
    width: auto;
  }

  .game_box_headshots {
    width: 45px;
    height: 45px;
  }

  .terms_container {
    max-width: 95%;
  }

  .global_reward_coupon_box {
    padding: 15px;
  }

  .collect_idol_graphic_container {
    margin: 20px auto 20px auto;
    width: 100%;
    max-width: 500px;
  }

  .login_banner {
    padding-top: 30%;
  }
}

@media screen and (min-width: 0px) AND (max-width: 650px) {
  .game_box {
    display: block;
    width: auto;
    min-height: 250px;
    margin: 20px;
  }

  .game_listing_box_container {
    display: block;
    width: auto;
    margin: 20px;
  }

  .host_banner {
    padding-top: 51%;
  }

  .login_banner {
    padding-top: 51%;
  }
}

@media (max-width: 500px) {
  .custom-flex-wrap {
    flex-wrap: wrap;
  }
}
