:root {
   --fadeIn: 0.35s;
}

* {
   margin: 0;
   padding: 0;
}

body {
   user-select: none;
   overflow: hidden;
   font-family: "Heebo", sans-serif;
}

#debugEverything {
	position: absolute;
    visibility: visible;
    height: 100%;
    display: flex;
    width: 0;
    /* margin-bottom: 1px; */
    align-items: baseline;
    flex-direction: column;
}

#cover {
   background-color: #5d9a46;
   position: absolute;
   width: 100%;
   height: 100%;
   z-index: 100;

   animation-fill-mode: forwards;
}

.movement-notif-anim {
   font-size: 1.5rem;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -150%);
   opacity: 0;
   color: #ffffff;
   animation-name: fadeInOut;
   animation-duration: 0.5s;
   pointer-events: none;
}

@keyframes fadeInOut {
   0% {
      opacity: 0;
   }

   50% {
      opacity: 1;
   }

   100% {
      opacity: 0%;
   }
}

.fade-in {
   animation: fadeIn ease var(--fadeIn);
 }

 @keyframes fadeIn{
   from {opacity :1;}
   to {opacity :0;}
}

a:link {
	color: #0088ff;
}

a:visited {
	color: #8e52ff;
}

.stackButton {
	border: 1px solid #ffffff00;
	border-radius: 3px;
	
	color: #fff;
	background-color: #0184ff; /* stack color #0077cc */
	box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,0.4);
	
	font-weight: normal;
	line-height: 1.15384615;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
	
	font-family: Arial,"Helvetica Neue",Helvetica,sans-serif;
	font-size: 11px;
	
	display: inline-block;
	padding: .1em;
	margin: 2px;
}
  
.stackButton:hover {
	background-color: #0064bd;
}

.batmanUI {
	color: #ffffff;
	border-radius: 0.4em;
    border: 1px solid #191919;
	box-shadow: 0 5px 10px 5px rgba(0,0,0,0.2);
    background: linear-gradient(90deg, rgb(14 14 14 / 83%), rgb(0 0 0 / 88%));
	backdrop-filter: blur(6px);
}

.batmanUI_card {
	display: flex;
    position: relative;
    margin-bottom: 10px;
    border-top-left-radius: 0.1rem;
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
    border-bottom-left-radius: 0.1rem;
    overflow: auto;
    font-size: .84rem;
    background: #448aff14;
    border-right: 1px solid #448aff59;
    border-top: 1px solid #448aff59;
    border-bottom: 1px solid #448aff59;
    color: rgb(255 255 255 / 87%);
    font-feature-settings: "kern","liga";
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%), 0 3px 1px -2px rgb(0 0 0 / 20%);
}

.batmanUI_header {
	font-size: 18px;
    text-shadow: 0 1px 0 black;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,1);
}

.batmanUI_content {
	border-top: 1px solid #292929;
	padding: 10px 10px 0 10px;
}

.batmanUI_card_leftBorder {
	width: 3px;
    background: #2e6ad0;
    border-top-left-radius: 0.1rem;
    border-bottom-left-radius: 0.1rem;
}

.batmanUI_card_titleAndContent {
	width: 100%;
}

.batmanUI_card_title {
	border-bottom: 0.05rem solid rgba(221, 77, 29, 0.1);
    border-bottom: .05rem solid rgba(68,138,255,.1);
    background-color: rgba(68,138,255,.1);
    font-weight: 700;
    font-size: 1.0rem;
    word-wrap: break-word;
	padding: 5px 10px;
}

.batmanUI_card_content {
	display: flex;
	padding: 8px 10px;
	align-items: center;
}
.batmanUI_card_content_description {
	width: calc(100% - 30px);
}

.batmanUI_card_toggle {
	font-family: Material Icons;
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    /* padding: 8px; */
    height: 22px;
    width: 22px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    position: absolute;
    right: 11px;
    transition: 0.25s;
    cursor: pointer;
}

.batmanUI_card_toggle_unSelected {
    background: #4cc72e00;
}

.batmanUI_card_toggle_selected {
    background: #4dc72e;
}

.batmanUI_card_toggle:hover {
    background: #4dc72e62;
}