@layer w3 {
  /* Box-sizing */
  html {
    box-sizing: border-box;
  }
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }
  html {
    text-size-adjust: 100%;
  }
  body {
    margin: 0;
  }

  /* Semantic block elements */
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  main,
  menu,
  nav,
  section {
    display: block;
  }
  summary {
    display: list-item;
  }
  [hidden],
  template {
    display: none;
  }

  /* Links */
  a {
    background-color: transparent;
  }
  a:active,
  a:hover {
    outline-width: 0;
  }

  /* Inline text */
  b,
  strong {
    font-weight: bolder;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }

  /* Media */
  img {
    border-style: none;
  }

  /* Code */
  code,
  kbd,
  pre,
  samp {
    font-family: monospace, monospace;
    font-size: 1em;
  }

  /* Horizontal rule */
  hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
  }

  /* Base typography */
  html,
  body {
    font-family: Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.5;
  }
  html {
    overflow-x: hidden;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    margin: 10px 0;
  }
  hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
  }
  .w3-image {
    max-width: 100%;
    height: auto;
  }
  img {
    vertical-align: middle;
  }
  a {
    color: inherit;
  }

  /* Button */
  .w3-button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    -webkit-touch-callout: none;
    user-select: none;
  }
  .w3-button:disabled {
    cursor: not-allowed;
    opacity: 0.3;
  }

  /* Block */
  .w3-block {
    display: block;
    width: 100%;
  }

  /* Clearfix — retained for remaining float contexts (e.g., forsale-slideshow-wrap) */
  .w3-container::after,
  .w3-container::before,
  .w3-clear::after,
  .w3-clear::before {
    content: "";
    display: table;
    clear: both;
  }

  /* Grid */
  .w3-row,
  .w3-row-padding {
    display: flex;
    flex-wrap: wrap;
  }

  .w3-col,
  .w3-half,
  .w3-third,
  .w3-twothird {
    width: 100%;
  }

  @media (width >= 601px) {
    .w3-third {
      width: 33.33333%;
    }
    .w3-half {
      width: 49.99999%;
    }
    .w3-twothird {
      width: 66.66666%;
    }
  }

  /* Show/hide */
  .w3-show-block {
    display: block;
  }

  @media (width <= 600px) {
    .w3-mobile {
      display: block;
      width: 100%;
    }
  }

  @media (width >= 993px) {
    .w3-hide-large {
      display: none;
    }
  }

  /* Card */
  .w3-card {
    box-shadow:
      0 2px 5px 0 rgb(0 0 0 / 16%),
      0 2px 10px 0 rgb(0 0 0 / 12%);
  }

  /* Round */
  .w3-round,
  .w3-round-medium {
    border-radius: 4px;
  }

  /* Row padding */
  .w3-row-padding,
  .w3-row-padding > .w3-half,
  .w3-row-padding > .w3-third,
  .w3-row-padding > .w3-twothird,
  .w3-row-padding > .w3-col {
    padding: 0 8px;
  }

  /* Container */
  .w3-container {
    padding: 0.01em 16px;
  }

  /* Section */
  .w3-section {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  /* Animation */
  .w3-animate-opacity {
    animation: opac 0.8s;
  }

  @keyframes opac {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /* Opacity */
  .w3-opacity {
    opacity: 0.6;
  }
  .w3-hover-opacity-off:hover {
    opacity: 1;
  }

  /* Font sizes */
  .w3-large {
    font-size: 18px;
  }
  .w3-xlarge {
    font-size: 24px;
  }

  /* Text alignment */
  .w3-left-align {
    text-align: left;
  }
  .w3-right-align {
    text-align: right;
  }

  /* Spacing */
  .w3-margin-left {
    margin-left: 16px;
  }
  .w3-padding {
    padding: 8px 16px;
  }
  .w3-padding-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }


  /* Button hover */
  .w3-button:hover {
    color: #000;
    background-color: #ccc;
  }
}
