
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
  --font-default: "Poppins", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Oswald", sans-serif;
}


/* Colors */
:root {
  --color-default: #000000;
  --color-primary: #46336b;
  
  --color-secondary: #8350d9;
  --color-secondary2: #68509a;
  --color-lightprimary: #f2ebfc;

  --rgba-dark-purple: 70, 51, 107;
  --rgba-light-purple: 141, 77, 226;

  --shd: 0.00px 5.00px 10px 1px rgba(109, 141, 173, 0.25);
  --container-bg: 255, 254, 252;
  --alpha-bg: 0.73;

  --light-gray: #F0F0E9;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background: white;
}

a {
  color: var(--color-secondary2);
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-weight: 600px;
}

.button {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-primary);
  background: linear-gradient(180deg,rgba(var(--rgba-dark-purple), 1) 0%, rgba(var(--rgba-light-purple), 1) 100%);

  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 500;
}

.button:hover,
.button:focus {
  transition: all 0.2s ease, visibility 0s;
  color: var(--color-primary);
  background: white;
  border: 1px solid var(--color-primary);
  /*box-shadow: 2.12px 2.12px 44px 3px rgba(142, 78, 227, 0.7);*/
}


.button-large {
  display: inline-block;
  padding: 5px 40px;
  margin-left: 40px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-primary);
  background: linear-gradient(180deg,rgba(var(--rgba-dark-purple), 1) 0%, rgba(var(--rgba-light-purple), 1) 100%);

  border: 1px solid transparent;
  font-size: 2.5rem;
  font-weight: 500;
}

.button-large:hover,
.button-large:focus {
  transition: all 0.2s ease, visibility 0s;
  color: var(--color-primary);
  background: white;
  border: 1px solid var(--color-primary);
  box-shadow: 2.12px 2.12px 44px 3px rgba(142, 78, 227, 0.7);
}

/*--------------------------------------------------------------
# Body Backgrounds
--------------------------------------------------------------*/

.main-,
.main-star {
  background: url('/en/images/public/background-star.jpg') no-repeat top center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.main-circle {
  background: url('/en/images/public/background-circle.jpg') no-repeat top center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0;
}

.header .logo {
  position: relative;
  width: 25%;
  min-width: 75px;
  max-width: 175px;
}
.header .logo img {
  width: 100%;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar a,
  .navbar a:focus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-default);
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover,
  .navbar li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .active
  .navbar .active:focus {
     color: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    border-radius: 16px;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
            box-shadow:0px 0px 25px 0px rgba(0,0,0,0.5);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-secondary);
  }


.navbar .login,
.navbar .login:focus {
  display: inline-block;
  padding: 5px 30px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-primary);
  background: linear-gradient(180deg,rgba(var(--rgba-dark-purple), 1) 0%, rgba(var(--rgba-light-purple), 1) 100%);

  border: 1px solid transparent;
  font-size: 18px;
  font-weight: 500;
}

.navbar .login:hover,
.navbar .login:focus {
  transition: all 0.2s ease, visibility 0s;
  color: var(--color-primary);
  background: white;
  border: 1px solid var(--color-primary);
  box-shadow: 2.12px 2.12px 44px 3px rgba(142, 78, 227, 0.7);
}



@media (min-width: 992px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 992px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;

    background: white;
    overflow-y: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-secondary);
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background: #ebe1fb6b;
  }


  .navbar .dropdown .dropdown a {
    color: var(--color-secondary);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 48px;
    cursor: pointer;
    line-height: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(142, 78, 227, 0.7);
    z-index: 9996;
  }

.navbar .login,
.navbar .login:focus {
  display: inline-block;
  padding: 25px 30px;
  width: 75%;
  text-align: center;
  margin: 50px 0 0 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  border: 2px solid #fff;
  font-weight: 600;
}


.navbar .login:hover,
.navbar .login:focus:hover {
  color: #fff;
  background: var(--color-primary);
}


.navbar .cart,
.navbar .cart:focus {
  display: inline-block;
  padding: 25px 30px;
  width: 75%;
  text-align: center;
  margin: 50px 0 0 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  border: 0;
  font-weight: 600;
}

/*
.navbar .cart:hover,
.navbar .cart:focus:hover {
  color: #fff;
  background: var(--color-primary);
}
*/

}

/*--------------------------------------------------------------
# Homepage Section
--------------------------------------------------------------*/
.welcome {
  width: 100%;
  margin: 3% auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: url('/en/images/public/child-basketball.png') no-repeat bottom left; 
  padding-bottom: 80px;
  background-position-x: 12%;
}

.welcome .content  {
 width: 80%;
}
.welcome .content h2 {
  width: 100%;
  text-align: center;
  font-size: 2.5em;
  line-height: 1.3em;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .welcome {
    background: url('/en/images/public/child-basketball-md.png') no-repeat bottom left; 
    background-position-x: 8%;
  }
}
@media (max-width: 768px) {
  .welcome {
    margin-top: 80px;
    background: url('/en/images/public/child-basketball-sm.png') no-repeat bottom left; 
    background-position-x: 8%;
  }.welcome .content  {
    width: 98%;
   }
  .welcome .content h2 {
    font-size: 1.9em;
  }
}

.tagline { 
  text-align: center;
  font-weight: 100;
  padding: 0 5%;
}






/* hotspot_green - Home Page
------------------------------*/
.hotspot_green {
  width: 90%;
  height: 220px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-content: center;
  margin: 45px auto;
  border-radius: 20px;
  background: url('/en/images/public/grad_green_star.jpg') no-repeat center right; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.hotspot_green .icon {
  width: 25%;  padding-left: 15px;
}
.hotspot_green .icon img {
  height: 280px;  top: -15px;  z-index: 10;
}
.hotspot_green .content {
  padding-left: 50px;  padding-right: 175px;  color: white;  font-size: 1.4em;
}
.hotspot_green .content h3{
  color: white;
}
@media (max-width: 1200px) {
  .hotspot_green .content {
    font-size: 1.2em;    padding-left: 70px;    padding-right: 140px;
  }
  .hotspot_green .content h3{
    font-size: 1.4em;
  }
}
@media (max-width: 997px) {
  .hotspot_green {
    margin-top: 90px;    flex-direction: column;
  }
  .hotspot_green .icon {
    width: 100%;    padding-left:0;    text-align: center;    margin-top: -90px;
  }
  .hotspot_green .icon img {
    height: 140px;    top: -15px;    z-index: 10;
  }
  .hotspot_green .content {
    width: 100%;    text-align: center;    padding: 0 18px;
  }
}
@media (max-width: 576px) {
  .hotspot_green {
    height: 240px;   margin-top: 90px;    flex-direction: column; 
  }
  .hotspot_green .content {
    font-size: 0.8em;
  }
}


/* hotspot_purple - Home Page
------------------------------*/
.hotspot_purple {
  width: 90%;
  height: 220px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 45px auto;
  border-radius: 20px;
  background: url('/en/images/public/grad_purple_star.jpg') no-repeat center left; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.hotspot_purple .icon {
  width: 25%;  padding-right: 15px;
}
.hotspot_purple .icon img {
  height: 280px;  top: -15px;  z-index: 10;
}
.hotspot_purple .content {
  padding-left: 50px;  padding-left: 175px;  color: white;  font-size: 1.4em;
}
.hotspot_purple .content h3{
  color: white;
}
@media (max-width: 1200px) {
  .hotspot_purple .content {
    font-size: 1.2em;    padding-right: 70px;    padding-left: 140px;
  }
  .hotspot_purple .content h3{
    font-size: 1.4em;
  }
}
@media (max-width: 997px) {
  .hotspot_purple {
    margin-top: 90px;    flex-direction: column; flex-direction: column-reverse;
  }
  .hotspot_purple .icon {
    width: 100%;    padding-right:0;    text-align: center;    margin-top: -90px;
  }
  .hotspot_purple .icon img {
    height: 140px;    top: -15px;    z-index: 10;
  }
  .hotspot_purple .content {
    width: 100%;    text-align: center;    padding: 0 18px;
  }
}

@media (max-width: 576px) {
  .hotspot_purple {
    height: 260px;   margin-top: 90px;    flex-direction: column; flex-direction: column-reverse;
  }
  .hotspot_purple .content {
    font-size: 0.8em;
  }
}






/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer, .footer a {
  color: white;
  font-size: 14px;
}

.footer .footer-content {
  color:white;
  background: var(--color-primary);
  background: linear-gradient(173deg,rgba(var(--rgba-dark-purple), 1) 0%, rgba(var(--rgba-light-purple), 1) 100%);
  background-size: contain;
  padding: 50px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}


.footer .footer-content img {
  width: 100%;
  max-width: 255px;
}

.footer .footer-content .tag {
  width: 100%;
  max-width: 300px;
}

.footer .footer-content .footer-info p {
  color:white;
  font-size: 14px;
  margin-bottom: 0;
  color: white;
}

.footer .footer-content .social-links a {
  font-size: 26px;
  line-height: 0;
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  color: #56398d;
  border-radius: 50px;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-secondary);
}


.footer .footer-content .footer-links {
  margin: 30px 0;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  margin-right: 2px;
  color: white;
  font-size: 16px;
  line-height: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {

  color: white;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-secondary);
}

.footer .footer-content .footer-contact p {
  line-height: 26px;
  color: white;
}

.footer .footer-legal {
  background: #e8e5f0;
  padding: 30px 0;
}

.footer .footer-legal .copyright {
  text-align: center;
  color: var(--color-default);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
  color: var(--color-primary);
}
















/* Faq Section - Home Page
------------------------------*/
.faq .content h3 {
  color: var(--color-primary);
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: rgba(var(--color-default-rgb), 0.7);
}
.faq .faq-container {
  width: 95%;
  margin: 2%;
}


.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 5px 25px 0px rgba(var(--color-default-rgb), 0.1);
          box-shadow: 0px 5px 25px 0px rgba(var(--color-default-rgb), 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--color-primary);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--color-green);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.faq-toggle:hover, .faq-active {
  color: var(--color-primary);
  background: var(--color-lightprimary);
}

.faq .faq-container .faq-active h3 {
  font-weight: bold;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
    color: var(--color-primary);
}




/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 0;
}

.why-us .img-bg {
  min-height: 500px;
  background-size: cover;
}

.why-us .slides {
  background-color: #f7f9fc;
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;

  font-family: var(--font-default);
  color: var(--color-primary);

}

.why-us h4 {
  font-size: 18px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}


.why-us .content {
  padding: 30px;
  background: #48366F;
  border-radius: 4px;
  color: #fff;
}
.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}
.why-us .content p {
  margin-bottom: 30px;
}
.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  -webkit-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  text-transform: uppercase;
}
.why-us .content .more-btn i {
  font-size: 14px;
}
.why-us .content .more-btn:hover {
  color: #48366F;
  background: #fff;
}
.why-us .icon-boxes .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  border: 1px solid white;
}
.why-us .icon-boxes .icon-box i {
  font-size: 32px;
  padding: 18px;
  color: #48366F;
  margin-bottom: 30px;
  background: #f8f9d0;
  border-radius: 50px;
}
.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}



.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: var(--color-primary);
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-primary);
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}

.transparent_box {
  width:100%;
  background: rgba(var(--container-bg), var(--alpha-bg));
  border-radius: 20px;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
  color: var(--color-primary);
}


.card {
  width:100%;
  background: rgba(var(--container-bg), var(--alpha-bg));
  border-radius: 20px;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
  color: var(--color-primary);
}
.card-body {
  background-color: transparent;
}

.transparent_box_purple {
  width:100%;
  background: rgba(110, 79, 161, 0.15);
  border-radius: 20px;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
  color: var(--color-primary);
}

.transparent_box .container{
  padding:20px;
}



/*--------------------------------------------------------------
# subpage Details Page
--------------------------------------------------------------*/
.subpage .subpage-details {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.subpage .subpage-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.subpage .subpage-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-primary);
}

.subpage .subpage-details .content {
  margin-top: 20px;
}

.subpage .subpage-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.subpage .subpage-details .content blockquote {
  overflow: hidden;
  background-color: rgba(27, 47, 69, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.subpage .subpage-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.subpage .subpage-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.subpage .subpage-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.subpage .subpage-details .meta-top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
}

.subpage .subpage-details .meta-top ul li+li {
  padding-left: 20px;
}

.subpage .subpage-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.subpage .subpage-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.subpage .subpage-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(27, 47, 69, 0.15);
}

.subpage .subpage-details .meta-bottom i {
  color: #38618e;
  display: inline;
}

.subpage .subpage-details .meta-bottom a {
  color: rgba(27, 47, 69, 0.8);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .subpage-details .meta-bottom a:hover {
  color: var(--color-secondary);
}

.subpage .subpage-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.subpage .subpage-details .meta-bottom .cats li {
  display: inline-block;
}

.subpage .subpage-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.subpage .subpage-details .meta-bottom .tags li {
  display: inline-block;
}

.subpage .subpage-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.subpage .subpage-details .meta-bottom .share {
  font-size: 16px;
}

.subpage .subpage-details .meta-bottom .share i {
  padding-left: 5px;
}

.subpage .post-author {
  padding: 20px;
  margin-top: 30px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.subpage .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.subpage .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-primary);
}

.subpage .post-author .social-links {
  margin: 0 10px 10px 0;
}

.subpage .post-author .social-links a {
  color: rgba(27, 47, 69, 0.5);
  margin-right: 5px;
}

.subpage .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# subpage Sidebar
--------------------------------------------------------------*/
.subpage .sidebar {
  padding: 30px;
margin: 0 0 60px 20px;
-webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);

}
.subpage .sidebar .sidebar-title {
  font-size: 22px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: var(--color-primary);

}
.sidebar-subnav {
  background-color: rgba(var(--color-lightprimary-rgb), 0.3);
}
.sidebar-subnav li a {
  color: var(--color-primary);
}
.sidebar-subnav li a:hover {
  color: var(--color-green);
}


.subpage .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.subpage .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(27, 47, 69, 0.2);
  padding: 3px 10px;
  position: relative;
}

.subpage .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.subpage .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.subpage .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-secondary);
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.subpage .sidebar .search-form form button i {
  line-height: 0;
}

.subpage .sidebar .search-form form button:hover {
  background: rgba(86, 184, 230, 0.8);
}

.subpage .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.subpage .sidebar .categories ul li+li {
  padding-top: 10px;
}

.subpage .sidebar .categories ul a {
  color: var(--color-primary);
  font-size: 15px;
}

.subpage .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.subpage .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.subpage .sidebar .recent-posts .post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.subpage .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.subpage .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.subpage .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.subpage .sidebar .recent-posts h4 a {
  color: var(--color-primary);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .sidebar .recent-posts h4 a:hover {
  color: var(--color-secondary);
}

.subpage .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.subpage .sidebar .tags {
  margin-bottom: -10px;
}

.subpage .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.subpage .sidebar .tags ul li {
  display: inline-block;
}

.subpage .sidebar .tags ul a {
  color: #38618e;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(27, 47, 69, 0.15);
  display: inline-block;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-secondary);
  background: var(--color-secondary);
}

.subpage .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(27, 47, 69, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# subpage Comments
--------------------------------------------------------------*/
.subpage .comments {
  margin-top: 30px;
}

.subpage .comments .comments-count {
  font-weight: bold;
}

.subpage .comments .comment {
  margin-top: 30px;
  position: relative;
}

.subpage .comments .comment .comment-img {
  margin-right: 14px;
}

.subpage .comments .comment .comment-img img {
  width: 60px;
}

.subpage .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.subpage .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .comments .comment h5 a:hover {
  color: var(--color-secondary);
}

.subpage .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.subpage .comments .comment h5 .reply i {
  font-size: 20px;
}

.subpage .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(27, 47, 69, 0.8);
  margin-bottom: 5px;
}

.subpage .comments .comment.comment-reply {
  padding-left: 40px;
}

.subpage .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.subpage .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.subpage .comments .reply-form p {
  font-size: 14px;
}

.subpage .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.subpage .comments .reply-form input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.subpage .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.subpage .comments .reply-form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.subpage .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.subpage .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-primary);
}

.subpage .comments .reply-form .btn-primary:hover {
  background-color: rgba(27, 47, 69, 0.8);
}

/*--------------------------------------------------------------
# subpage Home Pagination
--------------------------------------------------------------*/
.subpage .subpage-pagination {
  margin-top: 30px;
  color: #38618e;
}

.subpage .subpage-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.subpage .subpage-pagination li {
  margin: 0 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .subpage-pagination li a {
  color: #2aa5df;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #dbf0fa;
  padding: 7px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.subpage .subpage-pagination li.active a,
.subpage .subpage-pagination li:hover a {
  background: var(--color-secondary);
  color: #fff;
}




/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px;
  -webkit-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;x
  background: var(--color-white);backgroundbackgroundbackgroundbackgroundbackgroundbackgroundbackgroundbackgroundbackgroundbackgroundbackgroundbackgroundbackgroundbackgroundbackground
  height: 100%;heightheightheightheightheightheightheightheightheightheightheightheightheightheight
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.featured-services .service-item h4 a {
  color: var(--color-secondary);
  -webkit-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
          box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}

.featured-services .service-item:hover h4 a {
  color: var(--color-primary);
}



/*--------------------------------------------------------------
# Principles Section
--------------------------------------------------------------*/

.principles  {
  margin: 20px 0;

}
.principles .nav-tabs {
  border: 0;
}

.principles .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-default);
  background: #fff;
  -webkit-box-shadow: 5px 5px 25px rgba(var(--color-default-rgb), 0.15);
          box-shadow: 5px 5px 25px rgba(var(--color-default-rgb), 0.15);
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.principles .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.principles .nav-link h4 {
  text-align: center;
  font-family: var(--font-default);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--color-default);
}

.principles .nav-link:hover {
  color: var(--color-primary);
  background: var(--color-secondary);
}

.principles .nav-link.active {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: #fff -o-linear-gradient(rgba(var(--color-primary-rgb), 0.8), rgba(var(--color-primary-rgb), 0.9));
  background: #fff -webkit-gradient(linear, left top, left bottom, from(rgba(var(--color-primary-rgb), 0.8)), to(rgba(var(--color-primary-rgb), 0.9)));
  background: #fff linear-gradient(rgba(var(--color-primary-rgb), 0.8), rgba(var(--color-primary-rgb), 0.9));
  border-color: var(--color-primary);
}

.principles .nav-link.active h4 {
  color: #fff;
}

.principles .nav-link img {

  width: 8.5rem;
height: 8.5rem;
 max-width: 11.5625rem;
max-height: 11.5625rem;
margin: 0 auto 1.5625rem auto;
}
.principles .nav-link.active img {

    -webkit-filter: brightness(0) invert(100%);

            filter: brightness(0) invert(100%);

}

.principles .tab-content {
  margin-top: 30px;
}

.principles .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.principles .tab-pane h3 {
  font-weight: 300;
  font-size: 36px;
  color: var(--color-primary);
  font-family: var(--font-default);
}

.principles .tab-pane ul {
  list-style: none;
  padding: 0;
}

.principles .tab-pane ul li {
  padding-bottom: 10px;
}

.principles .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}

.principles .tab-pane p:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}















/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.courses .course-item {
  border-radius: 25px;
  border: 1px solid #eee;
  background:white;
  -webkit-box-shadow: 1px 2px 15px rgba(127, 137, 161, 0.25);
          box-shadow: 1px 2px 15px rgba(127, 137, 161, 0.25);
}
.courses .course-item .boxshot img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.courses .course-content {
  padding: 15px;
}
.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}
.courses .course-content h3 a {
  color: #68509a;
  font-weight: 500;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.courses .course-content h3 a:hover {
  color: var(--color-secondary);
}
.courses .course-content p {
  font-size: 14px;
}
.courses .course-content h4{
  font-size: 14px;
  background: #48366F;
  padding: 7px 14px;
  color: #fff;
  margin: 0;
}
.courses .course-content h3 {

  color: var(--color-secondary);

}
.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-primary);
;}
.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid white;
}
.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}
.courses .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #ebed71;
}
.courses .trainer .trainer-rank {
  font-size: 18px;
  color: #eef087;
}


.course-bio {
  padding: 50px 20px;
  font-size: 18px;
}
/*--------------------------------------------------------------
# Trainers
--------------------------------------------------------------*/
.trainers .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid white;
}
.trainers .member img {
  margin: -1px -1px 30px -1px;
}
.trainers .member .member-content {
  padding: 0 20px 30px 20px;
}
.trainers .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
.trainers .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.trainers .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}
.trainers .member .social {
  margin-top: 15px;
}
.trainers .member .social a {
  color: #f4f5b5;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.trainers .member .social a:hover {
  color: #48366F;
}
.trainers .member .social i {
  font-size: 18px;
  margin: 0 2px;
}


/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/
.course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.course-details .course-info {
  background: #f6f7f6;
  padding: 10px 15px;
  margin-bottom: 15px;
}
.course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: var(--font-primary);
}
.course-details .course-info p {
  margin: 0;
  font-weight: 600;
}
.course-details .course-info a {
  color: #48366F;
}
.course-details img {
  border-radius: 25px;
}


/*--------------------------------------------------------------
# Cource Details Tabs
--------------------------------------------------------------*/
.cource-details-tabs {
  overflow: hidden;
  padding-top: 0;
}
.cource-details-tabs .nav-tabs {
  border: 0;
}
.cource-details-tabs .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #FFFF00;
  border-radius: 0;
  border-right: 2px solid white;
  font-weight: 600;
  font-size: 15px;
}
.cource-details-tabs .nav-link:hover {
  color: #48366F;
}
.cource-details-tabs .nav-link.active {
  color: #48366F;
  border-color: #48366F;
}
.cource-details-tabs .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
          animation: fadeIn 0.5s ease-out;
}
.cource-details-tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFFF00;
}
.cource-details-tabs .details p {
  color: #777777;
}
.cource-details-tabs .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cource-details-tabs .nav-link {
    border: 0;
    padding: 15px;
  }
  .cource-details-tabs .nav-link.active {
    color: #fff;
    background: #48366F;
  }
}









.w3-hns-red { background-color: #e51b24; }
.w3-hns-text-red { color: #e51b24; }
.w3-hns-blue { background-color: #27446d; }

.w3-hns-hover-red:hover { color: #fff!important; background-color: #e51b24!important; }


.w3-hns-gray { background-color: #f7f7f7; color:#000; }

.w3-hns-red { background-color: #e43137; }

.w3-hns-purple { background-color: #7b7b7b; }
.w3-hns-hover-purple:hover { color: #fff!important; background-color: #e43137!important; }



.w3-hns-white { background-color: #fff; }

#header-menu { width: 100%; height: 100px; background-color: rgba(20,20,20,0.8); }


#main { width: 100%;  padding-bottom: 0px; padding-top: 3rem; }
#main_student { width: 100%;  padding-bottom: 0px; }
#mainnav { font-size: 14px; text-transform: uppercase; }

.tooltip-inner {
    background-color: #48366F;
    -webkit-box-shadow: 0px 0px 4px #58595a;
            box-shadow: 0px 0px 4px #58595a;
    opacity: 1 !important;
}
.tooltip.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: #48366F !important;
}
.tooltip.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: #48366F !important;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #48366F !important;
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #48366F !important;
}


ul.course_stats { padding: 0; }
ul.course_stats li { display: inline; padding-right: 20px; color: #828282; }
div.course_box { width: 100%; height: auto; min-width: 350px; min-height: 325px; padding: 40px 30px; }
div.course_box li { font-size: 12px; }
div.course_box a { text-decoration: none; font-size: 12px; }
div.course_details p { color: #828282; }
div.course_details a { text-decoration: none; }
div.course_buttons { margin-top: 20px; }


/*
table.data-area { width: 100%; border: 1px solid #eeeeee; border-spacing: 0px; }
table.data-area tr td { padding: 4px 6px; }
table.data-area thead tr { background-color: #4a4a4a; color: white; }
table.data-area thead tr td { border: none; }
table.data-area thead tr td p { font-weight: bold; }
table.data-area thead tr:hover { background: #4a4a4a; }
table.data-area tr td { border-top: 1px solid #eeeeee; }
table.data-area tr.inactive td p { color: red; text-decoration: line-through; }
table.data-area tr.paid0 { background-color: #fcc; }
table.data-area tr.paid1 { background-color: #cfc; }
table.data-area tr:hover { background: #faf7df; }
*/
table.data-area { width: 100%; border: 0; background-color: #fbfafc; border-spacing: 0px; }
table.data-area tr td { padding: 8px 12px; }
table.data-area thead tr { background-color: #6d4fa0; color: white; }
table.data-area thead tr td { border: none; }
table.data-area thead tr td p { font-weight: bold; }
table.data-area thead tr:hover { background: #6d4fa0; }
table.data-area tr td { border-top: 1px solid #eeeeee; }
table.data-area tr.inactive td p { color: red; text-decoration: line-through; }
table.data-area tr.paid0 { background-color: #fcc; }
table.data-area tr.paid1 { background-color: #cfc; }


table.data-form { width: 100%; border: 1px solid #eeeeee; border-spacing: 0px; margin-bottom: 20px; }
table.data-form tr td:first-child { width: 20%; }
table.data-form tr td { padding: 4px 6px; }
table.data-form tr td p { padding-top: 3px; padding-bottom: 3px; }
table.data-form thead tr { background-color: #47366f; color: white; }
table.data-form thead tr td { border: none; }
table.data-form thead tr td p { font-weight: bold; }
table.data-form tr td { border-top: 1px solid #eeeeee; }

div#errors { display: none; }
div.errors { width:60%; background-color: #f0ebbe; padding: 10px; margin: 0 auto; }
div.errors ul { width:100%; }
div.errors ul li:first-of-type { list-style: none; margin-left: -2em; text-decoration: underline; font-weight: bold; }

/* Course Area */
#top-pagenav a { font-size: 10px; }
#topnav-containerc { margin: 0 auto; background-color: #989898; color: white; z-index: 30; height: 92px; padding-left: 5%; padding-right: 3.5%; padding-top: 20px; padding-bottom: 20px; }
#topnav-containerc a { font-size: 12px; text-transform: uppercase; }
#subnavc { text-transform: uppercase; font-size: 12px;  margin-top: 7px; }
#subnavc .material-icons { font-size: 11px; }
#mainc { width: 100%;  margin: 0 auto; background-color: #fff; min-height: 500px; margin-top: 85px; padding-top: 0px; padding-left: 0px; }
#coursecontent { margin-top: 7px; }
#coursecontent h1 { margin:0; padding:0; font-size:24px; font-weight: 300; color: black; }
#coursecontent h2 { margin:0; padding:0; font-size:20px; font-weight: 700; color: black; }
#coursecontent h3 { margin:0; padding:0; font-size:16px; font-weight: 700; color: black; }
.fs1 { font-size: 0.8em !important; }
.fs2 { font-size: 1.2em !important; }
#coursecontent h2.fs1 { font-size: 18px !important; }
#coursecontent h2.fs2 { font-size: 30px !important; }

div.question { width: 99%; border: 1px solid #ddd; background: #eee; margin-bottom: 10px; padding: 10px 5px; }
div.question fieldset { border: none; background: none; }
div.question legend { display: table; white-space: normal; border: none; background: none; font-size:16px; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.w3-display-bottommiddle {
  position: absolute;
  left: 0;
/*  bottom: 15px;*/
  -webkit-transform: none;
          transform: none;
  -ms-transform: none;
  padding:0 30px 0 30px;
  text-align:center;
  width:100%;
}
#purchasebox_single .w3-display-bottommiddle {
  bottom:12px;
}

#purchasebox_single { width: 300px; height: 275px; background-color: #060606; /* background-image: url("../en/images/purchase_single.jpg"); */ }
#purchasebox_single a { font-size: 24px; text-decoration: none; }
#purchasebox_multi { width: 300px; height: 275px; background-color: #060606; /* background-image: url("../en/images/purchase_multi.jpg"); */ }
#purchasebox_multi a { font-size: 24px; text-decoration: none; }
#purchasebox_single a:hover, #purchasebox_multi a:hover { color: black; }


.btn-primary{
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-primary:hover{
  color: var(--color-primary);
  background-color: #fff;
  border-color: var(--color-primary);
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    -webkit-transition-delay: 0 !important;
         -o-transition-delay: 0 !important;
            transition-delay: 0 !important;
  }
}

.btn-clear {
  background: transparent;
  border: 0;
  color:var(--color-primary)
}
.btn-clear:hover {
  color:var(--color-secondary)
}

.btn, .btn-nohover {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-primary);
  background: linear-gradient(180deg,rgba(var(--rgba-dark-purple), 1) 0%, rgba(var(--rgba-light-purple), 1) 100%);

  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 500;
}

.btn:hover,
.btn:focus {
  transition: all 0.2s ease, visibility 0s;
  color: var(--color-primary);
  background: white;
  border: 1px solid var(--color-primary);
  /*box-shadow: 2.12px 2.12px 44px 3px rgba(142, 78, 227, 0.7);*/
}
.btn-nohover:hover {

  transition: all 0.2s ease, visibility 0s;
}

.btn2 {

  background: var(--color-lightprimary);
  display: inline-block;
  padding: 8px 35px;
  border: 0;
  border-radius: 50px;
  color:var(--color-primary);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  font-size: 14px;

  font-family: var(--font-default);
  font-weight: 600;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
}
.btn2:hover {
  background: var(--color-primary);
  color: #fff;
}

.btnoutline {
  background: transparent;
  display: inline-block;
  padding: 8px 35px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  font-size: 14px;
  border: 1px solid #48366F;
  color: #48366F;
  font-family: var(--font-default);
  font-weight: 600;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
}
.btnoutline:hover {
  background: #48366F;
  color: #FFFFFF;
}


.order-button {
  background: #ffffff;
  display: inline-block;
  padding: 8px 25px;
  border: 1px solid #6c757d;
  border-radius: 0;
  color: #6c757d;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  font-size: 11px;
  text-transform: uppercase;

  font-family: var(--font-default);

  -webkit-transition: 0.3s;

  -o-transition: 0.3s;

  transition: 0.3s;
  margin: 0px 0px 15px 0px;
}
.order-button:hover {
  color: #ffffff;
  background: #6c757d;
}

.align-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;  -webkit-box-orient: horizontal;  -webkit-box-direction: reverse;  -ms-flex-direction: row-reverse;  flex-direction: row-reverse;
}




ul.wss-tabs {
  border-bottom: 0;
}

ul.wss-tabs li .nav-link {
  margin: 10px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--color-secondary);
}
ul.wss-tabs li .nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid var(--color-primary);
}

ul.wss-tabs li .nav-link:focus, ul.wss-tabs li .nav-link:hover {
color: var(--color-default);
}

ul.wss-tabs li .nav-link {
color: var(--color-primary);
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  text-align: center;
    width:100%;
    height: 100%;
    background: rgba(var(--container-bg), var(--alpha-bg));
    border-radius: 20px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1),0px -10px 15px -3px rgba(0,0,0,0.1);
    color: var(--color-primary);
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin: 0 auto 50px auto;
}

.services .service-item .icon i {

  color: var(--color-primary);
  font-size: 40px;
  -webkit-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f7f9fc;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 24px;
  position: relative;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: #48366F;
}

.services .service-item:hover .icon:before {
  background: #FFFF00;
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}



.space {
  margin-bottom: 50px;
}


@media (max-width: 640px) {
  .container {
    width: 95%;
    margin: 0 auto;
  }
}













#stepform {


    /*text-align: center;*/
    position: relative;
    margin-top: 30px;
}

#stepform fieldset {
   
  background: rgba(var(--container-bg), var(--alpha-bg));
  border-radius: 20px;

    border: 0 none;

  border-radius: 5px;
  -webkit-box-shadow: 0px 0 30px rgba(93, 93, 93, 0.1);
          box-shadow: 0px 0 30px rgba(93, 93, 93, 0.1);
    padding: 20px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto; /* This centers the container */

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#stepform fieldset:not(:first-of-type) {
    display: none;
}

#stepform label {
  text-align: left;
}

/*inputs
#stepform input, #stepform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;

    color: #2C3E50;
    font-size: 13px;
}

#stepform input:focus, #stepform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #47366f;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}
*/
/*buttons*/



#stepform .action-button {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-primary);
  background: linear-gradient(180deg,rgba(var(--rgba-dark-purple), 1) 0%, rgba(var(--rgba-light-purple), 1) 100%);

  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 500;
}

#stepform .action-button:hover, #stepform .action-button:focus {
  transition: all 0.2s ease, visibility 0s;
  color: var(--color-primary);
  background: white;
  border: 1px solid var(--color-primary);
  /*box-shadow: 2.12px 2.12px 44px 3px rgba(142, 78, 227, 0.7);*/
}

#stepform .action-button-previous {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  color: #fff;
  background: #a199b5;

  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 500;
}

#stepform .action-button-previous:hover, #stepform .action-button-previous:focus {
  transition: all 0.2s ease, visibility 0s;
  color: var(--color-primary);
  background: white;
  border: 1px solid var(--color-primary);
  /*box-shadow: 2.12px 2.12px 44px 3px rgba(142, 78, 227, 0.7);*/
}

/*headings*/
.fs-title {
    font-size: 23px;

    color: var(--color-primary);
    margin-bottom: 10px;
}
.subheader {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--color-primary);
  margin: 20px 0;
}
.subheader h2 {
  margin-bottom: 40px;
}
.subtitle {
  color: #fff;
  font-size: 15px;

}
.fs-subtitle {
    font-weight: normal;

    font-size: 13px;
    color: #666;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;

    color: #ffff;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: var(--color-primary);
  
      text-transform: capitalize;
 
      text-align: center;
 
    font-size: 1vw;

    width: 20%;
    float: left;
    position: relative;
}

#progressbar li.active {
 font-weight: bold;
}


@media screen and (min-width: 1024px) {
 #progressbar li {
    font-size: 15px;
    text-align: center;
  }
}


#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 28px;
    height: 28px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: white;
    background: #ce3f91;
    border-radius: 25px;
    border: 2px solid #ce3f91;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 4px;
    background: #ce3f91;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}



#progressbar li.active:before {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    font-weight: bold;
}

#progressbar li.active:after {
    background: var(--color-primary);

}


.img-box-fill {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
}

.img-box-fill img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 100%;
    min-height: 100%
}


.workshop_request_background {
  width: 100%;
  background-image: -o-linear-gradient(rgba(239, 237, 234, 0.55), rgba(239, 237, 234, 0.55)), url("/en/images/AdobeStock_345531588.jpeg");
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(239, 237, 234, 0.55)), to(rgba(239, 237, 234, 0.55))), url("/en/images/AdobeStock_345531588.jpeg");
  background-image: linear-gradient(rgba(239, 237, 234, 0.55), rgba(239, 237, 234, 0.55)), url("/en/images/AdobeStock_345531588.jpeg");
background-size: cover;
background-position: right;
background-repeat: no-repeat;
margin: 0;

}


.theader {
  background-color: var(--color-lightprimary);
  color:var(--color-primary);
  text-align: left;
}








/* cart ----------- */



.cart-container {
  position: fixed;
  top: 65px;
  z-index: 999999;
  margin: auto;
  width: 100%;
}

.badge {
  background-color: var(--color-primary);
  border-radius: 10px;
  color: white;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 3px 7px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.shopping-cart {
  margin: 0;
  float: right;
  background: white;
  width: 320px;
  position: relative;
  border-radius: 3px;
  padding: 20px;
  -webkit-box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.shopping-cart .shopping-cart-header {
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 15px;
}
.shopping-cart .shopping-cart-header .shopping-cart-total {
  float: right;
}
.shopping-cart .shopping-cart-items {
  padding-top: 20px;
}
.shopping-cart table tr {
  margin-top: 18px;
}
.shopping-cart img {
  display: block;
  margin-right: 12px;
}
.shopping-cart .item-name {
  display: block;
  padding: 10px 12px;
  font-size: 16px;
}
.shopping-cart  .item-price {
  color: var(--color-primary);
  margin-right: 8px;
}

.shopping-cart:after {
  bottom: 100%;
  left: 89%;

  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: white;
  border-width: 8px;
  margin-left: -8px;
}

.cart-icon {
  color: var(--color-primary);
  font-size: 24px;
  margin-right: 7px;
  float: left;
}



.cart-button {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-primary);
  background: linear-gradient(180deg,rgba(var(--rgba-dark-purple), 1) 0%, rgba(var(--rgba-light-purple), 1) 100%);

  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 500;
}

.cart-button:hover,
.cart-button:focus {
  transition: all 0.2s ease, visibility 0s;
  color: var(--color-primary);
  background: white;
  border: 1px solid var(--color-primary);
}



.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.open-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active, .open>.dropdown-toggle.btn-link {
  text-decoration: none;
}

.btn-cart, .btn-cart:hover, .btn-cart:focus, .btn-cart:active, .btn-cart.active{
  padding:12px;
  text-decoration: none;
}

.nav_withcart {
  width:93%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.cart_icon_topnav {
  width: 5%;
  margin: 0 2%;
}

.moble-nav {
  float: right;
}
.resources .card {
  width: 100%;
  border:1px solid #f0f0f0;
  -webkit-box-shadow: 0px 0 30px rgba(93, 93, 93, 0.1);
          box-shadow: 0px 0 30px rgba(93, 93, 93, 0.1);
}

.Quest {
  overflow: auto;
}
.QuestIcons .qi {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  background: transparent;
  border:0;
  font-size: 2em;
  color: var(--color-primary);
}
.QuestIcons .qi:hover {
  color: var(--color-lightprimary);
}
.QuestIcons .light{
  color: #BABABA;
}

hr { border: 1px solid #DCDFE6; }

.QuestTitle{
  font-family: var(--font-secondary);
  font-weight: 700;
}
.Quest-HF {
  min-width: 130px;
}

.Quest .btn{
  font-size: 2em;
  font-weight: 300;
}

.Quest_table {
   color: var(--color-primary);
   font-size: 1em;
   line-height: 1.4em;

}

.qt-striped>tbody>tr:nth-child(odd)>td,
.qt-striped>tbody>tr:nth-child(odd)>th {
   background: var(--color-lightgray);
 }

.Quest_table td {
   padding: 40px 15px;
 }

.Quest_table  tr td:first-child {
  padding-left: 30px;
}
.Quest .circle {
    width: 40px;
    height: 40px;
    padding: 8px 2px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
    background: #fff;
    border: 2px solid #DCDFE6;
    color: #606266;
    text-align: center;
    font-size: 1em;
    font-weight: 700;
}

.Quest .modal-header {
  border-bottom: 0;
}

.Quest .modal-header .QuestTitle{
  font-size: 1.8em;
}


.Quest .btn-close{
  color: var(--color-primary);
}
.Quest .modal-content {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.3em;
  line-height: 1.5em;
  padding: 2%;
}




@media print
{
  .Quest {
    height: 100%;
  }
    .QuestTitle{
      font-size: 1.7em;
      margin-top: 20px;
    }
    .Quest-HF .img-fluid {
      width: 60%;
    }
    .Quest_table td {
     padding: 25px 10px;
    }
    .Quest .container .px-5 .mb-4 {
      margin-bottom: 10px;
    }

}




.QuestTool {
  padding: 3% 4%;
  border: 1px solid var(--color-primary);
}

.QuestToolInstructions{
  text-align:left;
  overflow:hidden;
  position:relative;
  display: block;
  padding: 20px 145px 35px 0;
}


.QuestToolInstructions .score {
  display: inline-block;
  float:right;
  content: "";
  position:absolute;
  right:0;
  top:0;

    padding: 30px 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #DCDFE6;
    color: #606266;
    text-align: center;
    font-size: 1.5em;
    font-weight: 300;
}




/* Custom Quest Accordian ------------------------------------------- */

#quest_accordion .accordion-header {
  margin-top:18px;
  margin-bottom: 3px;

}

/* arrow icons */
#quest_accordion [data-bs-toggle=collapse] i:before {
  content: "\f078";
}

#quest_accordion [data-bs-toggle=collapse].collapsed i:before {
  content: "\f077";
}



/* REGULAR ---------------------------------*/
#quest_accordion .accordion-title {
  cursor: pointer;
  text-align:left;
  overflow:hidden;
  position:relative;
  display: block;
  padding: 20px 80px 20px 100px;
  background-color: #F9F9F9;
  border-radius: 12px;
  border: 2px solid transparent;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-default);
  width: 100%;
  text-align: left;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 1.2em;
  line-height: 1.4em;

  text-transform: initial;
}
#quest_accordion .accordion-title i {
  position: absolute;
  width: 80px;
  height: 100%;
  left: 0;
  top: 0;
  color: var(--color-default);
  text-align: center;
  border-right: 1px solid #ECECEC;
}

/* HOVER ---------------------------------*/
#quest_accordion .accordion-title:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  border: 2px solid var(--color-primary);
}
#quest_accordion .accordion-title:hover i {
  color: var(--color-primary);
  border-right: 1px solid var(--color-primary);
}

/* ACTIVE/OPEN ---------------------------------*/
#quest_accordion .accordion-title[aria-expanded="true"]{

  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  border: 2px solid var(--color-primary);
}

#quest_accordion .accordion-title[aria-expanded="true"] i {
  color: var(--color-primary);
  border-right: 1px solid var(--color-primary);
}



#quest_accordion .accordion-title .title  {
  padding-left: 36px;
  height: 100%;
}

#quest_accordion .accordion-title .complete:before {
position: absolute;
height: 100%;
display: inline-block;
content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-size: 1.5em;

  font-weight: 700;
  color: #213744;
}

#quest_accordion .accordion-title .progress_start:before {
position: absolute;
height: 100%;
display: inline-block;
content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  font-size: 1.5em;

  font-weight: 300;
  color: #E4E4E4;
}


#quest_accordion .accordion-title .score {
  display: inline-block;
  float:right;
  content: "";
  position:absolute;
  right:10px;
  top:10px;

    padding: 10px 20px;
    border-radius: 50%;
    font-size: 24px;
    background: #fff;
    border: 2px solid #fff;
    color: #fff;
    background: var(--color-primary);
    text-align: center;
    font-size: 1em;
    font-weight: 700;
}

#quest_accordion .accordion-body {
  padding: 0;
  background: #FCFCFC;
  padding: 3% 4%;
  border: 1px solid #DCDFE6;
}







/* QUEST custom radio box "Star" choices */



.QuestToolSection {
  font-size: 0.9em;
  line-height: 1.6em;
}
.QuestToolSection h4 {
  margin-top: 50px;
  font-size: 1.33em;
  font-weight: 600;
  text-transform: uppercase;
}


.indicator {
  display: inline-block;

  font-size: 15px;
  font-weight: 500;
}

.focus, .focus ul li {
  font-size: 12px;
}

.QuestToolSection .focus ul {
  list-style: none;
  margin-left: 4px;
  padding-left: 0;
}
.QuestToolSection .focus li {

  line-height: 1.2em;
  margin-bottom: 10px;
  padding-left: 1.2rem;
  text-indent: -1.2rem;
}
.QuestToolSection .focus li:before {
  content: "\f111";
  padding-right: 15px;
  font-family: "Font Awesome 5 Free";
  font-size: 6px;
  font-style: normal;
  color: #213744;
}

.QuestToolSection .star input[type="radio"]{
    -webkit-appearance: none;
   margin:0;
   padding: 0;
   top:0;
    cursor: pointer;

}
.QuestToolSection .star { width:100%; cursor: pointer;}
.QuestToolSection .star label{
   width: 100%;
   max-height: 70px;
   border-radius: 6px;
   position: relative;
   background: #E4E4E4;
   padding:18px;
   text-align: center;
   color: #fff;
   -webkit-transition: 0.5s;
   -o-transition: 0.5s;
   transition: 0.5s;
    cursor: pointer;
}

.QuestToolSection .star input[type="radio"]:checked + label {
  background-color: var(--color-primary);
  color: #ffffff;
   cursor: pointer;
}


.QuestToolSection .star .icon  {
    font-size: 2vh;
     cursor: pointer;
}



.indicators{
/*  display: flex;
  flex-wrap: nowrap;*/
}

.indicators .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0 4px;
}


.indicators .option .details{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
    brder-radius: 6px;
    height: 100%;
    border: 1px solid #DCDFE6;
}


.indicators .option .details h5{
  text-align: center;
  margin: 20px 2px;
  font-size: 1.2em;
}
.indicators .option .details p{
  font-size: 12px;
  padding: 3% 5%;
}


.indicators .option .details .content {
 -ms-flex-line-pack: start;
     align-content: flex-start;

}

.indicators .option .details .content11 { min-height: 320px; }
.indicators .option .details .content12 { min-height: 250px; }
.indicators .option .details .content21 { min-height: 280px; }
.indicators .option .details .content22 { min-height: 340px; }
.indicators .option .details .content31 { min-height: 310px; }
.indicators .option .details .content32 { min-height: 340px; }
.indicators .option .details .content41 { min-height: 365px; }
.indicators .option .details .content42 { min-height: 385px; }
.indicators .option .details .content51 { min-height: 365px; }
.indicators .option .details .content52 { min-height: 250px; }

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

.indicators .option .details .content11 { min-height: 200px; }
.indicators .option .details .content12 { min-height: 200px; }
.indicators .option .details .content21 { min-height: 200px; }
.indicators .option .details .content22 { min-height: 200px; }
.indicators .option .details .content31 { min-height: 200px; }
.indicators .option .details .content32 { min-height: 200px; }
.indicators .option .details .content41 { min-height: 200px; }
.indicators .option .details .content42 { min-height: 200px; }
.indicators .option .details .content51 { min-height: 200px; }
.indicators .option .details .content52 { min-height: 200px; }

}


.indicators .option .details .checks{
   -ms-flex-line-pack: end;
       align-content: flex-end;
}
.indicators .option .details .checks .form-check {
  border-bottom: 1px solid #DCDFE6;
}

.indicators .option .details .checks .form-check input {
  margin-top: 8px;
  display: inline-block;
}

.indicators .option .details .checks .form-check label {
  margin: 4px;
  font-size: 13px;
}

.indicators .option .details .checks .form-check:last-child {
  border-bottom: none;
}







.indicator  {
  padding: 0 6px 0 12px;
}
.indicator_checkbox {
  pointer-events: none;
}

/* password toggle*/
#yourPassword {
  display: inline-block;
}
#togglePassword {
  margin-left: -10%;
  display: inline;
  vertical-align: middle;
}

/* comfirm password toggle*/
#yourPassword2 {
  display: inline-block;
}
#togglePassword2 {
  margin-left: -10%;
  display: inline;
  vertical-align: middle;
}

/*student survey*/
#survey_rating {
  margin-right: 10px;
}


/* overwrite select2*/
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    margin-left: 20px;
}

/* jquery UI datepicker */
.ui-datepicker {
    background: #fff;
}

.bg-dark {
--bs-bg-opacity: 1;
background-color: rgba(var(--color-primary-rgb),var(--bs-bg-opacity))!important;
}

.table-dark {
--bs-table-color: #fff;
--bs-table-bg: var(--color-primary);
--bs-table-border-color: var(--bs-card-border-width) solid var(--bs-card-border-color);
--bs-table-striped-bg: var(--color-lightprimary);
--bs-table-striped-color: #fff;
--bs-table-active-bg: var(--font-secondary);
--bs-table-active-color: var(--font-secondary);
--bs-table-hover-bg: var(--color-lightprimary);
--bs-table-hover-color: #fff;
color: var(--bs-table-color);
border-color: var(--bs-table-border-color);
}

.trainingcalendar-fix-div {
  position: relative;
}

.trainingcalendar-fix-div i {
  position: absolute;
  right: 30px;
  top: 10px;
  z-index: 1;
}

.flatpickr-calendar.open,
.ui-timepicker-wrapper {
z-index: 1999999999 !important;
}

#disabled-link {
  color: gray;
  /*pointer-events: none;*/
  cursor: default;
  text-decoration: none;
}

.session-canceled {
  width:auto;
  background-color: #d64238;
  color:#eee;
  font-weight:bold;
  text-align: center;
  font-size:16px;
  padding:10px;
}

/* shopping cart checkbox */
.checkbox-container {
  display: flex;
  align-items: flex-start; /* Align checkbox at the top */
  gap: 5px; /* Space between checkbox and text */
  margin-bottom: 10px; /* Space between checkboxes */
}
.checkbox-container input {
  margin-top: 5px;
}
.checkbox-container span {
  display: block;
  max-width: 100%; /* Adjust width to control wrapping */
  word-wrap: break-word;
  padding-top: 0px;
}







.livetraining_background{
  background: var(--background);
}


.btn_register {
  width:100%;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-primary);
  background: linear-gradient(180deg,rgba(var(--rgba-dark-purple), 1) 0%, rgba(var(--rgba-light-purple), 1) 100%);
  text-align: center;
  font-size: 21px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 500;
}

.btn_register:hover,
.btn_register:focus {
  transition: all 0.2s ease, visibility 0s;
  color: var(--color-primary);
  background: white;
  border: 1px solid var(--color-primary);
  box-shadow: 2.12px 2.12px 44px 3px rgba(142, 78, 227, 0.7);
}

.disabled {

  width:100%;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  color: #fff;
  background: #5ec094;
  text-align: center;
  font-size: 21px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 500;

  cursor: not-allowed;
  pointer-events:none;
}

/* ---------------------------------------------------------------- */
/* ----- CONTENT ----- */
/* ---------------------------------------------------------------- */

.livecalendar {
  padding-top: 0.5rem;
}

.livecalendar .container-fluid > .d-flex {
  gap: 4rem;
}



.livecalendar h1, .livecalendar h2, .livecalendar h3, .livecalendar h4, .livecalendar h5, .livecalendar h6, .livecalendar p, .livecalendar a {
margin: 0;
padding: 0;
}



/* ---------------------------------------------------------------- */
/* ----- LEFT FILTER BAR ----- */
/* ---------------------------------------------------------------- */

.left-filter-bar {
  width: 25%;
}

.left-filter-bar .accordion {
  width: 100% !important;
}

.left-filter-bar .accordion .accordion-item {
  margin-top: 20px;
  background: var(--background);
}

.left-filter-bar .accordion .accordion-button span {
  margin-right: 10px;
}

.left-filter-bar .accordion-button:not(.collapsed) {
  background: var(--background);
  outline: none;
}

.left-filter-bar .accordion-button {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--black);
  background: var(--background);
}

.left-filter-bar .accordion-button span img {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

.left-filter-bar .accordion-button span img.bigger {
  width: 28px;
  height: 28px;
  margin-right: 0;
}

.left-filter-bar .accordion-item {
  border: 0;
}

.left-filter-bar .accordion-item,
.left-filter-bar .accordion-button {
  border-radius: 6px !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}

.left-filter-bar .options-wrapper .option {
  border-bottom: 1px solid var(--light-gray);
  padding: 0.5rem;
}

.left-filter-bar .options-wrapper .option:last-child {
  border: none;
}

.left-filter-bar .options-wrapper .option span {
  padding-right: 10px;
  cursor: pointer;
}

.left-filter-bar .options-wrapper .option span img {
  width: 24px;
  height: 24px;
}

.left-filter-bar .options-wrapper .option span img.bigger {
  width: 36px;
  height: 36px;
}

.left-filter-bar .options-wrapper .option label {
  font-size: 1rem;
  font-weight: 400;
  padding-left: 15px;
}

.left-filter-bar input[type="checkbox"] {
  accent-color: var(--color-primary);
}

.left-filter-bar input[type="checkbox"],
.left-filter-bar input[type="checkbox"]+label {
  cursor:pointer;
}

.categories-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.categories-wrapper p {
  padding: 0.4rem 0.8rem;
  border: 2px solid var(--light-gray);
  border-radius: 1000px;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
}

.categories-wrapper p.checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--white);
}

/* ---------------------------------------------------------------- */
/* ----- MAIN CONTENT ----- */
/* ---------------------------------------------------------------- */

.main-content-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 3rem;
}

.main-content-wrapper .options-bar {
  margin-bottom: 1.5rem;
}

.main-content-wrapper .options-bar .custom-select {
  width: 200px;
  position: relative;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 18px;
  right: 14px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: var(--black) transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent var(--black) transparent;
  top: 11px;
}

.select-items div,.select-selected {
  color: var(--black);
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent var(--light-gray) transparent;
  cursor: pointer;
}

.select-selected {
  border-color: var(--light-gray);
}

.same-as-selected {
  color: var(--white) !important;
}

.select-items {
  position: absolute;
  background-color: var(--white);
  border-radius: 8px;
  top: 110%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: var(--color-primary);
  color: var(--white);
}
.select-items div:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.select-items div:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-color: transparent;
}

.main-content-wrapper .options-bar .layout-options {
  gap: 0.5rem;
}

.main-content-wrapper .options-bar .layout-options > div {
  background: var(--white);
  border-radius: 8px;
  height:50px;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
}

.main-content-wrapper .options-bar .layout-options > div.active {
  color: white;
  background: var(--color-primary);
}

.main-content-wrapper .options-bar .layout-options > div svg path {
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  fill: var(--black);
}

.main-content-wrapper .options-bar .layout-options > div.active svg path {
  fill: var(--white);
}

.main-content-wrapper .d-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.main-content-wrapper .d-grid.list-view {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.main-content-wrapper .d-grid .event-card {


  
  position: relative;
  cursor: pointer;


  width:100%;
  height: 500px;


  background: rgba(var(--container-bg), var(--alpha-bg));
  border-radius: 25px;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
  color: var(--color-primary);
}



.empty {
  height: 400px;
  padding: 1rem;
  background: #E8E4F2;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}


.main-content-wrapper .d-grid.list-view .event-card {
  height: unset;
  min-height: 120px;
  padding: 0.5rem;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-content-wrapper .d-grid .event-card > img {
  width: 100%;
  border-radius: 25px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;

}

.main-content-wrapper .d-grid .event-card > img {

  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}


.main-content-wrapper .d-grid.list-view .event-card > img {
  display: none;
}

.main-content-wrapper .d-grid .event-card .date {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.1rem 0.75rem;

  background: linear-gradient(180deg,rgba(var(--rgba-dark-purple), 1) 0%, rgba(var(--rgba-light-purple), 1) 100%);
  border-top-right-radius: 15px;
  border-top-left-radius: 0;

  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  text-align: center;
  line-height: 105%;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
}
.main-content-wrapper .d-grid .event-card .date span{
  display: block;
  margin-top:4px;
  font-size: 19px;
  font-weight: 700;
}

.main-content-wrapper .d-grid.list-view .event-card .date {
  position: relative;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 104px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-content-wrapper .d-grid .event-card .date.current {
  background: var(--color-primary);
}

.main-content-wrapper .d-grid .event-card .details-div {
  font-size: 0.8em;
  line-height: 200%;
  padding: 0 .5rem;
}

.main-content-wrapper .d-grid .event-card .details-div .d-flex img {
  margin-right: 5px;
}

.main-content-wrapper .d-grid .event-card .details-div > img {
  width: 36px;
  height: 36px;
}

.main-content-wrapper .d-grid .event-card .title {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 10px;
  padding: .5rem;
}

.main-content-wrapper .d-grid .event-card .enter-div {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  gap: 0.5rem;
}

.main-content-wrapper .d-grid.list-view .event-card .enter-div {
  left: unset;
  right: 20px;
  width: unset;
  top: 50%;
  bottom: unset;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.main-content-wrapper .d-grid .event-card .enter-div .seats-div {
  width: 80%;
  padding: 0.5rem;

  background:white;
  border-radius: 15px;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));

  font-size: 0.8em;
  gap: 10px;
}

.main-content-wrapper .d-grid .event-card .enter-div .price-text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: var(--gray);
  border-radius: 8px;
  color: var(--white);
  font-weight: 600;
}

.main-content-wrapper .d-grid.list-view .list-view-helper {
  margin-left: 1rem;
  padding-right: 22.5rem;
  width: 100%;
}

.main-content-wrapper .d-grid .list-view-helper > img,
.main-content-wrapper .d-grid.list-view .event-card .details-div > img {
  display: none;
}

.main-content-wrapper .d-grid.list-view .list-view-title-div img {
  display: inline-block;
}

.main-content-wrapper .d-grid.list-view .list-view-helper > img {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 20rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  height: 36px;
}

/* ---------------------------------------------------------------- */
/* ----- EVENT POPUP ----- */
/* ---------------------------------------------------------------- */
.event-popup {
  display: none;
  position: fixed;
  z-index: 99;
  height: 95vh;
  min-height: 400px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60%;
  min-width: 300px;
  max-width: 1000px;
  background: white;

  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
  border-radius: 8px;
  padding: 3rem;
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 98;
}

.event-popup .content {
  gap: 3rem;
}

.event-popup .content > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
          height: calc(95vh - 8rem);
          min-height: calc(400px - 8rem);
          overflow: auto;
}

.event-popup .content .event-description {
  padding: 0.4rem 1rem 0.4rem 0.4rem;

}


.event-popup .event-details > img {
  width: 100%;
  border-radius: 25px;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.5rem;

}

.event-popup .event-details .date {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.1rem 0.75rem;

  background: linear-gradient(180deg,rgba(var(--rgba-dark-purple), 1) 0%, rgba(var(--rgba-light-purple), 1) 100%);
  border-top-right-radius: 15px;
  border-top-left-radius: 0;

  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  text-align: center;
  line-height: 105%;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
}
.event-popup .event-details .date .date span{
  display: block;
  margin-top:4px;
  font-size: 19px;
  font-weight: 700;
}



.event-popup .popup-enter-div {
  gap: 0.5rem;
  padding: 0.4rem
}

.event-popup .seats-div {
  width: 60%;
  padding: 0.5rem;

  background:white;
  border-radius: 15px;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));

  font-size: 0.8em;
  gap: 10px;
}
.event-popup .seats-div img {
  width: 15px;
}
.event-popup .price-text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.25rem;
}
.event-popup .price-text::after{
  content: '\00a0 CAD';
} 

.event-popup .title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.event-popup .popup-details-card {
  width: 100%;
  padding: 1rem 0.75rem;
  border-radius: 8px;
  background: white;

  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));

  font-size: 0.8em;
  gap: 10px;
  margin-top: 10px;
}

.event-popup .popup-details-card img {
  width: 24px;
  height: 24px;
}

.event-popup .popup-details-card a {
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
}

.event-popup .popup-details-card.instructor-card img {
  width: 64px;
  height: 64px;
  border: 5px solid var(--light-gray);
  border-radius: 50%;
}

.event-popup .popup-details-card.instructor-card {
  gap: 1rem;
}

.event-popup  .popup-details-card.instructor-card div.instructor-name {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.event-popup .event-description .map-wrapper {
  height: 300px;
  margin-bottom: 2rem;
}

.event-popup .event-description .map-wrapper iframe {
  width: 100%;
  height: 100%;
}




.event-popup .event-description .program > p {
  font-weight: 600;
}

.event-popup.d-block {
  display: block;
}

.event-popup > button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
}

.event-popup > button img {
  width: 24px;
  height: 24px;
}

.icon-circle {
border-radius: 50%;

padding: 5px;
background: #fff;
border: 3px solid var(--color-primary);
color: var(--color-primary);
text-align: center;
font-size:24px;
font-weight: bold;

}

.color-white {
  color: white;
}











/* VANILLA CALENDAR STYLE ----------------------------------- */

[data-calendar-theme=light] .vanilla-calendar-day__btn_today {
background: var(--color-primary);
color: var(--color-lightprimary);
}
[data-calendar-theme=light] .vanilla-calendar-day__btn_today:hover {
background: var(--color-secondary);
color:var(--color-primary);
}


[data-calendar-theme=light] .vanilla-calendar-day__btn_selected,
[data-calendar-theme=light] .vanilla-calendar-day__btn_selected:hover {
background: var(--color-lightprimary);
color:var(--color-primary);
}


[data-calendar-theme=light] .vanilla-calendar-week__day_weekend {
color: #64748b;
}


[data-calendar-theme=light] .vanilla-calendar-day__btn_weekend,
[data-calendar-theme=light] .vanilla-calendar-day__btn_holiday {
color: inherit;
}
[data-calendar-theme=light] .vanilla-calendar-day__btn_weekend:hover,
[data-calendar-theme=light] .vanilla-calendar-day__btn_holiday:hover,
[data-calendar-theme=light] .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_hover,
[data-calendar-theme=light] .vanilla-calendar-day__btn_holiday.vanilla-calendar-day__btn_hover {
background: inherit;
}


[data-calendar-theme=light] .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_selected,
[data-calendar-theme=light] .vanilla-calendar-day__btn_holiday.vanilla-calendar-day__btn_selected,
[data-calendar-theme=light] .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_selected:hover,
[data-calendar-theme=light] .vanilla-calendar-day__btn_holiday.vanilla-calendar-day__btn_selected:hover {
color: inherit;
background: inherit;
border: 2px solid #eee;
border-radius: 50%;
width: 80%;

}


.calendar-legend {
margin-top: 1rem;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
gap: 1rem;
}

.calendar-legend .d-flex .color {
width: 24px;
height: 24px;
border-radius: 4px;
}

.calendar-legend .d-flex p {
font-size: 12px;
text-transform: uppercase;
}







@media screen and (max-width: 1400px) {
  .livecalendar .container-fluid > .d-flex {
      gap: 2rem;
  }
  .left-filter-bar {
      width: 28%;
  }
  .main-content-wrapper .d-grid {
      grid-template-columns: 1fr 1fr;
  }
  .event-popup {
      width: 80%;
  }
}


@media screen and (max-width: 1200px) {
 
  .calendar .calendar_content div, .calendar_weekdays div {
      font-size: 12px;
  }
  .calendar_content div.checked:after, .calendar_content div.today:after {
      width: 24px;
      height: 24px;
  }
  .calendar_header h2 {
      font-size: 1rem;
  }
  button.switch-month {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
  }
  .calendar_header {
      padding-bottom: 0;
  }
  .main-content-wrapper .d-grid .event-card .title {
      font-size: 1rem;
  }
  .main-content-wrapper .d-grid .event-card {
      height: unset;
      min-height: 570px;
  }
.main-content-wrapper {
      width: 100%;
     
  }


  .main-content-wrapper .d-grid {
  
      grid-template-columns: 1fr;
  }




  .main-content-wrapper .d-grid .event-card .enter-div {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
  }
  .main-content-wrapper .d-grid.list-view .event-card .enter-div {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      width: calc(100% - 1rem);
      left: 0.5rem;
      bottom: 0.5rem;
      top: unset;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
      
  }
  .main-content-wrapper .d-grid.list-view .event-card {
      height: 170px;
  }
  .main-content-wrapper .d-grid.list-view .event-card .date {
      height: 80px;
  }
  .main-content-wrapper .d-grid .event-card .enter-div .seats-div {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
  }
  .main-content-wrapper .d-grid .event-card .enter-div .price-text {
      padding-block: 1rem;
  }
  .main-content-wrapper .d-grid.list-view .event-card .enter-div .price-text {
      padding-block: 1rem;
      width: 40%;
  }
  .main-content-wrapper .d-grid.list-view .list-view-helper > img {
      right: 14rem;
  }
  .main-content-wrapper .d-grid.list-view .list-view-helper {
      padding-right: 0;
  }
  .main-content-wrapper .d-grid.list-view .list-view-helper > img {
      right: 0.5rem;
      top: 0.5rem;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
  }
  .event-popup {
      width: 90%;
  }
  .event-popup .content {
      gap: 2rem;
  }
  .event-popup .popup-details-card a {
      font-size: 12px;
  }
  .event-popup .price-text {
      font-size: 1rem;
  }
  .event-popup .event-description > p,
  .event-popup .event-description li {
      font-size: 0.8em;
  }


  .main-content-wrapper .d-grid .event-card .enter-div .seats-div {
      width: 100%;
  }
  .main-content-wrapper .d-grid.list-view .event-card .enter-div .seats-div {
      width: 60%;
  }
}

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

  .livecalendar .container-fluid > .d-flex {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
  }
  .left-filter-bar {
      width: 100%;
  }

  .main-content-wrapper .d-grid {
      grid-template-columns: 1fr;
  }
  .calendar_content div.checked:after, .calendar_content div.today:after {
      width: 32px;
      height: 32px;
  }
  .main-content-wrapper .d-grid .event-card .enter-div {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
  }
  .main-content-wrapper .d-grid .event-card {
      min-height: 450px;
  }
  .main-content-wrapper .d-grid .event-card .enter-div .seats-div {
      width: 60%;
  }
  .event-popup .content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
  }
  .event-popup {
      overflow: auto;
  }
  .event-popup .content > * {
      width: 100%;
  }
}

.calendar-legend-color {
width: 24px;
height: 24px;
border-radius: 4px;
}

.d-grid .event-card .canceled {
  background-color: #5ec094;
  color:#eee;
  font-weight:bold;
  text-align: center;
  margin-left: 5px;
  margin-bottom:10px;
  padding: 2px 10px;
}
.d-grid.list-view .event-card .canceled {
  background-color: #5ec094;
  color:#eee;
  font-weight:bold;
  text-align: center;
  margin-bottom:10px;
  padding: 2px 10px;
}
.btn_canceled {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 21px;
  padding: 10px 5px;
  color: white;
  background: #d64238;
  text-decoration: none;
}
.btn_canceled:hover {
  color: white;
  background: var(--black);
}
.cancel-blur {
  /*filter:blur(4px);*/
  opacity: 0.4;
}


.faq-container .accordion{
  background: rgb(255 255 255 / 50%);
  border: 0;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
}
.faq-container .accordion-button{
  font-size: 1.4rem;
  background: transparent;
  color: var(--color-primary);
}
.faq-container .accordian-header,
.faq-container .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background: transparent;
}

.faq-container .accordion-item {
  background-color: transparent;
}



.form-control, .form-select {
  border-radius: 25px;
}

 .select2-selection--multiple,
 .select2-selection--single  {
  border-radius: 25px!important;
  border: 1px solid #ced4da;
  }

.select2-selection__choice {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-primary);
    border-radius: 25px;

    
}
.select2-container--bootstrap .select2-selection--single {

  padding: .375rem .75rem!important;
}

.select2-selection {
  font-size: 1.1rem!important;
}


.select2-selection--multiple .select2-selection__choice {
  background-color: #e9e8f0;
  border: 1px solid var(--color-primary);
  border-radius: 25px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: .375rem .75rem!important;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
  background-color: var(--color-primary)!important;

}


.bigselect {

    font-size: 1.7em;
    width: auto;
    border-radius: 50px;
    background-color: white;
    padding: 15px 50px 15px 30px;
    border: 2px solid var(--color-primary);
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
   color: black;
    background-position: 98%;
    background-size: 30px auto;

    text-align: center;

}

.bigselect:after {
  color: black;
}


.rounded {
  border-radius: 25px;
}