:root {

    --black: #222;
    --input-focus: #DB68E6;

    --select-color-dark: #fa72b6;
    --select-disabled-color: #fa72b6;

    --main-color: #9e00af;
    --main-color-light: #f691ff;
    --main-color-dark: #7b3681;

    --secondary-color: #f7288f;
    --secondary-color-light: #ff3f9f;
    --secondary-color-dark: rgb(230, 60, 145);
}
html{
    font-size: 15px;
    line-height: 22px;
}

body {
    color: #626262;
    font-family: "Poppins", Helvetica, Arial, sans-serif;
    background-color: white;
    font-weight: 400;
    letter-spacing: 0px;
}

#Wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#Wrapper #Content {
    flex: 1;
    margin-top: 70px;
}

/* Reset & Basics */

ul,
li {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline
}

.f-jumbo {
    font-weight: 670;
    word-spacing: 2px;
    letter-spacing: 0px;
    font-size: 65px;
    line-height: 74px;
}

.f-big {
    font-size: 55px;
    font-weight: bold;
}

.f-text {
    font-size: 1rem;
    line-height: 1.6rem;
}

.f-1 {
    font-size: 2rem;
    line-height: 1.6rem;
}

.f-2 {
    font-size: 1.8rem;
    line-height: 1.6rem;
}
.f-3 {
    font-size: 1.6rem;
    line-height: 1.6rem;
}

.f-4 {
    font-size: 1.4rem;
    line-height: 1.4rem;
}

.f-5 {
    font-size: 1.2rem;
    font-size: 1.2rem;
}

.lh-2 {
    line-height: 2rem;
}

.text-shadow-default {
    text-shadow: 0 0 5px #000;
}


@media (max-width: 768px) {
    .f-big {
        font-size: 35px;
        line-height: 35px;
    }
}


form .required {
    color: red;
}


textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.btn-link:focus,
.uneditable-input:focus {
    /* border-color: rgba(126, 239, 104, 0.0);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6); */

    outline: 0 none !important;
    /* box-shadow: inset 0 0px 0 #ddd; */

}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, .0) !important;
}

.form-control {
    color: black;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.form-control:focus {
    border-color: var(--input-focus) !important;
    box-shadow: 0 0 0 1px var(--input-focus);
    color: black;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    background-color: var(--main-color) !important;
}

.custom-control-input:disabled~.custom-control-label::before {
    background-color: var(--select-disabled-color) !important;
}

.form-control::placeholder {
    color: #C7C7C7;
    opacity: 1;
}

.custom-checkbox label,
.form-group label {
    cursor: pointer;
}

#customer_login .row>div {
    padding: 0 7%;
}


#customer_login button[type="submit"] {
    font-size: 0.9rem;
    padding: 10px 0px
}

.section {
    padding-bottom: 70px;
    padding-top: 80px
}

.section~.section {
    padding-top: 0px
}

.section-top {
    padding-top: 80px !important;
}
.section-bottom {
    padding-bottom: 70px !important;
}

.section-bg-light {
    color: white;
    background-image: linear-gradient(90deg, var(--secondary-color-light), var(--main-color-light));
}

.section-bg-dark {
    color: white;
    background-image: linear-gradient(180deg, #000 0, #000, var(--secondary-color-dark));
}
.section-bg-dark .btn-primary {
    background-color: var(--main-color) !important;
    background-image: none;
    color: white !important;
}

.section-bg-light .btn-primary {
    background-color: white !important;
    background-image: none;
    color: black !important;
}
.section-bg .btn-primary {
    background-color: white !important;
    background-image: none;
    color: black !important;
}
.section-bg-dark .widget-box{
    background-color: transparent;
}
.section-bg-dark h3, .section-bg-dark h2 {
    color: white;
}

.social a {
    padding: 12px 6px;
}

.header-shop #Top_bar .menu>li>a {
    padding: 5px 0;
}

a {
    color: #353a3e;
    font-weight: 600;
}

a:hover,
.btn-link:hover {
    color: var(--main-color) !important;
}

.selected {
    color: var(--main-color) !important;
}

a.btn {
    color: white;
    transition: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;

    -webkit-transition: none;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    ;
}

b,
strong {
    font-weight: 700;
}


.line {
    border-top: 1px solid #ddd;
}

.line:last-child {
    border-bottom: 1px solid #ddd;
}


/* top bar ----------------------------------------- */
#Top_bar .logo {
    margin: auto 30px;
}
#Top_bar .container .logo {
    margin: auto 30px auto 0px;
}

#Top_bar .logo:not(.text-logo) h1 {
    font-size: 25px;
    color: black;
    font-weight: bold;
}

#Top_bar .logo span {
    color: yellow;
}

#Top_bar .top_bar_right {
    float: right;
    position: relative;
    padding: 0 0 0 20px
}

.top-bar-search-form input:focus {
    border-color: #DB68E6 !important;
    box-shadow: 0 0 0 1px #DB68E6;
}

.top-bar-search-form input {
    margin: 0;
    padding-left: 40px;
    margin-right: 32px;
}


#Header_wrapper {
    position: fixed;
    background: white;
    width: 100%;
    z-index: 20;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

#Header ul,
#Header li {
    list-style-type: none;
}

#Footer ul,
#Footer li {
    list-style-type: none;
}

@media (min-width: 992px) {
    .wide-theme .container {
      max-width: 992px;
    }
}
@media (min-width: 1200px) {
    .wide-theme .container {
      max-width: 1200px;
    }
}

@media (min-width: 1440px) {
    .wide-theme .container, .wide-theme .container-fluid {
      max-width: 1440px;
    }
}

@media (max-width: 768px) {
    #Header {
        position: fixed;
        z-index: 10;
        top: 0px;
    }

    #Top_bar .logo {
        margin: 0px;
    }

    #Top_bar .top_bar_right {
        padding: 0 0 0 10px;
    }
}

.top-bar-right-input {
    display: flex;
    align-items: center;
}

.top-bar-right-input a {
    padding: 10px 20px;
    text-transform: uppercase;
    display: inline-block;
    min-width: 0%;
}


#Content .content-register {
    background: url(/img/main/v3.webp);
    /* background: #F6F2F1; */
    background-position: 0% 10%;
    background-size: cover;
}

.top-bar-search-form svg {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.top-bar-search-form {
    display: flex;
    position: relative;
}

#Top_bar .top_bar_left {
    position: relative;
    float: left;
}

#Top_bar .top_bar_right {
    position: relative;
}

.top_bar_row {
    display: flex;
    z-index: 10;
    min-height: 60px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.top_bar_row #logo h1 {margin: 0px;}

.top_bar_right {
    float: inherit;
    display: flex;
    flex: 1;
}

#Top_bar .top-bar-menu {
    display: flex;
    color: black;
    line-height: 15px;
}

/* #Top_bar .top_bar_right .top-bar-right-icon, #Top_bar .top_bar_right .top-bar-right-icon svg .path, .top-bar-right-icon i  
{stroke: #DB68E6 !important} */
#Top_bar .top-bar-menu span {
    padding-left: 7px;
}

.top-bar-right-icon i {
    align-items: center;
}

#Top_bar .top_bar_right .top_bar_right_wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

#Top_bar .top_bar_right .top-bar-right-icon {
    display: flex;
    align-items: center;
    margin: 0 6px;
    line-height: 0;
    font-size: 20px;
    text-decoration: none;
    color: black;
}

#Top_bar .sub-menu a {
    display: block;
    padding: 10px 0px 20px 20px;
    text-transform: uppercase;
}

#Footer,
#Footer .widget_recent_entries ul li a,
#Footer h4 {
    color: #ffffff;
}

#Footer {
    background-color: #101015;
}

#Footer a,
#Header .social a {
    color: #d1d1d1;
}

#Subheader {
    /* background: linear-gradient(90deg, rgba(123,104,238,1) 0%, rgba(123,104,238,1) 35%, rgba(238,104,228,1) 100%); */
    /* margin-top: 24px; */
    padding: 114px 0px 0px 0px;
}

#Subheader .title {
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: 0px;

    float: auto;
    /* color: white; */
    font-weight: bold;
    /* color: #1a1919; */
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    #Subheader {
        padding: 50px 0px 0px 0px;
    }

    #Subheader .title {
        font-size: 28px;
        line-height: 25px;
    }

    .section {
        padding-top: 40px;
    }

    .point .dot {
        margin: 0px 17px 0px 0px;
    }
}

.color-text-gr-violet,
.color-text-gr-blue,
.color-text-gr {
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;

    background-clip: text;
    -webkit-background-clip: text;
}

.color-text-gr-violet {
    background-image: linear-gradient(90deg, #7928CA, var(--main-color-light));
}

.color-text-gr-blue {
    background-image: linear-gradient(90deg, #007CF0, #00e1da);
}


#Subheader .desc {
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
    margin-top: 5px;
    color: #1e1e1e;
    ;
}

#Subheader ul.breadcrumbs {
    margin-top: 0px;
}

.flex-full>* {
    display: flex;
    flex: 1;
}

#Subheader ul.breadcrumbs li,
#Subheader ul.breadcrumbs li a {
    /* color: #f0f0f0;  */
    color: #1e1e1e;
    font-size: 1.08rem;

}

#Subheader ul.breadcrumbs li.current a {
    font-weight: 300;
}

#Subheader ul.breadcrumbs li a {}

ul.breadcrumbs li {
    display: inline-block;
}

ul.breadcrumbs li span {
    margin: 0 10px;
}

ul.breadcrumbs li.current {
    color: #444;
}

.product-wrapper .breadcrumbs {
    padding-bottom: 16px;
}


hr.no_line {
    background: none;
    color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
.text-logo #logo {
    font-family: "Poppins", Helvetica, Arial, sans-serif;
}

h1,
.text-logo #logo {
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 0px
}

h1,
h1 a,
h1 a:hover,
.text-logo #logo,
h2,
h2 a,
h2 a:hover,
h3,
h3 a,
h3 a:hover,
h4,
h4 a,
h4 a:hover,
h5,
h5 a,
h5 a:hover,
h6,
h6 a,
h6 a:hover {
    color: #161922;
}

.text-logo #logo {
    line-height: 60px;
    height: 100%;
    align-items: center;
}

h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    letter-spacing: 0px
}

h2,
h2 a,
h2 a:hover {
    color: #161922;
}

h3,
.woocommerce ul.products li.product h3,
.woocommerce #customer_login h2 {
    font-size: 1.3rem;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0px
}

h4,
.woocommerce .woocommerce-order-details__title,
.woocommerce .wc-bacs-bank-details-heading,
.woocommerce .woocommerce-customer-details h2 {
    font-size: 1.15rem;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 0px
}

h5 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0px
}

h6 {
    font-size: 15px;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: 0px
}

/* HOME */
.home .banner {
    background: url(/img/main/v1.webp);
    /* background: #F6F2F1; */
    background-position: 0px 10%;
    /* background-position: center center; */
    background-size: cover;
    /* height: 655px; */
}

.home .banner-content {

    padding-top: 0;
    position: relative;
    /* top: 131px; */
}

/* .home .banner-content h1{   padding-bottom: 20px;letter-spacing: -2px; line-height: 55px;} */
.home .banner-content h1 {
    letter-spacing: 1px;
    font-size: 3rem;
    line-height: 3.65rem;
    font-weight: lighter;
}

.home .banner-content.big h1 {
padding-bottom: 22px;
    letter-spacing: -6px;
    font-size: 70px;
    line-height: 70px;
}

.home .banner-content h2 {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 42px;
}

#offer .offer {
    justify-content: center;
}

@media (max-width: 768px) {
    .home .banner-content {
        top: 0px;
    }

    .home .banner-content h1 {
        font-size: 50px;
        line-height: 50px;
        letter-spacing: -2px;
    }

    .home .banner-content h2 {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.2rem;
    }
}

.tag,
.tag-violet,
.tag-blue {

    display: inline-block;
    border-radius: 16px;
    padding: 0px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 23px;

    color: white;
}

.tag-violet {
    background-image: linear-gradient(90deg, #b26ff5, #984de4, #7928CA);
}

.tag-blue {
    background-image: linear-gradient(90deg, #007CF0, #00e1da);
}


/* SEARCH */
.search .price {
    float: right;
    color: var(--main-color);
    font-size: 22px;
}

.search .search-product-row {
    margin-top: 20px;
}

.search .search-product-row img {
    border-radius: 16px 16px 16px 16px;
}

.search .search-product-row .desc {
    padding: 24px;
    background: #f7f7ff;
    border-radius: 16px 16px 16px 16px;
}

.search .search-product-row .rating {
    color: black;
    font-size: 0.9rem;
    font-weight: bold;
}

.search .search-product-row .rating .star {
    color: #0089F7;
    font-size: 1rem;
}

.search .search-product-row .rating .votes {
    font-weight: normal;
    font-size: 0.8rem;
}

.search .search-product-row p {
    line-height: 1.1rem;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.search .search-product-row .author {
    color: #525252;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.7rem;
    padding-bottom: 11px;
}


.search-menu {
    margin-top: 48px;
    margin-left: 30px;
}

.search-menu h4 {
    padding-bottom: 10px;
    padding-top: 30px;
}

img.scale-with-grid,
#Content .widget-box-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: -10%;
}


/* CHAT */
.chat-block {
    border: 1px solid #efefef;
    min-height: 300px;
    /* border: 1px solid #efefef; */
    margin-bottom: 18px;
}


/* STORE ----------------------------------------- */
.product_title {
    font-size: 35px;
    line-height: 35px;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.product-wrapper .price {
    color: #0089F7;
    font-size: 30px;
    margin: 32px 0px 35px 27px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.product-wrapper .price span {
    color: #31a2ff;
    font-size: 22px;
    padding-left: 6px;
    margin-bottom: -1px
}

.product-wrapper .product-main-box iframe {
    border-radius: 8px;
}

.product-wrapper .product-main-box {
    background: #f7f7ff;
    padding: 2rem;
    border-radius: 16px;
}

.product-wrapper .star-rating {
    padding: 21px 0px 22px 0px;
}

.product-wrapper .star-rating .rating {
    font-size: 50px;
    font-weight: 600;
    line-height: 48px;
}

.product-wrapper .product-short-description p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.product-wrapper p.button-desc {
    margin-top: 12px;
    line-height: 1rem;
    font-size: 0.8rem;
    font-style: italic;
}

.with_aside .sidebar.columns {
    width: 20%;
}

.aside_left .four.columns {
    float: left;
}

.with_aside .sections_group {
    width: 80%;
}

.shop-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 15px 1%;
    box-sizing: border-box;
    overflow: hidden;
}

.shop-filters .mfn-woo-list-options>form,
.shop-filters .mfn-woo-list-options .mfn-woo-list {
    display: flex;
}

.search svg {
    display: block;
    width: 22px;
}

.search a>img {
    /* width: 195px; */
    width: 100%;
    /* max-width: 195px; */
    height: 100%;
    /* max-height: 195px; */
}

.search-tile .content {
    padding: 15px;
}

.search-tile>a {
    display: block;
    /* height: 171px; */
    overflow: hidden;
    margin-top: -10%;
}

.point {
    display: flex;
    margin-bottom: 41px;
}

.point .content {
    flex: 1;
}

.dot {
    background-color: #111;
    text-align: center;
    border-radius: 50%;
    color: white;
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin: 0px 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding-left: 1px;
    line-height: 0px;
}

.dot i {
    line-height: 0px;
}

.checkout-steps .step:hover,
.checkout-steps .step.active {
    color: var(--main-color);
}

.checkout-steps .step.active:hover span {
    background: var(--main-color) !important;

}

.checkout-steps .step.active span {
    background: var(--main-color);
    color: #fff !important;
    border-color: transparent;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.checkout-steps .step {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;

    color: #737E86;
    text-decoration: none;
}

.checkout-steps .step:hover {
    color: #0089F7;
    text-decoration: none;
}

.checkout-steps .step span {
    display: flex;
    justify-content: center;
    align-items: center;

    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-right: 15px;
    border: 1px solid #e2e2e2;

    color: black;
}

.btn {
    font-size: 0.9rem;
    /* line-height: 2rem; */
    padding: 10px 0px;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 25%;
}

/* .btn.btn-primary,.btn.btn-secondary {padding-left: 10px; padding-right: 10px;} */

a:hover {
    text-decoration: none;
}

/* --- table */

.fit-table {
    padding: 32px 28px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgba(94, 92, 154, .06);
    position: relative;
    margin-bottom: 16px;
    margin-left: -8px;
    margin-right: -8px;
}

@media (max-width: 768px) {
    .fit-table {
        padding: 2px 14px;
    }
}

.fit-table .row {
    border-top: 1px solid #e2e2e2;

    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.fit-table:not(.slim) .row {
    min-height: 90px;
}

.fit-table .dropdown-menu a i {
    margin-right: 7px;
}

.fit-table .dropdown-menu a {
    display: flex;
}

.fit-table-header {
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    height: 60px !important;
    min-height: 60px !important;
    line-height: 1.5rem;
}

.fit-table-header.row {
    border: 0px solid transparent;
}

@media (max-width: 768px) {
    .fit-table-header {
        /* display: none; */
    }
}


.fit-table-action i,
.fit-table-delete i {
    font-size: 20px;
}

.fit-table-action,
.fit-table-delete {
    color: black;
    cursor: pointer;
}

.fit-actions a {
    color: black;
    margin: 7px;
}

.fit-actions {
    display: flex;
    align-items: center;
}

.fit-table-menu {
    margin-bottom: 10px;
    align-items: flex-end;
    justify-content: flex-end;
    display: flex;
    flex-direction: row;
}

.fit-table-menu a {
    color: black;
    margin: 7px;
    display: flex;
}

.fit-table-menu .dropdown-menu a {
    margin: 0px;
}

.fit-table-menu a i,
.fit-table-menu .btn-link i {
    margin-right: 7px;
    font-size: 20px;
}

.fit-table-menu a:hover {
    color: black;
}

*:hover>.bi-x-circle-fill {
    color: red;
}


.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: bold;
    padding-left: 4px;
    cursor: pointer;
}


/* ----------fit-table course img */

.fit-table .course-img {
    width: 120px;
    min-width: 120px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
}

.fit-table .course-title {
    padding-left: 16px;
}


/* -------planner events*/

.planner .event h4 {
    font-size: 1rem;
    margin-bottom: 0px;
}

.planner .event span {
    font-size: 0.75rem;
    margin-bottom: 0px;
}

.planner .event.meditation.current {
    background: #f9f5ff;
}

.planner .event.meditation {
    border-color: #d4b9ff;
}

.planner .event.yoga.current {
    background: #f3fff6;
}

.planner .event.yoga {
    border-color: #b8ddc2;
}

.planner .event.current {
    background: #f3f3f3;
}

.planner .eventGroup {
    margin-bottom: 20px;

}

.planner .event {
    padding: 8px 13px;
    border: 1px solid #cbcbcb;
    border-radius: 4px;
    margin-bottom: 6px;
    border-left-width: 9px;
    background: white;
    box-shadow: 0px 1px 16px 0px rgb(1 1 1 / 10%);
    ;
}

.planner-dash {
    margin-bottom: 51px;
    margin-top: 57px;
    text-align: center;
}

.planner-dash .dash-block h4 {
    color: #727272;
}

.planner-dash .dash-block span {
    font-weight: 800;
    font-size: 32px;
}

.planner-dash .dash-block {
    /* border: 1px solid #d4b9ff; */
    border-radius: 8px;
    border-left-width: 10px;
    background: #f9f5ff;
    text-align: center;


    padding: 38px;
    color: #555;

    height: 170px;
    padding-top: 45px
}

.no-pad {
    padding: 0px;
}

.no-mar {
    margin: 0px !important;
}

.mar-bt-10 {
    margin-bottom: 10px;
}

.mar-bt-40 {
    margin-bottom: 40px;
}

.mar-top-10 {
    margin-top: 10px;
}

.mar-top-20 {
    margin-top: 20px;
}

.mar-top-30 {
    margin-top: 30px;
}

.mar-top-40 {
    margin-top: 40px;
}

.mar-top-60 {
    margin-top: 60px;
}

.mar-top-80 {
    margin-top: 80px;
}

.min-w-60 {
    min-width: 60%;
}

.pointer,
.btn-link {
    cursor: pointer;
}

.btn {
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 20px;
    font-size: 15px;
}

.btn-icon {
    font-size: 1.5rem;
    padding: 5px 8px 9px;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.btn-primary {
    border: 0px solid transparent;
    color: white !important;
    /* background-image: linear-gradient(90deg, var(--main-color), var(--main-color), var(--secondary-color-dark)); */
    background-image: linear-gradient(90deg, var(--main-color));
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-primary:hover {
    color: white !important;
    background-image: var(--main-color-light);
    background-color: var(--main-color-light);
    border-color: var(--main-color);
}

.btn-secondary {
    border: 2px solid var(--black);
    border-color: var(--black);
    color: black !important;
    background: transparent;
}

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

.btn-link:focus,
.btn-link:focus {
    border: 0px solid transparent;
    ;
}

.bradius {
    border-radius: 8px;
}

.bradius2 {
    border-radius: 16px;
}

.bshadow {
    box-shadow: 0px 1px 16px 0px rgb(1 1 1 / 10%);
}

form .error {
    color: red;
    padding-left: 5px;
    margin-top: 2px;
    font-size: 0.8rem;
}

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

.color-red {
    color: red;
}

.color-white {
    color: white;
}

.color-secondary {color: var(--secondary-color)!important;}
.color-secondary-light {color: var(--secondary-color-light)!important;}
.color-main {color: var(--main-color)!important;}
.color-main-light {color: var(--main-color-light)!important;}
.bg-main-light {background-color: var(--main-color-light)!important;}
.bg-main-dark {background-color: var(--main-color-dark)!important;}
.bg-secondary-light {background: var(--secondary-color-light)!important;}
.bg-secondary-dark {background: var(--secondary-color-dark) !important;}

@media screen and (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .show-mobile {
        display: none;
    }
}

.alert.alert-black {
    background-color: #222 !important;
    color: white;
}

.widget-box-no-pad,
.widget-box,
.widget-box-black {
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.226);
    position: relative;
    margin-bottom: 16px;
    /* margin-left: -8px;
    margin-right: -8px; */
}


.widget-box,
.widget-box-black {
    padding: 32px 28px;
}

.widget-box-black {
    background-color: #222 !important;
    color: white;
}

.widget-box-image {
    /* border-radius: 12px; */
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 2px 3px 0 rgba(94, 92, 154, .16);
    /* box-shadow:  0 0 20px 0 rgba(94,92,154, .26); */
    /* box-shadow:  0 0 40px 0 rgba(94,92,154, .06); */
    position: relative;
    margin-bottom: 30px;
    /* margin-bottom: 16px; */
    /* margin-left: -8px; */
    /* margin-right: -8px; */
    overflow: hidden;
}

.widget-box-author {
    padding: 0px 20px 0px 20px;
}

.widget-box-author-name {
    float: left;
    padding: 14px 14px;
    line-height: 20px;
}

.widget-box-author-name .name {
    color: black;
}

.widget-box-author-img {
    float: left;
    margin-top: 12px;
}

.widget-box-author-img img {
    width: 45px;
    height: 45px !important;
    border-radius: 5px;
    box-shadow: 0 2px 3px 0 rgba(94, 92, 154, .6);
}

.widget-box-no-pad .widget-box-body {
    padding: 7px 28px 1px 28px;
}

.widget-box-body {
    padding: 32px 28px;
    clear: both;
}

.widget-box-author .post-actions {
    float: right;
    font-size: 21px;
    padding-top: 14px;
}


.zindex-5 {
    z-index: 5;
}

*:hover>.parent-hover {
    display: inline-block;
}

.parent-hover {
    display: none;
}

.action-button {
    color: black;
    display: flex;
    cursor: pointer;
}

/* post comment */

.post-comment-delete {
    margin-left: 5px;
}

.post-comment-delete i {
    color: black;
}

.post-list {
    margin-bottom: 5px;
}

/* loader ----------- */
.loader-container {
    position: fixed;
    z-index: 100;
    box-shadow: 0 0 40px 0 rgba(94, 92, 154, .26);
    background: black;
    padding: 20px;
    border-radius: 12px;
    width: 104px;
    height: 80px;
    top: 40%;
    left: 50%;
    margin-left: -52px;
    margin-top: -40px;
    display: none;
}

.loader-bars {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
}

.loader-bars .loader-bar {
    width: 4px;
    height: 100%;
    margin-right: 4px;
    border-radius: 200px;
    -webkit-transform: scaleY(0.2);
    transform: scaleY(0.2);
    -webkit-animation: loader-bars .5s infinite alternate ease-in;
    animation: loader-bars .5s infinite alternate ease-in;

}

.loader-bars .loader-bar:nth-child(1) {
    background-color: #7B68EE;
}

.loader-bars .loader-bar:nth-child(2) {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
    background-color: #7B68EE
}

.loader-bars .loader-bar:nth-child(3) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    background-color: #8368EE;
}

.loader-bars .loader-bar:nth-child(4) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    background-color: #8F68EC;
}

.loader-bars .loader-bar:nth-child(5) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    background-color: #A668EA;
}

.loader-bars .loader-bar:nth-child(6) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    background-color: #B868E9;
}

.loader-bars .loader-bar:nth-child(7) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    background-color: #D568E6;
}

.loader-bars .loader-bar:nth-child(8) {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
    background-color: #EC68E4;
}

@keyframes loader-bars {
    0% {
        transform: scaleY(0.2);
    }

    100% {
        transform: scaleY(1);
    }
}


.section-list .fit-table {
    padding-top: 14px;
}

.section-list .fit-table.slim .row {
    min-height: 46px;
    line-height: 1.2rem;
}


/* course id - section */
.list-group-item.section-el {
    color: black;
    border: 0px solid transparent;
    padding-left: 11px;
    margin-bottom: 1px;
}

.list-group-item.section-el i {
    margin-right: 11px;
}

.list-group-item.section-el.collapsed i.bi-caret-down-fill {
    display: none;
}

.list-group-item.section-el:not(.collapsed) i.bi-caret-right-fill {
    display: none;
}

.list-group-item.active {
    background-color: var(--black);
    border-color: black;
}

.list-group-item.active,
.list-group-item.active a,
.list-group-item.active .btn-link {
    color: white !important;
}

.list-group-item .btn-link,
.list-group-item form {
    display: inline-block;
    padding: 0px;
}

.list-group-item .list-group-item-actions a {
    margin-left: 4px;
    margin-right: 4px;
}



.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 0px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hover_color {
    border-size: 2px;
    border-style: solid;
    border-color: #f9f9f9;
    border-radius: 30px;
    background-color: #f9f9f9;
    padding: 30px;
}

@media screen and (max-width: 768px) {
    .hover_color {
        padding: 15px;
    }
}

.hover_color>* {
    text-align: center;
}

.hover_color:hover {
    background-color: #fcfcfc;
    border-color: var(--main-color);
    border-radius: 31px;
    border-size: 2px;
    border-style: solid;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.comments-list-load .row {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #bbb;
}

.comments-list-load .color-black {
    font-weight: bold;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}


#notfound {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#notfound .notfound {
    /* position: absolute; */
    /* left: 50%;
    top: 30%; */
    /* -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%) */
}

.notfound {
    max-width: 920px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.notfound .notfound-404 {
    z-index: -1
}

.notfound .notfound-404 h1 {
    color: #cdcdcd;
    font-weight: 700;
    font-size: 222px;
    line-height: 210px;
}

.notfound h2 {
    font-size: 46px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0
}

.notfound p {
    font-family: maven pro, sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    padding: 25px 0px;
}


.modal .modal-title {
    color: black;
}

.modal .close {
    opacity: 1;
}

.modal .modal-content {
    border: 0px solid transparent;
}


.courses-sections {
    margin-top: 80px
}

@media (max-width: 992px) {
    .courses-sections {
        margin-top: 0px
    }
}

/* how_it_works_block */
.how_it_works_block {
    flex-direction: column;
    align-items: center;
}

.how_it_works_block .point {
    margin: 21px 0px 45px;
    justify-content: center;
}

.how_it_works_block .point .ico {
    text-align: center;
    color: black;
    display: flex;
    font-size: 50px;
    padding-left: 1px;
    line-height: 0px;
}

.join-us {
    overflow: hidden;
}

.join-us-icon {
    font-size: 283px;
    position: absolute;
    opacity: 0.3;
    top: -28px;
    left: 10px;
}



.pay-row {
    margin-bottom: 15px;
}

.payment-option label {
    display: block;
}

.payment-option img {
    max-height: 32px;
}

.payment-option img.paypal {
    max-height: 23px;
}

.payment-option img.visa {
    max-height: 20px;
}