:root {
    --primary-color: #00a99d;
    --primary-rgb: 0, 169, 157;
    --primary-light-color: #4DC3BA;
    --btn-disabled-bg: #4DC3BA;
    --primary-dark-color: #008178;
    --primary-faded-color: #1E423F;
    --primary-wash-color: #F2FBFA;
    --pink-color: #FFEEE9;
    --tertiary-color: #19221D;
    --border-color: #BDBDBD;
    --ui-text-black: #131313;
    --tones-600: #757575;
    --tones-800: #424242;
    --tones-800-70: #19221DB2;
    --correct-color: #4CAF50;
    --error-color: #E4002B;
    --white: #FFFFFF;
    --black: #000000;
}

body {
    font-size: 16px;
    line-height: 28px;
    font-family: acumin-pro, sans-serif;
    font-weight: 300;
    padding-top: 50px;
}

@media (min-width: 768px) {
    body {
        padding-top: 0;
    }
}

@media (min-width: 992px) {
    main {
        min-height: calc(100vh - 120px - 500px);
    }
}

body.home main::before {
    max-height: 100%;
}

p:last-child {
    margin: 0;
}

a {
    text-decoration: none;
}

h1,
.h1 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
}

h2,
.h2 {
    font-size: 34px;
    line-height: 42px;
    font-weight: 700;
}

h3,
.h3,
article h2,
article .h2,
.woocommerce-thankyou-order-received {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.25px;
    font-weight: 700;
}

.woocommerce-thankyou-order-received {
    color: var(--black);
    margin-bottom: 2rem;
    padding-top: 3rem;
}

h4,
.h4,
article h3,
article .h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

h5,
.h5,
.large-text p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0.15px;
}

h6,
.h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 3px;
}

@media (min-width: 768px) {

    h2,
    .h2 {
        font-size: 48px;
        line-height: 60px;
    }

    h3,
    .h3,
    article h2,
    article .h2 {
        font-size: 34px;
        line-height: 42px;
    }

    h6,
    .h6 {
        font-size: 20px;
        letter-spacing: 5px;
    }

    .h3-md {
        font-size: 34px;
        line-height: 42px;
        letter-spacing: 0.25px;
        font-weight: 700;
    }

    .large-md-text p {
        font-size: 20px;
        line-height: 28px;
        font-weight: 400;
        letter-spacing: 0.15px;
    }
}

strong {
    font-weight: 700;
}

footer {
    background: var(--ui-text-black);
    color: var(--white);
}

@media screen and (min-width:1200px) {
    .logo-wrapper {
        position: fixed !important;
        top: 0;
        z-index: 101;
        transition: .3s ease top;
    }

    .logo-wrapper.fixed-site-logo {
        top: -24px;
    }

    .logo-wrapper {
        top: 0;
    }

    .admin-bar .logo-wrapper {
        top: 32px;
    }

    .admin-bar .logo-wrapper.fixed-site-logo {
        top: 8px;
    }

    .logo-wrapper.higher-logo.fixed-site-logo {
        top: -93px;
    }

    .logo-wrapper.higher-logo .logo-flag {
        transform: translateY(80px);
    }
}

.logo-flag {
    position: relative;
    display: block;
    margin-top: -100%;
    transform: translateY(64px);
    width: 76px;
    height: 93px;
    background: url(../images/logo-flag.svg) no-repeat left center;
    background-size: contain;
    z-index: 102;
}

.logo-flag img {
    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
}

@media screen and (min-width:1200px) {
    .header-title-wrapper {
        margin-left: 132px;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

body.admin-bar header {
    top: 32px;
}

.top-nav {
    position: relative;
    height: 50px;
    z-index: 100;
    background: var(--ui-text-black);
}

.top-nav a {
    color: var(--white);
}

.logo-text {
    font-size: 17px;
    line-height: 17px;
    font-weight: 300;
    color: var(--white);
    display: block;
}

.logo-text strong {
    font-weight: 900;
}

.mobile-icons {
    line-height: 50px;
}

.search-reveal.shown .open-search {
    display: none;
}

.close-search {
    display: none !important;
}

.search-reveal.shown .close-search {
    display: inline-block !important;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 102;
    display: none;
    -webkit-transition: background 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: background 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mobile-search {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: top 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: top 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mobile-search.shown {
    top: 50px;
}

.mobile-menu.shown {
    display: block;
}

.mobile-menu.show-menu {
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu .menu {
    position: absolute;
    top: 0;
    right: -100%;
    width: calc(100% - 25px);
    height: 100%;
    max-width: 350px;
    background: var(--white);
    -webkit-transition: right 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: right 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mobile-menu.show-menu .menu {
    right: 0;
}

.menu-area {
    height: calc(100% - 184px);
    overflow: auto;
    overflow-y: auto;
    overflow-x: hidden;
    color: #555;
}

.menu-area.logged-in-not-pro {
    height: calc(100% - 244px);
}

.menu-area a {
    color: var(--black);
    display: block;
    padding: .5rem 0;
    font-weight: bold;
}

.menu-area a i {
    margin-top: 6px;
}

.menu-area ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding: 0 1rem;
}

.menu-area ul.underline-lis>li {
    border-bottom: 1px solid var(--border-color);
}

.menu-area .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--white);
    width: 100%;
    height: 100%;
    -webkit-transition: left 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: left 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.menu-area .sub-menu.shown {
    left: 0;
}

.subjects-menu {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0px 4px 16px rgba(1, 49, 45, 0.06);
    box-shadow: 0px 4px 16px rgba(1, 49, 45, 0.06);
}

@media screen and (min-width:1200px) {
    .subjects-menu.fixed-subjects-menu {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
    }

    body.admin-bar .subjects-menu.fixed-subjects-menu {
        top: 32px;
    }

    .subjects-menu.fixed-subjects-menu .mega-menu {
        max-height: calc(100vh - 60px);
        overflow: auto;
    }

    body.admin-bar .subjects-menu.fixed-subjects-menu .mega-menu {
        max-height: calc(100vh - 92px);
    }
}

.subjects-menu-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.subjects-menu-ul>li {
    position: relative;
    display: inline-block;
}

.subjects-menu-ul>li::after {
    content: '|';
    color: var(--border-color);
}

.subjects-menu-ul>li:last-child::after {
    display: none;
}

.subjects-menu-ul>li>ul {
    display: none;
}

.subjects-menu-ul>li:hover>ul {
    display: block;
    margin: 0 0 0 -10px;
    position: absolute;
    list-style: none;
    padding: 15px 12px 15px 15px;
    background: var(--white);
    white-space: nowrap;
    right: 0;
    text-align: right;
}

.subjects-menu-ul>li:hover>ul a {
    padding: 0;
}

.subjects-menu a {
    color: var(--ui-text-black);
    font-weight: bold;
    padding: 0;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom 0.5s ease;
    transition: border-bottom 0.5s ease;
}

.subjects-menu-ul a {
    padding: 0 7px;
}

.subjects-menu a:hover {
    border-bottom-color: var(--ui-text-black);
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    -webkit-box-shadow: 0px 32px 64px 0px rgba(1, 49, 45, 0.141);
    box-shadow: 0px 32px 64px 0px rgba(1, 49, 45, 0.141);
}

.mega-menu li {
    display: block;
    padding: 2px 0;
}

.mega-menu li a {
    font-weight: 300;
}

.mega-menu-close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

.close-search-focus {
    margin-top: 14px;
}

body.with-overlay {
    overflow: hidden;
}

body.with-overlay::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 2;
}

body.with-overlay.search-shown::after {
    opacity: 1;
}

.search-quick-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 100;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: none;
}

.mobile-search .search-quick-results {
    margin: 0 15px;
    width: calc(100% - 30px);
}

body.show-quick-results .search-quick-results {
    display: block;
}

.search-quick-results li {
    margin: 5px 0;
}

.search-quick-results a {
    color: var(--black);
    font-weight: bold;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom-color .3s ease;
    transition: border-bottom-color .3s ease;
}

.search-quick-results a:hover {
    border-bottom-color: var(--black);
}

@media (min-width: 1200px) {
    header {
        position: relative;
        top: auto;
        left: auto;
    }

    body.admin-bar header {
        top: auto;
    }

    .nav-buttons {
        padding-top: 14px;
    }

    header .search-form {
        padding-top: 14px;
    }

    .logo-text {
        padding-top: 3px;
        font-size: 24px;
        line-height: 24px;
    }

    .top-nav {
        height: 74px;
    }

    .logo-flag {
        width: 124px;
        height: 140px;
        transform: translateY(112px);
    }

    .logo-flag img {
        width: 81px;
    }

    .mobile-menu,
    .mobile-search {
        display: none !important;
    }

    header .search-form .form-control {
        height: 46px;
        border: 1px solid var(--border-color);
        background: var(--tones-800);
        color: var(--white);
    }

    .show-on-search {
        display: none;
    }

    body.search-shown .show-on-search {
        display: block !important;
    }

    body.search-shown .hide-on-search {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .mega-menu {
        display: none !important;
    }
}

.content-menu {
    box-shadow: 0px 4px 16px 0px rgba(1, 49, 45, 0.059);
    line-height: 24px;
}

@media (min-width: 992px) {
    .content-menu {
        box-shadow: none;
    }
}

.content-menu a {
    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom-color .5s ease;
    transition: border-bottom-color .5s ease;
}

.content-menu a:hover {
    border-bottom-color: var(--black);
}

.content-menu a.text-primary:hover {
    border-bottom-color: var(--primary-color);
}

.content-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.content-menu li {
    padding: 5px 0;
}

.content-menu li:last-child {
    padding-bottom: 0;
}

.content-menu>ul>li {
    position: relative;
    padding-left: 0;
}

.content-menu .has-children span {
    cursor: pointer;
    position: absolute;
    top: 3px;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.content-menu .has-children>ul {
    display: none;
}

.content-menu .has-children.active>ul {
    display: block;
}

.underlined-link {
    border-bottom: 1px solid var(--white);
    -webkit-transition: border-bottom-color .2s ease;
    transition: border-bottom-color .2s ease;
}

.underlined-link:hover {
    border-bottom-color: transparent;
}

.list-unstyled.spaced li {
    padding-bottom: 10px;
}

.list-unstyled.spaced li:last-child {
    padding: 0;
}

.social-icons li {
    padding-right: 10px;
}

.social-icons li:last-child {
    padding: 0;
}

.social-icons a {
    position: relative;
    width: 56px;
    height: 56px;
    line-height: 54px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: var(--white);
    color: var(--ui-text-black);
    display: block;
    text-align: center;
    font-size: 28px;
}

.text-success,
.text-primary {
    color: var(--primary-color) !important;
}

.text-dark-primary {
    color: var(--primary-dark-color) !important;
}

.text-tertiary {
    color: var(--tertiary-color) !important;
}

.text-white {
    color: var(--white) !important;
}

.border-color-dark-primary {
    border-color: var(--primary-dark-color);
}

.font-w-500 {
    font-weight: 500;
}

.font-w-600 {
    font-weight: 600;
}

.modal a:not(.btn) {
    color: var(--black);
    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom-color .5s ease;
    transition: border-bottom-color .5s ease;
}

.modal a:hover {
    border-bottom-color: var(--black);
}

.modal a.underlined-link {
    border-bottom-color: var(--black);
}

.modal a.underlined-link:hover {
    border-bottom-color: transparent;
}


/* Verification modal */
.modal .close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    z-index: 2;
    border: none !important;
}

#verificationForm .BottomWrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
}

#verificationForm .BottomWrapper .ChangeActionWrapper {
    display: flex;
    opacity: 1;
    flex-direction: column;
    align-items: flex-start;
}

#verificationForm .BottomWrapper .ChangeActionWrapper a {
    text-align: left;
}

.modal .ShowBlurHeader {
    background-color: var(--tertiary-color);
}

footer a {
    color: var(--white);
    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom-color .5s ease;
    transition: border-bottom-color .5s ease;
}

footer a:hover {
    border-bottom-color: var(--white);
}

footer .social-icons a {
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
    border: 0;

}

footer .social-icons a:hover {
    opacity: .5;
}


footer .h2 {
    font-weight: 400;
}

.frame {
    overflow: hidden;
    background: no-repeat top right;
    background-size: 634px 317px;
}

.frame-light {
    background-image: url(../images/top-corner.png);
    background-size: 530px 382px;
}

.frame-light::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 634px;
    background: linear-gradient(0deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(242, 251, 250, 1) 50%,
            rgba(242, 251, 250, 1) 100%);
    z-index: -1;
}

.frame-dark {
    background-color: var(--tertiary-color);
    background-image: url(../images/frame-dark.jpg);
    color: var(--white);
}

@media (min-width: 767.98px) {
    .frame-dark {
        background-size: 1270px 634px;
    }

    .frame-light::before {
        height: 1268px;
    }
}

.frame-dark p {
    color: var(--white);
}

.frame-dark a:not(.btn):not(.nav-link) {
    color: #fff;
    border-color: #fff;
    border-bottom: 1px solid #fff;
    -webkit-transition: border-bottom-color .5s ease;
    transition: border-bottom-color .5s ease;
}

.frame-dark a:not(.btn):not(.nav-link):hover {
    border-bottom-color: transparent;
}

.breadcrumb-nav ul {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    margin: -20px 0;
    scrollbar-width: none;
}

.breadcrumb-nav ul::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

.breadcrumb-nav li {
    flex: 0 0 auto;
}

main nav {
    font-size: 20px;
    letter-spacing: 0.15px;
    color: var(--primary-dark-color);
}

main nav li {
    position: relative;
    padding-right: 25px;
}

main nav i {
    position: absolute;
    right: 10px;
    top: 12px;
    font-size: 10px;
}

main a {
    color: var(--black);
}

main .underlined-link-hover {
    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom-color .5s ease;
    transition: border-bottom-color .5s ease;
}

main .underlined-link-hover:hover {
    border-bottom-color: var(--black);
}

.top-hover:hover .underlined-link-hover {
    border-bottom: 1px solid var(--black);
}

main nav a {
    color: var(--primary-dark-color);
    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom-color .5s ease;
    transition: border-bottom-color .5s ease;
}

main nav a:hover {
    border-bottom-color: var(--primary-color);
}

main .content ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

main .content ul li {
    position: relative;
    padding-left: 18px;
}

main .content ul>li::before {
    content: ' ';
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: var(--primary-color);
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
}

.expandable-content {
    position: relative;
    -webkit-transition: padding 0.5s ease;
    transition: padding 0.5s ease;
}

.expandable-content .content {
    height: 180px;
    overflow: hidden;
}

.expandable-content.expanded {
    padding-bottom: 50px;
}

.expandable-content::after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;

    background: linear-gradient(180deg, rgba(242, 251, 250, 0) 0%, var(--primary-wash-color) 70%);

    -webkit-transition: height 0.5s ease, opacity 0.5s ease;
    transition: height 0.5s ease, opacity 0.5s ease;

    opacity: 1;
}

.expandable-content.expanded::after {
    height: 50px;
    opacity: 0;
}

.expandable-content .read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--black);
    line-height: 24px;
    font-weight: 700;
    z-index: 2;

    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom-color 0.5s ease;
    transition: border-bottom-color 0.5s ease;
}

.expandable-content .read-more:hover {
    border-bottom-color: var(--black);
}

main p {
    color: var(--black);
}

main p small {
    font-size: 12px;
    line-height: 14.52px;
}

main p a {
    border-bottom: 1px solid #555;
    -webkit-transition: border 0.4s ease;
    transition: border 0.4s ease;
}

main p a:hover {
    border-bottom-color: transparent;
}

.lecVideo {
    position: relative;
    width: 222px;
    height: 222px;
    display: block;
    overflow: hidden;
    box-shadow: 0px 4px 16px rgba(1, 49, 45, 0.06);
    transition: box-shadow 0.6s ease;
}

.circle-icon {
    position: relative;
    width: 222px;
    height: 222px;
    background: var(--white);
    border-radius: 50%;
    display: block;
    overflow: hidden;
    box-shadow: 0px 4px 16px rgba(1, 49, 45, 0.06);
    transition: box-shadow 0.6s ease;
}

.circle-icon.small {
    width: 118px;
    height: 118px;
}

.circle-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .circle-icon {
        padding-top: 0;
        height: 222px;
    }
}

.circle-icon:hover,
.top-hover:hover .circle-icon {
    box-shadow: 0px 16px 32px rgba(1, 49, 45, 0.12);
}

img {
    max-width: 100%;
    height: auto;
}

.gradient-bg {
    background: linear-gradient(180deg, var(--primary-wash-color) 0%, rgba(255, 255, 255, 0) 43.23%);
}

.transparent-card {
    position: relative;
}

.transparent-card img {
    display: block;
    margin-bottom: 1rem;
    max-width: 100%;
    height: auto;
}

@media (max-width: 767.98px) {
    .scrolling-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }
}

.card {
    background: var(--white);
    border: 0;
    -webkit-box-shadow: 0px 8px 32px rgba(1, 49, 45, 0.1);
    box-shadow: 0px 8px 32px rgba(1, 49, 45, 0.1);
    -webkit-border-radius: 16px;
    border-radius: 16px;
}

.frame-dark .card {
    background: var(--ui-text-black);
    color: var(--white);
}

.feature-card img {
    width: 100px;
    height: auto;
    margin: 0 auto;
}

.form-label,
.gfield_label {
    margin-bottom: .25rem;
}

.gfield_label {
    font-weight: 300 !important;
    margin-bottom: 5px !important;
}

.gform_legacy_markup_wrapper ul.gform_fields li.gfield {
    padding-right: 0 !important;
}

.form-control,
.ginput_container input,
.ginput_container textarea {
    background: #F0F5F5;
    border: 1px solid var(--border-color);
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.ginput_container input,
.ginput_container textarea {
    padding: .375rem .75rem !important;
}

body .gform_wrapper.gravity-theme .gfield textarea.large {
    resize: vertical;
    min-height: 86px;
    height: auto;
}

.gform_footer {
    margin: 0 !important;
    padding: 0 !important;
    text-align: right;
}

.gform_required_legend {
    display: none;
}

.btn {
    min-height: 46px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 12px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.btn-danger {
    border: 0;
}

.btn-flex {
    height: auto;
    min-height: 46px;
}

.btn-sm {
    height: 34px;
    line-height: 22px;
}

.btn-transparent:hover {
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background: var(--primary-dark-color);
    border: 0;
}

.btn-white {
    background: var(--white);
    border: 0;
    color: var(--ui-text-black) !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
    background: #ffffffcc !important;
}

.btn-white.disabled,
.btn-white:disabled {
    background: var(--white) !important;
}

.btn-dark-outline {
    background: var(--ui-text-black);
    border: 1px solid var(--white);
    color: var(--white) !important;
    transition: .3s ease !important;
}

.btn-dark-outline:hover,
.btn-dark-outline:focus,
.btn-dark-outline:active {
    background: var(--ui-text-black) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--border-color) !important;
}

.btn-dark-outline.disabled,
.btn-dark-outline:disabled {
    background: var(--ui-text-black) !important;
    border: 1px solid var(--border-color);
    color: var(--border-color) !important;
}

.btn-success {
    background: var(--primary-dark-color);
    border: 0;
    /*color: var(--ui-text-black) !important;*/
}

.btn-primary:hover,
.btn-success:hover {
    background: var(--primary-color);
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.btn-light {
    color: var(--black) !important;
}

.btn-light:hover {
    background-color: var(--border-color);
}

.btn-dark {
    background: var(--ui-text-black);
    border: 0;
    color: var(--white);
}

.btn-dark:hover {
    background: var(--tertiary-color);
}

.btn-link {
    color: var(--black);
    font-weight: normal;
    font-size: inherit;
}

.premium-card {
    background: var(--tertiary-color);
    color: var(--white);
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.bg-dark {
    background: var(--tertiary-color) !important;
    color: var(--white);
}

.premium-card.bg-dark {
    background: var(--ui-text-black) !important;
}

.premium-card p {
    color: var(--white);
}

.premium-card .form-control {
    background-color: var(--tones-800);
    color: var(--white);
    border: 0;
}

.premium-card .form-control::placeholder,
header .search-form .icon-front .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.image-icon-box {
    width: 32px;
    height: 50px;
    display: flex;
    align-items: center;
}

.icon-box {
    border: 2px solid var(--primary-light-color);
    width: 32px;
    height: 32px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.1px;
}

.frame-dark .icon-box {
    border-color: var(--tones-600);
    background: var(--tones-800);
}

.frame-dark .simple-card,
.premium-card .simple-card,
.checkout_coupon .simple-card {
    background: var(--tones-800);
    border: 0 !important;
}

.frame-dark .simple-card .icon-box {
    border-color: var(--primary-light-color);
}

.sub-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.buttons a {
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.buttons a:hover {
    opacity: 0.5;
}

.buttons img {
    height: 45px;
    width: auto;
}

.simple-card {
    border: 1px solid var(--border-color);
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.outline-card {
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background-color: #FFFFFF0D;
    border: 1px solid var(--border-color);
}

.bg-light {
    background-color: #F1F1F1 !important;
}

.bg-pink {
    background-color: var(--pink-color) !important;
    border-color: var(--pink-color)
}

.bg-washed {
    background-color: var(--primary-wash-color) !important;
}

.bg-success {
    background-color: var(--primary-light-color) !important;
    color: var(--ui-text-black) !important;
}

.bg-success p {
    color: var(--ui-text-black) !important;
}

.simple-card.bg-light,
.simple-card.bg-washed {
    border: 0;
}

.simple-card.bg-dark p,
.simple-card.bg-dark h1,
.simple-card.bg-dark .h1,
.simple-card.bg-dark h2,
.simple-card.bg-dark .h2,
.simple-card.bg-dark h3,
.simple-card.bg-dark .h3,
.simple-card.bg-dark h4,
.simple-card.bg-dark .h4,
.simple-card.bg-dark h5,
.simple-card.bg-dark .h5,
.simple-card.bg-dark h6,
.simple-card.bg-dark .h6 {
    color: var(--white);
}

.card-special-image {
    margin-top: -150px;
}

@media (min-width: 768px) {
    .card-special-image {
        margin-top: 0;
    }
}

.testimonial {
    color: #555;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

.embed-responsive::before {
    display: block;
    content: ""
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-21by9::before {
    padding-top: 42.85714%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-3by4::before {
    padding-top: 133.33333%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.form-radio-label {
    position: relative;
    border: 1px solid var(--border-color);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 12px 12px 12px 42px;
    display: block;
    cursor: pointer;

    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.form-radio-label:hover {
    border-color: var(--primary-light-color);
}

.form-radio-input {
    position: absolute;
    appearance: none;
    visibility: hidden;
}

.form-radio-input:checked~.form-radio-label {
    border-color: var(--primary-light-color);
    background: var(--tones-800);
}

.form-radio-label::before {
    content: ' ';
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    top: 18px;
    border: 1px solid var(--white);
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.form-radio-input~.form-radio-label::after {
    content: ' ';
    position: absolute;
    left: 18px;
    width: 10px;
    height: 10px;
    top: 22px;
    -webkit-border-radius: 50%;
    border-radius: 50%;

    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.form-radio-input:checked~.form-radio-label::after {
    background: var(--white);
}

.form-radio-label span {
    font-weight: 400;
    float: right;
}


.zoom-controller .image-zoom img {
    transform: scale(1);
    -webkit-transition: transform .4s ease;
    transition: transform .4s ease;
}

.zoom-controller:hover .image-zoom img {
    transform: scale(1.1);
}

.zoom-controller .image-zoom {
    overflow: hidden;
    box-shadow: 0px 4px 16px rgba(1, 49, 45, 0.06);
    transition: box-shadow 0.6s ease;
}

.zoom-controller:hover .image-zoom {
    box-shadow: 0px 16px 32px rgba(1, 49, 45, 0.12);
}

.zoom-controller.cropped .image-zoom {
    height: 300px !important;
    display: flex;
    align-items: center;
}

.cover-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sign-up-price {
    font-size: 64px;
    line-height: 60px;
    font-weight: 400;
}

.sign-up-price sub {
    font-size: 24px;
    line-height: 18px;
    letter-spacing: 5px;
    color: var(--border-color);
    bottom: auto;
}

.sign-up-price sub:first-child {
    margin-right: -20px;
}

.sign-up-price sub:last-child {
    margin-left: -10px;
    letter-spacing: normal;
}

@media (min-width: 992px) {
    .popular-sign-up .sign-up-price {
        font-size: 128px;
    }

    .popular-sign-up .sign-up-price sub:first-child {
        margin-right: -40px;
    }

    .popular-sign-up .sign-up-price sub:last-child {
        margin-left: -30px;
    }
}

.tag {
    background-color: #D9F2F0;
    color: var(--ui-text-black);
    ;
    -webkit-border-radius: 46px;
    border-radius: 46px;
    height: 50px;
    line-height: 50px;
}

.popular-sign-up .tag {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.link-fade {
    cursor: pointer;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

.link-fade:hover {
    opacity: .5;
}

.icon-front {
    position: relative;
}

.icon-front i {
    position: absolute;
    left: 10px;
    top: 12px;
    color: rgba(0, 0, 0, 0.5);
}

header .search-form .icon-front i {
    top: 12px;
    color: var(--black) !important;
}

.premium-card .icon-front i {
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1200px) {
    header .search-form .icon-front i {
        top: 16px;
        color: rgba(255, 255, 255, 0.5) !important;
    }
}

.icon-front .form-control {
    padding-left: 32px;
}

.icon-front .form-control:focus~i {
    color: var(--black)
}

.premium-card .icon-front .form-control:focus~i,
header .search-form .icon-front .form-control:focus~i {
    color: var(--white);
}

.blur-container {
    position: relative;
    min-height: 400px;
}

.blur-container.blurred .blur {
    filter: blur(12px);
}

.blur-container.blurred .blur::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.blur-container .overlay {
    display: none;
    position: absolute;
    top: 8%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 10;
}

.tab-pane .blur-container .overlay {
    top: 30px;
}

.blur-container.blurred .overlay {
    display: block;
}

.hide-answer .show-answer-show,
.show-answer {
    display: none;
}

.hide-answer .show-answer {
    display: inline-block;
}

@media (min-width: 992px) {
    .modal-dialog {
        max-width: 620px;
    }

    .modal-lg {
        max-width: 670px;
    }
}

.modal-body {
    padding: 1.5rem;
}

.modal.dark .modal-body {
    background: var(--ui-text-black);
    color: var(--white);
}

.modal.dark a:not(.btn) {
    color: var(--white);
}

article {
    color: var(--black);
}

article h1,
article .h1,
article h2,
article .h2,
article h3,
article .h3,
article h4,
article .h4,
article h5,
article .h5,
article h6,
article .h6 {
    color: var(--black);
}

article h1,
article .h1,
article h2,
article .h2,
article h3,
article .h3,
article h4,
article .h4 {
    margin-bottom: 1.5rem;
}

article h3,
article .h3 {
    margin-top: 2rem;
}

article .simple-card h3,
article .simple-card .h3 {
    margin-top: 0;
}

article hr {
    display: none !important;
}

article table,
.full-page table {
    background-color: #F1F1F1;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    margin: 2rem 0;
    color: var(--black);
    min-width: 100%;
}

article table th,
article table td,
.full-page table th,
.full-page table td {
    padding: .5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

article table th:last-child,
article table td:last-child,
.full-page table th:last-child,
.full-page table td:last-child {
    border-right: 0;
}

article table tr:last-child td,
.full-page table tr:last-child td {
    border-bottom: 0;
}

article a {
    color: var(--primary-dark-color);
    border-bottom: 1px solid var(--primary-dark-color);
    -webkit-transition: border-bottom-color .5s ease;
    transition: border-bottom-color .5s ease;
}

article a:hover {
    border-bottom-color: transparent;
}

article .premium-card h1,
article .premium-card .h1,
article .premium-card h2,
article .premium-card .h2,
article .premium-card h3,
article .premium-card .h3,
article .premium-card h4,
article .premium-card .h4,
article .premium-card h5,
article .premium-card .h5,
article .premium-card h6,
article .premium-card .h6 {
    color: var(--white);
}

article figure {
    color: var(--black);
    margin: 2rem 0;
}

article figcaption {
    padding-top: 1rem;
}

article .advert-block {
    margin: 2rem 0;
}

article .premium-card {
    margin: 2rem 0;
}

article .premium-card.expanded {
    margin: 0;
}

article .simple-card {
    color: var(--black);
}

article ul,
.category-list ul {
    padding-left: 1rem;
    list-style: none;
}

article li,
.category-list li {
    position: relative;
}

article li {
    padding-bottom: .75rem;
}

article li::before,
.category-list li::before {
    content: '•';
    color: var(--primary-dark-color);
    position: absolute;
    left: -14px;
    top: 1px;
    font-size: 22px;
    font-family: arial;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    line-height: 40px;
    background: var(--tones-800);
    color: var(--white);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    z-index: 10;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    opacity: .5;
}

.owl-carousel .owl-nav button.owl-next {
    right: 15px;
    left: auto;
}

.rounded-image {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.premium-card label {
    color: var(--white);
}

.premium-card .form-radio-label {
    background-color: var(--ui-text-black);
}

.premium-card a {
    color: var(--white);
}

.progress {
    border-radius: 4px;
    background-color: var(--tones-600);
    height: 8px;
}

.progress.quiz-progress {
    border-radius: 0;
}

.quiz-progress {
    font-size: .75rem;
    margin-top: -5px;
}

.overlay-lock {
    width: 40px !important;
    height: 80px;
    background: url(../images/lock.svg) no-repeat bottom center;
    background-size: contain;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .overlay-lock {
        width: 100px !important;
    }
}

.select2-container--default .select2-selection--single {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    display: block;
    width: 100%;
    padding: 11px 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background-color: #F0F5F5;
    height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px;
    padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.form-select {
    background-color: #F0F5F5;
    border: var(--bs-border-width) solid var(--border-color);
}

#vat_self_certify_field input {
    margin-top: 10px;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: none;
    padding-top: 1rem;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
    background: var(--tertiary-color);
    color: #fff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    border: 0;
}

.bg-dark .woocommerce form .form-row.place-order {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.bg-dark .woocommerce table.shop_table tbody th,
.bg-dark .woocommerce table.shop_table tfoot td,
.bg-dark .woocommerce table.shop_table tfoot th {
    border-top-color: var(--white);
}

.woocommerce table.shop_table {
    border-collapse: collapse;
}

.bg-dark .woocommerce table.shop_table th,
.bg-dark .woocommerce table.shop_table td {
    padding: 18px 0;
}

.bg-dark .recurring-totals th {
    border-top: 0 !important;
}

@media (min-width: 992px) {
    .checkout-side {
        position: absolute;
        top: 0;
        right: 0;
    }
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    background: var(--tertiary-color);
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    padding: 0;
}

@media (min-width: 992px) {

    .woocommerce-NoticeGroup-checkout,
    .woocommerce-notices-wrapper {
        width: 50%;
    }
}

.scan-img img {
    width: 152px;
    height: auto;
}

.letter-icon {
    color: var(--primary-dark-color);
    font-size: 6rem;
    width: 100%;
    text-align: center;
    font-weight: 500;
    margin-top: -15px;
    background: no-repeat center center;
    background-size: contain;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.letter-icon span {
    visibility: hidden;
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
}

#payment .form-row {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

#model-container.full.expanded iframe {
    height: calc(100vh - 80px)
}

#model-container .expandModel,
#dissection-container .expandModel {
    margin-right: -10px
}

#model-container .expandModel>.normal,
#dissection-container .expandModel>.normal {
    display: none
}

#model-container.expanded,
#dissection-container.expanded {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 10000 !important
}

body.admin-bar #model-container.expanded,
body.admin-bar #dissection-container.expanded {
    top: 32px !important;
    height: calc(100% - 32px) !important;
}

#model-container.expanded .model-3d {
    max-height: none
}

#model-container.expanded .model-3d .not-allowed {
    height: calc(100vh - 80px)
}

#model-container.expanded .expandModel>.normal,
#dissection-container.expanded .expandModel>.normal {
    display: inline-block
}

#model-container.expanded .expandModel>.fullscreen,
#dissection-container.expanded .expandModel>.fullscreen {
    display: none
}

#model-container .expandModel>.fullscreen,
#dissection-container .expandModel>.fullscreen {
    -webkit-animation: pulse-secondary 1.5s infinite;
    -moz-animation: pulse-secondary 1.5s infinite;
    -ms-animation: pulse-secondary 1.5s infinite;
    -o-animation: pulse-secondary 1.5s infinite;
    animation: pulse-secondary 1.5s infinite
}

#model-container.expanded #embedded-human {
    height: calc(100% - 90px);
}

body.page-template-3D-model #model-container.expanded #embedded-human {
    height: calc(100vh - 44px);
}

.dissection-image img {
    max-height: 50vh;
    width: auto !important;
    margin: 0 auto;
    display: block;
}

@-webkit-keyframes pulse-secondary {
    0% {
        -webkit-transform: scale(.9)
    }

    70% {
        -webkit-transform: scale(1);
        box-shadow: 0 0 0 25px transparent
    }

    100% {
        -webkit-transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@-moz-keyframes pulse-secondary {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 25px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@-ms-keyframes pulse-secondary {
    0% {
        -ms-transform: scale(.9)
    }

    70% {
        -ms-transform: scale(1);
        box-shadow: 0 0 0 25px transparent
    }

    100% {
        -ms-transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@-o-keyframes pulse-secondary {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 25px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes pulse-secondary {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 25px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

.rating-col {
    display: none;
}

.rating-col:first-child {
    display: block;
}

.account-quick-links a {
    display: flex !important;
    align-items: center;
}

.account-quick-links a i {
    text-align: center;
    margin-right: 10px;
    font-size: 24px;
}

.account-quick-links a,
.tabs a {
    border: 1px solid transparent;
    border-radius: 5px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    display: block;
    padding: 0 1rem;
    color: var(--white);

    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.account-quick-links a:hover,
.account-quick-links a.active,
.tabs a:hover,
.tabs a.active {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.19);
    background-color: var(--primary-faded-color);
}

.account-quick-links,
.tabs {
    border-radius: 7px;
    padding: 3px;
    border: 1px solid var(--tones-800);
}

.percentage-circle {
    width: 190px;
    height: 190px;
    margin: 0 auto;
}

.percentage-circle .percent {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    font-size: 40px;
    line-height: 30px;
    font-weight: 700;
}

.percentage-circle .percent em {
    font-size: 16px;
    font-style: normal;
}

.position-graph .position {
    position: absolute;
    top: -25px;
    transform: translateX(-50%);
    height: 100%;
}

.position-graph .position .icon {
    width: 36px;
    height: 40px;
    background: no-repeat center center;
    background-size: contain;
}

.position-graph .position::after {
    content: ' ';
    position: absolute;
    top: 45px;
    left: 50%;
    width: 5px;
    height: calc(100% - 45px);
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.position-graph .position .text {
    position: absolute;
    left: calc(100% + 5px);
    font-size: 14px;
    font-weight: 700;
    top: 5px;
    white-space: nowrap;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    background-color: var(--btn-disabled-bg);
}

.lock-message {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    width: 560px;
    max-width: 100%;
    margin: 0 auto;
}

.wp-caption {
    position: relative;
    padding: 1.5rem 0 0;
    background: var(--white);
    border: 2px solid #F1F1F1;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}

.wp-caption>a {
    display: block;
    background: var(--white);
    border: 0;
}

.wp-caption img {
    display: block;
    margin: 0 auto;
}

.wp-caption .copyright {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(var(--primary-rgb), 0.9);
    color: var(--white);
    padding: .75rem 1rem;
    font-size: .875rem;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.wp-caption:hover .copyright {
    opacity: 1;
}

.wp-caption .copyright a {
    color: var(--white);
    border-bottom-color: var(--white);
}

.wp-caption .copyright a:hover {
    border-bottom-color: transparent;
}

.wp-caption .copyright::before {
    content: '©';
    padding-right: 5px;
}

.wp-caption-text {
    padding: .75rem;
    color: var(--black);
    font-size: .875rem;
}

@media (min-width: 1200px) {
    .position-md-relative {
        position: relative;
    }
}

.rate-form .rate {
    cursor: pointer;
}

.rating .rate .selected {
    display: none;
}

.rating .rate.selected .selected {
    display: inline;
}

.rating .rate.selected .not-selected {
    display: none;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
    border-color: var(--error-color);
}

.form-control:focus {
    border-color: #6AB9FD;
}

.form-control:active {
    border-color: #050505;
}

.form-control:hover {
    border-color: var(--primary-color);
}

.woocommerce form .form-row.woocommerce-validated .select2-container,
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select,
.form-control:valid {
    border-color: #050505;
}

.recurring-totals {
    display: none;
}

.woocommerce-checkout-review-order-table tfoot td {
    text-align: right;
}

.woocommerce-checkout-review-order-table tfoot {
    vertical-align: top;
}

.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
    border-top: 1px solid var(--tones-600) !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce-checkout-review-order-table tfoot tr:last-child td {
    padding-bottom: 0 !important;
}

.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tbody td:first-child {
    padding-left: 0 !important;
}

.woocommerce-checkout-review-order-table tfoot td,
.woocommerce-checkout-review-order-table tbody td:last-child {
    padding-right: 0 !important;
}

.woocommerce-checkout-review-order-table tbody tr:last-child td {
    padding-bottom: 2rem !important;
}

.form-control.padded {
    line-height: 32px;
}

.woocommerce-remove-coupon {
    color: var(--error-color);
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    margin-left: .5rem;
}

.woocommerce-remove-coupon:hover {
    opacity: 0.75;
}

body.mobile-menu-shown {
    overflow: hidden;
}

.frame-dark .card .form-control,
.frame-dark .woocommerce form .card .form-control {
    color: var(--white);
    line-height: 32px;
    margin-top: 4px;
    border: 1px solid var(--tones-600);
    background: rgba(255, 255, 255, 0.1);
    font-weight: 300;
}

.frame-dark .woocommerce form .card .form-control {
    padding-block: 6px;
}

.frame-dark .card .form-control:focus,
.frame-dark .woocommerce form .card .form-control:focus {
    box-shadow: none;
}

.frame-dark .card .form-control::placeholder,
.frame-dark .woocommerce form .card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.premium-card .simple-card .lock-message {
    color: var(--white);
}

#quizResult {
    font-size: 5rem;
}

.explanation_text p {
    color: inherit;
}

.easepick-wrapper {
    z-index: 10;
}

.quiz-block h5 {
    cursor: pointer;
}

.fa-chevron-down {
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}

.rotate-180 {
    transform: rotate(-90deg);
}

#quizNavigator ul li {
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    font-weight: bold;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--white);
    display: inline-block;
}

#quizNavigator ul li.correct {
    background: var(--correct-color);
    border-color: var(--correct-color);
}

#quizNavigator ul li.incorrect {
    background: var(--error-color);
    border-color: var(--error-color);
}

#quizNavigator ul li.skipped {
    background: var(--tones-800);
    border-color: var(--tones-800);
}

#quizNavigator ul li.current {
    border-color: var(--correct-color);
}

.timer-block {
    text-align: center;
    font-weight: bold;
}

.timer-icon {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 6px solid #5A5A5A;
    margin-bottom: .5rem;
}

.timer-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 65px;
    width: 10px;
    margin-left: -5px;
    background: var(--primary-color);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    transform: translateY(-100%);
}

.timer-icon span::before {
    content: '';
    position: absolute;
    height: 40px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: 17px;
    margin-left: 8px;
    background: var(--primary-color);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    transform: rotate(-52deg);
}

.alert-danger .border-top {
    border-top-color: #58151c !important;
}

.alert-success .border-top {
    border-top-color: #0a3622 !important;
}

.frame-dark .alert a {
    color: inherit;
    -webkit-transition: border-bottom-color 0.5s ease;
    transition: border-bottom-color 0.5s ease;
}

.frame-dark .alert-danger a {
    border-bottom: 1px solid #58151c;
}

.frame-dark .alert-success a {
    border-bottom: 1px solid #0a3622;
}

.frame-dark a:hover {
    border-bottom-color: transparent !important;
}

.question-result {
    position: absolute;
    top: 9px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: var(--correct-color);
    color: var(--white);
}

.question-result.incorrect {
    background: var(--error-color);
}

.question-result-total {
    width: 36px;
    height: 36px;
    background: var(--correct-color);
    color: var(--white);
}

.question-result-total.incorrect {
    background: var(--error-color);
}

.question-result-total.skipped {
    background: var(--tones-800);
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

.skeleton-text {
    position: relative;
}

.btn-transparent.skeleton-text,
.btn-outline-light.skeleton-text {
    color: var(--ui-text-black);
}

.btn-primary.skeleton-text {
    color: var(--primary-dark-color);
}

.skeleton-text::before {
    content: ' ';
    position: absolute;
    left: .5rem;
    width: calc(100% - 1rem);
    height: 20px;
    top: 14px;
    background: #999;
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

.trendmd-widget-header {
    display: none;
}

.wc-item-meta {
    padding-left: 0;
    font-weight: bold;
}

.wc-item-meta p {
    color: var(--black);
}

.wc-item-meta strong {
    font-weight: 300;
}

.woocommerce-thankyou-order-details {
    margin-bottom: 2rem !important;
    padding-left: 0;
}

.woocommerce-order-overview+p {
    margin-bottom: 4rem;
}

.content-section {
    position: relative;
}

.content-section:nth-child(even)::before {
    position: absolute;
    top: 0;
    left: 0;
    content: ' ';
    width: 200vw;
    height: 100%;
    transform: translateX(-50%);
    background: var(--primary-wash-color);
    z-index: -1;
}

.table>:not(caption)>*>* {
    background: transparent;
}

.woocommerce-checkout-review-order-table.table>:not(caption)>*>* {
    color: var(--white);
}

td.product-name::before {
    content: ' ';
    width: 32px;
    height: 32px;
    background: no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 18px;
}

body .woocommerce-checkout-review-order-table tbody td.product-name,
td.product-name {
    position: relative;
    padding-left: 42px !important;
}

.feature-col i {
    font-size: 2rem;
}

.rating {
    position: relative;
}

.rating sub {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 10px;
}

.frame-dark .rating sub {
    color: rgba(255, 255, 255, 0.75) !important;
}

.frame-dark .swiper-pagination-bullet {
    background: var(--white);
}

.swiper-pagination-bullet-active,
.frame-dark .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.gfield_required_asterisk {
    color: var(--primary-color) !important;
}

@media (max-width: 767px) {
    .features-item {
        background: var(--tones-800);
        -webkit-border-radius: 8px;
        border-radius: 8px;
    }
}

@media (min-width: 768px) {
    .features-item {
        border-bottom: 1px solid var(--white);
    }


    .feature-col {
        position: relative;
        background: var(--tones-800);
    }

    .feature-col:last-child {
        background: var(--ui-text-black);
    }

    .features-header .feature-col::before {
        content: ' ';
        background: var(--tones-800);
        position: absolute;
        top: -30px;
        left: 0;
        width: 100%;
        height: 30px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .features-header .feature-col:last-child::before {
        content: ' ';
        background: var(--ui-text-black);
        position: absolute;
        top: -30px;
        left: 0;
        width: 100%;
        height: 30px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .features-item:last-child .feature-col::after {
        content: ' ';
        background: var(--tones-800);
        position: absolute;
        bottom: -31px;
        left: 0;
        width: 100%;
        height: 30px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .features-item:last-child .feature-col:last-child::after {
        content: ' ';
        background: var(--ui-text-black);
        position: absolute;
        bottom: -31px;
        left: 0;
        width: 100%;
        height: 30px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
}

.login-with-google-btn {
    background-color: var(--white);
    border: solid #ccced0;
    border-radius: 4px;
    border-width: 1px 1px 2px;
    box-sizing: border-box;
    color: #3d4145;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    margin: 0;
    outline: 0;
    overflow: hidden;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    width: 100%;
}

.login-with-google-btn .icon {
    background: url(../images/google_light.png) no-repeat 50%;
    background-size: contain;
    display: inline-block;
    height: 25px;
    margin-right: 10px;
    vertical-align: middle;
    width: 25px;
}

.frame-dark .login-with-google-btn .icon {
    background-image: url(../images/google-brands-solid-light.svg);
    height: 18px;
    width: 18px;
    margin-top: -3px;
}

.login-with-google-btn:hover {
    border-color: var(--black);
}

.login-with-apple-btn {
    background-color: var(--black);
    border: solid var(--black);
    border-radius: 4px;
    border-width: 1px 1px 2px;
    box-sizing: border-box;
    color: var(--white);
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    margin: 0;
    outline: 0;
    overflow: hidden;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    width: 100%;
}

.login-with-apple-btn .icon {
    background: url(../images/apple-brands-solid-light.svg) no-repeat 50%;
    background-size: contain;
    display: inline-block;
    height: 25px;
    margin-right: 10px;
    vertical-align: middle;
    width: 25px;
    transition: .5s background;
}

.login-with-apple-btn:hover {
    border-color: var(--black);
    background-color: var(--white);
}

/* .login-with-apple-btn:hover .icon {
    background: url(../images/apple-brands-solid-dark.svg) no-repeat 50%;
    background-size: contain;
    display: inline-block;
    height: 25px;
    margin-right: 10px;
    vertical-align: middle;
    width: 25px;
} */


.disabled-option {
    opacity: .5 !important;
    cursor: not-allowed;
    border-color: var(--white) !important;
    user-select: none;
}

@media screen and (min-width:768px) {

    .login-with-apple-btn,
    .login-with-google-btn {
        position: relative;
    }

    .login-with-google-btn .icon,
    .login-with-apple-btn .icon {
        position: absolute;
        left: 15px;
    }
}

.signup-wrapper .card {
    transition: width 0.3s ease-in-out;
}

.signup-wrapper .card .feature-col,
.signup-wrapper .card .features-item:last-child .feature-col::after,
.signup-wrapper .card .features-header .feature-col::before {
    background-color: #edf7f7;
}

@media screen and (max-width:767px) {
    .signup-wrapper .card .features-item {
        background-color: #edf7f7;
    }
}

.signup-wrapper .card .feature-col:last-child,
.signup-wrapper .card .features-item:last-child .feature-col:last-child::after,
.signup-wrapper .card .features-header .feature-col:last-child::before {
    background-color: #393d3e;
    color: var(--white);
}


/* .signup-wrapper .card-wrapper .card{
    padding: 40px 32px;
} */

#profileForm {
    position: relative;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

#profileForm .options {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-direction: column;
}

#profileForm .options .profile-option {
    background-color: #19221DBF;
    padding: 10px;
    border: 1px solid var(--tones-800);
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 6px;
    border-radius: 4px;
    flex: 1;
    transition: .3s;
    justify-content: space-between;
    position: relative;
}

#profileForm .options .profile-option::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 12px;
}

#profileForm .options .profile-option.selected::before {
    border-color: var(--white);
    background: radial-gradient(circle, var(--white) 40%, transparent 50%);
}

#profileForm .options .profile-option img {
    transition: .3s;
}

#profileForm .options .profile-option svg {
    height: 24px;
    width: 24px;
}

#profileForm .options .profile-option span {
    color: var(--white);
    line-height: 20px;
    transition: .3s;
}

#profileForm .options .profile-option span.profile-label {
    padding-left: 28px;
}

#profileForm .options .profile-option.selected,
#profileForm .options .profile-option:hover {
    background: #FFFFFF33;
    border-color: var(--primary-color);
}

#profileForm .options .profile-option.selected img,
#profileForm .options .profile-option:hover img {
    filter: brightness(0) invert(1);
}

#profileForm .options .profile-option.selected span,
#profileForm .options .profile-option:hover span {
    color: var(--white);
}

#profileForm .selected-profile-option {
    padding: 0 12px;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 14px;
    line-height: 18px;
    height: 36px;
    transition: .3s ease all;
    cursor: pointer;
}

#profileForm .selected-profile-option:hover {
    background-color: #f6f6f6;
}

#profileForm .selected-profile-option img,
#profileForm .selected-profile-option svg {
    width: 14px;
}

#profileForm .subtitle {
    font-weight: 600;
}

#profileForm .uses-options-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-option {
    position: relative;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-option label {
    padding: 10px 30px 10px 10px;
    color: var(--primary-dark-color);
    line-height: 20px;
    display: flex;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}

.checkbox-option label::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-dark-color);
    border-radius: 3px;
    display: inline-block;
    transition: background-color 0.3s, border-color 0.3s;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.checkbox-option input[type="checkbox"]:checked+label {
    background-color: var(--primary-dark-color);
    color: var(--white);
}

.checkbox-option input[type="checkbox"]:checked+label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    content: "✔";
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 12px;
}

#profileForm .heard-options-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    position: relative;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option label {
    padding: 10px 30px 10px 10px;
    color: var(--primary-dark-color);
    line-height: 20px;
    display: flex;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}

.radio-option label::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-dark-color);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s, border-color 0.3s;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.radio-option input[type="radio"]:checked+label {
    background-color: var(--primary-color);
    color: var(--white);
}

.radio-option input[type="radio"]:checked+label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    content: "✔";
    color: white;
    font-size: 14px;
    text-align: center;
    line-height: 14px;
}

/* Progress steps */
.progress-step-wrapper {
    display: flex;
    gap: 12px;
}

.progress-step-wrapper .progress-step {
    height: 7px;
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    background-color: var(--border-color);
}

.progress-step-wrapper .progress-step.completed {
    background-color: var(--primary-dark-color);
}

.progress-step-wrapper .progress-step.active {
    background-color: var(--primary-color);
}

.progress-step-wrapper .progress-step.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* package cards on Sign up */
.signup-pricing-card {
    padding: 24px 16px;
    border-radius: 12px;
}

.signup-pricing-card>* {
    color: var(--primary-dark-color);
}

.signup-pricing-card.signup-pricing-pro-card>* {
    color: var(--white);
}

.signup-pricing-card h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}

.signup-pricing-card .description {
    line-height: 20px;
}

.signup-pricing-card .price {
    font-size: 30px;
    line-height: 36px;
    font-weight: 800;
}

.signup-pricing-card .billing-duration {
    line-height: 20px;
    margin: 0;
}

.signup-pricing-card .action-button {
    margin-top: 10px;
    line-height: 20px;
    text-align: center;
    background: var(--white);
    color: var(--primary-dark-color);
    padding: 10px;
    display: inline-block;
    border-radius: 10px;
    font-weight: 400;
    width: 100%;
    border: 1px solid var(--primary-dark-color);
}

.suggested-for {
    font-weight: 300;
    line-height: 28px;
    font-size: 16px;
}

.signup-pricing-card .features-title {
    line-height: 22px;
    font-weight: 400;
}

.features-list {
    list-style: ✔;
    list-style-type: none;
    padding: 0;
    margin-bottom: 11px;
}

.features-list li {
    position: relative;
    padding-left: 20px;
    line-height: 22px;
    padding-bottom: 4px;
    font-weight: 200;
}

.features-list li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-dark-color);
    font-size: 14px;
}

.signup-pricing-card.signup-pricing-pro-card .action-button {
    background: var(--primary-dark-color);
    color: var(--white);
}

.signup-pricing-card .logo-flag {
    transform: none;
    margin: 0;
}

.signup-pricing-card .logo-flag-wrapper h4 span {
    justify-content: center;
}

.signup-wrapper .btn {
    transition: 0s !important;
}

@media screen and (max-width:768px) {
    #profileForm .options {
        flex-wrap: wrap;
    }
}

.disable-3d-modal {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.expanded .disable-3d-modal {
    height: calc(100vh - 44px);
}

.disable-3d-modal:after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgb(0 0 0 / 20%);
    content: "";
    cursor: pointer;
}

.diessction-wrapper {
    position: relative;
}

.diessction-wrapper .Premium-blur-block .blur-container {
    min-height: fit-content;
}

/* Premium blur card */
.Premium-blur-block {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease;
    z-index: 10;
}

.Premium-blur-block.show {
    visibility: visible;
    opacity: 1;
    background: radial-gradient(#19221dcc, var(--tertiary-color));
}

.Premium-blur-block .ShowBlurHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.Premium-blur-block .ShowBlurHeader .lock-message {
    text-align: center;
}

.Premium-blur-block.show~iframe {
    filter: blur(2px);
}

.Premium-blur-block .blur-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.Premium-blur-block .ShowBlurHeader .overlay h4 {
    font-weight: 500;
    position: relative;
}

.Premium-blur-block .ShowBlurHeader .overlay h4:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: 0;
    right: 0;
    bottom: -6px;
    margin: auto;
    text-align: center;
    background-color: var(--primary-wash-color);
}

.Premium-blur-block .ShowBlurHeader .overlay h4.pro-title:after {
    display: none;
}

.Premium-blur-block .ShowBlurHeader .overlay h6 {
    letter-spacing: 0;
    font-weight: 600;
}

.Premium-blur-block .blur-container .overlay {
    position: relative;
    inset: 0;
    transform: none;
}

.steps-card-form {
    position: relative;
    overflow: hidden;
}

.steps-card-form .step {
    position: absolute;
    width: 100%;
    /* max-width: calc(100% - 1rem); */
    max-width: 100%;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
}

.steps-card-form .step.active {
    position: relative;
}

.steps-card-form .step.exit-to-left {
    opacity: 0;
    transform: translateX(-100%);
}

.steps-card-form .step.exit-to-right {
    opacity: 0;
    transform: translateX(100%);
}

.steps-card-form .step.enter-from-left {
    opacity: 0;
    transform: translateX(-100%);
}

.steps-card-form .step.enter-from-right {
    opacity: 0;
    transform: translateX(100%);
}


.woocommerce form .form-row.woocommerce-invalid .select2-selection {
    border-color: var(--error-color);
}


.woocommerce-checkout .woocommerce-error {
    display: none;
}

#customer_details .steps-card-form {
    overflow-y: auto;
}

#customer_details .alert.alert-danger {
    color: #58151c;
}

.frame-dark .woocommerce form .form-row label {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
}

.frame-dark .woocommerce form .form-row .woocommerce-input-wrapper {
    margin-top: 4px;
}

/* Datatable UI */
table.InstitutionTable.dataTable.display tbody tr {
    background-color: transparent;
}

table.InstitutionTable.table.dataTable.table-striped tbody tr.even {
    box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.05);
}

table.InstitutionTable.dataTable.display tbody tr.odd {
    background-color: #212529;
}

table.InstitutionTable.dataTable.display tbody tr td {
    padding-inline: 18px;
}

@media screen and (max-width: 767px) {
    table.InstitutionTable.dataTable.display tbody tr ul {
        width: 100%;
    }
}

table.InstitutionTable.dataTable.display tbody tr td.sorting_1 {
    background-color: transparent;
}

table.InstitutionTable.dataTable.display tbody tr td.dtr-control::before {
    background-color: var(--primary-dark-color);
}

.table-action-btn {
    height: auto;
    line-height: 12px;
    min-height: auto;
    font-weight: 500;
}

.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
    color: var(--primary-wash-color);
}

.dataTables_wrapper .dataTables_length select {
    color: var(--primary-wash-color);
    border: 1px solid rgba(255, 255, 255, .2);
    background-color: transparent;
    border-radius: 6px;
    outline: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: var(--primary-wash-color) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    color: #c1c1c1 !important;
}

.dataTables_wrapper .dataTables_filter input {
    width: 250px;
    background: transparent;
    color: var(--primary-wash-color);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    outline: none !important;
}

.dataTables_wrapper .dataTables_info {
    color: var(--primary-wash-color) !important;
}

.dataTables_wrapper .dataTables_paginate {
    color: var(--primary-wash-color) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding-block: 4px;
}

/* Banner on quiestion bank */
.pro-question-bank-banner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    background-color: var(--ui-text-black);
    padding: 16px;
    border-radius: 16px;
}

.pro-question-bank-banner .right-wrapper {
    flex: 1;
}

.pro-question-bank-banner .right-wrapper h4 {
    font-weight: 400;
    color: var(--primary-color);
}

.pro-question-bank-banner .right-wrapper .lock-message {
    padding-top: 16px;
    width: 100%;
    position: relative;
}

.pro-question-bank-banner .right-wrapper .lock-message:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    content: "";
    height: 1px;
    background-color: var(--white);
}

@media screen and (max-width: 991px) {
    .pro-question-bank-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .pro-question-bank-banner .right-wrapper h4 {
        margin-top: 0 !important;
    }

    .pro-question-bank-banner .right-wrapper .lock-message {
        text-align: center;
    }

    .pro-question-bank-banner .right-wrapper .lock-message:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
        width: 20%;
        content: "";
        height: 1px;
        background-color: var(--white);
    }
}

.tab-pane .blur-container .lock-message {
    text-align: center;
}

.step-card-close {
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 1;
}

.followup-checkout {
    display: none !important;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}

@media screen and (max-width:576px) {
    .w-sm-100 {
        width: 100%;
    }
}

.user-login-alert {
    position: fixed;
    left: 0;
    right: 0;
    top: 120px;
    width: 50%;
    margin-inline: auto;
}

@media screen and (max-width:1200px) {
    .user-login-alert {
        top: 60px;
    }
}

@media screen and (max-width:991px) {
    .user-login-alert {
        width: calc(90% - 30px);
    }
}

.help-text span {
    display: block;
    line-height: 18px;
}

.historical-quizzes .table tr th,
.historical-quizzes .table tr td {
    color: var(--primary-wash-color);
}

.woocommerce-ResetPassword .woocommerce-password-strength {
    margin-top: 8px;
}

body.teachme-app-view {
    padding-top: 0 !important;
}

body.teachme-app-view header,
body.teachme-app-view footer {
    display: none !important;
}

body.teachme-app-view main {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.dataTables_wrapper .page-link,
.dataTables_wrapper .disabled>.page-link {
    border: 0;
    background: none;
    color: #fff;
}

.dataTables_wrapper .disabled>.page-link {
    color: rgba(255, 255, 255, .5);
}

.dataTables_wrapper .page-item.active .page-link {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.return-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2px 6px;
    margin-left: 8px;
    font-size: 14px;
    line-height: 1;
}

.show-details {
    border: 0;
}

.class-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#classModal .modal-body {
    max-height: 50vh;
    overflow-y: scroll;
}

.select2-container--default .select2-selection--multiple {
    padding: 4px 8px;
}

#classModal .badge.bg-secondary.fs-6.d-inline-flex.align-items-center {
    font-weight: 400;
}

.frame-dark .login-with-google-btn,
.frame-dark .login-with-apple-btn {
    padding: 16px;
    background: var(--tones-800-70);
    border: 1px solid var(--tones-800);
    border-radius: 12px;
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
}

.frame-dark .login-with-google-btn:hover,
.frame-dark .login-with-apple-btn:hover {
    border-bottom-color: var(--tones-800) !important;
}

.frame-dark .login-with-google-btn .icon,
.frame-dark .login-with-apple-btn .icon {
    position: static;
    margin-right: 16px;
}

.signup-divider {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    z-index: 1;

}

.signup-divider span {
    background-color: var(--ui-text-black);
    padding: 0 16px;
    display: inline-block;
}

.signup-divider::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--primary-wash-color);
    top: 50%;
    left: 0;
    right: 0;
    z-index: -1;
}

.dark-field label {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
}

/* New Pro logo */
/*.pro-logo {
    font-weight: 300;
    font-size: 32px;
    line-height: 32px;
    position: relative;
    display: block;
}

.pro-logo strong {
    font-weight: 900;
    font-size: 32px;
    line-height: 32px;
    display: block;
}

.pro-logo sup {
    display: inline-block;
    font-size: 20px;
    background: var(--white);
    color: var(--tertiary-color);
    border-radius: 6px;
    padding: 1px 6px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 7px;
    top: -5px;
}

.pro-logo.pro-logo--md {
    transform: scale(0.72);
}

.pro-logo.pro-logo--sm {
    transform-origin: left bottom;
    transform: scale(0.5);
}*/

.pro-logo {
    font-weight: 300;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0;
    display: inline-block;
    position: relative;
    display: flex;
    align-items: start;
    gap: 4px;
}

.pro-logo strong {
    font-weight: 900;
    font-size: 32px;
    line-height: 32px;
    display: block;
}

.pro-logo span:last-of-type {
    font-size: 20px;
    background: var(--white);
    color: var(--tertiary-color);
    border-radius: 6px;
    text-align: center;
    padding: 1px 6px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 3px;
}

.pro-logo.pro-logo--md {
    transform: scale(0.72);
}

@media screen and (max-width: 991px) {
    .pro-logo.pro-logo--md {
        transform: scale(0.5);
    }
}

.pro-logo.pro-logo--sm {
    transform-origin: left bottom;
    transform: scale(0.5);
}

/* Flexible top content section */
.top-content-signup .sup-top-title {
    max-width: 690px;
    font-size: 60px;
    line-height: 68px;
}

.top-content-signup .sup-top-text {
    max-width: 690px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.min-w-246 {
    min-width: 246px;
}

.sup-top-buttons .btn-primary {
    border: 1px solid var(--primary-dark-color);
}

@media screen and (max-width: 1200px) {
    .top-content-signup .sup-top-title {
        font-size: 48px;
        line-height: 56px;
    }
}

@media screen and (max-width: 576px) {
    .sup-top-buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

/* Flexible features section */
.bg-white-after {
    position: relative;
    z-index: 1;
}

.bg-white-after::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    background-color: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.features-section-signup .features-item {
    background-color: transparent;
}

.features-section-signup .features-header .features-title {
    align-self: start;
    top: -30px;
    position: relative;
}

/* Flexible pricing section */

.pricing-section-signup .outline-card .sign-up-price {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--white);
}

.pricing-section-signup .outline-card .annual-price {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
    letter-spacing: 0;
}

.pricing-section-signup .outline-card .popular-subscription {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 400;
    font-weight: normal;
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    padding: 0px 8px 2px;
    border-radius: 5px;
    position: absolute;
    top: 16px;
}

.frame-dark .select2-container--default .select2-selection--single {
    background-color: #FFFFFF1A;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.12);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 2 L6 6 L11 2' fill='none' stroke='%23ffffff78' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 8px;
    padding-right: 34px;
}

.frame-dark .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--white) transparent;
}

.frame-dark .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--white);
}

.frame-dark .select2-container--default .select2-selection__rendered {
    color: var(--white);
}

.frame-dark .select2-container--default .select2-selection--multiple {
    background-color: #FFFFFF1A;
    color: var(--white);
    border-color: #ffffff4D;
}

.frame-dark .select2-container--default.select2-container--focus .select2-selection {
    border-color: #ffffff80;
    outline: none;
}

.frame-dark .select2-container--default.select2-container--open .select2-selection--multiple {
    border-color: #ffffff80;
}

.frame-dark .woocommerce form .form-row {
    padding: 0px;
    margin: 0 0 16px;
}

.frame-dark .woocommerce form .form-row .woocommerce-form__label-for-checkbox {
    display: inline-block;
    line-height: 32px;
}

.frame-dark .woocommerce form .form-row .woocommerce-form__label-for-checkbox .input-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--tones-600);
    vertical-align: middle;
    transition: background 0.3s, border-color 0.3s;
    cursor: pointer;
}

.frame-dark .woocommerce form .form-row .woocommerce-form__label-for-checkbox .input-checkbox:checked {
    border-color: #00b894;
    background-color: #00b894;
}

.frame-dark .woocommerce form .form-row .woocommerce-form__label-for-checkbox .input-checkbox:checked::before {
    content: '✔';
    position: absolute;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: var(--white);
    width: 32px;
    height: 32px;
    inset: 0;
}

.frame-dark .woocommerce form .form-row .woocommerce-form__label-for-checkbox .input-checkbox:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.frame-dark .woocommerce form .form-row .validate-required {
    margin-top: 40px;
}

.frame-dark .woocommerce table.shop_table {
    border: none;
}

#woocommerce_eu_vat_compliance_self_certify .woocommerce-input-wrapper {
    position: relative;
    cursor: pointer;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    display: flex;
}

#woocommerce_eu_vat_compliance_self_certify .woocommerce-input-wrapper input[type="radio"] {
    display: none !important;
}

#woocommerce_eu_vat_compliance_self_certify .woocommerce-input-wrapper label {
    line-height: 20px;
    display: flex;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
    padding-left: 28px;
}

#woocommerce_eu_vat_compliance_self_certify .woocommerce-input-wrapper label::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-dark-color);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s, border-color 0.3s;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#woocommerce_eu_vat_compliance_self_certify .woocommerce-input-wrapper input[type="radio"]:checked+label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    content: "✔";
    color: var(--white);
    font-size: 14px;
    text-align: center;
    line-height: 14px;
}

.frame-dark .payment_box a {
    color: var(--black);
}

.modal-dark .modal-content {
    background: var(--ui-text-black);
    color: var(--white);
}

.modal-dark .modal-content .close-btn {
    margin-left: auto;
    font-size: 16px;
    line-height: 28px;
    font-weight: lighter;
    text-transform: uppercase;
    color: var(--white);
    background-color: transparent;
    border: none;
}

.modal-dark .modal-content .close-btn:focus-visible,
.modal-dark .modal-content .close-btn:focus {
    outline: none;
    box-shadow: none;
}

.modal-dark .modal-content .pro-logo {
    justify-content: center;
}

.modal-dark {
    background: rgba(0, 0, 0, 0.5);
}

.font-light {
    font-weight: 300;
}

.payment-plan-card {
    border-radius: 12px;
    padding: 12px 16px;
    background-color: var(--tones-800-70);
    border: 1px solid var(--tones-800);
    position: relative;
}

.payment-plan-card .payment-plan-duration {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0;
}

.payment-plan-card .sign-up-price {
    font-size: 28px;
    line-height: 26px;
    font-weight: 700;
}

.payment-plan-card .annual-price {
    letter-spacing: 0;
    display: inline-block;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    margin-left: 12px;
    font-weight: 300;
}

.payment-plan-card .tag {
    position: absolute;
    top: 12px;
    right: 16px;
    transform: none;
    white-space: nowrap;
    border-radius: 5px;
    height: fit-content;
    left: initial;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    padding: 3px 8px;
    background-color: var(--primary-color);
    margin: 0;
}

.features-card-wrapper {
    gap: 22px;
    padding-top: 22px;
}

.features-card-wrapper .features-card-item {
    width: calc(50% - 11px);
}

@media screen and (max-width: 768px) {
    .features-card-wrapper .features-card-item {
        width: 100%;
    }
}

.features-card-item:last-child:nth-child(odd) {
    flex: 0 0 100%;
    max-width: 100%;
}

.trial-bottom-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.trial-bottom-buttons-wrapper .btn {
    width: 50%;
}

.trial-bottom-buttons-wrapper a.btn:hover {
    border-bottom-color: var(--border-color) !important;
}

@media screen and (max-width: 576px) {
    .trial-bottom-buttons-wrapper {
        flex-direction: column;
    }

    .trial-bottom-buttons-wrapper .btn {
        width: 100%;
    }
}



/* Plan selection styling */
.radio-plan-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.plan-select-label {
    display: block;
    cursor: pointer;
    margin: 0;
}

.plan-select-label input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-plan-card:has(.plan-select-label input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: #FFFFFF33;
}

.plan-selection-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.direction-column {
    flex-direction: column;
}

.partner-logo {
    height: 43px;
    width: auto;
}

@media (min-width: 1200px) {
    .partner-logo {
        height: 66px;
    }
}

.virtual-academy-form #gform_page_5_1 .gfield--type-choice .gfield_label.gform-field-label {
    display: none;
}

.virtual-academy-form .gchoice_other_control {
    width: 100%;
    left: 0px;
    right: 0;
    top: 100%;
    position: absolute;
}

.virtual-academy-form .gfield_radio {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-direction: column;
    padding-block: .5rem !important;
}

.virtual-academy-form .gfield_radio .gchoice {
    background-color: #19221DBF;
    padding: 10px;
    border: 1px solid var(--tones-800);
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
    flex: 1;
    transition: .3s;
    justify-content: space-between;
    position: relative;
}

.virtual-academy-form .gfield_radio .gchoice.other-selected {
    margin-bottom: 28px;
}

.virtual-academy-form .gfield_radio .gfield-choice-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.virtual-academy-form .gfield_radio label.gform-field-label {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    flex: 1;
    padding-left: 33px;
}

.virtual-academy-form .gfield_radio label.gform-field-label::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 1px solid var(--white);
    border-radius: 50%;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.virtual-academy-form .gfield_radio input:checked+label.gform-field-label::before {
    border-color: var(--white);
    background: radial-gradient(circle, var(--white) 40%, transparent 50%);
}

.virtual-academy-form .gfield_radio .gchoice:hover {
    background: #FFFFFF33;
    border-color: var(--primary-color);
}

.virtual-academy-form .gchoice label::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 12px;
}

/* Icons for specific options */
.virtual-academy-form .gchoice_5_11_0 label::after {
    background-image: url("../images/icons/medical-student-icon-white.svg");
}

.virtual-academy-form .gchoice_5_11_1 label::after {
    background-image: url("../images/icons/educator-icon-white.svg");
}

.virtual-academy-form .gchoice_5_11_2 label::after {
    background-image: url("../images/icons/professional-icon-white.svg");
}

.virtual-academy-form .gchoice_5_11_3 label::after {
    background-image: url("../images/icons/other-group-icon-white.svg");
}

.virtual-academy-form .gchoice_5_11_4 label::after {
    background-image: url("../images/icons/other-group-icon-white.svg");
}

.virtual-academy-form .gchoice_5_11_5 label::after {
    background-image: url("../images/icons/other-group-icon-white.svg");
}

.virtual-academy-form .gform_page_footer {
    margin-top: 32px;
    text-align: center;
}

.virtual-academy-form .gform_page_footer .btn {
    width: 100%;
}

.virtual-academy-form .gform_page_footer .gform_next_button {
    min-height: 46px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 12px;
    background: var(--white);
    border: 0;
    color: var(--ui-text-black) !important;
    width: 100%;
    text-align: center;
    padding-inline: 1.5rem !important;
}

.virtual-academy-form .ginput_container_radio.other-selected~.gfield_validation_message {
    margin-top: 32px;
}

.virtual-academy-form input[type=text],
.virtual-academy-form input[type=email],
.virtual-academy-form textarea,
.virtual-academy-form select {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: var(--white);
    line-height: 32px;
    margin-top: 4px;
    border: 1px solid var(--tones-600);
    background: #FFFFFF1A;
    font-weight: 300;
    outline: none;
}

.virtual-academy-form select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}

.virtual-academy-form input[type=text]:focus,
.virtual-academy-form input[type=email]:focus,
.virtual-academy-form textarea:focus,
.virtual-academy-form select:focus {
    box-shadow: none;
    border: 1px solid var(--tones-600);
}

.virtual-academy-form .gform_wrapper.gravity-theme .gfield_label {
    margin-bottom: 4px !important;
}

.virtual-academy-form .gform_wrapper.gravity-theme .gfield_label .gfield_required {
    line-height: 23px;
}

.virtual-academy-form .gform_previous_button {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

iframe#player {
    display: block;
}