/**
  * Name: BOOKFLARE
  * Version: 1.0
  * Author: Themesflat
  * Author URI: http://www.themesflat.com
**/
 
/**
  *
  * Reset
  * Repeatable Patterns
  * Extra Class 
  * Top
  * Header
  * Mobile Menu Button 
  * Mobile navigation
  * Flat Page Title
  * Flat Paginations
  * Footer
  * Widget
  * Bottom
  * Events Pages
  * Instructors Pages
  * FAQs Pages
  * Shop Pages
  * About Pages
  * Courses Pages
  * Blog Pages
  * 404 Pages
  * Flat Slider
  * Go Top
  * Preload
  * Switcher
  *
**/
/* Reset
-------------------------------------------------- */
    html{overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}
    body{line-height:1;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}
    a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,caption,canvas,center,cite,code,dd,del,details,dfn,dialog,div,dl,dt,em,embed,fieldset,figcaption,figure,form,footer,header,hgroup,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,tt,table,tbody,textarea,tfoot,thead,time,tr,th,td,u,ul,var,video{font-family:inherit;font-size:100%;font-weight:inherit;font-style:inherit;vertical-align:baseline;margin:0;padding:0;border:0;outline:0;background:transparent}
    article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
    ol,ul{list-style:none}
    blockquote,q{-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none;quotes:none}
    figure{margin:0}
    :focus{outline:0}
    table{border-collapse:collapse;border-spacing:0}
    img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle}
    legend{white-space:normal}
    button,input,select,textarea{font-size:100%;margin:0;max-width:100%;vertical-align:baseline;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
    button,input{line-height:normal}
    input,textarea{background-image:-webkit-linear-gradient(hsla(0,0%,100%,0),hsla(0,0%,100%,0))}
    button,input[type="button"],input[type="reset"],input[type="submit"]{line-height:1;cursor:pointer;-webkit-appearance:button;border:none}
    input[type="checkbox"],input[type="radio"]{padding:0}
    input[type="search"]{-webkit-appearance:textfield}
    input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
    button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
    *,:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
    dfn, cite, em, i {font-style: italic;}

/* Repeatable Patterns
-------------------------------------------------- */
    *,
    *::before,
    *::after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    body {
        color: #515e6f;
        overflow: hidden;
    }

    body.bg-body {
        background-size: cover;
    }

    body.bg-body2 {
        background: #f8f9ff;
    }

    body.bg-body3 {
        background: #fff;
    }

    a { 
        font-size: 14px;    
        text-decoration: none;
        color: #192836;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    a:hover,
    a:focus {
        text-decoration: none;
        outline: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    ul, ol {
        padding: 0;
    }

    img {
        max-width: 100%;
        height: auto;       
    }

    b, strong {
        font-weight: 900;
    }

    button {
        border: none;
    }

    button,
    input[type="button"],
    input[type="reset"],
    input[type="submit"] {      
        display: inline-block;
        padding: 0px 28px;
        height: 44px;
        line-height: 24px;
        font-size: 14px;
        text-transform: uppercase;
        color: #ffffff;
        -webkit-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
        -moz-border-radius: 2px;
        position: relative;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    button:hover,
    input[type="button"]:hover,
    input[type="reset"]:hover,
    input[type="submit"]:hover {
        background: transparent;
    }

    button:focus {
        outline: 0;
    }


    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="url"],
    input[type="search"],
    input[type="tel"],
    input[type="color"],
    input[type="email"] {   
        position: relative;
        display: block;
        width: 100%;
        line-height: 24px;
        padding: 0px 19px;
        color: #414042;
        border: 1px solid rgba(25,40,54,0.07);
        height: 46px;
        background-color: #eff0f1;
        border-radius: 4px;   
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    input[type="search"] {
        width: 240px;
        background-color: #eff0f1;
        font-size: 12px;
        font-weight: 700;
        height: 47px;
    }


    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 {
        border: 1px solid #fa778a;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    textarea {
        width: 100%;
        padding: 19px 22px;
        height: 208px;
    }

    input[type="checkbox"] {
        display: inline;
    }

    textarea:-moz-placeholder,
    textarea::-moz-placeholder,
    input:-moz-placeholder,
    input::-moz-placeholder {       
        color: #c2c2c2;
        opacity: 1;
    }

    input:-ms-input-placeholder {
        color: #c2c2c2;
    }

    textarea::-webkit-input-placeholder,
    input::-webkit-input-placeholder {
        color: #c2c2c2;
        opacity: 1;
    }
    
    /* Media */
    .page-content .wp-smiley,
    .entry-content .wp-smiley,
    .comment-content .wp-smiley {
        border: none;
        margin-bottom: 0;
        margin-top: 0;
        padding: 0;
    }

    /* / Make sure embeds and iframes fit their containers. / */
    embed,
    iframe,
    object {
        max-width: 100%;
    }

    /* / Captions / */
    .wp-caption {
        margin-bottom: 1.5em;
        max-width: 100%;
    }

    .wp-caption img[class*="wp-image-"] {
        display: block;
        margin: 0 auto;
    }

    .wp-caption-text {
        text-align: center;
    }

    .wp-caption .wp-caption-text {
        margin: 0.8075em 0;
    }

   /*  / Galleries / */
    .gallery {
        margin-bottom: 1.5em;
    }

    .gallery-item {
        display: inline-block;
        text-align: center;
        vertical-align: top;
        width: 100%;
    }

    .gallery-columns-2 .gallery-item {
        max-width: 50%;
    }

    .gallery-columns-3 .gallery-item {
        max-width: 33.33%;
    }

    .gallery-columns-4 .gallery-item {
        max-width: 25%;
    }

    .gallery-columns-5 .gallery-item {
        max-width: 20%;
    }

    .gallery-columns-6 .gallery-item {
        max-width: 16.66%;
    }

    .gallery-columns-7 .gallery-item {
        max-width: 14.28%;
    }

    .gallery-columns-8 .gallery-item {
        max-width: 12.5%;
    }

    .gallery-columns-9 .gallery-item {
        max-width: 11.11%;
    }

    .gallery-caption {
        display: block;
    }

    /* Alignments */
    .alignleft {
        display: inline;
        float: left;
        margin-right: 1.5em;
    }

    .alignright {
        display: inline;
        float: right;
        margin-left: 1.5em;
        margin-left: 15px;
    }

    .wp-block-image .alignright {
        float: right;
        margin-left: 1em;
        margin-left: 15px !important;
    }

    .aligncenter {
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .blockcenter {
        left: 50%;
            transform: translatex(-50%);
       -moz-transform: translatex(-50%);
    }

    .float-right {
        float: right;
    }

    blockquote.alignleft,
    .wp-caption.alignleft,
    img.alignleft {
        margin: 7px 30px 25px 0 !important;
    }

    blockquote.alignright,
    .wp-caption.alignright,
    img.alignright {
        margin: 7px 0 25px 30px !important;
    }

    blockquote.aligncenter,
    .wp-caption.aligncenter,
    img.aligncenter {
        clear: both;
    }

    .wp-caption.alignleft,
    .wp-caption.alignright,
    .wp-caption.aligncenter {
        margin-bottom: 10px;
    }

    /* Elements */
    hr {
        background-color: #eee;
        border: 0;
        height: 1px;
        margin-bottom: 20px;
    }

    ul,
    ol {
        padding: 0;
        margin: 0 0 30px 25px;
    }

    ul {
        list-style: disc;
    }

    ol {
        list-style: decimal;
    }

    li > ul,
    li > ol {
        margin-bottom: 0;
    }

    dd, dt {
        line-height: 30px;
    }

    ::-moz-selection { 
        color: #fff; 
        text-shadow: none; 
        background: #333;
    }

    ::-webkit-selection { 
        color: #fff; 
        text-shadow: none; 
        background: #333; 
    }

    ::selection { 
        color: #fff; 
        text-shadow: none; 
        background: #333; 
    }

    /* Content */
    .bypostauthor article .gravatar {
        float: left;
        display: inline-block;
    }

/* Extra Class 
-------------------------------------------------- */
    /* Backgrounds */
    .bg-fff {
        background: #fff;
    }

    .bg-15222e {
        background: #15222e;
    }

    .bg-192836 {
        background: #192836;
    }

    .bg-263134 {
        background: #263134;
    }
    
    .bg-252642 {
        background: #252642;
    }
    
    .bg-1d3240 {
        background: #1d3240;
    }
    
    .bg-282939 {
        background: #282939;
    }
    
    .bg-19333c {
        background: #19333c;
    }
    
    .bg-252a36 {
        background: #252a36;
    }
    
    .bg-1c3239 {
        background: #1c3239;
    }
    
    .bg-293542 {
        background: #293542;
    }
    
    .bg-1d2942 {
        background: #1d2942;
    }
    
    .bg-172e3f {
        background: #172e3f;
    }
    
    .bg-27313a {
        background: #27313a;
    }

    /* Color */
    .color-fff {
        color: #fff;
    }

    .color-f3728b {
        color: #f3728b;
    }

    .color-2ebd59 {
        color: #2ebd59;
    }

    .color-515e6f {
        color: #515e6f;
    }

    .color-2ba2db {
        color: #2ba2db;
    }

    .color-0dc9ac {
        color: #0dc9ac;
    }

    .color-f05455 {
        color: #f05455;
    }

    .color-ec5252 {
        color: #ec5252;
    }

    .color-192836 {
        color: #192836;
    }

    /* Fonts */
    .font-Roboto {
        font-family: 'Roboto';
    }

    .font-Poppins {
        font-family: 'Poppins';
    }

    .font-Noto {
        font-family: 'Noto Serif';
    }

    .font-Playfair {
        font-family: 'Playfair Display';
    }

    .font-Hall {
        font-family: "hall-of-fun";
    }

    .font-Publico {
        font-family: "PublicoText";
    }

    .font-Freestyle {
        font-family: "freestyle-font";
    }

    .font-size-20 {
        font-size: 20px;
    }

    .font-italic {
        font-style: italic;
    }

    .text-underline {
        text-decoration: underline !important;
    }

    /* Font Weight */
    .font-weight-100 {
        font-weight: 100;
    }

    .font-weight-200 {
        font-weight: 200;
    }

    .font-weight-300 {
        font-weight: 300;
    }

    .font-weight-400 {
        font-weight: 400;
    }

    .font-weight-500 {
        font-weight: 500;
    }

    .font-weight-600 {
        font-weight: 600;
    }

    .font-weight-700 {
        font-weight: 700;
    }

    h1,h2,h3,h4,h5,h6{font-family:"Roboto",sans-serif;font-weight:700;color: #192836;}
    h1,h1 a{font-size:60px;line-height:60px}
    h2,h2 a{font-size:36px;line-height:36px}
    h3,h3 a{font-size:30px;line-height:30px}
    h4,h4 a{font-size:26px;line-height:26px}
    h5,h5 a{font-size:22px;line-height:24px}
    h6,h6 a{font-size:20px;line-height:22px}
    p{margin-bottom: 15px;}
    h1, h2, h3, h4, h5, h6, .flat-comments h1, .flat-comments h2, .flat-comments h3, .flat-comments h4, .flat-comments h5, .flat-comments h6{
        margin-bottom: 15px;
    }

/* Top
-------------------------------------------------- */
    .top {
        position: relative;
        padding: 13px 0px 10px;
    }
    .v2 .top {
        position: relative;
        padding: 0;
    }
    .v2 .top .flat-info,.v2 .top .flat-action,.v2 .top .socails{
        padding: 4px 0px 2px;
        position: relative;
    }
    .v2 .top .socails {
        float: right;
        width: auto;
        margin-right: 10px;
    }
    .v2 .flat-action.style2 ul:before{
        position: absolute;
        content: "";
        background: rgba(209,209,255,0.18);
        width: 1px;
        height: 100%;
        top: 0;
        left: 0px;
    }
    .v2 .flat-action.style2 ul:after{
        position: absolute;
        content: "";
        background: rgba(209,209,255,0.18);
        width: 1px;
        height: 100%;
        top: 0;
        right: 0;
    }
    .flat-action.style2 ul li.register:after ,.flat-action.style2 ul li.profile:after{
        position: absolute;
        content: "";
        background: rgba(209,209,255,0.45);
        width: 1px;
        height: 100%;
        top: 0;
        right: 70px;
    }
    .flat-action.style2 ul li.profile{
        margin: 0px 11px;
    }
    .checkout .learn-press-message.success {
        display: none;
    }
    .top .flat-action.style1 {
        float: right ;
        position: relative;
    }
    .top .flat-adds {
        float: right;
        padding-right: 11px;    }

    .top .enable_lg_rg .flat-adds{
        float: right;
        padding-right: 0px;
    }

    /* style2 */
    .top .socails ul li a {
        color: #515e6f;
    }

    .top .socails ul li {
        margin-left: 11px;
    }

    .top .socails {
        float: left;
        width: 67.5%;
    }
    .top.style2 .socails {
        float: right;
        width: auto;
        margin-right: 10px;
        padding-right: 10px;
        position: relative;
    }

    .top.style2 .socails:before {
        content: "";
        margin-left: 9px;
        position: absolute;
        top: 6px;
        width: 2px;
        background: #434f5b;
        height: 12px;
    }

    .top .socailsv2 {
        float: right;
        width: 67.5%;
    }

    .top .socails.v2 ul li a:hover {
        color: #ec5252;
    }

    .top .flat-action.style2 {
        width: auto;
        float: right;
    }

/* Header
-------------------------------------------------- */
    #header {
        position: relative;
        border: 1px solid rgba(25,40,54,0.07);
    }

    .mainnav ul {
        list-style: none;
        margin:  0;
        padding:  0;
    }

    #main-nav > ul > li {
        position: relative;
        text-align: left;
        display: inline-block;
       
    }

    #main-nav ul li a {
        line-height: 91px;
        display: block;
        font-weight: 700;
        padding: 0 16px 0 15px;
    }

    #main-nav  ul > li > a {
        position: relative;
    }

    #main-nav  ul > li{
        transition: all 0.3s;
    }

    #main-nav ul.sub-menu > li:hover,
    #main-nav ul.sub-menu > li.current-menu-item {
        background: #1928360d;
    }

    #main-nav ul.sub-menu > li.menu-item-has-children > a:after {
        content: "\35";
        font-family: "ElegantIcons";
        position: absolute;
        right: 0;
    }

    #main-nav a.create-menu {
        line-height: 91px;
        display: block;
        font-family: Roboto;
        font-weight: 700;
    }

    #main-nav ul.sub-menu > li > a {
        font-weight: 400;
        line-height: 24px;
        display: block;
        padding: 8px 0px;
        display: block;
        font-family: "Roboto";
        position: relative;
        font-weight: 700;
    }

    #main-nav ul.sub-menu {
        position: absolute;
        top: 150%;
        left: 0px;
        width: 200px;
        background: #ffffff;
        box-shadow: 0px 5px 14.25px 0.75px rgba(0, 0, 0, 0.05);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s ease-in-out;
           -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
             -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
    }

    #main-nav ul.sub-menu li.menu-item-has-children ul.sub-menu{
        border-top: transparent;
    }

    #main-nav ul.sub-menu > li{
        padding: 5px 15px;
    }

    #main-nav > ul.menu li:hover > ul.sub-menu {
        top: 100%;
        opacity: 1;
        visibility: visible;
    }

    #header.style2.v2 #main-nav > ul.menu li:hover > ul.sub-menu{
         top: 101%;
    }

    #main-nav ul.sub-menu li ul {
        position: absolute;
        left: 200px;
        top: 0px !important;
    }

    #main-nav ul.sub-menu li.sub-menu-left ul {
        position: absolute;
        left: -200px;
        top: 0px !important;
    }

    #header #main-nav ul li {
        position: relative;
    }

    #main-nav ul.sub-menu li:last-child {
        margin-right: 0px;
    }

    .change-menu #main-nav > ul > li.current-menu-item:last-child > a,
    #main-nav ul.menu li:last-child a{
        padding-right:0px;
    }

    .change-menu #main-nav ul li:last-child {
        margin-right: 0px;
    }
    #header.style3 .nav-wrap {
        width: 81%;
    }

    .extra-menu ul li {
        display: inline-block;
    }

    .extra-menu ul li:not(:last-child) {
        margin-right: 22px;
    }

    .extra-menu .mini_cart_item td a{
        line-height: 1.5;
    }   

    .extra-menu .mini_cart_item td:nth-child(1){
        width: 10%;
    }

    .extra-menu .mini_cart_item td:nth-child(1) a{
        margin: auto;
        margin-top: -10px;
        padding: 0px;
    }

    .extra-menu .mini_cart_item td:nth-child(2),
    .extra-menu .mini_cart_item td:nth-child(4){
        width: 20%;
    }

    .extra-menu .mini_cart_item td:nth-child(3){
        width: 50%;
    }

    .extra-menu .cart a {
        padding-right: 10px;
        position: relative;
        display: block;
        line-height: 1
    }

    .extra-menu span.bf-icon { 
        font-size: 16px;
    }

    .extra-menu .wrap-search-header{
        position: relative;
        margin-left: 45px;
    }

    .extra-menu .cart{
        position: relative;
        padding: 10px 0px;
        margin-left: 25px;
    }

    .header.style2 .extra-menu .cart{
        margin-left: 0px;
    }

    .extra-menu span.count-cart {
        top: -10px;
        right: 3px;
        background: #fa778a;
        line-height: 13px;
        text-align: center;
        position: absolute;
        color: #fff;
        min-width: 14px;
        min-height: 14px;
        padding: 0 2px;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
    }

    /* Search header */
    .search-header {
        position: relative;
    }

    .search-header button.btn-search{
        background: transparent;
        color: #515e6f;
        border: unset;
        position: absolute;
        right: 0px;
        z-index: 1;
        top: 0;
        width: 48px;
        font-size: 17px;
        line-height: 48px;
        padding-right: 36px;
    }

    .search-header button.btn-search:hover {
        color: #fa778a;
    }

    .show-search {
        position: relative;
        margin-left: 4px;
    }

    .show-search a {
        color: #fff;
        font-size: 18px;
    }

    .top-search {
        position: absolute;
        right: 0;
        top: 110%;
    }

    .show-search a {
        color: #fff;
        margin-left: 21px;
        padding-left: 31px;
        font-size: 18px;
        padding: 0px;    
        position: relative;
    }

    #header.style2.v2 .show-search a:hover,
    #header.style2.v2 .show-search a i:hover,
    #header.style2.v2 .show-search.active a .icon-search:hover:before,
    #header.style2.v2  .show-search.active a .icon-search:before {
        color: #ec5252;
    }

    .show-search.active a .icon-search:before {
        content: "\4d";
        font-family: 'ElegantIcons';
    }

    .top-search {
        position: absolute;
        right: -5px;
        top: 138%;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .top-search.show {
        visibility: visible;
        opacity: 1;
        z-index: 9999;
        top: 100%;
    }

    .top-search.widget-search .search-form:before {
        content: unset;
    }

    .top-search.widget-search button.search-submit:before {
        font-size: 14px;
    }

    .widget_relatedC .title-widget {
        font-family: 'Poppins';
    }

    .widget {
        margin-bottom:30px;
    }

    .widget.flat-text-right.no-border {
        margin-bottom: 0px;
    }

    /* Header Style2 */
    #header.style2 #logo {
        padding: 30px 0;
    }

    #header.style2 #main-nav > ul > li {
        padding: 0px 16px;
    }

    #header.style2 #main-nav > ul > li > a {
        color: #fff;
        padding: 0;
        line-height: 87px;
    }

    #header.style2 #main-nav > ul > li:last-child {
        padding-right: 0px;
        margin-right: 0px;
    }

    #header.style2 #main-nav > ul > li > a:after {
        content: "";
        width: 0;
        height: 3px;
        position: absolute;
        bottom: 31px;
        left: 0;
        -webkit-transition: all 0.3s ease-in-out;
           -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
             -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
    }

    #header.style2.v2 #main-nav > ul > li > a:after {
        background: #ec5252;
    }

    #header.style2.v2 #main-nav > ul > li > a:hover, 
    #header.style2.v2 #main-nav > ul > li.active > a, 
    #header.style2.v2 .extra-menu ul li.cart td a:hover {
        color: #ec5252;
    }

    #header.style2 #main-nav > ul > li > a:hover:after,
    #header.style2 #main-nav > ul > li.active > a:after,
    #header.style2 #main-nav > ul > li.current-menu-parent > a:after {
        width: 100%;
    }

    #header.style2 .extra-menu ul li.cart a {
        color: #fff;
    }

    #header.style2 .extra-menu ul li.cart .widget_shopping_cart_content .wc-forward {
        color: #fff;
        background:#ec5252;
    }

    #header.style2 .extra-menu ul li.cart td a {
        color: unset;
    }

    #header.style2 .extra-menu ul li:not(:last-child) {
        margin-right: 11px;
    }

    #mainnav-mobi .create-menu{
        color: #ffffff;
        padding: 20px 15px;
    }

    #header.style2.v2 #mainnav-mobi > ul > li > ul > li.current-menu-item > a,
    #header.style2.v2 #mainnav-mobi ul > li.current-menu-item > a,
    #header.style2.v2 #main-nav  ul > li.current-menu-item > a,
    #header.style2.v2 #main-nav ul.sub-menu > li:hover > a,
    #header.style2.v2 #mainnav-mobi ul.sub-menu > li > a:hover {
        color: #ec5252;
    }

    #header.style2.v2 #main-nav > ul.menu li:hover > a,
    #header.style2.v2 #main-nav > ul.menu li.current-menu-item > a,
    #header.style2.v2 #main-nav > ul.menu li.current-menu-parent > a {
        color: #ec5252;
    }

    #header.style2.v2 #main-nav ul.sub-menu {
        width: 200px;
    }

    #header.style2.v2 #main-nav ul.sub-menu {
        border-top: 3px solid #ec5252;
    }

    #header.style2.v2 #main-nav ul.sub-menu li ul.sub-menu{
        border-top: transparent;
        left: 200px;
        top: 0px !important;
    }

    #header.style2.v2 #main-nav ul.sub-menu li.style-left ul.sub-menu,
    #main-nav ul.sub-menu li.style-left ul.sub-menu {
        left: -200px;
    }

    #header.style2.v2 #main-nav ul.sub-menu li ul {
        left: 200px;
    }

    #header.style2.v2 .extra-menu span.count-cart {
        background: #ec5252;
    }

    #header.style2.v3 #main-nav > ul > li > a,
    #header.style2.v3 .extra-menu ul li.cart a {
        color: #192836;
    }

    #header.style2.v3 #main-nav {
        margin-right: -14px;
    }

    /* Fixed Menu */
    #header.fixed-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        -webkit-animation-name: fadeInDown;
        -webkit-animation-duration: 0.8s;
        animation-name: fadeInDown;
        animation-duration: 0.8s;
    }

/* Mobile Menu Button 
-------------------------------------------------- */
    .mobile-button {
        display:none;
        position:absolute;
        width:26px;
        height:26px;
        float:right;
        top:50%;
        right: 15px;
        background-color:transparent;
        cursor:pointer;
        -webkit-transition:all 0.3s ease;
        -moz-transition:all 0.3s ease;
        -ms-transition:all 0.3s ease;
        -o-transition:all 0.3s ease;
        transition:all 0.3s ease;
        -webkit-transform:translateY(-50%);
        -ms-transform:translateY(-50%);
        -o-transform:translateY(-50%);
        transform:translateY(-50%);
    }

    .mobile-button:before,
    .mobile-button:after,
    .mobile-button span {
        -webkit-transition:all ease 0.3s;
        -moz-transition:all ease 0.3s;
        transition:all ease 0.3s;
    }

    .mobile-button:before,
    .mobile-button:after {
        content:'';
        position:absolute;
        top:0;
        height:3px;
        width:100%;
        left:0;
        top:50%;
        -webkit-transform-origin:50% 50%;
        -ms-transform-origin:50% 50%;
        transform-origin:50% 50%;
    }

    .mobile-button span {
        position:absolute;
        width:100%;
        height:3px;
        left:0;
        top:50%;
        overflow:hidden;
        text-indent:200%;
    }

    .mobile-button:before {
        -webkit-transform:translate3d(0,-7px,0);
        -moz-transform:translate3d(0,-7px,0);
        transform:translate3d(0,-7px,0);
    }

    .mobile-button:after {
        -webkit-transform:translate3d(0,7px,0);
        -moz-transform:translate3d(0,7px,0);
        transform:translate3d(0,7px,0);
    }

    .mobile-button.active span {
        opacity:0;
    }

    .mobile-button.active:before {
        -webkit-transform:rotate3d(0,0,1,45deg);
        -moz-transform:rotate3d(0,0,1,45deg);
        transform:rotate3d(0,0,1,45deg);
    }

    .mobile-button.active:after {
        -webkit-transform:rotate3d(0,0,1,-45deg);
        -moz-transform:rotate3d(0,0,1,-45deg);
        transform:rotate3d(0,0,1,-45deg);
    }

    .btn-submenu {
        position: absolute;
        right: 0;
        top: 0;
        font: 20px/50px 'FontAwesome';
        text-align: center;
        cursor: pointer;
        width: 70px;
        height: 44px;
    }

    .btn-submenu:before {
        content: "\f107";
        color: #fff;
    }

    .btn-submenu.active:before {
        content: "\f106"
    }

    .mobile-button.v2 {
        right: 21px;
        left: unset;
        z-index: 1;
    }

/* Mobile navigation
-------------------------------------------------- */
    #mainnav-mobi {
        display: block;
        margin: 0 auto;
        width: 100%;
        position: absolute;
        background-color: #192836;
        z-index: 1000;
        top: 100%;
        left: 0;
    }

    #mainnav-mobi ul {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    #mainnav-mobi ul li {
        margin:0;
        position: relative;
        text-align: left;
        border-top:1px solid rgba(255, 255, 255, 0.14);
        cursor: pointer;
    }

    #mainnav-mobi ul > li > a  {
        text-decoration: none;
        height: 50px;
        line-height: 45px;
        padding: 0 15px;
        color: #fff;
    }

    #mainnav-mobi ul.sub-menu {
        top: 100%;
        left: 0;
        z-index: 2000;
        position: relative;
        background-color: #192836;
    }

    #mainnav-mobi > ul > li > ul > li,
    #mainnav-mobi > ul > li > ul > li > ul > li {
        position: relative;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }
    #mainnav-mobi > ul > li > ul > li:last-child{
        border-bottom: transparent;
    }
    #mainnav-mobi > ul > li > ul > li > ul > li a {
        padding-left: 50px !important;
    }

    #mainnav-mobi  ul > li > ul > li a {
        padding-left: 30px !important;
    }

    #mainnav-mobi ul.sub-menu > li > a {
        display: block;
        text-decoration: none;
        border-top-color: rgba(255,255,255,.1);
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

    #mainnav-mobi > ul > li > ul > li:first-child a {
        border-top: none;
    }


/* Flat Page Title
-------------------------------------------------- */
    .flat-title-page {
        position: relative;
        overflow: hidden;
    }

    .flat-title-page:after {
        content: "";
        width: 100%;
        position: absolute;
        bottom: -13px;
        border-top: 70px solid transparent;
        border-right: 1920px solid rgb(255, 255, 255);
    }

    .flat-title-page:before {
        content: "";
        border-top: 76px solid transparent;
        border-right: 1920px solid rgba(255,255,255,0.54);
        position: absolute;
        bottom: 0;
        z-index: 99;
        width: 100%;
        transform: rotate(-1deg);
    }

    .style_page_title_1.flat-title-page:after {
        content: "";
        width: 100%;
        position: absolute;
        bottom: 0;
        border-top: 38px solid transparent;
        border-right: 1920px solid rgb(255, 255, 255);
    }
    .style_page_title_1.flat-title-page:before {
        content: "";
        border-top: 76px solid transparent;
        border-right: 1920px solid rgba(255,255,255,0.54);
        position: absolute;
        bottom: 0;
        z-index: 99;
        width: 100%;
        transform: rotate(0deg);
    }
    .box-title-page {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .box-title-page .box {
        position: relative;
        padding: 7px;
        z-index: 999;
        padding-left: 10px;
    }
    .box-title-page .box .breadcrumbs{
        margin-bottom: 47px;
    }
    .box-title-page .box:after {
        z-index: -9;
        content: "";
        position: absolute;
        background: #ffffff;
        top: -60px;
        bottom: -165px;
        left: -500px;
        right: 7px;
        -webkit-transform: perspective(50em) rotateX(-30deg);
        transform: perspective(55em) rotateX(-38deg) rotateY(-11deg);
        border-radius: 5px;
    }
    .wrap-title-page {
        position: relative;
    }

    .flat-title-page.undescription .wrap-title-page {
        padding: 122px 15px 179px;
    }

    .flat-title-page.style2 .wrap-title-page {
        padding: 94px 15px 103px;
    }

    .flat-title-page.style3 .wrap-title-page {
        padding: 155px 15px 100px;
    }

    .flat-title-page.style4 .wrap-title-page  {
        padding: 113px 15px 161px;
    }

    .flat-title-page h2.title {
        margin-bottom: 6px;
        margin-left: -3px;
    }  
    .entry-header h1.entry-title  {
        margin-bottom: 15px;
    }
    .flat-title-page h2.title {
        text-shadow: 0px 3px 7px rgba(0,0,0,0.35);
        font-weight: 700;
        font-family: "Poppins";
        font-size: 60px;
        line-height: 75px;
        -ms-word-wrap: break-word;
        word-wrap: break-word;
    }

    .flat-title-page .text {
        font-size: 16px;
        line-height: 25px;
        text-shadow: 0px 3px 7px rgba(0,0,0,0.35);
    }
    .text-shadow{
        text-shadow: 0px 3px 7px rgba(0,0,0,0.35);
    }
    .title-page {
        position: relative;
    }

    /* breadcrumbs */
    .wrap-title-page.bg-img .breadcrumbs {
        position: absolute;
        bottom: 35px;
        left: 14px;
        z-index: 999;
    }

    .breadcrumbs ul li {
        display: inline-block;
    }

    .breadcrumbs ul li:not(:last-child):after {
        content: " \ea30";
        font-family: "bf-icon";
        font-size: 11px;
        color: #192836;
        font-weight: 500;
    }

    .breadcrumbs.style2 ul li:not(:last-child):after {
        color: #fff;
    }

    .breadcrumbs span,.breadcrumbs span a,.breadcrumbs a {
        font-size: 16px;
        font-weight: 700;
        display: inline-block;
    }
    span.sep {
        margin-left: 3px;
    }
    .wrap-title-page.bg-img .bg-breadcrumbs {
        position: absolute;
        right: 83.3%;
        bottom: -40px;
    }

    .breadcrumbs.style3 ul li a,
    .breadcrumbs.style3 ul li:not(:last-child):after {
        color: #fff;
    }

    .wrap-title-page.bg-img .bg-breadcrumbs.style2 {
        right: 80.3%;
    }

/* Flat Paginations
-------------------------------------------------- */
   
    .pagination a,.pagination span{
        display: inline-block;
        line-height: 1;
        border: 1px solid rgba(26,34,125,0.22);
        padding: 10px 14px 8px;
        border-radius: 4px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0 7px 0px 4px;
    }

    .pagination-wrap li:not(.disabled) a:hover, .pagination-wrap li.active a{
        color: #fff;
    }
    .pagination span.dots:hover{
        border: 1px solid rgba(26,34,125,0.22);
        color: #192836;
        background: transparent;
    }
    .pagination .active a {
        margin: 0 6px 0px 3px;
        padding: 10px 14px 8px;
    }
    .disabled {
        opacity: 0.5;
    }
   
        
/* Footer
-------------------------------------------------- */

#footer ul li a{
    position: relative;
}
#footer .themesflat-shortcode-socials .fa{
    font-size: 16px;
}
.bottom-menu .create-menu {
    color: #718297;
    } 
li#menu-item-128,li#menu-item-130,li#menu-item-132,li#menu-item-135 {
    padding-left: 35px;
}
#footer #nav_menu-2.widget_nav_menu ul li#menu-item-135{
    opacity: 0;
    visibility: hidden;
}

.no-sidebar-footer #footer {
    display: none !important;
}


/* Widget
-------------------------------------------------- */
  
    .sidebar-right .widget-event-detail  .widget-title{
        margin-bottom: 10px;
    }
    #footer .widget{
        margin-bottom: 42px;
    }
    #footer .widget .widget-title,#footer .widget .widget-title a {
        margin-bottom: 23px;
        color: #fff;
        font-size: 20px;
        line-height: 1;
        margin-left: -1px;
    }

    #footer .sidebar-right .widget-title,.sidebar-right .widget-event-detail  .widget-title {
        color: #192836;
        font-weight: 900;
        margin-bottom: 10px;
    }
    .sidebar-right .widget-event-detail .widget-title {
        margin-right: 5px;
        margin-bottom: 12px;
    }
    .widget-event-detail .description{
        margin-right: 3px;
        line-height: 1.6;
    }

    #footer .widget-ft {
        margin-top: -4px;
    }
    #footer .widget.null-instagram-feed .widget-title{
        margin-bottom: 29px;
        margin-top: 1px;
    }

    #footer .footer-center-1 .cs-address {
        color: #718297;
    }
    #footer .footer-center-1 .widget_media_image{
        margin-top: 3px;
        margin-bottom: 14px;
        margin-left: 1px;
    }
     #footer .footer-center-1 #text-1,
     #footer .footer-center-1 #text-2,
     #footer .footer-center-1 #text-3,
     #footer #widget_themesflat_socials-2,
     #footer .footer-center-2 #nav_menu-1,
     #footer .footer-center-2 #nav_menu-2,
     #footer #null-instagram-feed-3{
        margin-bottom: 20px;
    }

    #footer .footer-center-1 .cs-address ul li a:before {
        content: "";
        font-family: "FontAwesome";
        margin-right: 9px;
    }

    #footer .footer-center-1 ul li.address a:before {
        content: "\f041";
    }

    #footer .footer-center-1 ul li.phone a:before {
        content: "\f098";
    }

    #footer .footer-center-1 ul li.mail a:before {
        content: "\f0e0";
    }

    #footer .footer-center-1 .themesflat-shortcode-socials li{
        display: inline-block;
    }
    #footer .footer-center-1 .themesflat-shortcode-socials li a {
        color: #718297;
        margin: 0 12px 0 0;
    }
    #footer .footer-center-1.v2 .themesflat-shortcode-socials li a:hover,
    #footer .footer-center-1.v2 .list-info ul li a:hover {
        color: #ec5252
    }
    .widget_products .product_list_widget li:last-child .product-item{
        margin-bottom: 0px;
    }
    /* Widget Link */
    #footer #nav_menu-2.widget_nav_menu  ul,
     #footer #nav_menu-1.widget_nav_menu  ul {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
    
    #footer #nav_menu-2.widget_nav_menu ul li,
    #footer #nav_menu-1.widget_nav_menu ul li {
        font-weight: 700;
        margin-bottom: 19px;
        position: relative;
        display: block;
        border-bottom:none;
        padding:0px;
    }

    #footer #nav_menu-2.widget_nav_menu.v2 ul li a:hover,
    #footer #nav_menu-1.widget_nav_menu.v2 ul li a:hover {
        color: #ec5252;
    }

    #footer #nav_menu-2.widget_nav_menu.v2 ul li a:after,
    #footer #nav_menu-1.widget_nav_menu.v2 ul li a:after {
        background: #ec5252;
    }

    #footer .widget_nav_menu ul li a:before {
        content: "\f105";
        font-family: "FontAwesome";
        margin-right: 5px;
        font-weight: 400;
    }

    #footer #nav_menu-2.widget_nav_menu ul li a:after,
    #footer #nav_menu-1.widget_nav_menu ul li a:after {
        content: "";
        width: 0;
        height: 1px;
        position: absolute;
        bottom: -1px;
        left: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    #footer #nav_menu-2.widget_nav_menu ul li a:hover:after,
     #footer #nav_menu-1.widget_nav_menu ul li a:hover:after {
        width: 100%;
    }

    /* Widget Recent Work */
    .widget-ft.widget_flicker .widget-title {
        margin-bottom: 28px;
    }

    .widget-sidebar.widget_flicker .widget-title {
        font-weight: 700;
        font-family: 'Poppins';
        margin-bottom: 27px;
    } 

    .widget .owl-carousel .owl-nav .owl-prev,.widget .owl-carousel .owl-nav .owl-next {
        position: relative;
        width: 26px;
        height: 26px;
        background:  rgba(243,114,139,0.07);
        border: 1px solid #f3728b12;
        margin-left:  5px;
        display: inline-block;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
            -webkit-border-radius: 2px;
            -ms-border-radius: 2px;
            -o-border-radius: 2px;
            -moz-border-radius: 2px;
    }
    .widget .owl-carousel .owl-nav .owl-prev .fa{
        position: absolute;
        left: 8px;
        top: 4px;
    }
    .widget .owl-carousel .owl-nav .owl-next .fa{
        position: absolute;
        left: 10px;
        top: 4px;
    }

    .widget .owl-carousel .owl-nav .owl-prev:hover,.widget .owl-carousel .owl-nav .owl-next:hover {
        color: #fff;
        border: 1px solid rgba(255,255,255,0.18);
    }

    .widget .owl-carousel .owl-nav .owl-prev:focus,.widget .owl-carousel .owl-nav .owl-next:focus {
        outline: 0;
    }


    .widget .owl-carousel .owl-nav {
        position: absolute;
        top: -48px;
        right: 0;
    }

    .widget .flat-recentOwl {
        margin-bottom: 25px;
    }

    .widget .btn-view-more {
        color: #718297;
        position: relative;
        font-weight: 700;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .widget_themesflat_newsletterwidget h4.widget-title{
        color: #ffffff;
        margin-bottom: 18px;
    }
    .widget-popular-courses-news .course-origin-price{
        margin: 0px;
    }
    .widget-popular-courses-news .wrap-rating .number-rating{
        margin-top: 0px;
    }
    .btn-view-more:after {
        content: "\ea30";
        font-family: "bf-icon";
        font-weight: 500;
        font-size: 7px;
        position: absolute;
        bottom: -3px;
        right: -12px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .btn-view-more:hover:after {
        right: -15px;
    }

    /* Widget Counter */
    .sidebar-right .widget-counter {
        margin-bottom: 29px;
    }

    /* Widget Event Details */
    .widget-event-detail {
        background: url("../images/bg-sidebar-detail.png") center center no-repeat;
        background-size: cover;
        border-radius: 6px;
        padding: 42px 20px 7px 25px;
    }

    .widget-event-detail .wrap-btn {
        margin-bottom: 30px;
        margin-left: -28px;
    }

    .widget-event-detail .description {
        margin-bottom: 48px;
    }

    .widget-event-detail .title {
        float: left;
        font-weight: 700;
        color: #192836;
        transition: all 0.4s;
    }

    .widget-event-detail .value {
        float: right;
        font-weight: 700;
        color: #192836;
        transition: all 0.4s;
    }

    .widget-event-detail .list-detail {
        margin-bottom: 36px;
    }

    .list-detail li {
       display: block;
       position: relative;
       padding: 0px 21px 0px 37px;
       margin-bottom: 20px;
       transition: all 0.4s;
    }
    .list-detail li:hover .title {
        margin-left: -4px;
    }

    .list-detail li:before {
        content: "";
        font-family: "FontAwesome";
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
    }

    .list-detail li.slot:before{
        content: "\f2bd";
        color: #6055ff;
        font-family: "Font Awesome 5 Free";
    }

    .list-detail li.cost:before{
        content: "\f155 ";
    }

    .list-detail li.start-time:before{
        content: "\f022";
        color: #2ebd59;
        font-family: "Font Awesome 5 Free";
    }

    .list-detail li.end-time:before{
        content: "\f017";
        color: #7bdeff;
    }

    .list-detail li.location:before{
        content: "\f124";
        color: #ff7b88;
        font-weight: 400;
    }

    .flat-button.btn-book-now {
        display: inline-block;
        line-height: 47px;
        padding: 2px 29px 0px;
        font-family: "Poppins";
        color: #fff;
        font-weight: 700;
        font-size: 16px;
    }

    .flat-button.btn-book-now:hover {
        background: transparent;
    }

    .flat-button.btn-book-now:before {
        background-color: #192836;
    }

    /* Widget Subscribe */
    .widget-subscribe {
        padding: 33px 24px 60px 24px;
        margin-bottom: 30px;
        border-radius: 5px;
    }
    .widget-courses-v3 .widget-subscribe button.btn-send,
    .cs-widget-on-visual .widget-subscribe button.btn-send{
        padding: 0 27px;
        font-size: 14px;
        font-family: 'Roboto', sans-serif;
        background-color: #f3728b;
        color: #fff;
    }
    .widget-courses-v3 .widget-subscribe button.btn-send:hover,
    .cs-widget-on-visual .widget-subscribe button.btn-send:hover{
        color: #fff;
    }
    .single-lp_course  .widget-subscribe {
        padding: 57px 24px 60px 24px;
    }
    .sidebar .widget-subscribe .widget-title {
        color: #fff;
        font-weight: 900;
        margin-bottom: 19px;
    }

    .widget-subscribe .text-sub {
        color: #fff;
        margin-bottom: 23px;    
    }

    .widget-subscribe .wrap-description {
        position: relative;
    } 

    .widget-subscribe .wrap-description:after,
    .widget-subscribe .wrap-description:before {
        content: "";
        width: 6px;
        height: 86%;
        background: rgba(65,55,127,0.53);
        border: 1px solid #7163ca;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .widget-subscribe .wrap-description:after  {
        right: -6px;
        border-left: none;
    }

    .widget-subscribe .wrap-description:before  {
        left: -6px;
        border-right: none;
    }


    .widget-subscribe .description {
        border: 1px solid #7163ca;
        margin: 0  0 52px 0 ;
        background: rgba(65,55,127,0.53);
        color: #ffffff;
        line-height: 20px;
        padding: 25px 10px 28px 10px;
        font-family: Cambria,sans-serif;
    }

    .widget-subscribe .description:after,
    .widget-subscribe .description:before {
        content: "";
        width: 6px;
        height: 64%;
        background: rgba(65,55,127,0.53);
        border: 1px solid #7163ca80;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .widget-subscribe .description:after  {
        right: -12px;
        border-left:none;
    }

    .widget-subscribe .description:before  {
        left: -12px;
        border-right:none;
    }

    .widget-subscribe .over {
        font-style: italic;
        line-height: 44px;
        font-size: 66px;
        color: #fff;
        font-weight: 400;
        margin-bottom: 15px;
    }

    .widget-subscribe .wrap-over { 
        margin-bottom: 33px;
    }

    .widget-subscribe .count {
        color: #fb8aba;
        font-size: 50px;
        position: relative;
        font-weight: 400;
    }

    .widget-subscribe .count:after {
        content: "";
        width: 100%;
        background: #fb8aba;
        height: 3px;
        position: absolute;
        left: 0;
        bottom: 4px;
    }

    .widget-subscribe .free {
        font-size: 26px;
        font-family: "Roboto";
        font-style: initial;
        font-weight: 300;
        color: #fff;
    }

    .widget-subscribe .wrap-form-subscribe {    
        position: relative;
    }

    .widget-subscribe button.btn-send {
        position: absolute;
        top: 0;
        right: 0;
        height: 49px;
        padding: 0 24px;
        border: unset;
        font-weight: 700;
        background-color: #536dfe;
    }

    .widget-subscribe button.btn-send:hover {
        background-color: transparent;
        color: #536dfe;
    }

    .flat-button.btn-send:before {
        background-color: #192836;
    }

    .widget-subscribe input[type="email"] {
        height: 49px;
    }

    /* Widget Categories */
     .widget.widget_archive>ul li{
        text-align: right;
        display: inline-table;
        width: 100%;
    }

    .widget.widget_archive ul li a{
        display: inline-block;
        float: left;
    }
    .widget.widget_archive>ul li{
        border-bottom: 1px solid #eee;
        padding: 10px 0px;
        margin: 0px;
    }

    .widget_categories>ul:not(.custom-cat) li{
        text-align: right;
        display: inline-table;
        width: 100%;
    }
    .widget_categories ul:not(.custom-cat) li a{
        display: inline-block;
        float: left;
    }

    .widget_categories ul:not(.custom-cat) li,
    .widget.widget_pages ul li,
    .widget-area .widget.widget_nav_menu ul li,
    #footer .widget.widget_nav_menu ul li,
    #footer .widget_categories ul:not(.custom-cat) li,
    #footer .widget.widget_pages ul li{
        border-bottom: 1px solid #eee;
        padding: 13px 0px;
        margin: 0px;
    }
    .widget_categories ul:not(.custom-cat) li ul.children,
    .widget.widget_pages ul li ul.children,
    .widget.widget_nav_menu ul li ul.sub-menu,
     #footer .widget.widget_nav_menu ul li ul.sub-menu,
    #footer .widget_categories ul:not(.custom-cat) li ul.children,
    #footer .widget.widget_pages ul li ul.children{
        margin-top: 10px;
    }
    .widget_categories ul:not(.custom-cat) li ul.children li:first-child,
    .widget.widget_pages ul li ul.children li:first-child,
    .widget.widget_nav_menu ul li ul.sub-menu li:first-child{
        border-top: 1px solid #eee;
    }
    .widget_categories ul:not(.custom-cat) li ul.children li,
    .widget.widget_pages ul li ul.children li,
    .widget.widget_nav_menu ul li ul.sub-menu li,
    #footer .widget.widget_nav_menu ul li ul.sub-menu li,
    #footer .widget_categories ul:not(.custom-cat) li ul.children li,
    #footer .widget.widget_pages ul li ul.children li{
        padding: 10px 0px 10px 15px;
    }
    .widget_categories ul:not(.custom-cat) li ul.children li:last-child,
    .widget.widget_pages ul li ul.children li:last-child,
    .widget.widget_nav_menu ul li ul.sub-menu li:last-child,
    #footer .widget.widget_nav_menu ul li ul.sub-menu li:last-child,
    #footer .widget_categories ul:not(.custom-cat) li ul.children li:last-child,
    #footer .widget.widget_pages ul li ul.children li:last-child{
        border-bottom:none;
        padding-bottom: 0px;
    }
    .widget_categories>ul:not(.custom-cat)>li a:before,
    .widget.widget_pages ul li a:before{
        content: "\f192";
        font-family: "Font Awesome 5 Free";
        padding-right: 7px;
        font-size: 10px;
        position: relative;
        left: 1px;
    } 

    .widget_categories .widget-categories,
    .widget_categories_courses .widget-categories{
        border-radius: 4px;
        overflow: hidden;
    }

    .widget_categories .widget-categories .title-widget,
    .widget_categories_courses .widget-categories .title-widget{
        font-size: 16px;
        color: #fff;
        line-height: 46px;
        padding: 0 29px;
    }

    .widget_categories .widget-categories .content,
    .widget_categories_courses .widget-categories .content {
        padding: 22px 29px 11px 29px;
        background: #fff;
    }

    .widget_categories .widget-categories ul li,
    .widget_categories_courses .widget-categories ul li {
        margin-bottom: 16px;
    }

    .widget_categories .widget-categories ul li a,
    .widget_categories_courses .widget-categories ul li a {
        position: relative;
        color: #515e6f;
    }

    .widget_categories .widget-categories ul li a:after {
        content: "";
        width: 0%;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: -1px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }  

    .widget_categories .widget-categories ul li a:hover:after {
        width: 100%;
    }

    .widget_categories .widget-categories ul li a span {
        color: #8a95a2;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }  
    .widget_categories .widget-categories.v2 {
        padding: 25px 15px 21px 34px;
    }

    .widget_categories .widget-categories.v2 .title-widget {
        background-color: unset;
        padding: 0 0;
        color: #192836;
        font-family: 'Poppins';
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 13px;
        padding-left: 1px;
    }

    .widget_categories .widget-categories.v2 ul li a {
        color: #192836;
        font-size: 16px;
    }

    .widget_categories .widget-categories.v2 ul li {
        margin-bottom: 10px;
    }

    .widget_categories .widget-categories.v2 ul li:before {
        content: '';
        font-family: "Font Awesome 5 Free"; 
        font-size: 16px;
    }

    .widget_categories .widget-categories .fa {
        padding-right: 8px;
        font-size: 16px;
    }
    .widget>ul>li {
        margin-bottom: 10px;
    }
    .widget>ul>li ul.children li:last-child{
        padding-bottom: 0px;
    }
    .widget>ul>li:last-child{
        margin-bottom: 0px;
    }
    .widget.widget_categories>ul>li a{
        position: relative;
        font-family: 'Poppins';
        color: #192836;
        font-size: 16px;
        font-weight: 500;
    }
    .widget>ul>li a:hover{
    }
    .widget .calendar_wrap table{
        width: 100%;
        text-align: center;
    }
    .widget .calendar_wrap table caption{
        padding: 8px 0px 0px;
    }
    .widget ul li ul.children li {
        padding: 5px 0px 5px 15px;
    }
    .widget.widget_categories .v2 ul>li a:after {
        content: "";
        width: 0%;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: -1px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .bottom-menu .widget>ul>li a:after {
        content: none;
        width: 0%;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: -1px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .widget.widget_categories .v2 ul>li a:hover:after {
        width: 100%;
    }
    .widget>ul>li a.rsswidget{
        display: block;
        clear: both;
    }
    .widget>ul>li a.rsswidget:hover:after{
        width: 0%;
    }
     #footer .widget .textwidget p {
        margin-bottom: 15px;
    }
    .widget .textwidget form br {
        display: none;
    }
    .widget ul .sub-menu {
        padding-left: 10px;
    }
    .widget_nav_menu ul li a {
        position: relative;
        display: block;
        font-family: 'Poppins';
        color: #192836;
        font-size: 16px;
        font-weight: 500;
        clear: both;
    }
    #footer .widget_nav_menu ul li a {
        margin-bottom: 10px;
        position: relative;
        display: unset;
        font-family: 'Roboto';
        color: #192836;
        font-size: 14px;
        font-weight: 700;
        clear: both;
    }
    
    #footer .widget_search .search-submit{
        height: 50px;
    }
    
    .bottom-menu p, .bottom-menu  .widget.no-border ul li{
        margin-bottom: 0px;
    }
    .sidebar .widget-title,.sidebar .widget-title a {
        background-color: unset;
        padding: 0 0;
        color: #192836;
        font-family: 'Poppins';
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 25px;
    }

    .sidebar .widget.widget-popular-courses-news{
        margin-bottom: 0px;
    }
    .widget-categories.v2 ul li a {
        font-family: 'Poppins';
        letter-spacing: -0.1px;
    }

    /* Widget Search */
    .widget-search .flat-search {
        width: 100%;
        margin-bottom: 49px;
    }

    .widget-search .flat-search button.btn-search {
       height: 49px;
       width: 66px;
       line-height: 49px;
       font-size: 20px;
    }

    .widget-search .flat-search.v2 button.btn-search {
        height: 49px;   
        width: 66px;
        background-color: #536dfe;
    } 

    .widget-search .flat-search.v2 button.btn-search:hover {
        color: #536dfe;
    }

    .widget-search .flat-search input[type="search"],
    .widget-search .flat-search.v2 input[type="search"] {
        height: 49px;
        font-size: 14px;
        padding-left: 17px;
    }

    .widget-search .flat-search.v2 input[type="search"]:focus {
        border: 1px solid #536dfe;
    }

    /* Widget Related Sourses */
    .widget-related-sourses {
        margin-bottom: 34px;
    }

    .widget-related-sourses .course {
        padding: 0;
        margin-bottom: 13px;
    }

    .widget-related-sourses .title-widget {
        margin-bottom: 18px;
        font-family: 'Poppins';
        font-weight: 700;
    }

    .widget-related-sourses .course-img {
        float: left;
        margin-top: 7px;
        margin-right: 15px;
        margin-bottom: 10px;
        width: 96px;
    }
    .widget_text .textwidget p {
        letter-spacing: 0.01px;
        padding-top: 1px;
        line-height: 1.6;
        font-weight: 500;
    }
    .cs-address {
        padding-top: 5px;
    }
    .widget-related-sourses .course-content {
        background-color: unset;
    }

    .widget-related-sourses .course-content .title a {
        font-size: 16px;
        font-family: 'Poppins';
        font-weight: 700;
    }

    .widget-related-sourses .course-content .title {
        margin-bottom: 4px;
        margin-top: 1px;
    }

    .widget-related-sourses .course-content .description {
        margin-bottom: 11px;
    }

    .widget-related-sourses .vline {
        top: 5px;
        left: 5px;
        width: -webkit-calc(50% - 5px);
        width: -moz-calc(50% - 5px);
        width: calc(50% - 5px);
        height: -webkit-calc(50% - 5px);
        height: -moz-calc(50% - 5px);
        height: calc(50% - 5px);
    }

    .widget-related-sourses .vline-bottom {
        bottom: 5px;
        right: 5px;
        top: auto;
        left: auto;
    }

/* Bottom
-------------------------------------------------- */
    .bottom {
        padding: 17px 0;
    }

    .copyright {
        font-size: 13px;
        font-weight: 700;
    }

    .copyright p {
        color: #718297;
    }

    .copyright a.v2 {
        color: #ec5252;
    }

    .copyright a:hover {
        color: #fff;
    }

    .widget.no-border ul li a {
        font-size: 13px;
        color: rgba(113,130,151,0.8);
        font-weight: 700;
    }

    .widget.no-border.v2 ul li a:hover {
        color: #ec5252;
    }

    .widget.no-border ul li {
        margin-left: 12px;
    }
    .widget>ul>li a,.widget>ul>li ul.children>li a{
        position: relative;
        font-family: 'Poppins';
        font-size: 16px;
        font-weight: 500;
    }
    .widget .calendar_wrap th, .widget .calendar_wrap td {
        border: 1px solid #dbdbdb;
        padding: 7px;
        text-align: center;
    }
    
/* Events Pages
-------------------------------------------------- */
    .page_cs {
        padding-top: 126px;
        padding-bottom: 98px;
    }
    .single-event .page_cs{
        padding-top: 108px;
    }

    .event-detail {
        margin-bottom: 29px;
    }

    .event-detail .author {
        padding-right: 0;
    }

    .event-detail .heading.border-bt {
        border-bottom: 1px solid #e6f3ff;
    }

    .event-detail .heading {
        padding-right: 37px;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }

    .event-detail .heading .title {
        font-family: "Poppins";
        margin-bottom: 4px;
    }

    .event-detail .img-single {
        margin-bottom: 26px;
    }

    .event-detail .wrap-btn {
        margin-top: 16px;
    }

    .event-detail-page  .img-single-small {
        float: right;
        margin-right: 18px;
        margin-left: 10px;
    }
    .event-detail-page .text-wrap .text1{
       letter-spacing: -0.03px; 
    }
    .post-single .event-detail-page .text1{
        margin-bottom: 22px;
    }
    
    .event-detail-page .tab-content  .text-wrap:nth-child(2){
        padding-top: 24px;
        padding-bottom: 20px;
    }

    .event-detail-page .text5{
        margin-bottom:30px;
    }
    .event-single .tab-content  .text-wrap:nth-child(5) {
        padding-right: 0;
        padding-bottom: 20px;
    }

    .event-single .tab-content .text-wrap:nth-child(5) .text {
        margin-bottom: 24px;
        line-height: 22px;
        padding-right: 74px;
    }

    .event-single .tab-content .wrap-btn {
        margin-top: 42px;
    }

    .event-single .tab-content .title {
        margin-bottom: 10px;
        margin-top: 1px;
        font-family: 'Roboto', sans-serif;
    }
    .event-single .tab-content .title2 {
        margin-bottom: 4px;
    }
    .event-single .tab-content .img-single {
        margin-bottom: 35px;
    }
    .event-single .tab-content .cs-img-tabcontent {
        margin-bottom: 37px;
        margin-left: -30px;
        margin-right: -30px;
    }
    .post-single .event-detail-page .cs-text-tabcontent{
        line-height: 1.6;
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        margin-right: 40px;
        margin-top: 1px;
        margin-bottom: 22px;
    }

    .flat-button.btn-get-ticket {
        font-family: "Poppins";
        line-height: 33px;
        padding: 0 10px;
        border-radius: 4px;
        display: inline-block;
        font-size: 16px;
        font-weight: 700;
    }

    .flat-button.btn-get-ticket:hover {
        color: #fff;
    }

    .flat-button.btn-google {
        padding: 4px 28px;
        display: inline-block;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        font-family: "Roboto";
        line-height: 47px;
    }
    .flat-button.btn-google:before {
        background-color: #192836;
    }
 
/* Instructors Pages
-------------------------------------------------- */
    .instructors-page {
        padding-top: 125px;
        padding-bottom: 68px;
    }

/* FAQs Pages
-------------------------------------------------- */
    .faqs-page {
        padding: 92px 0 84px 0; 
    }

/* Shop Pages
-------------------------------------------------- */
    .shop-page {
        padding: 97px 0 100px 0;
    }

    .shop-single-page .author .name a {
        font-size: 16px;
    }

    .shop-single-page .flat-img-single-slider {
        margin-bottom: 25px;
        position: relative;
        float: left;
        width: 47%;
    }
    .flat-img-single-slider .owl-controls .fa-angle-left:before{
        content: '\ea36';
        font-family: "bf-icon";
        font-size: 25px;
        color:#192836;
        transition: all 0.3s;
    }
    .flat-img-single-slider .flat-carousel .img-single-slider .owl-controls .owl-nav .owl-prev,
    .flat-img-single-slider .flat-carousel .img-single-slider .owl-controls .owl-nav .owl-next{
        border: none;
    }
    .flat-img-single-slider .owl-controls .fa-angle-right:before{
        content: '\ea37';
        font-family: "bf-icon";
        font-size: 25px;
        color:#192836;
        transition: all 0.3s;
        padding: 0 6px;
    }
    .flat-img-single-slider .owl-controls  .owl-prev:hover .fa-angle-left:before,
    .flat-img-single-slider .owl-controls .owl-next:hover .fa-angle-right:before{
        color: #f3728b;
    }
    .flat-img-single-slider .flat-carousel .img-single-slider .owl-controls .owl-nav .owl-prev {
        left: 0px;
        text-align: left;
    }
    .flat-img-single-slider .flat-carousel .img-single-slider .owl-controls .owl-nav .owl-next {
        right: 0px;
        text-align: right;
    }
    .tab-detail-shop {
        overflow: hidden;
        clear: both;
    }
    .product_meta > span {
        margin-right: 15px;
    }
    .flat-detail-single-shop {
        width: 52%;
        float: right;
        padding-left: 30px;
    }
    .shop-single-page .heading .title {
        margin-bottom: 10px;
    }

    .shop-single-page .heading .title {
        font-family: "Poppins";
        font-weight: 700;
        font-size: 30px;
        line-height: 1.5;
    } 
    .flat-detail-single-shop .review-stars-rated,
    .product-quickview .review-stars-rated{
        float: right;
        width: 70px;
    }
    .flat-detail-single-shop .price-wrap del{
        margin-top: 8px;
    }
    .shop-single-page .price-wrap{
        margin-top: 15px;
    }
    .shop-single-page .flat-detail-single-shop .price-wrap,
    .product-quickview .singel-product-wrapper .price {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .cs_related_pt{
        padding: 0px 15px;
    }
    .shop-single-page .author-avata {
        margin-top: 2px;
    }

    .shop-single-page .author .name {
        margin-bottom: 2px;
    }

    .meta-list .title {
        margin-right: 5px;
        font-weight: 700;
    }
    .meta-list li a{
        font-weight: 700;
    }
    .meta-list li:not(:last-child):after,
    .meta-rate > li:not(:last-child):after {
        content: "|";
        margin: 0 11px 0 12px
    }

    .meta-list li.tags a:not(:last-child):after {
        content: ",";
        color: #192836;
    }

    .shop-single-page .meta-list {
        margin-bottom: 8px;
    }

    .shop-single-page .star-list {
        margin-right: 13px;
    }

    .shop-single .price-wrap {
        margin-bottom: 41px;
    }

    .shop-single-page .flat-tabs {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .shop-single-page .flat-tabs .item-content {
        padding: 20px 15px 20px 15px;
    }
    .flat-related-products.shop-single .price-wrap {
        margin-bottom: 0;
    }
    .flat-related-products {
        padding-top: 20px;
    }
    .flat-related-products.shop-single .flat-title .title{
        margin-bottom: 40px;
        font-size: 34px;
        line-height: 1.5;
    }
    .flat-related-products.shop-single .cs_related_pt{
        width: 100%;
        position: relative;
    }
/* About Pages
-------------------------------------------------- */
    .about-us-page {
        padding-top: 99px;
    }
    .about-us-page .flat-about-info {
        margin-bottom: 164px;
    }

    .about-us-page .flat-faqs {
        padding: 96px 0 82px 0;
    }

/* Courses Pages
-------------------------------------------------- */
    .courses-grid-v1-page {
        padding: 115px 0 100px 0;
    }

    .courses-grid-v1-page .flat-courses {
        margin-bottom: 30px;
    }

    .courses-grid-v2-page {
        padding: 112px 0 100px 0;
    }

    .courses-grid-v2.flat-title-page.style4 .wrap-title-page {
        padding: 111px 15px 157px;
    }

    .courses-single-page .star-list {
        margin-right: 9px;
    }

    .courses-single-page .star-list li {
        margin-left: -1px;
    }

    .courses-single-page .img-single {
        margin-bottom: 28px;
    }

    .courses-single-page .img-single img{
        border-radius: 5px;
    }

    .courses-single-page .heading {
        padding-right: 37px;
    }
    .category-sc .content h6{
        margin: 0px;
    }

    .courses-single-page .heading .title a {
        font-family: "Poppins";
        font-weight: 700;
    }

    .courses-single-page .heading .title {
        margin-bottom: 11px;
        font-size: 20px;
        font-weight: 700;
        color: #192836;
        font-family: 'Poppins';
    }
    .courses-single-page .heading-tab .title {
        margin-bottom: 11px;
        font-size: 20px;
        font-weight: 700;
        color: #192836;
        font-family: 'Poppins';
    }
        
    .courses-single-page .heading .description {
        margin-bottom: 19px;
    }

    .courses-single-page .price-wrap {
        padding-top: 7px;
        margin-bottom: 15px;
    }

    .courses-single-page .wrap-cart {
        margin-bottom: 15px;
    }

    .courses-single-page .author .name a {
        font-size: 16px;
    }

    .courses-single-page .author {
        padding-top: 13px;
    }

    .courses-single-page .author .author-avata {
        margin-top: 5px;
    }

    .courses-single-page .author .name {
        margin-bottom: 3px;
    }

    .courses-single-page .author .meta-list {
        margin-bottom: 9px;
    }

    .courses-single-page .item-content{
        padding: 25px 30px 20px 28px;
        overflow: hidden;
    }
    .courses-single-page .flat-button.btn-buy{
       padding: 5px 15px 4px;
    }
    .courses-single-page .text-wrap.img-right .img-single-small {
        float: right;
        padding: 8px 4px 0 0;
        margin-top: -16px;
        margin-right: 17px;
    }
    .courses-single-page .text-wrap.img-left .img-single-small {
        float: left;
        padding-right: 28px;
        margin: 50px 0 30px 0px;
    }

    .course-single {
        margin-bottom: 44px;
    }

    .courses-single-page .text-wrap .title{
        margin-bottom: 16px;
    }
    .courses-single-page .text-wrap .title.title-single-2 {
        margin-bottom: 12px;
    }

    .courses-single-page .text-wrap.img-left .title {
        margin-top: 40px;
    }

    .courses-single-page .text-wrap.img-left .text {
        margin-bottom: 40px;
    }
    .courses-single-page .text-wrap .text {
        margin-bottom: 21px;
    }
    .courses-single-page .text-wrap .text.text-single-3{
        line-height: 1.6;
    }
    .courses-single-page .list-skill li {
        margin-bottom: 7px;
    }
    .courses-single-page .list-skill li:before {
        content: "\f192";
        font-family: "Font Awesome 5 Free";
        padding-right: 5px;
    }

    .courses-single-page .list-skill li:nth-child(1):before {
        color: #536dfe;
    }

    .courses-single-page .list-skill li:nth-child(2):before {
        color: #ff828a;
    }

    .courses-single-page .list-skill li:nth-child(3):before {
        color: #1fdadf;
    }

    .courses-single-page .list-skill li:nth-child(4):before {
        color: #fcaa46;
    }
    .courses-single-page .list-skill li:nth-child(5):before {
        color: #21ce4a;
    }
    .courses-single-page .list-skill li:nth-child(6):before {
        color: #f45f7d;
    }

    .courses-single-page .text-wrap.img-left {
        margin-bottom: 72px;
    }

    .courses-single-page .tag-item {
        height: 19px;
        padding: 0 5px;
        color: #515e6f;
        font-size: 12px;
        margin-right: 3px;
    }

    .courses-single-page .tag-item.bg-7ffe53 {
        background:  rgba(127,254,83,0.08);
        border: 1px solid rgba(53,192,69,0.14)
    }

    .courses-single-page .tag-item.bg-fe5367 {
        background:  rgba(254,83,103,0.08);
        border: 1px solid rgba(254,83,103,0.14)
    }

    .courses-single-page .tag-item.bg-536dfe {
        background:  rgba(83,109,254,0.08);
        border: 1px solid rgba(83,109,254,0.14)
    }

    .courses-single-page .checkmark a {
        border: 1px solid rgba(81,94,111,0.14);
        padding: 0 5px;
        font-size: 9px;
        line-height: 19px;
        display: inline-block;
        margin-left: 5px;
    }

    .courses-single-page .checkmark span {
        font-size: 12px;
    }
    .courses-single-page .checkmark .report {
        margin-left: 26px;
    }
    .courses-single-page .price-wrap span{
        font-family: "Poppins";
        font-weight: 700;
        margin-bottom: 15px;
        
    }
    .courses-single-page .price-wrap .course-price{
        font-size: 30px;
        letter-spacing: -1px;
    }
    .courses-single-page .price-wrap .course-origin-price {
        font-size: 16px;
        text-decoration: line-through;
        margin-left: 2px;
    }
    #profile-content-courses ul.learn-press-courses{
        margin-left: -2.1%;
        margin-left: -2.1%;
    }
    .learnpress:not(.home) .page-wrap,.woocommerce-page .page-wrap {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .single-lp_course.learnpress .page-wrap {
        margin:0px;
        padding-bottom: 102px;
    }
    .single-lp_course .flat-feature{
        display: none;
    }
    .single-lp_course .flat-free-month {
        position: relative;
        padding: 82px 0 84px 0;
    }
    #profile-content-courses ul.learn-press-courses article,
    .courses-v2 .flat-courses .tflat-course-item article{
        margin-bottom: 30px;
    }
    .flat-courses .tflat-course-item article{
        margin-bottom: 29px;
    }
    .single-courses-simple .flat-courses .tflat-course-item article{
        margin-bottom: 26px;
    }
    .item-content .flat-button.btn-read-more,.review-actions .flat-button.btn-read-more{
        line-height: 1.5;
        border: transparent;
    }

    .flat-button.btn-buy {
        height:auto;
        padding: 7px 16px 5px;
        margin-top: 2px;
        line-height: 1.5;
        margin-left: 15px;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 700;
        font-family: "Poppins";
        display: inline-block;
        background: transparent;
    }
    .review-actions .close{
        display: none;
    }
    .flat-button.btn-buy.v2 {
        color: #fff;
    }

    .flat-button.btn-buy:hover.v2 {
        border: 2px solid #192836;
    }

    .flat-button.v2.btn-buy:before {
        background-color: #192836;
    }

    .flat-button.btn-buy:hover {
        color: #fff;
    }

    .btn-cart {
        font-size: 14px;
        font-weight: 500;
        line-height: 43px;
    }

    .btn-cart.v2 {
        color: #192836; 
    }

    .btn-cart:hover {
        color: #192836;
    }  
    .courses-grid-v3-page .sidebar-left {
        width: 22%;
        float: left;
    }
    .courses-grid-v3-page .taskbar {
        width: 50%;
        float: left;
        padding: 11px 0 0 20px;
    }

    .courses-grid-v3-page  .select-order {
        float: right;
    }

    .courses-grid-v3-page .wrap-select {
        width: 210px;
        position: relative;
    }

    .courses-grid-v3-page .wrap-select:before {
        content: "\f022";
        font-family: "FontAwesome";
        position:absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .courses-grid-v3-page .wrap-select:after {
        content: "\33";
        font-family: "ElegantIcons";
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        color: #536dfe; 
    }

    .courses-grid-v3-page .heading {
        background: #fff;
        margin-bottom: 15px;
    }

    .courses-grid-v3-page .taskbar ul li {
        font-family: "Poppins";
        font-size: 12px;
    }

    .courses-grid-v3-page .taskbar ul li:not(:last-child):after {
        content: "|";
        font-family: "Poppins";
        font-weight: 500;
        padding:  0 9px 0 17px;
    }

    .courses-grid-v3-page select {
        font-size: 12px;
        -moz-appearance: none;
        -webkit-appearance: none;
        background: rgba(83,109,254,0.05);
        padding-left: 45px;
    }

/* Blog Pages
-------------------------------------------------- */
    .blog-page{
        padding-top: 78px;
        padding-bottom: 105px;
    }
    .page_flat_default{
        padding-top: 78px;
        padding-bottom: 70px;
    }
    .flat-product{
        padding-top: 96px;
        padding-bottom: 78px;
    }
    .cs-single-post{
        padding-top: 78px;
        padding-bottom: 70px;
    }
    .cs-single-product{
        padding-top: 62px;
        padding-bottom: 38px;
    }
    .post-single blockquote {
        color: #fa778a;
        font-size: 20px;
        line-height: 29px;
        margin-bottom: 24px;
        padding: 30px;
    }
    .post-single.post-1933 blockquote {
        margin: 0px;
        padding: 0px;
        border: none;
        background: transparent;
        margin-bottom: 23px;
    }
    .post-single .wp-block-archives.wp-block-archives-dropdown{
        margin-bottom: 15px;
    }
    .post-single ul li ul.children{
        margin: 0px;
    }
    pre {
        background: #f9f9f9;
        border: 1px solid #eee;
        border-radius: 0;
        font-family: Consolas, monospace;
        height: auto;
        margin: 0 0 20px;
        overflow-x: auto;
        padding: 20px;
    }
    table {
        width: 100%;
        margin-bottom: 20px;
        background-color: transparent;
    }
    th,td {
        border: 1px solid #dbdbdb;
        padding: 7px;
        text-align: center;
    }
    .nav-top-cart-wrapper th,.nav-top-cart-wrapper td {
        border: none;
        padding: 0px;
        text-align: center;
        vertical-align: middle;
    }

    .post-single dl {
        margin-top: 0;
        margin-bottom: 20px;
    }
    .post-single dt {
        font-weight: bold;
    }
    .post-single ul li ul,.post-single ol li ol,.post-single ol li ul{
        margin: 0px 
    }
    .post-single address {
        font-style: italic;
        margin: 0 0 20px;
    }
    .post-single code {
        padding: 2px 4px;
        font-size: 90%;
        color: #c7254e;
        background-color: #f9f2f4;
        border-radius: 4px;
    }
    .post-single mark,.post-single ins {
        background-color: #0f3661;
        text-decoration: none;
        color: #fff;
        padding: 7px;
    }
    .wp-caption.alignleft,.post-single img.alignleft{
        margin: 7px 20px 25px 0 ;
    }
    .post-single kbd {
        padding: 2px 4px;
        font-size: 90%;
        color: #fff;
        background-color: #333;
        border-radius: 3px;
        -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
    }
    .post-single input[type="submit"]{
        height: 45px;
    }
    .post-single #comments>ol {
        list-style: none;
        padding: 0px;
    }
    .widget.widget_calendar{
        padding: 0 1px;
    }
    .post-single #comments>ol li>ol.children {
        list-style: none;
    }
    blockquote{
        background: #f1f1f1;
        border-left: 4px solid #fa778a;
        font-size: 16px;
        font-weight: 500;
        margin: 25px 0px 27px 0px;
        padding: 35px 30px 30px 30px;
        color: #fa778a;
    }
    .testimonial blockquote{
        background: #f1f1f100;
        border-left: none;
        font-size: 16px;
        font-weight: 500;
        margin: 0;
        padding: 0;
        color: unset;
        margin-right: 20px;
    }
    blockquote a{
        color: #fa778a;
    }
    blockquote br{
        display: none;
    }
    .wp-block-pullquote p {
        font-size: 26px;
        line-height: 1.6;
    }
    .wp-block-quote.is-style-large{
        padding: 35px 30px 30px 30px;
     }
    .related-posts-box {
        margin-top: 30px;
    }

    .post-single .img-single {
        margin-bottom: 22px;
        margin-top: 1px;
    }
    .post-single .event-detail .img-single {
        margin-bottom: 27px;
        margin-top: 1px;
    }
    .post-single .img-single img{
        border-radius: 4px;
    }
    .wp-block-cover.alignleft{
        margin-right: 1.5em;
    }
    .comment-respond .logged-in-as {
        margin-bottom: 18px;
    }
    .post-single .title {
        font-family: 'Poppins';
        font-weight: 700;
        -ms-word-wrap: break-word;
        word-wrap: break-word;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    .post-single .event-detail .title {
        margin-left: 0px;
    }
    .post-single .flat-comments .title{
        margin-left: 0px;
    }
    .post-single .list-meta {
        margin-bottom: 17px;
    }

    .post-single .sub-title {
        font-weight: 500;
        margin-bottom: 27px;
        font-size: 20px;
        margin-left: -1px;
    }
    span.cs-text-content {
        letter-spacing: -0.04px;
    }
    span.cs-text-content-v2 {
        letter-spacing: -0.03px;
    }

    .post-single .text1 {
        margin-bottom: 35px;
    }

    .post-single .text2 {
        margin-bottom: 24px;
    }

    .post-single .text3 {
        margin-bottom: 41px;
    }

    .post-single .text4 {
        margin-bottom: 65px;
    }
    .post-single .entry-content p {
        line-height: 172%;
    }
    .single-post .post-single ol,
    .flat-comments ol.comment-list ol:not(.children){
        display: block;
        list-style-type: decimal;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        padding-inline-start: 40px;
    }
    .single-post .post-single ul ,
    .flat-comments ol.comment-list ul{
        list-style-type: disc;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        padding-inline-start: 40px;
    }
    .post-single ul.wp-block-gallery,.post-single ul.list{
        padding: 0px;
        margin: 10px 0px;
    }
    .post-single .entry-content{
       margin-bottom: 30px;
    }
    .infor-post{
        margin-top: 37px;
    }
    .admin-wrap .admin, .admin-wrap .admin a{
        font-size: 16px;
        text-transform: uppercase;
        padding-left: 1px;
        letter-spacing: 0.1px;
    }
    .sticky, .tag-sticky-2 {
        display: block;
        background: #f7f7f7;
        border: 1px solid rgba(54, 70, 115, 0.08);
        padding: 30px;
    }
    .admin-wrap .admin:before {
        content: '\f38e';
        font-family: 'Ionicons';
        color: #fa778a;
        font-size: 18px;
        padding-right: 7px;
    }
    .infor-post .socails ul li {
        margin-left: 14px;
    }
    .post-single .socails{
        margin-top: 4px;
    }
    .infor-post .socails ul li:first-child {
        font-weight: 700;
        font-family: 'Poppins';
        color: #192836;
        font-size: 16px;
    }

    .infor-post .socails ul li a {
        font-size: 18px;
    }

    .infor-post .socails ul li.facebook a {
        color: #4267b2;
    }

    .infor-post .socails ul li.google-plus a {
        color: #d73d32;
    }

    .infor-post .socails ul li.twitter a {
        color: #1da1f2;
    }

    .wrap-next-pre {
        padding-bottom: 43px;
        padding-top: 48px;
        margin-top: 20px;
    }
    .wrap-next-pre.single-post-dot .wrap-next.one-of-two{
        width: 50%;
        float: right;
        word-wrap: break-word;
    }
    .wrap-next-pre.single-post-dot .wrap-pre.one-of-two{
        width: 50%;
        float: left;
        word-wrap: break-word;
    }
    .comment-respond .wrap-input.one-of-two{
        width: 50%;
        word-wrap: break-word;
    }
    .flat-comments .comments-title .title{
        margin-top: 45px;
        margin-bottom: 30px;
    }
    .wrap-next-pre .icon {
        font-size: 42px;
        width: 66px;
        height: 66px;
        background: #f7f7f7;
        line-height: 68px;
        text-align: center;
        border-radius: 50%;
        color: #515e6f;
    }

    .wrap-next-pre .icon.next {
        float: right;
        margin-left: 19px;
    }

    .wrap-next-pre .icon.pre {
        float: left;
        margin-right: 19px;
    }

   .wrap-next-pre .content {
        padding-top: 8px;
    }

    .wrap-next-pre .content p {
        color: #515e6f;
        margin: 0px;
    }
    .wrap-next-pre .next-pre:hover .icon {
        background: #fa778a;
        color: #fff;
    }
    .post-single .entry-content>*.alignleft{
        max-width: calc(4*(100vw/12));
        margin-right: 1rem;
    }
    .post-single .entry-content>*.alignwide{
        width: 100%;
        max-width: 100%;
    }
/* 404 Pages
-------------------------------------------------- */
.error404 .page-wrap .content-area {
    width: 100%;
    padding-right: 0;
    text-align: center;
}
.page-header .nothing {
    padding: 0;
    background-color: transparent;
    font-size: 40px;
    line-height: 40px;
}
.error404 .error-404 .page-header .nothing {
    font-size: 200px;
    line-height: 200px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
.error404 .error-404 .sub-title-404 {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    margin-bottom: 30px;
}
/* Flat Slider
-------------------------------------------------- */
    .flat-slider.style1 .overlay {
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.2;
    }

    .flat-button.btn-start-slider {
        font-size: 16px;
        display: inline-block;
        line-height: 49px;
        padding: 3px 54px 3px 34px;
        color: #fff;
        overflow: hidden !important;
    }

    .flat-button.btn-start-slider.v2{
        background-color: #536dfe;
    }

    .flat-button.btn-start-slider.v3{
        background-color: #ec5252;
    }

    .flat-button.btn-start-slider:before {
        background: #192836;
    }

    .flat-button.btn-start-slider:after {
        font-family: "bf-icon";
        font-weight: 100;
        font-size: 16px;
        position: absolute;
        right: 32px;
        top: 49%;
        transform: translateY(-50%);
    }

    .flat-slider.style2 .overlay {
        background: #ffedd2;
        opacity: 0.2;
        width: 100%;
        height: 100%;
    }

    .flat-slider.style2 {
        position: relative;
    }

    .flat-slider.style2:after {
       content: "";
       height: 38px;
       width: 1920px;
       position: absolute;
       bottom: 0;
    }

    .flat-slider.style2:before {
        content: "";
        border-top: 76px solid transparent;
        border-right: 1920px solid rgba(255,255,255,0.54);
        position: absolute;
        bottom: 0;
        z-index: 99;
    }

    .flat-slider.style3 .overlay {
        background: #192836;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        left: 0;
        top: 0;
    }

/* Go Top
-------------------------------------------------- */
    #scroll-top {
        position:fixed;
        display:block;
        width:35px;
        height:35px;
        line-height:35px;
        text-align:center;
        z-index:1;
        right:14px;
        bottom:23px;
        opacity:0;
        border-radius: 4px;
        visibility:hidden;
        cursor:pointer;
        overflow:hidden
    }

    #scroll-top.show {
        right:24px;
        opacity:1;
        visibility:visible
    }

    #scroll-top:before,#scroll-top:after {
        content:"";
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        -webkit-transition:all .3s ease;
        -moz-transition:all .3s ease;
        -ms-transition:all .3s ease;
        -o-transition:all .3s ease;
        transition:all .3s ease;
    }

    #scroll-top:before {
        z-index:-1;
        background-color:#192836;
    }

    #scroll-top:after {
        content:"\ea37";
        font-family:"bf-icon";
        font-size:14px;
        color:#fff;
        transform: rotate(-90deg);
    }

    .v2#scroll-top:after {
        color: #fff;
    }

    #scroll-top:hover:after {
        color:#fff;
    }
  
    .v2#scroll-top:hover:before {
        background-color:#ec5252;
    }

/* Preload
-------------------------------------------------- */
.preloader {
    width:100%;
        height:100%;  
        position:fixed;
        z-index: index 999999;
        background:#192836;
}
.preloader_ax {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #3f3f3f;
    opacity: 0.8;
    filter: alpha(opacity=80);
}
.loader-pre {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.loader-pre:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
.loader-pre:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* Switcher
-------------------------------------------------- */
    .switcher-container {
       position: fixed;
       left: -220px;
       top: 139px;
       width: 220px;
       background-color: #000;
       z-index: 99999999;
    }

    .switcher-container h2 {
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0;
        text-transform: uppercase;
        height: 45px;
        line-height: 45px;
        padding-left: 45px;
        padding-right: 0;
        margin: 0;
    }

    .switcher-container h2 a {
       background-color: #000;
       display: block;
       position: absolute;
       right: -45px;
       top: 0;
       width: 45px;
       height: 45px;
       line-height: 45px;
       text-align: center;
       outline: 0;
       color: #fff;
       -webkit-transition: all 0.3s ease-in-out;
           -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
             -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
    }

    .switcher-container h2 a.active {
        right: 0;
    }

    .switcher-container h2 a.active:after {
        position: absolute;
        left: 21px;
        top: 0;
        content: "\f104";
        font-family: "FontAwesome";
        font-size: 22px;
    }

    .switcher-container h2 a.active i {
        display: none;
    }

    .switcher-container h2 a:hover,
    .switcher-container h2 a:focus {
       text-decoration: none;
    }

    .switcher-container h2 i {
        display: block;
        margin-top: 10px;
        font-size: 25px;
        -webkit-animation: fa-spin 2s infinite linear;
                animation: fa-spin 2s infinite linear; 
        -webkit-transition: all 0.3s ease-in-out;
           -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
             -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
    }

    .switcher-container h2 i:hover {
        color: #fff;
    }

    .switcher-container h3 {
       font-size: 12px;
       font-weight: 700;
       color: #fff;
       margin: 0;
       line-height: 22px;
       margin-bottom: 10px;
    }

    .switcher-container .selector-box {   
       color: #fff;
       overflow: hidden;
    }

    .switcher-container .layout-switcher {
       margin: 0 0 10px 0;
       overflow: hidden;
    }

    .switcher-container .layout-switcher a.layout {
       float: left;
       display: block;
       cursor: pointer;
       text-align: center;
       font-weight: 700;
       padding: 10px 20px;
       margin-left: 10px;
    }

    .switcher-container .layout-switcher a.layout:first-child {
       margin-left: 0;
    }

    .switcher-container .layout-switcher a.layout:hover {
       color: #fff;
       cursor: pointer;
    }

    .switcher-container .color-box {
       height: auto;
       overflow: hidden;
       margin-bottom: 6px;
    }

    .switcher-container .styleswitch {
        margin-bottom: 10px;
    }

    .sw-odd {
        background-color: #272727;
        padding: 15px 0 10px 20px;
        -webkit-transition: all 0.3s;
           -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
             -o-transition: all 0.3s;
                transition: all 0.3s;
    }

    .sw-even {
        background-color: #191919;
        padding: 21px 0 25px 20px;
        -webkit-transition: all 0.3s;
           -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
             -o-transition: all 0.3s;
                transition: all 0.3s;
    }

    .sw-even a {    
        font-family: "Karla", sans-serif;
        text-transform: uppercase;
        font-size: 12px;
        line-height: 40px;
        color: #fff;
        border: 1px solid #fff;
        padding: 10px 20px 10px 20px;
        margin-right: 10px;
        letter-spacing: 1.8px;
    }

    .sw-even a:hover {
        color: #fff !important;
    }

    .sw-light {
        background-color: #fff;
        color: #000 !important;
    }

    .sw-odd a { 
        font-size: 16px;
        color: #fff;
        width: 100%;
        display: inline-block;
        line-height: 17px;
        width: 100%;
        position: relative;
        padding-left: 47px;
    }

    .sw-odd .ws-colors a:before {
        background: none;
    }

    .sw-odd .ws-colors a {
        position: relative;
        width: auto;
        padding: 0; 
        width: 30px;
        height: 30px;
        background-color: #333; 
        display: inline-block;
        margin-right: 5px;  
        overflow: hidden;
    }

    .sw-odd .ws-colors a.current:before {
        position: absolute;
        left: 8px;
        top: 6px;
        font-family: FontAwesome;
        content: "\f00c";
        color: #fff;
        z-index: 999;
        text-shadow: 0 0 2px rgba( 0, 0, 0, 1 );
    }
    .sw-odd .ws-colors #color2 {
        background-color: #ec5252;
    }

    .sw-even h3 {
        margin-bottom: 6px;
    }

    .sw-pattern.pattern {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
            filter: alpha(opacity=0);
           opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
           -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
             -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
        position: absolute;
        left: 0;
        top: 98%;
        background-color: #000000;
        width: 100%;
        z-index: -1;
        padding: 20px 0 30px 20px;
    }

    .sw-pattern.pattern a { 
        width: 40px;
        height: 40px;
        display: inline-block;
        margin-right: 5px;
        margin-bottom: 5px;
        position: relative;
    }

    .sw-pattern.pattern a.current:before {
        position: absolute;
        left: 12px;
        top: 6px;
        font-family: FontAwesome;
        content: "\f00c";
        color: #fff;
        text-shadow: 0 0 2px rgba( 0, 0, 0, 1 );
    }

    .sw-odd .sw-image {
         padding: 0 20px 15px 0;
    }

    .sw-odd .sw-image a{
        padding: 0;
        margin-bottom: 5px;
    }

    .sw-odd .sw-image .sw-buy {
        width: 100%;    
        border: none;
        background: #6f9a37; 
        position: relative; 
        height: 35px;
        line-height: 37px;
        border-radius: 0;
    }

    .sw-odd .sw-image .sw-buy:before {
        content: "\f07a";
        font-family: "FontAwesome";
        color: #fff;
        position: absolute;
        left: 20%;
        top: -1px;
    }

    .sw-pattern.pattern {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
            filter: alpha(opacity=0);
           opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
           -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
             -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
        position: absolute;
        left: 0;
        top: 98%;
        background-color: #000000;
        width: 100%;
        z-index: -1;
        padding: 20px 0 30px 20px;
    }

    .sw-pattern.pattern a { 
        width: 35px;
        height: 35px;
        display: inline-block;
        margin-right: 5px;
        margin-bottom: 5px;
        position: relative;
    }

    .sw-pattern.pattern a.current:before {
        position: absolute;
        left: 12px;
        top: 6px;
        font-family: FontAwesome;
        content: "\f00c";
        color: #fff;
        text-shadow: 0 0 2px rgba( 0, 0, 0, 1 );
    }

    .sw-odd .sw-image {
         padding: 0 20px 15px 0;
    }

    .sw-odd .sw-image a{
        padding: 0;
        margin-bottom: 5px;
    }

    .sw-odd .sw-image .sw-buy {
        width: 100%;    
        border: none;
        position: relative; 
        height: 35px;
        line-height: 37px;
        border-radius: 0;
    }

    .sw-odd .sw-image .sw-buy:before {
        content: "\f07a";
        font-family: "FontAwesome";
        color: #fff;
        position: absolute;
        left: 20%;
        top: -1px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .sw-odd .sw-image .sw-buy:hover {
        background: #fff;
    }

    body.boxed .themesflat-boxed{
        width: 92.708%;
        margin: 0 auto;
        position: relative;
        background-color: #fff;    
        box-shadow: 0 0 16px 1px #7f7f7f;
        overflow: hidden;
    }
    body.boxed #header.fixed-header{
        width: 92.708%;
        margin: 0 auto;
    }
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 0px;
    width: 0px;
    overflow: hidden;
}
.widget_search input[type="search"] {
    width: 100%;
}
.widget_search label {
    display: block;
}
.widget_search .search-submit {
    position: absolute;
    top: 1px;
    right: 0px;
    border: unset;
}
.sidebar .widget {
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}
.sidebar .widget.widget_search {
    margin-bottom: 48px;
}
.sidebar .widget:last-child{
    margin-bottom: 0px;
}
.sidebar .widget_categories {
    margin-bottom: 42px;
}
.sidebar .widget-popular-courses-news .widget-title{
    margin-bottom: 15px;
    margin-left: -1px;
}
.widget_search  button.flat-button.btn-search:before {
    background: #192836;
}
.flat-button.btn-send:hover{
    background: #192836;
    color: #ffffff;
}
.content-page-wrap {
    width: 100%;
}
.flat-paginations_courses .pagination{
    justify-content: center;
}
.page-links span{
    display: inline-block;
    line-height: 32px;
    border: 1px solid rgba(26,34,125,0.22);
    padding: 0 14px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}
.page-links .post-page-numbers.current{
    border: transparent;
    padding: 0px;
    margin: 0px 3px;
}
.page-links a span{
    transition: all 0.3s;
}
.page-links {
    padding: 15px 0px;
    clear: both;
    position: relative;
}
.blog-list .transition-vline .img-vline{
    overflow: hidden;
}
.blog-list .transition-vline .img-vline img{
   -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;

}
.blog-list .transition-vline:hover .img-vline img{
    -webkit-filter: grayscale(20%); 
  filter: grayscale(20%);
  opacity: 0.9
}
.blog-list .transition-vline:hover .img-vline .overlay{
    display: none;
}
.page-links .post-page-numbers.current span,.page-links a span:hover{
    color: #fff;
}
#course-item-content-header .course-title a{
    font-size: 25px;
}
.learnpress:not(.single-lp_course) .course-origin-price{
    display: none;
}
.course-curriculum ul.curriculum-sections .section-content .course-item.item-preview .course-item-status {
    background: #00adff;
    font-style: normal;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 2px 15px;
}
.single-lp_course .course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link {
    text-align: right;
}
.single-lp_course .course-curriculum ul.curriculum-sections .section-content .course-item .item-icon, .single-lp_course .course-curriculum ul.curriculum-sections .section-content .course-item .item-name {
    text-align: left;
}
.checkout-review-order h4 ,.learn-press-checkout-comment h4,.learn-press-checkout-payment h4{
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 24px;
}
#learn-press-checkout-login h4, 
#learn-press-checkout-register h4,
#checkout-form-login h3{
    margin-bottom: 20px;
    font-size: 24px;
}
.course-curriculum ul.curriculum-sections .section-content {
    display: none;
}
.course-curriculum ul.curriculum-sections .section-content.active{
    display: block;
}
body.course-item-popup .learn-press-content-protected-message{
    max-width: 100%;
}
.checkout-review-order .lp-list-table th, .checkout-review-order .lp-list-table td{
    border-left-width: 1px;
    border-right-width: 1px;
    text-align: center;
}
.checkout-review-order .lp-list-table thead tr th{
}
.learnpress table.order_details{
    width: 100%;
}
body.course-item-popup.learnpress #learn-press-content-item .content-item-wrap{
    margin-bottom: 30px;
}
#learn-press-payment .place-order-action {
    margin-bottom: 15px;
}

body.learnpress.course-item-popup #learn-press-course-curriculum .section-header{
    padding: 0px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.learnpress .course-curriculum ul.curriculum-sections .section-header{
    border:none; 
    transition: all 0.3s ease;
}

.learnpress  .course-curriculum ul.curriculum-sections .section{
    background: #f8f9ff;
    margin-bottom: 10px;
    border: 1px solid #e6f3ff;
    border-radius: 4px;
    font-weight: 500;
}
.learnpress  .course-curriculum ul.curriculum-sections .section-header h5.section-title{
    padding: 15px;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}
.learnpress  .course-curriculum ul.curriculum-sections .section-header h5.section-title .meta{
    font-size: 17px;
    line-height: 1.5;
    position: absolute;
    right: 15px;
    top: 15px;
}
.learnpress .course-curriculum ul.curriculum-sections .section-content .course-item{
     background: #f8f9ff;
}
.learnpress .course-curriculum ul.curriculum-sections .section-content{
    padding: 15px;
    margin-bottom: 0px;
}
.learnpress  .course-curriculum ul.curriculum-sections .section-header.active{
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.learnpress .course-curriculum ul.curriculum-sections .section-header:hover h5.section-title,
.learnpress .course-curriculum ul.curriculum-sections .section-header.active:hover,
.learnpress .course-curriculum ul.curriculum-sections .section-header.active h5.section-title,
.learnpress .course-curriculum ul.curriculum-sections .section-header:hover h5.section-title .meta,
.learnpress .course-curriculum ul.curriculum-sections .section-header.active h5.section-title .meta,
.learnpress .course-curriculum ul.curriculum-sections .section-header.active:hover h5.section-title .meta{
    color: #fff;
}

.learnpress-page .place-order-action .lp-button,
.learnpress-page .button-continue-guest-checkout .lp-button{
    line-height: 1.5;
    padding: 0 20px;
    height: 45px;
}
.learnpress-page .learn-press-checkout.guest-checkout {
    display: block;
}
.course-rating .average-rating .rating-box .average-value {
    font-weight: 700;
    font-size: 48px;
    line-height: 50px;
    margin: 0 0 20px;
}
.course-rating .average-rating {
    width: 200px;
    display: block;
    margin: auto;
    padding-bottom: 23.5px;
    text-align: center;
}

.course-rating .review-stars-rated .review-stars.empty, .review-stars-rated .review-stars.filled {
    width: 120px;
    height: 24px;
    font-family: dashicons;
    font-size: 18px;
    color: #f2b827;
    margin: auto;
    text-align: left;
}
.detailed_rating {
    width: 500px;
    margin: auto;
}
.course-rating .detailed-rating .stars {
    clear: both;
}
.course-rating .detailed-rating .stars > div {
    display: inline-table;
    line-height: 30px;
}
.course-rating .detailed-rating .stars > div.key {
    min-width: 50px;
}
.course-rating .detailed-rating .stars > div.bar {
    width: 400px;
    margin: 0 7px;
}
.course-rating .detailed-rating .stars > div.bar .full_bar {
    background: #f3f3f3;
    height: 12px;
    position: relative;
}
.course-rating .detailed-rating .stars > div.bar .full_bar > div {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.meta-rate .review-stars-rated{
    float: left;
}
.meta-rate .number-rating{
    display: inline-block;
    padding-left: 5px;
}
.single-product .author.meta-rate .number-rating{
    color: #515e6f;
    font-weight: 700;
}
.course-rating {
    margin-bottom: 30px;
}
.wrap-rating .review-stars-rated{
    float: left;
}
.wrap-rating .review-stars-rated,
 .wrap-rating .number-rating,
 .meta-rate .review-stars-rated,
 .meta-rate .number-rating{
    display: inline-block;
    margin-top: -2px;
}
 .wrap-rating .number-rating {
    padding-left: 8px;
    font-size: 12px;
}
.review-stars-rated .review-stars.empty,
.review-stars-rated .review-stars.filled,
.wrap-rating .review-stars-rated .review-stars.empty,
.wrap-rating .review-stars-rated .review-stars.filled {
    width: 90px;
    height: 24px;
    font-family: dashicons;
    font-size: 14px;
    color: #f2b827;
}

.course-rating .review-stars-rated .review-stars.empty,
.course-rating .review-stars-rated .review-stars.filled ,
.meta-rate .review-stars-rated .review-stars.filled,
.meta-rate .review-stars-rated .review-stars.empty,
.content-review .review-stars-rated .review-stars.empty,
.content-review .review-stars-rated .review-stars.filled
{
    width: 90px;
    height: 24px;
    font-family: dashicons;
    font-size: 14px;
    color: #f2b827;
    margin: auto;
    text-align: left;
}
.course-rating .review-stars-rated,
.wrap-rating .review-stars-rated,
.meta-rate .review-stars-rated,
.content-review .review-stars-rated{
    width: 70px;
    position: relative;
}
.review-stars-rated .review-stars.filled:before,
.review-stars-rated .review-stars.empty:before,
.meta-rate .review-stars-rated .review-stars.empty:before,
.meta-rate .review-stars-rated .review-stars.filled:before,
.content-review .review-stars-rated .review-stars.empty:before,
.content-review .review-stars-rated .review-stars.filled:before,
.wrap-rating .review-stars-rated .review-stars.empty:before,
.wrap-rating .review-stars-rated .review-stars.filled:before{
    vertical-align: baseline;
}
.wrap-checkmark-tag.clearfix {
    position: relative;
    width: 100%;
    bottom: 0px;
    left: 0px;
    padding: 10px 0px 0px 0px;
}
.wrap-checkmark-tag:before {
        height: 1px;
    position: absolute;
    width: 1000%;
    top: 0;
    margin: 0px -30px 0px 28px;
    background: #e6f3ff;
    content: "";
    transform: translateX(-50%);
}

.course.style3 .course-content .text-wrap{
    padding-top: 20px;
    padding-bottom: 21px;
    position: relative;
}
.breadcrumb-trail.breadcrumbs {
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
}
.event-content .meta-list li {
    color: #192836;
    cursor: pointer;
    transition: all 1s;
}

.event-detail h6.title,.wrap-entry-title h2.entry-title ,#popup-ticket h6.title,.single-product h6.title{
    color: #192836;
}
.single-product h6.title {
    margin-bottom: 13px;
}
.single-product .author.border-t-e6f3ff {
    border: none;
}
.event-single .item-content{
    padding: 20px 13px;
}
.white-popup {
  position: relative;
  background: #FFF;
  padding: 25px;
  width:auto;
  max-width: 600px;
  margin: 0 auto; 
}
.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8); 
}
.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out; 
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1); 
}
.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8; 
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8);
    opacity: 0; 
}
.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0; 
}
.bottom-margin-ticket{
    margin: 10px 0px;
}
.get-ticket .meta-list li{
    font-size: 14px;
}
.get-ticket .meta-list ul li{
    margin: 0px;
}
.get-ticket .meta-list ul li:hover:after{
    color: #192836;
}
.widget-counter .flat-text-center .text{
    padding:1px 0px 0px;
}
.price-wrap {
    display: inline-block;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.price-wrap del {
    color: #515e6f;
    float: right;
    margin-top: 10px;
    line-height: 1;
}

.single-product .author .name {
    font-size: 16px;
}
.price-wrap ins{
    font-size: 30px;
     text-decoration: none;
    margin-right: 5px;
}
.archive-products .products .product-item .added {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
    transition: all 1s;
    overflow: hidden;
}
.single-product .author {
    padding-right: 0px;
    padding-top: 7px;
}
.flat-action .admin-bar {
    padding: 5px 10px;
    text-align: left;
    background: #192836;
    position: absolute;
    transition: all 1s;
    left: 0;
    bottom: -42px;
    z-index: 9;
    width: 100px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}
.flat-action li.user:hover .admin-bar{
    opacity: 1;
    visibility: visible;
}
.themeflast_single_cart .quantity,
.variations_form .quantity{
    display: inline-block;
    float: left;
}
.themeflast_single_cart .quantity input,
.variations_form .quantity input
{
    height: 38px;
}
.cart.themeflast_single_cart,
.variations_form {
    margin-bottom: 20px;
    clear: both;
    overflow: hidden;
    position: relative;
}
.woocommerce-product-details__short-description {
    margin-bottom: 20px;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  
   opacity: 1;
}
.themeflast_single_cart .btn-cart:hover:before,.themeflast_single_cart .btn-cart:before{
    content:'';
}
.paginations-shop{
    margin: 23px 0px;
}
.wrap-rating-price .on-line{
    display: inline-block;
}
.wrap-rating-price .on-line:after {
    content: "|";
    margin: 0 11px 0 12px;
}
.wrap-rating-price  .list-view.on-line:after {
    display: none;
}
.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li{
    margin-bottom: 0px !important;
}
.wpb-js-composer .vc_tta.vc_tta-style-classic .vc_tta-tabs-list{
    padding: 10px 0 7px !important;
    margin: 0px;
    background: rgba(255,225,255,0.1);
}
.wpb-js-composer .vc_tta-tabs:not([class*=vc_tta-gap]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-top.vc_tta-style-classic .vc_tta-tabs-container, .wpb-js-composer .vc_tta-tabs:not([class*=vc_tta-gap]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-top.vc_tta-style-modern .vc_tta-tabs-container {
    margin: 0px;
    width: 100%;
}
.wpb-js-composer .vc_tta-tabs:not([class*=vc_tta-gap]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-top .vc_tta-tab.vc_active>a::before{
    display: none !important;
}
.wpb-js-composer .vc_tta-tabs:not([class*=vc_tta-gap]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-top .vc_tta-tab>a{
    border-radius: 0;
    background: transparent;
    border: none;
    color: #ffffff;
}

.wpb-js-composer .vc_tta-tabs:not([class*=vc_tta-gap]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-top .vc_tta-tab>a span.vc_tta-title-text {
    font-weight: 700;
    font-size: 16px;
    line-height: 58px;
}
.wpb-js-composer .vc_tta.vc_general .vc_tta-panels{
    background-color: transparent !important;
    border: none !important;
}
.wpb-js-composer .vc_tta.vc_general .vc_tta-panels-container {
    padding-top: 48px !important;
    border-radius: 0px !important;
    background: transparent !important;
    border: transparent !important;
}
.wpb-js-composer .vc_tta.vc_tta-shape-rounded .vc_tta-panel-body, .wpb-js-composer .vc_tta.vc_tta-shape-rounded .vc_tta-panel-heading{
    border-radius: 0px !important;
    padding: 0px !important;
    margin: 0px !important;
}
.wpb-js-composer .vc_tta.vc_tta-spacing-1 .vc_tta-tab{
    margin: 0px!important;
}
.wpb-js-composer .vc_tta.vc_general .vc_tta-tab>a{
    padding: 0 24px 0 35px !important;
}

.wpb-js-composer .vc_tta.vc_tta-style-classic .vc_tta-tab:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.14);
}
.wrap-form input.wpcf7-form-control.wpcf7-submit {
    border-radius: 4px;
    margin-left: 14px;
    margin-top: 1px;
    font-size: 16px;
}
.vc_tta-panels .video .fa-play-circle {
    width: 53px;
    height: 53px;
    font-size: 53px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.testimonial-slider .owl-stage-outer {
    padding: 36px 0px;
}
.testimonial-slider.owl-theme .owl-dots .owl-dot span{
    background: rgba(81,94,111,0.2) ;
    border: transparent;
    width: 10px;
    height: 10px;
}
.testimonial-slider.owl-theme .owl-dots .owl-dot.active span,
.testimonial-slider.owl-theme .owl-dots .owl-dot:hover span{
    border: transparent;
}
.triangle-up:before {
    content: "";
    width: 100%;
    height: 0;
    border-left: 1500px solid transparent;
    border-bottom: 100px solid #ffffff7a;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
}
.triangle-up:after {
    content: "";
    width: 100%;
    height: 0;
    border-left: 1500px solid transparent;
    border-bottom: 50px solid #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
}
.tab-aboutus .tab-content.active.box-shadow{
    box-shadow: none;
}
.pe-7s-angle-right:before {
    content: "\ea37" !important;
    font-family: "bf-icon";
    font-weight: 100;
    font-size: 14px;
}
.searchform{
    position: relative;
}
.result-title.nothing,.subtext-nothing {
    margin-bottom: 15px;
}
.widget_search .v2 .btn-search{
    background-color: #536dfe;
}
.widget_search .v2 .btn-search:hover{
    color: #536dfe;
}

.widget_search input[type='text']::placeholder {
    color: #a7aaad;
    font-weight: 400;
    font-family: 'Roboto';
}

.widget_search .v2 input[type='text'],.widget_search input[type='text']{
    padding: 10px 65px 10px 17px;
    background: #ffffff;
    height: 50px;
    border-color: #e6f3ff;
    padding-right: 65px;
    font-weight: 400;
    font-family: 'Roboto';
    opacity: 1;
    color: #a7aaad;
}
.widget_search .search-submit {
    position: absolute;
    top: 0px;
    right: 0px;
    border: unset;
    bottom: 0px;
    height: 49px;
    border-radius: 0px 4px 4px 0px;
    padding: 0 23px 0px 24px;
}
 .widget_search .search-submit .fa-search{
    margin-top: 7px;
    }  
 .widget_search .search-submit .fa-search:before {
    content: "\f002";
    font-size: 19px;
} 
.widget_search .v2 input[type='text']:focus{
    border-color: #536dfe;
}

.acf-map {
    width: 100%;
    height: 400px;
    border: #ccc solid 1px;
    margin: 20px 0;
}
#learn-press-checkout-login, #learn-press-checkout-register {
    margin-bottom: 1.5em;
    border: 1px solid #DDD;
    padding: 20px 20px 20px 20px;
    background: #FFFFFF;
}
/* fixes potential theme css conflict */
.acf-map img {
   max-width: inherit !important;
}
.post-single .socails.flat-text-right ul{
     margin: 0px;
     padding: 0px;
    }
p.cart-empty {
    margin-bottom: 20px;
}
span.item-meta.count-questions {
    margin-right: 5px;
}
#course-item-content-header .back_course {
    display: inline-block;
    width: 60px;
    height: 60px;
    float: right;
    text-align: center;
    border-left: 1px solid #DDD;
}
#course-item-content-header .back_course .fa-close{
    font: 28px/60px fontawesome;
}
#learn-press-course-curriculum .meta{
    display: inline-block;
    margin-left:  10px
}
.tab-content .item-content .course-title{
    display: none;
}
#flat-popup-login {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(0,0,0,.6);
    margin: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -moz-transform: translate(0px, -35px);
    -webkit-transform: translate(0px, -35px);
    -o-transform: translate(0px, -35px);
    -ms-transform: translate(0px, -35px);
    transform: translate(0px, -35px);
    -webkit-transition: all .3s cubic-bezier(.4,0,1,1);
    -khtml-transition: all .3s cubic-bezier(.4,0,1,1);
    -moz-transition: all .3s cubic-bezier(.4,0,1,1);
    -ms-transition: all .3s cubic-bezier(.4,0,1,1);
    -o-transition: all .3s cubic-bezier(.4,0,1,1);
    transition:all .3s cubic-bezier(0, 0, 0.4, 0.8)
}
#flat-popup-login.active {
    -moz-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    visibility: visible;
}
#flat-popup-login .popup-login-wrapper {
    background: #fff;
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
    width: 500px;
    cursor: default;
}
#flat-popup-login .flat-login-container {
    overflow: hidden;
    display: flex;
    width: 50%;
    margin: auto;
}
#flat-popup-login .flat-login-container {
    width: 100%;
}
#flat-popup-login .flat-popup-inner {
    display: flex;
    width: 100%;
    transition: all .3s;
}
#flat-popup-login .flat-login, #flat-popup-login .flat-register {
    min-width: 100%;
    padding: 0 30px;
    position: relative;
    float: left;
    clear: none;
}
#flat-popup-login .flat-login h4.title, #flat-popup-login .flat-register .title {
    font-size: 24px;
    font-weight: 700;
    position: relative;
    text-align: center;
    margin: 0 0 23px;
    padding: 0;
    text-transform: none;
    line-height: 30px;
}
.flat-login form, .flat-register form {
    border: 0;
    padding: 0;
    max-width: 400px;
    margin: auto;
    clear: both;
}
span.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.5s;
}
.flat-login form p.login-remember, .flat-register form p.login-remember {
    width: 50%;
    float: left;
    font-weight: 500;
    margin-top: 7px;
    margin-bottom: 14px;
    line-height: 25px;
    text-align: left;
}
#flat-popup-login .flat-login-container a, #flat-popup-login .flat-login-container p {
    font-size: 15px;
    font-weight: 500;
}
.flat-login .link-bottom, .flat-register .link-bottom {
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    text-transform: none;
    margin: 10px 0 10px;
}
#flat-popup-login.active.sign-in .flat-register{
    display: none;
}
#flat-popup-login.active.sign-up .flat-register{
    display: block;
}
#flat-popup-login .flat-login, #flat-popup-login .flat-register {
    min-width: 100%;
    padding: 0 30px;
    position: relative;
    float: left;
    clear: none;
}
#flat-popup-login.active.sign-up .flat-popup-inner {
    transform: translateX(-100%);
}
.flat-login form button[type=submit], .flat-register form button[type=submit] {
    border: 0;
    width: 100%;
    line-height: 30px;
    padding: 5px 25px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    border-radius: 0;
    border: 1px solid transparent;
    border-radius: 4px;
}
.flat-login form>a.lost-pass-link, .flat-register form>a.lost-pass-link {
    width: 50%;
    float: right;
    display: block;
    font-weight: 500;
    margin-top: 7px;
    margin-bottom: 14px;
    line-height: 25px;
    text-align: right;
}

.cssload-container, .flat-loading {
    position: absolute;
    top: 50%;
    left: 50%;
}
.cssload-container {
    display: block;
    width: 97px;
    margin-top: -10px;
    margin-left: -48px;
}
.cs-title-form {
    margin-bottom: 15px;
}
#flat-popup-login .flat-login-container .cssload-container {
    display: none;
}
#flat-popup-login .flat-login-container.loading .cssload-container {
    z-index: 3;
}
#flat-popup-login .flat-login-container.loading .cssload-container {
    display: block;
}
#flat-popup-login .flat-login-container.loading:before {
    background: rgba(255,255,255,.6);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    content: '';
    position: absolute;
}
.message {
    transition: all 0.5s;
    max-width: 400px;
    margin: auto;
    padding: 10px 12px 10px 15px;
    background: #F5F5F5;
    position: relative;
    margin-bottom: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px
}
.message-error{
     background: #ffe0e0;
}
.message-success{
    background: #d3e2c3;
}
.message-notice,.learn-press-message.success{
    background: #eef8fd;
}
.message-error:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #c33139;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.message-success:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #27AE60;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.message-notice:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #BDE5F8;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-bottom: 20px;
}
.guest-checkout #checkout-guest-email #checkout-guest-options{
    margin-top: 10px;
}
.course-curriculum ul.curriculum-sections .section-content .course-item:last-child{
    border-bottom: transparent;
}
.wpcf7 button{
    border: none !important;
    padding: 0px 35px;
    font-size: 16px;
    border-radius: 4px;
    height: 47px;
    margin-left: -4px;
}
.wpcf7 .flat-button:hover{
    color:#ffffff;
}
.wpcf7 .flat-button:hover::before{
    background-color: #192836;
}
div.wpcf7 .ajax-loader{
    position: absolute;
}
.uranus-2.sr7-arrows::before {
    font-size: 18px !important;
}
.woocommerce-ordering select.orderby {
    padding: 2px 35px 0 22px;
}
.woocommerce-ordering {
    width: max-content;
    }
@media only screen and (max-width: 767px){
    .detailed_rating {
        width: 100%;
    }
    .course-rating .detailed-rating .stars > div.key {
        width: 50px;
    }

    .course-rating .detailed-rating .stars > div.bar {
        width: calc(100% - 100px);
    }
}
@media (min-width: 481px){
    .woo-tab #tab-reviews #comments ol.commentlist li .comment-text {
        margin: 0 0 0 100px;
        border-left: 1px solid #e9e9e9;
    }
}