* {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

body {
background-image: url(../images/bg2.png);
    background-size: cover;
    font-family: 'Exo', sans-serif;
    background-position: center center;
    background-repeat: no-repeat;
}

.header-style {
    background-color: #ED2E49;
    padding: 1vw 0px 1vw 4.5vw;
    font-family: 'Luckiest Guy', cursive;
    display: flex;
    align-items: center;
    height: 2em;
}

.rounded-header {
    background-color: #ED2E49;
    border-radius: 0 0 40% 40%;
    padding: 2em 1.2em 0 1em;
    text-align: center;
}

.header-title {
    color: #EAC02E;
    font-size: 1.5vw;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #2C6AA9;
}

.pokemon-title {
    width: 15vw;
    margin: 4em 2em -.5em;
    transition: .2s;
}

.pokemon-title:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.single-pokemon {
    text-align: center;
    padding: 1em 2em;
    width: 6vw;
}

.select-type-pokemon, .pokemon-name {
    margin: 5px;
}

.pokemon-img {
    max-width: 100px;
    transition: .2s;
}

.pokemon-img:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.select-num-pokemon {
    margin: 0;
}

.div-select-type {
    padding: 10px 0;
    margin: 5px 0;
    width: 100%;
    flex-wrap: wrap;
    background-color: rgb(248, 248, 248, 0.7);
    border-radius: 10px;
    text-align: center;
}

.div-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

.root{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    margin: 0 4vw;
}

.figure {
   display: flex;
   flex-direction: row;
   justify-content: center;
   border: 2px solid red;
   height: 100%;
   width: 80%
 }

 .slider{
    width: 40%;
    border: 2px solid black;
    height: 300px;
    background-color: white;
}

.details{
    margin-top: 10vh;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
} 
 
.pokemons{
    width: 50%;
    margin-top: 5vh;
}

.container-pokemons-panel{
    height: 300px;
    width: 100%;
    overflow: auto;
    background-color: rgb(248, 248, 248, 0.7);
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
}

.pokemons-panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: baseline;
    padding: 10px 0 0 0;
}

.container-pokemons-panel::-webkit-scrollbar-track {
     -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.05);
     background-color: #F5F5F5;
     border-radius: 10px;
}
 
.container-pokemons-panel::-webkit-scrollbar{
    width: 15px;
    background-color: #F5F5F5;
    border-radius: 10px;
}
 
.container-pokemons-panel::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: #6A92F2; 
}

.type-pokemon {
    padding: 10px;
    width: 70px;
    margin: 7px;
    border-radius: 5px;
    color: white !important;
    border: none;
    outline: none;
    transition: .2s;
}

.type-pokemon:hover, .type-pokemon:active, .type-pokemon:focus {
    transform: scale(1.05);
    cursor: pointer;
    box-shadow: 0 0 0 3pt white;
}

.div-filter-name {
    width: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: rgb(248, 248, 248, 0.7);
}

.input-name-style {
    width: 70%;
    margin: 10px;
    padding: 15px;
    outline: none;
    border: none;
    background-color: rgb(248, 248, 248, 0.0);
    border-bottom: 1px solid rgb(0, 0, 0, 0.5);
}

.icon-search {
    width: 25px;
    height: 25px;
    background-color: #ED4863;
    font-size: 20px;
    color: white;
    padding: 5px;
    margin: 5px 5px 5px 30px;
    border-radius: 50%;
    text-align: center;
}

.normal {
    background-color: rgba(168, 168, 120, 0.7);
    color: rgb(51, 51, 26);
}

.fighting {
    background-color: rgba(192, 48, 40, 0.7);
    color: rgb(77, 20, 17);
}

.flying {
    background-color: rgba(168, 144, 240, 0.7);
    color: rgb(44, 34, 73);
}

.poison {
    background-color: rgba(160, 64, 160, 0.7);
    color: #3d133d;
}

.ground {
    background-color: rgba(224, 192, 104, 0.7);
    color: rgb(83, 69, 31);
}

.bug {
    background-color: rgba(167, 182, 32, 0.7);
    color: rgb(44, 48, 8);
}

.ghost {
    background-color: rgba(112, 88, 152, 0.7);
    color: #2b0e5a;
}

.fire {
    background-color: rgba(240, 128, 48, 0.7);
    color: rgb(117, 61, 21);
}

.water {
    background-color: rgba(104, 144, 240, 0.7);
    color: rgb(25, 55, 124);
}

.ice {
    background-color: rgba(44, 102, 238, 0.7);
    color:rgb(19, 40, 88);
}

.grass {
    background-color: rgba(120, 200, 80, 0.7);
    color:rgb(34, 77, 13);
}

.electric {
    background-color: rgba(247, 207, 48, 0.7);
    color: rgb(58, 48, 9);
}

.psychic {
    background-color: rgba(248, 88, 136, 0.7);
    color: rgb(122, 33, 60);
}

.dragon {
    background-color: rgba(112, 56, 248, 0.7); 
    color:rgb(32, 13, 77);
}

.rock {
    background-color: rgba(184, 160, 56, 0.7);
    color: rgb(66, 58, 14);
}

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

.img-picked-pokemon{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.description-pokemon{
    width: 50%;
    height: 50%;
}

.description-pokemon-card {
    border-radius: 1em 1em 0 0;
    padding: 1em;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.evolution-card {
    border-radius: 0 0 1em 1em;
    padding: 10px;
    box-sizing: border-box;
}

.img-evolutions {
    width: 3.7em;
}

.img-evolutions:hover {
    cursor: pointer;
}

.name-evolution {
    text-align: center;
    letter-spacing: 1px;
    word-wrap: break-word;
    max-width: 7em;
}

.align-start {
    align-self: flex-start;
}

.title-info {
    font-size: 16px;
    margin-top: 0.3em;
}

.title-info-name {
    font-size: 2em;
    margin-right: 0.5em;
}

.title-info{
    display: inline-block;
    margin-top: 0.5em;
} 

.info {
    display: inline-block;
    font-size: 15px;
}

.infoinfo{
    width: 40%;
    height: 2em;
    cursor: pointer;
    font-size: 0.9em;
    margin-right: 0.3em;
    border: 1px solid;
    border-radius: 1em;
    padding-top: 0.5em;
    text-align: center;
}

.fa-arrow-circle-right {
    font-size: 30px;
    margin: 0 1vw;
    color: white;
}

.poke-teste {
    position: relative;
    margin-top: 10%;
    z-index: 1;
}

.large{
    width: 60%;
}

.small{
    width: 50%;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.large-info-container {
    width: 100%;
}

.hidden {
    display: none;
} 

.order {
    border: none;
    border-radius: 10px;
    padding: 5px;
    outline: none;
    justify-self: flex-end;
    background-color: #6890F0;
    color: white;
    font-family: Exo;
}

.dropdown-container {
    background-color: white;
    padding: 5px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: flex-end;
}

.order-option {
    background-color: white;
    color: black;
    font-family: Exo;
}

.order-option:disabled {
    background-color: #C8C8C8;
    color: #848484;
}

.arrow-evolution:last-child{
   display: none;
}

.type-pokemon-panel{
    width: 100%
}

.type-icon{
    margin: 5px;
}

.title-info-box{
    width: 100%;
    display: flex;
    align-items: center;
}

.info-picked-pokemon{
    display: flex;
    flex-direction: column;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    display: none;
    position: absolute;
    background: white;
    color: black;
    padding: 4px 8px;
    width: 15vw;
    border-radius: 4px;
    text-align: left;
}

[data-tooltip]:hover:before{
    display: block;
    z-index: 40;
}
.pokemon-circle {
    background-color: rgba(255, 255, 255, .6);
    border-radius: 50%;
    border: 3px solid white;
    width: 4em;
    height: 4em;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s;
}

.pokemon-circle:hover {
    transform: scale(1.05);
}

.single-pokemon-evolution {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.shadow{
    position: relative;
    top: -13%;
    content: url(http://www.pngall.com/wp-content/uploads/2017/05/Shadow-PNG-Image-File.png);
    background-repeat: no-repeat;
}

.pokemon-bio{
    padding: 0.5em;
    border-radius: 10px;
    border: 1px solid;
    font-size: 13px;
}

.pokemon-title {
    width: 15vw;
    margin-top: 2em;
    transition: .2s;
}

.pokemon-title:hover,
.pokemon-circle:hover  {
    cursor: pointer;
    transform: scale(1.05);
}

.header-title {
    color: #EAC02E;
    font-size: 2vw;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #2C6AA9;
}

.pokemon-circle {
    background-color: rgba(255, 255, 255, .6);
    border-radius: 50%;
    border: 2px solid white;
    width: 5em;
    height: 5em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s;
}

.single-pokemon-evolution {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.rareness-charty{
    width: 50px;
    height: 50px;
    position: absolute;
}