:root {
    --blue: #3399FF;
    --lightblue: #6DA6DB;
    --lightbluealt: #80A5B4;
    --lightgray: #CCC;
    --verydarkblue: #000F34;
    --verydarkbluetrans: rgba(0,15,52,0.8);
    --transblack: rgba(0,0,0,0.7);
}
body {
    color: #EEE;
    font-family: Arial, sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
    background: url('/images/HarmonyBack.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
@media only screen and (max-width: 800px) {
    body {
        background: url('/images/HarmonyBackMobile.jpg');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
    }
}
:focus{outline: none;}
pre {
    background: white;
    color: black;
}
form {
	margin: 0;
	padding: 0;
    line-height: 1.5;
}
label, input[type="checkbox"] {
    cursor: pointer;
}
.spaced {
    line-height: 1.5;
}
.clear {
	clear: both;
}
.copy, .pointer, .link, .collapsable {
    cursor: pointer;
}
a, .highlight, .link {
	color: var(--lightblue);
}
.highlight2 {
	color: #18c7b7;
}
a:hover, .link:hover {
	color: var(--lightgray);
}
.error a {
    color: #f9ff00;
}
.error a:hover {
    color: white;
}
.low-perfect {
    display: none;
}
h1,h2,h3,h4 {
    margin: 0px;
    padding: 0px;
}
h4 {
    font-size: 16px;
    color: var(--lightbluealt);
}
p {
    margin: 10px 0;
}
table {
    border-spacing: 0px;
    border-collapse: separate;
    border: 1px solid rgba(0,67,92,0.4);
}
td, th {
    vertical-align: top;
    padding: 10px;
}
.center {
    text-align: center;
}
.right {
    float: right;
}
.left {
    float: left;
}
.inputdiv {
    position: relative;
    display: inline-block;
}

.radio-group input[type=radio], .radio-group input[type=checkbox] {
    position: absolute;
    visibility: hidden;
    display: none;
}
.radio-group label {
    color: #AAA;
    display: inline-block;
    cursor: pointer;
    padding: 3px 7px;
}
.radio-group input[type=radio]:checked + label, .radio-group input[type=checkbox]:checked + label {
    color: #FFF;
    background: var(--blue);
}
.radio-div {
    vertical-align: middle;
}
.radio-group {
    border: solid 1px var(--blue);
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    line-height: 1;
    vertical-align: middle;
    margin-left: 10px;
}
input[type=text], input[type=number] {
    color: #FFF;
    box-sizing: border-box;
    letter-spacing: 1px;
    line-height: 0px;
    border: 0;
    padding: 7px 0;
    border-bottom: 1px solid #ccc;
    background-color: rgba(0,0,0,0);
}
textarea {
    line-height: 1.5;
}
.modal-content input[type=text], .modal-content input[type=number] {
    color: #000 !important;
}
input[type=text] ~ .focus-border, input[type=number] ~ .focus-border{position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--blue); transition: 0.4s;}
input[type=text]:focus ~ .focus-border, input[type=number]:focus ~ .focus-border{width: 100%; transition: 0.4s;}

input[type=submit], input[type=button] {
	background:linear-gradient(to bottom, #79bbff 5%, #378de5 100%);
	background-color:#79bbff;
	border-radius:20px;
	border:1px solid #337bc4;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:13px;
	font-weight:bold;
	text-decoration:none;
	text-shadow:0px 1px 0px #528ecc;
}
input[type=submit]:hover, input[type=button]:hover {
	background:linear-gradient(to bottom, #378de5 5%, #79bbff 100%);
	background-color:#378de5;
}
input[type=submit]:active, input[type=button]:active {
	position:relative;
	top:1px;
}
.pokemonSelectInput {
    display: none;
}

.navBar {
    background-color: var(--verydarkblue);
}
.mainHeaderWrapper {
    position: relative;
    background: var(--verydarkblue);
}
.mainHeaderLogo img {
    height: 80px;
}

.navbar-brand {
    display: none;
}
.navbar-brand img {
    max-width: 150px;
}
@media screen and (max-width:767px) {
    .mainHeaderLogo {
        display: none;
    }
    .navbar-brand {
        display: block;
    }
}



.mainHeader {
    margin: 0 auto;
    /*width: 1000px;*/
}
.mainHeader::after {
    bottom: 0;
    -webkit-animation: nv 5s linear infinite;
    animation: nv 5s linear infinite;
    content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background-image: linear-gradient(to right, #000 40%, #FFF 100%);
}
@keyframes nv {
  from {
    background-position: 0vw 0; }

  to {
    background-position: 100vw 0; }
}
.contentWrapper {
    position: relative;
    margin: 0px auto;
    padding: 20px 10px;
    border-radius: 0 0 10px 10px;
}
.contentInner {
    font-family: Arial, sans-serif;
    font-size: 15px;
    margin: 0px;
    padding: 20px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border: 1px solid rgba(32, 32, 32, 1);
}
.sort-placeholder {
    height: 53px;
    margin-bottom: 30px;
    border: 2px dashed #999;
    border-radius: 10px;
}
.tabbed {
    margin-left: 20px;
}
.statBlock {
    margin-left: 20px;
    margin: 10px 0 10px 20px;
}
.darkdivBase {
    margin-bottom: 30px;
    background-color: var(--transblack);
    border-radius: 10px;
    padding: 15px 20px;
}
.arrow_up {
    transform: rotate(270deg);
    transition: transform 0.2s;
    display: inline-block;
}
.arrow_down {
    transform: rotate(90deg);
    transition: transform 0.2s;
    display: inline-block;
}
.darkdiv {
    margin-bottom: 30px;
    background-color: var(--transblack);
    border-radius: 10px;
}
.darkDivHead {
    padding: 15px;
    background-color: var(--verydarkbluetrans);
    border-radius: 10px;
    position: relative;
}
.sortBlock .darkDivHead {
    cursor: grabbing;
}
.darkDivHead img {
    height: 30px;
}
.darkDivBody {
    padding: 15px 20px;
}
.darkdiv h3 {
    font-weight: bold;
    display: inline-block;
    font-size: 20px;
    color: var(--lightblue);
    text-shadow:
       3px 3px 0 #000,
       1px 1px 0 #000;
    
}
@keyframes moveGradient {
  50% {
    background-position: 100% 50%;
  }
}
.appUpdate {
    padding: 20px 10px;
    background-color: rgba(0,32,0,0.6);
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}
.enabled {
    color: #4BB561;
}
.disabled {
    color: #f44336;
}
.error {
    color: white;
    background-color: #f44336;
    padding: 5px;
    text-align: center;
    font-weight: bold;
}
.success {
    color: white;
    background-color: #298D41;
    padding: 5px;
    text-align: center;
    font-weight: bold;
}
.friendQR {
    position: relative;
    padding: 10px;
    float: left;
}
.friendEdit {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
}
.oldNest {
    opacity: 0.2;
}
.clear {
    clear: both;
}
.responsive_img {
    height: auto;
    width: auto;
	max-width: 100%;
}
.dropdown-menu {
    color: #FFF;
    background: var(--verydarkblue);
}
.dropdown-item {
    color: #FFF;
}
.nav-link {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
    text-transform:uppercase;
    color: #FFF;
    text-shadow:
       3px 3px 0 #000,
     -1px -1px 0 #000,
      1px -1px 0 #000,
      -1px 1px 0 #000,
       1px 1px 0 #000;
}
.navbar-dark .navbar-nav .nav-link {
    color: #FFF;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--lightblue);
}
.headerLinks {
    position: absolute;
    top: 0px;
    right: 10px;
    height: 52px;
}
.headerLinks img {
    height: 30px;
    margin: 12px 7px 0 0;
}
.filter-links {
    display: none;
    position: absolute;
    top: 53px;
    right: 0px;
    background: var(--verydarkblue);
    border: 1px solid #444;
    text-align: right;
    padding: 20px 10px;
    z-index: 20;
    width: 195px;
}
.friend-nav {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}
.friend-nav a {
    text-decoration: none;
}


.formDiv {
    margin: 0 0 10px;
}
.free {
    background-color: rgba(0,70,0,0.7) !important;
}
.bad {
    background-color: rgba(70,0,0,0.7) !important;
}
.timeWrap {
    float: left;
    width: 33%;
}
@media only screen and (max-width: 1050px) {
    .timeWrap {
        float: left;
        width: 50%;
    }
}
@media only screen and (max-width: 750px) {
    .timeWrap {
        float: none;
        width: 100%;
    }
}

.gender_icon {
    width: 15px;
    height: 15px;
    vertical-align: top;
}
.my_shinies {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 10px;
}
@media only screen and (max-width: 900px) {
    .my_shinies {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media only screen and (max-width: 700px) {
    .my_shinies {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 500px) {
    .my_shinies {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 320px) {
    .my_shinies {
        grid-template-columns: repeat(1, 1fr);
    }
}
.my_shinies .pokeCard {
    height: auto;
    min-height: 100px;
    color: #FFF;
    font-size: 15px;
    box-shadow: 2px 2px 5px #0051e6;
}
.my_shinies .pokeCard.deleted {
    box-shadow: 2px 2px 5px #E60010;
    display: none;
}
.my_shinies:after {
    content: "";
    display: table;
    clear: both;
}


.prize-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* Adjust alignment */
}
.prize {
    flex: 1 1 200px; /* Flex-grow, flex-shrink, and min-width */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid #6f6f6f;
    text-align: center;
}
.prize.skip {
    background: #2b2b2b;
}
.prize.priority {
    background: #1b3b13;
}
.raffleCard.active {
    box-shadow: 4px 4px 10px #06e600;
}
.raffleCard .title {
    text-align: center;
    font-size: 18px;
    color: #18c7b7;
    margin-bottom: 10px;
}
.raffleCard .details {
    line-height: 25px;
}
.raffleCard .details .smaller {
    font-size: 12px;
}
.raffleCard {
	background-color: rgba(0,0,0,0.7);
    color: var(--lightgray);
    line-height: 15px;
	padding: 20px;
	margin: 10px 10px 20px;
    border-radius: 20px;
    position: relative;
    box-shadow: 4px 4px 10px #0051E6;
    border: 1px solid black;
    width: auto;
}
.raffle_wrapper {
    display: flex;
    gap: 20px;
}
.raffle_img {
    width: 100px;
}
.raffle_img img {
    width: 100%;
}
.timeCard {
    display: inline-block;
	background-color: rgba(0,0,0,0.7);
    color: var(--lightgray);
    line-height: 13px;
	padding: 20px;
	margin: 10px;
    border-radius: 20px;
    position: relative;
    box-shadow: 4px 4px 10px #0051E6;
    border: 1px solid black;
    cursor: pointer;
    width: auto;
}
.pokeCard {
	float: left;
    line-height: 1.2em;
	background-color: rgba(0,0,0,0.7);
	text-align: center;
    color: #C69A00;
	padding: 5px 10px;
	margin: 10px;
    border-radius: 20px;
    height: 165px;
    font-size: 19px;
    position: relative;
    box-shadow: 4px 4px 10px #0051E6;
    border: 1px solid black;
    cursor: pointer;
    min-width: 115px;
}
.pokeCard hr {
    border-color: #55A;
}
.pokeCard .percent {
    color: #FFF;
    font-weight: bold;
}
.pokeCard .name {
    font-size: 12px;
    color: #FFF;
}
.pokeCard .large-name {
    font-size: 15px;
    color: #FFF;
}
.pokeCard .id {
    font-size: 10px;
    color: #AAA;
    margin-top: -5px;
}
.raffleCard .mf,
.timeCard .mf,
.pokeCard .mf {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
}
.raffleCard .leftlink,
.timeCard .leftlink,
.pokeCard .leftlink {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
}
.raffleCard .rightlink,
.timeCard .rightlink,
.pokeCard .rightlink {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
}
.pokeCard .source {
    position: absolute;
    top: -5px;
    left: -10px;
    width: 30px;
    height: 30px;
}
.pokeCard .good {
    position: absolute;
    cursor: pointer;
    top: -12px;
    left: -5px;
    width: 30px;
    height: 30px;
}
.pokeCard .night {
    position: absolute;
    top: -6;
    left: -6;
    width: 30px;
    height: 30px;
}
.pokeCard .day {
    position: absolute;
    top: -6;
    left: -6;
    width: 30px;
    height: 30px;
}
.pokeCard .miles {
    font-size: 12px;
}
.pokeCard .expire {
    font-size: 13px;
}
.pokeCard .expire-div {
    font-size: 18px;
    color: #F00;
}
.pokeCard .expire-div b {
    color: #FFF;
}
.pokeCard:hover {
	background-color: rgba(86,67,0,0.4);
}
.pokeCard b {
	color: #FFF;
}
.pokeCard a {
	text-decoration: none;
}
.pokeCard .cp {
    font-size: 22px;
    color: #E6B300;
}
.pokeCard .cpBad {
    color: #E61000;
}
.pokeCard .cpEh {
    color: #7700E6;
}
.pokeCard .cpMid {
    color: #E67C00;
}
.pokeCard .cpOk {
    color: #E3E600;
}
.pokeCard .cpSuper {
    font-weight: bold;
    color: #00E616;
}
.pokeCard .verified {
    color: #00E616;
}
.pokeCard .deakuser {
    padding-bottom: 40px;
    border-bottom: 1px solid white;
}
.pokeCard .deakpass {
    padding: 40px 0 20px;
    
}

.timeday {
	box-shadow: 4px 4px 10px yellow;
}
.timeday .highlight {
    color: #FFCB05;
}
.timenight {
	box-shadow: 4px 4px 10px darkblue;
}
.great {
    box-shadow: 4px 4px 10px #E67200;
}
.p100 {
    box-shadow: 4px 4px 10px #00E616;
}
.p0 {
    box-shadow: 4px 4px 10px #E60010;
}
.raidalert {
    background-color: rgba(24,109,7,0.3);
}
.mystic {
	box-shadow: 4px 4px 10px blue;
}
.valor {
	box-shadow: 4px 4px 10px red;
}
.instinct {
	box-shadow: 4px 4px 10px yellow;
}
tr:nth-child(even) {
	background-color: rgba(0,67,92,0.4);
}
tr:nth-child(odd) {
	background-color: rgba(0,0,0,0.8);
}
.unown {
    background: white;
}

.collectionDiv {
    width: 100%;
    margin-bottom: 20px;
}
.collectionNotes {
    width: 100%;
    line-height: 20px;
}

@media screen and (max-width:600px) {
    .mainHeaderLogo img {
        height: 50px;
    }
	ul.topnav li:not(:first-child) {display: none;}
	ul.topnav li.icon {
		float: right;
	}

    ul.topnav.responsive {position: relative;}
    ul.topnav.responsive li.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    ul.topnav.responsive li {
        float: none;
        display: inline;
    }
    ul.topnav.responsive li a {
        display: block;
        text-align: left;
    }
}

#calendar-full {
    display: block;
}
#calendar-mobile {
    display: none;
}

@media screen and (max-width:600px) {
    #calendar-full {
        display: none;
    }
    #calendar-mobile {
        display: block;
    }
}


#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #34AA4D;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
}

/* Show the snackbar when clicking on a button (class added with */
#snackbar.show, #snackbarFail.show {
    visibility: visible;

/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#snackbarFail {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #A33;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}


/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    
    box-shadow: 4px 4px 10px #0051E6;
    border: 1px solid black;
    border-radius: 20px;
    color: #000;
}
.modal-content a {
    color: var(--blue);
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* POKEBALL Loader */
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
.pokeball-ajax-loading {
    width: 20px;
    height: 20px;
    animation: rotation 1s infinite linear;
    display: inline-block;
}
.pokeball-ajax-done {
    width: 20px;
    height: 20px;
    display: inline-block;
}
.pokeball-ajax {
    width: 20px;
    height: 20px;
    display: none;
}

.raid_groups th {
    background-color: white;
    color: black;
    text-align: center;
    padding: 5px;
}
