@charset "UTF-8";
/*
Theme Name: Red Shoes Rock
Theme URI: redshoesrock.org.au
Author: New Best Friend
Description: Custom theme for Red Shoes Rock
Text Domain: red-shoes-rock
Version: 6.3
*/

.hide-on-mobile {
  @media (max-width: 781px) {
    & {
      display: none !important;
    }
  }
}
.hide-on-tablet {
  @media (min-width: 782px) and (max-width: 1009px) {
    & {
      display: none !important;
    }
  }
}
.hide-on-desktop {
  @media (min-width: 1010px) {
    & {
      display: none !important;
    }
  }
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}

/*
 * CHANGE CONTENT ORDER
 */
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
@media (max-width: 781px) {
  .order-mobile-1 {
    order: 1;
  }
  .order-mobile-2 {
    order: 2;
  }
  .order-mobile-3 {
    order: 3;
  }

  .align-mobile-start {
    justify-content: flex-start;
  }
}

.w-100 {
  width: 100%;
}

:is(li, p) a:not([class]) {
  text-decoration: none;
  border-bottom: 1px solid;
  border-bottom-style: dotted;
  padding-block-end: 1px;
  transition: 0.1s ease;
  &:hover {
    border-bottom: 2px solid;
    padding-block-end: 0px;
    opacity: 0.8;
  }
}