:root {
  --sidebarClosedWidth: 40px;
  --sidebarOpenWidth: 400px;
  --sidebarContentBG: #0a0a0a;
  --sidebarMenuBG: #0a0a0a;
  --sidebarBorderRightColor: #060606;
  --sidebarMenuIconColor: #fff;

  --sidebar-mobile-width: 220;
  --sidebar-close: -220;
  --sidebar-content-width: 180;
}

/* Sidebar Menu*/
.sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 400px;
  z-index: 3000;
  box-sizing: border-box;
  transition: width 500ms;
  border-radius: 0px;
}

.sidebar.collapsed {
  width: 40px;
  transition: width 500ms cubic-bezier(0,0,.2,1);
}

.sidebar-pane {
  display: none;
  box-sizing: border-box;
  padding: 5px 15px 10px 10px;
}

.sidebar-pane.active {
  display: block;
  animation: fadeIn 0.5s;
  -webkit-animation: fadeIn 0.5s;
  -moz-animation: fadeIn 0.5s;
  -o-animation: fadeIn 0.5s;
  -ms-animation: fadeIn 0.5s;
}

@media (min-width: 768px) and (max-width: 991px) {
  .sidebar-pane {
      visibility: visible;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar-pane {
      visibility: visible;
  }
}

@media (min-width: 1200px) {
  .sidebar-pane {
      visibility: visible;
  }
}

.sidebar-header {
  margin: 5px 0;
  height: 40px;
  padding: 0;
  line-height: 40px;
  font-size: 14.4pt;
  color: #fff;
  background-color: transparent;
}

.sidebar-left .sidebar-close {
  transform: translate(400px);
}



.sidebar .sidebar-close {
  position: absolute;
  width: 25px;
  height: 48px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #0a0a0a;
  color: #fff;
  transition: transform 500ms cubic-bezier(0,0,.25,1);
}
.sidebar.collapsed .sidebar-close {
  transform: translate(0px);
}

/* Sidebar Content */
.sidebar-content {
  position: absolute;
  top: 0;
  bottom: 0;
  font-weight: 500;
  font-size: 13px;
  background-color: var(--sidebarContentBG);
  color: #ffffff;
  overflow-x: hidden;
  overflow-y: overlay;
  transition: transform 500ms cubic-bezier(0,0,.2,1);
}

.sidebar-left .sidebar-content {
  left: 40px;
  box-sizing: border-box;
  width: 360px;
  color: #fff;
}

@media (max-width: 400px) {
  .sidebar {
    width: 220px;
  }
  .sidebar-left .sidebar-content {
    width: 180px;
  }
  .sidebar .sidebar-close {
    left: -180px;
  }
  .marker-search {
    flex-direction: column;
    gap: 0.25rem;
    margin: 0.25rem 0.5rem 0;
  }
  .marker-search .search-submit {
    width: fit-content;
    margin: 0 auto;
  }
  .search-results .results .marker-link {
    padding: 0.25rem;
  }
  .search-results .results .marker-link .marker-title {
    font-size: 0.875rem;
  }
  .map-legend .categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  }
  .leaflet-top.leaflet-right {
    flex-direction: column;
  }
  .leaflet-control-zoom.leaflet-bar.leaflet-control {
    flex-direction: column;
  }
}

.sidebar-right .sidebar-content {
  left: 0;
  right: 40px;
}

.sidebar.collapsed > .sidebar-content {
  overflow-y: hidden;
  transform: translate(-100%);
}

.collapsed > .sidebar-content {
  overflow-y: hidden;
}

.sidebar-tabs {
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1000;
  background-color: var(--sidebarMenuBG);
  border-right: 1px solid var(--sidebarBorderRightColor);
}

.sidebar-left .sidebar-tabs {
  left: 0;
}

.sidebar-right .sidebar-tabs {
  right: 0;
}

.sidebar-tabs, .sidebar-tabs > ul {
  position: absolute;
  width: 40px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.sidebar-tabs > li, .sidebar-tabs > ul > li {
  width: 100%;
  height: 40px;
  color: var(--sidebarMenuIconColor);
  font-size: 12pt;
  overflow: hidden;
  transition: all 80ms;
}

.sidebar-tabs > li:hover, .sidebar-tabs > ul > li:hover {
  color: #e3c38a;
  background-color: #eee;
}

.sidebar-tabs > li.active, .sidebar-tabs > ul > li.active {
  color: #fff;
  background-color: #0074d9;
}

.sidebar-tabs > li.disabled, .sidebar-tabs > ul > li.disabled {
  color: rgba(51, 51, 51, 0.4);
}

.sidebar-tabs > li.disabled:hover, .sidebar-tabs > ul > li.disabled:hover {
  background: transparent;
}

.sidebar-tabs > li.disabled > a, .sidebar-tabs > ul > li.disabled > a {
  cursor: default;
}

.sidebar-tabs > li > a, .sidebar-tabs > ul > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 40px;
  color: inherit;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.sidebar-tabs>li.active, .sidebar-tabs>ul>li.active, .sidebar-tabs>ul>li.active i {
  background-color: #181818;
  color: #e3c38a;
}

.sidebar-tabs>li:hover, .sidebar-tabs>ul>li:hover {
  background-color: #191816;
}

.sidebar-tabs i {
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 36px;
}

.sidebar-tabs i:hover {
  color: #e3c38a;
}

.sidebar-tabs ul + ul {
  bottom: 0;
}

.sidebar-tabs i.icon.collections:before {
  content: "\e900";
  color: #fff;
  font-family: 'icomoon' !important;
  font-style: normal;
}

.map-selection .block {
  margin-bottom: 5px;
}

.map-selection .map-selection-blocks {
  display: flex;
  flex-wrap: wrap;
}

.map-selection .map-block {
  box-sizing: border-box;
  height: 80px;
  position: relative;
  width: calc(100% * (1/2));
  transition: 0.5s all;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  border: 2px solid #0a0a0a;
  cursor: pointer;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sidebar .no-markers {
  padding: 0 0.5rem;
}

.discord-img, .reddit-img {
  width: 100%;
  max-width: 200px;
  margin: 0px;
}

/*Settings tab*/
.settings .block {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.settings .settings-option {
  display: flex;
  padding: 2px 8px;
  margin-left: 10px;
  font-size: 15px;
  font-family: 'Roboto';
  text-transform: uppercase;
  color: #f5f5f5;
  border: 2px solid #393b42;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  line-height: 20px;
}

.settings .settings-option:focus {
  border: 2px solid #d9bb26;
  outline: none;
}

.settings .toggle {
  display: flex;
  padding: 2px 8px;
  margin-left: 10px;
  font-size: 15px;
  font-family: 'Roboto';
  text-transform: uppercase;
  color: #f5f5f5;
  border: 2px solid #393b42;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  line-height: 20px;
  position: relative;
  min-height: 21px;
}

.settings .toggle:before {
  display: inline-block;
  height: 28px;
  width: 46px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-color: #3c3c3c;
  vertical-align: inherit;
}

.settings .toggle:after {
  content: "";
  background-color: #353535;
  display: flex;
  height: 12px;
  width: 12px;
  border-radius: 0;
  transition: all .3s ease;
  position: absolute;
  left: 3px;
}

.settings .toggle.active:after {
  left: 20px;
  background-color: #ffcc00;
  box-shadow: 0 0 12px #ffcc00fa;
}

.checkmark {
  display: inline-block;
  height: 14px;
  width: 14px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: 1px solid #fff;
  margin-right: 10px;
}

.checkmark.active {
  background-image: url(../assets/img/tick.png);
}

.version {
  position: absolute;
  margin: 0;
  left: 0;
  bottom: -10px;
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 10px;
}
/* COLLECTIONS */
.add-collection-block {
  display: flex;
  align-items: center;
  margin: 0 0.5rem;
}
#collections-list {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  gap: 0.25rem;
}

.collection {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--popup-background);
  border: 1px solid transparent;
  padding: 0.25rem 0.5rem;
  position: relative;
}

.collection.active {
  background: linear-gradient(315deg, #322f42 0%, #484463 100%);
  border: 1px solid var(--border-color-light);
}

.collection .collection-name {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.collection .collection-total {
  display: flex;
  align-items: center;
  color: rgb(255 255 255 / 70%);
}

.collection .collection-buttons {
  display: flex;
  gap: 0.25rem;
  position: absolute;
  bottom: -5px;
  right: -5px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.collection:hover .collection-buttons {
  visibility: visible;
  opacity: 1;
}

.collection .collection-dialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem;
  background-color: rgb(0 0 0 / 90%);
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.collection .collection-dialog .collection-dialog-text {
  display: flex;
  font-size: 0.875rem;
}

.collection .collection-dialog .collection-dialog-buttons {
  display: flex;
  gap: 0.75rem;
}

#confirm-delete-collection {
  background-color: #a32929;
  color: #fff;
  font-family: var(--font-bold);
}

#cancel-delete-collection {
  background-color: #383838;
  color: #fff;
}
.collection-button {
  width: 26px;
  height: 26px;
  padding: 0;
  font-size: 1rem;
  color: #fff;
  background-color: rgb(0 0 0 / 60%);
}
.collection-button:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}
#select-collection {
  width: 26px;
  height: 26px;
  padding: 0;
  font-size: 1rem;
}
#confirm-name:before {
  content: "\f00c";
}
#select-collection:before {
  content: "\f733";
}
#edit-collection:before {
  content: "\f044";
}
#delete-collection:before {
  content: "\f2ed";
}
/* MARKERS LIST */
.user-markers-list {
  display: flex;
  flex-direction: column;
  height: 68vh;
}

.user-markers-list .map-categories {
  display: none;
}

.user-markers-list .map-categories.selected {
  display: block;
  animation: fadeIn 0.5s;
  -webkit-animation: fadeIn 0.5s;
  -moz-animation: fadeIn 0.5s;
  -o-animation: fadeIn 0.5s;
  -ms-animation: fadeIn 0.5s;
}

.user-markers-list .category-header {
  display: flex;
  padding: 5px 8px;
  margin-bottom: 5px;
  background-color: #101010;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.user-markers-list .marker-details .marker-title {
  color: #fff;
  overflow: hidden;
  width: 200px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.user-markers-list .marker-details .marker-category {
  color: #fff;
}

.user-markers-list .category-header:after {
  content: "\f339";
  font-family: 'FontAwesome';
  font-size: 18px;
  position: absolute;
  right: 5px;
  top: 3px;
}

.user-markers-list .category-count {
  margin-left: 8px;
}

.user-markers-list .category-header.active:after {
  content: "\f33c";
}

.user-markers-list .marker-block {
  display: flex;
  align-items: center;
}

.user-markers-list .marker-block:hover {
  background-color: #333;
}

.user-markers-list .marker-block:hover > .markers-list-buttons {
  visibility: visible;
  opacity: 1;
}

.user-markers-list .marker-block .marker-image {
  display: flex;
  width: 32px;
  height: 32px;
  padding: 5px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.user-markers-list .marker-block .marker-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  margin: 0 auto;
}

.user-markers-list .marker-block .marker-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-left: 5px;
}

.user-markers-list .marker-block .markers-list-buttons {
  display: flex;
  flex-direction: column;
  -webkit-transition: .2s all ease-in;
  transition: .2s all ease-in;
  visibility: hidden;
  opacity: 0;
}

.user-markers-list .marker-block .markers-list-buttons button {
  margin: 5px;
}

/* LEGEND */
.game-markers-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.game-markers-toggle .show-all {
  margin-right: 8px;
}

.game-markers-toggle .show-all, .game-markers-toggle .hide-all {
  opacity: .4;
  cursor: pointer;
  user-select: none;
}

.game-markers-toggle .show-all.active, .game-markers-toggle .hide-all.active {
  opacity: 1;
}

.text-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.text-toggle .show-all {
  margin-right: 8px;
}

.text-toggle .show-all, .text-toggle .hide-all {
  opacity: .4;
  cursor: pointer;
  user-select: none;
}

.text-toggle .show-all.active, .text-toggle .hide-all.active {
  opacity: 1;
}

.cloud-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.cloud-toggle .show-all {
  margin-right: 8px;
}

.cloud-toggle .show-all, .cloud-toggle .hide-all {
  opacity: .4;
  cursor: pointer;
  user-select: none;
}

.cloud-toggle .show-all.active, .cloud-toggle .hide-all.active {
  opacity: 1;
}

.layer-toggle-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  gap: 0.5rem;
}

.layer-toggle-block .layer-toggle {
  opacity: .4;
  cursor: pointer;
  user-select: none;
}

.layer-toggle-block .layer-toggle.active {
  opacity: 1;
}


.user-markers-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.user-markers-toggle .show-all {
  margin-right: 8px;
}

.user-markers-toggle .show-all, .user-markers-toggle .hide-all {
  opacity: .4;
  cursor: pointer;
  user-select: none;
}

.user-markers-toggle .show-all.active, .user-markers-toggle .hide-all.active {
  opacity: 1;
}

.markers-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.markers-toggle .active {
    opacity: 1;
}

.user-legend {
  display: flex;
  flex-direction: column;
}

.map-legend {
  display: none;
}

.game-legend .map-legend.selected {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 5rem;
}

.user-legend .map-legend.selected {
  display: flex;
  /*flex-wrap: wrap;*/
  flex-direction: column;
  width: 100%;
}

.user-legend .map-legend .no-markers {
  margin: 0 0.5rem;
}

.map-legend .category-toggle {
  display: flex;
  gap: 0.5rem;
  cursor: pointer;
  align-items: center;
  padding: 2px 6px;
  box-sizing: border-box;
  font-size: 13px;
  user-select: none;
  opacity: .5;
  text-decoration: line-through;
}
.map-legend .category-toggle.active {
  opacity: 1;
  text-decoration: none;
}

.map-legend .categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  padding-right: 0.25rem;
}

.map-legend li {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding: 5px 6px;
  box-sizing: border-box;
  width: 50%;
  font-size: 13px;
  opacity: .7;
  user-select: none;
}

.map-legend li:hover {
  opacity: 1;
}

.map-legend li.active {
  opacity: .8;
  text-decoration: none;
}
.map-legend li.active:hover {
  opacity: 1;
}

.map-legend li i {
  display: flex;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
}

.map-legend li .cc {
  display: none;
}

.map-legend li .category-name {
  cursor: pointer;
  line-height: normal;
}

.map-legend li .category-count {
  display: flex;
  margin-left: auto;
}

.toggle-title {
  display: block;
  margin: 15px 0 0 -20px;
  font-size: 18px;
  font-family: 'Roboto';
  font-weight: bold;
  text-transform: uppercase;
  color: #101010;
  padding: 0px 10px 8px 20px;
  background-color: #c4c4c4;
  background-image: url(https://rogerhn.github.io/projects/wildlands/assets/img/dotbg.png);
  width: 180px;
  line-height: 25px;
  position: relative;
  cursor: pointer;
}

.toggle-title:before {
  content: '';
  width: 180px;
  height: 8px;
  position: absolute;
  top: -8px;
  background-image: url(https://rogerhn.github.io/projects/wildlands/assets/img/topborderdot.png);
  left: 1px;
}

.toggle-title:after {
  content: '';
  width: 26px;
  height: 26px;
  position: absolute;
  margin-left: 10px;
  background-image: url(https://rogerhn.github.io/projects/wildlands/assets/img/toggle.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center 0px;
  -webkit-transition: .2s all ease-in;
  transition: .2s all ease-in;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.toggle-title.active:after {
  content: '';
  width: 26px;
  height: 26px;
  position: absolute;
  background-image: url(https://rogerhn.github.io/projects/wildlands/assets/img/toggle.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center 0px;
  -webkit-transition: .2s all ease-in;
  transition: .2s all ease-in;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.list-title {
  display: block;
  margin: 0px 25px 0 0px;
  font-size: 24px;
  font-weight: 400;
  font-family: 'Redemption';
  text-transform: uppercase;
  padding: 0;
  line-height: 26px;
  position: relative;
  text-shadow: 2px 2px #000;
}

.list-title:after {
  background-image: url(../assets/img/line.png);
  background-repeat: repeat-x;
  background-size: auto 2px;
  bottom: 0px;
  content: '';
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0;
}

.user-list, .allmarkers-list, .markers-list, .maps-list {
  float: none;
  border: none;
  padding: 0px;
  margin: 0px;
  display: inline-block;
  width: 100%;
}

.user-list li, .allmarkers-list li, .markers-list li, .maps-list li {
  display: flex;
  align-items: center;
  white-space: normal;
  width: 100%;
  overflow: hidden;
  list-style: none;
}

.user-list i, .allmarkers-list i, .markers-list i, .maps-list i {
  display: flex;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 0px;
  float: left;
  margin-right: 2px;
  margin-bottom: 5px;
  margin-top: 4px;
  line-height: 30px;
}

.user-list label, .allmarkers-list label, .markers-list label, .maps-list label {
  display: flex;
  align-items: center;
  font-family: 'Roboto';
  font-size: 13px;
  text-transform: capitalize;
  width: 100%;
  padding-left: 5px;
  padding-right: 90px;
  text-shadow: 1px 1px #000;
  letter-spacing: 0.5px;
  line-height: 18px;
}

.allmarkers-list li .count {
  display: flex;
  margin-left: auto;
}

.markers-list .count_block {
  display: flex;
  position: absolute;
  right: 40px;
  justify-content: flex-end;
  padding: 2px 4px 0;
}

.markers-list .count_block.bg {
  background-color: rgba(30, 30, 30, 0.30);
  border: 1px solid #000;
  justify-content: center;
  min-width: 38px;
}

.markers-list .collected {
  color: #fff;
  min-width: 12px;
  text-align: center;
}

.markers-list .qntbar {
  margin: 0 2px;
}

.markers-list .count {
  color: #fff;
  min-width: 12px;
  text-align: center;
}

.mtop15px {
  margin-top: 15px;
}

a.btn {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

a.btn:hover .btn-text {
  background-color: #203338;
  color: #f0f5fb;
  border: 1px solid #171f21;
  border-left: none;
}

.btn i {
  display: flex;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
}

.btn-text {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
  background: #000;
  padding: 5px;
  border: 1px solid #000;
  border-left: none;
  margin-left: -2px;
  flex-shrink: 0;
  font-weight: 100;
  width: 215px;
}

.dialog {
  position: relative;
}

.prompt {
  position: absolute;
  top: 0;
  background: #dac5ad;
  text-align: center;
  border: 1px solid #76643e;
  padding: 10px;
  box-shadow: 0px 3px 1px #76643e;
}

.prompt .text {
  display: block;
  margin: 0px;
}

.prompt .clearyes, .prompt .patchyes {
  display: inline-block;
  margin: 10px 10px 0 0;
  background: #456513;
  width: 50px;
  border: none;
  color: #fff;
}

.prompt .clearno, .prompt .patchno {
  display: inline-block;
  margin: 10px 0px 0 0px;
  background: #F44336;
  width: 50px;
  border: none;
  color: #fff;
}

.cc {
  opacity: 0;
  position: absolute;
  width: 46px;
  height: 45px;
  margin: 0 15px 0 0;
  right: 0px;
}

.cc, .cl {
  display: inline-block;
  cursor: pointer;
}

.cl {
  position: relative;
}

.cl::-moz-selection {
  background: transparent;
}

.cl::selection {
  background: transparent;
}

/*
.cc+.cl:after {
content: '';
background-image: url('../assets/img/hide.png');
background-position: center;
background-size: auto 100%;
width: 18px;
height: 18px;
background-repeat: no-repeat;
display: inline-block;
padding: 2px;
right: 10px;
text-align: center;
vertical-align: top;
position: absolute;
}

.cc:checked+.cl:after {
background-image: url('../assets/img/show.png');
}
*/
.cc:focus+.cl {
  outline: none;
  /* focus style */
}

.item-title {
  background: #d39e35;
  margin: 10px 0px 5px -15px;
  padding: 2px 15px;
  font-size: 15px;
  color: #101010;
  font-weight: bold;
  font-family: 'Roboto';
}

.items-list {
  float: none;
  border: none;
  padding: 0px;
  margin: 0px;
  display: inline-block;
}

.items-list li {
  line-height: 18px;
  white-space: normal;
  width: 100%;
  overflow: hidden;
  float: left;
  list-style: none;
}


.sidebar-pane .text a.link {
  font-family: 'Roboto';
  color: inherit;
  text-decoration: underline;
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}