@import url('https://fonts.googleapis.com/css?family=Belgrano|Open+Sans:400,700&display=swap');

:root {
    --primary-color: #4f8c00;
    --primary-color-alt: #172B00;
    --dark-mode-color: #1b2836;
    --dark-mode-color-alt: #141f2b;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: 'Belgrano', serif !important;
    font-weight: 600 !important;
}
@keyframes blinkingStuff {
    0% { 
        background-color: #ff0000;
        color: #ffffff;
    }
    49% {
        background-color: #ff0000;
        color: #ffffff; 
    }
    60% { 
        background-color: transparent; 
        color: transparent;
    }
    99% {
        background-color:transparent;
        color: transparent;
    }
    100% {   
        background-color: #ff0000;
        color: #ffffff;
    }
}
.inprogress svg {
    animation: blinkingStuff .8s infinite;
}
body {
    overflow-x: hidden;
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif !important;
}
a, a:hover, .resource-card a:hover, .woocommerce a {
    color: var(--primary-color);
}
.row > * {
    height: 100%;
}
.btn.focus, .btn:focus {
    box-shadow: none !important;
}
.p-6 {
    padding: 4rem !important;
}
.cta {
    background-size: cover;
    background-position: center;
    padding: 3rem;
}
@media (max-width: 767px) {
    .cta h2 {
        font-size: 1.1rem;
    }
    .cta {
        padding: 1.5rem;
    }
}

.navbar-light .navbar-toggler, .navbar-light .navbar-toggler:focus, .navbar-dark .navbar-toggler, .navbar-dark .navbar-toggler:focus {
    border: 0 !important;
    outline: 0 !important;
}
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff !important;
    opacity: .8 !important;
}
.navbar .ext.nav-link, .navbar .ext.nav-link:hover {
    color: var(--primary-color-alt);
}
/* .eco-navbar li.nav-item:hover, .eco-navbar-alt li.nav-item:hover {
    border-bottom: 2px solid var(--primary-color);
} */
.eco-navbar {
    border-bottom: 3px solid var(--primary-color);
}
.eco-navbar .nav-link svg {
    font-size: 25px;
    vertical-align: bottom;
}
/* .navbar-light .nav-item.active {
    border-bottom: 2px solid var(--primary-color);
} */
.navbar-dark .nav-item.active {
    border-bottom: 2px solid #ffffff;
}
.navbar-brand img {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    right: 0;
    left: initial !important;
}
.nav-item img.avatar, .nav-link img.avatar {
    width: 30px;
    height: auto;
    vertical-align: middle;
    border-radius: 50%;
    margin-top: -3.3px;
}
.nav-item.eco-cart {
    position: relative;
    margin-right: .4em;
}
.cart-count {
    position: absolute;
    top: 0;
    left: 60%;
    background: var(--primary-color);
    border-radius: .3em;
    font-size: .8em;
    color: #fff;
    margin: 0;
    text-align: center;
    min-width: 1.5em;
    padding: .01em .2em;
    
}
.eco-cart .mycart {
    padding: 1em;
    width: 250px;
}
.dropdown-menu {
    border: 0;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--primary-color) !important;
}
.dropdown-item .cs {
    background: red;
    border-radius: .25em;
    font-size: 70%;
    font-family: 'Belgrano', serif !important;
    font-weight: 700;
    padding: 1px 3px;
    color: #fff;
    position: relative;
    top: -10px;
}
a.dropdown-item svg {
    margin-right: .1em;
}
.text-eco-green {
    color: var(--primary-color-alt) !important;
}
.text-eco-green_lite {
    color: var(--primary-color) !important;
}
.bg-white {
    background-color: #ffffff !important;
}
.bg-eco-light {
    background-color: #eaeaea !important;
}
.bg-eco-green-grad {
    background: -moz-linear-gradient(156deg, rgba(33,57,0,1) 59%, rgba(79,140,0,1) 93%);
    background: -webkit-linear-gradient(156deg, rgba(33,57,0,1) 59%, rgba(79,140,0,1) 93%);
    background: linear-gradient(156deg, rgba(33,57,0,1) 59%, rgba(79,140,0,1) 93%);
}
.bg-eco-green {
    background-color: rgb(33, 56, 0);
}
.bg-eco-dark {
    background-color: #353535;
}
.bg-eco-img {
    background-size: cover;
    background-position: right;
    position: relative;
    /* min-height: 500px; */
}
.bg-eco-img.bottom-right {
    background-position-x: right !important;
    background-position-y: bottom !important;
    background-size: cover !important;
}
.bg-eco-green-trans {
    background-color: rgba(24,43,0,.9);
    color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.search {
    background: transparent !important;
    border: 0 !important;
    color: var(--primary-color);
    box-shadow: none !important;
    font-family: Helvetica, 'FontAwesome', sans-serif !important;
    padding-left: 8px;
    transition: width .3s !important;
    -webkit-transition: width .3s !important;
    -moz-transition: width .3s !important;
    transition-timing-function: ease !important;
    -webkit-transition-timing-function: ease !important;
    -moz-transition-timing-function: ease !important;
}
.mobile.search {
    border: 2px solid #495057 !important;
    margin: 2px auto 10px auto;
}
.search:focus {
    box-shadow: none;
    background: #ffffff !important;
}
.slider-img {
    height: 90vh;
    background-position: center;
    background-size: cover;
}
.carousel-caption {
    bottom: 30% !important;
}
@media (max-width: 992px) {
    .carousel-caption {
        bottom: 20% !important;
    }
}
@media (max-width: 767px) {
    .carousel-caption p {
        font-size: .8rem;
    }
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    .carousel-caption a.btn {
        font-size: .8rem;
    }
}
.overlay {
    background: rgba(23,43,0,.95);
    position: absolute;
    width: 100%;
    height: 100%;
}
.slider-img .overlay {
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0.5) 20%, rgba(19,19,19,0.3) 60%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.5) 20%, rgba(19,19,19,0.3) 60%, rgba(0,0,0,1) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 20%, rgba(19,19,19,0.3) 60%, rgba(0,0,0,1) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
}
.eco-fullwidth {
    width: 100% !important;
}
.eco-line {
    height: 5px;
    width: 10%;
    background-color: var(--primary-color);
    margin: 15px 0;
}
.eco-vl {
    border-left: 1px solid #e8e8e8;
    position: relative;
    right: 1.2%;
    margin-left: -3px;
    top: 0;
}
@media (max-width: 992px) {
    .eco-vl {
        right: -0.2%;
    }
}
@media (max-width: 767px) {
    .eco-vl {
        display: none;
    }
}
.eco-page-title {
    padding: 130px 1px;
}
.course-archive.eco-page-title {
    padding: 90px 1px 60px 1px;
}
.eco-section .title {
    padding: 2rem 0;
    margin: auto;
}
.eco-section .home.title {
    padding: 4rem 0 1rem 0;
    margin: auto;
}
.hero .overlay {
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0.1) 15%, rgba(19,19,19,0.4) 60%, rgba(0,0,0,0.5) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.1) 15%, rgba(19,19,19,0.4) 60%, rgba(0,0,0,0.5) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 15%, rgba(19,19,19,0.4) 60%, rgba(0,0,0,0.5) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}
.eco-section .title h1 {
    font-weight: inherit;
}
button.tag {
    background: #ffffff;
    outline: 0;
    border: 0;
    padding: 5px 20px;
    font-family: 'Belgrano', serif !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    cursor: text !important;
}
@media (max-width: 767px) {
    .eco-section .title h1, .eco-section .title h2, .eco-section .title h3, .eco-about h2 {
        font-size: 1.5rem;
    }
    .eco-section .title {
        padding: 0;
        margin: auto;
    }
}
.eco-section p, .eco-section ol li, .eco-section ul li {
    font-size: 1.2rem;
}
@media (max-width: 767px) {
    .eco-section p, .eco-section ol li, .eco-section ul li {
        font-size: 1rem;
    }
}
.eco-section .title p {
    color: #ffffff;
}
.eco-section.mission_vision, .eco-section.the-course, .eco-section.testimonials {
    background-position: bottom;
    background-size: cover;
}
.eco-section.mission_vision hr {
    border-top: 1px solid rgba(235,235,235,.1);
}
.eco-card {
    color: #212529;
}
.eco-card .postImg {
    min-height: 180px;
    background-size: cover;
    background-position: center;
}
.eco-card, .eco-card img {
    border: none !important;
    background-color: transparent !important;
    /* border-radius: 0 !important; */
}
.eco-card svg.post-format {
    position: absolute;
    background-color: #ffffff;
    color: var(--primary-color-alt);
    padding: 5px;
    border-bottom-right-radius: 20px;
}
.eco-card .card-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.eco-card .card-img img {
    z-index: -1;
    min-height: 100%;
    min-width: 100%;
    width: auto;
    max-width: 600px;
}
.eco-card .card-body {
    padding: 10px 0;
}
.eco-card .card-title {
    margin-bottom: .01em;
}
.eco-card.service .card-body {
    padding: 10px 5px;
    position: relative;
    top: -73px;
    background: #ffffff;
    margin: 10px;
    margin-bottom: -2rem;
}
.eco-card .card-body .card-text {
    font-size: 1em;
    margin-bottom: .25em;
}
.eco-card .card-body .card-text .time{
    font-style: italic;
}
.eco-card.horizontal .card-body {
    padding: 0 15px;
}
.eco-card .card-body a {
    text-decoration: none;
    color: inherit;
}
.course-price {
    font-weight: 600;
}
.course-price .cost {
    font-size: 1.2em;
    font-family: 'Belgrano', serif;
}
.eco-card .card-body a small, .eco-card .card-body a small:hover {
    color: black;
    text-decoration: none;
}
.post-categories {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.post-categories li {
    font-size: inherit !important;
}
.post-categories li a {
    color: inherit;
    margin-right: 10px;
}
.eco-card .card-body a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}
.eco-card-wrap:hover {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
    background-color: #ffffff;
    /*border-bottom: 1px solid var(--primary-color);*/
    border-radius: .23rem;
    transition-property: all;
    transition-duration: .3s;
    transition-timing-function: ease;
}
.eco-card-wrap.active {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
    background-color: #ffffff;
}
.wpua-edit input.button-primary,
.eco-btn {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border: 0;
    box-shadow: 0 !important;
    text-transform: uppercase;
    transition-property: all;
    transition-duration: 1s;
    transition-timing-function: ease;
}
.eco-btn.outlined {
    border: 2px solid var(--primary-color) !important;
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border: 0;
    box-shadow: 0 !important;
    text-transform: uppercase;
    transition-property: all;
    transition-duration: .1s;
    transition-timing-function: ease;
}
.eco-btn:hover {
    background-color: #244000 !important;
    color: #ffffff !important;
    text-decoration: none;
}
.eco-btn.outlined:hover {
    border-color: #244000 !important;
}
.eco-btn svg {
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: ease;
}
.eco-btn:hover svg {
    margin-left: 10px;
    padding-left: 1px;
}
.nav-link.eco-btn:hover svg {
    margin-left: initial;
    padding-left: initial;
}
.eco-large-btn {
    width: 80%;
    height: 50px;
}
/* .eco-btn:hover svg {
    margin-left: 10px;
} */
@media (max-width: 424px) {
    .eco-cert h3 {
        font-size: 1.3rem;
    }
}
.the-course .eco-card {
    background-color: #ffffff !important;
}
.the-course .eco-card .card-body {
    padding: 1.2rem;
    margin: 30px auto;
}
.the-course .eco-card .card-body button {
    display: none;
}
.the-course .eco-card .card-body:hover button {
    display: inline;
}
.the-course .eco-card .card-body .certificate {
    width: 20%;
    height: auto;
    border-radius: 50%;
    position: relative;
    bottom: 90px;
    margin-bottom: -80px;
}
.the-course .eco-card-wrap:hover {
    background-color: transparent;
    border-radius: .23rem;
    transition-property: all;
    transition-duration: .3s;
    transition-timing-function: ease;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}
.why-train svg {
    font-size: 60px;
    margin-bottom: 15px;
    color: var(--primary-color-alt);
}
.why-train .btn svg {
    font-size: inherit !important;
    margin-bottom: 0;
    color: inherit !important;
}
.why-train .btn {
    display: none;
}
.why-train .point:hover .btn {
    display: inline;
}
.train-details svg.icon {
    font-size: 90px;
    margin-bottom: 15px;
    color: var(--primary-color-alt);
}
.testimonials .carousel-inner .carousel-item {
    min-height: 300px;
}
.testimonials .carousel-inner .carousel-item .carousel-caption  {
    bottom: 60px !important;
}
.testimonials .carousel-inner .carousel-item .carousel-caption p {
    font-size: 1.2rem;
}
@media (max-width: 442px) {
    .testimonials .carousel-inner .carousel-item .carousel-caption p {
        font-size: .8rem;
    }
}
.testimonials .carousel .carousel-control-next, .testimonials .carousel .carousel-control-prev {
    bottom: 80px;
}
.course-calendar .upcoming-courses {
    position: relative;
    bottom: 30px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
}
.course-calendar .course {
    border-bottom: 1px solid #eaeaea;
    padding: 1.5rem;
}
/* .course-calendar .course:nth-child(even){
    background-color: #f8f9fa !important;
} */
.course-calendar .course svg {
    font-size: 20px;
}
.course-calendar .course.filtered {
    display: none;
}
.when-where span {
    display: inline-block;
}
.course-calendar .course .when-where svg {
    color: var(--primary-color-alt);
}
.course-calendar .course a, .course-calendar .course a:hover {
    color: var(--primary-color);
}
/* .course-calendar .course-partner img {
    margin: 1.5rem 1.5rem auto auto;
} */
/*Horizontal Scroll menu*/
.course-calendar .scrollmenu-wrap {
    position: relative;
    bottom: 80px;
    background-color: #fff;
}
div.scrollmenu {
    overflow: auto;
    white-space: nowrap;
    border-bottom: 2px solid var(--primary-color);
}
div.scrollmenu a {
    display: inline-block;
    color: black;
    border-bottom: 3px solid #ffffff;
    text-align: center;
    padding: 14px;
    font-size: inherit;
    text-decoration: none;
    cursor: pointer;
}
div.scrollmenu a:hover, div.scrollmenu a.active {
    border-color: var(--primary-color);
}
.inhouse-training .card .card-header {
    background-color: var(--primary-color-alt);
}
.inhouse-training .card .card-header h2 {
    display: inline-block;
}
.inhouse-training .card .card-header h2 button {
    font-size: 1.5rem;
    color: #ffffff;
    text-align: left;
}
.inhouse-training .card .card-body {
    font-size: 1.2rem;
}
.sticky-top.course-nav {
    top: 60px;
}
.event-card a {
    color: inherit;
}
.event-card a:hover {
    color: var(--primary-color);;
}
.event-card .event-date-wrap {
    position: relative;
}
.event-card svg#inprogress {
    position: absolute;
    color: var(--primary-color);
    border-radius: 50px;
    padding: 2px;
    top: -10px;
    left: -10px;
}
.event-card .event-date {
    background: var(--primary-color-alt);
    padding: 15px;
    color: #ffffff;
}
.live-on {
    background: transparent;
    color: red;
    padding: 5px 8px;
    border: 2px solid red;
    border-radius: .3em;
    bottom: 12px;
    position: relative;
}
.event-card .event-date .inprogress, .inprogress {
    background: #ff0000;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: .3em;
    bottom: 12px;
    position: relative;
}
.event-card .event-date .concluded, .concluded {
    background-color: #920000;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: .3em;
    bottom: 12px;
    position: relative;
}
.event-card .event-details {
    border: 1px solid grey;
    border-left: 0;
    padding: 1rem;
}
@media only screen and (max-width: 767px) {
    .event-card .event-details {
        border-left: 1px solid grey;
    }
}
.event-card .event-meta {
    text-transform: uppercase;
    font-size: .8rem;
}
.event-cta div {
    margin: 10px 0;
}
.event-cta {
    font-size: 1.3rem;
}
@media only screen and (max-width: 424px) {
    .event-cta {
        font-size: 1rem;
    }
}
.resource-card, .resource-card a {
    color: #212529;
}
.resource-card a svg {
    float: left;
    margin: 0 10px 0px 0;
    bottom: 2px;
    position: relative;
}
.eco-service > *, .eco-product > * {
    margin: 30px auto;
}
.eco-service p img, .eco-service div img, .eco-service img,
.eco-product p img, .eco-product div img, .eco-product img  {
    max-width: 100%;
    height: auto;
    margin: 10px auto;
}
.eco-section blockquote {
    background-image: url(../img/icbg2.svg);
    color: #ffffff;
    background-position-y: bottom;
    background-position-x: right;
    background-size: cover;
    padding: 30px;
    font-family: monospace;
    margin: 30px 0;
    border: solid 10px var(--primary-color);
}
.eco-about-card svg {
    width: 100%;
    height: 100%;
}
.eco-contact .social-icons svg {
    font-size: 2rem;
    margin-right: 1rem;
}
.eco-contact a, .eco-contact a:hover  {
    color: var(--primary-color);
}
.eco-contact-form {
    text-align: center;
}
.eco-contact-form ul li, .eco-contact-form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eco-contact-form label {
    display: none;
}
.eco-contact-form input, .eco-contact-form textarea, .wpcf7-form input, .wpcf7-form textarea{
    width: 100%;
    border-radius: .25rem;
    border: none;
    padding: 10px 12px;
    margin: 15px auto;
}
.eco-contact-form input:focus, .eco-contact-form textarea:focus {
    box-shadow: none;
    border: 2px solid var(--primary-color);
    outline: none;
}
.eco-contact-form input[type="submit"] {
    background-color: var(--primary-color);
    width: 50%;
    text-transform: uppercase;
    color: #ffffff;
    padding: 10px 12px;
}
.eco-contact-form input[type="submit"]:hover {
    background-color: rgba(79,140,0,.5) !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent !important;
    background: var(--primary-color) !important;
    color: white !important;
}
.eco-card.service .card-body .eco-btn {
    display: none;
}
.eco-card-wrap:hover .service .card-body .eco-btn {
    display: block;
    text-align: center;
    margin: auto;
}
.eco-clients img {
    width: auto;
    height: 80px;
    margin: 1em;
    /* filter: grayscale(100%); */
}

footer{
    background-color: #0c0c0c;
    /* background-color: #353535; */
    /* background-color: var(--primary-color-alt); */
}
footer .overlay {
    background: rgba(12,12,12,.95);
    position: absolute;
    width: 100%;
    height: 100%;
}
footer a, footer a:hover {
    color: var(--primary-color);
}
footer ul {
    margin: 0;
}
footer ul li {
    list-style: none;
    padding-bottom: .5rem;
}
footer ul li.social-icons svg {
    font-size: 1.8rem;
    margin-right: 1rem;
}
footer ul.links li a{
    color: #ffffff;
}
.copyright {
    position: relative;
}
.content .inPost-Img {
    position: relative;
    top: -60px;
    border-radius: .25em;
    margin-bottom: -1.5rem;
}
.content .inPost-Img.event {
    top: -160px;
    border-radius: .25em;
    margin-bottom: -8.5rem;
}
.content img, .content p img, .content .wp-caption img, .content .wp-caption {
    max-width: 100% !important;
    height: auto;
}
.content img.alignleft {
    float: left;
    margin: auto 20px 20px auto;
}
.content img.alignright {
    float: right;
    margin: auto auto 20px 20px;
}
.content p img {
    margin-bottom: 30px;
}
.content .meta p {
    font-size: 80%;
    line-height: 2;
}
.content .meta p a {
    background: #265A9B;
    color: #fff;
    padding: 3px;
    border-radius: .2rem;
}
.content .meta.video p a {
    background: #fff;
    color: #265A9B;
    padding: 3px;
    border-radius: .2rem;
}
.content p iframe {
    width: 100%;
    height: 481px;
}
.content p iframe body .total-main-content #footer_container, 
.content p iframe body .total-main-content #header_container, 
.content p iframe body .total-main-content #stopgap-warpper {
    display: none !important;
}
@media only screen and (max-width: 768px) {
    .content p iframe {
        height: 381px;
    }
}
.content .wp-caption {
    border-bottom: 1px solid;
    margin-bottom: 30px;
}
.content .wp-caption .wp-caption-text {
    font-size: .7rem;
    padding: 7px 3px;
    margin-bottom: 0;
}
.content .wp-video, .content .wp-video .mejs-container {
    width: 100% !important;
    margin-bottom: 30px;
}
.lesson-recording {
    position: relative;
}
.lesson-recording .overlay {
    background: rgba(0, 0, 0, 0.3);
}
.lesson-recording p {
    position: absolute;
    top: 0;
    color: black;
    font-family: 'Belgrano';
    font-weight: 900;
    padding: 10px;
    background: white;
    border-bottom-right-radius: .5em;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
@media (min-width: 768px) {
    .lesson-recording p {
        font-size: 1.3em;
    }
}
.eco-blog .more.sticky-top {
    top: 65px;
}
.pagination {
    display: inline-block !important;
}
.pagination .screen-reader-text {
    display: none !important;
}
.pagination .nav-links ul, .page-numbers {
    list-style: none;
    text-align: center;
    padding: 0;
}
.pagination .nav-links .page-numbers li, .page-numbers li {
    display: inline-block;
    margin-bottom: 1.5rem;
}
.pagination .nav-links .page-numbers li a, .page-numbers li a, input[type="submit"] {
    border-radius: .25rem;
    padding: 12px 18px;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    color: #fff;
    background-color: var(--primary-color) !important;
    /* font-weight: 900; */
    border: none !important;
}
.pagination .nav-links .page-numbers li a:hover, .page-numbers li a:hover {
    background: var(--primary-color);
    border: none;
    color: #fff;
}
.pagination .nav-links .page-numbers li span, .page-numbers li span {
    border-radius: .25rem;
    padding: 12px 18px;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 900;
    background: #f6f6f6;
}
.no-click {
    cursor: not-allowed !important;
}
.no-border {
    border: none !important;
}
.eco-course-resume {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1029;
    border: 2px solid var(--primary-color) !important;
}
.eco-course-resume span {
    vertical-align: -moz-middle-with-baseline;
    vertical-align: middle;
}
@media (min-width: 768px) {
    .eco-course-resume .yes-no {
        float: right;
    }
}
@media (max-width: 767px) {
    .eco-course-resume .yes-no {
        margin-top: .6em;
        display: block;
    }
}
.eco-course-resume .no-thanks {
    cursor: pointer;
    text-decoration: underline;
}
@media (min-width: 767px) {
    .eco-course-meta {
        position: absolute;
    }
}
.eco-course-meta .meta-details .meta-note {
    border-radius: .23em;
    border: 1px solid #dcdacb;
    margin: auto;
    margin-bottom: 1.25em;
    padding: 1.2em;
    font-size: 1em;
    font-weight: 600;
}
.eco-course-meta .meta-details .meta-note svg {
    font-size: 1.5em;
    vertical-align: bottom;
    margin-right: .3em;
}
.eco-course-meta .course-price {
    margin-bottom: 1em;
    font-size: 150%;
}
.eco-course-meta .learndash_join_button .btn-join {
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    letter-spacing: inherit;
}
.eco-course-meta .learndash_join_button .btn-join:hover {
    background-color: #244000 !important;
}
/* .eco-group-license h4 {
    font-size: 1.3em;
} */
.eco-group-license p {
    font-size: 1.15em;
}
.learndash-wrapper .ld-button, 
.learndash-wrapper .ld-expand-button, 
.learndash-wrapper .learndash_mark_complete_button, 
.learndash-wrapper #learndash_mark_complete_button,
.learndash-wrapper .wpProQuiz_content .wpProQuiz_button,
.learndash-wrapper .wpProQuiz_content .wpProQuiz_button2 {
    border-radius: .3em !important;
    font-family: 'Open Sans', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: inherit !important;
}
.learndash-wrapper .ld-button:hover {
    background-color: #244000 !important;
    color: #ffffff;
    /* opacity: 1 !important; */
}
a.ld-course-resume.ld-button {
    text-transform: uppercase;
    width: 100%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: .375rem .75rem;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: inherit;
}
.ld-profile-avatar svg {
    height: 100%;
    width: 100% !important;
    margin: auto
}
.learndash-wrapper .ld-profile-avatar {
    border: 3px solid #ffffff;
}
.learndash-wrapper .ld-focus .ld-focus-header .ld-user-menu .ld-text {
    font-size: .9em !important;
}
/* .learndash-wrapper .ld-focus .ld-focus-header .ld-mobile-nav {
    display: block !important;
} */
.learndash-wrapper .ld-focus .ld-focus-header .ld-brand-logo {
    padding: .1em 1em !important;
}
.learndash-wrapper .ld-focus .ld-focus-header {
    height: 60px !important;
    border-bottom: 3px solid var(--primary-color) !important;
}
.learndash-wrapper .ld-focus .ld-focus-header .ld-progress-wrap {
    max-width:  100% !important;
}
.learndash-wrapper .ld-focus .ld-focus-header .ld-user-menu {
    background: var(--primary-color) !important;
    color: #ffffff;
    border: none !important;
    height: 60px !important;
    flex: 0;
}
.learndash-wrapper .ld-focus .ld-focus-header .ld-user-menu .ld-user-menu-items a {
    text-transform: uppercase;
    border-bottom: 1px solid #fff !important;
}
.learndash-wrapper .ld-focus .ld-focus-header .ld-user-menu .ld-user-menu-items a:last-child {
    border-bottom-left-radius: .25em;
    border-bottom: 0 !important;
}
.learndash-wrapper .ld-focus .ld-focus-header .ld-user-menu .ld-user-menu-items {
    margin-right: 0 !important;
}
.learndash-wrapper .ld-focus .ld-focus-sidebar {
    padding-top: 60px !important;
    padding-bottom: 90px !important;
    height: 100%;
}
@media (max-width: 768px) {
    .learndash-wrapper .ld-focus .ld-focus-sidebar {
        position: fixed !important;
    }
}
.learndash-wrapper .ld-content-actions .ld-content-action+a {
    font-weight: 600;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .learndash-wrapper .ld-focus .ld-focus-header .ld-content-actions {
        border-bottom: 1px solid #efefef;
    }
}
.learndash-wrapper .ld-content-actions .ld-content-action .ld-course-step-back {
    text-transform: uppercase;
}
/* .learndash-wrapper .ld-focus.ld-focus-sidebar-collapsed .ld-focus-sidebar {
    display: none !important;
} */
/* .learndash-wrapper .ld-alert-certificate.ld-alert-success {
    color: #fff !important;
} */
.learndash-wrapper .ld-alert-certificate.ld-alert-success .ld-button {
    font-size: 1em;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .learndash-wrapper .ld-alert-certificate.ld-alert-success .ld-button {
        font-size: .8em;
    }
}
.learndash-wrapper .ld-alert-success {
    color: var(--primary-color) !important;
}
.learndash-wrapper .ld-course-status.ld-course-status-enrolled {
    border-radius: .25em !important;
    padding: 1em !important;
}
.eco-card .learndash-wrapper .ld-progress .ld-progress-heading {
    font-size: .75em !important;
}
.eco-card .learndash-wrapper .ld-progress .ld-progress-heading .ld-progress-steps {
    display: none;
}
.eco-card .learndash-wrapper .ld-progress .ld-progress-heading .ld-progress-stats .ld-progress-percentage {
    margin-right: auto;
}
.eco-card .learndash-wrapper .ld-progress .ld-progress-bar,
.eco-card .learndash-wrapper .ld-progress .ld-progress-bar .ld-progress-bar-percentage {
    height: 6px !important;
}
@media (max-width: 767px) {
    .eco-card .learndash-wrapper .ld-progress .ld-progress-heading .ld-progress-stats .ld-progress-percentage {
        margin: auto;
        margin-bottom: .5em;
    }
}
.learndash-wrapper .ld-progress .ld-progress-heading {
    font-size: .85em !important;
}
.learndash-wrapper .ld-progress .ld-progress-bar,
.learndash-wrapper .ld-progress .ld-progress-bar .ld-progress-bar-percentage {
    height: 12px !important;
}
@media (max-width: 767px) {
    .learndash-wrapper .ld-progress .ld-progress-heading .ld-progress-stats .ld-progress-percentage {
        margin: auto;
        margin-bottom: .5em;
    }
}
.learndash-wrapper .ld-breadcrumbs .ld-breadcrumbs-segments {
    text-transform: uppercase !important;
}
.learndash-wrapper .ld-item-list .ld-section-heading .ld-search-prompt:hover {
    color: var(--primary-color) !important;
}
.wpProQuiz_content .wpProQuiz_question_text p {
    font-size: 1.2em;
}
.wpProQuiz_content .wpProQuiz_question_text .meta.video p a {
    background: #fff;
    color: #265A9B;
    padding: 3px;
    border-radius: .2rem;
}
.wpProQuiz_content .wpProQuiz_question_text p iframe {
    width: 100%;
    height: 481px;
}
@media only screen and (max-width: 768px) {
    .wpProQuiz_content .wpProQuiz_question_text p iframe {
        height: 381px;
    }
}
.wpProQuiz_content .wpProQuiz_question_text .wp-video, .wpProQuiz_content .wpProQuiz_question_text .wp-video .mejs-container {
    width: 100% !important;
    margin-bottom: 30px;
}
.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem label.is-selected, 
.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem label:focus-within{
    border-color: var(--primary-color) !important;
}
.learndash-wrapper .wpProQuiz_content .wpProQuiz_time_limit .wpProQuiz_progress {
    background: var(--primary-color) !important;
    border-radius: .3em;
}
.learndash-wrapper .wpProQuiz_content .wpProQuiz_time_limit:before {
    border-radius: .3em;
}
.learndash-wrapper .wpProQuiz_content form {
    width: 100%;
}
.learndash-wrapper .wpProQuiz_content form[name=uploadEssay] input[type=file] {
    color: #000000;
    width: 100%;
}
.learndash-wrapper .wpProQuiz_content form[name=uploadEssay] input[type=submit],
.learndash-wrapper .wpProQuiz_content a#quiz_continue_link {
    border-radius: .3em;
    text-transform: uppercase !important;
}
.wpProQuiz_content .uploadEssayMessage {
    width: 100%;
    border: 1px solid;
    padding: 5px;
}
.wpProQuiz_results, .wpProQuiz_sending {
    text-align: center;
}
.learndash-wrapper .ld-login-modal .ld-button, .learndash-wrapper .ld-login-modal input[type='submit'] {
    border-radius: .3em !important;
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    padding: .375rem .75rem;
    font-size: 1rem;
    letter-spacing: .01em;
    font-weight: 400;
    border: 0;
    box-shadow: 0 !important;
    text-transform: uppercase;
    transition-property: all;
    transition-duration: 1s;
    transition-timing-function: ease
}
.learndash-wrapper .ld-login-modal .ld-login-modal-register #wp-submit {
    margin: 0 auto;
    min-width: inherit !important;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: .375rem .75rem;
    border-radius: .3em !important;
    font-weight: inherit !important;
    font-size: inherit !important;
    border: inherit;
}
.learndash-wrapper .ld-login-modal .ld-login-modal-form .login-password::before,
.learndash-wrapper .ld-login-modal .ld-login-modal-form .login-username::before {
    line-height: inherit !important;
}
.learndash-wrapper .ld-login-modal input[type="text"], 
.learndash-wrapper .ld-login-modal input[type="password"], 
.learndash-wrapper .ld-login-modal input[type="email"], 
.learndash-wrapper .ld-login-modal .ld-login-field, 
.learndash-wrapper .ld-login-modal .ld-password-field {
    padding: 1em 1em 1em 2em !important;
    border-radius: .3em;
}
.learndash-wrapper .ld-focus-comments .ld-focus-comments__comments {
    padding: .7em 1.5em;
    background: #fff;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    border-radius: .3em;
}
.learndash-wrapper .ld-focus-comment.bypostauthor > .ld-comment-wrapper, 
.learndash-wrapper .ld-focus-comment.role-group_leader > .ld-comment-wrapper, 
.learndash-wrapper .ld-focus-comment.role-administrator > .ld-comment-wrapper {
    background: #f0f3f6 !important;
}
.learndash-wrapper .ld-focus-comments #commentform .logged-in-as {
    display: none;
}
.learndash-wrapper .ld-focus-comments .form-submit #submit {
    border-radius: .3em !important;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .01em;
}
.learndash-wrapper .ld-focus-comments #commentform textarea#comment {
    background: #fff !important;
}
.eco-focusmode-setting, .eco-focusmode-setting-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.eco-dark-mode-toggle, .eco-focusmode-comment-toggle, .eco-focusmode-setting-toggle {
    font-size: .8em;
    text-transform: uppercase;
    color: white;
    border-radius: .5em;
    background: var(--primary-color);
    padding: 10px;
    cursor: pointer;
    display: block;
}
.eco-focusmode-setting {
    bottom: 80px;
    background: #ffffff;
    display: none;
}
/* .eco-focusmode-comment-toggle {
    bottom: 130px;
} */
.eco-focusmode-comment-toggle:hover {
    color: #fff;
}
.eco-dark-mode-toggle svg, .eco-focusmode-comment-toggle svg {
    font-size: 1.5em;
    vertical-align: middle;
}
html.dark-mode,
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-header,
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-header .ld-brand-logo,
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-sidebar,
html.dark-mode .learndash-wrapper .ld-status-incomplete.ld-status-icon,
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-topic-list.ld-table-list:before,
html.dark-mode .ld-in-focus-mode .learndash-wrapper,
html.dark-mode .learndash-wrapper .ld-course-navigation .ld-lesson-item-preview a.ld-lesson-item-preview-heading,
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item {
    background: var(--dark-mode-color) !important;
}
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-topic-list.ld-table-list,
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item-expanded .ld-table-list-items,
html.dark-mode .learndash-wrapper .ld-table-list a.ld-table-list-item-preview,
html.dark-mode .learndash-wrapper .ld-table-list .ld-table-list-items {
    background: var(--dark-mode-color-alt) !important;
}
html.dark-mode .ld-in-focus-mode .learndash-wrapper,
html.dark-mode .learndash-wrapper .ld-course-navigation .ld-lesson-item-preview a.ld-lesson-item-preview-heading,
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item,
html.dark-mode .learndash-wrapper .ld-table-list a.ld-table-list-item-preview,
html.dark-mode .learndash-wrapper .ld-button .ld-text, 
html.dark-mode .learndash-wrapper .ld-button .ld-icon {
    color: #ffffff !important;
}
html.dark-mode .learndash-wrapper .ld-course-navigation .ld-status-icon.ld-status-in-progress {
    background: transparent !important;
}
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-header .sfwd-mark-complete .learndash_mark_complete_button,
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-header .sfwd-mark-complete:after {
    color: #fff !important;
}
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-header .ld-content-action .learndash_timer, 
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-header .ld-content-action #learndash_timer {
    background: var(--dark-mode-color);
}
html.dark-mode .learndash-wrapper .ld-breadcrumbs .ld-breadcrumbs-segments span:after {
    color: #000000;
}
@media (max-width: 768px) {
    html.dark-mode .learndash-wrapper .ld-focus .ld-focus-header .ld-content-actions {
        background: var(--dark-mode-color-alt) !important;
        border-bottom: 1px solid #efefef;
    }
}
html.dark-mode .learndash-wrapper .ld-focus .ld-focus-header .ld-mobile-nav span {
    background: #ffffff !important;
}
html.dark-mode .wpProQuiz_reviewQuestion li:not(.wpProQuiz_reviewQuestionTarget) {
    color: #000;
}
html.dark-mode .learndash-wrapper .ld-focus-comments .ld-focus-comments__comments {
    padding: .7em 1.5em;
    background: var(--dark-mode-color-alt);
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    border-radius: .3em;
}
html.dark-mode .learndash-wrapper .ld-focus-comment.bypostauthor > .ld-comment-wrapper, 
html.dark-mode .learndash-wrapper .ld-focus-comment.role-group_leader > .ld-comment-wrapper, 
html.dark-mode .learndash-wrapper .ld-focus-comment.role-administrator > .ld-comment-wrapper {
    background: var(--dark-mode-color) !important;
}
html.dark-mode .learndash-wrapper .ld-focus-comments #commentform textarea#comment {
    background: var(--dark-mode-color-alt) !important;
    color: #fff;
}
html.dark-mode .learndash-wrapper .ld-focus-comment .ld-comment-avatar .ld-comment-avatar-author .ld-comment-author-name {
    color: #728188;
}
html.dark-mode .eco-focusmode-setting {
    background: var(--dark-mode-color);
}

.eco-ribbon {
    position: absolute;
    padding: 0 0.5em;
    font-size: .9em;
    margin: 0;
    top: 1em;
    line-height: 1.875em;
    color: white;
    border-radius: 0 0.25em 0.25em 0;
    background: red;
    box-shadow: -1px 2px 3px rgba(0,0,0,0.5);
} 
.eco-ribbon:before, .eco-ribbon:after {
    position:absolute;
    content: '';
    display: block;
} 
.eco-ribbon:before {
    width: 0.469em;
    height: 125%;
    padding: 0 0 0.438em;
    top:0;
    left: -0.469em;
    background:inherit;
    border-radius: 0.313em 0 0 0.313em;
}
.eco-ribbon:after {
    width: 0.313em;
    height: 0.313em;
    background: rgba(0,0,0,0.35);
    bottom: -0.313em;
    left: -0.313em;
    border-radius: 0.313em 0 0 0.313em;
    box-shadow: inset -1px 2px 2px rgba(0,0,0,0.3);
}
@media (max-width: 600px) {
    .eco-ribbon{
      line-height: 1.143em;
      padding: 0.5em;
    } 
}
.eco-live-course-item {
    position: absolute;
    right: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: red;
    color: white;
    padding: 10px;
    border-bottom-left-radius: .25em;
    box-shadow: -1px 2px 3px rgba(0,0,0,0.5);
}
p.card-text.font-weight-bolder.live-on, .live-course-stat .live-on, .live-course-stat .concluded, .live-course-stat .inprogress{
    bottom: 0;
    width: 100%;
    display: block;
}
.woocommerce-info {
    border-top-color: var(--primary-color);
}
.woocommerce-info::before {
    color: var(--primary-color);
}
.woocommerce button, .woocommerce a.button, .woocommerce-Button, .woocommerce-MyAccount-content .woocommerce a.button {
    text-transform: uppercase !important;
    font-weight: 400 !important;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background: var(--primary-color) !important;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: none !important;
}
.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
    top: initial !important;
}
.woocommerce-form__input.woocommerce-form__input-checkbox {
    width: initial !important;
    margin-right: .5em;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    color: #ffffff;
}
.woocommerce-LostPassword.lost_password a {
    color: #fff;
}
.woocommerce form .password-input, .woocommerce-page form .password-input {
    width: 100%;
}
.woocommerce-error {
    background: #b81c23;
    color: #ffffff;
}
.woocommerce-error::before {
    color: #ffffff;
}
.woocommerce-error li, .woocommerce-info li, .woocommerce-message li {
    font-size: 1em !important;
}
.woocommerce-MyAccount-content .woocommerce-Message {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    border-radius: .25em;
} 
.woocommerce-checkout #payment ul.payment_methods li input {
    height: 20px;
    /* margin: auto; */
}
.password_update label {
    display: none !important;
}
.password_update input {
    margin-bottom: 1em !important;
}
.userCard .dropdown-item {
    color: inherit;
}
.userCard .dropdown-item:active {
    color: #fff;
}
.sticky-top.password_update,
.sticky-top.userCard {
    top: 5em;
}
.modal-backdrop {
    z-index: 1031 !important;
}
#wpua-edit-attachment-existing {
    display: none;
}
.ecoUserAccount .avatar {
    display: block;
    margin: auto auto 15px auto;
    border-radius: 50%;
}
a.edit-avatar {
    cursor: pointer;
    font-size: .7em;
    position: absolute;
    top: 15px;
    background: var(--primary-color);
    padding: 5px;
    border-radius: .3em;
    color: #fff !important;
    text-transform: uppercase;
}
.learndash-wrapper .ld-profile-summary  {
    margin: 0;
}
.learndash-wrapper .ld-profile-summary .ld-profile-card {
    display: none !important;
}
.learndash-wrapper .ld-profile-summary .ld-profile-stats {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    border-radius: .25rem;
    padding: .5rem;
}
.learndash-wrapper .ld-profile-summary .ld-profile-stats .ld-profile-stat-certificates {
    border-right: 0;
}
.learndash-wrapper .ld-profile-summary .ld-profile-stats .ld-profile-stat-points {
    display: none;
}
.learndash-wrapper .stm_zoom_content {
    width: 100%;
    text-align: center;
}
.learndash-wrapper .stm_zoom_content .stm-join-btn {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color) !important;
    border-radius: .3em !important;
}
.learndash-wrapper .stm_zoom_content .stm-join-btn:hover {
    background-color: var(--primary-color-alt) !important;
    border: 2px solid var(--primary-color-alt) !important;
    color: #fff;
}
.learndash-wrapper .stm_zoom_content .stm-join-btn.outline {
    background: transparent;
    color: var(--primary-color) !important;
}
.learndash-wrapper .stm_zoom_content .stm-join-btn.outline:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}
.learndash-wrapper .stm_zoom_content .agenda, 
.learndash-wrapper .stm_zoom_content .date, 
.learndash-wrapper  .stm_zoom_content .password {
    display: none !important;
}
.woocommerce-input-wrapper {
    width: 100%;
}
.checkout.woocommerce-checkout.eco-contact-form .woocommerce-input-wrapper input,
.coupon.eco-contact-form input,
.checkout.woocommerce-checkout.eco-contact-form .woocommerce-input-wrapper textarea,
.eco-contact-form .woocommerce-address-fields__field-wrapper p input {
    border: 1px solid #dee2e6;
}
.checkout.woocommerce-checkout.eco-contact-form .woocommerce-input-wrapper input:focus,
.coupon.eco-contact-form input:focus,
.checkout.woocommerce-checkout.eco-contact-form .woocommerce-input-wrapper textarea:focus,
.eco-contact-form .woocommerce-address-fields__field-wrapper p input:focus {
    border: 2px solid var(--primary-color);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left;
}
.coupon.eco-contact-form input {
    width: 50% !important;
}
.product-thumbnail img {
    width: 20%;
}
.eco-contact-form #payment label {
    display: inline;
}
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    margin-bottom: 2em;
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email, 
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
    margin: 1em auto;
}
.button.wc-forward {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    padding: 3px 10px;
    border-radius: .25em !important;
    text-transform: uppercase !important;
    font-size: 90% !important;
}
.group-management-header span.uo-looks-like-h3 {
    font-family: 'Belgrano', serif !important;
    font-size: 2em;
}
.uo-groups .group-management-header .uo-groups-selector, 
.uo-groups .group-management-header .uo-groups-selector .select2-container, 
.uo-groups .group-management-header .uo-groups-selector .uo-select.uo-inline-block {
    width: 100% !;
}
.uo-groups .group-management-header .uo-groups-selector .select2-container--default .select2-selection--single {
    height: 50px;
    padding: 10px;
}
.uo-groups .group-management-header .uo-groups-selector .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
    width: 40px;
}
.uo-groups #group-management-users .uo-groups-group-courses {
    border-bottom: 3px solid #f0f3f6;
    border-top: 3px solid #f0f3f6;
    padding-bottom: 1.5em;
    padding-top: 1.5em;
}
.uo-groups #group-management-leaders {
    border-top: 3px solid #f0f3f6;
    margin-top: 2em;
}
.dpn-zvc-single-content-wrapper {
    margin-top: inherit !important
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper {
    width:100%;
    clear:both
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-box {
    margin-top:1.5rem;
    text-align: center;
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-box:first-child {
    margin-top:0
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-box .join-links .btn {
    padding:10px 20px;
    color:#fff;
    border-radius:0;
    display:block;
    margin-top:10px
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-box .join-links .btn-join-link {
    background:var(--primary-color);
    border-radius: .3em;
    text-transform: uppercase;
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-box .join-links .btn-start-link {
    background:#1c3b82
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-state {
    border:1px solid #ccc;
    padding:20px;
    margin-top:20px
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-state p {
    padding:0;
    margin:0
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-timer {
    display:table;
    width:100%;
    table-layout:fixed;
    border-spacing:2px;
    border-collapse:separate
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-timer .dpn-zvc-meeting-ended {
    background:#3a3a3a;
    padding:10px 16px;
    border-radius:2px
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-timer .dpn-zvc-meeting-ended h3 {
    margin:0;
    padding:0;
    color:#fff;
    line-height:1.8
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-timer .dpn-zvc-timer-cell {
    display:table-cell;
    vertical-align:top;
    text-align:center;
    font-size:32px;
    background:var(--primary-color);
    color:#fff;
    line-height:normal;
    padding:10px 3px;
    border-radius:2px
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-timer .dpn-zvc-timer-cell-number {
    font-size:1em;
    width:100%
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-timer .dpn-zvc-timer-cell-string {
    font-size:.45em;
    width:100%;
    text-transform:uppercase
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-tile {
    background:#3a3a3a;
    padding:0 16px;
    border-radius:2px
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-tile h3 {
    color:#fff;
    margin:0;
    padding:10px 0
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-content {
    background:#f2f2f2;
    padding:16px
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-content .dpn-zvc-sidebar-content-list {
    margin-bottom:1rem
}
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-content .dpn-zvc-sidebar-content-list span {
    display:block
}
#vczapi-zoom-browser-meeting .vczapi-zoom-browser-meeting--meeting-form button[type="submit"] {
    background-color: var(--primary-color) !important;
}

/*COMMENTS*/
@media (max-width: 425px) {
    #comments .actions h4 {
        font-size: 1rem;
    }
}
ol.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
li.comment {
    background-color: #fff;
    background-clip: border-box;
    border: 2px solid #ced4da;;
    border-radius: .25rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.04)!important;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
li.comment.bypostauthor {
    border: 2px dashed var(--primary-color);
}
li.comment .children {
    list-style: none;
}
li.comment .children li {
    margin-top: 1.2rem;
    margin-bottom: 1rem;
}
.comment-body {
    margin-left: 65px;
}
.comment-author.vcard {
    font-size: 16px;
    margin-bottom: 0.4em;
    position: relative;
    z-index: 2;
    display: inline-block;
}
.comment-author .avatar {
    border-radius: 50%;
    width: 50px;
    height: auto;
    left: -60px;
    position: absolute;
}
.says {
    display: none;
}
.comment-meta {
    display: block;
    font-size: 15px;
    margin-bottom: 1.3em;
}
/* .reply {

} */
.comment-reply-link {
    position: relative;
    color: var(--primary-color);
    font-weight: 700;
}
#cancel-comment-reply-link {
    font-size: 80%;
    font-weight: 700;
}
.comment-respond form .comment-form-comment {
    padding: 5px 5px 0px 5px;
    border-radius: .25rem;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.comment-respond form .comment-form-comment textarea {
    width: 100%;
    background: #fff;
    border: 2px solid #ced4da;;
    border-radius: .25rem;
    padding: .375rem .75rem;
}
p.comment-form-url, p.comment-form-author label, p.comment-form-email label, p.comment-form-comment label {
    display: none;
}
.comment-form input#email, .comment-form input#author {
    width: 100%;
    height: 40px;
    padding-left: 1rem;
    border-radius: .25rem;
    border: 1px solid;
}
.comment-respond {
    margin-top: 1.5rem;
}
/* input#submit, input.submit {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    text-transform: uppercase; 
    font-weight: 600 !important;
    font-size: 1rem;
    text-transform: capitalize;
    border: 0;
    padding: .375rem .75rem;
    border-radius: .25rem;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
} */
input#submit:hover, input.submit:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
input::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
#submit::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f007";
}