/* /Components/Notification.razor.rz.scp.css */
.notification-wrapper[b-e9m6faeuq1] {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
    pointer-events: none;
}

.notification[b-e9m6faeuq1] {
    width: 23%;
    color: #3a3b3c;
    padding-top: 5px;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-left: 80px;
    border-radius: 5px;
    border: 3px solid #3a3b3c;
    background-color: #b0b3b8;
}

.shake[b-e9m6faeuq1] {
    animation-name: shake-b-e9m6faeuq1;
    animation-timing-function: cubic-bezier();
    animation-duration: 6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.fade[b-e9m6faeuq1] {
    animation-name: fade-b-e9m6faeuq1;
    animation-timing-function: cubic-bezier();
    animation-duration: 6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.notification-header[b-e9m6faeuq1] {
    text-align: center;
    text-transform: uppercase;
    font-size: larger;
    font-weight: bold;
}

.notification-text[b-e9m6faeuq1] {
    text-align: center;
    font-size: large;
}

.notification-type-success[b-e9m6faeuq1]{
    background-color: #5fc555;
}

.notification-type-error[b-e9m6faeuq1] {
    background-color: #f75252;
}

@keyframes fade-b-e9m6faeuq1 {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

@keyframes shake-b-e9m6faeuq1 {
    0% {
        transform: translateX(-5px);
        opacity: 0;
    }

    1% {
        transform: translateX(5px);
    }

    2% {
        transform: translateX(-5px);
    }

    3% {
        opacity: 1;
    }

    3% {
        transform: translateX(5px);
    }

    4% {
        transform: translateX(-5px);
    }

    5% {
        transform: translateX(5px);
    }

    6% {
        transform: translateX(0);
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}
/* /Components/Party.razor.rz.scp.css */
.party-view-wrapper[b-fejcwp8jhy] {
    display: flex;
    justify-self: center;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
    padding-top: 20px;
}

.party-cards-wrapper[b-fejcwp8jhy] {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    justify-self: center;
    flex-wrap: wrap;
    width: 100%;
}

.party-cards-small-wrapper[b-fejcwp8jhy] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 1000px;
    height: 760px;
}

.party-not-empty-wrapper[b-fejcwp8jhy] {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.party-card-info-wrapper[b-fejcwp8jhy] {
    margin-right: -20px;
    display: flex;
    justify-self: flex-end;
    width: 0%;
    overflow: hidden;
    height: 100%;
    margin-top: -12px;
    border-bottom-left-radius: 5px;
}

.expand[b-fejcwp8jhy] {
    animation-name: expand-b-fejcwp8jhy;
    animation-timing-function: cubic-bezier();
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.unexpand[b-fejcwp8jhy] {
    animation-name: unexpand-b-fejcwp8jhy;
    animation-timing-function: cubic-bezier();
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.party-card-info-wrapper[b-fejcwp8jhy] {
    background-color: grey;
}

.no-pokemon-wrapper[b-fejcwp8jhy] {
    width: 66%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    font-size: larger;
}

@keyframes expand-b-fejcwp8jhy {
    0% {
        width: 0%;
    }

    100% {
        width: 33%;
    }
}

@keyframes unexpand-b-fejcwp8jhy {
    0% {
        width: 33%;
    }

    100% {
        width: 0%;
    }
}
/* /Components/PartyCard.razor.rz.scp.css */
.party-card[b-4u44jcr6s8] {
  width: 280px;
  height: 350px;
  margin: 10px;
  background-color: #3a3b3c;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
  cursor: pointer;
}

.normal-border[b-4u44jcr6s8] {
  border: 3px solid #18191a;
}

.gradient-border[b-4u44jcr6s8] {
  --border-width: 3px;
  position: relative;
  display: flex;
  border-radius: var(--border-width);
}
.gradient-border[b-4u44jcr6s8]::after {
  position: absolute;
  content: "";
  top: calc(-1 * var(--border-width));
  left: calc(-1 * var(--border-width));
  z-index: -1;
  width: calc(100% + var(--border-width) * 2);
  height: calc(100% + var(--border-width) * 2);
  background: linear-gradient(
    60deg,
    #5f86f2,
    #a65ff2,
    #f25fd0,
    #f25f61,
    #f2cb5f,
    #abf25f,
    #5ff281,
    #5ff2f0
  );
  background-size: 300% 300%;
  background-position: 0 50%;
  border-radius: calc(2 * var(--border-width));
  animation: moveGradient-b-4u44jcr6s8 4s alternate infinite;
}

@keyframes moveGradient-b-4u44jcr6s8 {
  50% {
    background-position: 100% 50%;
  }
}

.party-card-header-wrapper[b-4u44jcr6s8] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 20px;
}

.party-card-gender-icon[b-4u44jcr6s8] {
  padding-left: 30px;
  width: 33%;
  font-size: 24px;
}

.party-card-header-name[b-4u44jcr6s8] {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding: 10px;
  color: #18191a;
  font-weight: bold;
  background-color: grey;
  border-top: 3px solid #18191a;
  border-bottom: 3px solid #18191a;
}

.party-card-image-wrapper[b-4u44jcr6s8] {
  display: flex;
  justify-content: center;
}

.party-card-image[b-4u44jcr6s8] {
  width: 80%;
}

.party-card-header-name-text[b-4u44jcr6s8] {
  font-size: x-large;
}

.party-card-type-icons[b-4u44jcr6s8] {
  display: flex;
  justify-content: flex-end;
  margin-top: -16px;
  margin-right: 8px;
  width: 33%;
}
/* /Components/PartyInfo.razor.rz.scp.css */


.party-info-wrapper[b-bvmo427pbo] {
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    text-transform: capitalize;
    color: #3a3b3c;
}

.party-info-pokemon-buttons[b-bvmo427pbo]{
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    width: 350px;
}

.pokemon-info-close-icon[b-bvmo427pbo]{
    font-size: 60px;
    font: bolder;
    margin-right: 20px;
    cursor:pointer;
}

.party-info-desc-text-wrapper[b-bvmo427pbo] {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.pokemon-info-breakline[b-bvmo427pbo] {
    width: 80%;
    background-color: #636363;
    height: 2px;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pokemon-info-desc-dropdown[b-bvmo427pbo] {
    font-size: 175%;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
    background-color: #3a3b3c;
    color: #b0b3b8;
    border: none;
    user-select: none;
    border-radius: 5px;
}

.pokemon-info-desc-dropdown:focus-visible[b-bvmo427pbo] {
    outline: none;
}

.party-info-desc-text-container[b-bvmo427pbo] {
    width: 300px;
    height: 100px;
    display: inline-block;
    justify-content: center;
    background-color: white;
    text-align: left;
    overflow-wrap: break-word;
    padding: 10px;
    overflow-y: scroll;
    border-radius: 5px;
}

.party-info-desc-text[b-bvmo427pbo] {
    width: 300px;
    text-align: left;
    overflow-wrap: break-word;
}

.party-info-remove-button[b-bvmo427pbo] {
    background-color: #3a3b3c;
    color: #b0b3b8;
    display: flex;
    padding: 10px;
    height: 36px;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 5px;
}

.pokemon-info-stat[b-bvmo427pbo]{
    display: flex;
    width: 100px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 10px;
}

.pokemon-info-stat-label[b-bvmo427pbo] {
    font-weight: bold;
    font-size: large;
}

.pokemon-info-stat-value[b-bvmo427pbo] {
    font-size: large;
}

.party-info-pokemon-name[b-bvmo427pbo] {
    margin-top: 10px;
    font-size: xx-large;
    font-weight: bold;
    width: 300px;
    text-align: center;
}

.party-info-stats-wrapper[b-bvmo427pbo]{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 400px;
}
/* /Components/PokemonData.razor.rz.scp.css */
.top-layer-info[b-nf9qvfzgjl] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.next-icon[b-nf9qvfzgjl] {
    padding-top: 75px;
    padding-left: 50px;
    padding-right: 50px;
    cursor: pointer;
}

.pokemon-info-wrapper[b-nf9qvfzgjl] {
    display: flex;
    justify-content: center;
    text-transform: capitalize;
}

.pokemon-name-and-id-title[b-nf9qvfzgjl] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.party-add-button-wrapper[b-nf9qvfzgjl] {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.party-add-button[b-nf9qvfzgjl] {
    padding: 10px;
    margin-bottom: -38px;
    border-radius: 5px;
    background-color: #003fb3;
}

.pokemon-name-label[b-nf9qvfzgjl] {
    font-size: 175%;
    font-weight: bold;
}

.pokemon-name-label-dropdown[b-nf9qvfzgjl] {
    font-size: 175%;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
    background-color: #3a3b3c;
    color: #b0b3b8;
    border: none;
    user-select: none;
    border-radius: 5px;
}

.pokemon-name-label-dropdown:focus-visible[b-nf9qvfzgjl] {
    outline: none;
}

.pokemon-physical-stats[b-nf9qvfzgjl] {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.pokemon-physical-stat[b-nf9qvfzgjl] {
    padding: 10px;
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
}

.pokemon-sprite[b-nf9qvfzgjl] {
    width: 150px;
    height: 150px;
}

.pokemon-image-info-wrapper[b-nf9qvfzgjl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid #002d80;
    background-color: #3a3b3c;
    border-radius: 5px;
    padding: 20px;
}

.stats-collection[b-nf9qvfzgjl] {
    display: flex;
}

.stat-item-label[b-nf9qvfzgjl] {
    font-size: large;
    font-weight: bold;
}

.stat-item[b-nf9qvfzgjl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.image-and-controls[b-nf9qvfzgjl] {
    display: flex;
    flex-direction: column;
}

.higher-buttons[b-nf9qvfzgjl] {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 10px;
}

.high-button[b-nf9qvfzgjl] {
    border: 1px solid #18191a;
    background-color: #b0b3b8;
    color: #18191a;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}

.bounce[b-nf9qvfzgjl] {
    animation-name: bounce-b-nf9qvfzgjl;
    animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
    animation-duration: 0.75s;
    animation-iteration-count: 1;
}

@keyframes bounce-b-nf9qvfzgjl {
    0% {
        transform: scale(1, 1) translateY(0);
    }

    10% {
        transform: scale(1.1, 0.9) translateY(0);
    }

    30% {
        transform: scale(0.9, 1.1) translateY(-30px);
    }

    50% {
        transform: scale(1.05, 0.95) translateY(0);
    }

    57% {
        transform: scale(1, 1) translateY(-7px);
    }

    64% {
        transform: scale(1, 1) translateY(0);
    }

    100% {
        transform: scale(1, 1) translateY(0);
    }
}
/* /Components/PokemonForm.razor.rz.scp.css */
.pokemon-form[b-wipoqb3f8c] {
    justify-content: space-around;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    padding-top: 1%;
    user-select: none;
}

.pokemon-form-child[b-wipoqb3f8c] {
    margin: 15px;
    padding: 10px;
    border-radius: 5px;
}

.form-header[b-wipoqb3f8c] {
    display: flex;
    flex-direction: row;
}

.response-icon[b-wipoqb3f8c] {
    padding-top: 20px;
    font-size: 25px;
}

.rotate-icon[b-wipoqb3f8c] {
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin-b-wipoqb3f8c 4s linear infinite;
}

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

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

@keyframes spin-b-wipoqb3f8c {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* /Components/TypeIcons.razor.rz.scp.css */
.type-icons-list[b-x8yzm1r4ft] {
    display: flex;
    justify-content: space-evenly;
    width: 80px;
    padding-top: 15px;
    align-items: center;
}
/* /Shared/MainLayout.razor.rz.scp.css */
main[b-wdneu7azf7]{
    margin-top: -36px;
}
/* /Shared/NavMenu.razor.rz.scp.css */
.pokemon-header[b-y1zbndxcmw] {
    position:absolute;
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    width: 100%;
    left:0px;
    top: 0px;
    background-color: #3a3b3c;
    user-select: none;
}

.pokemon-header-items[b-y1zbndxcmw] {
    display: flex;
    justify-content: center;
    align-self: center;
    height: 60px;
    text-decoration: none;
}
a[b-y1zbndxcmw] {
    text-decoration: none;
}

a:link[b-y1zbndxcmw], a:visited[b-y1zbndxcmw] {
    text-decoration: none;
}

.header-item[b-y1zbndxcmw] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
    cursor: pointer;
    text-decoration: none;
    height: 100%;
}

.header-party-count-text[b-y1zbndxcmw] {
    font-weight: 500;
    color: #f75252;
}

.header-item-text[b-y1zbndxcmw] {
    color: #b0b3b8;
    text-decoration: none;
}

.header-item:hover[b-y1zbndxcmw] {
    background-color: #b0b3b8;
}

.header-item:hover .header-item-text[b-y1zbndxcmw] {
    color: #3a3b3c;
    text-decoration: none;
}

.header-item:hover .header-party-count-text[b-y1zbndxcmw] {
    color: #3a3b3c;
}
