@charset "UTF-8";
:root {
  --color-pink: #c63781;
  --color-orange: #F68B2B;
  --color-turquoise: #63B1B2;
  --color-green: #649740;
  --color-grey-darker: #222222;
  --color-grey-dark: #333333;
  --color-grey-medium: #646464;
  --color-grey-light: #818181;
  --color-grey-lighter: #cccccc;
  --color-grey-pale: #d2d2d2;
  --color-grey-ice: #efefef;
  --color-trans-1: #3498db00;
  --color-trans-2: #2980b900;
  --color-trans-3: #ddd0;
  --color-turquoise-a11y: #447e83;
  --color-turquoise-normal: #63B1B2;
  --color-mate-black: #2c27380a;
  --color-white: #fff;
  --color-dark-grey: #656565;
  --color-lighter-grey: #b7b7b7;
  --color-sub-white: #fcfdfa;
  --color-white-part: #e8e8e8;
  --color-white-shade: #e5e5e5;
  --color-white-10: rgb(255, 255, 255, .1);
  --color-white-20: rgb(255, 255, 255, .2);
  --color-white-30: rgb(255, 255, 255, .3);
  --color-white-40: rgb(255, 255, 255, .4);
  --color-white-50: rgb(255, 255, 255, .5);
  --color-white-60: rgb(255, 255, 255, .6);
  --color-white-70: rgb(255, 255, 255, .7);
  --color-white-80: rgb(255, 255, 255, .8);
  --color-white-90: rgb(255, 255, 255, .9);
  --color-white: #ffffff;
  --color-grey-05: rgb(0, 0, 0, .05);
  --color-grey-10: rgb(0, 0, 0, .1);
  --color-grey-20: rgb(0, 0, 0, .2);
  --color-grey-30: rgb(0, 0, 0, .3);
  --color-grey-40: rgb(0, 0, 0, .4);
  --color-grey-50: rgb(0, 0, 0, .5);
  --color-grey-60: rgb(0, 0, 0, .6);
  --color-grey-70: rgb(0, 0, 0, .7);
  --color-grey-80: rgb(0, 0, 0, .8);
  --color-grey-90: rgb(0, 0, 0, .9);
  --color-black: #000000;
  --color-pink-10: rgb(198, 55, 129, .1);
  --color-pink-20: rgb(198, 55, 129, .2);
  --color-pink-50: rgb(198, 55, 129, .5);
  --color-pink-70: rgb(198, 55, 129, .7);
  --color-green-10: rgb(100, 148, 66, .1);
  --color-green-20: rgb(100, 148, 66, .2);
  --color-green-50: rgb(100, 148, 66, .5);
  --color-green-70: rgb(100, 148, 66, .7);
  --color-orange-10: rgb(246, 139, 43, .1);
  --color-orange-20: rgb(246, 139, 43, .2);
  --color-orange-50: rgb(246, 139, 43, .5);
  --color-orange-70: rgb(246, 139, 43, .7);
  --font-serif: "Arvo", serif;
  --font-sans: "Lato", sans-serif;
}

body {
  background-image: url("../images/background.png");
  /* Chrome 66+, Edge 79+, Opera 53+, Android Brower 80+ */
  /* FF 66+ */
  background-repeat: repeat;
  background-size: 50%;
  font-style: normal;
  font-weight: 300;
  font-size: 100%;
  font-family: var(--font-serif);
  margin: 0;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  @supports (background-image: -webkit-image-set(url("../images/background.webp") 1x)) {
    body {
      background: -webkit-image-set(url("../images/background.webp") 1x);
    }
  }
}
@supports (flex-basis: max-content) and (-moz-appearance: meterbar) {
  body {
    background: url(../images/background.webp);
  }
}
body.quest, body.activity {
  overflow: hidden;
}

form,
input,
button,
textarea,
select,
option {
  font-family: var(--font-serif);
}

main {
  transition: margin-left 0.5s;
  padding: 16px;
}

.body-overflow {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: hidden !important;
  overflow-x: hidden !important;
}
.body-overflow #mainBody {
  overflow-y: hidden !important;
  overflow-x: hidden !important;
  height: calc(100% - 160px);
  position: relative;
}
.body-overflow .image-modal .modal-overlay {
  z-index: 1111;
}

footer {
  background-image: url("../images/background.png");
  bottom: 0;
  color: var(--color-grey-70);
  font-size: 0.85rem;
  left: 0;
  margin: 2rem 0 0;
  padding: 0.5rem;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.overflow-hidden {
  overflow: hidden !important;
}

.progress-loading {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.progress-loading.on {
  display: block;
}

.progress-loading.off {
  display: none;
}

@keyframes auto-progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.progress-bar {
  background-color: #63b1b2;
  height: 5px;
  width: 100%;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 0 1px 5px #63b1b2 inset, 0 1px 0 #63b1b2;
}

.progress-bar-inner {
  display: block;
  height: 5px;
  width: 0%;
  background-color: #f68b2b;
  border-radius: 3px;
  box-shadow: 0 1px 0 #f68b2b inset;
  position: relative;
}

header {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  background: var(--color-turquoise);
}
header.header_bg {
  background-image: url("../images/zidzid_circle_logo_150.png");
  background-repeat: no-repeat;
  background-position: 98% 10px;
  background-size: auto 55px;
}
header .trapezoid {
  max-width: 400px;
  min-width: 250px;
  background: var(--color-pink);
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 50px;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
header .trapezoid:before, header .trapezoid:after {
  content: " ";
  display: block;
  width: 50px;
  background: var(--color-pink);
  position: absolute;
  top: 0;
  height: 50px;
  z-index: -1;
}
header .trapezoid:before {
  left: -12px;
  transform: skew(-20deg);
}
header .trapezoid:after {
  right: -12px;
  transform: skew(10deg);
}
header .trapezoid h1 {
  font-weight: 700;
  font-size: 1.55rem;
  color: white;
  margin: 9px 0 0 0;
  padding: 0;
  z-index: 1;
}
header .sidenavBtn button {
  position: fixed;
  overflow: hidden;
  display: block;
  top: 9px;
  left: 50px;
  text-align: center;
  margin: auto;
  padding: 5px 3px 0;
  border: 0;
  background-color: var(--color-orange);
  transform: skew(5deg);
}
header .sidenavBtn button img.hamburger {
  z-index: 1;
  max-height: 45px;
  cursor: pointer;
  font-size: 30px;
  transform: skew(-5deg);
}
header .sidenavBtn button img.hamburger.closed {
  padding: 0 5px;
}

.sidenav {
  background-color: #9BD8E0;
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  height: calc(100vh - 100px);
  justify-content: space-between;
  left: 0;
  overflow-x: hidden;
  position: fixed;
  top: 75px;
  transition: 0.5s;
  width: 0;
  z-index: 999;
}
.sidenav .d-none {
  display: none !important;
}
.sidenav.open {
  width: 330px;
  overflow-x: hidden;
  overflow-y: auto;
}
.sidenav.open #side-main {
  margin-bottom: 6rem;
}
.sidenav ul {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 1rem 0 0rem;
  padding: 0;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidenav ul li {
  list-style: none;
}
.sidenav ul .yogaLi {
  color: var(--color-orange) !important;
}
.sidenav ul.courses li.nav-item {
  margin: 0 10px 15px 0;
}
.sidenav ul.courses li.nav-item ul {
  padding: 20px;
  display: none;
}
.sidenav ul.courses li.nav-item ul li a {
  border-bottom: 3px dashed var(--color-grey-ice);
  box-sizing: border-box;
  color: var(--color-pink);
  display: flex;
  flex-direction: row;
  font-size: 1.25rem;
  font-weight: 400;
  justify-content: space-between;
  padding: 10px 20px;
  width: 100%;
  text-transform: unset;
}
.sidenav ul.courses li.nav-item.active ul {
  display: flex;
}
.sidenav ul.courses a {
  text-decoration: none;
  text-transform: uppercase;
}
.sidenav ul.courses a small {
  font-family: var(--font-sans);
  text-transform: capitalize;
  font-weight: normal;
}
.sidenav ul.courses a[href="#"] {
  cursor: default;
}
.sidenav ul.courses a.course {
  background-color: var(--color-pink);
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
  color: white;
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 15px 30px;
  width: 260px;
}
.sidenav ul.courses a.course.orange {
  background-color: var(--color-orange);
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
}
.sidenav ul.courses a.course.turquoise {
  background-color: var(--color-turquoise);
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
}
.sidenav ul.utilities li a {
  border-top: 3px dashed var(--color-grey-ice);
  box-sizing: border-box;
  color: var(--color-pink);
  display: flex;
  flex-direction: row;
  font-size: 1.25rem;
  font-weight: 400;
  justify-content: space-between;
  padding: 10px 20px;
  text-decoration: none;
  width: 100%;
}

.custom-btn {
  background-color: var(--color-pink);
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
  color: white;
  display: block;
  font-size: 1.5rem !important;
  font-weight: 600;
  padding: 15px 30px;
  width: 260px !important;
  text-decoration: none;
  width: 80% !important;
}

.disabled {
  pointer-events: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown button {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 50px;
  height: auto;
  position: fixed;
  top: 5px;
  right: 50px;
  background-color: transparent;
  overflow: visible;
}
.dropdown button .profile-button {
  background-color: var(--color-trans-1);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  max-height: 60px;
  z-index: 1;
}
.dropdown span.badge {
  background-color: white;
  border-radius: 50%;
  color: red;
  display: block;
  font-size: 0.85rem;
  height: 16px;
  padding: 2px;
  position: fixed;
  text-align: center;
  width: 16px;
  z-index: 999;
  top: 15px;
  right: 30px;
}
.dropdown .dropdown-content {
  position: fixed;
  background-color: white;
  min-width: 250px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: -3;
  right: 10px;
  top: 77px;
  min-height: 160px;
  transform: translateY(-150%);
  transition: 0.2s;
  transition-timing-function: ease-out;
  visibility: hidden;
}
.dropdown .dropdown-content span.inner-badge {
  font-size: 0.85em;
}
.dropdown .dropdown-content span.left_nav_icon {
  float: right;
}
.dropdown .dropdown-content.show {
  transition: 0.5s;
  transition-timing-function: ease-in;
  transform: translateY(0);
  visibility: visible;
}
.dropdown .dropdown-content a {
  color: black;
  padding: 16px 12px 10px;
  text-decoration: none;
  display: block;
  border-top: 3px dashed var(--color-grey-pale);
  margin: 10px;
  font-size: 1.125rem;
  position: relative;
  opacity: unset;
}
.dropdown .dropdown-content a:last-child {
  color: var(--color-pink);
  border-bottom: 3px dashed var(--color-grey-pale);
}
.dropdown .dropdown-content a:hover {
  background-color: var(--color-trans-3);
}
.dropdown .dropdown-content a:nth-child(1) {
  color: var(--color-turquoise);
}
.dropdown .dropdown-content a:nth-child(2) {
  color: var(--color-orange);
}
.dropdown .dropdown-content a:nth-child(3) {
  color: var(--color-turquoise);
}
.dropdown .dropdown-content a:nth-child(4) {
  color: var(--color-orange);
}

/**********Profile Menu Modal css start***************/
/* The Modal (background) */
/* 1. Ensure this sits above everything when visible */
.profile-modal {
  position: absolute;
  z-index: 10000;
  /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}
.profile-modal.is-visible {
  visibility: visible;
}
.profile-modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.profile-modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.profile-modal .modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.profile-modal .modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}
.profile-modal .profile-modal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 120px;
  left: 45%;
  width: 45%;
  margin-left: -16em;
  background-color: white;
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.35);
  border-radius: 50px;
  height: 350px;
}
.profile-modal .profile-modal-wrapper .profile-modal-header .profile-modal-close {
  position: relative;
  top: 10px;
  padding: 1em;
  color: red;
  background: none;
  border: 0;
  font-size: 1.9rem;
  cursor: pointer;
}
.profile-modal .profile-modal-wrapper .profile-modal-header .profile-modal-close:hover {
  color: red;
}
.profile-modal .profile-modal-wrapper .profile_container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 25px;
  margin: 0 auto 1em;
}
.profile-modal .profile-modal-wrapper .profile_container .profile_content {
  width: 33%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.profile-modal .profile-modal-wrapper .profile_container .profile_content .radio-custom {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
}
.profile-modal .profile-modal-wrapper .profile_container .profile_content .profile_image_div {
  position: relative;
  width: 80px;
  height: 80px;
}
.profile-modal .profile-modal-wrapper .profile_container .profile_content .profile_image_div:before {
  content: "";
  background: white;
  border: 2px solid #ddd;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  padding: 2px;
  margin-right: 0;
  text-align: center;
  position: absolute;
  left: 0.6em;
  top: 2.1em;
  border-radius: 50%;
  color: var(--color-green);
  font-size: 40px;
  line-height: 21px;
}
.profile-modal .profile-modal-wrapper .profile_container .profile_content .profile_image_div img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.profile-modal .profile-modal-wrapper .profile_container .profile_content .radio-custom,
.profile-modal .profile-modal-wrapper .profile_container .profile_content .profile_image_div {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}
.profile-modal .profile-modal-wrapper .profile_container .profile_content .radio-custom:checked + .profile_image_div:before {
  content: "";
  font-family: "FontAwesome";
}
.profile-modal .profile-modal-wrapper .profile_container .profile_content .profile_main {
  position: relative;
}
.profile-modal .profile-modal-wrapper .profile_update_btn {
  background-color: var(--color-orange);
  border: none;
  color: white;
  padding: 10px 35px;
  text-align: center;
  font-size: 1rem;
  margin: 15px 35px;
  cursor: pointer;
  float: right;
}

main.home header .trapezoid {
  display: none;
}
main.home header button[aria-label="Menu Button"] {
  display: none;
}

#mainBody {
  z-index: 1;
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 5rem;
}
#mainBody .home {
  text-align: center;
  margin-top: 2rem;
}
#mainBody .home .logo {
  max-width: 20%;
  min-width: 230px;
}
#mainBody .home ul {
  margin: 0 auto;
  padding: 0;
  display: block;
  text-align: center;
}
#mainBody .home ul li {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
}
#mainBody .home ul li a {
  display: block;
  padding: 1.5rem 0;
  background-color: var(--color-orange);
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  margin: 0.5rem auto;
  max-width: 94%;
  font-size: 2rem;
  cursor: pointer;
  clip-path: polygon(0 0, 1% 90%, 98% 98%, 99% 9%);
}
#mainBody .home ul li a[href="#"] {
  cursor: default;
}
#mainBody .home ul li a.turquoise {
  background-color: var(--color-turquoise);
  clip-path: polygon(1% 2%, 0% 86%, 100% 100%, 99% 8%);
}
#mainBody .home ul li a.pink {
  background-color: var(--color-pink);
  clip-path: polygon(0 0, 1% 90%, 99% 90%, 100% 10%);
}
#mainBody .home ul li a.green {
  background-color: #63963F;
  clip-path: polygon(0 0, 1% 90%, 99% 90%, 100% 10%);
}
#mainBody .home ul li a small {
  display: block;
  font-size: 0.8rem;
  text-transform: unset;
}
#mainBody .home ul li:nth-child(2n) a {
  clip-path: polygon(1% 2%, 0% 86%, 100% 100%, 99% 8%);
}
#mainBody .home ul li:nth-child(2n+1) a {
  clip-path: polygon(0 0, 1% 90%, 99% 90%, 100% 10%);
}
#mainBody .container {
  display: block;
}

.loading-icon {
  background-color: transparent;
  position: fixed;
  top: -200px;
  z-index: 999;
  right: 0;
  left: 3000px;
  margin: auto;
  display: block;
  transform: translateY(0%);
  transition: 1.25s;
  transition-timing-function: ease-out;
  offset-path: path("M-0,35 L60,30 L80,35 L100,30 L120,35 L140,30 L160,40 M180,30");
  animation: move 3000ms infinite alternate ease-in-out;
}
.loading-icon.on {
  top: 20%;
  left: 0;
  transition: 0.5s;
  transition-timing-function: ease-out;
}
.loading-icon.off {
  top: -500px;
  left: -3000px;
  transition: 0.5s;
  transition-timing-function: ease-out;
}

@keyframes move {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}
.filter-form {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.filter-form label {
  position: relative;
  border: 1px solid var(--color-orange);
  width: 110px;
  display: inline-block;
  text-align: left;
  margin: 0px 10px;
  padding: 5px 10px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}
.filter-form input {
  display: none;
}
.filter-form input:checked + .badge-box, .filter-form input:checked + .input-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--color-orange);
  border-radius: 10px;
  color: #fff;
}

@media only screen and (max-width: 800px) {
  .filter-form {
    flex-wrap: wrap;
    margin-top: 0px !important;
  }
  .filter-form label {
    margin-top: 10px !important;
  }
}
@media only screen and (max-width: 400px) {
  .filter-form label {
    width: 30% !important;
  }
}
.m-t-10 {
  margin-top: 10px;
}

a.course.green {
  background-color: #63963F !important;
}

a.course.green {
  background-color: #63963F !important;
}

#preloader {
  overflow: hidden;
  text-align: center;
  height: 150px;
}

.spinner {
  height: 40px;
  width: 40px;
  position: relative;
  margin: auto;
}

[class^=ball-] {
  position: absolute;
  display: block;
  left: 30px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  transition: all 0.5s;
  animation: circleRotate 4s both infinite;
  transform-origin: 0 250% 0;
}

@keyframes circleRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1440deg);
  }
}
.ball-1 {
  z-index: -1;
  background-color: #ffd700;
  animation-timing-function: cubic-bezier(0.5, 0.3, 0.9, 0.9);
}

.ball-2 {
  z-index: -2;
  background-color: #03a9f4;
  animation-timing-function: cubic-bezier(0.5, 0.6, 0.9, 0.9);
}

.ball-3 {
  z-index: -3;
  background-color: #c8102e;
  animation-timing-function: cubic-bezier(0.5, 0.9, 0.9, 0.9);
}

.ball-4 {
  z-index: -4;
  background-color: #009688;
  animation-timing-function: cubic-bezier(0.5, 1.2, 0.9, 0.9);
}

.ball-5 {
  z-index: -5;
  background-color: #ff7f50;
  animation-timing-function: cubic-bezier(0.5, 1.5, 0.9, 0.9);
}

.ball-6 {
  z-index: -6;
  background-color: #8bc34a;
  animation-timing-function: cubic-bezier(0.5, 1.8, 0.9, 0.9);
}

.ball-7 {
  z-index: -7;
  background-color: #cddc39;
  animation-timing-function: cubic-bezier(0.5, 2.1, 0.9, 0.9);
}

.ball-8 {
  z-index: -8;
  background-color: #c8102e;
  animation-timing-function: cubic-bezier(0.5, 2.4, 0.9, 0.9);
}

/**********Resources Modal css start***************/
/* The Modal (background) */
/* 1. Ensure this sits above everything when visible */
.modal {
  position: absolute;
  z-index: 10000;
  /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*Open/Close*/
}
.modal .overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.modal.visible {
  visibility: visible;
}
.modal.visible .overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.modal.visible .transition {
  transform: translateY(0);
  opacity: 1;
}

.modal .wrapper {
  z-index: 9999;
  max-width: 50%;
  background-color: white;
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.35);
}
.modal .wrapper .header {
  padding: 0.5em;
}
.modal .wrapper .content {
  padding: 2em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.modal .wrapper .content p {
  width: 100%;
  color: var(--color-grey-light);
  font-weight: 600;
}
.modal .wrapper .content a.button {
  background-color: var(--color-orange);
  border: none;
  color: white;
  padding: 12px 32px;
  text-align: center;
  font-size: 1rem;
  margin: 5px 25px;
  cursor: pointer;
}
.modal .wrapper .header {
  background-color: var(--color-orange);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  flex-direction: row;
}
.modal .wrapper .header .close {
  color: white;
  background: none;
  border: 0;
  font-size: 1.9rem;
  line-height: 2rem;
  cursor: pointer;
}
.modal .wrapper .header .heading {
  font-size: 1.125em;
  line-height: 2rem;
  text-align: center;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  margin: 0;
}
.modal .transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}

.content > *:first-child {
  margin-top: 0;
}

.content > *:last-child {
  margin-bottom: 0;
}

/********** Modal css end***************/
.community-modal .modal-body {
  max-height: 80vh;
  overflow-y: auto;
}

.weeklycheckinBox {
  left: 0;
  position: relative;
  right: 0;
  text-align: center;
  top: 55px;
}
.weeklycheckinBox .passportBoxInfo {
  margin: 0 auto;
  position: relative;
  width: 500px;
}
.weeklycheckinBox .passportBoxInfo img {
  cursor: pointer;
  left: 650px;
  margin-bottom: 10px;
  max-height: 75px;
  max-width: 75px;
  top: 127px;
  z-index: 1;
}
.weeklycheckinBox .passportBoxInfo > div {
  color: var(--color-orange);
  font-size: 2rem;
  font-weight: 700;
}

.review_form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4%;
}
.review_form label {
  color: var(--color-grey-medium);
}
.review_form button {
  background-color: var(--color-orange);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  font-size: 1rem;
  cursor: pointer;
  float: right;
  font-weight: 600;
}
.review_form p {
  background: white;
  width: max-content;
  margin: 0 auto;
  padding: 3px 23px;
  border-radius: 20px;
  color: var(--color-grey-medium);
  float: left;
}
.review_form .star {
  color: var(--color-orange);
  font-size: 50px;
  padding: 6px;
}

#mainBody {
  height: auto;
}
#mainBody .container .loginBox {
  position: relative;
  width: 300px;
  margin: 0 auto;
  text-align: center;
}
#mainBody .container .loginBox.error p,
#mainBody .container .loginBox.error label {
  color: var(--color-turquoise);
}
#mainBody .container .loginBox p {
  text-align: left;
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0 0 2rem 0;
  padding: 0.5rem;
  color: var(--color-grey-70);
}
#mainBody .container .loginBox p:last-child {
  text-align: center;
}
#mainBody .container .loginBox label {
  text-align: left;
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--color-turquoise);
  display: block;
  padding: 0.5rem 0 0 0.5rem;
}
#mainBody .container .loginBox input {
  padding: 20px;
  background: white;
  width: 300px;
  margin: 0 0 20px 0;
  font-weight: normal;
  color: var(--color-grey-medium);
  font-size: 1.25rem;
  text-align: center;
  border: 0;
  border-radius: 0;
  border-bottom: 5px solid var(--color-turquoise);
}
#mainBody .container .loginBox input::-webkit-input-placeholder {
  font-size: 1.25rem;
}
#mainBody .container .loginBox button {
  background-color: var(--color-orange);
  margin: 0px 0px 20px 0;
  padding: 20px;
  font-size: 1.25rem;
  font-weight: normal;
  color: white;
  border: 0;
  width: 340px;
  cursor: pointer;
}
#mainBody .container .loginBox button.reset-button {
  margin: 0;
}
#mainBody .container .loginBox button:hover {
  background-color: var(--color-orange);
}
#mainBody .container .loginBox a {
  color: #D72780;
  font-size: 1.25rem;
}
#mainBody .container .loginBox img {
  width: 250px;
  position: relative;
  top: 0.35em;
  z-index: 1;
}
#mainBody .container .loginBox .messageBox {
  background-color: var(--color-green);
  padding: 35px 0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
  width: 430px;
  right: 15%;
}
#mainBody .container .loginBox .messageBox.resetBox {
  margin-bottom: 20px;
}
#mainBody .container .loginBox .messageBox.tiger {
  background-color: var(--color-green);
}
#mainBody .container .loginBox .messageBox p {
  color: var(--color-white);
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width: 350px;
}

header .trapezoid {
  background: none;
}
header .trapezoid:before, header .trapezoid:after {
  background: none;
  content: none;
}

.oops {
  display: none;
  background-color: var(--color-pink);
  color: white;
  padding: 2rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: left;
}
.oops.yay {
  background-color: var(--color-green);
}
.oops.yay a {
  color: var(--color-white);
  text-decoration: underline;
}
.oops.on {
  display: block;
}
.oops h3 {
  font-size: 3rem;
  padding: 0;
  margin: 0 2rem 0 0;
  float: left;
}
.oops p {
  margin: 0.25rem 0 0;
  font-size: 1.125rem;
}

/**
  welcome modal
 */
.welcome-modal.modal .modal-wrapper {
  background-color: transparent;
  box-shadow: none;
  margin: 0 auto;
  left: 0;
  top: 0;
  position: relative;
  width: 100%;
}
.welcome-modal.modal .modal-wrapper .modal-body {
  background-image: url("./../images/welcome-border-2.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  max-width: 800px;
  margin: 1.75em auto;
}
.welcome-modal.modal .modal-wrapper .modal-body .modal-content {
  padding: 5em;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.welcome-modal.modal .modal-wrapper .modal-body .modal-content .image-wrapper img {
  width: 300px;
  height: auto;
}
.welcome-modal.modal .modal-wrapper .modal-body .modal-content .text-wrapper {
  color: var(--color-dark-grey);
}
.welcome-modal.modal .modal-wrapper .modal-body .modal-content .text-wrapper h1 {
  color: var(--color-dark-grey);
}
.welcome-modal.modal .modal-wrapper .modal-body .modal-content .text-wrapper .first-description {
  font-style: italic;
  margin: 0;
}
.welcome-modal.modal .modal-wrapper .modal-body .modal-content button {
  background: var(--color-pink);
  margin: 20px 0;
  padding: 10px;
  font-size: 1.25rem;
  font-weight: normal;
  color: white;
  border: 0;
  width: 180px;
  cursor: pointer;
}
.welcome-modal.modal.is-visible {
  visibility: visible;
}
.welcome-modal.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.welcome-modal.modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}

.color-orange {
  background-color: var(--color-orange) !important;
}

@media only screen and (max-height: 769px) {
  #mainBody .container .loginBox img {
    width: 175px !important;
    position: relative;
    top: 0.35em;
    z-index: 1;
  }
  #mainBody .container .loginBox .messageBox {
    padding: 12px 0;
    width: 440px;
    right: 17%;
  }
  #mainBody .container .loginBox input {
    padding: 10px;
  }
  #mainBody .container .loginBox button {
    padding: 10px;
    width: 320px;
  }
}
@media only screen and (max-width: 767px) {
  #mainBody .container .loginBox img {
    width: 175px !important;
    position: relative;
    top: 0.35em;
    z-index: 1;
  }
  #mainBody .container .loginBox .messageBox {
    padding: 12px 0;
    width: 360px;
    right: 7% !important;
  }
  #mainBody .container .loginBox input {
    padding: 10px;
  }
  #mainBody .container .loginBox button {
    padding: 10px;
    width: 320px;
  }
}
.password-container {
  position: relative;
  display: inline-block;
}

.toggle-password-visibility {
  position: absolute;
  top: 40%;
  right: 8px;
  /* Adjust this value to position the icon within the input field */
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 22px;
  /* Adjust this value to change the icon size */
}

.passportBox {
  position: relative;
  top: 55px;
  text-align: center;
}
.passportBox .profile-avatar-section .current-avatar {
  width: 80px;
}
.passportBox .profile-avatar-section p {
  font-size: 1rem;
  font-weight: bold;
  padding: 0;
  margin: 0;
  color: var(--color-orange);
}

.checkins {
  position: relative;
  width: 80%;
  margin: 0 auto;
  top: 45px;
  /* Posting Form Styles */
  /* Posting Styles */
}
.checkins form {
  position: relative;
}
.checkins form label {
  position: relative;
}
.checkins form label i.fas {
  background: var(--color-orange);
  border-radius: 50%;
  padding: 16px;
  position: absolute;
  z-index: 999;
  color: white;
  left: 0;
}
.checkins form label input[type=file] {
  z-index: 999;
  line-height: 0;
  width: 50px;
  height: 50px;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
}
.checkins form input[type=text] {
  border: 1px dashed #F68B2B;
  padding: 0.5rem 80px 0.5rem 1rem;
  margin: 0.5rem 0 0.5rem 2.5rem;
  position: relative;
  width: 500px;
}
.checkins form button {
  background: var(--color-orange);
  border-radius: 20px;
  border: none;
  color: white;
  cursor: pointer;
  margin: 0.3rem 0 0 -60px;
  padding: 12px 25px;
  position: absolute;
}
.checkins .postings {
  border-collapse: separate;
  border-spacing: 15px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 80px;
  margin: 0 auto 40px;
  width: 100%;
}
.checkins .postings .post {
  border: 1px solid var(--color-orange);
  color: white;
  height: 420px;
  margin: 18px;
  padding: 20px;
  position: relative;
  text-align: left;
  top: 35px;
  width: 26%;
}
.checkins .postings .post:nth-child(1n) {
  background: var(--color-pink);
  border: 1px solid var(--color-pink);
}
.checkins .postings .post:nth-child(2n) {
  background: var(--color-turquoise);
  border: 1px solid var(--color-turquoise);
}
.checkins .postings .post:nth-child(3n) {
  background: var(--color-green);
  border: 1px solid var(--color-green);
}
.checkins .postings .post:nth-child(4n) {
  background: var(--color-orange);
  border: 1px solid var(--color-orange);
}
.checkins .postings .post > .img-box {
  width: 100%;
  height: 70%;
  max-height: 500px;
  background: var(--color-grey-lighter);
}
.checkins .postings .post > .img-box img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.checkins .postings .post > .img-box img:hover {
  cursor: pointer;
}
.checkins .postings .post .title-stats {
  display: flex;
  flex-direction: row;
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.checkins .postings .post .actions {
  display: flex;
  flex-direction: row;
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
  justify-content: end;
  margin: 20px 0 0;
}
.checkins .postings .post .actions .edit {
  color: #ffffff;
  margin-right: 5px;
}
.checkins .postings .post .actions .edit i {
  font-size: 1rem;
}
.checkins .postings .post .actions .delete {
  color: #ffffff;
}
.checkins .postings .post .actions .delete i {
  font-size: 1rem;
}
.checkins .postings .post p {
  font-size: 0.9rem;
  padding: 0;
  text-align: left;
  max-height: 80px;
}
.checkins .postings .post h2 {
  font-size: 1rem;
  padding: 0;
  margin: 0;
  width: 90%;
}
.checkins .postings .post i {
  float: right;
  font-size: 2rem;
  padding: 0;
  cursor: pointer;
}
.checkins .postings .post i:after {
  content: attr(data-vote);
  position: relative;
  right: 50%;
  font-size: 0.85rem;
  padding-right: 2%;
  color: rgba(255, 0, 0, 0.85);
  padding-top: 1%;
  bottom: 25%;
}

/**********Community Modal css start***************/
.community-modal.modal,
.avatar-modal.modal,
.message-modal.modal,
.image-modal.modal {
  position: absolute;
  z-index: 10000;
  /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}
.community-modal.modal .modal-overlay,
.avatar-modal.modal .modal-overlay,
.message-modal.modal .modal-overlay,
.image-modal.modal .modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.community-modal.modal .modal-wrapper,
.avatar-modal.modal .modal-wrapper,
.message-modal.modal .modal-wrapper,
.image-modal.modal .modal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 120px;
  left: 45%;
  width: 45%;
  margin-left: -16em;
  background-color: #fff;
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.35);
}
.community-modal.modal .modal-wrapper #community_preview,
.avatar-modal.modal .modal-wrapper #community_preview,
.message-modal.modal .modal-wrapper #community_preview,
.image-modal.modal .modal-wrapper #community_preview {
  width: 100px;
  height: 100px;
  margin-top: 10px;
}
.community-modal.modal .modal-wrapper .hide-pre,
.avatar-modal.modal .modal-wrapper .hide-pre,
.message-modal.modal .modal-wrapper .hide-pre,
.image-modal.modal .modal-wrapper .hide-pre {
  display: none;
}
.community-modal.modal .modal-wrapper .pre-close,
.avatar-modal.modal .modal-wrapper .pre-close,
.message-modal.modal .modal-wrapper .pre-close,
.image-modal.modal .modal-wrapper .pre-close {
  position: absolute;
  border: 0;
  max-height: 32px;
  background-color: var(--color-pink);
  color: white;
  width: 25px;
  height: 25px;
  padding: 0;
  margin: 0;
  text-align: center;
  line-height: 20px;
}
.community-modal.modal .modal-wrapper.modal-transition,
.avatar-modal.modal .modal-wrapper.modal-transition,
.message-modal.modal .modal-wrapper.modal-transition,
.image-modal.modal .modal-wrapper.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}
.community-modal.modal .modal-wrapper .modal-header,
.avatar-modal.modal .modal-wrapper .modal-header,
.message-modal.modal .modal-wrapper .modal-header,
.image-modal.modal .modal-wrapper .modal-header {
  padding: 1em;
  position: relative;
  background-color: var(--color-orange);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #e8e8e8;
  height: 30px;
  display: flex;
  flex-direction: row;
  vertical-align: middle;
}
.community-modal.modal .modal-wrapper .modal-close,
.avatar-modal.modal .modal-wrapper .modal-close,
.message-modal.modal .modal-wrapper .modal-close,
.image-modal.modal .modal-wrapper .modal-close {
  position: unset;
  top: 0;
  padding: 0;
  color: #fff;
  background: none;
  border: 0;
  font-size: 1.9rem;
  cursor: pointer;
  width: 25px;
  height: 30px;
}
.community-modal.modal .modal-wrapper .modal-close:hover,
.avatar-modal.modal .modal-wrapper .modal-close:hover,
.message-modal.modal .modal-wrapper .modal-close:hover,
.image-modal.modal .modal-wrapper .modal-close:hover {
  color: #fff;
}
.community-modal.modal .modal-wrapper .modal-heading,
.avatar-modal.modal .modal-wrapper .modal-heading,
.message-modal.modal .modal-wrapper .modal-heading,
.image-modal.modal .modal-wrapper .modal-heading {
  font-size: 2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  display: inline-flex;
  flex-direction: row;
  height: 30px;
  width: 100%;
  margin: 0;
  justify-content: center;
  left: 0;
  position: unset;
  top: 0;
}
.community-modal.modal .modal-wrapper .modal-content,
.avatar-modal.modal .modal-wrapper .modal-content,
.message-modal.modal .modal-wrapper .modal-content,
.image-modal.modal .modal-wrapper .modal-content {
  padding: 2em;
}
.community-modal.modal .modal-wrapper .modal-content .community_input,
.avatar-modal.modal .modal-wrapper .modal-content .community_input,
.message-modal.modal .modal-wrapper .modal-content .community_input,
.image-modal.modal .modal-wrapper .modal-content .community_input {
  outline: none;
  border: 2px dashed var(--color-orange);
  border-radius: 25px;
  width: 95%;
  height: 200px;
  padding: 14px;
}
.community-modal.modal .modal-wrapper .modal-content label.community_file_icon,
.avatar-modal.modal .modal-wrapper .modal-content label.community_file_icon,
.message-modal.modal .modal-wrapper .modal-content label.community_file_icon,
.image-modal.modal .modal-wrapper .modal-content label.community_file_icon {
  background-color: var(--color-orange);
  padding: 10px;
  border-radius: 100px;
  color: #fff;
}
.community-modal.modal .modal-wrapper .modal-content input[type=file],
.avatar-modal.modal .modal-wrapper .modal-content input[type=file],
.message-modal.modal .modal-wrapper .modal-content input[type=file],
.image-modal.modal .modal-wrapper .modal-content input[type=file] {
  display: none;
}
.community-modal.modal .modal-wrapper .modal-content .profile_container,
.avatar-modal.modal .modal-wrapper .modal-content .profile_container,
.message-modal.modal .modal-wrapper .modal-content .profile_container,
.image-modal.modal .modal-wrapper .modal-content .profile_container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 25px;
  margin: 0 auto 1em;
}
.community-modal.modal .modal-wrapper .modal-content .profile_container .profile_content,
.avatar-modal.modal .modal-wrapper .modal-content .profile_container .profile_content,
.message-modal.modal .modal-wrapper .modal-content .profile_container .profile_content,
.image-modal.modal .modal-wrapper .modal-content .profile_container .profile_content {
  width: 33%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.community-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main,
.avatar-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main,
.message-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main,
.image-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main {
  position: relative;
}
.community-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div,
.avatar-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div,
.message-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div,
.image-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div {
  width: 80px;
  height: 80px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}
.community-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div:before,
.avatar-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div:before,
.message-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div:before,
.image-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div:before {
  content: "";
  background: #fff;
  border: 2px solid #ddd;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  padding: 2px;
  margin-right: 0;
  text-align: center;
  position: absolute;
  left: 0.6em;
  top: 2.1em;
  border-radius: 50%;
  color: #649740;
  font-size: 40px;
  line-height: 21px;
}
.community-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div img,
.avatar-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div img,
.message-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div img,
.image-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .profile_image_div img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.community-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .radio-custom,
.avatar-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .radio-custom,
.message-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .radio-custom,
.image-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .radio-custom {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}
.community-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .radio-custom:checked + .profile_image_div:before,
.avatar-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .radio-custom:checked + .profile_image_div:before,
.message-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .radio-custom:checked + .profile_image_div:before,
.image-modal.modal .modal-wrapper .modal-content .profile_container .profile_content .profile_main .radio-custom:checked + .profile_image_div:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}
.community-modal.modal .modal-wrapper .modal-content .modal-action,
.avatar-modal.modal .modal-wrapper .modal-content .modal-action,
.message-modal.modal .modal-wrapper .modal-content .modal-action,
.image-modal.modal .modal-wrapper .modal-content .modal-action {
  display: flex;
  flex-direction: row;
  margin-top: 2em;
}
.community-modal.modal .modal-wrapper .modal-content .modal-action .upload_community,
.avatar-modal.modal .modal-wrapper .modal-content .modal-action .upload_community,
.message-modal.modal .modal-wrapper .modal-content .modal-action .upload_community,
.image-modal.modal .modal-wrapper .modal-content .modal-action .upload_community {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: auto;
}
.community-modal.modal .modal-wrapper .modal-content .modal-action .community_post_button,
.avatar-modal.modal .modal-wrapper .modal-content .modal-action .community_post_button,
.message-modal.modal .modal-wrapper .modal-content .modal-action .community_post_button,
.image-modal.modal .modal-wrapper .modal-content .modal-action .community_post_button {
  background-color: var(--color-orange);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.community-modal.modal.is-visible,
.avatar-modal.modal.is-visible,
.message-modal.modal.is-visible,
.image-modal.modal.is-visible {
  visibility: visible;
}
.community-modal.modal.is-visible .modal-overlay,
.avatar-modal.modal.is-visible .modal-overlay,
.message-modal.modal.is-visible .modal-overlay,
.image-modal.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.community-modal.modal.is-visible .modal-transition,
.avatar-modal.modal.is-visible .modal-transition,
.message-modal.modal.is-visible .modal-transition,
.image-modal.modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}

.image-modal.modal .modal-wrapper {
  left: 35%;
  width: 65%;
}
.image-modal.modal .modal-wrapper .modal-body .modal-content .expanded-image {
  width: 100%;
}

.message-modal.modal .modal-wrapper {
  left: 35%;
  width: 65%;
}
.message-modal.modal .modal-wrapper .modal-body .modal-content h4 {
  text-align: center;
  color: #584e4e;
}

/**********Community Modal css end***************/
#mainBody div.container.quests {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0px auto;
  max-width: 1000px;
}
#mainBody div.container.quests > div {
  padding: 30px 0 0;
}
#mainBody div.container.quests > div a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
#mainBody div.container.quests > div a img {
  border-radius: 10px;
  display: inline;
  height: unset;
  margin: 0 auto;
  max-width: 70%;
  object-fit: contain;
  object-position: top;
}
#mainBody div.container.quests > div a h2 {
  text-align: center;
  color: var(--color-orange);
}
#mainBody div.container.quests > div a P {
  display: none;
}

/********** Quest page *********/
#mainBody div.quest-landing {
  column-gap: 2px;
  display: grid;
  grid-template-columns: 3fr 6fr 2fr;
  width: 100%;
}
#mainBody div.quest-landing .quest-video-container:last-child {
  margin-bottom: 20px;
}
#mainBody div.quest-landing nav.activities {
  background-color: white;
  border-right: 2px dashed var(--color-grey-pale);
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  width: 25vw;
  height: calc(100vh - 75px);
  position: fixed;
  padding: 0 0 3rem 0;
}
#mainBody div.quest-landing nav.activities > h2 {
  display: none;
}
#mainBody div.quest-landing nav.activities ul {
  padding-left: 0;
}
#mainBody div.quest-landing nav.activities ul li {
  border-bottom: 2px dashed var(--color-grey-pale);
  list-style: none;
  overflow: hidden;
}
#mainBody div.quest-landing nav.activities ul li.active {
  background-color: var(--color-pink-20);
}
#mainBody div.quest-landing nav.activities ul li a {
  display: flex;
  flex-direction: row;
  justify-content: left;
  text-decoration: none;
  background-color: white;
  margin: 0 0 0 20px;
  padding: 20px 0 20px 10px;
}
#mainBody div.quest-landing nav.activities ul li a img {
  max-width: 30%;
  padding-right: 20px;
}
#mainBody div.quest-landing nav.activities ul li a img.icon {
  height: 40px;
  margin: auto;
  object-fit: contain;
  width: 40px;
}
#mainBody div.quest-landing nav.activities ul li a h2 {
  color: var(--color-pink);
  font-size: 1.25rem;
  margin: auto 0;
}
#mainBody div.quest-landing div.videos {
  background-color: white;
  border-right: 2px dashed var(--color-grey-pale);
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  position: fixed;
  left: calc(25vw + 2px);
  width: calc(55vw - 2px);
  height: calc(100vh - 75px);
}
#mainBody div.quest-landing div.videos > h2 {
  display: none;
}
#mainBody div.quest-landing div.videos > div {
  border-bottom: 2px dashed var(--color-grey-pale);
  padding: 20px 0;
  position: relative;
}
#mainBody div.quest-landing div.videos > div h2 {
  color: var(--color-pink);
  font-size: 2rem;
  margin: 0 0 10px;
  text-align: center;
}
#mainBody div.quest-landing div.videos > div button.play_btn {
  width: 71px;
  height: 40px;
  position: absolute;
  border: none;
  background-color: #00adef;
  font-size: 1.2rem;
  border-radius: 5px;
  padding: 0.55rem;
  max-width: 67px;
  bottom: 42%;
  left: 45%;
  z-index: 999;
}
#mainBody div.quest-landing div.videos > div .overlay {
  position: absolute;
  top: 14%;
  left: 0;
  z-index: 200;
  min-height: 81%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.5;
}
#mainBody div.quest-landing div.videos > div iframe {
  width: 96%;
  margin: 2%;
  min-height: 380px;
  border: none;
}
#mainBody div.quest-landing div.vocabulary {
  width: 20vw;
  height: calc(100vh - 75px);
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  right: 0;
}
#mainBody div.quest-landing div.vocabulary > h2 {
  display: none;
}
#mainBody div.quest-landing div.vocabulary audio {
  height: 0;
  visibility: hidden;
  width: 0;
}
#mainBody div.quest-landing div.vocabulary > img {
  display: block;
  height: 50px;
  margin: 30px auto;
  object-fit: contain;
  object-position: center;
  width: 50px;
}
#mainBody div.quest-landing div.vocabulary ul {
  padding: 0;
  margin-bottom: 2rem;
}
#mainBody div.quest-landing div.vocabulary ul li {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  list-style: none;
  padding-bottom: 30px;
  position: relative;
}
#mainBody div.quest-landing div.vocabulary ul li:hover img.icon {
  opacity: 1;
}
#mainBody div.quest-landing div.vocabulary ul li img.thumbnail {
  background-color: white;
  border-radius: 20px;
  border: 1px dashed var(--color-orange);
  height: 100px;
  object-fit: contain;
  object-position: center;
  width: 100px;
}
#mainBody div.quest-landing div.vocabulary ul li img.icon {
  left: 0;
  margin: auto;
  max-height: 45px;
  max-width: 45px;
  opacity: 0.7;
  position: absolute;
  right: 0;
  top: 80px;
}
#mainBody div.quest-landing div.vocabulary ul li h3 {
  color: var(--color-turquoise);
  font-size: 1.125rem;
  margin: 1.5rem 0 0;
  text-transform: lowercase;
}
#mainBody div.quest-landing div.vocabulary ul li h4,
#mainBody div.quest-landing div.vocabulary ul li h5 {
  color: var(--color-grey-medium);
  display: block;
  font-size: 0.8rem;
  font-style: italic;
  font-weight: normal;
  margin: 5px 0;
  text-transform: lowercase;
}
#mainBody div.quest-landing div.vocabulary ul li h5 {
  font-style: normal;
  margin-top: 7px;
  font-size: 1rem;
}

.resource_form {
  color: var(--color-turquoise);
  font-weight: 600;
  width: 50%;
  margin: 0 auto;
  padding: 50px;
  position: relative;
}
.resource_form label {
  display: none;
}

input#resource_input {
  border: 1px dashed var(--color-turquoise);
  width: 92%;
  position: relative;
  text-indent: 26px;
  font-size: 14px;
  padding: 0.5rem 0.5rem;
}

span.resource_eye_icon {
  color: white;
  background: var(--color-turquoise);
  border-radius: 50%;
  padding: 15px;
  position: absolute;
  right: 80px;
  top: 42px;
  font-size: 1.5rem;
}

.resource_section {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-family: Arvo, serif;
  margin-bottom: 170px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.resource_section .resource_outer_content {
  margin: 18px;
  background: white;
}
.resource_section .resource_outer_content > div {
  height: 378px;
  overflow: auto;
  margin: 2rem;
  background: white;
}
.resource_section .resource_outer_content p {
  padding: 0.5rem 1rem;
}
.resource_section .resource_outer_content h2 {
  margin: 0;
  text-align: center;
  color: white;
  padding: 1rem 0;
  position: relative;
  background-color: var(--color-turquoise);
}
.resource_section .resource_outer_content h2:after {
  content: " ";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform-origin: bottom left;
  transform: skew(0deg, 359deg);
  background-color: var(--color-turquoise);
}
.resource_section .resource_outer_content ul {
  padding: 4%;
}
.resource_section .resource_outer_content ul li {
  border-bottom: 1px dashed var(--color-grey-pale);
  border-top: 1px dashed var(--color-grey-pale);
  padding: 16px;
  list-style: none;
  color: var(--color-turquoise);
  cursor: pointer;
}
.resource_section .resource_outer_content ul li.empty {
  color: var(--color-grey-light);
  font-style: italic;
}
.resource_section .resource_outer_content ul li a {
  color: var(--color-turquoise);
  text-decoration: none;
}
.resource_section .resource_outer_content ul li i {
  margin-left: 0.5rem;
}
.resource_section .resource_outer_content ul li span {
  font-size: 0.8em;
  display: flex;
  flex-direction: column;
  color: var(--color-lighter-grey);
}
.resource_section .resource_outer_content:nth-child(1n) h2:after {
  transform: skew(0deg, 359deg);
}
.resource_section .resource_outer_content:nth-child(2n) h2 {
  background-color: var(--color-orange);
}
.resource_section .resource_outer_content:nth-child(2n) h2:after {
  background-color: var(--color-orange);
  transform: skew(0deg, 359deg);
}
.resource_section .resource_outer_content:nth-child(3n) h2 {
  background-color: var(--color-pink);
}
.resource_section .resource_outer_content:nth-child(3n) h2:after {
  background-color: var(--color-pink);
  transform-origin: bottom right;
  transform: skew(0deg, 1deg);
}
.resource_section button.expand_button {
  border: none;
  color: white;
  padding: 15px 32px;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 35px auto;
  border-radius: 25px;
}

@media only screen and (max-width: 680px) {
  span.resource_eye_icon {
    right: 210px;
  }
}
@media only screen and (max-width: 768px) {
  span.resource_eye_icon {
    right: 208px;
  }
}
@media only screen and (max-width: 320px) {
  span.resource_eye_icon {
    right: 80px;
  }
}
@media only screen and (max-width: 480px) {
  span.resource_eye_icon {
    right: 106px;
  }
}
#vocabularyListBox {
  position: relative;
  top: 75px;
  left: 1rem;
  right: 1rem;
  overflow-x: hidden;
}
#vocabularyListBox audio {
  visibility: hidden;
  width: 0;
  height: 0;
}
#vocabularyListBox .vocabularyListQuestBox {
  border-bottom: 4px dashed var(--color-grey-pale);
  margin-bottom: 25px;
  padding-bottom: 50px;
  overflow-x: auto;
}
#vocabularyListBox .vocabularyListQuestBox h2 {
  font-weight: bold;
  font-size: 2rem;
  color: var(--color-turquoise);
}
#vocabularyListBox .vocabularyListQuestBox ul {
  margin: 0;
  padding: 0;
}
#vocabularyListBox .vocabularyListQuestBox ul li {
  display: inline-block;
  list-style: none;
  margin: 0 0.25rem;
  padding: 0;
  text-align: center;
  position: relative;
}
#vocabularyListBox .vocabularyListQuestBox ul li:hover .icon {
  opacity: 1;
}
#vocabularyListBox .vocabularyListQuestBox ul li img.thumbnail {
  width: 100px;
  height: 100px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  border: 1px dashed var(--color-orange);
  background: white;
  margin-top: 15px;
  cursor: pointer;
}
#vocabularyListBox .vocabularyListQuestBox ul li .icon {
  max-width: 40px;
  max-height: 40px;
  margin: auto;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: 115px;
  left: 0;
  right: 0;
  opacity: 0.7;
}
#vocabularyListBox .vocabularyListQuestBox ul li .vocabularyListWordItemBox {
  text-align: center;
}
#vocabularyListBox .vocabularyListQuestBox ul li .vocabularyListWordItemBox .playerDiv img {
  cursor: pointer;
}
#vocabularyListBox .vocabularyListQuestBox ul li h3,
#vocabularyListBox .vocabularyListQuestBox ul li h4,
#vocabularyListBox .vocabularyListQuestBox ul li h5 {
  cursor: pointer;
  text-transform: lowercase;
}
#vocabularyListBox .vocabularyListQuestBox ul li h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-turquoise);
  margin-bottom: 5px;
}
#vocabularyListBox .vocabularyListQuestBox ul li h4,
#vocabularyListBox .vocabularyListQuestBox ul li h5 {
  font-size: 0.8rem;
  color: var(--color-grey-medium);
  font-weight: normal;
  margin: 2px 0;
  font-style: italic;
}
#vocabularyListBox .vocabularyListQuestBox ul li h5 {
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.9rem;
}

@media only screen and (max-width: 767px) {
  #vocabularyListBox {
    left: 0;
    top: 0;
    right: 0;
  }
  #vocabularyListBox .vocabularyListQuestBox {
    text-align: center;
    margin: 1rem 0;
    padding: 1rem 0 2rem;
  }
  #vocabularyListBox .vocabularyListQuestBox h2 {
    margin: 1rem 0;
  }
  #vocabularyListBox .vocabularyListQuestBox ul li {
    width: 43%;
  }
}
#mainBody div.quest-landing div.activity {
  background-color: white;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: calc(25vw + 2px);
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(100vh - 75px);
  width: 55vw;
}
#mainBody div.quest-landing div.activity nav {
  margin: 0;
  padding: 0.5rem 1rem 1rem;
  color: var(--color-turquoise);
  border-bottom: 2px solid var(--color-turquoise);
}
#mainBody div.quest-landing div.activity nav i,
#mainBody div.quest-landing div.activity nav a,
#mainBody div.quest-landing div.activity nav span {
  padding: 0.65rem 0.25rem;
  white-space: nowrap;
}
#mainBody div.quest-landing div.activity nav a {
  color: var(--color-pink);
  text-decoration: none;
}
#mainBody div.quest-landing div.activity img {
  height: 500px;
  margin: 3rem auto;
  object-fit: contain;
  object-position: center;
  width: 500px;
}
#mainBody div.quest-landing div.activity h2 {
  border-bottom: 2px dashed var(--color-grey-pale);
  color: var(--color-turquoise);
  font-size: 1.5rem;
  padding: 0.5rem 2rem;
}
#mainBody div.quest-landing div.activity p {
  color: var(--color-grey-medium);
  font-size: 1.125rem;
  margin: 0;
  padding: 0.5rem 2rem;
}
#mainBody div.quest-landing div.activity ol {
  width: 90%;
  color: var(--color-grey-medium);
}
#mainBody div.quest-landing div.activity ol li {
  padding: 0.5rem 0;
  color: var(--color-grey-medium);
  font-size: 1.125rem;
  margin-left: 0.5rem;
}
#mainBody div.quest-landing div.activity ol > div {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
#mainBody div.quest-landing div.activity ol > div.activityComplete {
  margin: 1rem 0 0;
  padding: 1rem 0 3rem;
  border-top: 2px dashed var(--color-grey-pale);
  justify-content: flex-start;
}
#mainBody div.quest-landing div.activity ol > div button {
  background: white;
  border: none;
  color: var(--color-turquoise);
  cursor: pointer;
  font-weight: 700;
  margin: 15px;
  padding: 20px;
  font-size: 1.2em;
  text-transform: uppercase;
}
#mainBody div.quest-landing div.activity ol > div button.disabled {
  background-color: var(--color-grey-10);
  border-color: var(--color-grey-30);
  color: var(--color-grey-30);
  cursor: not-allowed;
}
#mainBody div.quest-landing div.activity ol > div button.completed i.fa-check-circle {
  color: var(--color-green);
}
#mainBody div.quest-landing div.activity ol > div button i {
  font-size: 1.5rem;
}
#mainBody div.quest-landing div.activity ul {
  width: 90%;
  color: var(--color-grey-medium);
}
#mainBody div.quest-landing div.activity ul li {
  padding: 0.5rem 0;
  color: var(--color-grey-medium);
  font-size: 1.125rem;
  margin-left: 0.5rem;
}
#mainBody div.quest-landing div.activity > div {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
#mainBody div.quest-landing div.activity > div.activityComplete {
  margin: 1rem 0 0;
  padding: 1rem 0 3rem;
  border-top: 2px dashed var(--color-grey-pale);
  justify-content: flex-start;
}
#mainBody div.quest-landing div.activity > div button {
  background: white;
  border: none;
  color: var(--color-turquoise);
  cursor: pointer;
  font-weight: 700;
  margin: 15px;
  padding: 20px;
  font-size: 1.2em;
  text-transform: uppercase;
}
#mainBody div.quest-landing div.activity > div button.disabled {
  background-color: var(--color-grey-10);
  border-color: var(--color-grey-30);
  color: var(--color-grey-30);
  cursor: not-allowed;
}
#mainBody div.quest-landing div.activity > div button.completed i.fa-check-circle {
  color: var(--color-green);
}
#mainBody div.quest-landing div.activity > div button i {
  font-size: 1.5rem;
}

/**********Modal css start***************/
.activity-modal {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 10000;
  /* 1 */
}
.activity-modal.is-visible {
  visibility: visible;
}
.activity-modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.activity-modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 10;
}

.modal-wrapper {
  background-color: white;
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.35);
  left: 45%;
  margin-left: -16em;
  position: absolute;
  top: 85px;
  width: 45%;
  z-index: 9999;
}

.modal-transition {
  opacity: 0;
  transform: translateY(-10%);
  transition: all 0.3s 0.12s;
}

.modal-header,
.modal-content {
  padding: 1em;
}

.modal-header {
  background-color: var(--color-orange);
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  height: 50px;
  position: relative;
}

.modal-close {
  background: none;
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 1.9rem;
  padding: 1em;
  position: relative;
  top: 10px;
}
.modal-close:hover {
  color: white;
}

.modal-heading {
  color: white;
  font-size: 1.9em;
  left: 176px;
  margin-left: 22px;
  position: absolute;
  top: 0;
}

.modal-content > *:first-child {
  margin-top: 0;
}
.modal-content > *:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  main #mainBody div.quest-landing nav.activities {
    position: relative;
    height: unset;
    width: 100%;
  }
  main #mainBody div.quest-landing .videos,
main #mainBody div.quest-landing .activity {
    position: relative;
    left: 0;
    height: unset;
    width: 100%;
  }
  main #mainBody div.quest-landing .videos img,
main #mainBody div.quest-landing .activity img {
    max-width: 100%;
  }
  main #mainBody div.quest-landing .vocabulary {
    position: relative;
    height: unset;
    width: 100%;
  }
  main #mainBody div.quest-landing .vocabulary audio {
    position: absolute;
    top: -200px;
    left: -200px;
  }
}
div.container .activities ul, #mainBody div.quest-landing div.vocabulary ul {
  padding-bottom: 6rem !important;
  overflow-x: hidden;
}

#mainBody div.quest-landing .videos .quest-video-container:last-child {
  margin-bottom: 7.19rem !important;
}

#mainBody .quest-landing, #mainBody div.quest-landing .videos, #mainBody div.quest-landing div.vocabulary {
  height: calc(100vh - 75px) !important;
  height: -webkit-calc(100vh - 75px) !important;
  height: -moz-calc(100vh - 75px) !important;
  overflow-x: hidden;
}

.adminreportWrapper {
  background-image: url("./../images/background.png");
  height: calc(100%-57px);
  padding-top: 20px;
  background-size: cover;
}
.adminreportWrapper .contentWrapper {
  border: 2px dashed var(--color-orange);
  border-radius: 50px;
  background: var(--color-white);
  padding: 0 50px 50px 50px;
  margin: 100px 0;
}
.adminreportWrapper .contentWrapper .headingWrapper {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bold);
  margin-top: -60px;
}
.adminreportWrapper .contentWrapper .headingWrapper h1 {
  padding: 15px 0 0 0;
  font-size: 35px;
  color: var(--color-white);
}
.adminreportWrapper .contentWrapper .dropdownWrapper {
  display: flex;
  justify-content: flex-end;
}
.adminreportWrapper .contentWrapper .dropdownWrapper select {
  padding: 0px 20px 0px 10px;
  width: 20%;
  height: 30px;
  border: 1px solid var(--color-orange);
  border-radius: 20px;
  color: var(--color-grey-90);
}
.adminreportWrapper .contentWrapper .downArrowButton {
  display: flex;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: -75px;
}
.adminreportWrapper .contentWrapper .downArrowButton button {
  border: 0px solid transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.adminreportWrapper .contentWrapper .downArrowButton button.active i {
  transform: rotate(180deg);
}
.adminreportWrapper .contentWrapper .downArrowButton button i {
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
}
.adminreportWrapper .contentWrapper .tableWrapper {
  border-radius: 20px;
  margin-top: 20px;
  position: relative;
  overflow-x: auto;
}
.adminreportWrapper .contentWrapper .tableWrapper table {
  width: 100%;
  font-size: 16px;
}
.adminreportWrapper .contentWrapper .tableWrapper table thead th {
  cursor: pointer;
  padding: 10px 10px;
  color: var(--color-white);
  font-family: var(--font-bold);
  font-weight: normal;
}
.adminreportWrapper .contentWrapper .tableWrapper table thead th:first-child {
  border-top-left-radius: 19px;
  min-width: 120px;
}
.adminreportWrapper .contentWrapper .tableWrapper table thead th:last-child {
  border-top-right-radius: 19px;
  max-width: 180px;
  width: 180px;
}
.adminreportWrapper .contentWrapper .tableWrapper table thead th.wide {
  min-width: 120px;
}
.adminreportWrapper .contentWrapper .tableWrapper table thead th.sortable:after {
  content: "▼";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
  color: var(--color-white-50);
}
.adminreportWrapper .contentWrapper .tableWrapper table thead th.sortable.selected:after {
  color: var(--color-white);
}
.adminreportWrapper .contentWrapper .tableWrapper table thead th.sortable.asc:after {
  content: "▲";
}
.adminreportWrapper .contentWrapper .tableWrapper table tbody tr:nth-child(2n) {
  background-color: var(--color-grey-05);
}
.adminreportWrapper .contentWrapper .tableWrapper table tbody tr.hidden {
  display: none;
}
.adminreportWrapper .contentWrapper .tableWrapper table tbody tr td {
  text-align: center;
  padding: 0.25rem 0.5rem;
}
.adminreportWrapper .contentWrapper .tableWrapper table tbody tr td:nth-child(1) {
  color: var(--color-turquoise);
  text-align: left;
}
.adminreportWrapper .contentWrapper .tableWrapper table tbody tr td:last-child {
  max-width: 180px;
}
.adminreportWrapper .contentWrapper .tableWrapper table tbody tr .ratingstar {
  display: flex;
  justify-content: center;
}
.adminreportWrapper .contentWrapper .tableWrapper table tbody tr .ratingstar .fa-star {
  width: 25px;
  height: 25px;
  margin: 0 2px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-grey-10);
  color: var(--color-grey-light);
}
.adminreportWrapper .contentWrapper .tableWrapper table tbody tr .ratingstar .checked {
  color: var(--color-orange);
}
.adminreportWrapper .firstcontentWrapper .headingWrapper {
  background-image: url("../images/orgtitle.png");
}
.adminreportWrapper .firstcontentWrapper .tableWrapper {
  border: 1px solid var(--color-orange);
}
.adminreportWrapper .firstcontentWrapper .tableWrapper th {
  background: var(--color-orange);
}
.adminreportWrapper .firstcontentWrapper .downArrowButton button {
  background-color: var(--color-orange);
}
.adminreportWrapper .secondcontentWrapper .headingWrapper {
  padding: 10px 0;
  background-image: url("../images/pinktitle.png");
}
.adminreportWrapper .secondcontentWrapper .tableWrapper {
  border: 1px solid var(--color-pink);
}
.adminreportWrapper .secondcontentWrapper .tableWrapper th {
  background: var(--color-pink);
}
.adminreportWrapper .secondcontentWrapper .downArrowButton button {
  background-color: var(--color-pink);
}
.adminreportWrapper .thirdcontentWrapper .headingWrapper {
  padding: 0 0 20px;
  background-image: url("../images/greentitle.png");
}
.adminreportWrapper .thirdcontentWrapper .tableWrapper {
  border: 1px solid var(--color-green);
}
.adminreportWrapper .thirdcontentWrapper .tableWrapper th {
  background: var(--color-green);
}
.adminreportWrapper .thirdcontentWrapper .downArrowButton button {
  background-color: var(--color-green);
}

@media only screen and (max-width: 767px) {
  .adminreportWrapper .contentWrapper {
    padding: 0 25px 15px 25px;
    margin-top: 100px;
  }
  .adminreportWrapper .contentWrapper .buttonWrapper {
    display: flex;
  }
  .adminreportWrapper .headingWrapper h1 {
    padding-top: 10px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 420px) {
  .adminreportWrapper .contentWrapper .headingWrapper h1 {
    padding-top: 10px;
    font-size: 22px;
  }
  .adminreportWrapper .contentWrapper .dropdownWrapper {
    display: flex;
    justify-content: center;
  }
  .adminreportWrapper .contentWrapper .dropdownWrapper select {
    width: 50%;
  }
  .adminreportWrapper .contentWrapper .downArrowButton {
    margin-top: 23px;
    margin-bottom: -37px;
  }
}
@media only screen and (min-width: 400px) and (max-width: 750px) {
  .adminreportWrapper .contentWrapper .dropdownWrapper select {
    width: 80%;
  }
}
#mainBody div.container.onboard {
  padding: 30px;
}
#mainBody div.container.onboard .slide {
  display: none;
}
#mainBody div.container.onboard .slide.active {
  display: block;
}
#mainBody div.container.onboard .slide div.transparency {
  position: absolute;
  width: 100%;
  height: calc(100vh - 75px);
  top: 0;
  left: 0;
  background-color: #3232329e;
  z-index: 1;
}
#mainBody div.container.onboard .slide figure {
  position: relative;
  box-sizing: border-box;
  background-color: white;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
  padding: 20px;
}
#mainBody div.container.onboard .slide figure img {
  width: 100%;
  height: 100%;
}
#mainBody div.container.onboard .slide figure figcaption {
  display: none;
}
#mainBody div.container.onboard .slide figure a.next {
  display: block;
  position: absolute;
  z-index: 20;
}
#mainBody div.container.onboard .slide[id="1"] figure a.next {
  width: 54%;
  height: 95%;
  top: 0;
  left: 22%;
  border-radius: 50%;
}
#mainBody div.container.onboard .slide[id="2"] figure a.next {
  width: 50px;
  height: 50px;
  top: 4%;
  left: 5%;
}
#mainBody div.container.onboard .slide[id="3"] figure a.next {
  width: 28%;
  height: 95%;
  top: 2%;
  left: 1%;
  border-radius: 0 529px 465px 0;
}
#mainBody div.container.onboard .slide[id="4"] figure a.next {
  width: 23%;
  height: 45%;
  top: 12.5%;
  left: 38%;
  border-radius: 50%;
}
#mainBody div.container.onboard .slide[id="5"] figure a.next {
  width: 11%;
  height: 21%;
  top: 37%;
  left: 45%;
  border-radius: 50%;
}
#mainBody div.container.onboard .slide[id="6"] figure a.next {
  width: 55%;
  height: 95%;
  top: 2%;
  left: 23%;
  border-radius: 50%;
}
#mainBody div.container.onboard .slide[id="7"] figure a.next {
  width: 55%;
  height: 95%;
  top: 2%;
  left: 25%;
  border-radius: 50%;
}
#mainBody div.container.onboard .slide[id="8"] figure a.next {
  width: 54%;
  height: 94%;
  top: 2%;
  left: 23%;
  border-radius: 50%;
}
#mainBody div.container.onboard .slide[id="9"] figure a.next {
  width: 54%;
  height: 94%;
  top: 2%;
  left: 23%;
  border-radius: 50%;
}
#mainBody div.container.onboard .slide[id="10"] figure a.next {
  width: 54%;
  height: 94%;
  top: 2%;
  left: 23%;
  border-radius: 50%;
}
#mainBody div.container.onboard .slide[id="11"] figure a.final {
  width: 54%;
  height: 94%;
  top: 2%;
  left: 23%;
  border-radius: 50%;
}

.message-modal .oops {
  text-align: center;
}
.message-modal .oops h3 {
  float: none;
}

@font-face {
  font-family: "Museo Slab 500";
  src: url("../fonts/MuseoSlab-500.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo Slab 300";
  src: url("../fonts/MuseoSlab-300.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo Slab 300";
  src: url("../fonts/MuseoSlab-300Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Museo Slab 100";
  src: url("../fonts/MuseoSlab-100.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Codec Pro";
  src: url("../fonts/CodecPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo Slab 100";
  src: url("../fonts/MuseoSlab-100Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova Rg";
  src: url("../fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo Slab 1000";
  src: url("../fonts/MuseoSlab-1000.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo Slab 900";
  src: url("../fonts/MuseoSlab-900Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Museo Slab 700";
  src: url("../fonts/MuseoSlab-700Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Museo Slab 1000";
  src: url("../fonts/MuseoSlab-1000Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Museo Slab 900";
  src: url("../fonts/MuseoSlab-900.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo Slab 500";
  src: url("../fonts/MuseoSlab-500Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Museo Slab 700";
  src: url("../fonts/MuseoSlab-700.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.yoga-main-container {
  padding: 0;
  position: relative;
}
.yoga-main-container .intro-sec {
  background-color: var(--color-turquoise);
  color: var(--color-white);
  display: flex;
}
.yoga-main-container .intro-sec .container {
  max-width: 1320px;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  min-height: 100vh;
}
.yoga-main-container .intro-sec .container .top-hero {
  display: inline-flex;
  flex-direction: row;
  position: relative;
  top: 6rem;
}
.yoga-main-container .intro-sec .container .top-hero .left-sec {
  width: 50%;
  margin-top: 1rem;
  margin-left: 4rem;
}
.yoga-main-container .intro-sec .container .top-hero .left-sec h2.sub-heading {
  font-size: 30.18px;
  margin: 0;
  font-family: "Museo Slab 300", serif;
}
.yoga-main-container .intro-sec .container .top-hero .left-sec h1.heading {
  font-size: 94.54px;
  margin: 0;
  font-family: "Museo Slab 500", serif;
}
.yoga-main-container .intro-sec .container .top-hero .left-sec p.description {
  font-size: 25.900033px;
  line-height: 1.2em;
  width: 70%;
  margin: 10px 0 4rem;
  font-family: "Codec Pro", serif;
}
.yoga-main-container .intro-sec .container .top-hero .left-sec a.demo-btn {
  font-family: "Proxima Nova Rg", serif;
  font-size: 31.02014174px;
  background: #f15b36;
  color: var(--color-white);
  border-color: #f15b36;
  border-radius: 30px;
  line-height: 1.1em;
  padding: 10px 30px;
  display: inline-flex;
  flex-direction: row;
  cursor: pointer;
}
.yoga-main-container .intro-sec .container .top-hero .left-sec a.demo-btn .play-icon {
  width: 35px;
  height: 35px;
  background-color: #fadc28;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-left: 20px;
  color: #f15b36;
}
.yoga-main-container .intro-sec .container .top-hero .right-sec {
  width: 40%;
}
.yoga-main-container .intro-sec .container .top-hero .right-sec .logo-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: right;
}
.yoga-main-container .intro-sec .container .top-hero .right-sec .logo-wrapper img {
  max-width: 150px;
  max-height: 150px;
}
.yoga-main-container .intro-sec .container .top-hero .right-sec .waving-girl-container {
  position: relative;
  right: 12rem;
  width: 100%;
  height: 100%;
}
.yoga-main-container .intro-sec .container .top-hero .right-sec .waving-girl-container img {
  max-width: 762px;
  height: auto;
}
.yoga-main-container .offer-sec {
  background-color: var(--color-green);
  color: var(--color-white);
  display: flex;
}
.yoga-main-container .offer-sec .container {
  max-width: 1320px;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  min-height: 100vh;
}
.yoga-main-container .offer-sec .container .text-section {
  display: inline-flex;
  flex-direction: row;
  position: relative;
  height: 100%;
}
.yoga-main-container .offer-sec .container .text-section .left-sec {
  background-image: url("../images/confetti.gif");
  background-repeat: no-repeat;
  background-size: cover;
  width: 45%;
  margin-left: 4rem;
}
.yoga-main-container .offer-sec .container .text-section .left-sec .conf-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.yoga-main-container .offer-sec .container .text-section .left-sec .conf-image-container img {
  position: absolute;
  bottom: 0;
}
.yoga-main-container .offer-sec .container .text-section .right-sec {
  width: 45%;
  margin-top: 6rem;
  padding-left: 4rem;
}
.yoga-main-container .offer-sec .container .text-section .right-sec .offer-button {
  margin-bottom: 20px;
}
.yoga-main-container .offer-sec .container .text-section .right-sec .offer-button span {
  background-color: #fadc28;
  color: var(--color-pink);
  padding: 10px 20px;
  font-size: 25.900033px;
  font-family: "Museo Slab 700", serif;
}
.yoga-main-container .offer-sec .container .text-section .right-sec .description-wrapper h2.heading {
  font-family: "Museo Slab 700", serif;
  font-size: 68px;
  margin-bottom: 0;
  line-height: 1.18em;
}
.yoga-main-container .offer-sec .container .text-section .right-sec .description-wrapper p.desc-text {
  font-family: "Proxima Nova Rg", serif;
  font-size: 25.899934px;
  margin-top: 5px;
  line-height: 1.2em;
}
.yoga-main-container .offer-sec .container .text-section .right-sec .price-list h2.heading {
  margin: 0;
  line-height: 1.18em;
  font-size: 47px;
  font-family: "Museo Slab 500", serif;
}
.yoga-main-container .offer-sec .container .text-section .right-sec .price-list p {
  line-height: 1.64em;
  margin: 0;
  text-align: justify;
  font-size: 25.899934px;
  font-family: "Museo Slab 500", serif;
}
.yoga-main-container .offer-sec .container .text-section .right-sec .price-list p.note-list {
  font-size: 20.620066px;
  line-height: 1.43em;
}
.yoga-main-container .offer-sec .container .text-section .right-sec a.signup-btn {
  margin-top: 20px;
  font-family: "Proxima Nova Rg", serif;
  font-size: 31.02014174px;
  background: #f15b36;
  color: var(--color-white);
  border-color: #f15b36;
  border-radius: 30px;
  line-height: 1.1em;
  padding: 10px 30px;
  display: inline-flex;
  flex-direction: row;
  cursor: pointer;
}
.yoga-main-container .offer-sec .container .text-section .right-sec a.signup-btn .play-icon {
  width: 35px;
  height: 35px;
  background-color: #fadc28;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-left: 20px;
  color: #f15b36;
}
.yoga-main-container .footer-sec {
  background-color: var(--color-pink);
  color: var(--color-white);
  display: flex;
}
.yoga-main-container .footer-sec .container {
  max-width: 1320px;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  min-height: 100vh;
  width: 100%;
}
.yoga-main-container .footer-sec .container .text-section {
  margin-top: 4rem;
  margin-left: 12rem;
  position: relative;
}
.yoga-main-container .footer-sec .container .text-section .row {
  display: flex;
  flex-wrap: wrap;
}
.yoga-main-container .footer-sec .container .text-section .row .w-20 {
  flex: 0 0 auto;
  width: 30%;
  color: #9bd8e0;
  font-size: 23.26px;
  line-height: 1.43em;
  font-family: "Codec Pro", serif;
}
.yoga-main-container .footer-sec .container .text-section .row .w-70 {
  flex: 0 0 auto;
  width: 70%;
  color: #f0f0dc;
  font-size: 27.22px;
  line-height: 1.18em;
  font-family: "Codec Pro", serif;
}
.yoga-main-container .footer-sec .container .text-section .row .w-70.heading {
  font-size: 62.86px;
  line-height: 1.18em;
  font-family: "Museo Slab 700", serif;
}
.yoga-main-container .hide {
  visibility: hidden;
  opacity: 0;
}
.yoga-main-container .show {
  visibility: visible;
  opacity: 1;
}
.yoga-main-container .overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-black);
  transition: opacity 500ms;
  z-index: 1000000000;
}
.yoga-main-container .popup {
  margin: 70px auto;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
  color: var(--color-white);
  background-color: var(--color-green);
  border: 3px solid var(--color-white);
}
.yoga-main-container .popup .content {
  padding: 15px;
  overflow: auto;
  color: white;
  font-family: "Proxima Nova", sans-serif;
  font-size: 26px;
  font-weight: 400;
  border-bottom: 3px solid var(--color-white);
}
.yoga-main-container .popup .content .popup-action {
  width: 100%;
  text-align: right;
}
.yoga-main-container .popup .content .popup-action .close {
  transition: all 200ms;
  font-size: 30px;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-white);
  cursor: pointer;
}
.yoga-main-container .popup .content h4 {
  margin: 0 0 11px;
  font-weight: 700;
  font-size: 30px;
}
.yoga-main-container .popup .content p {
  margin: 0;
  overflow-wrap: break-word;
  font-size: 20px;
  font-family: "Proxima Nova", sans-serif;
}
.yoga-main-container .popup .modal-confirm {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 700;
  font-size: 30px;
  cursor: pointer;
  padding: 7px;
  text-align: center;
}
.yoga-main-container .video-popup {
  margin: 70px auto;
  padding: 20px;
  background: var(--color-white);
  border-radius: 5px;
  width: 70%;
  position: relative;
  transition: all 5s ease-in-out;
  color: var(--color-black);
  z-index: 1000000000;
  text-align: left;
}
.yoga-main-container .video-popup .popup-action {
  width: 100%;
  text-align: right;
}
.yoga-main-container .video-popup .popup-action a.close {
  transition: all 200ms;
  font-size: 30px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.yoga-main-container .video-popup .vimeo-full-width {
  padding: 56.25% 0 0 0;
  position: relative;
}
.yoga-main-container .video-popup .vimeo-full-width iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.yoga-main-container .mb-1 {
  margin-bottom: 1rem !important;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .yoga-main-container .intro-sec .container {
    min-height: 450px;
    max-width: 720px;
  }
  .yoga-main-container .intro-sec .container .top-hero {
    top: 3rem;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec {
    width: 55%;
    margin-top: 1rem;
    margin-left: 1rem;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec h2.sub-heading {
    font-size: 20.18px;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec h1.heading {
    font-size: 44.54px;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec p.description {
    font-size: 15.900033px;
    line-height: 1.2em;
    width: 60%;
    margin: 5px 0 1rem;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec a.demo-btn {
    font-size: 18.02014174px;
    padding: 10px 20px;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec a.demo-btn .play-icon {
    width: 20px;
    height: 20px;
    font-size: 0.5rem;
  }
  .yoga-main-container .intro-sec .container .top-hero .right-sec {
    width: 35%;
  }
  .yoga-main-container .intro-sec .container .top-hero .right-sec .logo-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: right;
  }
  .yoga-main-container .intro-sec .container .top-hero .right-sec .logo-wrapper img {
    max-width: 80px;
    max-height: 80px;
  }
  .yoga-main-container .intro-sec .container .top-hero .right-sec .waving-girl-container {
    position: relative;
    right: 10rem;
    width: 100%;
    height: 100%;
  }
  .yoga-main-container .intro-sec .container .top-hero .right-sec .waving-girl-container img {
    max-width: 462px;
    height: auto;
  }
  .yoga-main-container .offer-sec .container {
    max-width: 720px;
    min-height: 130vh;
  }
  .yoga-main-container .offer-sec .container .text-section {
    display: block;
  }
  .yoga-main-container .offer-sec .container .text-section .left-sec {
    width: 100%;
    height: 65%;
    margin-left: 0;
  }
  .yoga-main-container .offer-sec .container .text-section .left-sec .conf-image-container img {
    width: 300px;
    bottom: 0;
    left: 30%;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec {
    width: 100%;
    margin-top: 3rem;
    padding-left: 0rem;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .offer-button span {
    font-size: 20px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .description-wrapper h2.heading {
    font-size: 48px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .description-wrapper p.desc-text {
    font-size: 18.899934px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .price-list h2.heading {
    font-size: 30px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .price-list p {
    font-size: 20px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .price-list p.note-list {
    font-size: 18px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec a.signup-btn {
    font-size: 18.02014174px;
    padding: 10px 20px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec a.signup-btn .play-icon {
    width: 20px;
    height: 20px;
    font-size: 0.5rem;
  }
  .yoga-main-container .footer-sec .container {
    max-width: 720px;
  }
  .yoga-main-container .footer-sec .container .text-section {
    margin-top: 4rem;
    margin-left: 2rem;
  }
  .yoga-main-container .footer-sec .container .text-section .row .w-20 {
    flex: 0 0 auto;
    width: 100%;
  }
  .yoga-main-container .footer-sec .container .text-section .row .w-20.image-wrapper {
    flex: 0 0 auto;
    width: 40%;
  }
  .yoga-main-container .footer-sec .container .text-section .row .w-70 {
    flex: 0 0 auto;
    width: 100%;
  }
  .yoga-main-container .footer-sec .container .text-section .row .w-70.heading {
    flex: 0 0 auto;
    width: 60%;
    font-size: 47.86px;
    line-height: 1.18em;
  }
}
@media only screen and (max-width: 767px) {
  .yoga-main-container .intro-sec .container {
    min-height: 220px;
  }
  .yoga-main-container .intro-sec .container .top-hero {
    top: 1rem;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec {
    width: 45%;
    margin-top: 1rem;
    margin-left: 0rem;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec h2.sub-heading {
    font-size: 15.18px;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec h1.heading {
    font-size: 24.54px;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec p.description {
    font-size: 8px;
    line-height: 1em;
    width: 90%;
    margin: 5px 0 0.5rem;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec a.demo-btn {
    font-size: 14px;
    padding: 5px 10px;
  }
  .yoga-main-container .intro-sec .container .top-hero .left-sec a.demo-btn .play-icon {
    width: 15px;
    height: 16px;
    font-size: 0.5rem;
    margin-left: 10px;
  }
  .yoga-main-container .intro-sec .container .top-hero .right-sec {
    width: 55%;
  }
  .yoga-main-container .intro-sec .container .top-hero .right-sec .logo-wrapper img {
    max-width: 50px;
    max-height: 50px;
  }
  .yoga-main-container .intro-sec .container .top-hero .right-sec .waving-girl-container {
    position: relative;
    right: 0.5rem;
    width: 100%;
    height: 100%;
  }
  .yoga-main-container .intro-sec .container .top-hero .right-sec .waving-girl-container img {
    max-width: 200px;
    height: auto;
  }
  .yoga-main-container .offer-sec .container {
    min-height: 140vh;
  }
  .yoga-main-container .offer-sec .container .text-section {
    display: block;
  }
  .yoga-main-container .offer-sec .container .text-section .left-sec {
    width: 100%;
    margin-left: 0;
    height: 60%;
  }
  .yoga-main-container .offer-sec .container .text-section .left-sec .conf-image-container img {
    width: 200px;
    left: 30%;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec {
    width: 100%;
    margin-top: 3rem;
    padding-left: 0rem;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .offer-button span {
    font-size: 18px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .description-wrapper h2.heading {
    font-size: 28px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .description-wrapper p.desc-text {
    font-size: 15px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .price-list h2.heading {
    font-size: 20px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .price-list p {
    font-size: 15px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec .price-list p.note-list {
    font-size: 12px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec a.signup-btn {
    font-size: 14px;
    padding: 5px 10px;
  }
  .yoga-main-container .offer-sec .container .text-section .right-sec a.signup-btn .play-icon {
    width: 15px;
    height: 16px;
    font-size: 0.5rem;
    margin-left: 10px;
  }
  .yoga-main-container .footer-sec .container {
    max-width: 100%;
  }
  .yoga-main-container .footer-sec .container .text-section {
    margin-top: 4rem;
    margin-left: 2rem;
  }
  .yoga-main-container .footer-sec .container .text-section .row .w-20 {
    flex: 0 0 auto;
    width: 100%;
    font-size: 18.26px;
    line-height: 1.43em;
  }
  .yoga-main-container .footer-sec .container .text-section .row .w-20.image-wrapper {
    flex: 0 0 auto;
    width: 40%;
  }
  .yoga-main-container .footer-sec .container .text-section .row .w-20.image-wrapper img {
    width: 100px;
  }
  .yoga-main-container .footer-sec .container .text-section .row .w-70 {
    flex: 0 0 auto;
    width: 100%;
    font-size: 20.22px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .yoga-main-container .footer-sec .container .text-section .row .w-70.heading {
    flex: 0 0 auto;
    width: 50%;
    font-size: 30px;
    line-height: 1.18em;
  }
}
.subscription-modal .modal-wrapper {
  position: fixed !important;
}
.subscription-modal .modal-header {
  justify-content: end;
}
.subscription-modal .modal-body {
  max-height: 70vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}
.subscription-modal.is-visible {
  visibility: visible;
}
.subscription-modal.is-visible .modal-overlay, .subscription-modal.is-visible .modal-wrapper {
  visibility: visible;
  opacity: 1;
}

.underlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: -20000px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-grey-80);
  z-index: 9991000;
  transition: 0.3s;
  transition-timing-function: ease-out;
}
.underlay.open {
  display: block;
  top: 0;
  left: 0;
  transition: 0.3s;
  transition-timing-function: ease-in;
  z-index: 100000000000;
}
.underlay div#dialog {
  background-color: var(--color-green);
  color: white;
  display: block;
  width: 50%;
  min-height: 200px;
  position: absolute;
  top: 20%;
  right: 0;
  left: 0;
  z-index: 1006;
  margin: auto;
}
.underlay div#dialog.warning {
  background-color: var(--color-pink);
}
.underlay div#dialog.warning form fieldset i.fa-exclamation-triangle {
  display: block;
}
.underlay div#dialog.warning form fieldset button.ok {
  background-color: var(--color-grey-lighter);
  color: var(--color-grey-80);
}
.underlay div#dialog.warning form fieldset button.ok:hover {
  background-color: var(--color-green);
  color: white;
}
.underlay div#dialog form {
  margin: 0;
  padding: 0;
}
.underlay div#dialog form h3 {
  font-size: 1.5rem;
  margin: 2rem;
}
.underlay div#dialog form p {
  margin: 0 2rem 2rem;
}
.underlay div#dialog form fieldset {
  margin: 0.25rem 0 0;
  padding: 1rem 1rem;
  border-top: 2px solid var(--color-white-20);
  text-align: right;
  border: 0;
}
.underlay div#dialog form fieldset i {
  display: none;
  position: absolute;
  color: white;
  font-size: 2rem;
  bottom: 1.25rem;
  left: 2rem;
}
.underlay div#dialog form fieldset button {
  border: 0;
  font-size: 1rem;
  margin: 0.5rem 1rem;
  min-height: 30px;
  min-width: 80px;
  margin: 0;
  cursor: pointer;
}
.underlay div#dialog form fieldset button:focus {
  outline: 3px solid white;
}
.underlay div#dialog form fieldset button.ok {
  background-color: var(--color-grey-lighter);
  color: #000000 !important;
}
.underlay div#dialog form fieldset button:hover {
  background-color: var(--color-pink);
}
.underlay div#dialog form fieldset button.cancel.hidden {
  display: none;
}
.underlay div#dialog form fieldset button.cancel:hover {
  background-color: var(--color-grey-medium);
}
.underlay div#dialog form button.close {
  background-color: transparent;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  font-size: 2rem;
  border: 0;
}

@media only screen and (max-width: 768px) {
  .underlay div#dialog {
    width: 85% !important;
    min-height: auto !important;
  }
  .underlay div#dialog form p {
    margin: 0 1rem 1rem;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /**
    Header
   */
  header h1 {
    width: auto;
  }
  header > button {
    left: 5px;
  }

  .dropdown button {
    right: 25px;
  }
  .dropdown span.badge {
    right: 14px;
  }

  .resource_section {
    grid-template-columns: 1fr 1fr;
  }

  .profile-modal-wrapper {
    left: 50%;
    width: 68%;
    height: 336px;
  }

  .post {
    width: 37%;
  }

  #profile_file_icon i.fas.fa-upload {
    left: 74px;
    padding: 14px;
    color: white;
  }

  /**********activity page*******/
  .modal-wrapper {
    width: 75%;
  }

  #mainBody div.quest-landing div.activity > div.activityComplete {
    padding-bottom: 9rem;
  }

  /**********activity page end*******/
  /**********resource modal  start*******/
  .modal {
    position: fixed;
  }
  .modal .wrapper {
    max-width: 90%;
  }

  /**********resource modal end*******/
  /**********Quest tablet start*******/
  .quests_image {
    width: 160px;
    height: 160px;
  }

  /**********Quest tablet end*******/
  /********community page *******/
  /**********community  page start*******/
  .checkins {
    width: 90%;
    /* Posting Styles */
  }
  .checkins form input[type=text] {
    width: 500px;
  }
  .checkins .postings .post {
    width: 42%;
    margin: 10px;
    padding: 15px;
  }
  .checkins .postings .post .title-stats {
    margin-top: 1rem;
  }

  #profile_file_icon i.fas.fa-upload {
    left: 74px;
    padding: 14px;
    color: white;
  }

  /********community page *******/
  input#profile_post_input {
    width: 65%;
  }

  button#profile_post {
    right: 60px;
  }

  .community-modal.modal .modal-wrapper {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  /**
    Header
   */
  header h1 {
    width: 220px;
    font-size: 1rem !important;
    margin: 18px auto 0px auto !important;
  }
  header .sidenavBtn button {
    left: 15px;
    top: 21px;
  }
  header .sidenavBtn button img {
    max-width: 30px;
  }
  header .trapezoid {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  body {
    overflow: auto !important;
  }

  .body-overflow {
    overflow-y: hidden !important;
    overflow-x: hidden !important;
  }

  #mainBody div.quest-landing .videos .quest-video-container:last-child {
    margin-bottom: 2rem !important;
  }

  .sidenav ul {
    margin: 1rem 0 0 0;
  }

  .dropdown button {
    right: 15px;
    top: 15px;
  }
  .dropdown button img {
    max-width: 40px;
  }
  .dropdown span.badge {
    right: 14px;
  }

  .profile-modal-wrapper {
    left: 77%;
    width: 88%;
    height: 336px;
  }

  .hamburger {
    left: 12px;
  }

  .profile-button {
    right: 12px;
    top: 0;
  }

  .dropdown .profile-button {
    right: 8px;
  }

  .bannerTitle {
    width: 300px;
    font-size: 1.25rem;
  }

  i.fas.fa-chevron-right {
    padding-left: 66px;
  }

  .sidenav a {
    padding: 15px 8px 15px 32px;
    font-size: 1.2rem;
    width: 75%;
  }

  .sidenav a:nth-child(8) {
    width: 75%;
    background-color: var(--color-orange);
    color: white;
    position: relative;
    margin-bottom: 20px;
  }

  .sidenav a:nth-child(9) {
    background-color: var(--color-turquoise);
    color: white;
    width: 75%;
    position: relative;
  }

  .passportBoxInfo {
    width: 350px;
  }

  #passportBoxInfoThumb {
    margin-bottom: 5px;
  }

  .review_form {
    margin-top: 84px;
  }

  /**** Activities Page ****/
  #mainBody div.quest-landing div.activity > div {
    flex-direction: column;
  }
  #mainBody div.quest-landing div.activity img {
    height: auto;
  }
  #mainBody div.quest-landing div.activity nav {
    margin: 0;
    padding: 0.5rem 1rem 1rem;
    color: var(--color-turquoise);
    border-bottom: 2px solid var(--color-turquoise);
  }
  #mainBody div.quest-landing div.activity nav i {
    padding: 0.65rem 0rem;
  }
  #mainBody div.quest-landing div.activity nav i.fa-home {
    display: none;
  }
  #mainBody div.quest-landing div.activity nav a {
    color: var(--color-pink);
    text-decoration: none;
  }

  .star {
    color: var(--color-orange);
    font-size: 40px;
    padding: 6px;
  }

  .modal-wrapper {
    top: 155px;
    left: 78%;
    width: 86%;
  }

  .modal-heading {
    font-size: 1.6em;
    top: 0;
    left: 35px;
  }

  .modal-close {
    position: relative;
    top: 4px;
    padding: 0em;
    color: white;
    background: none;
    border: 0;
    font-size: 1.9rem;
    cursor: pointer;
  }

  /**** End Activities Page ****/
  /****** Quest List Page *****/
  #mainBody div.container.quests {
    grid-template-columns: 1fr;
  }
  #mainBody div.container.quests > div {
    padding: 10px;
    border-bottom: 2px dashed var(--color-grey-pale);
  }
  #mainBody div.container.quests > div a {
    flex-direction: row;
  }
  #mainBody div.container.quests > div a img {
    max-width: 30%;
    margin: unset;
  }
  #mainBody div.container.quests > div a div {
    padding-left: 20px;
  }
  #mainBody div.container.quests > div a div h2 {
    font-size: 2rem;
    margin: 0;
    text-align: left;
  }
  #mainBody div.container.quests > div a div p {
    margin: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    color: var(--color-grey-medium);
  }

  /**** Quest Detail Page ****/
  #mainBody div.quest-landing {
    grid-template-columns: 1fr;
  }
  #mainBody div.quest-landing > nav.activities,
#mainBody div.quest-landing > div.videos,
#mainBody div.quest-landing div.vocabulary {
    height: unset !important;
    overflow: unset !important;
    background-color: unset;
  }
  #mainBody div.quest-landing > nav.activities > h2,
#mainBody div.quest-landing > div.videos > h2,
#mainBody div.quest-landing div.vocabulary > h2 {
    display: block;
    text-align: center;
    color: var(--color-grey-medium);
    border-top: 2px dashed var(--color-grey-pale);
    border-bottom: 2px dashed var(--color-grey-pale);
    padding: 5px 0;
    font-weight: bold;
    font-size: 2rem;
  }
  #mainBody div.quest-landing nav.activities {
    order: 3;
    background-color: white;
  }
  #mainBody div.quest-landing nav.activities h2 {
    margin-top: 0;
    margin: 0.5rem 0;
  }
  #mainBody div.quest-landing div.activity {
    overflow: visible !important;
  }
  #mainBody div.quest-landing div.videos {
    order: 1;
  }
  #mainBody div.quest-landing div.videos > div {
    padding: 0 20px;
    border-bottom: unset;
  }
  #mainBody div.quest-landing div.videos > div h2 {
    font-size: 2rem;
    margin: 0.5rem 0;
  }
  #mainBody div.quest-landing div.videos > div iframe {
    height: auto;
    width: 96%;
    margin: 2% 2% 1.5rem 2%;
    min-height: 180px;
    max-height: 300px;
  }
  #mainBody div.quest-landing div.videos > div button.play_btn {
    left: 38%;
  }
  #mainBody div.quest-landing div.vocabulary {
    order: 2;
    width: 100%;
    overflow: scroll;
  }
  #mainBody div.quest-landing div.vocabulary > img {
    display: none;
  }
  #mainBody div.quest-landing div.vocabulary ul {
    overflow: scroll;
    display: flex;
    flex-flow: wrap;
  }
  #mainBody div.quest-landing div.vocabulary ul li {
    margin: 0 5%;
    width: 40%;
  }

  /**** End Quest Detail Page ****/
  /**********Resources page*******/
  .resource_form {
    padding: 18px;
    width: 76%;
  }

  .resource_section {
    grid-template-columns: 1fr;
  }
  .resource_section p.resource_desc {
    padding-left: 0;
  }

  span.resource_eye_icon {
    top: 10px;
    right: 10px;
  }

  .resources-modal-wrapper {
    left: 83%;
    width: 74%;
  }

  .resources-modal-heading {
    left: 70px;
  }

  .open_button {
    margin: 5px 5px;
  }

  .email_button {
    padding: 12px 26px;
  }

  .modal {
    position: fixed;
  }
  .modal .wrapper {
    max-width: 90%;
  }

  /**********Resources page end*******/
  /**********community  page start*******/
  .checkins {
    width: 90%;
    /* Posting Styles */
  }
  .checkins form input[type=text] {
    width: 150px;
  }
  .checkins form button {
    padding: 12px 18px;
  }
  .checkins .postings .post {
    width: 100%;
    margin: 15px;
    padding: 15px;
    max-height: unset;
    height: auto;
  }
  .checkins .postings .post .title-stats {
    margin-top: 1rem;
  }

  #profile_file_icon i.fas.fa-upload {
    left: 0;
    padding: 14px;
    color: white;
  }

  button#profile_post {
    padding: 12px 12px 12px 12px;
    right: 0;
  }

  input#profile_post_input {
    width: 248px;
    padding-right: 64px;
    padding-left: 20px;
    float: left;
  }

  form#passport_form {
    width: 30%;
    margin-left: 30px;
  }

  .post {
    width: 214px;
  }

  .community-modal.modal .modal-wrapper {
    width: 85%;
    left: 68%;
  }
  .community-modal.modal .modal-wrapper .modal-content {
    padding: 1em;
  }
  .community-modal.modal .modal-wrapper .modal-content .community_input {
    width: 90%;
  }

  /**********community  page end*******/
  /**********welcome modal*******/
  #mainBody .container .loginBox .messageBox {
    width: 365px;
    right: 2%;
  }
  #mainBody .container .loginBox .messageBox p {
    font-size: 1rem;
    width: 320px;
  }

  .welcome-modal.modal .modal-wrapper .modal-body {
    margin: 1.75em auto;
  }
  .welcome-modal.modal .modal-wrapper .modal-body .modal-content {
    padding: 3em;
  }
  .welcome-modal.modal .modal-wrapper .modal-body .modal-content .image-wrapper img {
    width: 120px;
    height: auto;
  }
  .welcome-modal.modal .modal-wrapper .modal-body .modal-content .text-wrapper h1 {
    font-size: 1em;
  }
  .welcome-modal.modal .modal-wrapper .modal-body .modal-content .text-wrapper .first-description {
    font-size: 0.8em;
  }
  .welcome-modal.modal .modal-wrapper .modal-body .modal-content .text-wrapper p {
    font-size: 0.8em;
  }

  /**********welcome modal end*******/
}
.community-modal.modal .modal-wrapper, .message-modal.modal .modal-wrapper, .image-modal.modal .modal-wrapper {
  top: auto !important;
  width: 45% !important;
  left: auto !important;
  margin-left: 0 !important;
}
.community-modal .community_heading, .message-modal .community_heading, .image-modal .community_heading {
  font-size: clamp(1.25rem, 3vw, 2rem) !important;
}

.image-modal .modal-wrapper {
  position: fixed !important;
}
.image-modal .modal-header {
  justify-content: end;
}
.image-modal .modal-body {
  max-height: 70vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

@media only screen and (max-width: 767px) {
  .community-modal.modal .modal-wrapper, .message-modal.modal .modal-wrapper, .image-modal.modal .modal-wrapper {
    width: 85% !important;
    left: auto !important;
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .community-modal.modal .modal-wrapper, .message-modal.modal .modal-wrapper, .image-modal.modal .modal-wrapper {
    width: 75% !important;
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .community-modal.modal .modal-wrapper, .message-modal.modal .modal-wrapper, .image-modal.modal .modal-wrapper {
    width: 60% !important;
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 1920px) {
  header {
    height: 120px;
  }
  header .trapezoid {
    max-width: unset !important;
  }
  header .trapezoid h1 {
    font-size: clamp(2rem, 5vw, 4rem) !important;
  }
  header .sidenavBtn button {
    top: 20px;
  }
  header .sidenavBtn button img.hamburger {
    width: 80px;
    max-height: 100%;
  }
  header .dropdown button .profile-button {
    max-height: 100px;
  }
  header .dropdown .dropdown-content {
    top: 110px;
    width: 500px;
  }
  header .dropdown .dropdown-content a {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
  }
  header.header_bg {
    background-size: auto 80px;
  }

  .sidenav {
    top: 120px;
  }
  .sidenav ul.courses a.course {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
    width: 360px;
  }
  .sidenav ul.courses li.nav-item ul li a {
    font-size: clamp(1rem, 4vw, 2rem) !important;
  }
  .sidenav .custom-btn {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
    width: 360px !important;
  }
  .sidenav.open {
    width: 450px;
  }
  .sidenav.open #side-main {
    padding-top: 1rem;
  }

  #mainBody {
    top: 120px;
  }
  #mainBody .home ul li a {
    font-size: clamp(2rem, 4.8vw, 4.5rem) !important;
    margin: 1rem auto;
  }
  #mainBody div.container.quests {
    max-width: 2500px;
  }
  #mainBody div.container.quests > div h2 {
    font-size: 3rem;
    font-size: clamp(1.5rem, 3.25vw, 3rem) !important;
  }
  #mainBody div.container.quests > div a img {
    width: 70%;
  }
  #mainBody div.quest-landing .breadcrumb a, #mainBody div.quest-landing .breadcrumb span, #mainBody div.quest-landing .breadcrumb i {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
  }
  #mainBody div.quest-landing div.videos > div h2 {
    font-size: clamp(1.25rem, 4vw, 3.5rem) !important;
  }
  #mainBody div.quest-landing div.videos > div button.play_btn {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
    max-width: 95px;
    width: 95px;
    height: 80px;
  }
  #mainBody div.quest-landing nav.activities ul li a h2 {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
  }
  #mainBody div.quest-landing div.activity img {
    width: 1000px;
    height: 1000px;
  }
  #mainBody div.quest-landing div.activity h2 {
    font-size: clamp(1.25rem, 4vw, 3.5rem) !important;
  }
  #mainBody div.quest-landing div.activity p {
    font-size: clamp(24px, 4vw, 2.5rem) !important;
  }
  #mainBody div.quest-landing div.activity > div button {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
  }
  #mainBody div.quest-landing div.activity > div button i {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
  }
  #mainBody div.quest-landing .vocabulary img.thumbnail {
    width: clamp(100px, 10vw, 250px) !important;
    height: clamp(100px, 10vw, 250px) !important;
  }
  #mainBody div.quest-landing .vocabulary img.icon {
    max-height: 90px !important;
    max-width: 90px !important;
  }
  #mainBody div.quest-landing .vocabulary .original {
    font-size: clamp(24px, 4vw, 2.5rem) !important;
  }
  #mainBody div.quest-landing .vocabulary .pronunciation {
    font-size: clamp(16px, 4vw, 1.5rem) !important;
  }
  #mainBody div.quest-landing .vocabulary .translation {
    font-size: clamp(20px, 4vw, 1.95rem) !important;
  }
  #mainBody #vocabularyListBox .vocabularyListQuestBox h2 {
    font-size: clamp(1.5rem, 3.25vw, 3rem) !important;
  }
  #mainBody #vocabularyListBox .vocabularyListQuestBox ul li img.thumbnail {
    width: 300px;
    height: 300px;
  }
  #mainBody #vocabularyListBox .vocabularyListQuestBox ul li .icon {
    max-width: 90px;
    max-height: 90px;
    top: 130px;
  }
  #mainBody #vocabularyListBox .vocabularyListQuestBox ul li h3 {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
  }
  #mainBody #vocabularyListBox .vocabularyListQuestBox ul li h4 {
    font-size: clamp(1.125rem, 4vw, 2rem) !important;
  }
  #mainBody #vocabularyListBox .vocabularyListQuestBox ul li h5 {
    font-size: clamp(1rem, 4vw, 1.75rem) !important;
  }
  #mainBody .resource_section .resource_outer_content h2 {
    font-size: clamp(1.5rem, 3.25vw, 3rem) !important;
  }
  #mainBody .resource_section .resource_outer_content p {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
  }
  #mainBody .resource_section .resource_outer_content ul li {
    font-size: clamp(1rem, 4vw, 2rem) !important;
  }
  #mainBody .resource_section .resource_outer_content > div {
    height: 550px;
  }
  #mainBody input#resource_input {
    font-size: clamp(1rem, 4vw, 2rem);
  }
  #mainBody span.resource_eye_icon {
    right: 100px;
    top: 35px;
    font-size: 3rem;
  }
  #mainBody .loginBox {
    width: 1000px !important;
  }
  #mainBody .loginBox img {
    width: 400px !important;
  }
  #mainBody .loginBox .messageBox {
    width: 100% !important;
    right: 0 !important;
  }
  #mainBody .loginBox .messageBox p {
    font-size: clamp(1rem, 4vw, 2rem) !important;
    width: 600px !important;
  }
  #mainBody .loginBox form {
    width: 760px;
    margin: 0 auto;
  }
  #mainBody .loginBox form .password-container {
    width: 800px !important;
  }
  #mainBody .loginBox form input, #mainBody .loginBox form label {
    width: 760px !important;
    font-size: clamp(1rem, 4vw, 2rem) !important;
  }
  #mainBody .loginBox form .toggle-password-visibility {
    font-size: clamp(1rem, 4vw, 2.5rem) !important;
  }
  #mainBody .loginBox form button {
    width: 800px !important;
    font-size: clamp(1rem, 4vw, 2rem) !important;
  }

  .underlay div#dialog form h3 {
    font-size: clamp(1.5rem, 3.25vw, 3rem) !important;
  }
  .underlay div#dialog form p, .underlay div#dialog form button.ok {
    font-size: clamp(1rem, 4vw, 2rem) !important;
  }
  .underlay div#dialog form button, .underlay div#dialog form i {
    font-size: clamp(2rem, 4vw, 4rem) !important;
  }

  .adminreportWrapper {
    padding-top: 90px;
  }
  .adminreportWrapper .headingWrapper h1 {
    font-size: clamp(1.5rem, 3.25vw, 3rem) !important;
  }
  .adminreportWrapper .contentWrapper .tableWrapper table {
    font-size: clamp(1rem, 4vw, 2rem) !important;
  }
  .adminreportWrapper .contentWrapper .dropdownWrapper select {
    font-size: 1.5rem;
    height: 50px;
  }

  .checkins form input[type=text] {
    font-size: clamp(1rem, 4vw, 2rem);
    width: 1000px;
    padding-left: 3rem;
  }
  .checkins form button, .checkins form label {
    font-size: clamp(1rem, 4vw, 2rem);
  }
  .checkins .filter-form label {
    width: 200px;
    font-size: clamp(1rem, 4vw, 2rem) !important;
  }
  .checkins .postings .post {
    height: 800px;
  }
  .checkins .postings .post h2 {
    font-size: clamp(1.5rem, 3.25vw, 3rem) !important;
  }
  .checkins .postings .post p, .checkins .postings .post i {
    font-size: clamp(1rem, 4vw, 2rem) !important;
  }
  .checkins .postings .post i::after {
    bottom: 8px;
    font-size: 1.25rem;
  }
  .checkins #preloader {
    height: 250px;
  }
  .checkins #preloader .spinner [class^=ball-] {
    width: 30px;
    height: 30px;
    border-radius: 100%;
  }

  .modal .modal-close, .modal label, .modal input, .modal textarea, .modal button {
    font-size: clamp(1rem, 4vw, 2rem) !important;
  }
  .modal span {
    font-size: clamp(1rem, 2vw, 1.5rem) !important;
  }
  .modal .filter-form label {
    width: 200px;
  }

  p, i {
    font-size: clamp(1rem, 4vw, 2rem) !important;
  }
}
@media only screen and (min-width: 1920px) {
  #quest_landing .activities h2 {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
  }
  #quest_landing .vocabulary .original {
    font-size: clamp(18px, 4vw, 2.5rem) !important;
  }
  #quest_landing .vocabulary .pronunciation {
    font-size: clamp(12.8px, 4vw, 1.5rem) !important;
  }
  #quest_landing .vocabulary .translation {
    font-size: clamp(16px, 4vw, 1.95rem) !important;
  }
  #quest_landing .vocabulary img.thumbnail {
    width: clamp(100px, 10vw, 150px) !important;
    height: clamp(100px, 10vw, 150px) !important;
  }
  #quest_landing .quest-video-container h2 {
    font-size: clamp(1.25rem, 4vw, 3.5rem) !important;
  }
  #quest_landing .quest-video-container iframe {
    min-height: 850px !important;
  }
  #quest_landing .quest-video-container .overlay {
    top: 9% !important;
    min-height: 90% !important;
  }
}