html {

}

body {
  background-color: #527fa6;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 80%;
  line-height: 1.2em;
  font-weight: 400;
  color: #6f6f6f;  
}

body.home {
  overflow-y: hidden;
  background-size: cover;
  background-image: url(img/bag/bag-background.jpg);
  min-height: 100vh;
}




html.no-scroll,body.no-scroll {
  overflow-y: hidden;
}

.image-wrap {
  overflow: hidden;
  position: relative;
}

.image-wrap img {
  width: 100%;
  height: auto;
  float: left;
}

.menu-toggle {
  display: none;
}

.screen-reader-text {
  display: none;
}

.desktop-only {
  display: initial;
}

.mobile-only {
  display: none;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}



.hide {
  display: none;
}

button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
input:focus,
input:active {
  outline: none;
}

input[type=text], textarea {
  -webkit-appearance: none;
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  font-family: inherit;
  width: 100%;
  color: inherit;
}

select {
  border: 1px solid #CCCCCC;
}

button {
  font-family: inherit;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

textarea {
  min-height: 50px;
  width: 100%;
  background-color: transparent;
}
form-message
select {
  font-family: inherit;
}

.with-error,
.with-error {
  border-color: red;
}

.form-messages {
  padding: 15px;
  margin-bottom: 30px;
}

.form-messages.errors {
  background-color: #FFAFAF;
}

.form-messages.success {
  background-color: #73FA73;
}

button,
input[type=button],
input[type=submit] {
  color: #FFFFFF;
  cursor: pointer;
}

.field-wrap {
  margin-bottom: 15px;
}

.field-wrap-1-2 {
  display: inline-block;
  width: 45%;
}

.field-wrap label {
  display: block;
}

.field-wrap label.hide {
  display: none !important;
}

.button-wrap {
  padding: 10px;
}

.button-wrap button {
  background-color: #517fa5;
  border: 1px solid #517fa5;
  color: #FFFFFF;
  width: 100%;
  padding: 5px 10px;
  transition: all 0.5s ease-in-out;
}

.button-wrap button:hover {
  background-color: #172539;
}


.user-form {
  max-width: 600px;
  margin: 0 auto;
}

.user-form {

}

.user-form .field-wrap {

}

.user-form .field-wrap label {
  display: block;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.user-form .field-wrap .input-wrap {
  position: relative;
}

.user-form .field-wrap .input-wrap input {
  border: 0;
  border-bottom: 2px solid #EEEEEE;
  padding: 10px;
  font-size: 1.6em;
  line-height: 1.1em;
  position: relative;
}

.user-form .field-wrap .input-wrap .bar {
  position: relative;
  top: -2px;
  border-top: 2px solid transparent;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: transform 0.5s ease-in-out;
}

.user-form .field-wrap .input-wrap input:focus ~ .bar {
  border-top: 2px solid #517fa5;
  transform: scaleX(1);
}



.popup .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background-image: url(img/cross.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
}



#page {
  margin: 0 auto;
  text-align: left;
}

.page-sleeve {
  max-width: 1024px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
}

.footer {
  background-color: #172539;
  color: #FFFFFF;
}

.footer .page-sleeve {
  margin-top: 50px;
  padding-top: 15px;
  padding-bottom: 30px;
}  

.footer .footer-nav ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

.footer .footer-nav ul li {
  display: inline-block;
  margin: 0 10px;
}

.footer .footer-nav ul li a {
  color: #EFC50E;
  display: block;
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: 400;
}

.footer .footer-legal {
  text-align: center;
  font-size: 0.9em;
  max-width: 750px;
  margin: 50px auto 30px auto;
  color: #C6C6C6;
}

.footer .footer-copyright {
  text-align: center;
  padding-top: 50px;
  font-weight: 600;
  color: #F0C40D;
  background-image: url(img/logo-icon-yellow.svg);
  background-repeat: no-repeat;
  background-size: auto 15px;
  background-position: center center;
}


.col-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; 
}

.col-wrap-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col-wrap .col-1-3 {
  width: calc(  33.33% - 20px );
  box-sizing: border-box;
}

.col-wrap .col-6-10 {
  width: calc(  60% - 15px );
  box-sizing: border-box;
}

.col-wrap .col-4-10 {
  width: calc( 40% - 15px );
  box-sizing: border-box;
}

.col-wrap .col-5-10 {
  width: calc(  50% - 15px );
  box-sizing: border-box;
}

.col-wrap .col-4-10 {
  width: calc( 40% - 15px );
  box-sizing: border-box;
}

.col-wrap .col-10-10 {
  width: 100%;
  box-sizing: border-box;
}

.col-wrap .col-10-10 .content-sleeve {
  padding-left: 150px;
  padding-right: 150px;
}

.entry-header {
  margin-bottom: 40px;
}

.entry-header .entry-title {
  font-size: 2.8em;
  font-weight: 200;
  line-height: 1em;
  text-align: center;
  position: relative;
  padding: 125px 0 30px 0;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.entry-header .entry-title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 100px;
  border-bottom: 1px solid #FFFFFF;
}



.entry-header .entry-subtitle {
  margin-bottom: 10px;
  font-size: 1.6em;
  line-height: 1.0em;
  font-weight: 400;
  text-align: center;
  position: relative;
  color: #FFFFFF;
}

.entry-header .entry-content {
  color: #FFFFFF;
  text-align: center;
}


.entry-content {
  padding-bottom: 30px;
  color: #FFFFFF;
  text-align: center;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content table th,
.entry-content table td {
  border: 1px solid #F0C40D;
  padding: 5px;
}

.entry-content table th {
  color: #FFFFFF;
  background-color: #F0C40D;
}

.entry-content h3 {
  margin-bottom: 15px;
  margin-top: 45px;
  font-size: 1.8em;
  line-height: 1.3em;
  color: #6f6f6f;
  font-weight: 300;
  color: #e8983a;
}

.entry-content h4 {
  margin-bottom: 15px;
  font-size: 1.4em;
  line-height: 1.3em;
  color: #6f6f6f;
  font-weight: 300;
  color: #e8983a;
}

.entry-content p,
.entry-content li {
  margin-bottom: 15px;
  font-size: 1.2em;
  line-height: 1.6em;
}

.entry-content li {
  margin-bottom: 5px;
}

.entry-content  p:last-child,
.entry-content li:last-child {
  margin-bottom: 0;
}

.entry-content  ul,
.entry-content  ol {
  padding: 0;
  margin: 0 0 15px 15px;
}

.text-sleeve-centered {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

#header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  pointer-events: none;
}

#masthead {
  padding: 30px 30px;
  overflow: hidden;
  position: relative;
}

#header .logout-link-wrap {
  position: absolute; 
  right: 30px;
  top: 30px;
  font-size: 2em;
  line-height: 1.2em;
  pointer-events: initial;
}

#header .logout-link-wrap a {
  color: #FFFFFF;
  font-weight: 200;
}

#header .logout-link-wrap a:hover {
  text-decoration: none;
}

#header .site-branding {
  float: left;
  pointer-events: initial;
} 

#header .site-branding .site-title span {
  background-image: url(img/logo-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  position: relative;
  display: block;
  text-indent: -99999px;
  width: 200px;
  height: 90px;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}


@media screen and (max-width: 1450px) {

  body.single-session #header .site-branding .site-title span {
    width: 100px;
    height: 45px;
  }

}

#header .site-branding .site-title span:hover {
  opacity: 1;
}

#header .site-branding .site-title span:after {
  content: '';
  pointer-events: none;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: url(img/logo-colour.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

#header .site-branding .site-title span:hover:after {
  opacity: 1;
}


#main-nav {
  float: right;
}

#main-nav li {
  display: inline-block;
  font-size: 1.8em;
  line-height: 50px;
  margin-left: 30px;
  font-weight: 200;
}

#main-nav ul li a {
  color: #FFFFFF;
  display: block;
  position: relative;
  transition: all 0.25s ease-in-out;
}

#main-nav ul:hover li a {
  transform: scale(0.8);
  opacity: 0.5;
}

#main-nav ul li a:hover {
  text-decoration: none;
  transform: scale(1.0) !important;
  opacity: 1 !important;
}


.date-wrap {
  width: 36px;
  height: 40px;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
  text-align: center;
  line-height: 20px;
  font-size: 10px;
}

.date-wrap .day {
  height: 20px;
  background-color: #ae2c29;
  color: #FFFFFF;  
  text-transform: uppercase;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.date-wrap .month {
  height: 20px;
  font-weight: bold;
}




body.home .entry-header {
  height: 100vh;
  background-color: #9b5246;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}


body.home .section-navigation {
  width: 100vw;
  position: fixed;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
/*
  top: 50vh;
  transform: translateY(-50%);
*/
  pointer-events: none;
}

body.home .section-navigation ul {
  position: fixed;
  height: 100vw;
  padding: 30px 0;
  box-sizing: border-box;
  transform: rotate(-90deg);
  transform-origin: left top;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column;
  flex-flow: column;
  justify-content: flex-end;
}

body.home .section-navigation ul li {
  flex-grow: 0.0001;
  transition: all 0.25s ease-in-out;
  margin-bottom: 2px;
}

/*s
body.home .section-navigation ul li.inactive {
  opacity: 0.5;
}

body.home .section-navigation ul li.inactive:hover {
  opacity: 1;
}
*/

body.home .section-navigation ul li.break {
  flex-grow: 1000;
}

body.home .section-navigation ul li.active {
  z-index: 1;
} 

body.home .section-navigation ul li .sleeve {
  transition: all 0.5s ease-in-out;
}

body.home .section-navigation ul li.active .sleeve {
  transform: scale(1.5);
  margin: 10px 0;
} 

body.home .section-navigation ul li span {
  display: inline-block;
  padding: 10px 75px;
  font-family: 'Indie Flower';
  font-size: 2.2em;
  line-height: 1.1em;
  background-color: #FFFFFF;
  color: #FFFFFF;
  cursor: pointer;
  pointer-events: initial;
  transition: transform 0.5s ease-in-out;
  background-image: url(img/books-spine.svg);
  background-size: cover;
}

body.home .section-navigation ul li.inactive span {
  /* color: rgba(255,255,255,0.5);*/
}

body.home .section-navigation ul li.inactive:hover span {
  color: rgba(255,255,255,1);
}

body.home .section-navigation ul li[data-delta='1'] span {
  /* font-family: 'Indie Flower'; */
  background-color: #dcad59;
  transform: rotate(-1deg);
}
body.home .section-navigation ul li[data-delta='1'] span:hover {
  transform: rotate(-0.5deg);
  opacity: 1;
}

body.home .section-navigation ul li[data-delta='2'] span {
  /* font-family: 'Open Sans'; */
  background-color: #b93937;
  transform: rotate(1deg);
}
body.home .section-navigation ul li[data-delta='2'] span:hover {
  transform: rotate(2deg);
  opacity: 1;
}

body.home .section-navigation ul li[data-delta='3'] span {
  /* font-family: 'Arial'; */
  background-color: #cb7ca0;
  transform: rotate(1.5deg);
}
body.home .section-navigation ul li[data-delta='3'] span:hover {
  transform: rotate(-1deg);
  opacity: 1;
}

body.home .section-navigation ul li[data-delta='4'] span {
  /* font-family: 'Times New Roman'; */
  background-color: #4c6f3e;
  transform: rotate(-1deg);
}
body.home .section-navigation ul li[data-delta='4'] span:hover {
  transform: rotate(-2deg);
  opacity: 1;
}

body.home .section-navigation ul li[data-delta='5'] span {
  /* font-family: 'Indie Flower'; */
  background-color: #e8913a;
  transform: rotate(0.5deg);
}
body.home .section-navigation ul li[data-delta='5'] span:hover {
  transform: rotate(-1.5deg);
  opacity: 1;
}

body.home .section-navigation ul li[data-delta='6'] span {
  /* font-family: 'Helvetica'; */
  background-color: #c97ea0;
  transform: rotate(1deg);
}
body.home .section-navigation ul li[data-delta='6'] span:hover {
  transform: rotate(2deg);
  opacity: 1;
}

body.home .section-navigation ul li[data-delta='7'] span {
  /* font-family: 'Indie Flower'; */
  background-color: #e8913a;
  transform: rotate(3deg);
}
body.home .section-navigation ul li[data-delta='7'] span:hover {
  transform: rotate(1deg);
  opacity: 1;
}

body.home .section-navigation ul li[data-delta='8'] span {
  /* font-family: 'Indie Flower'; */
  background-color: #dcad59;
  transform: rotate(-2deg);
  opacity: 1;
}
body.home .section-navigation ul li[data-delta='8'] span:hover {
  transform: rotate(2deg);
}

body.home .section-navigation ul li[data-delta='9'] span {
  /* font-family: 'Indie Flower'; */
  background-color: #655e9d;
  transform: rotate(3deg);
}
body.home .section-navigation ul li[data-delta='9'] span:hover {
  transform: rotate(1deg);
  opacity: 1;
}

body.home .section-navigation ul li[data-delta='10'] span {
  /* font-family: 'Times New Roman'; */
  background-color: #4c6f3e;
  transform: rotate(-1deg);
}
body.home .section-navigation ul li[data-delta='10'] span:hover {
  transform: rotate(-2deg);
  opacity: 1;
}

body.home .section-navigation ul li[data-delta='11'] span {
  /* font-family: 'Arial'; */
  background-color: #b93937;
  transform: rotate(1.5deg);
}
body.home .section-navigation ul li[data-delta='11'] span:hover {
  transform: rotate(-1deg);
  opacity: 1;
}


.social-action {
  width: 25px;
  height: 25px;
  background-image: url(img/heart.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s linear;
  background-color: #FFFFFF;
  position: relative;
}

.social-action:hover {
  background-size: 60%;
}

.social-action[data-social-is-liked=false] {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.social-action span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  line-height: 25px;
  display: block;
  text-align: center;
  color: #666666;
}

body.home .section-defaults {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -99;
  opacity: 0;
}

body.home .section-defaults h2 {
  display: none;
}

body.home .section-defaults.active {
  z-index: 2;
  opacity: 1;
  transition: opacity 1s ease-in-out; 
  transition-delay: 0.5s;
}

body.home .section-defaults > .sleeve {
  position: relative;
}



.section-welcome .sleeve {
  position: relative;
  bottom: auto;
  top: 50vh;
  transform: translateY(-50%);
  color: #FFFFFF;
}

.section-welcome .sleeve a {
  color: #b93937;
}

.section-welcome .sleeve a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.section-welcome .sleeve h3 {
  display: block;
  text-align: center;
  font-size: 4em;
  line-height: 1.2em;
  font-weight: 200; 
  margin-bottom: 30px;
}

.section-welcome .sleeve .subtitle a {
  font-family: 'Indie Flower';
  font-size: 1.8em;
  line-height: 1.1em;
  margin-bottom: 20px;
  background-color: #b93937;
  padding: 10px 40px;
  border-radius: 20px;
  display: inline-block;
  color: #FFFFFF; 
}




.section-welcome .sleeve {
  font-size: 1.2em;
  line-height: 1.4em;
}

.section-lifehacks .lifehack-wrap {
  position: relative;
  height: calc( 100vh - 200px );
  margin-top: 100px;
}


.section-lifehacks .more-message {
  text-align: center;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  margin-top: 30px;
}

.section-lifehacks .lifehack-wrap .lifehack-item {
  max-width: 350px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 1s ease-in-out;
}

.section-lifehacks .lifehack-wrap .lifehack-item .sleeve {
  transition: all 0.5s ease-in-out;
  padding: 20px;
  background-color: #FFFFFF;
}

.section-lifehacks .lifehack-wrap .lifehack-item:nth-last-child(1),
.section-lifehacks .lifehack-wrap .lifehack-item:nth-last-child(2),
.section-lifehacks .lifehack-wrap .lifehack-item:nth-last-child(3),
.section-lifehacks .lifehack-wrap .lifehack-item:nth-last-child(4),
.section-lifehacks .lifehack-wrap .lifehack-item:nth-last-child(5),
.section-lifehacks .lifehack-wrap .lifehack-item:nth-last-child(6),
.section-lifehacks .lifehack-wrap .lifehack-item:nth-last-child(7),
.section-lifehacks .lifehack-wrap .lifehack-item:nth-last-child(8),
.section-lifehacks .lifehack-wrap .lifehack-item:nth-last-child(9),
.section-lifehacks .lifehack-wrap .lifehack-item:nth-last-child(10) {
  -webkit-box-shadow: 20px 20px 50px 4px rgba(0,0,0,0.1);
  -moz-box-shadow: 20px 20px 50px 4px rgba(0,0,0,0.1);
  box-shadow: 20px 20px 50px 4px rgba(0,0,0,0.1);
}

.section-lifehacks .lifehack-wrap .lifehack-item[data-style='0'] { display: block; transform: translateY(-50%) rotate(-3deg); }
.section-lifehacks .lifehack-wrap .lifehack-item[data-style='1'] { display: block; transform: translateY(-50%) rotate(-2deg); }
.section-lifehacks .lifehack-wrap .lifehack-item[data-style='2'] { display: block; transform: translateY(-50%) rotate(5deg); }
.section-lifehacks .lifehack-wrap .lifehack-item[data-style='3'] { display: block; transform: translateY(-50%) rotate(-3deg); }
.section-lifehacks .lifehack-wrap .lifehack-item[data-style='4'] { display: block; transform: translateY(-50%) rotate(-2deg); }
.section-lifehacks .lifehack-wrap .lifehack-item[data-style='5'] { display: block; transform: translateY(-50%) rotate(1deg); }
.section-lifehacks .lifehack-wrap .lifehack-item[data-style='6'] { display: block; transform: translateY(-50%) rotate(-4deg); }
.section-lifehacks .lifehack-wrap .lifehack-item[data-style='7'] { display: block; transform: translateY(-50%) rotate(-7deg); }
.section-lifehacks .lifehack-wrap .lifehack-item[data-style='8'] { display: block; transform: translateY(-50%) rotate(3deg); }
.section-lifehacks .lifehack-wrap .lifehack-item[data-style='9'] { display: block; transform: translateY(-50%) rotate(2deg); }

.section-lifehacks .lifehack-wrap .lifehack-item .image-wrap {
  padding-bottom: 100%;
  background-size: cover;
  background-position: center center;
}

.section-lifehacks .lifehack-wrap .lifehack-item .content {
  padding-top: 10px; 
  padding-right: 50px;
  font-size: 1.2em;
  line-height: 1.4em;
  color: #333333;
}

.section-lifehacks .lifehack-wrap .lifehack-item .social-action {
  position: absolute;
  right: 20px;
  margin-top: 10px;
  width: 30px;
  height: 35px;
}


.section-quotes {
  bottom: 0;
  overflow-y: scroll;
  color: #FFFFFF;
}

.section-quotes > .sleeve {
  max-width: 500px;
  box-sizing: border-box;
  margin: 50px auto;
  height: calc( 100vh - 100px );
}

.section-quotes .quote-wrap {
  position: absolute;
  left: 0;
  top: 0;
  top: calc( 50vh - 50px );
  transform: translateY(-50%);
}

.section-quotes .quote-wrap .quote-item {
  overflow: hidden;
  height: 0;
}

.section-quotes .quote-wrap .quote-item:first-child {
  opacity: 1;
  height: auto;
  overflow: visible;
  pointer-events: initial;
}

.section-quotes .quote-wrap .quote-item .quote {
  position: relative;
  font-size: 2.8em;
  line-height: 1.4em;
  font-family: 'Indie Flower';
}

.section-quotes .quote-wrap .quote-item .quote:before {
  content: '';
  position: absolute;
  display: block;
  left: -70px;
  top: 20px;
  width: 50px;
  height: 75px;
  background-image: url(img/quote.svg);
  background-size: contain; 
  background-position: center top;
  background-repeat: no-repeat;
}

.section-quotes .quote-wrap .quote-item .quote:after {
  content: '';
  position: absolute;
  display: block;
  right: -70px;
  bottom: 20px;
  width: 50px;
  height: 75px;
  background-image: url(img/quote.svg);
  background-size: contain; 
  background-position: center top;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.section-quotes .quote-wrap .quote-item .attribution {
  margin-top: 10px;
}

.section-quotes .quote-wrap .quote-item .social-action {
  margin-top: 20px;
}


.section-quotes .quote-wrap .quote-item span.hide-character {
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

.section-quotes .quote-wrap .quote-item span.hide-character.show-character {
  opacity: 1;
}


.section-quotes .next {
  position: absolute;
  right: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-image: url(img/arrow-right-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


.section-fortunes > .sleeve {
  color: #FFFFFF;
  width: 250px;
  height: 250px;
  top: 50vh;
  -webkit-transform: translateY(-50%) rotate(45deg) scale(1.2);
  -webkit-tranform-origin: 0 0;
  transform: translateY(-50%) rotate(45deg) scale(1.2);
  tranform-origin: 0 0;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: all 1s ease-in-out;
  cursor: pointer;
}

.section-fortunes .fortune-item {
  padding: 30px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(255,255,255,0.2);
  -moz-box-shadow: 0px 0px 40px 0px rgba(255,255,255,0.2);
  box-shadow: 0px 0px 40px 0px rgba(255,255,255,0.2);
}

.section-fortunes .fortune-item .leaf {
  position: absolute;
  display: block;
  height: 122px;

}

.section-fortunes .sleeve .fortune-item .content {
  opacity: 0;
  position: relative;
  top: 100px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  font-family: 'Indie Flower';
  font-size: 1.6em;
  line-height: 1.6em;
}

.section-fortunes .sleeve .fortune-item.active .content {
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

.section-fortunes .sleeve .fortune-item .content .social-action {
  margin: 10px auto 10px auto;
}

.section-fortunes .sleeve .fortune-item .click-me {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  font-family: 'Indie Flower';
  font-size: 3.2em;
  line-height: 1.6em;
}

.section-fortunes .sleeve .fortune-item.active .click-me {
  display: none;
}


.section-fortunes .sleeve .fortune-item .top {
  left: 0;
  right: 0;
  top: 0;
}

.section-fortunes .sleeve .fortune-item .bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

.section-fortunes .sleeve .fortune-item .left {
  left: 0;
  bottom: 0;
  top: 0;
}

.section-fortunes .sleeve .fortune-item .right {
  right: 0;
  bottom: 0;
  top: 0;
}

.section-fortunes .sleeve .fortune-item.active .leaf {
  transition: transform 1s;
  transform-style: preserve-3d;
}

.section-fortunes .sleeve .fortune-item.active .top {
  -webkit-transform-origin: center top;
  -webkit-transform: rotateX(180deg) scaleY(1.2);
  transform-origin: center top;
  transform: rotateX(180deg) scaleY(1.2);
}

.section-fortunes .sleeve .fortune-item.active .bottom {
  -webkit-transform-origin: center bottom;
  -webkit-transform: rotateX(180deg) scaleY(1.2);
  transform-origin: center bottom;
  transform: rotateX(180deg) scaleY(1.2);
}

.section-fortunes .sleeve .fortune-item.active .left {
  -webkit-transform-origin: left center;
  -webkit-transform: rotateY(180deg) scaleX(1.2);
  transform-origin: left center;
  transform: rotateY(180deg) scaleX(1.2);
}

.section-fortunes .sleeve .fortune-item.active .right {
  -webkit-transform-origin: right center;
  -webkit-transform: rotateY(180deg) scaleX(1.2);
  transform-origin: right center;
  transform: rotateY(180deg) scaleX(1.2);
}

.section-fortunes .sleeve .fortune-item .leaf:before {
  content: '';
  position: absolute;
  display: block;
  transition: all 1s;
}

.section-fortunes .sleeve .fortune-item .top:before {
  left: 0;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-bottom: 0;
  border-left: 125px solid transparent !important;
  border-right: 125px solid transparent !important;
  border-top-width: 123px;
}

.section-fortunes .sleeve .fortune-item .bottom:before {
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 0;
  border-left: 125px solid transparent !important;
  border-right: 125px solid transparent !important;
  border-bottom-width: 123px;
}

.section-fortunes .sleeve .fortune-item .left:before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-right: 0;
  border-top: 125px solid transparent !important;
  border-bottom: 125px solid transparent !important;
  border-left-width: 123px;
}

.section-fortunes .sleeve .fortune-item .right:before {
  top: 0;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 0;
  border-top: 125px solid transparent !important;
  border-bottom: 125px solid transparent !important;
  border-right-width: 123px;
}



.section-fortunes > .sleeve .fortune-item[data-style='0'] {
  background-color: #e89139;
}

.section-fortunes > .sleeve .fortune-item[data-style='1'] {
  background-color: #ce82a5;
}

.section-fortunes > .sleeve .fortune-item[data-style='2'] {
  background-color: #50763f;
}

.section-fortunes > .sleeve .fortune-item[data-style='3'] {
  background-color: #3f579b;
}

.section-fortunes .sleeve .fortune-item[data-style='0'] .leaf:before {
  border-color: #ba742e;
  border-style: solid;
}

.section-fortunes .sleeve .fortune-item[data-style='1'] .leaf:before {
  border-color: #a56884;
  border-style: solid;
}

.section-fortunes .sleeve .fortune-item[data-style='2'] .leaf:before {
  border-color: #405e32;
  border-style: solid;
}

.section-fortunes .sleeve .fortune-item[data-style='3'] .leaf:before {
  border-color: #32467c;
  border-style: solid;
}

.section-fortunes .sleeve .fortune-item[data-style='0'].active .leaf:before {
  border-color: #955d25;
}

.section-fortunes .sleeve .fortune-item[data-style='1'].active .leaf:before {
  border-color: #84536a;
}

.section-fortunes .sleeve .fortune-item[data-style='2'].active .leaf:before {
  border-color: #334b28;
}

.section-fortunes .sleeve .fortune-item[data-style='3'].active .leaf:before {
  border-color: #283863;
}




.section-your-profile > .sleeve {
  background-color: #FFFFFF;
  max-width: 700px;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 25px 25px;  
  height: calc( 100vh - 100px );
  -moz-transform: skew(0deg, -2deg);
  -webkit-transform: skew(0deg, -2deg);
  -o-transform: skew(0deg, -2deg);
  -ms-transform: skew(0deg, -2deg);
  transform: skew(0deg, -2deg);
}


.section-your-profile .user-profile-form {
  max-width: 600px;
  margin: 0 auto;
  position: absolute;
  left: 25px;
  padding-right: 15px;
  top: 50px;
  right: 25px;
  bottom: 50px;
  overflow-y: scroll;
  -moz-transform: skew(0deg, 2deg);
  -webkit-transform: skew(0deg, 2deg);
  -o-transform: skew(0deg, 2deg);
  -ms-transform: skew(0deg, 2deg);
  transform: skew(0deg, 2deg);
}

/*
.section-your-profile {
  top: 50vh !important;
  transform: translateY(-50%);
}

.section-your-profile > .sleeve {
  background-color: #FFFFFF;
  max-width: 700px;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 25px 25px;  
}
*/

.section-sessions {
  bottom: 0;
  overflow-y: scroll;
}



.section-sessions > .sleeve {
  background-color: #FFFFFF;
  max-width: 700px;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 25px 25px;  
  height: calc( 100vh - 100px );
  -moz-transform: skew(0deg, 4deg);
  -webkit-transform: skew(0deg, 4deg);
  -o-transform: skew(0deg, 4deg);
  -ms-transform: skew(0deg, 4deg);
  transform: skew(0deg, 4deg);
}


.section-sessions .session-wrap-container {
  max-width: 600px;
  margin: 0 auto;
  position: absolute;
  left: 25px;
  padding-right: 15px;
  top: 50px;
  right: 25px;
  bottom: 50px;
  overflow-y: scroll;
  -moz-transform: skew(0deg, -4deg);
  -webkit-transform: skew(0deg, -4deg);
  -o-transform: skew(0deg, -4deg);
  -ms-transform: skew(0deg, -4deg);
  transform: skew(0deg, -4deg);
}



.section-sessions h3 {
  font-weight: 200;
  line-height: 1.2em;
  font-size: 2em;
  margin-bottom: 20px;
}

.section-sessions .meta-wrap {

}

.section-sessions .meta-item {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #CCCCCC;
}

.section-sessions .meta-item:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}


.section-sessions .current-session-wrap {
  margin-bottom: 30px;
  position: relative;
}


.section-sessions .current-session-wrap h4 {
  font-weight: 200;
  line-height: 1.2em;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.section-sessions .current-session-wrap .image-wrap {
  position: relative;
  margin-bottom: 10px;
}

.section-sessions .current-session-wrap .image-wrap:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url(img/play.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50px auto;
  pointer-events: none;
}

.section-sessions .session-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; 
}

.section-sessions .session-item {
  width: calc(50% - 15px);
  margin-bottom: 30px;
  position: relative;
}

.section-sessions .session-item .image-wrap {
  margin-bottom: 10px;
}

.section-sessions .session-item.unavailable .image-wrap {
  opacity: 0.5;
}

.current-session-wrap .session-info,
.section-sessions .session-item .session-info {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #FFFFFF;
}

.current-session-wrap .session-info-title,
.section-sessions .session-item .session-info-title {
  margin-bottom: 10px;
  color: #333333;
  background-color: #FFFFFF;
  padding: 2px 5px;
  border-radius: 5px;
  display: inline-block;
  margin: 0 auto 10px auto;
}

.current-session-wrap .session-info-button,
.section-sessions .session-item .session-info-button {
  display: inline-block;
  margin: 0 auto;
  background-color: #4c6f3e;
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 10px;
}



.section-sessions .session-item h4 {
  font-weight: 200;
  line-height: 1.2em;
  font-size: 1.2em;
  margin-bottom: 10px;
}



/*
.section-journal.active {
  position: absolute;
}

.section-journal > .sleeve {
  background-color: #FFFFFF;
  max-width: 700px;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 25px 25px;  
  height: calc( 100vh - 100px );
  -moz-transform: skew(0deg, -4deg);
  -webkit-transform: skew(0deg, -4deg);
  -o-transform: skew(0deg, -4deg);
  -ms-transform: skew(0deg, -4deg);
  transform: skew(0deg, -4deg);
}


.section-journal .journal-wrap {
  max-width: 600px;
  margin: 0 auto;
  position: absolute;
  left: 25px;
  padding-right: 15px;
  top: 50px;
  right: 25px;
  bottom: 50px;
  overflow-y: scroll;
  -moz-transform: skew(0deg, 4deg);
  -webkit-transform: skew(0deg, 4deg);
  -o-transform: skew(0deg, 4deg);
  -ms-transform: skew(0deg, 4deg);
  transform: skew(0deg, 4deg);
}

.section-journal .journal-wrap .journal-item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}

.section-journal .journal-wrap .journal-item:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100px;
  transform: rotate(-3deg);
  left: 0;
  right: 0;
  margin: 0 auto;
  border-bottom: 1px solid red;
}


.section-journal .journal-wrap .journal-item:nth-child(5n+1):after { border-color: #dcad59; transform: rotate(-1deg); }
.section-journal .journal-wrap .journal-item:nth-child(5n+2):after { border-color: #5f73b1; transform: rotate(2deg); }
.section-journal .journal-wrap .journal-item:nth-child(5n+3):after { border-color: #cb7ca0; transform: rotate(1deg); }
.section-journal .journal-wrap .journal-item:nth-child(5n+4):after { border-color: #4c6f3e; transform: rotate(-2deg); }
.section-journal .journal-wrap .journal-item:nth-child(5n+5):after { border-color: #030001; transform: rotate(1deg); }


.section-journal .journal-wrap .journal-item .date-wrap {
  float: left;
}


.section-journal .journal-wrap .journal-item .content-wrap {
  margin-left: 60px;
  clear: right;
}

.section-journal .journal-wrap .journal-item .content-wrap h3 {

  font-weight: normal;
  font-size: 1.8em;
  line-height: 1.2em;
  margin-bottom: 15px;

}


.section-journal .journal-wrap .journal-item .content-wrap h4 {
  font-family: 'Indie Flower';
  font-weight: normal;
  font-size: 1.3em;
  line-height: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #cb7ca0;
}

.section-journal .journal-wrap .journal-item .content-wrap .content {
  margin-bottom: 30px;
}

.section-journal .journal-wrap .journal-item .content-wrap .content .text {
  font-weight: normal;
  font-size: 1.6em;
  line-height: 1.2em;
  font-family: 'Indie Flower';
}

.section-journal .journal-wrap .journal-item .content-wrap .actions {
  text-align: left;
  padding-top: 5px;
  cursor: pointer;
}

.section-journal .journal-wrap .journal-item:nth-child(5n+1) .content-wrap .actions { color: #dcad59; }
.section-journal .journal-wrap .journal-item:nth-child(5n+2) .content-wrap .actions { color: #5f73b1; }
.section-journal .journal-wrap .journal-item:nth-child(5n+3) .content-wrap .actions { color: #cb7ca0; }
.section-journal .journal-wrap .journal-item:nth-child(5n+4) .content-wrap .actions { color: #4c6f3e; }
.section-journal .journal-wrap .journal-item:nth-child(5n+5) .content-wrap .actions { color: #030001; }

*/


.section-social-feed.active {
  position: absolute;
}

.section-social-feed > .sleeve {
  background-color: #FFFFFF;
  max-width: 700px;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 25px 25px;  
  height: calc( 100vh - 100px );
  -moz-transform: skew(0deg, -2deg);
  -webkit-transform: skew(0deg, -2deg);
  -o-transform: skew(0deg, -2deg);
  -ms-transform: skew(0deg, -2deg);
  transform: skew(0deg, -2deg);
}


.section-social-feed .social-feed-wrap {
  max-width: 600px;
  margin: 0 auto;
  position: absolute;
  left: 25px;
  padding-right: 15px;
  top: 260px;
  right: 25px;
  bottom: 50px;
  overflow-y: scroll;
  -moz-transform: skew(0deg, 2deg);
  -webkit-transform: skew(0deg, 2deg);
  -o-transform: skew(0deg, 2deg);
  -ms-transform: skew(0deg, 2deg);
  transform: skew(0deg, 2deg);
}

.section-social-feed .social-feed-header .headers {
  width: 100%;
  margin-top: 190px;
}



.section-social-feed .social-feed-header .headers h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.6em;
  line-height: 1.2em;
}

.section-social-feed .social-feed-header .headers h3:nth-child(6n+1) { color: #dcad59; }
.section-social-feed .social-feed-header .headers h3:nth-child(6n+2) { color: #b93937; }
.section-social-feed .social-feed-header .headers h3:nth-child(6n+3) { color: #cb7ca0; }
.section-social-feed .social-feed-header .headers h3:nth-child(6n+4) { color: #4c6f3e; }
.section-social-feed .social-feed-header .headers h3:nth-child(6n+5) { color: #e8913a; }
.section-social-feed .social-feed-header .headers h3:nth-child(6n+6) { color: #655e9d; }





.section-social-feed .social-feed-header .headers h3.active {
  display: block;
}

.section-social-feed .social-feed-header .headers h3.inactive,
.section-social-feed .social-feed-header .headers h3 {
  display: none;
}


.section-social-feed .social-feed-wrap .social-feed-item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
  background-color: #F1F1F1;
  border-radius: 15px;
  padding: 15px 15px 30px 15px;
}

.section-social-feed .social-feed-wrap .social-feed-item:after {
  content: '';
  position: absolute;
  width: 0; 
  height: 0; 
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #F1F1F1;
  right: 30px;
  bottom: -20px;
}

.section-social-feed .social-feed-wrap .social-feed-item .date {
  position: relative;
  margin-top: 20px;
  padding-top: 10px;
}

.section-social-feed .social-feed-wrap .social-feed-item .date:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  border-top: 1px solid #CCCCCC;
}

.section-social-feed .social-feed-wrap .social-feed-item .more {
  position: absolute;
  right: 35px;
  bottom: 15px;
  font-size: 30px;
  cursor: pointer;
}

.section-social-feed .social-feed-header ul {
  position: absolute;
  overflow: hidden;
  text-align: center;
  list-style-type: none;
  margin: 0 auto;
  transform: rotate(-90deg);
  width: calc(100% - 60px);
  top: -30px;
}

.section-social-feed .social-feed-header ul li {
  text-align: center;
  width: calc(25% - 20px);
  margin: 5px auto;
}

.section-social-feed .social-feed-header ul li span {
  display: block;
  padding: 10px 10px;
  margin: 5px 0;
  color: #FFFFFF;
  break-inside: avoid-column;
  cursor: pointer;
  background-image: url(img/books-spine.svg);
  background-size: cover;
  transition: all 0.5s ease-in-out; 
  float: right;
}

.section-social-feed .social-feed-header ul li:nth-child(6n+1) span { background-color: #dcad59; transform: rotate(-1deg); width: 100%; }
.section-social-feed .social-feed-header ul li:nth-child(6n+2) span { background-color: #b93937; transform: rotate(2deg); width: 90%; }
.section-social-feed .social-feed-header ul li:nth-child(6n+3) span { background-color: #cb7ca0; transform: rotate(1deg); width: 80%; }
.section-social-feed .social-feed-header ul li:nth-child(6n+4) span { background-color: #4c6f3e; transform: rotate(-2deg); width: 100%; }
.section-social-feed .social-feed-header ul li:nth-child(6n+5) span { background-color: #e8913a; transform: rotate(1deg); width: 70%; }
.section-social-feed .social-feed-header ul li:nth-child(6n+6) span { background-color: #655e9d; transform: rotate(3deg); width: 60%; }


.section-social-feed .social-feed-header ul li:nth-child(5n+1) span:hover { transform: rotate(-1deg); }
.section-social-feed .social-feed-header ul li:nth-child(5n+2) span:hover { transform: rotate(2deg); }
.section-social-feed .social-feed-header ul li:nth-child(5n+3) span:hover { transform: rotate(-0deg); }
.section-social-feed .social-feed-header ul li:nth-child(5n+4) span:hover { transform: rotate(-1.5deg); }
.section-social-feed .social-feed-header ul li:nth-child(5n+5) span:hover { transform: rotate(-1.5deg); }

.section-social-feed .social-feed-wrap .social-feed-item .emoji-wrap {
  float: left;
  margin-top: -10px;
}

.section-social-feed .social-feed-wrap .social-feed-item .emoji-wrap img {
  width: 100px;
  height: auto;
}


.section-social-feed .social-feed-wrap .social-feed-item .content-wrap {
  margin-left: 120px;
  clear: right;
  margin-top: 0px;
}

.section-social-feed .social-feed-wrap .social-feed-item .content-wrap h3 {
  font-family: 'Indie Flower';
  font-weight: normal;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.section-social-feed .social-feed-wrap .social-feed-item .content-wrap .text {
  font-family: 'Indie Flower';
  font-weight: normal;
  font-size: 1.8em;
  line-height: 1.2em;
}


.section-social-feed .social-feed-wrap .social-feed-item .content-wrap .text p {
  margin-bottom: 10px;
}

.section-social-feed .social-feed-wrap .social-feed-item .content-wrap .content {
  margin-bottom: 10px;
  display: none;
}

.section-social-feed .social-feed-wrap .social-feed-item .content-wrap .content:nth-child(1) {
  display: block;
}

.section-social-feed .social-feed-wrap .social-feed-item .content-wrap .actions {
  text-align: left;
  padding-top: 5px;
  cursor: pointer;
}

.section-social-feed .social-feed-wrap .social-feed-item:nth-child(5n+1) .content-wrap .actions { color: #dcad59; }
.section-social-feed .social-feed-wrap .social-feed-item:nth-child(5n+2) .content-wrap .actions { color: #5f73b1; }
.section-social-feed .social-feed-wrap .social-feed-item:nth-child(5n+3) .content-wrap .actions { color: #cb7ca0; }
.section-social-feed .social-feed-wrap .social-feed-item:nth-child(5n+4) .content-wrap .actions { color: #4c6f3e; }
.section-social-feed .social-feed-wrap .social-feed-item:nth-child(5n+5) .content-wrap .actions { color: #030001; }






.section-journal.active {
  position: absolute;
}

.section-journal .journal-header {
  
}

.section-journal .journal-header ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-align: center;
}

/*
.section-journal .journal-header ul li {
  display: inline-block;  
  margin: 0 10px;
  cursor: pointer;
}

.section-journal .journal-header ul li.selected {
  font-weight: bold;
}
*/


.section-journal .journal-header ul li span {
  display: inline-block;
  padding: 5px 50px;
  font-family: 'Indie Flower';
  font-size: 1.8em;
  line-height: 1.1em;
  background-color: #FFFFFF;
  color: #FFFFFF;
  cursor: pointer;
  pointer-events: initial;
  transition: transform 0.5s ease-in-out;
  background-image: url(img/books-spine.svg);
  background-size: cover;
  display: inline-block;  
  margin: 0 10px;
  cursor: pointer;
}

.section-journal .journal-header ul li:nth-child(1) span {
  background-color: #4c6f3e;
  transform: rotate(-1deg);
}

.section-journal .journal-header ul li:nth-child(1) span:hover {
  transform: rotate(-0.5deg);
  opacity: 1;
}

.section-journal .journal-header ul li:nth-child(2) span {
  background-color: #dcad59;
  transform: rotate(1deg);
}

.section-journal .journal-header ul li:nth-child(2) span:hover {
  transform: rotate(2deg);
  opacity: 1;
}

.section-journal > .sleeve {
  background-color: #FFFFFF;
  max-width: 700px;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 25px 25px;  
  height: calc( 100vh - 100px );
  -moz-transform: skew(0deg, -2deg);
  -webkit-transform: skew(0deg, -2deg);
  -o-transform: skew(0deg, -2deg);
  -ms-transform: skew(0deg, -2deg);
  transform: skew(0deg, -2deg);
}


.section-journal .like-wrap {
  display: none;
  max-width: 600px;
  margin: 0 auto;
  position: absolute;
  left: 25px;
  padding-right: 15px;
  top: 125px;
  right: 25px;
  bottom: 50px;
  overflow-y: scroll;
  -moz-transform: skew(0deg, 2deg);
  -webkit-transform: skew(0deg, 2deg);
  -o-transform: skew(0deg, 2deg);
  -ms-transform: skew(0deg, 2deg);
  transform: skew(0deg, 2deg);
}

.section-journal .like-wrap .like-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  overflow: hidden;
  position: relative;
}

.section-journal .like-wrap .like-item .quote-icon {
  height: 75px;
  width: 75px;
  border-radius: 50%; 
  float: left;
  background-color: #CCCCCC;
}

.section-journal .like-wrap .like-item .fortune-icon {
  height: 75px;
  width: 75px;
  border-radius: 50%; 
  float: left;
  background-color: #CCCCCC;
}

.section-journal .like-wrap .like-item .image-wrap {
  height: 75px;
  width: 75px;
  border-radius: 50%; 
  float: left;
  background-size: cover;
  background-position: center center;

}

.section-journal .like-wrap .like-item .content-wrap {
  margin-left: 100px;
}

.section-journal .like-wrap .like-item .content-wrap h3 {
  margin-bottom: 5px;
  font-family: 'Indie Flower';
  font-size: 1.4em;
  line-height: 1.2em;
}

.section-journal .like-wrap .like-item.type-hero .content-wrap h3 { color: #655e9d; }
.section-journal .like-wrap .like-item.type-horoscope .content-wrap h3 { color: #e8913a; }
.section-journal .like-wrap .like-item.type-lifehack .content-wrap h3 { color: #e8913a; }
.section-journal .like-wrap .like-item.type-fortune .content-wrap h3 { color: #dcad59; }
.section-journal .like-wrap .like-item.type-quote .content-wrap h3 { color: #4c6f3e; }

.section-journal .journal-wrap {
  max-width: 600px;
  margin: 0 auto;
  position: absolute;
  left: 25px;
  padding-right: 15px;
  top: 125px;
  right: 25px;
  bottom: 50px;
  overflow-y: scroll;
  -moz-transform: skew(0deg, 2deg);
  -webkit-transform: skew(0deg, 2deg);
  -o-transform: skew(0deg, 2deg);
  -ms-transform: skew(0deg, 2deg);
  transform: skew(0deg, 2deg);
}

.section-journal .journal-wrap .journal-item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
  background-color: #F1F1F1;
  border-radius: 15px;
  padding: 15px 15px 30px 15px;
}

.section-journal .journal-wrap .journal-item:after {
  content: '';
  position: absolute;
  width: 0; 
  height: 0; 
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #F1F1F1;
  right: 30px;
  bottom: -20px;
}

.section-journal .journal-wrap .journal-item .more {
  position: absolute;
  right: 35px;
  bottom: 15px;
  font-size: 30px;
  cursor: pointer;
}

.section-journal .journal-wrap .journal-item .emoji-wrap {
  float: left;
  margin-top: -10px;
}

.section-journal .journal-wrap .journal-item .emoji-wrap img {
  width: 100px;
  height: auto;
}


.section-journal .journal-wrap .journal-item .content-wrap {
  margin-left: 120px;
  clear: right;
  margin-top: 0px;
}

.section-journal .journal-wrap .journal-item .content-wrap h3 {
  font-weight: normal;
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 15px;
}

.section-journal .journal-wrap .journal-item .content-wrap h4 {
  font-family: 'Indie Flower';
  font-weight: normal;
  font-size: 1.3em;
  line-height: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #cb7ca0;
}



.section-journal .journal-wrap .journal-item .content-wrap .text {
  font-family: 'Indie Flower';
  font-weight: normal;
  font-size: 1.8em;
  line-height: 1.2em;
}


.section-journal .journal-wrap .journal-item .content-wrap .text p {
  margin-bottom: 10px;
}

.section-journal .journal-wrap .journal-item .content-wrap .content {
  margin-bottom: 20px;
  display: none;
}

.section-journal .journal-wrap .journal-item .content-wrap .content:nth-child(2) {
  display: block;
}

.section-journal .journal-wrap .journal-item .content-wrap .actions {
  text-align: left;
  padding-top: 5px;
  cursor: pointer;
}

.section-journal .journal-wrap .journal-item .date-wrap {
  float: left;
}


.section-journal .journal-wrap .journal-item:nth-child(5n+1) .content-wrap .actions { color: #dcad59; }
.section-journal .journal-wrap .journal-item:nth-child(5n+2) .content-wrap .actions { color: #5f73b1; }
.section-journal .journal-wrap .journal-item:nth-child(5n+3) .content-wrap .actions { color: #cb7ca0; }
.section-journal .journal-wrap .journal-item:nth-child(5n+4) .content-wrap .actions { color: #4c6f3e; }
.section-journal .journal-wrap .journal-item:nth-child(5n+5) .content-wrap .actions { color: #030001; }



.section-heros .hero-wrap {
  position: relative;
  height: 100vh;
}

.section-heros .hero-wrap .hero-item {
  position: absolute;
  width: 120px;
  height: 120px;
  left: calc( 50% - 60px );
  top: calc( 50% - 60px );
  transition: transform 1s ease-in-out;
  text-align: center;
}

.section-heros .hero-wrap .hero-item .image {
  width: 120px;
  height: 120px;  
  border-radius: 50%;
  background-size: cover;
  cursor: pointer;
}

.section-heros .hero-wrap .hero-item .social-action {
  margin: 10px auto 0 auto;
}

.section-heros .hero-wrap .hero-item .content {
  color: #FFFFFF;
  width: 250%;
  transform: translateX(-50%);
  position: relative;
  left: 50%;
  opacity: 0;
  pointer-events: none;
}

.section-heros .hero-wrap .hero-item .content h4 {
  margin-top: 10px;
}

.section-heros .hero-wrap .hero-item .content .bio {
  margin-top: 10px;
}

.section-heros .hero-wrap .hero-item[data-delta='1'] {
  transform: translate( 0, 0);
  width: 180px;
  height: 180px;
  left: calc( 50% - 90px );
  top: calc( 50% - 90px );
}


.section-heros .hero-wrap .hero-item[data-delta='1'] .image {
  width: 180px;
  height: 180px;
}

.section-heros .hero-wrap .hero-item[data-delta='1'] .content {
  opacity: 1;
  pointer-events: initial;
  transition: all 1s ease-in-out;
  transition-delay: 0.5s;
}

.section-heros .hero-wrap .hero-item[data-delta='2'] {
  transform: translate( 0, -200% ) scale(0.75);
}

.section-heros .hero-wrap .hero-item[data-delta='3'] {
  transform: translate( 100%, -150%);
}

.section-heros .hero-wrap .hero-item[data-delta='4'] {
  transform: translate( 200%, -102.5% ) scale(0.75);
}

.section-heros .hero-wrap .hero-item[data-delta='5'] {
  transform: translate( 175%, 0);
}

.section-heros .hero-wrap .hero-item[data-delta='6'] {
  transform: translate( 200%, 102.5% ) scale(0.75);
}

.section-heros .hero-wrap .hero-item[data-delta='7'] {
  transform: translate( -200%, 102.5% ) scale(0.75);
}

.section-heros .hero-wrap .hero-item[data-delta='8'] {
  transform: translate( -175%, 0 );
}

.section-heros .hero-wrap .hero-item[data-delta='9'] {
  transform: translate( -200%, -102.5% ) scale(0.75);
}

.section-heros .hero-wrap .hero-item[data-delta='10'] {
  transform: translate( -100%, -150% );
}



.section-heros .hero-wrap .spokes {
  position: absolute;
  left: calc(50% - 33px);
  top: 50%;
}

.section-heros .hero-wrap .spokes .spoke {
  width: 66px;
  border-top: 1px solid #F1F1F1;
  position: absolute;
  z-index: -1;
  opacity: 0.25;
}


.section-heros .hero-wrap .spokes .spoke:nth-child(1) {
  transform: rotate(0deg) scaleX(5);
}

.section-heros .hero-wrap .spokes .spoke:nth-child(2) {
  transform: rotate(27.5deg) scaleX(7);
}

.section-heros .hero-wrap .spokes .spoke:nth-child(3) {
  transform: rotate(57.5deg) scaleX(2.5) translateX(-50%);
}

.section-heros .hero-wrap .spokes .spoke:nth-child(4) {
  transform: rotate(90deg) scaleX(3.5) translateX(-50%);
}

.section-heros .hero-wrap .spokes .spoke:nth-child(5) {
  transform: rotate(122.5deg) scaleX(2.5) translateX(-50%);
}

.section-heros .hero-wrap .spokes .spoke:nth-child(6) {
  transform: rotate(152.5deg) scaleX(7);
}


.section-horoscope .horoscope-wrap {
  width: calc( 100vh - 250px );
  height: calc( 100vh - 250px );
  margin: 150px auto 100px auto;
  text-align: center;
  transition: transform 1s ease-in-out;
  position: relative;
}

.section-horoscope .horoscope-wrap .horoscope-item {
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  top: calc( (50vh - 125px) - 50px );
  left: calc( (50vh - 125px) - 50px );
  transform-origin: center center;
  opacity: 1;
  cursor: pointer;
}


.section-horoscope .horoscope-wrap .horoscope-item:nth-child(1) { transform: rotate(90deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }
.section-horoscope .horoscope-wrap .horoscope-item:nth-child(2) { transform: rotate(120deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }
.section-horoscope .horoscope-wrap .horoscope-item:nth-child(3) { transform: rotate(150deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }
.section-horoscope .horoscope-wrap .horoscope-item:nth-child(4) { transform: rotate(180deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }
.section-horoscope .horoscope-wrap .horoscope-item:nth-child(5) { transform: rotate(210deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }
.section-horoscope .horoscope-wrap .horoscope-item:nth-child(6) { transform: rotate(240deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }
.section-horoscope .horoscope-wrap .horoscope-item:nth-child(7) { transform: rotate(270deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }
.section-horoscope .horoscope-wrap .horoscope-item:nth-child(8) { transform: rotate(300deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }
.section-horoscope .horoscope-wrap .horoscope-item:nth-child(9) { transform: rotate(330deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }
.section-horoscope .horoscope-wrap .horoscope-item:nth-child(10) { transform: rotate(0deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }
.section-horoscope .horoscope-wrap .horoscope-item:nth-child(11) { transform: rotate(30deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }
.section-horoscope .horoscope-wrap .horoscope-item:nth-child(12) { transform: rotate(60deg) translate( calc( 0px - (50vh - 125px) ) ) rotate(-90deg); }


.section-horoscope .horoscope-wrap .horoscope-item h3 {
  font-weight: 200;
  font-size: 1.2em;
  color: #FFFFFF;
  font-weight: bold;
}

.section-horoscope .horoscope-wrap .horoscope-item .content-wrap {
  display: none;
}

.section-horoscope .horoscope-wrap .horoscope-item .image-wrap {
  background-color: #FFFFFF;
  border-radius: 50%;
  margin-bottom: 10px;
  height: 70px;
  width: 70px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.section-horoscope .horoscope-wrap .horoscope-item.active .image-wrap {
  height: 120px;
  width: 120px;
}


.section-horoscope .horoscope-wrap .horoscope-item .image-wrap .sleeve {
  height: 30px;
  width: 30px;
  padding: 20px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.section-horoscope .horoscope-wrap .horoscope-item .image-wrap svg {
  height: 100%;
  width: auto;
  position: relative;
  display: block;
  left: 50%;
  transform: translateX(-50%);
}

.section-horoscope .horoscope-wrap .horoscope-item.active {
  opacity: 1;
}

.section-horoscope .horoscope-wrap .horoscope-item.active h3 {
  display: none;
}

.section-horoscope .horoscope-wrap .horoscope-item.active .image-wrap .sleeve {
  transform: translateX(-50%) scale(2.0);
  transition: transform 1.5s ease-in-out;
}

.section-horoscope .horoscope-wrap .horoscope-item.active .image-wrap .sleeve svg {
  top: 50%;
}

.section-horoscope .master-content-wrap {
  width: calc( 100vh - 450px );
  height: calc( 100vh - 450px );
  margin: 0 auto;
  padding: 0;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: hidden;
  bottom: 0;
  font-weight: 200;
  color: #FFFFFF;
  x-pointer-events: none;
    overflow: hidden;
    overflow-y: auto;
}

.section-horoscope .master-content-wrap .sleeve {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-horoscope .master-content-wrap h3 {
  margin: 0 0 10px 0;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 1.6em;
  line-height: 1.1em;
  color: #FFFFFF;
  font-weight: bold;
}

.section-horoscope .master-content-wrap p {
  font-size: 1.1em;
  line-height: 1.3em;
}




@media screen and (max-height: 730px) {

  .section-horoscope .horoscope-wrap {
    width: 480px;
    height: 480px;
  }

  .section-horoscope .horoscope-wrap .horoscope-item {
    top: calc( 240px - 50px );
    left: calc( 240px - 50px );
  }


  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(1) { transform: rotate(90deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }
  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(2) { transform: rotate(120deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }
  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(3) { transform: rotate(150deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }
  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(4) { transform: rotate(180deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }
  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(5) { transform: rotate(210deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }
  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(6) { transform: rotate(240deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }
  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(7) { transform: rotate(270deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }
  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(8) { transform: rotate(300deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }
  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(9) { transform: rotate(330deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }
  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(10) { transform: rotate(0deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }
  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(11) { transform: rotate(30deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }
  .section-horoscope .horoscope-wrap .horoscope-item:nth-child(12) { transform: rotate(60deg) translate( calc( 0px - 240px ) ) rotate(-90deg); }

  .section-horoscope .master-content-wrap {
    width: 280px;
    height: 280px;
  }


}

/*

@media screen and (max-width: 1450px) {

  .section-horoscope .horoscope-wrap .horoscope-item.active .image-wrap {
    height: 100px;
    width: 100px;
  }

  .section-horoscope .horoscope-wrap .horoscope-item h3 {
    font-size: 1em;
  }

}

*/

.section-resources {
  bottom: 0;
  overflow-y: scroll;
}


.section-resources > .sleeve {
  background-color: #FFFFFF;
  max-width: 700px;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 25px 25px;  
  height: calc( 100vh - 100px );
  -moz-transform: skew(0deg, 4deg);
  -webkit-transform: skew(0deg, 4deg);
  -o-transform: skew(0deg, 4deg);
  -ms-transform: skew(0deg, 4deg);
  transform: skew(0deg, 4deg);
}


.section-resources .resource-wrap {
  max-width: 600px;
  margin: 0 auto;
  position: absolute;
  left: 25px;
  padding-right: 15px;
  top: 75px;
  right: 25px;
  bottom: 75px;
  overflow-y: scroll;
  -moz-transform: skew(0deg, -4deg);
  -webkit-transform: skew(0deg, -4deg);
  -o-transform: skew(0deg, -4deg);
  -ms-transform: skew(0deg, -4deg);
  transform: skew(0deg, -4deg);
}


/*
.section-resources > .sleeve {
  background-color: #FFFFFF;
  max-width: 500px;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 50px 25px;  
  height: calc( 100vh - 100px );
}

.section-resources > .sleeve:before {
  content: '';
  position: fixed;
  left: 0; 
  right: 0;
  bottom: -50px;
  margin: 0 auto;
  height: 100px;
  max-width: 600px;
  background-color: #527fa6;
  transform: skew(3deg, 3deg);
  z-index: 1;
}

.section-resources > .sleeve:after {
  content: '';
  position: fixed;
  left: 0; 
  right: 0;
  top: -50px;
  margin: 0 auto;
  height: 100px;
  max-width: 600px;
  background-color: #527fa6;
  transform: skew(-1.5deg, -1.5deg);
  z-index: 1;
}

*/

.section-resources .resource-item {
  text-align: center;
}

.section-resources .resource-item .content {
  padding: 15px 0 15px 0;
  display: none;
}

.section-resources .resource-item .content p {
  font-size: 1.2em;
  line-height: 1.4em;
  margin-bottom: 15px;
} 

.section-resources .resource-item h3 span {
  display: inline-block;
  padding: 10px 50px;
  font-family: 'Indie Flower';
  font-size: 1.8em;
  line-height: 1.1em;
  background-color: #FFFFFF;
  color: #FFFFFF;
  cursor: pointer;
  pointer-events: initial;
  transition: transform 0.5s ease-in-out;
  background-image: url(img/books-spine.svg);
  background-size: cover;
}

.section-resources .resource-item[data-delta='1'] h3 span {
  background-color: #dcad59;
  transform: rotate(-1deg);
}
.section-resources .resource-item[data-delta='1'] .content a {
  color: #dcad59;
}
.section-resources .resource-item[data-delta='1'] h3 span:hover {
  transform: rotate(-0.5deg);
  opacity: 1;
}

.section-resources .resource-item[data-delta='2'] h3 span {
  background-color: #5f73b1;
  transform: rotate(1deg);
}
.section-resources .resource-item[data-delta='2'] .content a {
  color: #5f73b1;
}
.section-resources .resource-item[data-delta='2'] h3 span:hover {
  transform: rotate(2deg);
  opacity: 1;
}

.section-resources .resource-item[data-delta='3'] h3 span {
  background-color: #cb7ca0;
  transform: rotate(1.5deg);
}
.section-resources .resource-item[data-delta='3'] .content a {
  color: #cb7ca0;
}
.section-resources .resource-item[data-delta='3'] h3 span:hover {
  transform: rotate(-1deg);
  opacity: 1;
}

.section-resources .resource-item[data-delta='4'] h3 span {
  background-color: #4c6f3e;
  transform: rotate(-1deg);
}
.section-resources .resource-item[data-delta='4'] .content a {
  color: #4c6f3e;
}
.section-resources .resource-item[data-delta='4'] h3 span:hover {
  transform: rotate(-2deg);
  opacity: 1;
}

.section-resources .resource-item[data-delta='5'] h3 span {
  background-color: #e8913a;
  transform: rotate(0.5deg);
}
.section-resources .resource-item[data-delta='5'] .content a {
  color: #030001;
}
.section-resources .resource-item[data-delta='5'] h3 span:hover {
  transform: rotate(-1.5deg);
  opacity: 1;
}


.field-wrap-avatar-options,
.field-wrap-room-options {
  max-width: 650px;
}

.avatar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.avatar-wrap .avatar-item {
  width: calc( (100% / 6) - ( 100px / 6 ) ); 
}

.avatar-wrap .avatar-item.active {

  order: -1;
}



.field-wrap-avatar-options .owl-nav .owl-prev,
.field-wrap-room-options .owl-nav .owl-prev {
  position: absolute;
  left: -20px;
  top: 45px;
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(img/arrow-left.svg);
  background-size: cover;
  background-position: left center;
  text-indent: -9999px;
}

.field-wrap-avatar-options .owl-nav .owl-next,
.field-wrap-room-options .owl-nav .owl-next {
  position: absolute;
  right: -20px;
  top: 45px;
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(img/arrow-right.svg);
  background-size: cover;
  background-position: left center;
  text-indent: -9999px;
}

.field-wrap-avatar-options label,
.field-wrap-room-options label {
  width: 100%;
  margin-bottom: 15px;
  cursor: pointer;
}

.user-profile-form fieldset > label {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  z-index: 1;
}

.field-wrap-avatar-options .image-wrap,
.field-wrap-room-options .image-wrap {
  overflow: visible;
  border: 3px solid transparent;
}

.field-wrap-avatar-options .input-wrap .image-wrap,
.field-wrap-room-options .input-wrap .image-wrap {
  opacity: 1;
  overflow: hidden;
}

.field-wrap-avatar-options .input-wrap input,
.field-wrap-room-options .input-wrap input {
  display: none;
}

.field-wrap-avatar-options .input-wrap .image-wrap:hover {
  opacity: 1;
  border: 3px solid #b93937;
}

.field-wrap-avatar-options .input-wrap input:checked ~ label .image-wrap {
  opacity: 1;
  border: 3px solid #b93937;
  
}


.field-wrap-room-options .input-wrap input:checked ~ label img {
  opacity: 1;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}



body.single-session {
  background-color: #FFFFFF;
}


body.single-session .entry-title,
body.single-session .entry-subtitle {
  color: #5f73b1;
}

body.single-session .entry-header .entry-title:after {
  border-color: #5f73b1;
}

body.single-session #header .site-branding .site-title span { 
  background-image: url(img/logo-colour.png);
}

body.single-session #header .logout-link-wrap a {
  color: #5f73b1;
}




/*


body.home header.entry-header {
  background-size: cover;
  background-position: center bottom;
  margin-bottom: 0;
  height: 60vh;
  position: relative;
  background-image: url(img/noise.png);
  background-color: #FFFFFF;
}

body.home header.entry-header:after {
  content: '';
  background-image: url(img/logo-colour.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% + 35px);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 400px;
  height: 180px;
}

body.home header.entry-header.in-view:after {
  transform: translateY(-50%) scale(1.05);
  transition: transform 1s ease-in-out;
}


body.page-id-9 header.entry-header {
  background-color: #7299aa;
  margin-bottom: 0;
  background-image: url(img/noise.png);
}

body.page-id-9 header.entry-header .sleeve {
  background-image: url(img/effects/anglepoise.png);
  background-repeat: no-repeat;
  background-position: left 100px bottom 10px;
  background-size: 125px auto;
}

body.page-id-13 header.entry-header {
  background-color: #e3af51;
  margin-bottom: 0;
  background-image: url(img/noise.png);
}

body.page-id-13 header.entry-header .sleeve {
  background-image: url(img/effects/bottle-cup.png);
  background-repeat: no-repeat;
  background-position: right 100px bottom;
  background-size: 150px auto;
}


body.single-session header.entry-header {
  background-color: #7299aa;
  margin-bottom: 0;
  background-image: url(img/noise.png);
}


.section-defaults {
  padding: 75px 0;
}

.section-defaults h2 {
  text-align: center;
  font-size: 3em;
  line-height: 1.2em;
  font-weight: 200;
  margin-bottom: 30px;
}

.section-defaults .subtitle {
  text-align: center;
  font-size: 1.4em;
  line-height: 1.2em;
  font-weight: 200;
  margin-bottom: 15px;
}

.section-sessions-home {
  text-align: center;
  overflow: hidden;
  background-color: #517fa5;
  color: #FFFFFF;
}

.section-sessions-home .session-wrap {
  width: 500px;
  margin: 30px auto 0 auto;
  position: relative;
  padding-top: 60px;
}


.section-sessions-home .owl-controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  opacity: 0.5;
}


.section-sessions-home .owl-controls .owl-dot {
  border-radius: 50%;
  background-color: #FFFFFF;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 0 5px;
  border: 2px solid #FFFFFF;
}

.section-sessions-home .owl-controls .owl-dot.active {
  background-color: transparent;
}

.section-sessions-home .session-wrap .session-item .meta-wrap {
  text-align: center;
}

.section-sessions-home .session-wrap .session-item .meta-wrap .meta-item {
  display: inline-block;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255,255,255,0.5);
}

.section-sessions-home .session-wrap .session-item .meta-wrap .meta-item:last-child {
  border-right: 0;
}

.section-sessions-home .session-wrap .session-item .meta-wrap .meta-item a {
  color: #FFFFFF;
}

.section-sessions-home .session-wrap .session-item .image-wrap {
  -webkit-box-shadow: 0px 0px 71px 0px rgba(255,255,255,0.25);
  -moz-box-shadow: 0px 0px 71px 0px rgba(255,255,255,0.25);
  box-shadow: 0px 0px 71px 0px rgba(255,255,255,0.25);
  position: relative;
  margin-bottom: 15px;
}

.section-sessions-home .session-wrap .session-item.unavailable .image-wrap img {
  opacity: 0.5;
}


.section-sessions-list .session-wrap .session-item .image-wrap .coming-soon-icon-wrap,
.section-sessions-settings .session-wrap .session-item .image-wrap .coming-soon-icon-wrap,
.section-sessions-home .session-wrap .session-item .image-wrap .coming-soon-icon-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-sessions-list .session-wrap .session-item .coming-soon-icon-wrap span,
.section-sessions-settings .session-wrap .session-item .coming-soon-icon-wrap span,
.section-sessions-home .session-wrap .session-item .coming-soon-icon-wrap span {
  background-image: url(img/coming-soon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  text-indent: -9999px;
}

.section-sessions-list .session-wrap .session-item .coming-soon-icon-wrap span,
.section-sessions-settings .session-wrap .session-item .coming-soon-icon-wrap span {
  width: 50px;
  height: 50px;
}

.section-sessions-list .session-wrap .session-item .image-wrap .completed-icon-wrap,
.section-sessions-settings .session-wrap .session-item .image-wrap .completed-icon-wrap,
.section-sessions-home .session-wrap .session-item .image-wrap .completed-icon-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-sessions-list .session-wrap .session-item .completed-icon-wrap span,
.section-sessions-settings .session-wrap .session-item .completed-icon-wrap span,
.section-sessions-home .session-wrap .session-item .completed-icon-wrap span {
  background-image: url(img/tick.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  text-indent: -9999px;
}

.section-sessions-list .session-wrap .session-item .completed-icon-wrap span,
.section-sessions-settings .session-wrap .session-item .completed-icon-wrap span {
  width: 50px;
  height: 50px;
}

.section-sessions-list .session-wrap .session-item .image-wrap .start-button-wrap,
.section-sessions-settings .session-wrap .session-item .image-wrap .start-button-wrap,
.section-sessions-home .session-wrap .session-item .image-wrap .start-button-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-sessions-list .session-wrap .session-item .start-button-wrap a,
.section-sessions-settings .session-wrap .session-item .start-button-wrap a,
.section-sessions-home .session-wrap .session-item .start-button-wrap a {
  background-image: url(img/play.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: block;
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

.section-sessions-list .session-wrap .session-item .start-button-wrap a span,
.section-sessions-settings .session-wrap .session-item .start-button-wrap a span,
.section-sessions-home .session-wrap .session-item .start-button-wrap a span {
  display: block;
  width: 100px;
  height: 100px;
  text-indent: -9999px;
}

.section-sessions-list .session-wrap .session-item .start-button-wrap a,
.section-sessions-list .session-wrap .session-item .start-button-wrap a span,
.section-sessions-settings .session-wrap .session-item .start-button-wrap a,
.section-sessions-settings .session-wrap .session-item .start-button-wrap a span {
  width: 50px;
  height: 50px;
}

.section-sessions-home .session-wrap .session-item h3 {
  text-align: center;
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 300;
  margin-bottom: 15px;
}

.section-sessions-home .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.section-sessions-home .owl-carousel .owl-stage-outer .owl-item {
  opacity: 0.2;
  transform: scale(0.5);
}

.section-sessions-home .owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  transform: none;
}


.section-tips {
  color: #FFFFFF; 
  background-color: #e2ac4b;
  background-image: url(img/effects/lights.png);
  background-repeat: no-repeat;
  background-position: right 50px top 50px;
  background-size: 1500px auto;
}






.section-journal .journal-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.section-journal .journal-wrap .journal-item {
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.section-journal .journal-wrap .journal-item .date-wrap {
  float: left;
}

.section-journal .journal-wrap .journal-item .content-wrap {
  margin-left: 80px;
  clear: right;
}



.section-sessions {
  background-color: #517fa5;
  color: #FFFFFF;
}

.section-sessions-list {
  background-color: #FFFFFF;
  color: #517fa5;
}

.section-sessions-list a {
  color: #517fa5;
}


.section-news {
  background-image: url(img/line-red.svg);
  background-size: auto 105%;
  background-repeat: no-repeat;
  background-position: left 100px center;
}

.section-news .news-item {
  background-color: rgba(255,255,255,0.8);
  -webkit-box-shadow: 0px 0px 50px 0px #FFFFFF;
  -moz-box-shadow: 0px 0px 50px 0px #FFFFFF;
  box-shadow: 0px 0px 50px 0px #FFFFFF;
}

.section-news .news-item h3 {
  font-size: 1.6em;
  line-height: 1.2em;
  font-weight: 200;
  margin-bottom: 10px;
}

.section-news .news-item .image-wrap {
  transition: all 0.5s ease-in-out;
  margin-bottom: 20px;
}

.section-news .news-item:hover .image-wrap {
  transform: scale(1.05);
}

.section-news .news-item .date {
  margin-bottom: 5px;
  color: #4d669e;
}

.section-news .news-item .teaser {
  font-size: 1.1em;
  line-height: 1.5em;
}

.section-news .news-item .read-more {
  display: block;
  margin-top: 15px;
  color: #4d669e;
}

.section-sessions-list .session-item,
.section-sessions-settings .session-item {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-bottom: 30px;
}

.section-sessions-list .session-item .content-wrap,
.section-sessions-settings .session-item .content-wrap {
  width: calc( 100% - 300px )
}


.section-sessions-list .session-item .image-wrap,
.section-sessions-settings .session-item .image-wrap {
  width: 250px;
  border: 1px solid rgba(255,255,255,0.5);
  margin-right: 30px;
}

.section-sessions-list .session-item h3,
.section-sessions-settings .session-item h3 {
  font-size: 1.8em;
  line-height: 1.2em;
  margin-bottom: 10px;
  font-weight: 300;
}

.section-sessions-settings .session-item a {
  color: #FFFFFF;
}




.section-lifehacks {
  background-color: #172539;
  color: #FFFFFF;
}








.section-lifehacks .lifehack-wrap {
  overflow: hidden;
  padding-bottom: 66.67%;
  position: relative;
}

.section-lifehacks .lifehack-wrap > .sleeve {
  width: 150%;
  position: absolute;
  transform: translate( -16.6667%, -30% );
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; 
}

.section-lifehacks .lifehack-wrap .lifehack-item {
  width: calc(100% / 6);
  transform: skew(10deg, 10deg) scale(1.035);
  border: 1px solid #CCCCCC;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}

.section-lifehacks .lifehack-wrap .lifehack-item .sleeve {
  padding-bottom: 100%; 
  background-size: cover;
  background-position: center center;
  transform: skew(-10deg, -10deg) scale(1.25);
  transition: all 0.5s ease-in-out;
  position: relative;
}

.section-lifehacks .lifehack-wrap .lifehack-item .sleeve:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #172539;
  opacity: 0.8;
  z-index: 1;
}

.section-lifehacks .lifehack-wrap .lifehack-item:hover .sleeve {
  opacity: 1;
  transform: skew(-10deg, -10deg) scale(1.45);
}

.section-lifehacks .lifehack-wrap .lifehack-item:hover .sleeve:after {
  opacity: 0;
}

.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(1) { left: 0; top: 0; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(2) { left: 7px; top: 42px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(3) { left: 14px; top: 84px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(4) { left: 21px; top: 126px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(5) { left: 28px; top: 168px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(6) { left: 35px; top: 210px; }

.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(7) { left: 42px; top: 7px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(8) { left: 49px; top: 49px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(9) { left: 56px; top: 91px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(10) { left: 63px; top: 133px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(11) { left: 70px; top: 175px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(12) { left: 77px; top: 217px; }

.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(13) { left: 84px; top: 14px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(14) { left: 91px; top: 56px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(15) { left: 98px; top: 98px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(16) { left: 105px; top: 140px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(17) { left: 112px; top: 182px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(18) { left: 119px; top: 224px; }

.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(19) { left: 126px; top: 21px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(20) { left: 133px; top: 63px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(21) { left: 140px; top: 105px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(22) { left: 147px; top: 147px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(23) { left: 154px; top: 189px; }
.section-lifehacks .lifehack-wrap .lifehack-item:nth-child(24) { left: 161px; top: 231px; }





*/




body.participant-login {
  background-color: #FFFFFF;
}

body.participant-login #page {
  position: relative;
  top: 50vh;
  transform: translateY(-50%);
}

body.participant-login #header {
  position: static;
}

body.participant-login #header .site-branding {
  float: none;
} 

body.participant-login #header .site-branding .site-title span {
  background-image: url(img/logo-colour.png);
  margin: 0 auto;
  transition: 0.5s all ease-in;
}

body.participant-login #header .site-branding .site-title span:hover {
  transform: scale(1.2);  
}

body.participant-login .site-main form {
  max-width: 400px;
  margin: 0 auto;
}

body.participant-login .site-main form p {
  line-height: 1.4em;
}

body.participant-login .site-main form .message-error {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 15px;
  color: #a0423b; 
}

body.participant-login .site-main form label {
  display: none;
}

body.participant-login .site-main form input {
  border: 1px solid #e9913a;
  width: 100%;
  padding: 15px 15px;
  font-size: 24px;
}

body.participant-login .site-main form input::placeholder { font-weight: 200; }
body.participant-login .site-main form input:-ms-input-placeholder { font-weight: 200; }
body.participant-login .site-main form input::-ms-input-placeholder { font-weight: 200; }

body.participant-login .site-main form button {
  background-color: #e9913a;
  color: #FFFFFF;
  padding: 15px 45px;
  border: 1px solid #e9913a;
  width: 100%;  
  font-size: 16px;
  transition: colour,background-color 0.5s ease-in;
  position: relative;
  display: block;
}

body.participant-login .site-main form button:hover {
  background-color: #FFFFFF;
  color: #e9913a;
}

body.participant-login .site-main form button:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 30px;
  transition: transform 1s ease-in-out;
}

body.participant-login .site-main form button:hover:after {
  background-image: url(img/logo-symbol-orange.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;  
  transform: rotate(180deg);
}



.logout-countdown {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
  
}

.logout-countdown .sleeve {
  background-color: #d29243;
  margin: 0 auto;
  color: #FFFFFF;
  position: relative;
  top: 50vh;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  max-width: 600px;
  padding: 30px;
  text-align: center;
}


.logout-countdown .sleeve .title {
  font-size: 24px;
  line-height: 38px;
  margin-bottom: 30px;
}

.logout-countdown .sleeve button {
  border: 1px solid #FFFFFF;
  background-color: #FFFFFF;
  font-size: 16px;
  color: #d29243;
  padding: 5px 45px;
  transition: all 0.5s ease-in;
  display: inline-block;
  position: relative;
}

.logout-countdown .sleeve button:hover {
  background-color: #d29243;
  color: #FFFFFF;
}

.logout-countdown .sleeve button:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 15px;
  transition: transform 1s ease-in-out;
}

.logout-countdown .sleeve button:hover:after {
  background-image: url(img/logo-symbol-white.png);
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: center center;  
  transform: rotate(180deg);
}



