/* Theme Name: skinandme
Theme URI: https://skinandme.com/
Author: Skin + Me
Author URI: https://skinandme.com/
Description: Responsive wordpress theme made for and by SkinAndMe.com
Version: 1.0.0
Text Domain: skinandme
Tags: custom-background, custom-logo, custom-menu, featured-images, responsive, bootstrap, mobile-first */

@font-face {
  font-family: proxima-nova;
  src: url(assets/fonts/ProximaNovaRegular.otf);
  font-weight: 400;
}
@font-face {
  font-family: proxima-nova;
  src: url(assets/fonts/ProximaNovaThin.otf);
  font-weight: 300;
}
@font-face {
  font-family: proxima-nova;
  src: url(assets/fonts/ProximaNovaBold.otf);
  font-weight: 700;
}
@font-face {
  font-family: proxima-nova;
  src: url(assets/fonts/ProximaNovaExtrabold.otf);
  font-weight: 900;
}
@font-face {
  font-family: masqualero;
  src: url(assets/fonts/MasqualeroW04-Regular.ttf) format("truetype"),
    url(assets/fonts/MasqualeroW04-Regular.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: masqualero;
  src: url(assets/fonts/Masqualero\ -\ Bold.otf);
  font-weight: 700;
}
@font-face {
  font-family: masqualero;
  src: url(assets/fonts/Masqualero\ -\ Light.otf);
  font-weight: 300;
}
@font-face {
  font-family: viktorie;
  src: url(assets/fonts/Viktorie.otf);
  font-weight: 400;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body,
#root {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  font-family: proxima-nova, sans-serif;
}

:focus {
  outline: 1px solid #aaa; /* Adjust to suit your tastes */
}

/* no outline for non-keyboard-inputs elements */
:disabled {
  outline: none;
}

::selection {
  background: #ffc82d;
}

.content {
  margin-top: 100px;
}

/* Default p styling */
p {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
}

/* default a styling */
a {
  text-decoration: underline;
  color: var(--color-offBlack);
  transition: 0.3s;
}
a:hover {
  transition: 0.3s;
  color: var(--color-linkBlue);
}

a.external-link {
  color: var(--color-linkBlue);
}

/* list styling */

ul {
  padding-left: 32px;
  margin-bottom: 16px;
}

ol li:not(:last-child) {
  margin-bottom: 16px;
}

/* Default font styling */

ul,
figure,
figcaption {
  font-family: proxima-nova, sans-serif;
}

/* Menu styling*/

.index__list {
  list-style: none;
}
.index__list .children {
  list-style: disc;
  padding-left: 60px;
}

.index__list li {
  /* margin: 10px 0; */
}

.index__list a {
  font-family: var(--font-proximaNava);
  font-weight: 700;
  font-style: normal;
  color: var(--color-midGrey);
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0s;
}

.index__list .children a {
  font-size: 16px;
}

.index__list a:hover {
  color: var(--color-offBlack);
  border-bottom: 3px solid var(--color-primaryYellow);
}

.breadcrumbs {
  padding-left: 0;
}

.breadcrumbs ul {
  padding-left: 0;
  margin-bottom: 0;
}
.breadcrumbs li {
  display: flex;
}
.breadcrumbs li a {
  margin-right: 25px;
  position: relative;
  text-transform: uppercase;
  font-family: var(--font-proximaNova);
  font-weight: 700;
  color: var(--color-midGrey);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

.breadcrumbs a.active,
.breadcrumbs a:hover {
  color: var(--color-offBlack);
  border-bottom: 2px solid var(--color-primaryYellow);
}

.breadcrumbs li.page_item_has_children > a::after {
  content: ">";
  position: absolute;
  right: -15px;
}
