/*
 * Fonts
 */
/*
 * Layout
 */
/*
 * Padding
 */
/*
 * Padding
 */
/*
 * Borders
 */
/*
 * Colors
 */
.hide {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
.align-center {
  text-align: center;
}
/*
 * Layout
 */
.block {
  display: block;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
/*
 * Background
 */
.bg--white {
  background-color: white;
}
.bg--primary {
  background-color: #c5275d;
}
.bg--secondary {
  background-color: #f0709b;
}
/*
 * Text
 */
.text--size_xxsmall {
  font-size: 12px;
}
.text--size_xsmall {
  font-size: 14px;
}
.text--size_small {
  font-size: 16px;
}
.text--size_normal {
  font-size: 18px;
}
.text--size_medium {
  font-size: 20px;
}
.text--size_large {
  font-size: 22px;
}
.text--size_xlarge {
  font-size: 24px;
}
.text--size_xxlarge {
  font-size: 30px;
}
.text--weight--light {
  font-weight: 300;
}
.text--weight--normal {
  font-weight: 400;
}
.text--weight--medium {
  font-weight: 500;
}
.text--weight--bold {
  font-weight: bold;
}
.text--line-through {
  text-decoration: line-through;
}
.text--underline {
  text-decoration: underline;
}
.text-white {
  color: #fff !important;
}
.text-grey {
  color: #ddd !important;
}
.text-primary {
  color: #c5275d !important;
}
.text-secondary {
  color: #f0709b !important;
}
.text-success {
  color: #28a745 !important;
}
.text-info {
  color: #17a2b8 !important;
}
.text-warning {
  color: #ffc107 !important;
}
.text-danger {
  color: #dc3545 !important;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
/*
 * Borders
 */
.border-radius--none {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.border-radius--small {
  -webkit-border-radius: 5px / 2;
  -moz-border-radius: 5px / 2;
  border-radius: 5px / 2;
}
.border-radius--normal {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.border-radius--large {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.border-radius--xlarge {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.border-radius--xxlarge {
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}
.border-radius--circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.border-bottom-1 {
  border-bottom: 1px solid black;
}
/*
 * Padding
 */
.padding--small {
  padding: 10px / 2;
}
.padding--normal {
  padding: 10px;
}
.padding--large {
  padding: 20px;
}
/*
 * Padding
 */
.margin--small {
  margin: 10px / 2;
}
.margin--normal {
  margin: 10px;
}
.margin--large {
  margin: 20px;
}
.m-t-50 {
  margin-top: 50px;
}
.m-r-50 {
  margin-right: 50px;
}
.m-b-50 {
  margin-bottom: 50px;
}
.m-l-50 {
  margin-left: 50px;
}
.m-t-40 {
  margin-top: 40px;
}
.m-r-40 {
  margin-right: 40px;
}
.m-b-40 {
  margin-bottom: 40px;
}
.m-l-40 {
  margin-left: 40px;
}
.m-t-30 {
  margin-top: 30px;
}
.m-r-30 {
  margin-right: 30px;
}
.m-b-30 {
  margin-bottom: 30px;
}
.m-l-30 {
  margin-left: 30px;
}
.m-t-20 {
  margin-top: 20px;
}
.m-r-20 {
  margin-right: 20px;
}
.m-b-20 {
  margin-bottom: 20px;
}
.m-l-20 {
  margin-left: 20px;
}
.m-t-10 {
  margin-top: 10px;
}
.m-r-10 {
  margin-right: 10px;
}
.m-b-10 {
  margin-bottom: 10px;
}
.m-l-10 {
  margin-left: 10px;
}
/*
 * Layout
 */
/*
 * Box Shadow
 */
/*
 * Placeholder
 */
/*
 * Animations
 */
/*
 * Borders
 */
/*
 * Bounce
 */
.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}
@-o-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-30px);
  }
  60% {
    -o-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
/*
 * Fade In
 */
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*
 * Progress Bar
 */
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.button {
  display: block;
  width: 100%;
  border: 0;
  outline: 0;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button i.fa-spinner.fa-spin {
  color: white;
}
.button a {
  display: block;
  color: #333333;
}
.button span {
  display: inline-block;
  position: relative;
  display: none;
  -webkit-animation: fadein 1s;
  -moz-animation: fadein 1s;
  -ms-animation: fadein 1s;
  -o-animation: fadein 1s;
  animation: fadein 1s;
}
.button:hover span {
  display: inline-block;
}
.button:active {
  position: relative;
  top: 1px;
}
.button.button--inline {
  display: inline-block;
  width: auto;
}
.button.button--primary {
  background-color: #c5275d;
}
.button.button--primary a {
  color: white;
}
.button.button--primary:hover {
  background-color: #f0709b;
}
.button.button--secondary {
  background-color: #f0709b;
}
.button.button--secondary a {
  color: white;
}
.button.button--secondary:hover {
  background-color: #c5275d;
}
.button.button--disabled {
  background-color: #eee;
}
.button.button--disabled a {
  color: #333333;
}
.button.button--disabled:hover {
  background-color: #c5275d;
}
.button.button--disabled:hover a {
  color: white;
}
.button.button--transparent {
  background-color: transparent;
}
.button.button--bordered {
  border: 1px solid #333333;
}
.progress {
  height: 32px;
  overflow: hidden;
  background-color: #eee;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}
.progress .progress-bar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  width: 13%;
  height: 32px;
  overflow: hidden;
  color: white;
  text-align: center;
  white-space: nowrap;
  background-color: #c5275d;
  -webkit-transition: width 2s ease;
  -moz-transition: width 2s ease;
  -o-transition: width 2s ease;
  transition: width 2s ease;
}
.progress .progress-bar.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}
.progress .progress-bar.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}
#questions-success {
  height: 50px;
}
#questions-success .progress-bar {
  -webkit-animation: progress-bar-stripes 8s linear infinite;
  animation: progress-bar-stripes 8s linear infinite;
  height: 50px;
  -webkit-transition: width 8s linear;
  -moz-transition: width 8s linear;
  -o-transition: width 8s linear;
  transition: width 8s linear;
}
#questionnaire-progress-bar-1 {
  margin-bottom: 10px;
  height: 50px;
}
#questionnaire-progress-bar-1 .progress-bar {
  height: 50px;
  background-color: #058dc7;
  -webkit-animation: progress-bar-stripes 6s linear infinite;
  animation: progress-bar-stripes 6s linear infinite;
  -webkit-transition: width 6s linear;
  -moz-transition: width 6s linear;
  -o-transition: width 6s linear;
  transition: width 6s linear;
}
#questionnaire-progress-bar-2 {
  margin-bottom: 10px;
  height: 50px;
}
#questionnaire-progress-bar-2 .progress-bar {
  height: 50px;
  background-color: #2fa202;
  -webkit-animation: progress-bar-stripes 8s linear infinite;
  animation: progress-bar-stripes 8s linear infinite;
  -webkit-transition: width 8s linear;
  -moz-transition: width 8s linear;
  -o-transition: width 8s linear;
  transition: width 8s linear;
}
#questionnaire-progress-bar-3 {
  height: 50px;
}
#questionnaire-progress-bar-3 .progress-bar {
  height: 50px;
  background-color: #c5275d;
  -webkit-animation: progress-bar-stripes 10s linear infinite;
  animation: progress-bar-stripes 10s linear infinite;
  -webkit-transition: width 10s linear;
  -moz-transition: width 10s linear;
  -o-transition: width 10s linear;
  transition: width 10s linear;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
    animation: none;
  }
}
@media (max-width: 768px) {
  .progress-bar {
    font-size: 15px;
  }
}
.recipe {
  cursor: pointer;
}
.recipe .content h3 {
  margin: 10px 0 5px 0;
}
.recipes-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 10px 10px;
}
.recipes-grid .recipe {
  position: relative;
  flex-grow: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: flex-end;
  -moz-box-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.recipes-grid .recipe .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.recipes-grid .recipe .content {
  position: absolute;
  z-index: 10;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
.recipes-grid .recipe .content h3 {
  font-family: "Heebo", sans-serif;
  font-size: 20px;
  margin: 0;
  color: white;
}
.recipes-grid .recipe .content .tags {
  margin: 5px 0 0 0;
  color: white;
  font-style: italic;
}
.search-recipes-wrapper {
  margin: 0 auto 20px auto;
  text-align: center;
}
.search-recipes-wrapper #search-recipes {
  max-width: 300px;
  margin-bottom: 10px;
}
.search-recipes-wrapper a.filter-recipe-cat:not(:last-child)::after {
  content: ',';
}
@media (max-width: 1024px) {
  .recipes-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 10px 10px;
  }
}
@media (max-width: 768px) {
  .recipes-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-gap: 10px 10px;
  }
}
.training,
.workshop {
  position: relative;
  cursor: pointer;
}
.training .day-title-wrapper,
.workshop .day-title-wrapper {
  position: absolute;
  left: 50%;
}
.training .day-title,
.workshop .day-title {
  color: #E5C029;
  min-height: 24px;
  text-align: center;
  margin-bottom: 10px;
}
.training .thumbnail,
.workshop .thumbnail {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 300px;
  margin-top: 40px;
}
.training .thumbnail .completed-bubble,
.workshop .thumbnail .completed-bubble {
  position: absolute;
  margin-top: 5px;
  margin-right: 5px;
}
.training .thumbnail .completed-bubble i.fas.fa-check,
.workshop .thumbnail .completed-bubble i.fas.fa-check {
  background-color: #ffffff;
}
.training .meta-data,
.workshop .meta-data {
  background-color: rgba(197, 39, 93, 0.8);
  margin-bottom: 10px;
  padding: 7px;
  color: white;
  text-align: center;
}
.training .taxonomy-name,
.workshop .taxonomy-name {
  margin-left: 3px;
}
.training .title,
.workshop .title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}
.training .title p,
.workshop .title p {
  font-family: "Heebo", sans-serif;
  font-size: 26px;
  color: white;
  margin: 0;
}
.training {
  width: calc(33.33% - 20px) !important;
  margin: 0 10px;
}
@media (max-width: 768px) {
  .training .thumbnail,
  .workshop .thumbnail {
    min-height: 250px;
    margin-top: 10px;
  }
  .training .day-title,
  .workshop .day-title {
    background-color: #989898;
    margin-bottom: 0;
    font-weight: bold;
    letter-spacing: 0;
    padding: 7px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    color: white;
  }
  .training .meta-data,
  .workshop .meta-data {
    margin-bottom: 10px;
  }
  .training {
    width: 100% !important;
    margin: 0;
  }
}
.dropzone-containers-wrapper {
  margin: 30px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.dropzone-containers-wrapper .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.dropzone-containers-wrapper .item h2 {
  text-align: center;
}
.dropzone-containers-wrapper .item i.fa-caret-left {
  margin: 0 30px;
  font-size: 50px;
}
.dropzone-containers-wrapper .dropzone {
  min-width: 241px;
  border: 2px dotted #c5275d;
  text-align: center;
  min-height: 428px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.dropzone-containers-wrapper .dropzone p {
  color: white;
}
.dropzone-containers-wrapper .dropzone .fa-plus {
  font-size: 30px;
}
.dropzone-containers-wrapper .dropzone-title {
  margin-top: 70px;
}
.dropzone-containers-wrapper .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 786px) {
  .dropzone-containers-wrapper {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 5px 10px;
  }
  .dropzone-containers-wrapper .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: stretch;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .dropzone-containers-wrapper .item h2 {
    font-size: 18px;
  }
  .dropzone-containers-wrapper .item i.fa-caret-left {
    display: none;
  }
  .dropzone-containers-wrapper .dropzone {
    min-width: initial;
    min-height: 220px;
  }
  .dropzone-containers-wrapper .dropzone p {
    margin: 0 0 5px 0;
  }
  .dropzone-containers-wrapper .dropzone .fa-plus {
    font-size: 24px;
  }
  .dropzone-containers-wrapper .dropzone-title {
    margin-top: 23px;
    font-size: 14px;
  }
}
.elementor-field-type-step .elementor-field-label {
  font-size: 22px;
}
.coupon-form + .coupon-form-errors ul {
  list-style-type: none;
  padding: 0;
  margin-top: 5px;
}
.coupon-form + .coupon-form-errors div.woocommerce-message {
  margin-top: 5px;
}
#payment-form {
  margin: 30px auto;
  max-width: 500px;
  align-items: center;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 10px 10px;
}
#payment-form .form-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
#payment-form .form-group label {
  min-width: 200px;
}
#payment-form .form-group:nth-of-type(1) {
  grid-row: 1;
  grid-column: 1 / 4;
}
#payment-form .form-group:nth-of-type(2) {
  grid-row: 2;
  grid-column: 1 / 4;
}
#payment-form .form-group:nth-of-type(2) #frmCCExpMonth {
  margin-left: 5px;
}
#payment-form .form-group:nth-of-type(2) #frmCCExpYear {
  margin-right: 5px;
}
#payment-form .form-group:nth-of-type(3) {
  grid-row: 3;
  grid-column: 1 / 4;
}
#payment-form .form-group:nth-of-type(4) {
  grid-row: 4;
  grid-column: 1 / 4;
}
#payment-form .form-group:nth-of-type(5) {
  grid-row: 5;
  grid-column: 1 / 4;
}
#payment-form .form-group:nth-of-type(6) {
  grid-row: 6;
  grid-column: 1 / 4;
  justify-content: center;
}
#payment-form button[type="submit"] {
  margin-top: 20px;
  padding: 12px 70px;
  color: white;
}
@media (max-width: 768px) {
  #payment-form {
    max-width: 100%;
  }
  #payment-form .form-group {
    display: block;
  }
  #payment-form .form-group:nth-of-type(2) label {
    display: block;
  }
  #payment-form .form-group:nth-of-type(2) #frmCCExpMonth {
    display: inline-block;
    width: calc(50% - 8px);
  }
  #payment-form .form-group:nth-of-type(2) #frmCCExpYear {
    display: inline-block;
    width: calc(50% - 7px);
  }
  #payment-form .form-group label {
    min-width: initial;
  }
  #payment-form .form-group label:not(:last-child) {
    margin-bottom: 5px;
  }
}
#payment-form input[type="number"],
#payment-form input[type="text"],
#payment-form select {
  color: #000000;
  background-color: rgba(255, 255, 255, 0);
  border-style: solid;
  border-width: 2px;
  border-color: #C5275D;
  border-radius: 0px 0px 0px 0px;
  padding: 7px 7px 7px 7px;
  width: 100%;
}
.radio-container {
  display: block;
  position: relative;
  padding-right: 35px;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  right: 0;
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.radio-container input:checked ~ .checkmark {
  background-color: #2196F3;
}
.radio-container input:checked ~ .checkmark::after {
  display: block;
}
.radio-container .checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}
.radio-container .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  top: 8px;
  right: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
}
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0;
}
.alert.alert-dismissible {
  padding-right: 4rem;
}
.alert.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}
.alert.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
#main_contact_form input::-webkit-input-placeholder {
  color: white;
}
#main_contact_form input:-moz-placeholder {
  color: white;
}
#main_contact_form input::-moz-placeholder {
  color: white;
}
#main_contact_form input:-ms-input-placeholder {
  color: white;
}
#main_contact_form textarea {
  border-width: 2px 2px 2px 2px;
}
.form-submit input[type="submit"] {
  background-color: #c5275d;
  color: white;
}
#user_notebook_questionnaire {
  max-width: 630px;
  margin: 0 auto;
}
#user_notebook_questionnaire .e-form__indicators--type-number_text .e-form__indicators__indicator__separator {
  margin-top: 15px;
}
#user_notebook_questionnaire .elementor-field-type-checkbox .elementor-field-subgroup {
  position: relative;
  width: 50%;
  margin: 20px 0 10px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
#user_notebook_questionnaire .elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option {
  background-color: #eee;
  color: #333;
  flex-basis: 30%;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#user_notebook_questionnaire .elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option.bg--primary {
  background-color: #c5275d;
}
#user_notebook_questionnaire .elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option.bg--primary label {
  color: white;
}
#user_notebook_questionnaire .elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option:not(:last-child) {
  margin-bottom: 5px;
}
#user_notebook_questionnaire .elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label {
  display: block;
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  color: #333;
}
#user_notebook_questionnaire .elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input[type="checkbox"] {
  position: absolute;
  right: 15px;
  display: none;
}
#user_notebook_questionnaire .e-form__buttons {
  justify-content: center;
}
#user_notebook_questionnaire .e-form__buttons .e-form__buttons__wrapper button[type="submit"],
#user_notebook_questionnaire .e-form__buttons .e-form__buttons__wrapper input[type="button"] {
  padding: 35px 48px;
  font-size: 22px;
  background-color: #f0709b;
  border: 1px solid #333333;
  flex-basis: auto !important;
  max-width: initial !important;
}
#user_notebook_questionnaire .e-form__buttons .e-form__buttons__wrapper.elementor-field-type-next {
  justify-content: flex-start;
}
#user_notebook_questionnaire .e-form__buttons .e-form__buttons__wrapper.elementor-field-type-previous {
  justify-content: flex-end;
}
#user_notebook_questionnaire .e-form__buttons .e-form__buttons__wrapper.elementor-field-type-previous input[type="button"] {
  background-color: white;
  color: black;
}
#user_notebook_questionnaire .elementor-field-group-first_step .e-form__buttons .e-form__buttons__wrapper.elementor-field-type-next {
  justify-content: center;
}
#user_notebook_questionnaire .elementor-message.elementor-message-danger {
  margin-top: 10px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}
#user_notebook_questionnaire .elementor-message.elementor-message-danger::before {
  margin-right: -20px;
  margin-left: 5px;
}
.coupon-code-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.coupon-code-wrapper .coupon-code {
  flex-basis: 70%;
}
.coupon-code-wrapper .coupon-code-button {
  flex-basis: 30%;
}
.page-id-6128 .dialog-type-lightbox {
  top: 0;
}
.popup {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.popup .close-popup.x-icon,
.popup .close {
  position: relative;
  top: -10px;
  color: #7e7e7e;
  float: right;
}
.popup .close-popup:hover,
.popup .close-popup:focus,
.popup .close:hover,
.popup .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.popup .popup-footer .button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.popup-training .popup-wrapper,
.popup-workshop-month .popup-wrapper,
.popup-statistics-form-weight .popup-wrapper,
.popup-statistics-form .popup-wrapper,
.popup-workshop .popup-wrapper {
  margin: 7% auto;
  padding: 20px;
  border: 1px solid #888888;
  width: 50%;
}
.popup-training .button i,
.popup-workshop-month .button i,
.popup-statistics-form-weight .button i,
.popup-statistics-form .button i,
.popup-workshop .button i {
  display: block;
  font-size: 20px;
}
.popup-training .button:hover,
.popup-workshop-month .button:hover,
.popup-statistics-form-weight .button:hover,
.popup-statistics-form .button:hover,
.popup-workshop .button:hover {
  transform: scale(1.1);
}
.popup-training .popup-content,
.popup-workshop-month .popup-content,
.popup-statistics-form-weight .popup-content,
.popup-statistics-form .popup-content,
.popup-workshop .popup-content {
  margin: 30px 0;
  /*white-space: pre-line;*/
}
.popup-training .popup-footer,
.popup-workshop-month .popup-footer,
.popup-statistics-form-weight .popup-footer,
.popup-statistics-form .popup-footer,
.popup-workshop .popup-footer {
  margin-top: 20px;
}
.popup-training .popup-footer .credits a,
.popup-workshop-month .popup-footer .credits a,
.popup-statistics-form-weight .popup-footer .credits a,
.popup-statistics-form .popup-footer .credits a,
.popup-workshop .popup-footer .credits a {
  margin-top: 20px;
  margin-bottom: 0;
}
.popup-training .popup-footer .credits .credits-content,
.popup-workshop-month .popup-footer .credits .credits-content,
.popup-statistics-form-weight .popup-footer .credits .credits-content,
.popup-statistics-form .popup-footer .credits .credits-content,
.popup-workshop .popup-footer .credits .credits-content {
  margin-top: 20px;
  word-break: break-word;
}
.popup-workshop-month .popup-wrapper {
  width: 75%;
  max-width: 1000px;
}
.popup-workshop-month .popup-wrapper .popup-header {
  text-align: center;
}
.popup-workshop-month .popup-wrapper .popup-header a {
  text-decoration: underline;
}
.popup-workshop-month .popup-wrapper .popup-video {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 56.25%;
  height: 0;
}
.popup-workshop-month .popup-wrapper .popup-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup-workshop-month .popup-wrapper .workshops-list {
  text-align: center;
}
.popup-workshop-month .popup-wrapper .workshops-list h2 {
  margin: 0 0 10px 0;
  padding: 3px;
  background-color: #c5275d;
  color: white;
  font-size: 22px;
  line-height: 1.5;
}
.popup-workshop-month .popup-wrapper .workshops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
.popup-workshop-month .popup-wrapper .workshops-grid:not(:last-child) {
  margin-bottom: 40px;
}
.popup-workshop-month .popup-wrapper .workshop-item {
  position: relative;
  cursor: pointer;
}
.popup-workshop-month .popup-wrapper .workshop-item img {
  display: block;
  width: 100%;
  height: 180px;
}
.popup-workshop-month .popup-wrapper .workshop-item h3 {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  margin: 0;
  padding: 5px 7px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: "Heebo", sans-serif;
  font-size: 20px;
}
.popup-training .popup-wrapper {
  width: 75%;
  max-width: 1000px;
}
.popup-training .popup-wrapper .popup-header {
  text-align: center;
}
.popup-training .popup-wrapper .popup-header a {
  text-decoration: underline;
}
.popup-training .popup-wrapper .popup-video {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 56.25%;
  height: 0;
}
.popup-training .popup-wrapper .popup-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup-training .popup-wrapper .trainings-list {
  text-align: center;
}
.popup-training .popup-wrapper .trainings-list h2 {
  background-color: #c5275d;
  color: white;
  margin: 0 0 10px 0;
  padding: 3px;
  line-height: 1.5;
}
.popup-training .popup-wrapper .trainings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
.popup-training .popup-wrapper .trainings-grid:not(:last-child) {
  margin-bottom: 40px;
}
.popup-training .popup-wrapper .training-item {
  position: relative;
  cursor: pointer;
}
.popup-training .popup-wrapper .training-item img {
  display: block;
  width: 100%;
  height: 180px;
}
.popup-training .popup-wrapper .training-item h3 {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  margin: 0;
  padding: 5px 7px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 19px;
}
.popup-workshop .popup-header .popup-navigation-wrapper {
  margin-bottom: 10px;
}
.popup-workshop .popup-header ul.popup-navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.popup-workshop .popup-header ul.popup-navigation li {
  border: 1px solid #dddddd;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  padding: 5px 10px;
  color: #7e7e7e;
  cursor: pointer;
}
.popup-workshop .popup-header ul.popup-navigation li.active {
  color: #c5275d;
}
.popup-workshop .popup-header ul.popup-navigation li.blocked {
  background-color: #eeeeee;
  cursor: no-drop;
}
.popup-workshop .popup-content .tab-content {
  display: none;
}
.popup-workshop .popup-content .tab-content.active {
  display: block;
}
.popup-workshop .popup-content .tab-content .popup-video {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 56.25%;
  height: 0;
}
.popup-workshop .popup-content .tab-content .popup-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup-workshop#popup-workshop-access-denied button.close-popup {
  margin-top: 20px;
}
.popup-training .popup-header .popup-navigation-wrapper {
  margin-bottom: 10px;
}
.popup-training .popup-header ul.popup-navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.popup-training .popup-header ul.popup-navigation li {
  border: 1px solid #dddddd;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  padding: 5px 10px;
  color: #7e7e7e;
  cursor: pointer;
}
.popup-training .popup-header ul.popup-navigation li.active {
  color: #c5275d;
}
.popup-training .popup-header ul.popup-navigation li.blocked {
  background-color: #eeeeee;
  cursor: no-drop;
}
.popup-training .popup-content .tab-content {
  display: none;
}
.popup-training .popup-content .tab-content.active {
  display: block;
}
.popup-training .popup-content .tab-content .popup-video {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 56.25%;
  height: 0;
}
.popup-training .popup-content .tab-content .popup-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup-training#popup-workshop-access-denied button.close-popup {
  margin-top: 20px;
}
.popup-statistics-form-weight .popup-header,
.popup-statistics-form .popup-header {
  background-color: #c5275d;
}
.popup-statistics-form-weight .popup-header h1,
.popup-statistics-form .popup-header h1 {
  color: white;
}
.popup-statistics-form-weight .popup-content .my-statistics-questions-wrapper,
.popup-statistics-form .popup-content .my-statistics-questions-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.popup-statistics-form-weight .popup-content .my-statistics-questions,
.popup-statistics-form .popup-content .my-statistics-questions {
  flex-basis: calc(33.33% - 30px);
  margin: 15px;
}
.popup-statistics-form-weight .popup-content .my-statistics-questions .title,
.popup-statistics-form .popup-content .my-statistics-questions .title {
  font-size: 18px;
}
.popup-statistics-form-weight .popup-content .my-statistics-questions .answer .answer-content,
.popup-statistics-form .popup-content .my-statistics-questions .answer .answer-content {
  line-height: 1.5;
}
.popup-statistics-form-weight .popup-footer,
.popup-statistics-form .popup-footer {
  text-align: center;
}
.popup-statistics-form-weight {
  z-index: 1500;
}
.popup-recipe .popup-wrapper {
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888888;
  width: 60%;
}
.popup-recipe .popup-header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 300px;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.popup-recipe .popup-content {
  margin: 30px 0 50px 0;
  padding: 0 40px;
}
.popup-recipe .popup-content h3 {
  margin: 50px 0 10px 0;
}
.popup-recipe .popup-content .extra-text {
  margin-top: 30px;
}
.popup-recipe .popup-content .meta-data {
  margin-top: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.popup-recipe .popup-content .meta-data .col:not(:last-child) {
  margin-left: 20px;
}
.popup-recipe .popup-content .ingredients-list {
  list-style-type: none;
  padding: 0;
}
.popup-recipe .popup-content .ingredients-list li {
  margin-bottom: 5px;
}
.popup-recipe .popup-footer {
  margin-top: 20px;
}
@media (max-width: 1366px) {
  .popup-recipe .popup-wrapper,
  .popup-statistics-form-weight .popup-wrapper,
  .popup-statistics-form .popup-wrapper,
  .popup-training .popup-wrapper,
  .popup-workshop .popup-wrapper {
    margin: 5% auto;
    width: 55%;
  }
  .popup-statistics-form .popup-wrapper {
    width: 70%;
  }
}
@media (max-width: 1280px) {
  .popup-training .popup-wrapper,
  .popup-workshop-month .popup-wrapper {
    width: 85%;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .popup-training .popup-wrapper,
  .popup-workshop-month .popup-wrapper {
    width: 95%;
  }
  .popup-recipe .popup-wrapper,
  .popup-statistics-form-weight .popup-wrapper,
  .popup-statistics-form .popup-wrapper,
  .popup-training .popup-wrapper,
  .popup-workshop .popup-wrapper {
    margin: 5% auto;
    width: 65%;
  }
}
@media (max-width: 768px) {
  .popup-workshop-month .popup-wrapper {
    width: 98%;
    margin: 5% auto;
    padding: 20px 10px;
  }
  .popup-workshop-month .popup-wrapper .workshops-grid {
    grid-gap: 5px;
  }
  .popup-workshop-month .popup-wrapper .workshops-list h2 {
    margin: 0 0 5px 0;
    font-family: "Heebo", sans-serif;
  }
  .popup-workshop-month .popup-wrapper .workshop-item h3 {
    position: absolute;
    top: 0;
    font-size: 14px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .popup-workshop-month .popup-wrapper .workshop-item img {
    height: 70px;
  }
  .popup-training .popup-wrapper {
    width: 98%;
    margin: 5% auto;
    padding: 20px 10px;
  }
  .popup-training .popup-wrapper .trainings-grid {
    grid-gap: 5px;
  }
  .popup-training .popup-wrapper .trainings-list h2 {
    margin: 0 0 5px 0;
    font-size: 20px;
  }
  .popup-training .popup-wrapper .training-item h3 {
    position: absolute;
    top: 0;
    font-size: 14px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .popup-training .popup-wrapper .training-item img {
    height: 70px;
  }
  .popup-recipe .popup-wrapper {
    width: 90%;
  }
  .popup-recipe .popup-header {
    min-height: 200px;
  }
  .popup-recipe .popup-content {
    padding: 0 10px;
  }
  .popup-statistics-form-weight .popup-wrapper,
  .popup-statistics-form .popup-wrapper,
  .popup-training .popup-wrapper,
  .popup-workshop .popup-wrapper {
    margin: 20% auto 3% auto;
    padding: 20px;
    width: 95%;
  }
  .popup-statistics-form .popup-content .my-statistics-questions {
    flex-basis: 100%;
    margin: 0;
  }
  .popup-training .popup-wrapper .popup-content,
  .popup-workshop .popup-wrapper .popup-content {
    margin: 5px 0 50px 0;
  }
}
.my-statistics-charts-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.my-statistics-charts-wrapper canvas.my-statistics-charts {
  width: 100% !important;
  height: 100% !important;
}
.my-statistics-charts-wrapper .chart {
  position: relative;
  flex-basis: calc(33.33% - 20px);
  margin: 10px;
}
.my-statistics-charts-wrapper .chart .fa-times-circle {
  position: absolute;
  cursor: pointer;
  top: 15px;
  right: 15px;
  color: white;
  z-index: 2000;
  font-size: 72px;
}
.my-statistics-charts-wrapper .chart .fa-search-plus {
  position: absolute;
  cursor: pointer;
}
.my-statistics-charts-wrapper .chart.zoom-in {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.my-statistics-charts-wrapper .chart.zoom-in canvas.my-statistics-charts {
  background-color: white;
  width: 80% !important;
  height: auto !important;
  margin: 0 auto;
}
.chart .my-statistics-charts.results-graph {
  height: 450px !important;
}
@media (max-width: 1280px) {
  .my-statistics-charts-wrapper .chart {
    flex-basis: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .questionnaire-results .chart .my-statistics-charts.results-graph {
    height: auto !important;
  }
  .my-statistics-charts-wrapper .chart {
    flex-basis: 100%;
    margin: 0;
  }
  .my-statistics-charts-wrapper .chart.zoom-in canvas.my-statistics-charts {
    width: auto !important;
    height: 45% !important;
    transform: rotate(90deg);
  }
  .my-statistics-charts-wrapper .chart.zoom-in .fa-times-circle {
    top: 7px;
    right: 7px;
    font-size: 29px;
  }
}
#notebook {
  position: relative;
  width: 100%;
  margin: 0;
  visibility: hidden;
}
#notebook ::-webkit-scrollbar {
  width: 5px;
}
#notebook ::-webkit-scrollbar-track {
  background: #efdbc3;
}
#notebook ::-webkit-scrollbar-thumb {
  background: #8e6943;
}
#notebook ::-webkit-scrollbar-thumb:hover {
  background: #8e6943;
}
#notebook .container {
  overflow: hidden;
}
#notebook img {
  max-width: 100%;
}
#notebook .book-wrapper {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  user-select: none;
}
#notebook .book-wrapper .book-cover {
  position: relative;
}
#notebook .book-wrapper .book-cover img {
  width: 100%;
}
#notebook .book-cover img {
  /*max-height: 1015px;*/
}
#notebook .pages-container {
  position: absolute;
  top: 0;
  left: 12.5%;
  right: 12.5%;
  bottom: 0;
  width: 75%;
}
#notebook .page-wrapper .pages-content {
  position: relative;
  width: 100%;
  height: 100%;
}
#notebook .page {
  direction: rtl;
  background-size: 100% 100%;
}
#notebook .page.even {
  background-image: url(/wp-content/themes/hello-elementor-child/img/page-right.png);
}
#notebook .page.odd {
  background-image: url(/wp-content/themes/hello-elementor-child/img/page-left.png);
}
#notebook .page-content {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  display: table;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  direction: rtl;
}
#notebook .content-inner {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px;
}
#notebook .content-inner h2 {
  margin: 0 0 40px 0;
  font-size: 40px;
}
#notebook .content-inner h2.my-achievement-heading {
  margin: 40px 0 0 0;
}
#notebook .content-inner h2.my-goal-healine {
  font-size: 36px;
  margin-top: 30px;
  text-decoration: underline;
}
#notebook .content-inner p.date {
  margin: 0 0 10px 0;
  font-style: italic;
  color: #333333;
  font-size: 16px;
}
#notebook .content-inner textarea {
  display: block;
  resize: none;
}
#notebook .content-inner .current_day {
  color: #c5275d;
}
#notebook .content-inner .form-daily-notebook {
  margin-top: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
#notebook .content-inner .form-daily-notebook button[type="submit"] {
  margin: 20px auto 0 auto;
}
#notebook .content-inner .form-group {
  width: 100%;
}
#notebook .content-inner .check {
  flex-basis: 25px;
  width: 25px;
  height: 25px;
  background-color: white;
  border: 1px solid black;
}
#notebook .content-inner i.fa-question-circle {
  font-size: 18px;
  color: #6f6f6f;
  margin-right: 10px;
  text-align: left;
}
#notebook .content-inner i.fa-question-circle:hover {
  color: #c5275d;
}
#notebook .content-inner .checklist-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
#notebook .content-inner .checklist-item .title {
  margin-left: 10px;
  font-weight: bold;
}
#notebook .content-inner .checklist-item .check {
  margin-left: 10px;
}
#notebook .content-inner .checklist-item .weight {
  width: 90px;
  padding: 3px;
  -moz-appearance: textfield;
  font-size: 16px;
}
#notebook .content-inner .checklist-item .weight::-webkit-outer-spin-button,
#notebook .content-inner .checklist-item .weight::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#notebook .content-inner .checklist-item .upload-btn {
  padding: 8px 10px;
}
#notebook .content-inner .checklist-item.range-question datalist {
  width: 100%;
  margin-top: 4px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
#notebook .content-inner .checklist-item.range-question .range {
  flex-basis: 100%;
  margin: 5px 0 0 0;
  padding: 0;
  border: 0;
  direction: ltr;
  /*
					&::-webkit-slider-thumb {
						-webkit-appearance: none;
						appearance: none;
						width: 25px;
						height: 25px;
						background: @primaryColor;
						cursor: pointer;
					}
					
					&::-moz-range-thumb {
						width: 25px;
						height: 25px;
						background: @primaryColor;
						cursor: pointer;
					}
					 */
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #eee;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}
#notebook .content-inner .checklist-item.range-question .range:hover {
  opacity: 1;
}
#notebook .content-inner .checklist-item.range-question .range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 50px;
  height: 20px;
  background: #c5275d;
  cursor: pointer;
}
#notebook .content-inner .checklist-item.range-question .range::-moz-range-thumb {
  width: 50px;
  height: 20px;
  background: #c5275d;
  cursor: pointer;
}
#notebook .content-inner .checklist-item.range-question .range-answer {
  font-size: 14px;
  background-color: rgba(197, 39, 93, 0.55);
  text-shadow: 1px 1px 2px #000000;
  color: white;
  padding: 4px 10px 3px 10px;
  line-height: 1;
}
#notebook .content-inner .checklist-item.range-question .title {
  text-align: right;
  margin: 0 0 0 8px;
}
#notebook .content-inner .checklist-item.range-question i.fa-question-circle {
  flex-basis: 10%;
  margin: 0;
}
#notebook .content-inner .weight-answer {
  background-color: red;
  text-shadow: 1px 1px 2px #000000;
  color: white;
  margin: 0 10px 0 0;
  padding: 4px 10px 3px 10px;
  line-height: 1;
  font-size: 14px;
}
#notebook .content-inner .my-achievements-list {
  width: 100%;
}
#notebook .content-inner .my-achievements-list li.error {
  color: red;
}
#notebook .content-inner .my-achievements-list li.error input[type="text"] {
  border-color: red;
}
#notebook .content-inner .my-achievements-list li:not(:last-child) {
  margin-bottom: 5%;
}
#notebook .content-inner .my-achievements-list li p {
  line-height: 1.2;
}
#notebook .content-inner .my-achievements-list.filled {
  margin-top: 20px;
  overflow: hidden;
  overflow-y: scroll;
  height: 100%;
  max-height: 720px;
}
#notebook .content-inner .my-achievements-list.filled li {
  text-align: right;
  padding-left: 10px;
}
#notebook .content-inner .my-achievements-list.filled li p {
  font-family: 'Dana Yad AlefAlefAlef Normal', 'Indie Flower', cursive;
  font-size: 30px;
  font-weight: bold;
}
#notebook .content-inner .my-achievements-list.filled li:not(:last-child) {
  margin-bottom: 20px;
}
#notebook #btn-next,
#notebook #btn-prev {
  position: absolute;
  top: 45%;
  left: 12%;
  width: 40px;
  height: 40px;
  z-index: 100;
  color: #c5275d;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#notebook #btn-prev {
  left: auto;
  right: 12%;
}
#notebook #btn-next i,
#notebook #btn-next i:hover,
#notebook #btn-prev i,
#notebook #btn-prev i:hover {
  font-size: 24px;
  color: #c5275d;
}
#notebook.filled p.date {
  font-size: 22px;
}
@media (max-width: 1920px) {
  #notebook .page {
    height: 870px !important;
  }
  #notebook .content-inner .my-achievements-list.filled {
    max-height: 585px;
  }
}
@media (max-width: 1680px) {
  #notebook .page {
    height: 845px !important;
  }
  #notebook .content-inner .my-achievements-list.filled {
    max-height: 585px;
  }
}
@media (max-width: 1600px) {
  #notebook .page {
    height: 810px !important;
  }
  #notebook .content-inner .my-achievements-list.filled {
    max-height: 555px;
  }
}
@media (max-width: 1550px) {
  #notebook .page {
    height: 785px !important;
  }
  #notebook .content-inner .my-achievements-list.filled {
    max-height: 555px;
  }
}
@media (max-width: 1500px) {
  #notebook .page {
    height: 755px !important;
  }
  #notebook .content-inner .my-achievements-list.filled {
    max-height: 540px;
  }
  #notebook #btn-next {
    left: 13%;
  }
  #notebook #btn-prev {
    right: 14%;
  }
}
@media (max-width: 1450px) {
  #notebook .page {
    height: 745px !important;
  }
  #notebook .content-inner h2 {
    margin: 0 0 20px 0;
  }
  #notebook .content-inner h2.my-achievement-heading {
    margin: 10px 0 10px 0;
  }
  #notebook .content-inner .form-daily-notebook {
    margin-top: 0;
  }
  #notebook .content-inner .my-achievements-list.filled {
    max-height: 505px;
  }
  #notebook .book-wrapper .book-cover img {
    height: 855px;
  }
}
@media (max-width: 1400px) {
  #notebook .page {
    height: 745px !important;
  }
}
@media (max-width: 1366px) {
  #notebook .book-wrapper {
    padding: 0;
  }
  #notebook .book-wrapper .book-cover img {
    height: 891px;
  }
  #notebook .content-inner {
    padding: 50px;
  }
  #notebook .content-inner .my-achievements-list.filled {
    max-height: 505px;
  }
  #notebook .content-inner .my-achievements-list li:not(:last-child) {
    margin-bottom: 0;
  }
  #notebook .page {
    height: 775px !important;
  }
  #notebook #btn-next {
    left: 13%;
  }
  #notebook #btn-prev {
    right: 13%;
  }
}
@media (max-width: 1280px) {
  #notebook .page {
    height: 745px !important;
  }
  #notebook .content-inner {
    padding: 40px;
  }
  #notebook .content-inner .my-achievements-list.filled {
    max-height: 490px;
  }
  #notebook .book-wrapper .book-cover img {
    height: 860px;
  }
  #notebook .content-inner .checklist-item.range-question datalist option {
    font-size: 14px;
  }
  #notebook .content-inner .checklist-item.range-question .title {
    font-size: 18px;
    font-weight: bold;
  }
  #notebook #btn-next {
    left: 13%;
  }
  #notebook #btn-prev {
    right: 13%;
  }
}
@media (max-width: 1024px) {
  #notebook .content-inner {
    padding: 40px;
  }
  #notebook .content-inner i.fa-question-circle {
    position: absolute;
    left: 13px;
  }
  #notebook .content-inner h2.my-achievement-heading {
    margin-top: 15px;
  }
  #notebook .content-inner h2.my-achievement-heading i.fa-question-circle {
    position: absolute;
    margin-top: 5px;
  }
  #notebook .content-inner .my-achievements-list {
    padding: 0 30px 0 10px;
  }
  #notebook .content-inner .form-daily-notebook {
    margin-top: 10px;
  }
  #notebook .page-wrapper,
  #notebook .page {
    height: 710px !important;
  }
  #notebook .book-wrapper .book-cover img {
    height: 815px;
  }
}
@media (max-width: 768px) {
  #notebook {
    visibility: visible;
  }
  #notebook .container {
    flex-basis: 100%;
  }
  #notebook .book-wrapper {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  #notebook .book-wrapper .book-cover {
    top: 25px;
  }
  #notebook .book-wrapper .book-cover img {
    height: 820px;
  }
  #notebook .content-inner {
    padding: 60px 15px;
  }
  #notebook .content-inner p.date {
    margin-bottom: 5px;
    text-align: center;
  }
  #notebook .content-inner i.fa-question-circle {
    position: absolute;
    left: 13px;
  }
  #notebook .content-inner h2.my-achievement-heading {
    margin-top: 15px;
  }
  #notebook .content-inner h2.my-achievement-heading i.fa-question-circle {
    position: absolute;
    margin-top: 5px;
  }
  #notebook .content-inner h2.my-measurements-headline span {
    position: relative;
  }
  #notebook .content-inner h2.my-measurements-headline .checkbox-container {
    position: absolute;
    margin-right: -35px;
  }
  #notebook .content-inner h2.my-measurements-headline i.fa-question-circle {
    position: absolute;
  }
  #notebook .content-inner .my-achievements-list {
    padding: 0 30px 0 10px;
  }
  #notebook .content-inner .form-daily-notebook {
    margin-top: 10px;
  }
  #notebook .content-inner .checklist-item.range-question .range {
    margin-top: 10px;
  }
  #notebook .content-inner .checklist-item.range-question datalist option {
    font-size: 12px;
  }
  #notebook .content-inner .my-achievements-list.filled {
    padding-right: 55px;
    padding-left: 20px;
    overflow: hidden;
    overflow-y: scroll;
    height: 100%;
    max-height: 500px;
  }
  #notebook .pages-container {
    top: 22px;
    left: 5%;
    right: 0;
    width: 95%;
  }
  #notebook .page {
    background-image: url(/wp-content/themes/hello-elementor-child/img/page-left.png);
    background-size: 100% 100%;
  }
  #notebook .page-wrapper,
  #notebook .page {
    height: 760px !important;
  }
  #notebook #btn-next {
    top: 5%;
    left: 5%;
  }
  #notebook #btn-prev {
    top: 5%;
    right: 2%;
  }
}
.checkbox-container {
  margin-left: 8px;
}
.checkbox-container input[type=checkbox] {
  display: none;
}
.checkbox-container input[type=checkbox]:checked + label {
  border-color: green;
}
.checkbox-container input[type=checkbox]:checked + label::before {
  height: 4px;
  -moz-animation: dothatopcheck 0.5s ease 0s forwards;
  -o-animation: dothatopcheck 0.5s ease 0s forwards;
  -webkit-animation: dothatopcheck 0.5s ease 0s forwards;
  animation: dothatopcheck 0.5s ease 0s forwards;
}
.checkbox-container input[type=checkbox]:checked + label::after {
  height: 10px;
  box-shadow: 0 0 0 1px #e5cdb4;
  -moz-animation: dothabottomcheck 0.7s ease 0s forwards;
  -o-animation: dothabottomcheck 0.7s ease 0s forwards;
  -webkit-animation: dothabottomcheck 0.7s ease 0s forwards;
  animation: dothabottomcheck 0.7s ease 0s forwards;
}
.checkbox-container label {
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
}
.checkbox-container label.error {
  border-color: red;
}
.checkbox-container label.checked {
  border-color: green;
}
.checkbox-container label.checked::before {
  height: 10px;
  -moz-animation: dothatopcheck 0.7s ease 0s forwards;
  -o-animation: dothatopcheck 0.7s ease 0s forwards;
  -webkit-animation: dothatopcheck 0.7s ease 0s forwards;
  animation: dothatopcheck 0.7s ease 0s forwards;
}
.checkbox-container label.checked::after {
  height: 10px;
  -moz-animation: dothabottomcheck 0.7s ease 0s forwards;
  -o-animation: dothabottomcheck 0.7s ease 0s forwards;
  -webkit-animation: dothabottomcheck 0.7s ease 0s forwards;
  animation: dothabottomcheck 0.7s ease 0s forwards;
}
.checkbox-container label::before,
.checkbox-container label::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: 26px;
  background-color: green;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: ' ';
  -webkit-transition: opacity 2s ease;
  -moz-transition: opacity 2s ease;
  transition: opacity 2s ease;
}
.checkbox-container label::before {
  top: 17px;
  left: 9px;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  width: 9px;
  z-index: 5;
}
.checkbox-container label::after {
  top: 16px;
  left: 8px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* Checkmark style starts */
@-moz-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 5px;
  }
}
@-webkit-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 5px;
  }
}
@keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 5px;
  }
}
@keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 5px;
  }
}
@-webkit-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 5px;
  }
}
@-moz-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 5px;
  }
}
@font-face {
  font-family: 'Dana Yad AlefAlefAlef Normal';
  src: url('../css/fonts/DanaYadAlefAlefAlef-Normal.woff2') format('woff2'), url('../css/fonts/DanaYadAlefAlefAlef-Normal.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Heebo", sans-serif;
  font-size: 18px;
  line-height: 1;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
h1 {
  font-size: 30px;
  line-height: 30px;
}
h2 {
  font-size: 24px;
}
ol,
ol li > ul {
  padding: 0 20px 10px 0;
}
ol li {
  margin-bottom: 10px;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  direction: ltr;
  text-align: left;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
/*
 * Header
 */
.current-menu-item a {
  text-shadow: 1px 1px 5px #000000;
  font-weight: 600 !important;
}
.elementor-nav-menu li.arrow-close-menu a {
  padding-top: 20px;
  padding-bottom: 20px;
}
.elementor-nav-menu li.arrow-close-menu a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f077';
  opacity: 1 !important;
  position: absolute;
  left: 50%;
}
.header-menu .elementor-nav-menu li:active {
  position: relative;
  top: 2px;
}
body:not(.logged-in) .menu-item-show-popup-login {
  display: none;
}
/*
@media (max-width: 1140px) {
	header #col1 {
		width: 73%;
	}
	
	header #col2 {
		width: 27%;
	}
}

@media (max-width: 1100px) {
	header #col1 {
		width: 72%;
	}
	
	header #col2 {
		width: 28%;
	}
	
	header #col2 {
		width: 28%;
	}
	
	#header ul.elementor-nav-menu li a {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
}
*/
@media (max-width: 1100px) {
  #header ul.elementor-nav-menu li a {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
}
/*
 * Footer
 */
.footer-menu .elementor-nav-menu li:active {
  position: relative;
  top: 2px;
}
/*
 * Notebook
 */
#btn-show-user-notebook-questionnaire-wrapper.button span {
  display: inline-block;
}
div.bottom-buttons-list-wrapper {
  text-align: center;
}
div.bottom-buttons-list-wrapper ul.bottom-buttons-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  display: inline-flex;
}
div.bottom-buttons-list-wrapper ul.bottom-buttons-list li.item {
  margin: 0 8px;
  cursor: pointer;
}
div.bottom-buttons-list-wrapper ul.bottom-buttons-list li.item a {
  color: inherit;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
div.bottom-buttons-list-wrapper ul.bottom-buttons-list li.item a:hover {
  transform: scale(1.05);
}
div.bottom-buttons-list-wrapper ul.bottom-buttons-list li.item i {
  font-size: 30px;
  color: #c5275d;
}
/*
 * Login
 */
.login-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.login-box i {
  color: white;
  margin-left: 8px;
}
.login-box a {
  color: white;
  text-decoration: none;
}
.login-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.login-wrapper .login {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.login-wrapper a {
  color: white;
  font-size: 18px;
  text-decoration: underline;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.login-wrapper i {
  font-size: 23px;
  color: white;
  margin-left: 7px;
}
.login-wrapper i.fa-user {
  font-size: 19px;
}
.login-wrapper .login {
  color: white;
  font-size: 18px;
}
.login-wrapper .flex {
  color: white;
  font-size: 16px;
  margin-right: 8px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.login-wrapper .flex a {
  font-size: 16px;
}
#popup-login #login-form .elementor-lost-password {
  margin: 0 auto;
  font-size: 16px;
  text-decoration: underline;
}
#popup-login #login-form .elementor-login-remember-me {
  font-size: 16px;
  margin: 10px 0;
  padding-right: 5px;
}
#popup-login #login-form .elementor-login-remember-me #elementor-login-remember-me {
  position: relative;
  top: 2px;
  right: -5px;
}
#logout-and-delete p {
  cursor: pointer;
}
.elementor-login .elementor-lost-password {
  margin: 0 auto;
  font-size: 16px;
  text-decoration: underline;
}
.elementor-login .elementor-remember-me {
  font-size: 16px;
  margin: 10px 0;
  padding-right: 5px;
}
.elementor-login #elementor-login-remember-me {
  position: relative;
  top: 2px;
  right: -5px;
}
@media (max-width: 1024px) {
  .login-wrapper a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .login-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: flex-start;
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .login-wrapper .login a {
    display: none;
  }
  #popup-login #login-form .elementor-lost-password {
    margin-top: 10px;
  }
}
/*
 * Register
 */
/*
 * File Upload
 */
.file-upload-filename,
.file-upload-container {
  cursor: pointer;
}
.file-upload-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.file-upload-container span.label {
  color: white;
  margin-left: 15px;
}
.file-upload-override-button {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-color: #c5275d;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0px;
  word-break: break-all;
  padding: 10px 15px;
  text-align: center;
  min-height: 40px;
  margin: 0 auto;
  border: 0;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.file-upload-override-button:active {
  position: relative;
  top: 1px;
}
.elementor-upload-field {
  position: absolute;
  top: 0;
  right: 199px;
  width: 146px;
  height: 42px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 10;
}
.file-upload-filename {
  display: none;
  margin-left: 10px;
  height: auto;
  padding: 8px;
}
/*
 * My Statistics
 */
#form-daily-notebook-description {
  display: block;
  width: 100%;
  text-align: center;
}
.upload-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  padding: 13px;
  background-color: #c5275d;
  cursor: pointer;
}
.upload-btn .btn-text {
  color: white;
}
.upload-btn input[type="file"] {
  display: none;
}
.my-statistics .edit-custom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.my-statistics .edit-custom select {
  width: auto;
}
.my-statistics .view-customer-statistics {
  margin-bottom: 30px;
}
.my-statistics .view-customer-statistics div.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.my-statistics .view-customer-statistics select {
  width: auto;
}
.edit-weekly-weight {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.edit-weekly-weight .form-weekly-weight {
  align-items: center;
}
.edit-weekly-weight .form-weekly-weight .form-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.edit-weekly-weight .form-weekly-weight label[for="weekly-weight"] {
  flex-grow: 2;
  flex-shrink: 1;
  flex-basis: 0;
}
.edit-weekly-weight .form-weekly-weight #weekly-weight {
  flex-grow: 3;
  flex-shrink: 1;
  flex-basis: 0;
}
.edit-weekly-weight .form-weekly-weight #weekly-weight + sub {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
}
.edit-weekly-weight .form-weekly-weight button[type="submit"] {
  grid-column: 1 / 2;
  grid-row: 3;
  margin-top: 10px;
}
#edit-notebook-custom-dates {
  width: auto;
}
.edit-custom button {
  color: white;
}
.edit-custom-dates {
  margin: 0 auto;
  max-width: 500px;
}
.edit-custom-dates h2 {
  margin: 0 0 40px 0;
}
.edit-custom-dates h2.my-achievement-heading {
  margin: 40px 0 0 0;
}
.edit-custom-dates h2.my-goal-healine {
  font-size: 36px;
  margin-top: 30px;
  text-decoration: underline;
}
.edit-custom-dates p.date {
  margin: 0 0 10px 0;
  font-style: italic;
  color: #333333;
  font-size: 16px;
}
.edit-custom-dates textarea {
  display: block;
  resize: none;
}
.edit-custom-dates .current_day {
  color: #c5275d;
}
.edit-custom-dates .form-daily-notebook {
  margin-top: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.edit-custom-dates .form-daily-notebook button[type="submit"] {
  margin: 20px auto 0 auto;
}
.edit-custom-dates .form-group {
  width: 100%;
}
.edit-custom-dates .form-group:not(:last-child) {
  margin-bottom: 5%;
  padding-bottom: 5%;
  border-bottom: 1px solid #969696;
}
.edit-custom-dates .check {
  flex-basis: 25px;
  width: 25px;
  height: 25px;
  background-color: white;
  border: 1px solid black;
}
.edit-custom-dates i.fa-question-circle {
  font-size: 18px;
  color: #6f6f6f;
  margin-right: 10px;
  text-align: left;
}
.edit-custom-dates i.fa-question-circle:hover {
  color: #c5275d;
}
.edit-custom-dates .checklist-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.edit-custom-dates .checklist-item .title {
  margin-left: 10px;
  font-weight: bold;
}
.edit-custom-dates .checklist-item .check {
  margin-left: 10px;
}
.edit-custom-dates .checklist-item .weight {
  width: 90px;
  padding: 3px;
  -moz-appearance: textfield;
  font-size: 16px;
}
.edit-custom-dates .checklist-item .weight::-webkit-outer-spin-button,
.edit-custom-dates .checklist-item .weight::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.edit-custom-dates .checklist-item .upload-btn {
  padding: 8px 10px;
}
.edit-custom-dates .checklist-item.range-question datalist {
  width: 100%;
  margin-top: 4px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.edit-custom-dates .checklist-item.range-question .range {
  flex-basis: 100%;
  margin: 5px 0 0 0;
  padding: 0;
  border: 0;
  direction: ltr;
  /*
				&::-webkit-slider-thumb {
					-webkit-appearance: none;
					appearance: none;
					width: 25px;
					height: 25px;
					background: @primaryColor;
					cursor: pointer;
				}
				
				&::-moz-range-thumb {
					width: 25px;
					height: 25px;
					background: @primaryColor;
					cursor: pointer;
				}
				 */
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #eeeeee;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}
.edit-custom-dates .checklist-item.range-question .range:hover {
  opacity: 1;
}
.edit-custom-dates .checklist-item.range-question .range::-webkit-slider-thumb {
  position: relative;
  top: -5px;
  -webkit-appearance: none;
  appearance: none;
  width: 50px;
  height: 20px;
  background: #c5275d;
  cursor: pointer;
}
.edit-custom-dates .checklist-item.range-question .range::-moz-range-thumb,
.edit-custom-dates .checklist-item.range-question .range::-ms-thumb {
  position: relative;
  top: -5px;
  width: 50px;
  height: 20px;
  background: #c5275d;
  cursor: pointer;
}
.edit-custom-dates .checklist-item.range-question .range-answer {
  font-size: 14px;
  background-color: rgba(197, 39, 93, 0.55);
  text-shadow: 1px 1px 2px #000000;
  color: white;
  padding: 4px 10px 3px 10px;
  line-height: 1;
}
.edit-custom-dates .checklist-item.range-question .title {
  text-align: right;
  margin: 0 0 0 8px;
}
.edit-custom-dates .checklist-item.range-question i.fa-question-circle {
  flex-basis: 10%;
  margin: 0;
}
.edit-custom-dates .weight-answer {
  background-color: red;
  text-shadow: 1px 1px 2px #000000;
  color: white;
  margin: 0 10px 0 0;
  padding: 4px 10px 3px 10px;
  line-height: 1;
  font-size: 14px;
}
.edit-custom-dates .my-achievements-list {
  width: 100%;
}
.edit-custom-dates .my-achievements-list li.error {
  color: red;
}
.edit-custom-dates .my-achievements-list li.error input[type="text"] {
  border-color: red;
}
.edit-custom-dates .my-achievements-list li:not(:last-child) {
  margin-bottom: 5%;
}
.edit-custom-dates .my-achievements-list li p {
  line-height: 1.2;
}
.edit-custom-dates .my-achievements-list.filled {
  margin-top: 20px;
  overflow: hidden;
  overflow-y: scroll;
  height: 100%;
  max-height: 720px;
}
.edit-custom-dates .my-achievements-list.filled li {
  text-align: right;
  padding-left: 10px;
}
.edit-custom-dates .my-achievements-list.filled li p {
  font-family: 'Dana Yad AlefAlefAlef Normal', 'Indie Flower', cursive;
  font-size: 30px;
  font-weight: bold;
}
.edit-custom-dates .my-achievements-list.filled li:not(:last-child) {
  margin-bottom: 20px;
}
.range-question input[type="range"]::-webkit-slider-thumb {
  position: relative;
  top: -5px;
  -webkit-appearance: none;
  appearance: none;
  width: 50px;
  height: 20px;
  background: #c5275d;
  cursor: pointer;
}
.range-question input[type="range"]::-moz-range-thumb,
.range-question input[type="range"]::-ms-thumb {
  position: relative;
  top: -5px;
  width: 50px;
  height: 20px;
  background: #c5275d;
  cursor: pointer;
}
.form-daily-notebook .checklist-item {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.form-daily-notebook .checklist-item .selected-answer {
  display: none;
  margin: 0 10px 0 0;
  padding: 5px 5px 4px 5px;
  background-color: rgba(197, 39, 93, 0.55);
  color: white;
  font-size: 14px;
  line-height: 1;
}
.form-daily-notebook .checklist-item .selected-answer.active {
  display: inline-block;
}
.form-daily-notebook .checklist-item .options-title {
  margin-bottom: 8px;
}
.form-daily-notebook .checklist-item .options {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
}
.form-daily-notebook .checklist-item .options .form-group {
  position: relative;
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.form-daily-notebook .checklist-item .options .form-group label {
  display: block;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
}
.form-daily-notebook .checklist-item .options .form-group label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #eee;
}
.form-daily-notebook .checklist-item .options .form-group label.active::after {
  background-color: #c5275d;
}
.form-daily-notebook .checklist-item .options .form-group input[type="radio"] {
  opacity: 0;
  position: relative;
  width: 100%;
  height: 15px;
}
@media (max-width: 1024px) {
  .form-daily-notebook .checklist-item .options .form-group label {
    font-size: 14px;
  }
}
/*
 * My Account: My Change
 */
#generated-gif img {
  display: block;
  margin: 0 auto;
}
.my-change-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  /*
	.custom-file-upload {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		cursor: pointer;
	}
	
	.custom-file-upload-btn {
		position: absolute;
		right: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		border: 1px solid #ccc;
		display: inline-block;
		padding: 6px 12px;
		cursor: pointer;
		
		input[type="file"] {
			position: absolute;
			right: 0;
			left: 0;
			bottom: 0;
			width: 100%;
		}
	}
	 */
}
.my-change-wrapper .item {
  position: relative;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  margin: 0 10px 10px 10px;
  min-width: 300px;
  max-width: 300px;
}
.my-change-wrapper .item h2 {
  margin: 0;
  text-align: center;
  background-color: rgba(197, 39, 93, 0.8);
  padding: 5px;
  color: white;
  border: 3px solid #c5275d;
  border-bottom: 0;
}
.my-change-wrapper .content {
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
.my-change-wrapper .content .custom-file-upload-btn {
  background-color: rgba(255, 255, 255, 0.92);
}
.my-change-wrapper .content {
  position: relative;
  min-height: 400px;
  text-align: center;
  border: 3px solid #c5275d;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.my-change-wrapper .file-upload {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.my-change-wrapper .custom-file-upload {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: none;
}
.my-change-wrapper .custom-file-upload-btn {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  border: 1px solid #cccccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
}
.my-change-wrapper .has-thumbnail .content {
  background-position: center;
  background-size: contain;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: flex-end;
  -moz-box-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.my-change-wrapper .has-thumbnail .file-upload {
  position: absolute;
  top: initial;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: initial;
  display: none;
}
@media (max-width: 1366px) {
  .my-change-wrapper .item {
    flex-basis: 50%;
  }
}
@media (max-width: 768px) {
  .my-change-wrapper .item {
    flex-basis: 100%;
    max-width: 100%;
  }
  .my-change-wrapper .item h2 {
    text-align: center;
    background-color: rgba(197, 39, 93, 0.8);
    padding: 5px;
    color: white;
  }
  .my-statistics .edit-custom {
    margin-bottom: 20px;
  }
}
/*
 * Testimonial Slider
 */
.testimonials-slider .elementor-testimonial__content {
  flex-basis: 40%;
}
.testimonials-slider .elementor-testimonial__footer {
  flex-basis: 60%;
}
@media (max-width: 768px) {
  .testimonials-slider .elementor-testimonial {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .testimonials-slider .elementor-testimonial__content {
    flex-basis: 100%;
  }
  .testimonials-slider .elementor-testimonial__footer {
    flex-basis: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }
}
/*
 * Responsive embed
 */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .embed-container {
    padding-bottom: 56.25%;
    max-width: 100%;
  }
}
/*
 * Questionnaire
 */
.email-step-wrapper {
  margin: 0 0 55px 0;
}
.questionnaire-wrapper {
  margin: 20px 0 55px 0;
}
.steps {
  width: 100%;
  min-height: 300px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.steps .step .title {
  margin-bottom: 20px;
}
.steps .step .content {
  margin-bottom: 20px;
}
.steps .step .step-answers {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.steps .step .step-answers label {
  margin-bottom: 10px;
  font-size: 20px;
}
.steps .step .step-answers input[type="text"] {
  border: 0;
  border-bottom: 2px solid #c5275d;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.steps .step .step-answers input[type="number"] {
  border: 0;
  border-bottom: 2px solid #c5275d;
  max-width: 100px;
  width: auto;
  padding: 10px 10px 5px 10px;
  text-align: center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.steps .step .step-answers input[type="number"]::-webkit-input-placeholder {
  position: relative;
  right: -10px;
}
.steps .step .step-answers input[type="number"]:-moz-placeholder {
  position: relative;
  right: -10px;
}
.steps .step .step-answers input[type="number"]::-moz-placeholder {
  position: relative;
  right: -10px;
}
.steps .step .step-answers input[type="number"]:-ms-input-placeholder {
  position: relative;
  right: -10px;
}
.steps .step .step-answers button.button {
  margin-bottom: 5px;
}
.steps .step .step-answers button.button.active a {
  color: white;
}
.steps .step .step-answers button.button:not(.active) {
  background-color: #eee;
}
.steps .step .step-answers button.button a {
  color: #333333;
  font-size: 20px;
}
.steps-navigation {
  margin-top: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.steps-navigation .button {
  min-width: 166px;
}
.steps-navigation .button:last-child {
  margin-left: 30px;
}
.email-step-wrapper form {
  text-align: center;
  margin: 30px auto 60px auto;
}
.email-step-wrapper .flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.email-step-wrapper .col {
  position: relative;
  margin: 15px 10px;
}
.email-step-wrapper .col:nth-of-type(1),
.email-step-wrapper .col:nth-of-type(2),
.email-step-wrapper .col:nth-of-type(3) {
  flex-basis: calc(33.33% - 20px);
}
.email-step-wrapper .col:nth-of-type(4),
.email-step-wrapper .col:nth-of-type(5) {
  flex-basis: calc(50% - 20px);
}
.email-step-wrapper .text-after-input p {
  line-height: 1.3;
}
.email-step-wrapper #btn-show-results {
  margin-top: 30px;
}
#reveal-password {
  position: absolute;
  top: 10px;
  left: 5px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .email-step-wrapper h1 {
    font-size: 24px;
    line-height: 24px;
  }
  .step h2 {
    font-size: 20px;
  }
  .step h3 {
    font-size: 18px;
  }
  .email-step-wrapper form {
    margin: 20px auto 30px auto;
  }
  .email-step-wrapper form .flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .email-step-wrapper form .col {
    margin: 0 0 15px 0;
  }
  .mobile-hide {
    display: none !important;
  }
  .steps .step .step-answers button.button {
    padding: 0;
  }
  .steps .step .step-answers button.button a {
    white-space: normal;
  }
  .logo-questionnaire {
    width: 100px;
  }
  .steps-navigation .button {
    min-width: auto;
  }
  .steps-navigation .button a {
    padding: 10px 20px;
  }
}
.my-account-menu li.elementor-icon-list-item {
  margin: 0 !important;
  padding: 10px;
}
.my-account-menu li.elementor-icon-list-item:hover {
  background-color: rgba(197, 39, 93, 0.55);
}
.my-account-menu li.elementor-icon-list-item:hover .elementor-icon-list-icon i,
.my-account-menu li.elementor-icon-list-item:hover .elementor-icon-list-text {
  color: white;
}
.my-account-menu li.elementor-icon-list-item::after {
  left: -11px !important;
}
@media (max-width: 1024px) {
  .my-account-menu ul.elementor-icon-list-items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .my-account-menu ul.elementor-icon-list-items li.elementor-icon-list-item {
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
  }
  .my-account-menu ul.elementor-icon-list-items li.elementor-icon-list-item a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .my-account-menu ul.elementor-icon-list-items li.elementor-icon-list-item a span.elementor-icon-list-text {
    padding-right: 0 !important;
    font-size: 16px;
  }
  .my-account-menu ul.elementor-icon-list-items li.elementor-icon-list-item a span.elementor-icon-list-icon i {
    font-size: 30px;
  }
  .my-account-menu ul.elementor-icon-list-items li.elementor-icon-list-item::after {
    content: initial;
    display: none;
  }
}
/*
 * Custom Checkout
 */
#timer-checkout .elementor-countdown-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#timer-checkout .elementor-countdown-wrapper .elementor-countdown-item:first-child {
  margin-right: calc(10px / 2);
  margin-left: 0;
}
#timer-checkout .elementor-countdown-wrapper .elementor-countdown-item:first-child::before {
  content: ':';
  position: relative;
  right: -3px;
  font-size: 36px;
}
/*
 * Sliders
 */
.slick-slide:not(:last-child) {
  margin: 0 30px;
}
[dir='rtl'] .slick-prev {
  right: -50px;
}
[dir='rtl'] .slick-next {
  left: -50px;
}
[dir='rtl'] .slick-prev,
[dir='rtl'] .slick-next {
  width: 55px;
  height: 55px;
  z-index: 10;
}
.slick-dots li button:before {
  font-size: 15px;
}
.slick-dots button:hover,
.slick-dots button:focus {
  background-color: transparent;
}
.slick-prev:before,
.slick-next:before {
  font-size: 55px;
  color: #c5275d;
}
.trainings-slider,
.recipes-slider,
.workshops-slider {
  margin: 0 50px;
}
.trainings-slider .slick-dots,
.workshops-slider .slick-dots {
  top: 26px;
  bottom: initial;
}
.trainings-slider,
.workshops-slider,
.recipes-slider {
  display: none;
}
.dots-navigation {
  margin-top: -40px;
  margin-bottom: 10px;
}
.dots-navigation i {
  margin: 0 5px;
}
.dots-navigation i.fa-chevron-circle-right {
  margin-left: 60%;
}
.dots-navigation i.slide-prev,
.dots-navigation i.slide-next {
  color: #c5275d;
  font-size: 30px;
}
p.my-goal {
  margin-bottom: 30px;
  line-height: 1.3;
}
#cardcom-payment-form iframe {
  min-height: 602px;
}
.payment-summary .row {
  padding: 20px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.payment-summary .row:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.payment-summary .row.row-choose-plan {
  display: block;
}
.payment-summary .row.row-choose-plan label:not(:last-child) {
  margin-bottom: 10px;
}
.payment-summary .coupon-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.payment-summary .coupon-form #coupon-code {
  flex-grow: 3;
  flex-shrink: 1;
  flex-basis: 0;
  border: 2px solid #c5275d;
}
.payment-summary .coupon-form button {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  border: 1px solid #c5275d;
}
.payment-summary .price-before {
  margin-left: 5px;
}
.payment-summary .coupon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 10px 0;
}
.payment-summary .coupon .amount,
.payment-summary .coupon .remove-coupon {
  justify-self: flex-end;
}
.payment-summary .coupon #remove-coupon {
  margin-left: 8px;
  text-decoration: underline;
}
.payment-summary .coupon:not(:last-child) {
  border-bottom: 1px solid #eee;
}
#pay-now:disabled {
  opacity: 0.6;
}
#payment-successful {
  animation-iteration-count: infinite;
}
#elementor-popup-modal-1383 i.eicon-close {
  background-color: black;
  border-radius: 50%;
  color: white;
  padding: 5px;
}
.comment-form-cookies-consent,
.comment-form-url {
  display: none;
}
#full-screen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  background: black;
  background: rgba(0, 0, 0, 0.5);
}
.questionnaire-results p {
  line-height: 1.3;
}
.workshop .title p {
  line-height: 1;
}
.preloader.my-workshop i {
  font-size: 30px;
}
.coupon-response #coupon-code {
  display: none;
}
.coupon-response .share-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.coupon-response .share-social a > i {
  font-size: 40px;
}
@media (min-width: 1024px) {
  .elementor-nav-menu li.desktop-hide {
    display: none;
  }
}
@media (max-width: 1366px) {
  .workshops-slider .slick-slide:not(:last-child) {
    margin: 0 15px;
  }
  .workshop .title p {
    font-size: 24px;
  }
}
@media (max-width: 1280px) {
  .workshops-slider .slick-slide:not(:last-child) {
    margin: 0 10px;
  }
  .workshop .title p {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  #payment-timer-wrapper > .elementor-container {
    max-width: 140px;
  }
}
@media (max-width: 768px) {
  .mobile-hide {
    display: none;
  }
  .slick-slide:not(:last-child) {
    margin: 0;
  }
  [dir='rtl'] .slick-prev {
    right: -40px;
    width: 35px;
    height: 35px;
  }
  [dir='rtl'] .slick-next {
    left: -40px;
    width: 35px;
    height: 35px;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 37px;
  }
  .recipes-slider,
  .workshops-slider {
    margin: 0 20px 20px 20px;
  }
  .workshops-slider .slick-dots {
    top: 40px;
    bottom: initial;
  }
  .my-goal {
    font-size: 21px;
  }
  .my-account-mobile-menu ul.elementor-icon-list-items li.elementor-icon-list-item:last-child {
    display: none;
  }
  #payment-timer-wrapper > .elementor-container {
    max-width: 195px;
  }
  #cardcom-payment-form iframe {
    min-height: 850px;
  }
}
/*
 * Webinar
 */
#webinar-stream-iframe-wrapper {
  position: relative;
  padding-top: 56%;
}
#webinar-stream-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.webinar-iframe-wrapper.active #webinar-stream-iframe-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
  z-index: 9999;
}
.webinar-iframe-wrapper.active iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
}
.webinar-timer-wrapper .elementor-widget-countdown-timer-pro-widget.active {
  background-color: transparent;
  justify-content: flex-start;
  align-items: flex-end;
}
.webinar-timer-wrapper .elementor-widget-countdown-timer-pro-widget.active i {
  margin-right: 4px;
  padding: 7px;
  background-color: #c5275d;
  color: white;
}
iframe.go_fitness-iframe,
iframe.webinar-5am-iframe {
  margin-top: -43px;
  min-height: 640px;
}
#form_go_fitness .elementor-field-type-submit button,
#form-webinar-march2 .elementor-field-type-submit button {
  margin-left: 35%;
}
@media (max-width: 767px) {
  iframe.go_fitness-iframe,
  iframe.webinar-5am-iframe {
    min-height: 980px;
  }
  #form_go_fitness .elementor-field-type-submit button,
  #form-webinar-march2 .elementor-field-type-submit button {
    margin-left: 0;
  }
  #form_go_fitness .elementor-message,
  #form-webinar-march2 .elementor-message {
    margin-top: 125px;
  }
}
.slide-fwd-left {
  -webkit-animation: slide-fwd-left 2s linear infinite both;
  animation: slide-fwd-left 2s linear infinite both;
}
.slide-fwd-right {
  -webkit-animation: slide-fwd-right 2s linear infinite both;
  animation: slide-fwd-right 2s linear infinite both;
}
.slide-fwd-bottom {
  -webkit-animation: slide-fwd-bottom 2s linear both;
  animation: slide-fwd-bottom 2s linear both;
}
.slide-fwd-top {
  -webkit-animation: slide-fwd-top 2s linear infinite both;
  animation: slide-fwd-top 2s linear infinite both;
}
@-webkit-keyframes slide-fwd-right {
  0% {
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
  }
  100% {
    -webkit-transform: translateZ(160px) translateX(100px);
    transform: translateZ(160px) translateX(100px);
  }
}
@keyframes slide-fwd-right {
  0% {
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
  }
  100% {
    -webkit-transform: translateZ(160px) translateX(100px);
    transform: translateZ(160px) translateX(100px);
  }
}
@-webkit-keyframes slide-fwd-left {
  0% {
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
  }
  100% {
    -webkit-transform: translateZ(160px) translateX(-100px);
    transform: translateZ(160px) translateX(-100px);
  }
}
@keyframes slide-fwd-left {
  0% {
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
  }
  100% {
    -webkit-transform: translateZ(160px) translateX(-100px);
    transform: translateZ(160px) translateX(-100px);
  }
}
@-webkit-keyframes slide-fwd-bottom {
  0% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
  }
  100% {
    -webkit-transform: translateZ(160px) translateY(100px);
    transform: translateZ(160px) translateY(100px);
  }
}
@keyframes slide-fwd-bottom {
  0% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
  }
  100% {
    -webkit-transform: translateZ(160px) translateY(100px);
    transform: translateZ(160px) translateY(100px);
  }
}
@-webkit-keyframes slide-fwd-top {
  0% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
  }
  100% {
    -webkit-transform: translateZ(-160px) translateY(-100px);
    transform: translateZ(-160px) translateY(-100px);
  }
}
@keyframes slide-fwd-top {
  0% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
  }
  100% {
    -webkit-transform: translateZ(-160px) translateY(-100px);
    transform: translateZ(-160px) translateY(-100px);
  }
}
.iframe-payment,
.iframe-payment iframe {
  min-height: 630px;
}
.iframe-payment-header {
  font-size: 27px;
}
.iframe-payment-header .coupon-code-button-remove {
  margin-left: 10px;
  font-size: 20px;
  text-decoration: underline;
}
.iframe-payment-header .price {
  margin-right: 20px;
}
#sport-trial-payment-iframe {
  min-height: 630px;
}
@media (max-width: 768px) {
  .swiper {
    width: 100%;
    height: 100% !important;
  }
  .swiper .swiper-wrapper {
    flex-wrap: nowrap !important;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
  .swiper-pagination-bullet-active {
    background-color: #c5275d;
  }
  .iframe-payment {
    height: 475px;
    min-height: auto;
  }
  .iframe-payment-header {
    font-weight: bold;
    font-size: 21px;
  }
  .iframe-payment-header .price {
    margin-right: 10px;
  }
}
div.nsl-container-buttons {
  display: grid;
}
div.nsl-container-buttons a[data-plugin="nsl"] {
  width: 100%;
}
div.nsl-container-buttons a[data-plugin="nsl"] .nsl-button {
  display: flex;
  justify-content: center;
  width: 320px;
  padding: 5px 20px;
  border-radius: 50px;
}
div.nsl-container-buttons a[data-plugin="nsl"] .nsl-button .nsl-button-svg-container,
div.nsl-container-buttons a[data-plugin="nsl"] .nsl-button .nsl-button-label-container {
  flex: initial;
  margin: 0;
  font-family: inherit;
  letter-spacing: 0;
  overflow: initial;
}
#form-show-results {
  max-width: 400px;
}
.toggle-form-show-results {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  padding: 12px 20px;
  border: 1px solid #c5275d;
  background-color: white;
  color: #c5275d;
  border-radius: 50px;
  cursor: pointer;
}
.page-id-20 #header > .elementor-container > .elementor-column:last-child {
  display: none;
}
