@import url("https://fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Narrow");

.tb-options-row {
  display: flex;
  flex-flow: row wrap;
}
.tb-options-label {
  flex: 2;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.6);
}
.tb-options-value {
  flex: 1;
  text-align: left;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.6);
}
.tb-options-explanation {
  flex: 0 1 100%;
  font-size: 80%;
  line-height: 1.2em;
  margin: 0.2em 2em;
}

.tb-pkmn-form,
.tb-pkmn-ability,
.tb-pkmn-item {
  display: none;
}
.tb-pkmn-form.forms-shown,
.tb-pkmn-ability.abilities-shown,
.tb-pkmn-item.items-shown {
  display: inline;
}



.tb-team-input {
  padding-left: 0;
  border: 1px var(--color-border) solid;
  border-radius: 8px;
}
.tb-team-input > li {
  list-style: none;
  padding: 0.35rem;
  display: flex;
  flex-flow: row wrap;
}
.tb-team-input > li:first-child {
  border-radius: 8px 8px 0 0;
}
.tb-team-input > li:last-child {
  border-radius: 0 0 8px 8px;
}
.tb-team-input > li .tb-pkmn-label {
  white-space: nowrap;
  flex: 0 1 50px;
  padding-right: 5px;
  font-weight: bold;
  padding-top: 2px;
}
.tb-team-input > li .tb-pkmn-name {
  flex: 1 1 150px;
  max-width: 150px;
  padding: 4px;
}
.tb-team-input > li .tb-pkmn-options {
  flex: 1 auto;
/*  display: flex;
  flex-flow: row wrap;*/
}
.tb-team-input > li .tb-pkmn-options select {
  flex: 0 1 150px;
  margin: 4px 4px 0 4px;
  padding: 4px;
}
.tb-team-input > li:nth-child(odd) {
  background: var(--color-bg-row-1);
}
.tb-team-input > li:nth-child(even) {
  background: var(--color-bg-row-2);
}
.tb-team-input .tb-pkmn-custom-types {
  flex: 1 300px;
  text-align: right;
  display: none;
}
.tb-team-input .tb-pkmn-custom-types.custom-types-shown {
  display: block;
}
.tb-team-input .tb-pkmn-custom-types .tb-custom-types-label {
  display: inline-block;
  font-size: 80%;
  margin-left: 1.5rem;
}


.tb-team-input .tb-pkmn-moves {
  display: none;
  width: 100%;
  padding-top: 0.25rem;
}

.tb-team-input .tb-pkmn-moves .tb-pkmn-move-input {
  flex: 1 1 23%;
  box-sizing: border-box;
  width: 23%;
  margin: 0.1rem 0.25rem;
}
@media screen and (max-width: 660px) {
  .tb-team-input .tb-pkmn-moves .tb-pkmn-move-input {
    flex: 1 0 45%;
    box-sizing: border-box;
    width: 45%;
  }
}

.tb-team-input .tb-pkmn-moves.pkmn-moves-shown {
  display: flex;
  flex-flow: row wrap;
  align-content: space-around;
}
.tb-enemy-team {
  display: none;
}
.tb-enemy-team.enemy-team-shown {
  display: block;
}
.team-builder-coverage-container {
  display: none;
}
.team-builder-coverage-container.team-builder-coverage-shown {
  display: block;
}

.team-builder-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 13px;
}/*
.team-builder-table thead tr:nth-child(2) th:first-child,
.team-builder-table thead tr:nth-child(2) td:first-child {
  border-top-left-radius: 10px;
}
.team-builder-table thead tr:nth-child(2) th:last-child,
.team-builder-table thead tr:nth-child(2) td:last-child {
  border-top-right-radius: 10px;
}*/
.team-builder-table tbody tr:last-child th:first-child,
.team-builder-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.team-builder-table tbody tr:last-child th:last-child,
.team-builder-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.team-builder-table tbody tr:last-child {
  background: inherit;
}
.team-builder-table tbody tr:last-child:nth-child(even) td:nth-child(n+2):nth-child(-n+7) {
  background: var(--color-bg-row-2);
}
.team-builder-table tbody tr:last-child:nth-child(odd) td:nth-child(n+2):nth-child(-n+7) {
  background: var(--color-bg-row-1);
}
.team-builder-table .tb-row {
  padding: 0.5rem;
}
.team-builder-table .tb-row td {
  text-align: center;
}

.tb-type-header {
  width: 77px;
}
@media only screen and (max-width: 410px) {
  .tb-type-header {
    width: 47px;
    font-size: 90%;
  }
}

.tb-pokemon {
  padding: 0.25em 0;
  min-width: 40px;
}
.tb-pokemon-name {
  font-family: "PT Sans Narrow", "Arial Narrow", sans-serif;
  font-size: 11px;
  font-weight: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.2em;
  margin-top: -0.5rem;
}

.slot-pokemon {
  margin: 0 auto;
}
.slot-pokemon img {
  width: 100%;
  height: 52px;
  object-fit: none;
  object-position: bottom center;
  image-rendering: crisp-edges;
}

.tb-weak-header,
.tb-resist-header,
.tb-super-effective-header,
.tb-not-very-effective-header,
.add-pokemon div {
  font-family: "PT Sans Narrow", "Arial Narrow", sans-serif;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.25em;
  vertical-align: middle;
}

.add-pokemon {
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .tb-weak-header,
.tb-resist-header,
.tb-super-effective-header,
.tb-not-very-effective-header {
    max-width: 30px;
    width: 30px;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

@media only screen and (min-width: 600px) {
  .tb-pokemon-name,
.tb-weak-header,
.tb-resist-header,
.tb-super-effective-header,
.tb-not-very-effective-header {
    font-size: 14px;
  }
}
@media only screen and (min-width: 900px) {
  .tb-pokemon-name,
.tb-weak-header,
.tb-resist-header,
.tb-super-effective-header,
.tb-not-very-effective-header {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1000px) {
  .tb-pokemon-name,
.tb-weak-header,
.tb-resist-header,
.tb-super-effective-header,
.tb-not-very-effective-header {
    font-size: 14px;
  }
}

.tb-row {
  min-height: 24px;
}
.tb-row td:nth-child(n+3):nth-child(-n+7) {
  border-left: 1px rgba(0, 0, 0, 0.2) dotted;
}

.tb-type-icon {
  display: block;
  font-family: "PT Sans Condensed", "Roboto Condensed", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3), 1px -1px 1px rgba(0, 0, 0, 0.3), -1px 1px 0 rgba(0, 0, 0, 0.5), 1px 1px 1px rgba(0, 0, 0, 0.5), 0 1px 1px rgba(0, 0, 0, 0.9), 0 2px 1px rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 6px;
  box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.6);
  border-top: 1px rgba(255, 255, 255, 0.5) solid;
  border-bottom: 4px rgba(0, 0, 0, 0.5) solid;
  margin: 2px;
  font-weight: normal;
  text-transform: uppercase;
  min-width: 65px;
  cursor: default;
}
@media only screen and (max-width: 410px) {
  .tb-type-icon {
    letter-spacing: 0px;
    min-width: 37px;
    max-width: 70px;
  }
}

.tb-row-normal .tb-type-icon {
  background: #ded4bf;
}

.tb-row-fire .tb-type-icon {
  background: #d83737;
}

.tb-row-water .tb-type-icon {
  background: #27a2dc;
}

.tb-row-electric .tb-type-icon {
  background: #dacc25;
}

.tb-row-grass .tb-type-icon {
  background: #47bd39;
}

.tb-row-ice .tb-type-icon {
  background: #9df3ef;
}

.tb-row-fighting .tb-type-icon {
  background: #c1705e;
}

.tb-row-poison .tb-type-icon {
  background: #7b58c1;
}

.tb-row-ground .tb-type-icon {
  background: #ca9d59;
}

.tb-row-flying .tb-type-icon {
  background: #75acda;
}

.tb-row-psychic .tb-type-icon {
  background: #d458ca;
}

.tb-row-bug .tb-type-icon {
  background: #b1b750;
}

.tb-row-rock .tb-type-icon {
  background: #885b35;
}

.tb-row-ghost .tb-type-icon {
  background: #5a557d;
}

.tb-row-dragon .tb-type-icon {
  background: #4e52de;
}

.tb-row-dark .tb-type-icon {
  background: #484746;
}

.tb-row-steel .tb-type-icon {
  background: #a7b1b3;
}

.tb-row-fairy .tb-type-icon {
  background: #e4abe0;
}

.wr-400,
.wr-200,
.wr-50,
.wr-25,
.wr-0,
.wr-500,
.wr-300,
.wr-250,
.wr-150 {
  font-family: "Roboto Black", "Arial Black", sans-serif;
  vertical-align: middle;
  line-height: 24px;
  width: 24px;
}

.wr-400,
.wr-500,
.wr-300 {
  font-size: 16px;
  font-weight: bold;
  color: white;
  background: red;
  display: inline-block;
  border-radius: 8px;
}

.wr-200,
.wr-250,
.wr-150 {
  color: red;
  font-size: 16px;
}

.wr-50 {
  color: green;
  font-size: 20px;
}

body.dark-mode .wr-50 {
  color: #27ca27;
}

.wr-25 {
  font-size: 20px;
  font-weight: bold;
  color: white;
  background: green;
  display: inline-block;
  border-radius: 8px;
}

.wr-0 {
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-weight: normal;
  font-size: 80%;
  color: white;
  background: #787878;
  padding: 0 2px;
  border-radius: 8px;
  width: auto;
  display: inline-block;
}

.numberless {
  font-size: 20px;
  font-family: sans-serif;
  font-weight: normal;
}

.wr-200.numberless,
.wr-150.numberless,
.wr-250.numberless {
  font-size: 16px;
  color: red;
  font-weight: bold;
}

.wr-400.numberless,
.wr-300.numberless,
.wr-500.numberless {
  font-size: 24px;
  background: red;
  color: white;
  display: inline-block;
  width: 24px;
  border-radius: 8px;
}

.wr-0.numberless {
  font-size: 24px;
  background: #787878;
  color: white;
  display: inline-block;
  width: 24px;
  padding: 0;
  border-radius: 8px;
}

.tb-total-weak,
.tb-total-not-very-effective {
  border-left: 1px solid rgba(0, 0, 0, 0.4);
}

.tb-total-resist,
.tb-total-super-effective {
  border-left: 1px dotted rgba(0, 0, 0, 0.25);
}

.tb-total-weak {
  background: rgba(255, 0, 0, 0.1);
}
.tb-total-weak.low-severity {
  background: rgba(255, 0, 0, 0.2);
}
.tb-total-weak.medium-severity {
  background: rgba(255, 20, 20, 0.4);
  font-weight: bold;
}
.tb-total-weak.high-severity {
  background: rgba(220, 0, 0, 0.8);
  font-weight: bold;
  color: yellow;
  font-size: 110%;
}
.tb-total-resist,
.tb-total-super-effective {
  background: rgba(0, 255, 0, 0.1);
}
.tb-total-resist.low-severity,
.tb-total-super-effective.low-severity {
  background: rgba(0, 255, 0, 0.2);
}
.tb-total-resist.medium-severity,
.tb-total-super-effective.medium-severity {
  background: rgba(50, 200, 50, 0.4);
  font-weight: bold;
}
.tb-total-resist.high-severity,
.tb-total-super-effective.high-severity {
  background: rgba(0, 140, 0, 0.6);
  font-weight: bold;
  color: white;
  font-size: 110%;
}
.tb-total-not-very-effective {
  background: rgba(80, 80, 80, 0.1);
}
.tb-total-not-very-effective.low-severity {
  background: rgba(80, 80, 80, 0.2);
}
.tb-total-not-very-effective.medium-severity {
  background: rgba(80, 80, 80, 0.4);
  font-weight: bold;
}
.tb-total-not-very-effective.high-severity {
  background: rgba(150, 80, 80, 0.8);
  font-weight: bold;
  color: white;
  font-size: 110%;
}

@media only screen and (max-width: 410px) {
  .team-builder-table thead th:nth-child(n+8):nth-child(-n+9),
.team-builder-table tbody td:nth-child(n+8):nth-child(-n+9) {
    display: none;
  }

/*  thead tr:first-child th:nth-child(n+7),
thead tr:first-child td:nth-child(n+7) {
    border-top-right-radius: 10px;
  }*/

  /* tbody tr:last-child th:nth-child(n+7),
tbody tr:last-child td:nth-child(n+7) {
    border-bottom-right-radius: 10px;
  } */
}
@media (max-width: 500px) {
  #ajax_output {
    display: none;
  }
}

.team-builder-container {
  padding: 0;
}

.team-builder-container-header {
  background: var(--color-bg-header);
  color: var(--color-text-header);
  border-radius: 11px 11px 0 0;
  text-align: center;
  font-weight: bold;
  font-size: 110%;
}

.stickproof {
  display: none;
}

@media only screen and (max-width: 900px) {
  .team-builder-table thead tr:nth-child(2) th:first-child,
.team-builder-table thead tr:nth-child(2) td:first-child {
    border-top-left-radius: 0;
  }
  .team-builder-table thead tr:nth-child(2) th:last-child,
.team-builder-table thead tr:nth-child(2) td:last-child {
    border-top-right-radius: 0;
  }/*
  .team-builder-table thead tr:first-child th:first-child,
.team-builder-table thead tr:first-child td:first-child {
    border-top-left-radius: 10px;
  }
  .team-builder-table thead tr:first-child th:last-child,
.team-builder-table thead tr:first-child td:last-child {
    border-top-right-radius: 10px;
  }*/

  .stickproof {
    display: table-row;
    height: 1px;
    /* margin-top: -10px; */
  }

  .team-builder-table thead th {
    position: -webkit-sticky;
    position: sticky;
    /* top: 56px; */
    top: 90px;
  }
}

@media only screen and (max-width: 599px) {
  /* Get rid of some of the border radii on mobile views */
  .team-builder-container-header,
  .team-builder-table tbody tr:last-child th:first-child,
  .team-builder-table tbody tr:last-child td:first-child,
  .team-builder-table tbody tr:last-child th:nth-child(n+7),
  .team-builder-table tbody tr:last-child td:nth-child(n+7),
  .team-builder-table tbody tr:last-child th:last-child,
  .team-builder-table tbody tr:last-child td:last-child {
    border-radius: 0;
  }
}
@media only screen and (max-height: 520px) and (orientation: landscape) {
  .team-builder-table thead th {
    top: 56px;
  }
}

/* TB stuff */
.tb-modal .modal-inner {
  padding: 0;
  color: var(--color-text-header);
  background: var(--color-bg-header);
}

.tb-modal .tb-modal-header {
  display: flex;
  flex-flow: row nowrap;
  border-bottom: 1px white solid;
  background: var(--color-bg-header-dark);
  border-radius: 8px 8px 0 0;
  padding: 0px;
}

.tb-modal .tb-modal-close {
  flex: 0 0 30px;
  padding: 5px;
  border-right: 1px var(--color-border-header) dotted;
  text-align: center;
  background: rgba(255, 0, 0, 0.4);
  border-radius: 8px 0 0 0;
  cursor: pointer;
}

.tb-modal .tb-modal-header-pokemon {
  flex: 1 1;
  display: flex;
  flex-flow: row nowrap;
  padding: 5px;
}

.tb-modal .tb-modal-header-pokemon .tb-modal-pokemon-slot {
  flex: 1;
  text-align: center;
}

.tb-modal-option-row {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 0.45rem;
  padding: 2px 5px;
}

.tb-modal-option-label {
  flex: 1 1;
}

.tb-modal-option-value {
  flex: 1 1 100px;
}

.tb-modal-option-explanation {
  font-family: var(--font-family-condensed);
  flex: 0 1 100%;
  padding: 0 10px;
  font-size: 80%;
  line-height: 1.0rem;
}

.tb-modal-option-value input {
  border-radius: 8px;
  border: none;
  padding: 2px;
  padding-left: 8px;
  width: 90%;
  max-width: 20em;
}
.modal-inner { /* Not standard across all modals */
  height: 92%;
  max-height: 550px;
}
.tb-modal-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: var(--color-bg-header-dark);
  border-radius: 0 0 8px 8px;
  border-top: 1px var(--color-border-header) solid;
}
.tb-modal-footer button {
  font-size: 110%;
  cursor: pointer;
}
.tb-modal .tb-modal-header-pokemon {
  padding: 0;
  margin: 0;
}
/*.tb-modal-pokemon-slot,
.slot-pokemon {
  border-radius: 10px 10px 0 0 / 20px 20px 0 0;
  padding: 2px;
  cursor: pointer;
}
.tb-modal-pokemon-slot.active-slot {
  background: var(--color-bg-header);
}
.tb-modal-pokemon-slot:hover,
.slot-pokemon:hover {
  background: var(--color-bg-page);
}*/

.tb-pkmn-gen-8-availability {
  /* display: flex; */
  display: none; /* This gets set to display: flex in JavaScript */
  visibility: hidden;
  flex-flow: row wrap;
  width: 8rem;
  cursor: help;
}
.tb-pkmn-gen-8-availability .tb-in-swsh,
.tb-pkmn-gen-8-availability .tb-in-bdsp {
  flex: 1 1 auto;
  font-weight: normal;
  font-size: 90%;
  line-height: 90%;
}
.tb-pkmn-gen-8-availability .tb-in-swsh:before,
.tb-pkmn-gen-8-availability .tb-in-bdsp:before {
  content: "\2705  ";
}
.no-swsh .tb-pkmn-gen-8-availability .tb-in-swsh:before,
.no-bdsp .tb-pkmn-gen-8-availability .tb-in-bdsp:before {
  content: "\274C  ";
}
.no-swsh .tb-pkmn-gen-8-availability .tb-in-swsh,
.no-bdsp .tb-pkmn-gen-8-availability .tb-in-bdsp {
  color: var(--color-text-danger);
}

.no-gen-8 div,
.no-swsh div,
.no-bdsp div {
  padding: 0;
  margin: 0;
  line-height: 1rem;
}
.no-swsh span,
.no-bdsp span {
  color: var(--color-text-danger);
}
.no-gen-8 span {
  color: red;
}


@media screen and (max-width: 350px) {
  #tb-modal-close {
    display: none;
  }
  .tb-modal-pokemon-slot {
    max-width: 48px;
  }
}

/* Hide certain things in Gen 9 or not */
body.gen-9 .not-gen-9 {
  display: none !important;
}
body.gen-9 .only-gen-9 {
  display: initial !important;
}
body:not(.gen-9) .not-gen-9 {
  display: initial !important;
}
body:not(.gen-9) .only-gen-9 {
  display: none !important;
}


/* ========================================================================= *\
|>| SECTION: Language Selector
|=|-------------------------------------------------------------------------|=|
    This contains all of the language selector CSS, for the choices of which
    language you'd like to view the Team Builder in.
\* _________________________________________________________________________ */

.language-selector {
	display: flex;
	flex-flow: row wrap;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
  align-items: center;
  justify-content: space-around;
}
.language-selector li {
	display: block;
	flex: 0 1 auto;
	text-align: center;
}
.language-selector li a,
.language-selector li a:hover,
.language-selector li a:active,
.language-selector li a:visited,
.language-selector li button {
	margin: 0.1rem;
	display: block;
	font-size: 90%;
	font-family: var(--font-family-condensed);
	border-radius: 15px;
	border: 1px solid var(--color-border);
	background: var(--color-bg-header);
	padding: 0.25rem 0.5rem;
	color: var(--color-text-header);
  box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.4);
}
.language-selector li button {
  width: 95%;
  margin: 0.1rem auto;
}
.language-selector li a:hover,
.language-selector li button:hover {
	background: var(--color-bg-page);
  cursor: pointer;
}
/* .language-selector li.ui-support-basic a:before,
.language-selector li.ui-support-partial a:before,
.language-selector li.ui-support-full a:before {
	content: '\2B24  ';
	opacity: 0.75;
	text-shadow: 1px 1px 0 var(--color-text-header),
		-1px -1px 0 var(--color-text-header),
		1px -1px 0 var(--color-text-header),
		-1px 1px 0 var(--color-text-header)
}
.language-selector li.ui-support-basic a:before {
	color: red;
}
.language-selector li.ui-support-partial a:before {
	color: yellow;
}
.language-selector li.ui-support-full a:before {
	color: lime;
} */

.language-selector li.lang-active a,
.language-selector li.lang-active button,
.language-selector li button.lang-active,
.language-selector li button:active {
  background: var(--color-bg-row-1);
  color: var(--color-text);
}

/* ========================================================================= *\
|>| SECTION: Save / Load / Share Team Codes
|=|-------------------------------------------------------------------------|=|
    Everything here handles the saving, loading, and sharing of Team Codes,
    also known as copycodes.
\* _________________________________________________________________________ */

#tb-save-load-share #tb-load-team {
  /* Show the Load button on a fresh load. */
  display: inline;
}
#tb-save-load-share #tb-delete-team {
  /* Don't show Delete button on a fresh load. */
  display: none;
}
#tb-save-team-row,
#tb-share-row {
  /* Don't show Save Team row or Share row on a fresh load either. */
  display: none;
}

#tb-save-load-share.freshly-loaded-team #tb-delete-team {
  /* If a team was just loaded, show the Delete button. */
  display: inline;
}
#tb-save-load-share.freshly-loaded-team #tb-load-team {
  /* If a team was just loaded, hide the Load button. */
  display: none;
}

#tb-saved-teams {
	max-width: 12rem;
}

#tb-save-load-share .tb-options-label {
  flex: 2;
  align-self: center;
  border: none;
  font-weight: bold;
}
#tb-save-load-share .tb-options-value {
  flex: 3;
  border: none;
}
#tb-save-load-share .tb-options-row {
  border-top: 1px dotted var(--color-border);
  padding: 0.5rem 0;
}
#tb-save-load-share .tb-options-row:first-child {
  border-top: none;
}
@media only screen and (max-width: 660px) {
  #tb-saved-teams {
    max-width: 10rem;
  }
  #tb-save-load-share .tb-options-label {
    flex: 2;
  }
  #tb-save-load-share .tb-options-value {
    flex: 1;
    
  }
}

/* For clipboard copy success/failure messages. */
.tb-pop-message {
  position: absolute;
  margin-top: 1.75rem;
  padding: 0.1rem 0.25rem;
  border-radius: 8px;
  border: 1px solid var(--color-bg-header);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  max-width: 270px;
  color: var(--color-bg-header);
  background: var(--color-bg-row-1);
  opacity: 0.9;
}
.tb-pop-failure {
  color: var(--color-bg-error);
  background: var(--color-bg-error-light);
  border-color: var(--color-bg-error);
}
.tb-pop-success {
  color: var(--color-bg-success);
  background: var(--color-bg-success-light);
  border-color: var(--color-bg-success);
}

/* ========================================================================= *\
|>| SECTION: Error handling
|=|-------------------------------------------------------------------------|=|
    These rules all affect error handling and their display.
\* _________________________________________________________________________ */

.tb-team-input > .tb-pkmn-input.has-error,
.tb-enemy-team > .tb-pkmn-input.has-error {
  background: rgba(220, 0, 0, 0.1);
}
.tb-team-input > .tb-pkmn-input:nth-child(even).has-error,
.tb-enemy-team > .tb-pkmn-input:nth-child(even).has-error {
  background: rgba(220, 0, 0, 0.165);
}

.tb-pkmn-name.has-error,
.tb-pkmn-move-input.has-error {
  box-shadow: 1px 1px 2px rgba(220, 0, 0, 0.4),
    -1px -1px 2px rgba(220, 0, 0, 0.4),
    1px -1px 2px rgba(220, 0, 0, 0.4),
    -1px 1px 2px rgba(220, 0, 0, 0.4);
}

.tb-pkmn-input .error-message,
.tb-pkmn-move-input .error-message {
  flex: 1 0 100%;
}
.tb-pkmn-input .error-message ul,
.tb-pkmn-move-input .error-message ul {
  list-style: none;
  padding-left: 1rem;
  margin: 0.1rem 0;
  list-style: '\274C';
}
.tb-pkmn-input .error-message ul li,
.tb-pkmn-move-input .error-message ul li {
  padding-left: 0.25rem;
  font-size: 90%;
  font-style: italic;
}