* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: Roboto, Arial, sans-serif;
  box-sizing: border-box;
  box-shadow: none;
}

*:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
  border: 2px;
}

html,
body {
  height: 100%;
}

body {
  background-image: url(../images/bg-pattern.png);
  background-repeat: repeat;
  background-size: 170px;
}

#calendars-modal {
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  background-color: #212327;
  height: auto;
  color: white;
  z-index: 5;
  transition: 800ms top;
}
#calendars-modal.active {
  top: 0;
}
#calendars-modal .calendars-div-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 25px 2%;
  position: relative;
}
#calendars-modal .calendars-div-inner .calendars-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.3em;
  cursor: pointer;
}
#calendars-modal .calendars-div-inner .calendars-title {
  font-size: 1.6em;
  text-align: center;
}
#calendars-modal .calendars-div-inner .calendars-inner-div ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  transform-origin: top center;
  margin: 15px 0;
}
#calendars-modal .calendars-div-inner .calendars-inner-div ul li {
  margin-top: 1%;
  list-style: none;
  width: calc(100% / 3);
  min-width: 400px;
  text-align: center;
}
#calendars-modal .calendars-div-inner .calendars-inner-div ul li a {
  padding: 0 7.5px;
  color: white;
  cursor: pointer;
  transition: 300ms color;
  position: relative;
  margin-top: 10px;
  font-size: 15px;
}
#calendars-modal .calendars-div-inner .calendars-inner-div ul li a::before {
  width: 7px;
  height: 7px;
  content: "";
  background-color: white;
  transition: 300ms color;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
}
#calendars-modal .calendars-div-inner .calendars-inner-div ul li a:hover::before, #calendars-modal .calendars-div-inner .calendars-inner-div ul li a:hover {
  color: #bbb;
}

header {
  width: 100%;
  background-color: #212327;
  height: 85px;
}
header .header-inner {
  background-color: #212327;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px 15px;
  max-width: 1520px;
  margin: 0 auto;
  position: relative;
}
header .header-inner .mobile-filter-icon {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 1.2em;
  color: white;
  display: none;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
header .header-inner .mobile-filter-icon i {
  font-size: 1.4em;
}
header .header-inner .logo {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
header .header-inner .logo .fu-image {
  height: 80%;
  overflow-y: hidden;
}
header .header-inner .logo .fu-image img {
  height: 100%;
}
header .header-inner .logo .page-name {
  color: white;
  font-size: 1.4em;
  font-weight: 400;
}
header .header-inner .pagination {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5em;
  color: white;
  font-weight: 500;
}
header .header-inner .calendars {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: white;
  flex: 1;
}
header .header-inner .calendars .calendars-icon {
  font-size: 1.2em;
  cursor: pointer;
}
header .header-inner .calendars .calendars-icon i {
  margin-left: 10px;
  font-size: 1.4em;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #212327;
  column-gap: 20px;
  row-gap: 20px;
  padding: 20px 10px;
}
footer .copyright a {
  text-align: center;
  font-size: 0.8em;
  color: #bbbbbb;
  transition: 300ms all;
  display: block;
}
footer .copyright a:hover {
  color: white;
}
footer ul.social-icons {
  display: flex;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}
footer ul.social-icons li {
  transition: 300ms all;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
footer ul.social-icons li a {
  color: #bbb;
  transition: 300ms all;
}
footer ul.social-icons li a i {
  font-size: 1em;
}
footer ul.social-icons li:hover {
  background-color: white;
}
footer ul.social-icons li:hover a {
  color: black;
}

@media only screen and (max-width: 768px) {
  header {
    font-size: 0.6em;
    height: 75px;
  }
  header .header-inner {
    padding-top: 0;
  }
  header .header-inner .mobile-filter-icon {
    display: flex;
  }
  header .header-inner .logo {
    flex: none;
    width: 100% !important;
    justify-content: center;
    height: 50%;
    gap: 5px;
  }
  header .header-inner .pagination {
    position: static;
    transform: translate(0, 0);
    font-weight: 400;
    font-size: 1.3em;
  }
  header .header-inner .calendars .calendars-icon {
    font-size: 1.3em;
  }
}
@media only screen and (max-width: 540px) {
  footer {
    font-size: 0.7em;
  }
    footer{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        background-color: #212327;
        column-gap: 12px;
        row-gap: 4px;
        position: fixed;
        bottom: 0;
        padding: 10px 10px;
    }
}
@media only screen and (max-width: 768px) {
    footer{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        background-color: #212327;
        column-gap: 12px;
        row-gap: 4px;
        position: fixed;
        bottom: 0;
        padding: 10px 10px;
    }
}
/*# sourceMappingURL=index.css.map */
