/* width */
body::-webkit-scrollbar {
  width: 10px;
}

/* Track */
body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
body::-webkit-scrollbar-thumb {
  background: rgba(36, 38, 39, 0.932);
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  font-family: "Inter", sans-serif;
  background: #202020;
}
body h1 {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #272727;
  text-transform: capitalize;
}
body span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
body h2 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
body h3 {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
body .close-search-window__icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 40px auto 40px auto;
}
body .close-search-window__icon:after {
  content: "";
  border-top: 2px solid #00c4ff;
  border-right: 2px solid #00c4ff;
  display: block;
  padding: 5px;
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
}
body .mobile-element {
  display: none;
}
@media (max-width: 1024px) {
  body .mobile-element {
    display: block;
  }
}

#sideBar.primary-nav {
  display: none;
  position: fixed;
  z-index: 100;
  width: 0;
  top: 0px;
  cursor: pointer;
}

.menu {
  position: absolute;
  display: block;
  transform: translateX(-435px);
  top: 0;
  width: 515px;
  transition: all 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  color: #ff5e5e;
  margin-bottom: 3em;
  z-index: 999;
  background-color: rgba(18, 18, 18, 0.61);
  box-shadow: 0 8px 32px 0 rgba(6, 7, 22, 0.37);
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
}
@media (max-width: 1024px) {
  .menu {
    display: none;
  }
}
.menu img {
  padding: 5px;
  width: 75px;
  position: relative;
  top: -20px;
  left: 372px;
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav .menu li {
  position: relative;
}

.menu .icon {
  position: absolute;
  font-size: 28px;
  top: 12px;
  right: 45px;
  pointer-events: none;
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.menu,
.menu a,
.menu a:visited {
  color: #ffffff;
  text-decoration: none !important;
  position: relative;
}

.menu a {
  display: block;
  white-space: nowrap;
  padding: 1em;
  font-size: 14px;
}

.menu a:hover {
  color: #fff;
}

.menu-dropdown li:hover .icon {
  color: #fff;
}

.menu label {
  margin-bottom: 0;
  display: block;
}

.menu label:hover {
  cursor: pointer;
}

.menu input[type=checkbox] {
  display: none;
}

input#menu[type=checkbox] {
  display: none;
}

.sub-menu-dropdown {
  display: none;
}

.new-wrapper {
  position: absolute;
  left: 50px;
  width: calc(100% - 50px);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

#menu:checked + ul.menu-dropdown {
  left: 0;
  animation: all 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.sub-menu-checkbox:checked + ul.sub-menu-dropdown {
  display: block !important;
  animation: grow 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.openNav .new-wrapper {
  position: absolute;
  transform: translate3d(200px, 0, 0);
  width: calc(100% - 250px);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.downarrow {
  background-color: transparent;
  position: absolute;
  right: 50px;
  top: 12px;
  color: #777;
  width: 24px;
  height: 24px;
  text-align: center;
  display: block;
}

.downarrow:hover {
  color: #fff;
}

.menu-dropdown {
  top: 0;
  overflow-y: auto;
}

.overflow-container {
  position: relative;
  height: 100vh !important;
  width: 100%;
  overflow-y: auto;
  border-top: 73px solid #161b22;
  z-index: -1;
  display: block;
}
.overflow-container .container {
  text-align: center;
}
.overflow-container .container a {
  display: flex;
  font-size: 42px;
  width: 220px;
  flex-flow: column;
  transition: 0.2s ease-in-out;
}
.overflow-container .container a:hover {
  color: #059bb3;
}
.overflow-container .container a span {
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 10px;
}
.overflow-container .side-arrow {
  position: absolute;
  font-size: 30px;
  right: 35px;
  float: right;
  top: 50%;
}

.menu a.main-logo {
  position: absolute !important;
  top: 11px;
  left: 55px;
  display: block;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: #000;
  font-size: 21px;
  padding: 10px;
}

.menu a.main-logo span {
  font-weight: 400;
}

.menu a.main-logo:hover {
  color: #777;
}

.sub-menu-dropdown {
  background-color: #333;
}

.menu:hover {
  position: absolute;
  transform: translateX(0);
  top: 0;
}

.openNav .menu:hover {
  position: absolute;
  transform: translateX(-435px);
  top: 73px;
}

.openNav .menu {
  top: 73px;
  transform: translate3d(200px, 0, 0);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

/* look and feel only, not needed for core menu*/
@keyframes grow {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: block;
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.burger-button {
  display: none;
  cursor: pointer;
  position: relative;
  top: 0;
  left: 0;
  padding: 5px;
  height: 100%;
}
@media (max-width: 750px) {
  .burger-button {
    width: 40px;
  }
}
.burger-button img {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(63, 185, 223, 0.932);
  padding: 5px;
  border-radius: 100%;
  transition: 0.2s ease-in-out;
}
@media (max-width: 750px) {
  .burger-button img {
    width: 100%;
  }
}
.burger-button img:hover {
  background: #d4dff8;
}

#mobileNav {
  transform: translateY(-200%);
  top: 0;
  left: 0;
  height: 700px;
  width: 100%;
  position: fixed;
  z-index: 1;
  transition: 0.5s;
  padding: 20px 0 15px 0;
  background-color: rgba(0, 0, 0, 0.49);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: none;
}
@media (max-width: 1024px) {
  #mobileNav {
    display: block;
    height: 100%;
  }
}
#mobileNav a {
  padding: 15% 0 15% 0;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  display: block;
  transition: 0.3s;
}
#mobileNav a span {
  display: block;
  font-size: 40px;
  padding-top: 20px;
}
@media (max-width: 767px) {
  #mobileNav a span {
    font-size: 25px;
  }
}
#mobileNav:hover {
  color: #f1f1f1;
}
#mobileNav .closebtn {
  position: relative;
  font-size: 36px;
  padding: 5px;
}

/* width */
#resultsWindow::-webkit-scrollbar {
  width: 10px;
}

/* Track */
#resultsWindow::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
#resultsWindow::-webkit-scrollbar-thumb {
  background: rgba(63, 185, 223, 0.932);
}

/* Handle on hover */
#resultsWindow::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#resultsWindow {
  z-index: 103;
  position: fixed;
  display: block;
  overflow-y: scroll;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 18, 38, 0.54);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateY(-200%);
  transition: 0.5s ease-in-out;
}
#resultsWindow .container {
  padding: 0px 30px 100px 30px;
}
@media (max-width: 1199px) {
  #resultsWindow .container {
    padding: 0px 20px 100px 20px;
  }
}
#resultsWindow .container .row {
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 auto;
}
#resultsWindow .container h2 {
  margin: 0 0 30px 0;
  color: #ffffff;
  background: rgba(36, 29, 29, 0.7);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  padding: 5px;
}
@media (max-width: 1024px) {
  #resultsWindow .container h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  #resultsWindow .container h2 {
    font-size: 20px;
  }
}
@media (max-width: 750px) {
  #resultsWindow .container .img-wrapper {
    display: flex;
  }
}
#resultsWindow .container .img-wrapper img {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: block;
  margin: 10px auto;
}
@media (max-width: 750px) {
  #resultsWindow .container .img-wrapper img {
    width: 30%;
  }
}
@media (max-width: 1199px) {
  #resultsWindow .container .img-wrapper img:nth-child(1), #resultsWindow .container .img-wrapper img:nth-child(2), #resultsWindow .container .img-wrapper img:nth-child(3) {
    display: inline-block;
    margin-top: 0;
    margin-right: 5px;
    top: 0;
    margin-bottom: 30px;
    position: relative;
  }
}
#resultsWindow .container p {
  color: #ffffff;
  width: 100%;
}
#resultsWindow .container .stats-names {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-transform: capitalize;
}
#resultsWindow .container .stats-names p {
  text-align: left;
}
#resultsWindow .container .stats {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#resultsWindow .container .stats p {
  width: 100%;
  display: inline-flex;
}
#resultsWindow .container .stats p:after {
  content: "";
  background-color: rgba(63, 185, 223, 0.932);
  max-width: 100%;
  margin-left: 15px;
  height: 12px;
  border-radius: 10px;
  display: inline-block;
  top: 5px;
  position: relative;
}
#resultsWindow .pokeTypes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 auto;
  background-color: rgba(4, 196, 226, 0.87);
  color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  margin: 0 10px 20px 10px;
  text-align: center;
  text-transform: capitalize;
}
@media (max-width: 750px) {
  #resultsWindow .pokeTypes {
    font-size: 13px;
  }
}
#resultsWindow .pokeTypesCols {
  text-align: center;
  padding-top: 35px;
}
@media (max-width: 1024px) {
  #resultsWindow .pokeTypesCols {
    text-align: left;
    padding-top: 25px;
  }
}
#resultsWindow .pokeTitles {
  text-transform: capitalize;
  text-align: center;
}
#resultsWindow .poke-types-inner-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
#resultsWindow .poke-abilities-col-inner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
#resultsWindow .poke-types-inner-col .pokeTypes {
  background: rgba(26, 181, 110, 0.87);
}
#resultsWindow .poke-location-inner-col, #resultsWindow .poke-moves-inner-col, #resultsWindow .poke-egg-inner-col {
  display: inline-block;
}
#resultsWindow .poke-location-inner-col .pokeTypes, #resultsWindow .poke-moves-inner-col .pokeTypes, #resultsWindow .poke-egg-inner-col .pokeTypes {
  display: inline-block;
  margin: 5px;
  text-transform: capitalize;
}
@media (max-width: 750px) {
  #resultsWindow .poke-location-inner-col .pokeTypes, #resultsWindow .poke-moves-inner-col .pokeTypes, #resultsWindow .poke-egg-inner-col .pokeTypes {
    width: 46%;
  }
}
#resultsWindow .poke-location-inner-col .pokeTypes {
  background: rgba(0, 94, 149, 0.87);
}
@media (max-width: 750px) {
  #resultsWindow .poke-abilities-col-inner {
    flex-direction: column;
  }
}
#resultsWindow .poke-abilities-col-inner .pokeTypes {
  background-color: rgba(217, 46, 29, 0.62);
}
@media (max-width: 750px) {
  #resultsWindow .poke-abilities-col-inner .pokeTypes {
    width: 100%;
  }
}
#resultsWindow .poke-abilities-col-inner-descs {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 750px) {
  #resultsWindow .poke-abilities-col-inner-descs {
    flex-direction: column;
  }
}
#resultsWindow .poke-abilities-col-inner-descs .poke-abilities-text-box {
  display: flex;
  justify-content: center;
  color: #ffffff;
  padding: 10px;
  margin: 0 10px 20px 10px;
  width: 100%;
}
@media (max-width: 750px) {
  #resultsWindow .poke-abilities-col-inner-descs .poke-abilities-text-box {
    font-size: 14px;
  }
}
#resultsWindow .poke-moves-inner-col .pokeTypes {
  background: rgba(79, 0, 165, 0.87);
}
#resultsWindow .poke-egg-inner-col .pokeTypes {
  background: rgba(221, 171, 125, 0.87);
}
@media (max-width: 750px) {
  #resultsWindow .poke-egg-inner-col .pokeTypes {
    width: 100%;
  }
}

#wrapper {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(12, 11, 11, 0.76);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
}

#topSearchBar {
  position: fixed;
  top: 0;
  padding: 15px 10px;
  width: 100%;
  height: auto;
  background: #161b22;
  z-index: 99;
  box-shadow: 0px 1px 15px 0px rgb(20, 20, 20);
}
@media (max-width: 750px) {
  #topSearchBar {
    padding: 8px 10px;
  }
}
#topSearchBar .row {
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1024px) {
  #topSearchBar .row {
    justify-content: center;
  }
}
#topSearchBar .row div:nth-child(2) {
  display: flex;
}
#topSearchBar .row div:nth-child(2) h1 {
  color: #ffffff;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  #topSearchBar .row div:nth-child(2) h1 {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  #topSearchBar .row div:nth-child(2) h1 {
    font-size: 16px;
  }
}
#topSearchBar .container {
  max-width: 100%;
}
#topSearchBar .container .main-logo {
  width: 70px;
  height: 55px;
}
@media (max-width: 750px) {
  #topSearchBar .container .main-logo {
    width: 60px;
    height: 40px;
  }
}
@media (max-width: 320px) {
  #topSearchBar .container .main-logo {
    display: none;
  }
}
#topSearchBar .container .main-logo img {
  display: none;
}
@media (max-width: 1024px) {
  #topSearchBar .container .main-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0;
    display: flex;
  }
}
#topSearchBar #searchForm {
  display: flex;
}
#topSearchBar #searchForm .search-bar {
  position: relative;
  display: inline-flex;
  margin: 0 auto;
  width: 100%;
  max-width: 715px;
}
@media (max-width: 750px) {
  #topSearchBar #searchForm .search-bar {
    max-width: 100%;
  }
}
#topSearchBar #searchForm .search-bar input {
  text-transform: lowercase;
  background-image: url(../assets/search-icon-white.svg);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 17px 17px;
  opacity: 1;
  width: 100%;
  font-size: 14px;
  height: auto;
  padding: 10px 15px;
  border-radius: 10px;
  margin: 0 auto;
  background-color: #121111;
  color: #ffffff;
  border-radius: 10px;
  border: 0;
}
#topSearchBar #searchForm .search-bar input::-moz-placeholder {
  font-size: 14px;
  opacity: 0.5;
  color: #ffffff;
  padding-left: 5px;
}
#topSearchBar #searchForm .search-bar input::placeholder {
  font-size: 14px;
  opacity: 0.5;
  color: #ffffff;
  padding-left: 5px;
}
@media (max-width: 1024px) {
  #topSearchBar #searchForm .search-bar input {
    margin-top: 10px;
  }
}
#topSearchBar #searchForm .search-bar:focus {
  outline: none;
  opacity: 1;
  transition: border 0.2sec ease;
}
#topSearchBar #searchForm .search-bar::-moz-selection {
  outline: none;
  background-color: rgba(63, 185, 223, 0.932);
}
#topSearchBar #searchForm .search-bar::selection {
  outline: none;
  background-color: rgba(63, 185, 223, 0.932);
}
#topSearchBar #searchForm #startSearch {
  text-align: center;
  color: #ffffff;
  position: absolute;
  display: block;
  padding: 10px;
  right: 0px;
  width: 45px;
  height: 100%;
  cursor: pointer;
}

#titles {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  color: #ffffff;
  position: relative;
  background-color: rgb(10, 10, 10);
  padding: 15px;
  top: 5px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  margin-top: 110px;
}
#titles span {
  display: flex;
  justify-content: center;
  margin: 0;
}
@media (max-width: 768px) {
  #titles span:nth-child(2) {
    display: none;
  }
}
@media (max-width: 767px) {
  #titles span:nth-child(3) {
    display: none;
  }
}

#main {
  margin: 20px 0 20px 0;
  color: #4c4c63;
}
@media (max-width: 768px) {
  #main {
    padding: 20px 15px 20px 15px;
  }
}
#main .container {
  max-width: 70%;
}
@media (max-width: 1440px) {
  #main .container {
    max-width: 92%;
    right: 0;
    position: absolute;
  }
}
@media (max-width: 1024px) {
  #main .container {
    max-width: 100%;
    position: relative;
  }
}
@media (max-width: 767px) {
  #main .container {
    padding: 0;
  }
}
#main #pokeList {
  background-color: rgba(22, 33, 86, 0.25);
  border: 1px solid #000000;
}
#main #pokeList div {
  padding: 7px 20px 7px 20px;
  cursor: pointer;
}
#main #pokeList div:last-child {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
#main #pokeList div:nth-child(even) {
  background-color: rgba(13, 14, 14, 0.7098039216);
}
#main #pokeList div:nth-child(odd) {
  background-color: rgba(11, 18, 22, 0.45);
}
#main #pokeList div p {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
#main #pokeList div h2 {
  color: #ffffff;
  text-transform: capitalize;
  margin: 0;
  pointer-events: none;
}
@media (max-width: 750px) {
  #main #pokeList div h2 {
    font-size: 14px;
  }
}
#main #pokeList .pokeDiv {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding: 0 25px;
  transition: 0.2s ease-in-out;
}
@media (max-width: 750px) {
  #main #pokeList .pokeDiv {
    justify-content: space-between;
  }
}
#main #pokeList .pokeDiv:hover {
  background-color: rgba(63, 185, 223, 0.78);
  cursor: pointer;
  color: #ffffff;
  transition: 0.2s ease-in-out;
}
#main #pokeList .pokeDiv img, #main #pokeList .pokeDiv h2 {
  pointer-events: none;
}
#main #pokeList .pokeDiv span {
  pointer-events: none;
}
@media (max-width: 768px) {
  #main #pokeList .pokeDiv span:nth-child(3) {
    display: none;
  }
}
@media (max-width: 767px) {
  #main #pokeList .pokeDiv span:nth-child(4) {
    display: none;
  }
}
#main #pokeList .pokeDiv span p {
  background: rgba(0, 0, 0, 0.32);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px;
  color: white;
  border-radius: 7px;
  margin: 0;
}
#main #pokeList .pokeDiv span img {
  position: relative;
  width: 20px;
  top: -2px;
  margin-right: 8px;
}
#main #pokeList .pokeDiv .poke-nature {
  color: #ffffff;
  margin-left: 0;
  border-radius: 10px;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
#main #pokeList .pokeDiv .poke-normal {
  background-color: #c2ab8a;
  border: 1px solid #c2ab8a;
}
#main #pokeList .pokeDiv .poke-fighting {
  background-color: rgb(148, 35, 20);
  border: 1px solid rgb(148, 35, 20);
}
#main #pokeList .pokeDiv .poke-poison {
  background-color: rgb(97, 0, 97);
  border: 1px solid rgb(97, 0, 97);
}
#main #pokeList .pokeDiv .poke-ground {
  background-color: rgb(189, 145, 0);
  border: 1px solid rgb(189, 145, 0);
}
#main #pokeList .pokeDiv .poke-rock {
  background-color: rgb(114, 65, 0);
  border: 1px solid rgb(114, 65, 0);
}
#main #pokeList .pokeDiv .poke-bug {
  background-color: rgb(89, 197, 0);
  border: 1px solid rgb(89, 197, 0);
}
#main #pokeList .pokeDiv .poke-ghost {
  background-color: rgb(122, 83, 129);
  border: 1px solid rgb(122, 83, 129);
}
#main #pokeList .pokeDiv .poke-steel {
  background-color: rgb(122, 122, 122);
  border: 1px solid rgb(122, 122, 122);
}
#main #pokeList .pokeDiv .poke-fire {
  background-color: rgb(219, 0, 0);
  border: 1px solid rgb(219, 0, 0);
}
#main #pokeList .pokeDiv .poke-water {
  background-color: rgb(0, 57, 180);
  border: 1px solid rgb(0, 57, 180);
}
#main #pokeList .pokeDiv .poke-grass {
  background-color: rgb(11, 136, 0);
  border: 1px solid rgb(11, 136, 0);
}
#main #pokeList .pokeDiv .poke-electric {
  background-color: rgb(241, 217, 0);
  border: 1px solid rgb(241, 217, 0);
}
#main #pokeList .pokeDiv .poke-ice {
  background-color: rgb(0, 182, 182);
  border: 1px solid rgb(0, 182, 182);
}
#main #pokeList .pokeDiv .poke-dragon {
  background-color: rgb(74, 23, 214);
  border: 1px solid rgb(74, 23, 214);
}
#main #pokeList .pokeDiv .poke-dark {
  background-color: rgb(26, 0, 0);
  border: 1px solid rgb(26, 0, 0);
}
#main #pokeList .pokeDiv .poke-fairy {
  background-color: rgb(219, 0, 102);
  border: 1px solid rgb(219, 0, 102);
}
#main #pokeList .pokeDiv .poke-psychic {
  background-color: rgb(167, 18, 122);
  border: 1px solid rgb(167, 18, 122);
}
#main #pokeList .pokeDiv .poke-flying {
  background-color: rgb(221, 170, 255);
  border: 1px solid rgb(221, 170, 255);
}

#adBannerBottom {
  position: fixed;
  width: 450px;
  height: 100px;
  margin: 0 auto;
  right: 0;
  bottom: 30px;
  display: block;
  z-index: 101;
}
@media (max-width: 1024px) {
  #adBannerBottom {
    display: none;
  }
}

#adBannerBottomMobile {
  position: fixed;
  width: 100%;
  height: 120px;
  margin: 0 auto;
  left: 0;
  bottom: 50px;
  display: none;
  z-index: 101;
}
@media (max-width: 1024px) {
  #adBannerBottomMobile {
    display: block;
  }
}

footer {
  bottom: 0;
  position: relative;
  display: block;
  position: fixed;
  width: 100%;
  height: auto;
  background: #141414;
  display: inline-block;
  color: #898989;
  font-size: 13px;
  text-align: center;
  z-index: 102;
}
footer p {
  margin: 5px;
  display: inline-block;
}
@media (max-width: 750px) {
  footer p {
    font-size: 10px;
  }
}/*# sourceMappingURL=main.css.map */