/*
	Theme Name:        Nottoday
	Description:       WordPress template for Nottoday Media project.
	Version:           2.1.08
	Requires at least: 6.3.1
	Tested up to:      6.8.2
	Requires PHP:      8.1
	Text Domain:       nottoday
*/
/* Variables */
:root {
  /* Colors */
  --white: #fff;
  --black: #0d0d0d;
  --dark-yellow: #e4ad12;
  --primary-yellow: #ffc933;
  /* Sizes */
  --main-header-size: 64px;
  --small-wrapper: 800px;
  --wrapper: 1200px;
  --mobile-wrapper: 90vw;
  --section-padding: 100px;
  --small-radius: 6px;
  /* Animations */
  --fast-animation: ease-in-out .075s;
  --main-animation: ease-in-out .1s;
  --slow-animation: ease-in-out .25s;
  --very-slow-animation: ease-in-out .5s;
}
@media screen and (max-width: 768px) {
  :root {
    --section-padding: 50px;
  }
}

/* Reset */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-margin-top: var(--main-header-size);
}

html {
  font-family: "Jost", sans-serif;
  color: var(--black);
}
html::before {
  content: "";
  background: url(img/main-background.jpg) center center;
  background-position: center;
  background-size: cover;
  height: 100lvh;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

body {
  margin: 0;
  margin-top: var(--main-header-size);
  position: relative;
  z-index: 1;
}

/* Common */
a.link {
  text-decoration: none;
  color: unset;
}
a.link.hover:hover {
  text-decoration: underline;
}

img {
  vertical-align: middle;
}

.no-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (max-width: 768px) {
  .not-mobile {
    display: none !important;
  }
}

.wrapper {
  width: var(--wrapper);
  margin-right: auto;
  margin-left: auto;
}
.wrapper.small {
  width: var(--small-wrapper);
}
@media screen and (max-width: 768px) {
  .wrapper.small {
    width: var(--mobile-wrapper);
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    width: var(--mobile-wrapper);
  }
}

.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}

.categories span :not(:last-of-type)::after, .categories a :not(:last-of-type)::after {
  content: ", ";
}

.block-header h1, .block-header h2 {
  margin: 0;
  font-size: 48px;
}

.button {
  background-color: var(--black);
  padding: 16px 42px;
  border-radius: var(--small-radius);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  transition: all var(--main-animation);
}
.button:hover {
  color: var(--primary-yellow);
}
.button:hover span {
  color: var(--primary-yellow);
}
.button img {
  width: 24px;
  height: 24px;
}
.button span {
  color: var(--white);
  transition: all var(--main-animation);
}
.button_white_bordered {
  border: 2px solid var(--white);
}

/* Form */
/* form{} */
label {
  margin-bottom: 6px;
  font-size: 22px;
}

input,
textarea {
  padding: 12px 14px;
  border: 1px solid var(--black);
  border-radius: var(--small-radius);
  font-family: "Jost", sans-serif;
  font-size: 20px;
  resize: none;
}

/* Basic */
.main-header {
  background-color: var(--black);
  height: var(--main-header-size);
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  /* Navigation */
  /* Logo */
}
.main-header .wrapper {
  height: var(--main-header-size);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-header__nav {
  height: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.main-header__nav a {
  font-size: 18px;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--main-animation);
}
.main-header__nav a:hover {
  color: var(--dark-yellow);
}
.main-header__nav > ul {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  /* Item */
}
.main-header__nav > ul > li {
  padding: 0 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* Submenu */
}
.main-header__nav > ul > li .sub-menu {
  background-color: var(--black);
  margin: 0;
  padding: 12px 14px;
  border-radius: 0 0 var(--small-radius) var(--small-radius);
  list-style: none;
  position: absolute;
  top: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--main-animation);
}
.main-header__nav > ul > li:not(:hover) > .sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}
.main-header__mobile-nav {
  height: 100%;
  aspect-ratio: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .main-header__mobile-nav {
    display: none;
  }
}
.main-header__mobile-nav img {
  width: auto;
  height: 24px;
}
.main-header__mobile-nav span {
  color: var(--white);
}
.main-header__mobile-menu {
  background-color: var(--black);
  padding: 80px 40px 60px 40px;
  position: fixed;
  top: var(--main-header-size);
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: all var(--fast-animation);
}
body:not(.menu-open) .main-header__mobile-menu {
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
}
.main-header__mobile-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.main-header__mobile-menu ul li:has(> a[href="#"]) > a {
  display: none;
}
.main-header__mobile-menu ul li a {
  font-size: 20px;
  text-decoration: none;
  color: var(--white);
}
.main-header__mobile-menu ul li a:hover {
  color: var(--dark-yellow);
}
.main-header__logo {
  height: 120%;
  margin: 0 80px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .main-header__logo {
    margin: 0 auto;
  }
}
.main-header__logo img {
  width: auto;
  height: 100%;
  margin-top: 14px;
}
body.menu-open .main-header__hamburger img:first-child {
  display: none;
}
body:not(.menu-open) .main-header__hamburger img:last-child {
  display: none;
}

.main-main {
  display: flex;
  flex-direction: column;
}

.main-footer {
  background-color: var(--black);
  padding: 40px 0;
}
.main-footer > .wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .main-footer > .wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.main-footer__column {
  display: flex;
  flex-direction: column;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .main-footer__column span {
    text-align: center;
  }
}
.main-footer__column-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-footer__column-socials img {
  width: 28px;
  height: auto;
  transition: opacity var(--slow-animation);
}
.main-footer__column-socials img:hover {
  opacity: 0.8;
}

/* Parts */
.hero {
  background-color: var(--black);
  height: calc(100vh - var(--main-header-size) - 14px);
  padding: 14px;
  padding-top: 0;
  box-sizing: content-box;
  position: relative;
  /* Arrows */
  /* Posts box */
}
@media screen and (max-width: 768px) {
  .hero {
    height: 140vw;
  }
}
.hero__arrow {
  width: 8vw;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity var(--fast-animation);
}
@media screen and (max-width: 768px) {
  .hero__arrow {
    display: none;
  }
}
.hero__arrow:first-child {
  left: 14px;
  transform: rotate(180deg);
}
.hero__arrow:hover {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05));
  opacity: 1;
}
.hero__arrow span {
  font-size: 60px;
  color: var(--white);
}
.hero__box {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  position: relative;
  display: flex;
  /* Post */
}
.hero__box::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.hero__box-post {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
  flex-shrink: 0;
}
.hero__box-post-content {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .hero__box-post-content {
    padding: 40px 0;
    justify-content: flex-end;
  }
}
.hero__box-post-content .categories,
.hero__box-post-content .tags {
  width: 80%;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .hero__box-post-content .categories,
  .hero__box-post-content .tags {
    font-size: 15px;
  }
}
.hero__box-post-content .categories span,
.hero__box-post-content .tags span {
  display: block;
  text-align: center;
}
.hero__box-post-content h1,
.hero__box-post-content h2 {
  width: 70%;
  margin: 0 0 24px 0;
  font-size: 42px;
  line-height: 50px;
  text-align: center;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .hero__box-post-content h1,
  .hero__box-post-content h2 {
    width: 85%;
    font-size: 24px;
    line-height: 28px;
  }
}
.hero__dots {
  position: absolute;
  right: 0;
  bottom: 5vh;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .hero__dots {
    bottom: 35px;
  }
}
.hero__dots > div {
  --size: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  width: var(--size);
  height: var(--size);
  border-radius: var(--size);
  transition: width var(--main-animation), transform var(--main-animation);
}
.hero__dots > div.active {
  width: calc(var(--size) * 3);
}
.hero__dots > div:not(.active) {
  cursor: pointer;
}
.hero__dots > div:not(.active):hover {
  transform: scale(1.25);
}
.hero__more {
  padding: 30px;
  cursor: pointer;
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .hero__more {
    display: none;
  }
}
.hero__more span {
  font-size: 36px;
  color: var(--white);
  animation: up-down 0.75s infinite alternate;
}

.posts-grid {
  padding: var(--section-padding) 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* Grid */
  /* Navigation */
}
.posts-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  /* Post */
}
@media screen and (max-width: 768px) {
  .posts-grid__grid {
    display: flex;
    flex-direction: column;
  }
}
.posts-grid__grid-item {
  border-radius: var(--small-radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--black);
  transition: background-color var(--main-animation);
  /* Image */
  /* Content */
}
.posts-grid__grid-item-image {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  border-radius: var(--small-radius);
  border: 1px solid var(--black);
  padding: 20px;
  aspect-ratio: 1.6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .posts-grid__grid-item-image {
    height: calc(var(--mobile-wrapper) / 1.6);
  }
}
.posts-grid__grid-item-image nav .categories,
.posts-grid__grid-item-image nav .tags {
  display: flex;
  gap: 10px;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white);
}
.posts-grid__grid-item-image nav .categories a, .posts-grid__grid-item-image nav .categories span,
.posts-grid__grid-item-image nav .tags a,
.posts-grid__grid-item-image nav .tags span {
  background-color: var(--white);
  padding: 6px 14px;
  border-radius: 100vw;
  border: 1px solid var(--black);
  display: block;
  color: var(--black);
}
.posts-grid__grid-item-image nav .categories a:hover, .posts-grid__grid-item-image nav .categories span:hover,
.posts-grid__grid-item-image nav .tags a:hover,
.posts-grid__grid-item-image nav .tags span:hover {
  background-color: var(--primary-yellow);
}
.posts-grid__grid-item-content {
  height: 100%;
  border-radius: var(--small-radius);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.posts-grid__grid-item-content h3 {
  margin: 0;
  line-height: 130%;
}
.posts-grid__grid-item-content h3:hover {
  text-decoration: underline;
}
.posts-grid__grid-item-content-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.posts-grid__grid-item-content-nav .tags a, .posts-grid__grid-item-content-nav .tags span,
.posts-grid__grid-item-content-nav .date a,
.posts-grid__grid-item-content-nav .date span {
  font-size: 14px;
}
.posts-grid__grid-item-content-nav .tags a:hover, .posts-grid__grid-item-content-nav .tags span:hover,
.posts-grid__grid-item-content-nav .date a:hover,
.posts-grid__grid-item-content-nav .date span:hover {
  text-decoration: underline;
}
.posts-grid__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.posts-grid__nav .button.disabled {
  pointer-events: none;
}
.posts-grid__nav .button.disabled img {
  animation: 1s ease-in-out 0s infinite rotation;
}

.share-your-story__wrapper {
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .share-your-story__wrapper {
    flex-direction: column;
    gap: 60px;
  }
}
.share-your-story__wrapper > img {
  width: 26%;
  transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .share-your-story__wrapper > img {
    width: 80%;
  }
}
.share-your-story__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.share-your-story__content h2 {
  margin: 0;
  font-size: 36px;
}
.share-your-story__content p {
  margin: 0 0 20px 0;
  font-size: 22px;
}

.about {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
}
.about__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Content */
  /* Image */
}
.about__section:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .about__section {
    flex-direction: column !important;
  }
}
.about__section-content {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .about__section-content {
    width: 100%;
  }
}
.about__section-content h3 {
  margin: 0;
  font-weight: 600;
  font-size: 58px;
}
.about__section-content p {
  font-size: 22px;
}
.about__section-content .button {
  width: fit-content;
}
.about__section-image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .about__section-image {
    width: 80%;
  }
}
.about__section-image img {
  width: 100%;
  height: auto;
}

.info-page {
  min-height: calc(100vh - var(--main-header-size));
  padding: var(--section-padding) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Image */
}
@media screen and (max-width: 768px) {
  .info-page {
    flex-direction: column;
  }
}
.info-page__image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .info-page__image {
    width: 80%;
    display: none;
  }
}
.info-page__image img {
  width: 100%;
  height: auto;
}

.merch {
  display: flex;
  flex-direction: column;
  gap: calc(var(--section-padding) * 0.7);
}
.merch__box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .merch__box {
    flex-direction: column;
  }
}
.merch__box > img {
  width: 40%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .merch__box > img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .merch__content {
    width: 100% !important;
  }
}
.merch__content h1 {
  margin: 0;
  font-weight: 500;
  font-size: 48px;
  line-height: 52px;
}
.merch__content p {
  margin-bottom: 0;
  font-size: 22px;
}
.merch__box:has(img) .merch__content {
  width: 45%;
}
.merch__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .merch__grid {
    display: flex;
    flex-direction: column;
  }
}
.merch__grid-item a:has(img) {
  background-color: #fff;
  width: 100%;
  height: auto;
  border-radius: var(--small-radius);
  border: 1px solid var(--black);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merch__grid-item a:has(img) img {
  width: 80%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1;
}

.merch-page {
  padding: var(--section-padding) 0;
}
.merch-page .block-header h1 {
  font-weight: 500;
  font-size: 48px;
  line-height: 52px;
}
@media screen and (max-width: 768px) {
  .merch-page .block-header h1 {
    font-size: 38px;
    line-height: 120%;
  }
}
.merch-page__content {
  margin-top: calc(var(--section-padding) * 0.7);
  display: flex;
  align-items: flex-start;
  gap: calc(var(--section-padding) * 0.7);
}
@media screen and (max-width: 768px) {
  .merch-page__content {
    flex-direction: column;
  }
}
.merch-page__content-img {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .merch-page__content-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.merch-page__content-img-thumb {
  background-color: #fff;
  width: 100%;
  height: auto;
  border-radius: var(--small-radius);
  border: 1px solid var(--black);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merch-page__content-img-thumb img {
  width: 80%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1;
}
.merch-page__content-img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.merch-page__content-body {
  flex: 7;
  font-size: 22px;
  line-height: 34px;
}
.merch-page__content-body > *:first-child {
  margin-top: 0;
}
.merch-page__content-body > *:last-child {
  margin-bottom: 0;
}
.merch-page__content-body a {
  color: var(--dark-yellow);
}
.merch-page__content-body a:not(:hover) {
  text-decoration: none;
}

.support {
  /* Content */
}
.support__content {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .support__content {
    width: 100%;
  }
}
.support__content h2 {
  margin: 0;
  font-weight: 500;
  font-size: 48px;
  line-height: 52px;
}
.support__content p {
  font-size: 22px;
  line-height: 24px;
}
.support__content-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.support__content-card:not(:first-of-type) {
  margin-top: 20px;
}
.support__content-card h3 {
  margin: 0;
  font-size: 22px;
}
.support__content-card-item {
  display: flex;
  gap: 20px;
}
.support__content-card-item span {
  font-size: 22px;
}

.contacts {
  /* Content */
}
.contacts__content {
  width: 50%;
  padding: 0 7.5%;
}
@media screen and (max-width: 768px) {
  .contacts__content {
    width: 100%;
  }
}
.contacts__content h2 {
  margin: 0;
  font-weight: 500;
  font-size: 48px;
  line-height: 52px;
}
.contacts__content form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.contacts__content form input {
  margin-bottom: 14px;
}
.contacts__content form button {
  margin-top: 24px;
  align-self: center;
}
.contacts__content-messages {
  padding-top: 40px;
}
.contacts__content-messages > div {
  width: 100%;
  display: block;
}
.contacts__content-messages > div:not(.active) {
  display: none;
}
.contacts__content-messages span {
  font-size: 22px;
}

.single-content__box {
  padding: 60px 0;
  font-size: 22px;
  line-height: 34px;
}
.single-content__box a {
  color: var(--dark-yellow);
}
.single-content__box a:not(:hover) {
  text-decoration: none;
}
.single-content__box .wp-block-embed.is-type-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.single-content__box .wp-block-embed.is-provider-soundcloud iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.single-content__box .wp-block-image {
  border-radius: 10px;
  border: 1px solid var(--black);
  overflow: hidden;
}
.single-content__box .wp-block-image a {
  width: 100%;
}
.single-content__box .wp-block-image a img {
  width: 100%;
  height: auto;
}
.single-content__box .wp-element-caption {
  background: var(--black) !important;
  margin: 0;
  padding: 10px 20px !important;
  font-size: 20px !important;
  color: var(--white) !important;
}
.single-content__share h2 {
  margin-top: 0;
  font-size: unset;
}
.single-content__share-container {
  display: flex;
  gap: 20px;
}
.single-content__nav {
  display: flex;
  justify-content: space-between;
}
.single-content__more {
  margin-bottom: var(--section-padding);
}
.single-content__more h2 {
  margin-top: 0;
}

.error-page {
  min-height: calc(100svh - var(--main-header-size));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.error-page h1 {
  margin: 0;
  font-size: 64px;
}
.error-page span {
  font-size: 20px;
}

.messages {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.messages:not(:has(.messages__item)) {
  display: none;
}
@media screen and (max-width: 768px) {
  .messages {
    right: calc((100vw - var(--mobile-wrapper)) / 2);
    bottom: calc((100vw - var(--mobile-wrapper)) / 2);
    left: calc((100vw - var(--mobile-wrapper)) / 2);
  }
}
.messages__item {
  background-color: var(--white);
  max-width: 30vw;
  padding: 20px;
  border: 1px solid var(--black);
  border-radius: var(--small-radius);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .messages__item {
    max-width: 100%;
  }
}
.messages__item h3 {
  margin: 0 0 4px 0;
}
.messages__item p {
  margin: 0;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes up-down {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0);
  }
}
/*  Yan Metelitsa    __  
 *  yanmet.com      / _) 
 *  dev      .-^^^-/ /   
 *        __/       /    
 *       <__.|_|-|_|   */

/*# sourceMappingURL=style.css.map */
