@import url(https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;300;400;500;700;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Palanquin+Dark:wght@400;500;600;700&display=swap);.root{height:100vh;width:100vw;background-color:var(--white)}.root .main-content{display:flex}.header{position:relative;height:var(--header-height);background-color:var(--pokedex-red)}.header .profile-icon{height:100%;margin-right:calc(var(--header-height)/2);display:flex;justify-content:flex-end;align-items:center;color:var(--gray)}.header .profile-icon .profile-circle{width:42px;height:42px;margin-top:-2px;display:flex;justify-content:center;align-items:center;background-color:var(--white);border-radius:50%;box-shadow:0 1px 3px 1px var(--shadow)}.sidebar{position:relative;width:var(--sidebar-width);height:var(--content-height);align-items:flex-start;background-color:var(--white);box-shadow:1px 0 6px 1px var(--shadow);padding:0 var(--sidebar-padding)}.sidebar .section-container{padding-bottom:0;margin-bottom:0;display:flex;flex-direction:column;justify-content:flex-start}.sidebar .section-container .section-header{margin:42px 0 8px;color:#aaa;font-size:12px;font-weight:500;letter-spacing:.5px;text-transform:uppercase}.sidebar .section-container .section-link{width:calc(100% - var(--sidebar-padding)*2);height:28px;padding:2px 16px;display:flex;align-items:center;border-radius:16px}.sidebar .section-container .section-link .link-text{margin-top:-1px;font-size:14px;font-weight:500}.pokemon-list-page{--shadow-soft:rgba(0,0,0,0.1);--page-header-height:60px;--page-content-padding:48px;height:var(--content-height);width:var(--content-width);background-color:#f6f9fa;padding:var(--page-content-padding);overflow:hidden}.pokemon-list-page .page-header{height:var(--page-header-height);width:100%;padding-bottom:48px;display:flex;justify-content:space-between;align-items:center}.pokemon-list-page .page-header .title{font-size:36px;font-weight:600}.pokemon-list-page .page-header .search-container{height:40px;width:40%;display:flex;justify-content:flex-start;align-items:center;padding:20px;background-color:var(--white);border-radius:20px;box-shadow:0 1px 4px 0 var(--shadow-soft)}.pokemon-list-page .page-header .search-container .icon{color:var(--lightGray)}.pokemon-list-page .page-header .search-container .search-bar{height:40px;width:100%;padding-left:12px;font-size:16px;border:none;outline:none}.pokemon-list-page .page-header .search-container .search-bar::-webkit-input-placeholder{color:var(--lightGray)}.pokemon-list-page .page-header .search-container .search-bar:-ms-input-placeholder{color:var(--lightGray)}.pokemon-list-page .page-header .search-container .search-bar::placeholder{color:var(--lightGray)}.pokemon-list-page .pokemon-list{--grid-gap:28px;height:calc(var(--content-height) - var(--page-header-height) - var(--page-content-padding));width:var(--content-width);margin-left:calc(var(--page-content-padding)*-1);padding:var(--page-content-padding);padding-top:24px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:var(--grid-gap);overflow-x:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}.pokemon-list-page .pokemon-list::-webkit-scrollbar{width:0;height:0}.pokemon-list-page .pokemon-list .card{height:360px;display:flex;flex-direction:column;justify-content:center;align-items:center;border-radius:24px;box-shadow:0 0 32px 1px var(--shadow-soft);background-color:var(--white);min-width:240px;overflow:hidden;-webkit-user-select:none;-ms-user-select:none;user-select:none}.pokemon-list-page .pokemon-list .card .image-container{flex:1 1;width:100%;display:flex;justify-content:center;align-items:center;background-color:#ffb6c1}.pokemon-list-page .pokemon-list .card .image-container .image{height:240px}.pokemon-list-page .pokemon-list .card .info-container{position:relative;height:120px;width:100%;display:flex;padding:0 24px;flex-direction:column;justify-content:space-evenly;align-items:center;background-color:var(--white);box-shadow:0 -1px 4px 0 var(--shadow-soft)}.pokemon-list-page .pokemon-list .card .info-container .name-id-container{display:flex;width:100%;justify-content:space-between;align-items:center}.pokemon-list-page .pokemon-list .card .info-container .name-id-container .name{font-size:24px;font-weight:600}.pokemon-list-page .pokemon-list .card .info-container .name-id-container .id{font-size:18px;color:var(--gray)}.pokemon-list-page .pokemon-list .card .info-container .chip-description-container{display:flex;width:100%;justify-content:space-between;align-items:baseline}.pokemon-list-page .pokemon-list .card .info-container .chip-description-container .chips-container{display:flex;width:50%;justify-content:flex-start}.pokemon-list-page .pokemon-list .card .info-container .chip-description-container .chips-container .chip{height:100%;padding:6px 16px;margin-right:8px;border-radius:28px;background-color:#aaa;box-shadow:0 1px 4px 1px var(--shadow-soft)}.pokemon-list-page .pokemon-list .card .info-container .chip-description-container .chips-container .chip .text{color:var(--white);font-size:12px;font-weight:500;box-shadow:0 0 1px 0 var(--shadow-soft)}.pokemon-list-page .pokemon-list .card .info-container .chip-description-container .description{font-size:12px;font-weight:500;color:var(--gray)}.pokemon-list-page .pokemon-list a:last-child{margin-bottom:var(--page-content-padding)}.favorite-pokemon,.pokemon-details,.profile{height:var(--content-height);width:var(--content-width);display:flex;justify-content:center;align-items:center}body,html{margin:0;padding:0;height:100vh;width:100vw;color:#203646;color:var(--darkGray)}*{font-family:“Fira Sans”,-apple-system,BlinkMacSystemFont,“Segoe UI”,Roboto,Oxygen,Ubuntu,Cantarell,“Open Sans”,“Helvetica Neue”,sans-serif}a{text-decoration:none;color:#000;color:initial}html{--header-height:64px;--sidebar-width:200px;--content-height:calc(100vh - var(--header-height));--content-width:calc(100vw - var(--sidebar-width));--sidebar-padding:20px}*{box-sizing:border-box}html{--main:#2f4858;--secondary:#33658a;--positive:#2ed573;--negative:#ff4757;--green:#7bed9f;--orange:coral;--purple:#70a1ff;--black:#000;--white:#fff;--lightGray:#dfe4ea;--mediumGray:#b9b9b9;--gray:#757575;--darkGray:#203646;--sidebar-background:#fff;--background:rgba(235,240,243,0.6666666666666666);--pokedex-red:#c50024;--shadow:rgba(0,0,0,0.2);--fire:#f1690e;--grass:#32890a;--water:#1765ae;--normal:#c0be9a;--flying:#4faca3;--bug:#80af23;--poison:#9400ce;--electric:#848206;--ground:#d9c847;--fighting:#e00016;--psychic:#e40050;--rock:#635730;--ice:#1e8590;--ghost:#7a3e93;--dragon:#7734fc;--dark:#4c3626;--steel:#697c77;--fairy:#f88bb5;--fire-light:#f9c39f;--grass-light:#d9fbca;--water-light:#9fcaf2;--normal-light:#e7e6d9;--flying-light:#cfe9e6;--bug-light:#daefaf;--poison-light:#f1ceff;--electric-light:#fcfbc0;--ground-light:#f2edc2;--fighting-light:#ff7a87;--psychic-light:#ff97bc;--rock-light:#cbbe94;--ice-light:#bcecf1;--ghost-light:#c197d3;--dragon-light:#cbb2fe;--dark-light:#bf9a7f;--steel-light:#697c77;--fairy-light:#fddde9}
/*# sourceMappingURL=main.9a881bc2.chunk.css.map */