@charset "UTF-8";
/* 
	Author :: Elodie BAYET
*/
/*
    Global Placeholders
*/
@import url("https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital@1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,200;1,200&family=Roboto:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300&display=swap");
/*
    Global Variables
*/
/*
    Global Mixins
*/
.question .choice, .applogo > span, #uihead .navigation, a, a:link, a:visited, button, nav li {
  transition: 0.25s ease-in-out;
}

/* Kit Author */
#author {
  text-align: center;
}
#author p {
  font-size: 1.2rem;
  line-height: 2;
}
#author p * {
  display: inline-block;
  vertical-align: bottom;
}
#author p img {
  width: 18px;
  display: inline-block;
  margin-left: 3px;
  margin-top: -7px;
}

@keyframes SlideUp {
  0% {
    bottom: 0%;
    opacity: 0;
  }
  33% {
    bottom: 33%;
    opacity: 0;
  }
  100% {
    bottom: 100%;
    opacity: 1;
  }
}
@keyframes SlideDown {
  0% {
    top: 0%;
    opacity: 0;
  }
  33% {
    top: 33%;
    opacity: 0;
  }
  100% {
    top: 100%;
    opacity: 1;
  }
}
@keyframes Spin {
  0% {
    transform: rotate(0deg);
    filter: brightness(125%);
  }
  50% {
    transform: rotate(180deg);
    filter: brightness(100%);
  }
  100% {
    transform: rotate(360deg);
    filter: brightness(125%);
  }
}
@keyframes Disapear {
  0% {
    text-shadow: 0px 6px 4px rgb(165.75, 165.75, 165.75);
    opacity: 1;
  }
  100% {
    text-shadow: 0px 0px 0px #cccccc;
    opacity: 0.7;
  }
}
@keyframes Onload {
  0% {
    background-color: rgb(255, 255, 255);
  }
  100% {
    background-color: rgb(242.25, 242.25, 242.25);
  }
}
body {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

main h1, main h3 {
  color: rgb(127.5, 127.5, 127.5);
}
main h2 {
  color: rgb(178, 1, 89);
}
main pre {
  border: 1px solid rgb(179, 0, 0);
  padding: 18px;
}
main a:not([class]) {
  color: rgb(0, 0, 0);
  border-bottom: 1px solid rgb(178, 1, 89);
}
main a:not([class]):hover, main a:not([class]):focus {
  color: rgb(151.3, 1, 75.7254237288);
  border-bottom: 1px solid rgb(227.3726256983, 1.2773743017, 113.6863128492);
}
main dd::before {
  color: rgb(151.3, 1, 75.7254237288);
  content: "—";
  font-weight: bold;
  padding-right: 6px;
}
main .darken {
  color: rgb(151.3, 1, 75.7254237288);
}
main .origin {
  color: rgb(178, 1, 89);
}
main .lighten {
  color: rgb(227.3726256983, 1.2773743017, 113.6863128492);
}
main .xdark {
  color: rgb(12.75, 12.75, 12.75);
}
main .dark {
  color: #333333;
}
main .mdark {
  color: rgb(89.25, 89.25, 89.25);
}
main .medium {
  color: rgb(127.5, 127.5, 127.5);
}
main .mlight {
  color: rgb(165.75, 165.75, 165.75);
}
main .light {
  color: #cccccc;
}
main .xlight {
  color: rgb(242.25, 242.25, 242.25);
}

.applogo:hover .icon {
  filter: sepia(50%);
}
.applogo + p {
  color: rgb(12.75, 12.75, 12.75);
}

nav li a {
  color: rgb(12.75, 12.75, 12.75);
  background-color: transparent;
}
nav li a:hover, nav li a:focus, nav li a.selected {
  color: rgb(178, 1, 89);
}
nav li.sub li a {
  color: rgb(89.25, 89.25, 89.25);
  background-color: transparent;
}
nav li.sub li a:hover, nav li.sub li a:focus, nav li.sub li a.selected {
  color: rgb(151.3, 1, 75.7254237288);
}

#uihead {
  background-color: rgba(255, 255, 255, 0.9);
  border-top: 8px solid rgb(178, 1, 89);
  border-bottom: 1px solid #cccccc;
}
#uihead button {
  color: inherit;
  background-color: transparent;
  background-image: url("../../assets/ui/navigation_icons_pl.svg");
  background-repeat: no-repeat;
  background-size: 18px 440px;
  background-position-x: 13px;
  background-position-y: -44px;
  filter: contrast(85%);
}
#uihead.closed button {
  background-position-x: 13px;
  background-position-y: 0px;
}
@media (max-width: 767px) {
  #uihead nav.optionmenu {
    background-image: linear-gradient(90deg, #333333, #333333);
    background-position: 50% 0%;
    background-size: 48px 1px;
    background-repeat: no-repeat;
    padding-top: 8px;
    margin-top: 8px;
  }
}
@media (min-width: 768px) {
  #uihead nav .sub::before {
    content: " ";
    position: absolute;
    border-width: 4px;
    border-style: solid;
    border-color: rgb(127.5, 127.5, 127.5) transparent transparent transparent;
    top: 50%;
    right: 0;
    margin-top: -2px;
  }
  #uihead nav .sub:hover::before {
    border-color: rgb(178, 1, 89) transparent transparent transparent;
  }
  #uihead nav .sub ul {
    background-color: rgb(255, 255, 255);
    border: 1px solid #cccccc;
  }
}

#uifoot {
  border-top: 1px solid rgb(178, 1, 89);
}
#uifoot .sub li a::before {
  content: "#";
  padding-right: 6px;
  opacity: 0.8;
}

main header p:not([class]) {
  color: rgb(89.25, 89.25, 89.25);
}
main noscript {
  opacity: 0.75;
  border: 1px solid rgb(179, 0, 0);
}
main *.disabled, main *:disabled {
  opacity: 0.5;
  filter: grayscale(100%);
}
main *.disabled:hover, main *:disabled:hover {
  cursor: not-allowed;
}
main .nomodule {
  color: #333333;
}
main .nomodule samp {
  border: 1px solid rgb(179, 0, 0);
  padding: 9px;
}
main hr.line {
  border-top: 1px solid #cccccc;
}

#author strong {
  color: rgb(178, 1, 89);
}
#author a {
  color: rgb(151.3, 1, 75.7254237288);
}

/* 
	Author :: Elodie BAYET
*/
.list li::before {
  color: rgb(178, 1, 89);
}

.listitem.apart li ~ li::before {
  color: rgb(127.5, 127.5, 127.5);
}

.listline.apart li ~ li::before {
  color: rgb(227.3726256983, 1.2773743017, 113.6863128492);
}

table thead tr:last-of-type {
  border-bottom: 2px solid rgb(178, 1, 89);
}
table tr ~ tr {
  border-top: 1px solid rgb(227.3726256983, 1.2773743017, 113.6863128492);
}

.divided ~ .divided {
  border-top: 1px dashed rgb(178, 1, 89);
}

.nothing::before {
  color: rgb(179, 0, 0);
}

a.button.url span, a.link.url span {
  width: 18px;
  height: 20px;
  background-repeat: no-repeat;
}
a.button.url span.pdf, a.link.url span.pdf {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_reader.svg");
}
a.button.url span.github, a.link.url span.github {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_github.svg");
}
a.button.url span.bitbucket, a.link.url span.bitbucket {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_bitbucket.svg");
}
a.button.url span.linkedin, a.link.url span.linkedin {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_linkedin.svg");
}
a.button:not(.url) > span, a.link:not(.url) > span {
  width: 9px;
  line-height: 23px;
  background-image: url("../../assets/ui/navigation_icons_pl.svg");
  background-repeat: no-repeat;
  background-size: 9px 220px;
  filter: grayscale(0%) contrast(85%);
}
a.button:not(.url).selected, a.link:not(.url).selected {
  color: rgb(151.3, 1, 75.7254237288);
}
a.button:not(.url).selected > span, a.link:not(.url).selected > span {
  background-position-x: 0;
  background-position-y: -22px;
  filter: grayscale(100%) contrast(100%);
}
a.button.toggle > span, a.link.toggle > span {
  background-position-x: 0;
  background-position-y: -132px;
}
a.button.anchor > span, a.link.anchor > span {
  background-position-x: 0;
  background-position-y: -110px;
}

a.tab.url span {
  width: 18px;
  height: 20px;
  background-repeat: no-repeat;
}
a.tab.url span.pdf {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_reader.svg");
}
a.tab.url span.github {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_github.svg");
}
a.tab.url span.bitbucket {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_bitbucket.svg");
}
a.tab.url span.linkedin {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_linkedin.svg");
}

a.button {
  color: rgb(0, 0, 0);
  background-color: white;
}
a.button:not(.disabled):hover {
  background-color: white;
}

a.link {
  color: rgb(0, 0, 0);
  background-color: transparent;
}
a.link:not(.disabled):hover {
  color: rgb(151.3, 1, 75.7254237288);
}

.button, .tab {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(178, 1, 89);
  border-radius: 2px;
}
.button:not(.disabled):not(:disabled):hover, .button.selected, .tab:not(.disabled):not(:disabled):hover, .tab.selected {
  color: rgb(151.3, 1, 75.7254237288);
  background-color: rgb(255, 255, 255);
  border-color: rgb(227.3726256983, 1.2773743017, 113.6863128492);
}

.topic a {
  border: 1px solid rgb(178, 1, 89);
  border-radius: 2px;
}
.topic a:hover, .topic a:focus, .topic a:active {
  color: rgb(151.3, 1, 75.7254237288);
  border: 1px solid rgb(227.3726256983, 1.2773743017, 113.6863128492);
}
.topic > p:first-child {
  color: rgb(151.3, 1, 75.7254237288);
}

.blindtest .submit {
  background-image: linear-gradient(90deg, rgb(227.3726256983, 1.2773743017, 113.6863128492), rgb(151.3, 1, 75.7254237288), rgb(227.3726256983, 1.2773743017, 113.6863128492));
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: 48px 1px;
}

.question ~ .question {
  background-image: linear-gradient(90deg, rgb(227.3726256983, 1.2773743017, 113.6863128492), rgb(151.3, 1, 75.7254237288), rgb(227.3726256983, 1.2773743017, 113.6863128492));
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: 48px 1px;
}
.question .choice {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-radius: 2px;
  border: 1px solid rgb(127.5, 127.5, 127.5);
}
.question .choice::before {
  content: "●";
  font-size: 2.4rem;
  line-height: 1;
  text-shadow: none;
  color: rgb(127.5, 127.5, 127.5);
  position: absolute;
  display: block;
  left: -7px;
  top: 50%;
  margin-top: -12px;
}
.question .choice.on::before, .question .choice:hover::before {
  color: rgb(151.3, 1, 75.7254237288);
}
.question .choice.on, .question .choice:hover {
  cursor: pointer;
  border-color: rgb(178, 1, 89);
  background-color: rgb(255, 255, 255);
}
.question .valid h4 {
  color: rgb(41, 138.55, 41);
  border-bottom: 1px solid rgb(41, 138.55, 41);
}
.question .valid h4::before {
  content: "✓";
  font-weight: bold;
  margin-right: 4px;
}
.question .valid p em {
  color: rgb(41, 138.55, 41);
}
.question .valid p {
  color: rgb(127.5, 127.5, 127.5);
}
.question .invalid h4 {
  color: rgb(179, 0, 0);
  border-bottom: 1px solid rgb(179, 0, 0);
}
.question .invalid h4::before {
  content: "✕";
  font-weight: bold;
  margin-right: 4px;
}
.question .invalid p em {
  color: rgb(179, 0, 0);
}
.question .invalid p {
  color: rgb(127.5, 127.5, 127.5);
}

.audio {
  background-image: url("../../assets/icons/icon_sol.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 6px 0;
}
.audio .scope {
  border: 1px solid rgb(0, 0, 0);
  opacity: 0.35;
}
.audio .scope.measure {
  background-image: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0));
  background-size: 1px 38px;
  background-position: 50% 0;
  background-repeat: no-repeat;
}
.audio .scope .track {
  border-top: 1px solid rgb(0, 0, 0);
  position: absolute;
  width: 100%;
  left: 0;
  top: 8px;
}
.audio .scope .track + .track {
  top: 17px;
}
.audio .scope .track + .track + .track {
  top: 27px;
}
.audio button, .audio p {
  color: rgb(0, 0, 0);
  background-color: transparent;
  text-shadow: 0px 1px 1px #cccccc;
}
.audio:not(.onload) button[data-state=wait] {
  animation: Disapear 0.75s ease-in 0s infinite alternate none;
}
.audio button:hover {
  color: rgb(0, 0, 0);
}

.sound dt {
  color: rgb(178, 1, 89);
  font-style: italic;
}

.data > div::before {
  color: rgb(127.5, 127.5, 127.5);
  transition: 0.25s ease-in-out;
}
.data > div:hover::before {
  color: rgb(178, 1, 89);
}
.data > div:hover h3 {
  color: rgb(0, 0, 0);
  border-bottom: 1px solid rgb(227.3726256983, 1.2773743017, 113.6863128492);
}
.data h3 {
  border-bottom: 1px solid rgb(89.25, 89.25, 89.25);
  transition: 0.25s ease-in-out;
}

.level {
  color: rgb(255, 255, 255);
  background-color: #333333;
  border: 2px solid #333333;
  border-radius: 4px;
  padding-left: 7px;
  display: inline-block;
}
.level strong {
  color: #333333;
  background-color: rgb(255, 255, 255);
  border-radius: 0 2px 2px 0;
  margin-left: 4px;
  display: inherit;
  padding-left: 6px;
  padding-right: 8px;
}

.spin, .loading {
  display: none;
}

.onload {
  position: relative;
  min-height: 48px;
}
.onload.empty::before {
  content: "Chargement";
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-indent: 1.8rem;
  color: rgb(151.3, 1, 75.7254237288);
  position: absolute;
  padding-top: 1.5%;
  width: 96.25%;
  height: 100%;
  border-radius: 4px;
  animation: Onload 1s linear 0s infinite alternate none;
}
.onload > *:not(.spin):not(.loading) {
  opacity: 0.5;
  filter: blur(2px);
}
.onload > .loading {
  font-style: italic;
  color: rgb(151.3, 1, 75.7254237288);
  width: 100%;
  height: 100%;
  display: block;
}
.onload > .spin {
  display: block;
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -24px;
  position: absolute;
  background-repeat: no-repeat;
  background-image: radial-gradient(rgb(178, 1, 89), transparent, transparent, transparent);
  border-top: 8px double rgba(160, 1, 80, 0.9);
  border-right: 8px double rgba(255, 255, 255, 0.1);
  border-bottom: 8px double rgba(160, 1, 80, 0.9);
  border-left: 8px double rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: Spin 2s linear infinite;
}

@media (min-width: 960px) and (any-hover: hover) {
  .tooltip:hover .top {
    animation: SlideUp 0.33s ease-in-out;
  }
  .tooltip:hover .bottom {
    animation: SlideDown 0.33s ease-in-out;
  }
  .tooltip .tip {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    box-shadow: 6px 4px 8px 1px rgba(0, 0, 0, 0.33);
  }
  .tooltip .tip::after {
    content: " ";
    position: absolute;
    border-width: 5px;
    border-style: solid;
    left: 10px;
  }
  .tooltip .tip.top::after {
    border-color: rgb(255, 255, 255) transparent transparent transparent;
    top: 100%;
  }
  .tooltip .tip.bottom::after {
    border-color: transparent transparent rgb(255, 255, 255) transparent;
    bottom: 100%;
  }
}/*# sourceMappingURL=theme.css.map */