@font-face {
    font-family: ploni;
    font-style: normal;
    font-weight: 300;
    src: url('./../fonts/aaa/ploni-regular-aaa.eot');
    src: url('./../fonts/aaa/ploni-regular-aaa.eot?#iefix') format('embedded-opentype'), url('./../fonts/aaa/ploni-regular-aaa.woff') format('woff'), url('./../fonts/aaa/ploni-regular-aaa.ttf') format('truetype');
}

@font-face {
    font-family: ploni;
    font-style: bold;
    font-weight: 600;
    src: url('./../fonts/aaa/ploni-bold-aaa.eot');
    src: url('./../fonts/aaa/ploni-bold-aaa.eot?#iefix') format('embedded-opentype'), url('./../fonts/aaa/ploni-bold-aaa.woff') format('woff'), url('./../fonts/aaa/ploni-bold-aaa.ttf') format('truetype');
}

@font-face {
    font-family: ploni;
    font-style: light;
    font-weight: 700;
    src: url('./../fonts/aaa/ploni-light-aaa.eot');
    src: url('./../fonts/aaa/ploni-light-aaa.eot?#iefix') format('embedded-opentype'),
        url('./../fonts/aaa/ploni-light-aaa.woff') format('woff'),
        url('./../fonts/aaa/ploni-light-aaa.ttf') format('truetype');
}

:root {
    --font-family: 'ploni', 'Assistant', sans-serif;
}

html body {
    font-family: var(--font-family);
    text-align: right;
    background-color: #f9f9f9;
}

@media (max-width: 960px) {
    body {
        background: white;
    }
}

/* 

========================================================================
 Component: Container
========================================================================== */
/*
* 1. Box sizing has to be `content-box` so the max-width is always the same and
*    unaffected by the padding on different breakpoints. It's important for the size modifiers.
*/
.container {
    /* 1 */
    box-sizing: content-box;
    max-width: 1260px;
    margin-inline-end: auto;
    margin-inline-start: auto;
    padding-inline-start: 15px;
    padding-inline-end: 15px;
    padding-block-start: 20px;
}

/* Phone landscape and bigger */
@media (min-width: 960px) {
    .container {
        padding-inline-start: 35px;
        padding-inline-end: 35px;
        padding-block-start: 0px;
    }
}

/*
 * Micro clearfix
 */
.container::before,
.container::after {
    content: "";
    display: table;
}

.container::after {
    clear: both;
}

/*
 * Remove margin from the last-child
 */
.container> :last-child {
    margin-block-end: 0;
}

/*
 * Remove padding from nested containers
 */
.container .container {
    padding-inline-start: 0;
    padding-inline-end: 0;
}

/* Size modifier
 ========================================================================== */
.container-xsmall {
    max-width: 750px;
    margin-inline-end: auto;
    margin-inline-start: auto;
}

.container-small {
    max-width: 900px;
    margin-inline-end: auto;
    margin-inline-start: auto;
}

.container-large {
    max-width: 1600px;
    margin-inline-end: auto;
    margin-inline-start: auto;
}

.container-expand {
    max-width: none;
    margin-inline-end: auto;
    margin-inline-start: auto;
}

/* Expand modifier
========================================================================== */
/*
* Expand one side only
*/
.container-expand-left {
    margin-inline-end: 0;
}

.container-expand-right {
    margin-inline-start: 0;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {

    .container-expand-left.container-xsmall,
    .container-expand-right.container-xsmall {
        max-width: calc(50% + (750px / 2) - 30px);
    }

    .container-expand-left.container-small,
    .container-expand-right.container-small {
        max-width: calc(50% + (900px / 2) - 30px);
    }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {

    .container-expand-left,
    .container-expand-right {
        max-width: calc(50% + (1200px / 2) - 40px);
    }

    .container-expand-left.container-xsmall,
    .container-expand-right.container-xsmall {
        max-width: calc(50% + (750px / 2) - 40px);
    }

    .container-expand-left.container-small,
    .container-expand-right.container-small {
        max-width: calc(50% + (900px / 2) - 40px);
    }

    .container-expand-left.container-large,
    .container-expand-right.container-large {
        max-width: calc(50% + (1600px / 2) - 40px);
    }
}

/* ---------------------------------- */
/* section
------------------------------------- */
.section {
    box-sizing: border-box;
    position: relative;
    padding-block-start: 40px;
    padding-block-end: 40px;
}

/* Desktop and bigger */
@media (min-width: 960px) {
    .section {
        padding-block-start: 70px;
        padding-block-end: 70px;
    }
}

/*
* Micro clearfix
*/
.section::before,
.section::after {
    content: "";
    display: table;
}

.section::after {
    clear: both;
}

/*
* Remove margin from the last-child
*/
.section> :last-child {
    margin-block-end: 0;
}

/* Size modifiers
========================================================================== */
/*
* Small
*/
.section-small {
    padding-block-start: 10px;
    padding-block-end: 10px;
    position: relative;
}

/*
* Large
*/
.section-large {
    padding-block-start: 50px;
    padding-block-end: 50px;
    position: relative;
}

/*
* XLarge
*/
.section-xlarge {
    padding-block-start: 140px;
    padding-block-end: 140px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
    .section-small {
        padding-block-start: 30px;
        padding-block-end: 30px;
        position: relative;
    }

    .section-xlarge {
        padding-block-start: 210px;
        padding-block-end: 210px;
    }

    .section-large {
        padding-block-start: 140px;
        padding-block-end: 140px;
    }
}

/* ---------------------------------- */
/* section-header
------------------------------------- */
.section-header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-block-end: 20px;
    align-items: flex-end;
}

.section-header-left {
    flex: 1;
    min-width: 1px;
}

.section-header-left>* {
    margin-block-end: 0;
    color: #3e416d;
}

.section-header-right {
    width: auto;
    align-items: center;
    display: flex;
    justify-content: center;
}

.section-header-right>* {
    margin-inline-end: 10px;
}

.section-header-right a.see-all {
    position: relative;
    padding-inline-start: 23px;
    color: #9799b1;
    line-height: 13px;
    font-size: 14px;
}

.section-header-right a.see-all:hover {
    color: #3e416d;
}

.section-header-right a.see-all::after {
    font-family: "Feather-Icons";
    content: '\e92f';
    font-size: 18px;
    left: 0;
    position: absolute;
}

.home-hero {
    padding: 0;
    position: relative;
    /* background-size: cover; */
    height: 550px;
    /* background-position: 0px -175px; */
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* .home-hero:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  background-image: url(../images/Mask_Group.jpg);
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: 45px 55px;
} */

/* Tablet landscape and smaller */
@media (max-width: 768px) {
    .section-header {
        /* display:block; */
        margin-block-end: 10px;
        padding-block-end: 13px;
        align-items: center;
    }

    .section-header-title>* {
        font-size: 17px;
        line-height: 1;
    }

    .section-header-link a {
        font-size: 14px;
        bottom: 0;
    }
}

/* ---------------------------------- */
/* header
------------------------------------- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    height: 70px;
    background-color: #fff;
    display: flex;
    align-items: center;
    transition: 0.3s;
    box-shadow: 0px 2px 6px 0px #00000017;
}

.header .container {
    padding: 0px 16px;
    width: 100%;
}

.header .uk-navbar {
    align-items: center;
}

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo img {
    width: 30px
}

.header .logo span {
    font-size: 19px;
    margin-inline-start: 10px;
    display: none;
}

@media (max-width: 1200px) {
    .header .logo span {
        display: inline
    }
}

@media (max-width: 640px) {
    .header {
        height: 60px;
    }

    .header .header-widget {
        position: absolute;
        right: 0;
        margin-block-start: 71px;
        border-radius: 35px;
        background: #4a4c76;
        box-shadow: 1px 1px 12px 0px black;
    }

    .header .logo {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
    }
}

.display-as {
    border-radius: 7px;
    display: flex;
    background: #e0e0e0;
}

.display-as a {
    padding: 10px 11px;
    font-size: 16px;
    display: inline-block;
    line-height: 1;
    color: #040404;
}

.display-as a.active {
    background: #efefef;
    color: #ffffff;
    border-radius: 5px;
    cursor: auto;
    background: #3e416d;
    box-shadow: 0px 2px 8px -6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
    .display-as a {
        padding: 7px 8px;
        font-size: 16px;
    }
}

/* ---------------------------------- */
/* layouts
------------------------------------- */
.page-content {
    display: block;
    position: relative;
}

.page-content-inner {
    /* max-width: 1100px; */
    margin: auto;
    padding-block-start: 150px;
    padding-block-end: 0;
    position: relative;
}

.side-nav~.page-content {
    margin-inline-start: 70px;
}

.header~.page-content {
    margin-block-start: 70px;
}

@media (max-width: 1220px) {
    .header~.page-content {
        margin-block-start: 40px;
    }
}

/* ---------------------------------- */
/*  Page Menu
------------------------------------- */
.page-menu {
    width: 250px;
    height: 100%;
    background: #ffffff;
    top: 0;
    right: 0;
    position: fixed;
    z-index: 100;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .04);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .04);
    transition: all 300ms 0s ease-in-out;
}

.page-menu .page-menu-inner {
    overflow-y: auto;
    height: calc(100% - 40px);
}

.page-menu .simplebar-scrollbar {
    width: 5px
}

.page-menu .simplebar-track.simplebar-vertical:hover {
    width: 17px !important
}

.page-menu~.page-content {
    margin-inline-start: 250px;
}

.page-menu.menu-large~.page-content {
    margin-inline-start: 80px;
}

.page-menu .logo {
    padding: 15px 0;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 14px 30px;
    background-color: transparent;
    /* padding-block-end: 0; */
    border-block-end: 1px solid #f2f2f2;
}

.page-menu .logo i {
    font-size: 28px;
    color: #3e416d;
}

.page-menu .logo span {
    font-size: 18px;
    font-weight: 800;
    background-image: linear-gradient(45deg, #3e416d 0, #7f85ab 35%, #a7b9da 60%, #b2b5ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    color: #3e416d !important;
    padding-inline-end: 10px !important;
}

.page-menu .logo img {
    width: 33px;
}

/* ---------------------------------- */
/* Page Navigation  
------------------------------------- */
.page-menu ul {
    list-style: none;
    padding: 0;
    margin: 21px 0 0 0;
    padding-block-start: 23px;
}

.page-menu ul:before {
    content: attr(data-submenu-title);
    padding: 0 35px;
    margin-block-start: -25px;
    display: block;
    color: #66676b;
    font-weight: 600;
    font-size: 14px;
}

/* 1st Level */
.page-menu ul li {
    display: block;
    transition: 0.3s;
    line-height: 25px;
    font-size: 15px;
}

.page-menu ul li a {
    color: #707070;
    display: flex;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    padding: 13px 32px;
}

.page-menu ul li a i {
    padding-inline-start: 20px;
    width: 20px;
    font-size: 22px;
    color: #909090;
    transition: 0.3s;
    position: relative;
    top: 2px;
    display: inline-block;
}

.page-menu ul li.active-submenu a i,
.page-menu ul li.active a i,
.page-menu ul li:hover a i {
    color: #66676b;
}

.page-menu ul li.active-submenu,
.page-menu ul li.active,
.page-menu ul li:hover {
    background-color: rgba(102, 103, 107, 0.04);
    width: 100%;
}

.page-menu ul li.active-submenu a,
.page-menu ul li:hover a,
.page-menu ul li.active a {
    color: #66676b;
}

/* Dropdown Styles */
.page-menu ul li ul {
    padding: 0;
    margin: 0;
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    line-height: 0;
    transition: 0.3s;
    pointer-events: none;
}

.page-menu ul li.active-submenu ul {
    visibility: visible;
    padding: 0px 0 13px 0;
    line-height: 24px;
    opacity: 1;
    max-height: 200px;
    pointer-events: all;
    margin-block-start: 0 !important;
    padding-block-start: 0 !important;
}

.page-menu ul li ul li {
    background-color: transparent;
    border: none;
    padding-inline-end: 63px;
    position: relative;
    margin: 0;
}

.page-menu ul li ul li a {
    padding: 9px 0 !important;
}

.page-menu ul li ul li:hover {
    border: none;
    background-color: transparent;
}

/* Indicator Arrow */
.page-menu ul li a:after {
    font-family: "Feather-Icons";
    content: '\e92e';
    opacity: 1;
    font-size: 16px;
    transition: 0.3s;
    opacity: 1;
    line-height: 17px;
    width: 17px;
    height: 17px;
    color: #a8a8a8;
    display: inline-block;
    border-radius: 3px;
    margin-inline-end: 7px;
    text-indent: 0;
    top: 1px;
    position: absolute;
    left: 35px;
    top: 15px;
}

.page-menu ul li.active-submenu a:after {
    content: '\e931';
}

.page-menu ul li.active-submenu a:after,
.page-menu ul li.active a:after,
.page-menu ul li:hover a:after {
    color: #66676b;
    opacity: 0.8;
}

.page-menu ul li ul:before,
.page-menu ul li a:only-child:after {
    content: '';
    display: none;
}

.page-menu ul li ul li a:after {
    display: none !important;
}

/* menu toggle btn */
.btn-menu-trigger {
    width: 40px;
    height: 40px;
    position: relative;
}

.btn-menu-trigger {
    display: inline;
    right: 206px;
    position: absolute;
    border-radius: 100%;
    margin-block-start: 13px;
    color: #929292;
    z-index: 10;
    cursor: pointer;
}

.btn-menu-trigger::before {
    font-family: "unicons";
    font-size: 22px;
    content: '\ebf0';
    line-height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.page-menu.menu-large .btn-menu-trigger::before {
    content: '\ebf1';
}

/* only large screen */
@media (min-width: 1220px) {
    .page-menu.menu-large {
        width: 80px;
        overflow: hidden;
    }

    .page-menu.menu-large:hover {
        width: 250px;
        transition: all 300ms 0s ease-in-out;
        z-index: 1000;
    }

    .page-menu.menu-large .logo {
        padding: 14px 27px;
        background-color: #f9f9f9;
    }

    .page-menu.menu-large:hover .logo {
        padding: 14px 30px;
        background-color: transparent;
    }

    .page-menu.menu-large:hover .logo a span {
        padding-inline-end: 14px !important;
    }

    .page-menu.menu-large ul li a {
        padding: 17px 30px;
    }

    .page-menu.menu-large:hover ul li a {
        justify-content: initial !important;
    }

    .page-menu.menu-large:hover ul li a i {
        font-size: 20px
    }

    .page-menu.menu-large ul:before,
    .page-menu.menu-large ul li a span,
    .page-menu.menu-large .logo a span {
        position: absolute;
        padding-inline-end: 30px;
    }

    .page-menu.menu-large ul:before,
    .page-menu.menu-large ul li a span,
    .page-menu.menu-large ul li a:after,
    .page-menu.menu-large .logo a span,
    .page-menu.menu-large .btn-menu-trigger,
    .page-menu.menu-large li.active-submenu {
        display: none;
    }

    .page-menu.menu-large:hover ul:before,
    .page-menu.menu-large:hover ul li a span,
    .page-menu.menu-large:hover.page-menu ul li a:after,
    .page-menu.menu-large:hover .logo a span,
    .page-menu.menu-large:hover .btn-menu-trigger,
    .page-menu.menu-large:hover li.active-submenu {
        display: inline-block;
    }

    .page-menu.menu-large:hover ul * li * a {
        padding: 11px 32px;
        justify-content: flex-start;
        align-items: initial;
    }

    .page-menu.menu-large ul {
        margin-block-start: 0;
        padding-block-start: 0;
    }

    .page-menu.menu-large:hover ul {
        margin: 21px 0 0 0;
        padding-block-start: 23px;
    }
}

@media (max-width: 768px) {
    .page-menu {
        margin-inline-start: -250px
    }

    .mobile-active .page-menu {
        margin-inline-start: 0px;
        box-shadow: 1px 1px 0px 1000px #0000003b;
    }

    .btn-menu-close {
        width: 40px;
        height: 40px;
        position: relative;
    }

    .mobile-active .btn-menu-close {
        display: inline;
        right: 232px;
        position: absolute;
        background: #f3f3f3;
        border-radius: 100%;
        margin-block-start: 7px;
    }

    .btn-menu-close::before {
        font-family: "Feather-Icons";
        font-size: 22px;
        content: '\e92f';
        line-height: 30px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
    }

    .btn-menu-trigger {
        display: none
    }
}

/* ---------------------------------- */
/* Side Nav 
------------------------------------- */
.side-nav .side-nav-bg {
    width: 100%;
    height: 100%;
    /* background: #ffffff; */
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    /* -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .04); */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, .04); */
}

.side-nav {
    position: relative;
    height: 100%;
}

.side-nav {
    position: fixed;
    width: 150px;
    height: calc(100% - 25px);
    right: 25px;
    top: 25px;
    /* background: #ffffff; */
    z-index: 8;
    /* transition: all 300ms 0s cubic-bezier(0.24, 0.49, 0.61, 0.31); */
    /* -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.04); */
    /* box-shadow: 0 5px 15px rgba(0,0,0,.04); */
    /* animation-name: uk-fade-right-medium; */
    /* box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
0 6.7px 5.3px rgba(0, 0, 0, 0.048),
0 12.5px 10px rgba(0, 0, 0, 0.06),
0 22.3px 17.9px rgba(0, 0, 0, 0.072),
0 41.8px 33.4px rgba(0, 0, 0, 0.086),
0 100px 80px rgba(0, 0, 0, 0.12); */
}

.side-nav .logo {
    padding: 15px 0;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #f9f9f9; */
}

.side-nav .logo i {
    font-size: 28px;
    opacity: 1;
    color: #3e416d;
}

.side-nav .logo img {
    width: 170px;
    max-width: 125%;
}

.side-nav ul {
    margin: 0;
    padding: 0;
    /* display: block; */
}

.side-nav ul li {
    display: block;
    /* position: relative; */
}

.side-nav>ul>li>a {
    display: block;
    position: relative;
    z-index: 1000;
    color: #4c4c4e;
    padding: 10px 0px;
    font-size: 19px;
    margin: 0;
    /* display: flex; */
    /* justify-content: right; */
    /* border-radius: 12px; */
    font-weight: bold;
}

.side-nav ul li .side-menu-slide {
    /* position: fixed; */
    /* height: 100%; */
    width: 175px;
    /* right: -300px; */
    /* top: 0; */
    padding-inline-end: 26px;
    /* display: none; */
    /* background: #fff; */
    /* -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .08); */
    /* box-shadow: 8px 22px 23px rgba(0, 0, 0, .08); */
    -webkit-transition: all .34s ease-in;
    transition: all .34s ease-in;
    /* display: block; */
    position: relative;
    z-index: 11000;
    max-height: calc(100vh - 250px);
    overflow: auto;
}

.side-nav ul li .side-menu-slide ul li a {
    width: 100%;
    padding: 2px;
    color: #83839c;
    margin: 0;
    font-weight: 500;
    text-align: right;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
    font-size: 15px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.side-nav ul li:hover .side-menu-slide {
    /* right: 0; */
    -webkit-transition: all .34s ease-out;
    transition: all .34s ease-out;
}

.side-nav ul li .side-menu-slide ul li a:hover {
    color: #007791;
    /* padding-inline-start: 34px; */
    background: rgba(66, 133, 244, 0.04);
}

.side-nav ul li .side-menu-slide ul li a i {
    margin-inline-end: 9px;
    margin-inline-start: -1px;
}

.side-nav ul li .side-menu-slide ul li a:hover:after {
    opacity: 1;
    right: 20px;
}

.side-nav ul li .side-menu-slide .side-menu-slide-content {
    /* left: -300px; */
    /* height: 100vh; */
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    /* display: block; */
}

.side-nav .tooltips {
    position: absolute;
    right: 100%;
    display: inline-block;
    line-height: 26px;
    margin-inline-start: 26px;
    background: #3e416d;
    color: #fff;
    padding: 0px 10px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    -webkit-transform: scale(.7);
    transform: scale(.7);
    -webkit-transform-origin: left center;
    transform-origin: right center;
    pointer-events: none;
    -webkit-transition: opacity .2s, -webkit-transform .2s;
    transition: opacity .2s, transform .2s, -webkit-transform .2s;
}

.side-nav ul li a:hover .tooltips {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.side-nav .tooltips:before {
    position: absolute;
    top: 50%;
    right: -3px;
    margin-block-start: -3px;
    content: "";
    display: inline-block;
    border-block-start: 3px solid transparent;
    border-inline-start: 3px solid #3e416d;
    border-block-end: 3px solid transparent;
}

/* chenge to white color if .uk-light */
.uk-light.side-nav .logo i,
.uk-light.side-nav ul li a {
    color: white
}

/* simplebar scrollbar */
.side-menu-slide-content .simplebar-vertical .simplebar-scrollbar:before {
    background: #b6babf;
}

/* accordion */
.side-menu-slide-content .uk-accordion li {
    margin-block-start: 0
}

.side-menu-slide-content .uk-accordion-content {
    border-inline-end: 5px solid #9ac9d5;
    margin-block-start: 0
}

.side-menu-slide-content .uk-accordion-title::after {
    margin-inline-start: 12px;
}

.side-menu-slide-content .uk-accordion-title::before {
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Feather-Icons";
    content: "\e930";
    background-image: none !important;
    color: rgba(0, 0, 0, 0.54);
}

.side-nav .uk-drop {
    width: 250px;
    margin-inline-end: 11px;
}

.mobile-header {
    display: none;
}

@media (max-width: 768px) {
    .page-content {
        margin-inline-end: -0px !important;
    }

    .page-content-inner {
        padding: 15px;
    }

    .side-nav {
        margin-inline-end: -70px
    }

    .mobile-active .side-nav {
        margin-inline-end: 0
    }

    .side-overly {
        position: fixed;
        display: none;
        width: 100%;
        top: 0;
        z-index: 1;
        height: 100%;
        background: rgba(0, 0, 0, 0.25);
    }

    .mobile-active .side-overly {
        display: inline;
    }

    /* header mobile */
    .mobile-header {
        display: block;
        background-color: white;
        box-shadow: 0px 2px 6px 0px #00000017;
        z-index: 1;
        padding: 4px 13px;
        height: 50px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo .logo-flip {
        display: none
    }

    /* tragger */
    .btn-mobile {
        border-radius: 5px;
        background: #ffffff;
        width: 40px;
        height: 40px;
        position: relative;
    }

    .btn-mobile::before {
        font-family: "Feather-Icons";
        font-size: 22px;
        content: '\e98f';
        line-height: 30px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
    }

    .mobile-active .btn-mobile::before {
        content: '\ea02';
    }

    .mobile-active .btn-mobile {
        /* position: absolute; */
        z-index: 100;
        border-radius: 100%;
        background: #f3f5f8;
    }

    .mobile-active.menu-small .btn-mobile,
    .mobile-active.menu-expand .btn-mobile {
        left: 70px;
    }

    .mobile-active.menu-expand-active .btn-mobile {
        left: 250px;
    }

    .mobile-header .logo {
        display: flex;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        font-size: 20px;
        align-items: center;
    }

    .mobile-header .logo i {
        display: inline-block;
        margin-inline-start: 8px;
    }
}

/* ---------------------------------- */
/* header widget menu icon 
------------------------------------- */
.header-widget {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-widget .header-widget-icon,
.header-widget .header-span {
    align-items: center;
    border: 1px solid transparent;
    font-weight: 400;
    padding: 8px;
    white-space: nowrap;
    margin-inline-end: 6px;
    position: relative;
    border-radius: 50%;
    color: #3e416d;
}

/* for horizontal layout */
.header .header-widget-icon {
    color: #b0b2be;
}

.uk-light .header-widget .header-widget-icon {
    color: rgba(255, 255, 255, 0.7)
}

.uk-light .header-widget .header-widget-icon:hover {
    color: white !important
}

.header-widget .header-widget-icon i {
    position: relative;
    text-align: center;
    flex: 1;
    font-size: 28px;
    padding: 0 !important;
    display: block;
}

.header-widget .header-widget-icon span {
    position: absolute !important;
    display: block;
    top: 2px;
    margin-inline-end: -10px;
    font-weight: 700;
    height: 16px;
    width: 16px;
    line-height: 15px;
    text-align: center;
    color: #fff;
    font-size: 10px;
    background-color: #ec5252;
    border-radius: 50%;
    padding: 0;
    text-align: center;
    right: 3px;
    top: 3px;
}

.header-widget .header-widget-icon:not(.profile-icon):hover,
.header-widget .header-widget-icon:not(.profile-icon):focus {
    /* background: rgba(20, 23, 28, .05); */
    /* border-color: rgba(20, 23, 28, .05); */
    color: #343767;
}

.header-widget .header-widget-icon.btn-my-courses {
    border-radius: 5px;
    padding: 6px 11px;
    font-weight: 600;
    color: #b0b2be;
}


@media (max-width: 640px) {
    .header-widget {
        width: 100%;
        justify-content: space-around;
        /* display: none; */
        /* background: whitesmoke; */
        padding: 6px 0;
        /* margin-block-start: -18px; */
        margin-block-end: 13px;
    }

    .is-active.header-widget {
        display: inline-flex;
    }

    .header-widget .header-widget-icon {
        margin-inline-end: 0px;
        padding-block-start: 14px;
        color: #343767 !important;
    }

    /* for horizontal layout  */
    .header .header-widget-icon {
        color: white !important;
    }

    .header-widget .header-widget-icon i {
        font-size: 22px;
    }

    .header-profile-icon {
        width: 35px !important;
    }

    .header-widget .header-widget-icon.btn-my-courses {
        display: none !important
    }
}

/* ---------------------------------- */
/* Dropdown Notification box on header
------------------------------------- */
.dropdown-notifications {
    width: 355px;
    border-radius: 4px;
    padding: 0 !important;
}

.dropdown-notifications.large {
    width: 420px;
}

.dropdown-notifications.small {
    width: 230px;
}

.header-widget .dropdown-notifications:before {
    content: "";
    position: absolute;
    left: 8px;
    top: -13px;
    width: 0;
    height: 0;
    border-inline-start: 10px solid transparent;
    border-inline-end: 10px solid transparent;
    border-block-end: 13px solid #e8e9eb;
    border-color: transparent transparent #eaeaea transparent;
    top: -13px;
    border-inline-start: 10px solid transparent;
    border-inline-end: 10px solid transparent;
    border-block-end: 13px solid #e8e9eb;
    border-color: transparent transparent #eaeaea transparent;
}

.dropdown-notifications-headline {
    padding: 12px 20px;
    line-height: 24px;
    border-block-end: 1px solid #e6e6e6;
    color: #29303b;
}

.dropdown-notifications-headline h4 {
    display: inline-block;
    margin-block-end: 0;
    font-size: 14.4px;
    font-weight: 600;
    color: #666 !important;
}

.dropdown-notifications-headline a {
    float: left;
    position: relative;
    border-radius: 4px;
    height: 32px;
    text-align: center;
    line-height: 36px;
    top: -4px;
    left: -8px;
    color: #888;
    transition: 0.25s;
    outline: 0;
    border: 0;
    font-size: 16px;
    background: transparent !important;
}

button.mark-as-read:hover {
    background-color: #f2f2f2 !important;
    color: #888;
}

.dropdown-notifications-content {
    display: block;
    width: 100%;
    max-height: 315px !important;
}

.dropdown-notifications-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown-notifications-content ul li {
    border-block-end: 1px solid #f3f3f3;
    transition: 0.25s;
    margin-inline-start: 0;
    position: relative;
}

.dropdown-notifications-content ul li:last-child {
    border-block-end: 1px solid transparent;
}

.dropdown-notifications-content ul li:hover,
.notifications-not-read {
    background-color: #f7f8fa;
}

.dropdown-notifications-content ul li a {
    display: flex !important;
    flex-wrap: wrap;
    color: #666 !important;
    position: relative;
    padding: 16px 20px;
}

.dropdown-notifications-content .notification-image {
    height: auto;
    max-width: 105px;
    display: inline-block;
    text-align: center;
    color: #a0a0a0;
    transition: 0.25s;
    position: relative;
}

.dropdown-notifications-content .notification-image img {
    border-radius: 5px;
}

.dropdown-notifications-content .notification-image,
.dropdown-notifications-content .notification-text {
    flex: 1;
}

.notification-text,
.dropdown-notifications-content .notification-text {
    padding-inline-start: 16px;
    padding-inline-end: 5px;
    display: inline-block;
    line-height: 23px;
    font-size: 13.7px;
}

.dropdown-notifications-content .notification-text .time-ago {
    font-size: 12.7px;
    color: #a0a0a0;
}

.dropdown-notifications-content .notification-text.notification-msg-text .time-ago {
    position: absolute;
    top: 14px;
    display: inline-block;
    left: 16px;
    font-size: 11.5px;
}

.dropdown-notifications-content .notification-avatar {
    height: 42px;
    width: 42px;
    max-width: 42px;
    display: inline-block;
    border-radius: 50%;
    overflow: visible;
    align-self: flex-start;
}

.dropdown-notifications-content .notification-icon {
    font-size: 22px;
    height: 37px;
    width: 37px;
    padding: 0;
    max-width: 40px;
    display: inline-block;
    background-color: #f2f2f2;
    border-radius: 10px;
    line-height: 42px;
    text-align: center;
    color: white;
    transition: 0.25s;
    position: relative;
}

.dropdown-notifications-content .notification-icon i {
    position: relative;
}

.dropdown-notifications-content .notification-avatar img {
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
    border-radius: 50%;
}

.dropdown-notifications-content .notification-msg-text p {
    display: inline-block;
    line-height: 23px;
    font-size: 14px;
    margin: 4px 0;
}

.dropdown-notifications-footer {
    background: #f7f8fa;
    height: 51px;
    display: flex;
    justify-content: center;
    border-block-start: 1px solid #ebeef3;
    border-radius: 0 0 4px 4px;
}

.dropdown-notifications-footer a {
    color: #007791 !important;
    display: block;
    font-size: 13px;
    font-weight: 600;
    padding: 16px 15px;
    width: 100%;
    text-align: center;
}

/* customize scrollbar */
.dropdown-notifications-content .simplebar-scrollbar {
    right: 4px !important;
}

.dropdown-notifications-content .simplebar-scrollbar:before {
    background-color: #d0d0d0;
}

/* my course dropdown */
.my-courses-dropdown:before {
    display: none
}

.my-courses-dropdown .course-title {
    font-weight: bolder;
    display: block;
}

.my-courses-dropdown .course-number {
    font-size: 13px;
}

.my-courses-dropdown .course-instructor {
    color: #929292;
    font-size: 13px;
}

.my-courses-dropdown .course-progressbar {
    margin-block-start: 3px;
}

/* header search box */
.searchbox {
    padding: 6px 19px;
    width: 100%;
    margin-inline-start: 20px;
    min-width: 220px;
    background: #f2f3f5;
    /* border: 2.4px solid rgba(20, 23, 28, .05); */
    border-radius: 36px;
    position: relative;
    /* border-color: #b2b4c0; */
}

.uk-light .searchbox {
    background-color: rgba(255, 255, 255, 0.0784313725490196);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.searchbox .uk-search-input {
    background: rgb(243, 243, 243) !important;
    background: transparent !important;
    font-weight: 600;
}

.searchbox .btn-searchbox {
    position: absolute;
    left: 3px;
    border: 0;
    background: transparent;
}

.searchbox .btn-searchbox::after {
    font-family: "Feather-Icons";
    position: absolute;
    text-align: center;
    content: "\e9c1";
    color: darkgrey;
    z-index: 2;
    line-height: 29px;
    left: 10px;
    font-weight: 700;
    font-size: 18px;
}

.dropdown-search {
    border-radius: 4px;
    padding: 0 !important;
    width: 280px !important;
    margin-inline-end: -22px;
}

/* dropdown-search Nav */
ul.dropdown-search-list .list-title {
    transition: 0.3s;
    font-size: 13px;
    font-weight: bold;
    color: #9799a2;
    padding: 7px 14px;
    background: #f5f6f7;
    border-block-end: 1px solid #e9eaed;
}

ul.dropdown-search-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-block-end: 6px;
}

ul.dropdown-search-list li {
    margin: 0;
    padding: 0;
    display: block !important;
}

ul.dropdown-search-list li a {
    display: block;
    font-size: 14px;
    transition: 0.3s;
    color: #9799a2;
    padding: 7px 18px;
    /* font-weight: 600; */
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

ul.dropdown-search-list li a:hover {
    background-color: #f0f5fd;
    color: #2f3152;
}

ul.dropdown-search-list .menu-divider {
    margin: 4px 0;
    border: .3px solid rgba(222, 223, 224, .45);
}

/* header profile icon */
.profile-icon {
    padding: 0 !important;
    margin-inline-end: 14px !important;
}

.header-profile-icon {
    width: 37px;
    padding: 0 !important;
    border-radius: 100%;
    position: relative;
}

.header .header-profile-icon {
    width: 52px;
}

/* User Menu Small Nav */
ul.dropdown-user-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 6px 0px;
}

ul.dropdown-user-menu li {
    margin: 0;
    padding: 0;
    display: block !important;
}

ul.dropdown-user-menu li a {
    display: flex;
    font-size: 13px;
    transition: 0.3s;
    color: #9799a2;
    padding: 7px 17px;
    font-weight: 600;
    align-items: center;
}

ul.dropdown-user-menu li a:hover {
    background-color: #f0f5fd;
    color: #2f3152;
}

ul.dropdown-user-menu li a i {
    font-size: 19px;
    position: relative;
    top: 1px;
    margin-inline-start: 7px;
    -webkit-font-smoothing: antialiased;
    transition: 0.3s;
}

ul.dropdown-user-menu .menu-divider {
    margin: 4px 0;
    border: .3px solid rgba(222, 223, 224, .45);
}

/* dropdown User Details */
.dropdown-user-details {
    display: flex;
    padding: 21px 16px;
    padding-block-end: 9px;
    border-block-end: 1px solid #e6e6e6;
}

/* Avatar */
.dropdown-user-avatar {
    display: inline-block;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    position: relative;
}

.dropdown-user-avatar img {
    width: 100%;
    display: inline-block;
    border-radius: 50%;
    image-rendering: -webkit-optimize-contrast;
}

.dropdown-user-name {
    line-height: 20px;
    padding: 2px 0 0 15px;
    width: 100%;
    padding-block-end: 8px;
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.dropdown-user-details span {
    display: block;
    font-size: 13.7px;
    color: #888;
    font-weight: 500;
}

/* button option menu  */
.btn-option {
    position: absolute !important;
    top: 8px;
    right: 4px;
    font-size: 21px;
    padding: 5px 3px !important;
}

/* dropdown option menu */
.dropdown-option-nav {
    padding: 0 !important;
}

.dropdown-option-nav:before {
    content: "";
    position: absolute;
    right: 8px;
    top: -13px;
    width: 0;
    height: 0;
    border-inline-start: 8px solid transparent;
    border-inline-end: 7px solid transparent;
    border-block-end: 10px solid #e8e9eb;
    border-color: transparent transparent #eaeaea transparent;
    top: -10px;
}

.uk-dropdown-top-right.dropdown-option-nav:before {
    right: 5px;
    top: -13px;
    border-block-end: 0;
    top: auto;
    bottom: -10px;
    border-inline-start: 10px solid transparent;
    border-inline-end: 10px solid transparent;
    border-block-start: 10px solid #d4d4d4;
}

.dropdown-option-nav ul {
    list-style: none;
    margin: 0;
    padding: 6px 0px;
    position: relative;
}

.dropdown-option-nav ul li {
    margin: 0;
    padding: 0;
    display: block !important;
}

.dropdown-option-nav .divider-line {
    margin: 4px 0;
    border: .3px solid rgba(222, 223, 224, .45);
}

.dropdown-option-nav ul li span {
    display: flex;
    align-items: center;
    font-size: 13px;
    transition: 0.3s;
    color: #9799a2;
    padding: 9px 14px;
}

.dropdown-option-nav ul li>span:hover {
    background-color: #f0f5fd;
}

.dropdown-option-nav ul li>span i {
    font-size: 19px;
    position: relative;
    top: 1px;
    margin-inline-end: 7px;
    -webkit-font-smoothing: antialiased;
    transition: 0.3s;
}

.dropdown-option-nav ul li>span:hover {
    color: #2f3152;
}

@media (max-width: 640px) {

    .user-menu .dropdown-notifications,
    .dropdown-notifications {
        width: 100% !important;
        margin: auto;
        margin: auto;
        margin: auto;
        /* right: 10px !important; */
        margin: auto;
        left: 0 !important;
        margin: auto;
        max-width: 400px;
        top: 56px !important;
        margin-block-start: 0 !important;
    }

    .dropdown-notifications:before,
    .dropdown-option-nav:before {
        display: none
    }
}

@media (max-width: 420px) {

    /*.user-menu .dropdown-notifications */
    .dropdown-notifications {
        width: 100% !important;
        margin: auto;
        right: -100px !important;
        margin: auto;
        left: 0 !important;
        margin: auto;
        max-width: 360px;
        top: 60px !important;
        /* min-width: 200px; */
    }

    .dropdown-notifications-content .notification-text .time-ago {
        font-size: 13px;
    }

    .btn-option {
        top: -4px;
        right: -5px;
        padding: 5px 3px;
    }
}

/* ---------------------------------- */
/* Navigation for horizontal layout

------------------------------------- */
#navigation {
    margin-inline-end: 10px;
}

#navigation ul {
    padding: 0;
    margin: 0;
}

* #navigation ul li {
    display: inline-block;
}

#navigation ul li {
    position: relative;
    float: right;
    /* margin: 0; */
    padding: 0;
}

#navigation ul>li>a {
    color: #b0b2be;
    transition: 0.1s ease-in-out;
    transition-property: color, background-color;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    line-height: 70px;
    padding: 0 13px;
    font-size: 17px;
    font-weight: 600;
}

#navigation li>a:hover,
#navigation li .nav-active {
    color: #3e416d;
}

.uk-light #navigation ul>li>a {
    color: rgba(255, 255, 255, 0.77);
}

.uk-light#navigation li>a:hover,
.uk-light#navigation li .nav-active {
    color: white !important;
}

#navigation ul>li>a i {
    padding-inline-end: 7px;
    right: 0;
}

#navigation ul li ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: 9px;
    padding: 0;
    z-index: 99999;
}

#navigation ul ul li {
    float: none;
}

#navigation ul ul li a {
    color: #b0b2be !important;
    display: block;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

#navigation ul ul li a:hover {
    background-color: #f0f5fd;
    color: #2f3152 !important;
}

#navigation ul ul ul {
    top: 0;
    right: 100%;
    margin: 0 15px 0 0;
}

#navigation ul ul {
    margin: 0;
}

#navigation ul ul ul {
    pointer-events: none;
}

#navigation ul ul li:hover>ul {
    pointer-events: all;
}

#navigation ul ul ul:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 100%;
    left: -15px;
    top: 0;
    opacity: 0;
}

#navigation ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* if the header is transparent chenge the navigation link  to light */
.uk-light #navigation li .nav-item {
    color: rgba(255, 255, 255, 0.69)
}

.uk-light #navigation>li>.nav-item:hover,
.uk-light #navigation>li>.nav-active {
    color: white;
}

#navigation .angle-right:after {
    content: '\f105';
    font-family: "Font Awesome ";
    position: absolute;
    font-size: 16px;
    color: #bbb;
    opacity: 1;
    right: 25px;
}

/* Indicator Arrow */
.uk-navbar-nav li a:after,
.uk-navbar-nav ul ul li a:after,
#navigation ul li a:after,
#navigation ul ul li a:after {
    font-family: "Feather-Icons";
    opacity: 0.5;
    font-size: 12px;
}

.uk-light .uk-navbar-nav li a:after,
.uk-light #navigation ul li a:after {
    opacity: 1
}

.uk-navbar-nav li a:after,
#navigation ul li a:after {
    content: '\e92e';
    padding-inline-end: 7px;
}

.uk-navbar-nav ul li a:after,
#navigation ul ul li a:after {
    content: '\e92f';
    position: absolute;
    color: #bbb;
    opacity: 1;
    left: 17px;
    font-size: 16px;
}

.uk-navbar-nav ul li a:only-child:after,
.uk-navbar-nav ul ul li a:only-child:after,
#navigation ul li a:only-child:after,
#navigation ul ul li a:only-child:after {
    content: '';
    display: none;
}

/* Dropdown Styles
------------------------------------- */
#navigation ul ul {
    background-color: #fff;
    box-shadow: 0px 2px 7px -1px rgba(0, 0, 0, 0.06);
    border-radius: 7px;
}

#navigation ul ul li {
    border-radius: 4px;
}

#navigation ul ul li:last-child {
    border-block-end: none;
}

#navigation ul li:hover ul a,
#navigation ul ul a {
    padding: 7px 35px 7px 20px;
    line-height: 26px;
}

#navigation ul ul:after {
    content: "";
    position: absolute;
    right: 25px;
    top: -7px;
    width: 0;
    height: 0;
    border-inline-start: 7px solid transparent;
    border-inline-end: 7px solid transparent;
    border-block-end: 7px solid #ffffff;
}

body #navigation ul ul {
    padding: 9px 0;
    box-sizing: border-box;
    margin-block-start: 12px;
    box-shadow: 0px 2px 9px -3px #0000002b;
}

body #navigation ul ul ul {
    margin-block-start: 0;
}

#navigation ul ul ul:before {
    width: calc(100% + 15px);
    left: -15px;
}

#navigation ul ul li {
    width: 215px;
}

#navigation ul ul li:hover {
    border-radius: 0;
}

#navigation ul ul li:first-child {
    border-radius: 4px 4px 0 0;
}

#navigation ul ul li:last-child {
    border-radius: 0 0 4px 4px;
}

#navigation ul ul {
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
    transform: translate3d(0, 15px, 0);
}

#navigation ul ul ul {
    transform: translate3d(15px, 0, 0);
}

#navigation ul li ul {
    z-index: 10;
}

#navigation ul li:hover ul {
    z-index: 20;
}

#navigation ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

#navigation ul ul li {
    margin: 0;
    font-size: 14.6px;
}

/* nav course dropdown */
#navigation ul ul.nav-large {
    width: 446px;
    padding: 5px;
}

.nav-courses li a {
    padding: 10px 40px 10px 50px !important;
    border-radius: 7px;
}

.nav-courses li a i {
    left: 16px;
    top: 11px !important;
    font-size: 22px !important;
    position: absolute !important;
    bottom: 12px;
    display: block;
}

@media (max-width: 1099px) {
    .dropdown-nav li a i {
        display: none
    }

    .course-path-info ul {
        column-count: 1;
    }
}

/* ---------------------------------- */
/* mmenu.js - mobile menu
------------------------------------- */
.mm-hidden {
    display: none !important
}

.mm-wrapper {
    overflow-x: hidden;
    position: relative
}

.mm-menu {
    box-sizing: border-box;
    background: inherit;
    display: block;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0
}

.mm-panels,
.mm-panels>.mm-panel {
    background: inherit;
    border-color: inherit;
    box-sizing: border-box;
    margin: 0;
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    z-index: 0
}

.mm-panels {
    overflow: hidden
}

.mm-panel {
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left
}

.mm-panel.mm-opened {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-panel.mm-subopened {
    -webkit-transform: translate(-30%, 0);
    -ms-transform: translate(-30%, 0);
    transform: translate(-30%, 0);
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0)
}

.mm-panel.mm-highest {
    z-index: 1
}

.mm-panel.mm-noanimation {
    -webkit-transition: none !important;
    transition: none !important
}

.mm-panel.mm-noanimation.mm-subopened {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-panels>.mm-panel {
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 20px
}

.mm-panels>.mm-panel.mm-hasnavbar {
    padding-block-start: 40px
}

.mm-panels>.mm-panel:not(.mm-hidden) {
    display: block
}

.mm-panels>.mm-panel:after,
.mm-panels>.mm-panel:before {
    content: '';
    display: block;
    height: 20px
}

.mm-vertical .mm-panel {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important
}

.mm-listview .mm-vertical .mm-panel,
.mm-vertical .mm-listview .mm-panel {
    display: none;
    padding: 10px 0 10px 10px
}

.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after,
.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after {
    border-color: transparent
}

.mm-vertical li.mm-opened>.mm-panel,
li.mm-vertical.mm-opened>.mm-panel {
    display: block
}

.mm-listview>li.mm-vertical>.mm-next,
.mm-vertical .mm-listview>li>.mm-next {
    box-sizing: border-box;
    height: 40px;
    bottom: auto
}

.mm-listview>li.mm-vertical.mm-opened>.mm-next:after,
.mm-vertical .mm-listview>li.mm-opened>.mm-next:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    right: 19px
}

.mm-btn {
    box-sizing: border-box;
    width: 40px;
    height: 50px;
    position: absolute;
    top: 0;
    z-index: 1
}

.mm-clear:after,
.mm-clear:before,
.mm-close:after,
.mm-close:before {
    content: '';
    border: 2px solid transparent;
    display: block;
    width: 5px;
    height: 5px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.mm-clear:before,
.mm-close:before {
    border-inline-end: none;
    border-block-end: none;
    right: 18px
}

.mm-clear:after,
.mm-close:after {
    border-inline-start: none;
    border-block-start: none;
    right: 25px
}

.mm-next:after,
.mm-prev:before {
    content: '';
    border-inline-start: 2px solid transparent;
    border-block-start: 2px solid transparent;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
}

.mm-prev:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(135deg);
    left: 5px;
    right: auto;
}

.mm-next:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(-43deg);
    left: 23px;
    right: auto;
}

.mm-navbar {
    border-block-end: 1px solid;
    border-color: inherit;
    text-align: center;
    line-height: 30px;
    height: 50px;
    padding: 0 40px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.mm-navbar>* {
    display: block;
    padding: 10px 0
}

.mm-navbar a,
.mm-navbar a:hover {
    text-decoration: none
}

.mm-navbar .mm-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.mm-navbar .mm-btn:first-child {
    right: 0;
}

.mm-navbar .mm-btn:last-child {
    text-align: right;
    right: 0
}

.mm-panel .mm-navbar {
    display: none
}

.mm-panel.mm-hasnavbar .mm-navbar {
    display: block;
    background-color: #262626;
}

.mm-listview,
.mm-listview>li {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0
}

.mm-listview {
    font: inherit;
    font-size: 14px;
    line-height: 20px
}

.mm-listview a,
.mm-listview a:hover {
    text-decoration: none
}

.mm-listview>li {
    position: relative
}

.mm-listview>li,
.mm-listview>li .mm-next,
.mm-listview>li .mm-next:before,
.mm-listview>li:after {
    border-color: inherit
}

.mm-listview>li {
    border-block-end: 1px solid #404040;
}

.mm-listview>li,
.mm-listview>li>span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: inherit;
    display: block;
    padding: 15px 22px 15px 23px !important;
    margin: 0;
}

.mm-listview>li:not(.mm-divider):after {
    content: '';
    border-block-end-width: 1px;
    border-block-end-style: solid;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.mm-listview>li:not(.mm-divider):after {
    left: 20px
}

.mm-listview .mm-next {
    background: rgba(3, 2, 1, 0);
    width: 50px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2
}

.mm-listview .mm-next:before {
    content: '';
    border-inline-start-width: 1px;
    border-inline-start-style: solid;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0
}

.mm-listview .mm-next+a,
.mm-listview .mm-next+span {
    margin-inline-start: 50px
}

.mm-listview .mm-next.mm-fullsubopen {
    width: 100%
}

.mm-listview .mm-next.mm-fullsubopen:before {
    border-inline-start: none
}

.mm-listview .mm-next.mm-fullsubopen+a,
.mm-listview .mm-next.mm-fullsubopen+span {
    padding-inline-end: 0px;
    margin-inline-start: 0;
}

.mm-panels>.mm-panel>.mm-listview {
    margin: 20px -20px
}

.mm-panels>.mm-panel>.mm-listview:first-child,
.mm-panels>.mm-panel>.mm-navbar+.mm-listview {
    margin-block-start: -10px;
}

.mm-menu {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mm-menu .mm-navbar a,
.mm-menu .mm-navbar>* {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before {
    border-color: rgba(255, 255, 255, 0.8);
}

.mm-menu .mm-listview {
    border-color: #2a2a2a
}

.mm-menu .mm-listview>li .mm-next:after {
    border-color: rgba(255, 255, 255, 0.8);
}

.mm-menu .mm-listview>li a:not(.mm-next) {
    -webkit-tap-highlight-color: rgba(255, 255, 255, .5);
    tap-highlight-color: rgba(255, 255, 255, .5)
}

.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu .mm-listview>li.mm-selected>span {
    background: rgba(255, 255, 255, .05)
}

.mm-menu .mm-listview>li {
    transition: 0.2s;
}

.mm-menu .mm-listview>li:hover {
    background: rgba(255, 255, 255, .03)
}

.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel,
.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
    background: rgba(0, 0, 0, .05)
}

.mm-menu .mm-divider {
    background: rgba(0, 0, 0, .05)
}

.mm-page {
    box-sizing: border-box;
    position: relative;
    top: -40px;
}

.mm-slideout {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    z-index: 1
}

html.mm-opened {
    overflow-x: hidden;
    position: relative
}

html.mm-blocking {
    overflow: hidden
}

html.mm-blocking body {
    overflow: hidden
}

html.mm-background .mm-page {
    background: inherit
}

#mm-blocker {
    background: rgba(3, 2, 1, 0);
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2
}

html.mm-blocking #mm-blocker {
    display: block
}

.mm-menu.mm-offcanvas {
    z-index: 0;
    display: none;
    position: fixed
}

.mm-menu.mm-offcanvas.mm-opened {
    display: block
}

.mm-menu.mm-offcanvas.mm-no-csstransforms.mm-opened {
    z-index: 10
}

.mm-menu.mm-offcanvas {
    width: 80%;
    min-width: 140px;
    max-width: 440px
}

html.mm-opening .mm-menu.mm-opened~.mm-slideout {
    -webkit-transform: translate3d(-80%, 0, 0);
    -ms-transform: translate3d(-80%, 0, 0);
    transform: translate3d(-80%, 0, 0);
    -webkit-transform: translate3d(-80%, 0, 0);
    transform: translate3d(-80%, 0, 0);
}

@media all and (max-width: 175px) {
    html.mm-opening .mm-menu.mm-opened~.mm-slideout {
        -webkit-transform: translate(140px, 0);
        -ms-transform: translate(140px, 0);
        transform: translate(140px, 0);
        -webkit-transform: translate3d(140px, 0, 0);
        transform: translate3d(140px, 0, 0);
    }
}

@media all and (min-width: 550px) {
    html.mm-opening .mm-menu.mm-opened~.mm-slideout {
        -webkit-transform: translate(440px, 0);
        -ms-transform: translate(440px, 0);
        transform: translate(440px, 0);
        -webkit-transform: translate3d(440px, 0, 0);
        transform: translate3d(440px, 0, 0)
    }
}

.mm-sronly {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important
}

em.mm-counter {
    font: inherit;
    font-size: 14px;
    font-style: normal;
    text-indent: 0;
    line-height: 20px;
    display: block;
    margin-block-start: -10px;
    position: absolute;
    left: 45px;
    top: 50%;
}

em.mm-counter+a.mm-next {
    width: 90px
}

em.mm-counter+a.mm-next+a,
em.mm-counter+a.mm-next+span {
    margin-inline-start: 90px
}

em.mm-counter+a.mm-fullsubopen {
    padding-inline-start: 0
}

em.mm-counter+a.mm-fullsubopen+a,
em.mm-counter+a.mm-fullsubopen+span {
    padding-inline-end: 90px
}

.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+a,
.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+span {
    padding-inline-start: 90px;
}

.mm-vertical>.mm-counter {
    top: 12px;
    margin-block-start: 0
}

.mm-vertical.mm-spacer>.mm-counter {
    margin-block-start: 40px
}

.mm-nosubresults>.mm-counter {
    display: none
}

.mm-menu em.mm-counter {
    background-color: rgba(0, 0, 0, 0.3);
    height: 20px;
    width: 20px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    line-height: 21px;
    font-size: 10px;
    font-weight: 600;
}

.mm-menu em.mm-counter {
    background-color: #66676b;
}

/* Trigger Styles */
.mmenu-trigger {
    height: 46px;
    width: 46px;
    display: none;
    position: relative;
    margin: 0;
    border-radius: 4px;
    cursor: pointer;
}

/* Hamburger Icon */
.hamburger {
    padding: 0;
    top: 7px;
    left: 12px;
    transform: scale(0.67);
    -moz-transform: scale(0.70) translateY(4px);
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger-box {
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-block-start: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 33px;
    height: 4px;
    background-color: #777676;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/* Media Queries Menu */
@media (max-width: 1099px) {

    /* Header Responsive Styles */
    #responsive {
        display: none;
    }

    .mmenu-trigger {
        display: inline-block !important;
    }

    .mmenu-trigger {
        top: 0px;
        margin-inline-start: 5px;
    }
}

/* Breadcrumbs */
#breadcrumbs {
    display: inline-block;
    border-radius: 5px;
    font-weight: 600;
    color: #062e69;
    font-size: 15px;
}

#breadcrumbs ul {
    margin: 0;
    padding: 0 8px 0px 0;
    line-height: 25px;
}

#breadcrumbs ul li a {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #15307d;
    font-weight: 500;
    opacity: .7;
}

#breadcrumbs ul li a:hover {
    color: #66676b;
}

.uk-light #breadcrumbs ul li a,
.uk-light #breadcrumbs ul {
    color: white;
}

.uk-light #breadcrumbs ul li:before {
    color: rgba(255, 255, 255, 0.63);
}

#breadcrumbs ul li {
    display: inline-block;
    list-style: none;
    margin: 0 0 0 2px;
    position: relative;
}

#breadcrumbs ul li:first-child:before {
    display: none;
}

#breadcrumbs ul li:first-child {
    margin-inline-end: 0;
}

#breadcrumbs ul li:before {
    content: "";
    display: inline-block;
    font-size: 11px;
    margin-inline-end: 4px;
    font-family: "Feather-Icons";
    font-weight: 700;
    transform: translate(0%, 5%);
    content: "\e92f";
}

#breadcrumbs ul li.home-icon a {
    opacity: 1;
    font-size: 24px;
    top: 4px;
    position: relative;
    line-height: 0;
    padding: 0;
    display: inline-block;
}

#breadcrumbs ul li.home-icon i {
    line-height: 0;
}

@media(max-width: 640px) {
    #breadcrumbs {
        display: none
    }
}

/* ---------------------------------- */
/* topbar for default layolut
------------------------------------- */
#topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    padding-block-end: 0;
    z-index: 99 !important;
}

@media(max-width: 640px) {
    #topbar {
        padding: 0
    }
}

/* ---------------------------------- */
/* Course details
------------------------------------- */
.course-details {
    margin: 0;
    padding-inline-end: 15px;
}

.course-details .container {
    padding: 0
}

.course-details h1 {
    margin-block-end: 10px;
    font-size: 30px;
}

.course-details p {
    font-size: 20.5px;
    line-height: 25px;
    color: #656565;
}

.course-details-info {
    margin: 4px 0;
}

ul.dropdown-user-menu li a ion-icon {
    margin-inline-end: 13px;
}

.course-details-info ul {
    display: flex;
    margin-block-start: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 15px;
}

.course-description-content h4 {
    font-weight: 600;
}

.course-description-content h4:not(:first-child) {
    margin-block-start: 28px;
    font-weight: 600
}

.course-details-sticky {
    top: 0;
    right: 0;
}

/* light color */
.uk-light .course-details p,
.uk-light .course-details-info ul li {
    color: var(--ion-color-tint) !important;
}

@media (max-width: 768px) {
    .course-details {
        margin: 0
    }

    .course-details h1 {
        font-size: 22px
    }

    .course-details-info {
        margin: 10px 0;
        margin-block-end: 0;
    }

    .course-details-info ul {
        display: block;
        flex-wrap: wrap;
    }

    .course-details-info {
        font-size: 15px;
    }

    .star-rating .star.half:after,
    .star-rating .star:before {
        font-size: 16px !important;
    }

    .star-rating .avg {
        font-size: 10px !important;
        line-height: 12px !important;
        padding: 5px 5px !important;
        margin-inline-start: 6px !important;
    }
}

.course-details-info ul li {
    margin-inline-start: 15px;
    color: #808080;
    display: block;
}

.course-details-info ul li:last-child {
    margin-inline-start: 0;
}

.course-details-info ul li .star-rating {
    top: -2px;
    position: relative;
}

.course-details-info ul li i {
    margin-inline-start: 3px;
    position: relative;
    top: 0;
}

.course-details-info a {
    color: #000;
    font-weight: 600;
}

.course-details-info a:hover {
    color: #66676b;
}

/* course description contetns */
.course-description-content h3:not(:first-child) {
    margin-block-start: 28px;
}

/* course info list */
.course-info-list {
    margin: 15px 0 0;
}

.course-info-list-single {
    display: flex;
    padding: 11px 10px 3px 9px;
    flex-wrap: nowrap;
    align-items: center;
    border-block-end: 1px solid #e6e6e6;
}

.course-info-list-single-icon {
    margin-inline-start: auto;
    color: #3e416d;
    font-size: 23px;
}

.course-info-list-single-label>* {
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
}

.btn-course-start {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #3e416d !important;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    align-items: center;
    display: block;
    /* width: 100%; */
    font-size: 1.1rem;
    line-height: 1.6;
    padding: .64rem 1.4rem;
    text-align: center;
    border: 2px solid #3e416d;
}

.btn-course-start:hover {
    background-color: #3e416d;
    color: white !important
}

.btn-course-start-2 {
    position: relative;
    display: inline-block;
    color: #3e416d;
    font-size: 22px;
    font-weight: 600;
}

.btn-course-start-2 i {
    font-size: 18px;
    font-weight: 700;
}

/* course-card-trailer in course resume page */
.course-card-trailer {
    /* margin-block-start: -300px !important; */
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    box-shadow: -12px 12px 21px -5px rgba(25, 42, 70, .13);
}

.course-resume-wrapper {
    margin-block-start: -65px;
    padding-block-start: 75px;
    padding-inline-end: 20px;
    padding-block-end: 40px;
    background-size: contain;
    background-image: url(../images/bg-shapes/course-dhashboard-bg-rtl.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
}

.night-mode .course-resume-wrapper {
    background-image: url(../images/bg-shapes/course-dhashboard-bg-dark-rtl.jpg);
}

.course-resume-wrapper .subnav {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 8px 0px;
    border-radius: 20px 0px 20px 20px;
    max-width: 750px;
    margin-block-start: 30px;
    padding-block-start: 6px;
    background: white;
    overflow: hidden;
}

.course-resume-wrapper .subnav i {
    display: none;
}

@media (max-width: 960px) {

    /* .course-details-wrapper {
  margin-block-start: -20px;
} */
    .course-card-trailer {
        margin-block-start: 0px !important;
    }

    .course-resume-wrapper {
        background-image: none;
        padding: 0;
        padding-block-end: 0px;
        padding-block-start: 90px;
        margin-block-end: 20px;
    }

    .course-resume-wrapper .subnav {
        margin-block-start: 23px;
        border-radius: 10px;
        margin-block-end: -18px;
    }

    .course-resume-wrapper .subnav span {
        display: none
    }

    .course-resume-wrapper .subnav i {
        display: block;
        font-size: 21px;
    }

    .btn-course-start-2 {
        font-size: 18px
    }
}

/* ---------------------------------- */
/* course curriculum list
------------------------------------- */
ul.course-curriculum-list {
    padding: 0;
    list-style: none;
}

.course-curriculum-list>li {
    display: block;
    padding: 14px 65px 14px 55px;
    line-height: 27px;
    font-size: 15.5px;
    font-weight: 600;
    position: relative;
    color: #666;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.course-curriculum-list>li:hover {
    background-color: #f9fafe;
}

.course-curriculum-list>li>a {
    padding: 3px 7px;
    margin-inline-start: 15px;
    border-radius: 4px;
    background-color: #4ed7a8;
    color: #fff;
    font-size: 13px;
}

.course-curriculum-list>li:before {
    transition: transform 0.4s cubic-bezier(.8, -.41, .19, 2.5);
    font-family: "unicons";
    position: absolute;
    right: 20px;
    text-align: center;
    width: 27px;
    height: 27px;
    line-height: 27px;
    content: "\eb1d";
    background: #474a58;
    color: white;
    border-radius: 100%;
    z-index: 2;
}

.course-curriculum-list li>span {
    font-size: 13px;
    font-weight: 600;
    color: #989898;
    position: absolute;
    left: 12px;
}

@media (max-width: 960px) {
    .course-curriculum-list>li {
        font-size: 13px;
        padding: 10px 54px 10px 50px;
    }

    .course-curriculum-list>li:before {
        left: 13px;
    }
}

/* ---------------------------------- */
/* course curriculum list accordion
------------------------------------- */
.course-curriculum>li {
    background-color: #fff;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .06) !important;
    border-radius: 6px !important;
    overflow: hidden;
}

.course-curriculum .uk-accordion-title {
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.54);
}

/* accordion indicator */
.course-curriculum .uk-accordion-title::before {
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Feather-Icons";
    content: "\e92e";
    background-image: none !important;
    color: rgba(0, 0, 0, 0.54);
    float: left;
    margin-inline-end: 0;
}

.course-curriculum .uk-open>.uk-accordion-title::before {
    transform: rotate(180deg);
    background-image: none !important;
}

.course-curriculum .uk-accordion-content {
    margin: 0;
}

@media (max-width: 960px) {
    .course-curriculum .uk-accordion-title {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* ---------------------------------- */
/* course faq accordion
------------------------------------- */
.course-faq>li.uk-open {
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0 4px 11px -4px rgba(0, 0, 0, 0.2);
}

.course-faq>li {
    overflow: hidden;
    margin-block-start: 0 !important;
}

.course-faq .uk-accordion-title {
    padding: 16px 20px;
    font-size: 17px;
    padding-inline-start: 3px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.54);
}

/* accordion indicator */
.course-faq .uk-accordion-title::before {
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Feather-Icons";
    content: "\e930";
    background-image: none !important;
    color: rgba(0, 0, 0, 0.54);
    float: right;
    margin-inline-end: 6px;
    margin-inline-start: 0;
}

.course-faq .uk-open>.uk-accordion-title::before {
    transform: rotate(90deg) !important;
    background-image: none !important;
}

.course-faq .uk-accordion-content {
    margin: 0;
    padding: 18px 20px;
    border-block-start: 1px solid #e4e4e4;
}

/* ---------------------------------- */
/* review summary
------------------------------------- */
.review-summary-title {
    font-size: 18px;
    font-weight: 600;
}

.review-summary-container,
.review-summary-rating-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.review-summary-avg .star-rating .star:before,
.review-summary-avg .star-rating .star.half:after {
    color: #666666;
}

.review-summary-avg {
    width: auto;
    align-items: center;
    flex-direction: column;
    margin-inline-end: 30px;
    display: flex;
    background: #f0f3fa;
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid #daebf9;
}

.review-summary-avg .avg-number {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    margin-block-end: 8px;
}

.review-summary-rating .review-summary-rating-wrap {
    align-items: center;
    margin-block-end: 2px;
}

.review-summary-rating,
.review-bars {
    flex: 1;
    min-width: 1px;
    align-items: center;
}

.review-bars .full_bar {
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 8px;
    background-color: #e2e2e2;
}

.review-bars .full_bar .bar_filler {
    position: absolute;
    top: -1px;
    left: 0;
    right: -1px;
    bottom: -1px;
    height: auto;
    background-color: #3e416d;
    border-radius: 8px;
}

.review-stars,
.review-avgs {
    width: auto;
    padding-inline-start: 15px;
}

.review-stars .star-rating .star:before {
    line-height: 15px;
}

@media (max-width: 768px) {
    .review-summary-title {
        font-size: 22px;
        font-weight: 600;
        margin: 0 0 10px;
    }

    .review-summary-container {
        display: inline;
    }

    .review-summary-avg {
        background: transparent;
        padding: 0;
        border: 0;
        flex-direction: row;
    }

    .review-summary-avg span {
        display: block;
    }

    .review-summary-avg .avg-number {
        font-size: 40px;
        margin-inline-start: 16px;
    }

    .review-summary-avg .review-star {
        display: none
    }

    .review-summary-rating .review-summary-rating-wrap {
        margin-block-end: 5px;
    }

    .review-bars .full_bar {
        height: 8px;
        border-radius: 2px;
    }
}

/* ---------------------------------- */
/* Comments
------------------------------------- */
.comments {
    margin: 40px 0px;
}

.comments ul {
    padding-inline-start: 0;
}

.comments ul li {
    display: block;
}

.comments ul li,
.comments ul li ul li,
.comments ul li ul li ul li,
.comments ul li ul li ul li {
    margin: 30px 0 0 0px;
}

.comments ul li ul {
    margin: 0 0 0 100px;
}

.comment-content {
    padding: 0 90px 0 0;
}

.comment-content p {
    margin: 3px 0 0 0;
    line-height: 26px;
    padding: 5px 0;
}

.comments ul li {
    position: relative;
}

.comment-content strong {
    padding-inline-end: 5px;
    color: #666;
}

.comment-content span {
    color: #888;
}

.comments-amount {
    color: #888;
    font-weight: 500;
    margin-inline-end: 8px;
}

.avatar {
    display: inline-block;
    padding: 0 0 0 17px;
    position: absolute;
    right: 0px;
    top: -5px;
}

.avatar img {
    max-width: 60px;
    border-radius: 50%;
}

.comment-by {
    width: 100%;
    padding-block-end: 8px;
    font-weight: 600;
    color: #333;
    font-size: 17px;
}

.comment-by .comment-stars {
    display: inline;
    line-height: 22px;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0px;
}

.comment-by h5 {
    margin: 0 0 7px 0;
}

.comment-by a.reply {
    transition: all 0.3s;
}

.comment-by a.reply {
    display: inline;
    background-color: rgba(62, 65, 109, 0.18);
    padding: 6px 15px;
    line-height: 22px;
    font-size: 14px;
    color: #3e416d;
    position: absolute;
    left: 0;
    top: 14px;
    border-radius: 4px;
}

.comment-by a.reply i {
    font-size: 12px;
    margin-inline-start: 1px;
}

.comment-by a.reply:hover {
    background-color: #3e416d;
    color: #fff;
}

.comment-by span {
    color: #888;
    font-weight: 500;
    margin: 0px 0 0 0;
    float: none;
    display: block;
    text-align: right;
    font-size: 13px;
}

.comment-footer {
    margin-block-start: 13px
}

.comment-footer span {
    font-size: 15px;
    margin-inline-start: 12px;
}

.comment-footer a {
    font-weight: 600;
    color: #989898;
    font-size: 12px;
}

.comment-footer a:hover {
    color: #656565;
}

.comment-footer button {
    background: #f0f4fa;
    border: 1px solid #dae7f9;
    padding: 4px 8px;
    border-radius: 4px;
    color: #333333;
    cursor: pointer;
    margin-inline-start: 4px;
    font-size: 11px;
}

@media (max-width: 768px) {

    /* Media Queries for Comments */
    .comments ul li ul {
        margin: 0;
    }

    .avatar {
        top: 3px;
    }

    .comment-content {
        color: #666;
        padding: 0 0 0 70px;
    }

    .avatar img {
        max-width: 50px;
        border-radius: 50%;
        top: 5px;
    }

    .comment-by {
        width: 100%;
        font-size: 17px;
    }

    .comment-stars .star-rating .star.half:after,
    .comment-stars .star-rating .star:before {
        color: #febe42;
        font-size: 14px !important;
    }

    .comment-by a.reply {
        /* position: relative; */
        margin: 10px 2px 0 0;
        top: 0;
        display: inline-block;
    }
}

/* ---------------------------------- */
/* course card   
------------------------------------- */
.course-card {
    background-color: #ffffff;
    box-sizing: border-box;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: -10px 10px 14px -5px rgba(25, 42, 70, .13);
}

.course-card-thumbnail {
    flex: 0 0 auto;
    max-width: none;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 150px;
}

.course-card-thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.course-card-thumbnail .item-tag {
    right: 16px;
    margin: 0;
    top: 15px;
}

.course-card span.catagroy {
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-block-end: 7px;
    border-radius: 4px;
}

.course-card-body {
    padding: 16px 17px;
}

.course-card-body .course-card-info {
    display: flex;
    justify-content: space-between;
}

.course-card h4 {
    color: #3e416d;
    font-weight: 600;
    margin-block-end: 5px;
    margin-block-start: 0;
    font-size: 17px;
    line-height: 24px;
    overflow: hidden;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.course-card p {
    font-weight: 500;
    font-size: 14px;
    margin: 0;
    color: #686f7a;
    line-height: 23px;
}

.course-card-footer {
    padding: 11px 15px;
    border-block-start: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px -16px;
    margin-block-start: 9px;
    margin-block-end: -15px;
    font-weight: 600;
}

.course-card-footer h5 {
    color: #909090;
    margin-block-end: 0;
    margin-block-start: 0;
    font-size: 12.8px;
    margin-inline-start: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.course-card-footer h5 i {
    margin-inline-start: 5px;
}

/*course-tags */
.course-catagory-tag {
    padding: 4px 9px;
    line-height: 12px;
    display: inline-block;
    position: absolute;
    top: 118px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 5px;
}

/* play button on hover course card image*/
.course-card-thumbnail .play-button-trigger {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../images/icon-play.svg) no-repeat;
    background-size: auto 50%;
    background-position: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 150ms ease-in-out;
    -moz-transition: opacity 150ms ease-in-out;
    -ms-transition: opacity 150ms ease-in-out;
    -o-transition: opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out;
    -webkit-transition: -webkit-transform 150ms ease-in-out;
    -moz-transition: -moz-transform 150ms ease-in-out;
    -o-transition: -o-transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out;
}

.course-card-thumbnail:hover .play-button-trigger,
.play-button-trigger.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/* course pgrressbar */
.course-progressbar {
    position: relative;
    width: 100%;
    height: 4px;
    /* margin-block-start: 3px; */
    border-radius: 8px;
    background-color: #e6e8ec;
}

.course-progressbar .course-progressbar-filler {
    position: absolute;
    top: -1px;
    left: 0;
    right: -1px;
    bottom: -1px;
    height: auto;
    background-color: #17d292;
    border-radius: 8px;
}

@media (max-width: 640px) {
    .course-card h4 {
        font-size: 17px;
    }

    .course-card p {
        font-size: 15px;
    }
}

/* ---------------------------------- */
/*   course card list
------------------------------------- */
.course-card-list.course-card {
    margin-block-end: 30px;
}

/* make small the rating stars */
.course-card-list.course-card .star-rating .star.half:after,
.course-card-list.course-card .star-rating .star:before {
    font-size: 18px;
}

.course-card-list.course-card .course-details-info ul li .star-rating {
    top: 4px;
}

.course-card-list.course-card .star-rating .avg {
    font-size: 12px;
    line-height: 12px;
    padding: 4px 6px;
    margin-inline-end: 5px;
}

/* episode-card */
.episode-card.course-card .course-card-body {
    padding: 10px 15px;
}

.episode-card.course-card .course-card-body h4 {
    font-size: 14px;
    line-height: 24px;
}

@media (max-width: 640px) {
    .course-card.course-card-list {
        margin-block-end: 13px !important
    }

    .course-card.course-card-list h4 {
        font-size: 16px !important;
        line-height: 20px !important;
    }

    .course-card.course-card-list p {
        font-size: 15px !important;
        line-height: 21px !important;
        height: 66px;
        overflow: hidden;
    }
}

@media (min-width: 640px) {
    .course-card-list.course-card {
        display: flex;
        border-radius: 0;
        border-block-end: 1px solid #eaeaea;
        padding-block-end: 20px;
        margin-block-end: 20px !important;
        box-shadow: none;
        background: transparent;
    }

    .course-card-list.course-card .course-card-thumbnail {
        width: 235px;
        height: 140px;
        border-radius: 8px;
    }

    .course-card-list.course-card .course-card-body {
        padding: 17px 20px;
        padding-block-start: 0;
        max-width: 654px;
    }

    .course-card-list.course-card h4 {
        font-size: 20px;
    }

    .course-card-list.course-card p {
        margin-block-end: 14px;
    }
}

/* .episode card */
.episode-card.course-card span.item-tag {
    padding: 1px 7px;
}

/* course card on small device */
@media (max-width: 640px) {
    .course-card {
        display: flex;
        border-radius: 0;
        border-block-end: 1px solid #eaeaea;
        padding-block-end: 13px;
        margin-block-end: 10px !important;
        box-shadow: none;
        background: transparent;
    }

    .course-card .course-card-thumbnail {
        width: 80px;
        height: 70px;
        border-radius: 5px;
        box-shadow: 0px 2px 7px -3px #0000001a;
    }

    .course-card .course-card-body {
        padding: 0 10px;
        flex: 1;
        min-width: 1px;
    }

    .course-card .course-card-body h4 {
        font-size: 14px;
        line-height: 20px;
    }

    .course-card .course-card-body p {
        font-size: 13px;
        line-height: 19px;
    }

    .course-card .course-card-footer {
        padding-block-start: 0;
        border: 0;
    }

    .course-card .course-card-footer h5 i {
        display: none
    }

    .course-card span.catagroy {
        font-size: 12px
    }

    .course-card .course-card-info {
        display: none !important;
    }

    .episode-card.course-card {
        display: inherit;
    }

    .episode-card.course-card .course-card-thumbnail {
        width: 100%;
        height: 170px;
    }

    .episode-card.course-card .course-card-body {
        padding: 11px 0;
        padding-block-end: 0;
        /* margin-block-end: 18px; */
    }

    .episode-card.course-card .course-card-body h4 {
        font-size: 14px;
    }

    .episode-card.course-card span.item-tag {
        padding: 0px 5px;
        font-size: 10px;
    }
}

/* course card grid */
.course-card-grid>* {
    padding-inline-start: 25px !important;
}

.course-card-grid {
    margin-inline-end: -25px !important;
}

.course-card-grid .uk-grid-margin {
    margin-block-start: 15px !important;
}

/* ---------------------------------- */
/*  coures grid slider
------------------------------------- */
.course-grid-slider {
    position: relative;
    padding-block-end: 16px;
}

@media (max-width: 960px) {
    .course-grid-slider>*>* {
        padding-inline-start: 25px !important;
    }

    .course-grid-slider>* {
        margin-inline-end: -25px !important;
    }

    .course-grid-slider {
        margin: 0 -15px;
        padding-inline-start: 15px;
    }

    .course-grid-slider ul li {
        width: 33%;
    }

    .course-grid-slider .course-card {
        display: block;
        border: 0;
        margin-block-end: 0 !important;
        padding-block-end: 0;
    }

    .course-grid-slider .course-card .course-card-thumbnail {
        width: 100%;
        height: 115px;
        border-radius: 5px;
        box-shadow: 0px 2px 7px -3px #0000001a;
    }

    .course-grid-slider .course-card .course-card-body {
        padding: 10px 0px;
    }
}

/* ---------------------------------- */
/*  course path card
------------------------------------- */
.course-path-card {
    background: white;
    overflow: hidden;
    border-radius: 5px;
    transition: 0.3s;
    position: relative;
    box-shadow: -10px 10px 14px -9px rgba(25, 42, 70, .13);
}

.course-path-card:hover {
    box-shadow: -10px 10px 14px -5px rgba(25, 42, 70, .13);
}

.course-path-card-contents {
    padding: 15px 20px;
    padding-block-start: 12px;
    position: relative;
}

.course-path-card-contents h3 {
    font-size: 17px;
    margin-block-end: 7px;
}

.course-path-card-contents p {
    color: #908d8d;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

.course-path-card-footer {
    padding: 10px 10px;
    background: #eaf9e9;
    background: white;
    padding: 10px 20px;
    border-radius: 0 0 13px 13px;
    border-block-start: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-path-card-footer h5 {
    color: #909090;
    margin-block-end: 0;
    margin-block-start: 0;
    font-size: 13px;
}

.course-path-info ul {
    column-gap: 50px;
    column-count: 3;
    -webkit-column-break-inside: avoid;
    padding-inline-start: 0;
}

.course-path-info ul li {
    padding-inline-start: 0;
    font-weight: 400;
    margin-block-end: 16px;
    font-size: 15px;
    list-style-type: disc;
    margin-inline-end: 18px;
}

@media screen and (max-width: 1024px) and (min-width: 641px) {
    .course-path-info ul {
        column-count: 2;
    }
}

@media screen and (max-width: 641px) {
    .course-path-info ul {
        column-count: 1;
    }
}

/* ---------------------------------- */
/* course path slider
------------------------------------- */
.path-wrap .course-grid-slider>*>* {
    padding-inline-end: 25px !important;
}

.path-wrap .course-grid-slider>* {
    margin-inline-end: -25px !important;
}

.path-wrap .course-card {
    border-radius: 7px;
}

.path-wrap .course-card-thumbnail {
    flex: 0 0 auto;
    max-width: none;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 120px;
}

.path-wrap .course-catagory-tag {
    display: none;
}

.path-wrap .course-card .uk-progress {
    height: 6px;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0px !important;
}

.path-wrap .course-card span.duration {
    background-color: rgba(62, 62, 62, 0.74);
    padding: 1px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: white;
    position: absolute;
    bottom: 7px;
    right: 8px;
}

.path-wrap .course-card-body {
    padding: 14px 13px;
}

.path-wrap .course-card.completed .course-card-body {
    border-block-start: 6px solid #62d76b;
}

.path-wrap .course-card-body h4 {
    font-size: 14.5px;
}

.path-wrap .course-card-body p {
    font-size: 13.5px;
    line-height: 20px;
}

.path-wrap .course-card-body span.completed-text {
    color: white;
    background: #62d76b;
    padding: 2px 10px;
    position: absolute;
    margin-block-start: -29px;
    left: 17px;
    border-radius: 10px;
    font-size: 12px;
    margin-inline-end: -4px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .path-wrap .course-card {
        border-radius: 0px;
    }
}

/* ---------------------------------- */
/* course path accordion
------------------------------------- */
.course-path-level>li {
    margin-block-start: 0 !important;
}

.course-path-level .uk-accordion-title {
    padding-block-end: 20px;
    padding-block-start: 15px;
    font-size: 19px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.54);
    border-block-end: 1px solid #ececec;
}

.course-path-level .uk-open .uk-accordion-title {
    border-block-end: 0;
}

/* accordion indicator */
.course-path-level .uk-accordion-title::before {
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Feather-Icons";
    content: "\e92f";
    background-image: none !important;
    color: rgba(0, 0, 0, 0.54);
    float: right;
    margin-inline-end: 6px;
    margin-inline-end: 0;
}

.course-path-level .uk-open>.uk-accordion-title::before {
    transform: rotate(90deg) !important;
    background-image: none !important;
}

.course-path-level .uk-accordion-content {
    margin: 0;
    padding: 17px 0;
    padding-block-start: 0;
}

@media only screen and (max-width: 960px) {
    .course-path-level .uk-accordion-title {
        padding-block-end: 17px;
        padding-block-start: 13px;
        font-size: 15px;
    }

    .course-path-level .uk-accordion-content {
        padding-block-start: 0
    }
}

/* course card resume */
li.slide-item.uk-active .course-card-resume {
    box-shadow: -10px 10px 14px -7px rgba(25, 42, 70, .13);
    background: white;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
}

.course-card-resume-thumbnail {
    flex: 0 0 auto;
    max-width: none;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    /* width: 100%; */
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    /* margin: 15px; */
}

.course-card-resume-body {
    padding: 12px;
    padding-block-end: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-card-resume h5 {
    margin-block-end: 5px;
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
    text-align: center;
    /* border-block-end: 2px solid #a7abbd;
    padding-block-end: 7px; */
    color: #6b6f81;
}

.course-card-resume span {
    font-weight: 600;
    color: #afafaf;
    font-size: 14px;
    display: block;
    margin-block-end: 5px;
}

/* coure progressbar in resume card */
.course-card-resume .course-progressbar {
    margin: 6px 0 0 -13px;
    margin-block-end: -10px;
    width: 113%;
    border-radius: 0px 0px 16px 16px;
    height: 6px !important;
}

@media (max-width: 768px) {
    .course-resume-grid-slider ul li {
        width: 205px;
        padding-inline-start: 15px;
    }
}

/* ---------------------------------- */
/* course-watch-page
------------------------------------- */
.course-watch-page {
    overflow: hidden;
}

.course-layouts {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: 0.3s;
    height: 100vh;
}

.course-header {
    width: 97%;
    max-width: 100%;
    transition: 0.3s;
    box-shadow: 0px 2px 6px 0px #00000017;
    padding: 20px 1.6%;
    padding-inline-start: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-header h4 {
    margin: 0;
    font-size: 20px;
}

.course-header .btn-back {
    margin-inline-start: 9px;
}

.course-header .btn-back i {
    display: block;
    padding: 8px 8px;
    margin-inline-start: 9px;
    font-size: 23px;
    border-radius: 100%;
    background: transparent;
    color: #dedede;
}

.course-header .btn-back i:hover,
.course-header .btn-back i:hover,
.course-header .btns:hover {
    background: rgba(255, 255, 255, 0.28);
}

.course-header .btn-back i::before {
    transition: transform 0.4s cubic-bezier(.8, -.41, .19, 2.5);
    font-family: "Feather-Icons";
    content: "\e930";
    border-radius: 100%;
    z-index: 2;
}

/* chenge the traiger when the sidebar collapsed */
.course-layouts.course-sidebar-collapse .course-header .btn-back i::before {
    content: "\e98f";
}

.course-header .btns {
    padding: 8px 8px;
    margin-inline-end: 9px;
    font-size: 23px;
    border-radius: 100%;
    background: transparent;
    color: #dedede;
}

/* video sidebar */
.course-sidebar {
    width: 25%;
    height: auto;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0px 2px 6px 0px #00000017;
    margin: 0;
    padding: 0;
    order: 1;
    z-index: 1;
    transition: 0.3s;
}

.course-sidebar-title {
    background: #f8fbff;
    width: 88.5%;
    padding: 0px 6%;
    display: flex;
    align-items: center;
    height: 65px;
}

.course-sidebar-title h3 {
    margin-block-end: 0;
    font-size: 1.1rem;
}

/* if toggle hidden sidebar */
.course-layouts.course-sidebar-collapse .course-sidebar {
    transition: 0.3s;
    width: 0;
}

.course-layouts.course-sidebar-collapse .course-sidebar .course-sidebar-title {
    display: none;
}

.course-sidebar-container {
    width: 100% !important;
    height: calc(99vh - 60px) !important;
}

ul.course-video-list {
    margin: 0 !important;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.course-video-list li>a {
    display: block;
    padding: 14px 55px 14px 60px;
    line-height: 26px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    color: #afafaf;
    max-width: 100%;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    white-space: nowrap;
}

.course-video-list li>a>span {
    font-size: 11px;
    font-weight: 300;
    color: #989898;
    position: absolute;
    left: 12px;
}

.course-video-list li:nth-child(2n) {
    background: #f0f5fd;
    background: #f8fbff;
}

.course-video-list li>a:before {
    transition: transform 0.4s cubic-bezier(.8, -.41, .19, 2.5);
    font-family: "Feather-Icons";
    position: absolute;
    right: 20px;
    text-align: center;
    width: 25px;
    height: 25px;
    top: 31%;
    line-height: 25px;
    content: "\e987";
    background: #474a58;
    background: #efefef;
    color: darkgrey;
    border-radius: 100%;
    z-index: 2;
}

.course-video-list li>a:after {
    content: '';
    width: 2px;
    height: 100%;
    top: -18px;
    z-index: 1;
    right: 33px;
    background: #e3e6ec00;
    position: absolute;
    transition: color 150ms ease-in, top 100ms ease-out;
}

.highlight-watched a:before {
    content: "\e9af" !important;
}

.highlight-watched .watched a,
.highlight-watched .watched.uk-active a {
    background: #e5f0ff !important;
    color: #3e416d !important;
}

.highlight-watched .watched a:before {
    background: #62d76b !important;
    content: "\f17b" !important;
    content: "\e92b" !important;
    color: white !important;
}

.highlight-watched .watched.uk-active a:before {
    background: #62d76b !important;
    content: "\e9a5" !important;
    color: white !important;
    /* box-shadow: 0 0 0 4px #4ece58 !important; */
}

.highlight-watched .watched a:after {
    background: #62d76b !important;
}

.video-list ul>li>a span {
    font-size: 13px;
    font-weight: 700;
    color: #989898;
    position: absolute;
    right: 12px;
}

/* ---------------------------------- */
/* courses filter list
------------------------------------- */
.course-video-list-section>li {
    overflow: hidden;
    margin-block-start: 0 !important;
}

.course-video-list-section .uk-accordion-title {
    padding: 17px 20px;
    font-size: 15.5px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.54);
    border-block-end: 1px solid #efefef;
}

.course-video-list-section .uk-open .uk-accordion-title {
    border-block-end: 0
}

/* accordion indicator */
.course-video-list-section .uk-accordion-title::before {
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Feather-Icons";
    content: "\e92e";
    background-image: none !important;
    color: rgba(0, 0, 0, 0.54);
    margin-inline-start: 0;
}

/* accordion active */
.course-video-list-section .uk-open>.uk-accordion-title::before {
    content: "\e931";
}

.course-video-list-section .uk-accordion-content {
    margin: 0;
    padding-block-end: 10px;
}

/* ---------------------------------- */
/* course-video-list-2
------------------------------------- */
ul.course-video-list-2 {
    margin: 0;
    padding: 0;
}

ul.course-video-list-2 li {
    position: relative;
    display: block;
    clear: both;
}

ul.course-video-list-2 li a {
    padding: 10px;
    border-block-end: 1px solid #e6e6e6;
    display: block;
    font-weight: 600;
}

ul.course-video-list-2 li img {
    width: 100px;
    height: auto;
    float: right;
    margin-inline-end: 15px;
    border-radius: 6px;
    border: 3px solid transparent;
}

ul.course-video-list-2 li a span.now-playing {
    position: absolute;
    right: 10px;
    bottom: 12px;
    background: #3e416d;
    color: #fff;
    padding: 3px 7px;
    display: none;
    font-size: 9px;
    font-weight: 700;
    border-radius: 9px 0;
}

ul.course-video-list-2 li a span.video-title {
    color: #3e416d;
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    text-decoration: none;
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}

ul.course-video-list-2 li a time {
    font-size: 12px;
    color: #888;
    position: relative;
    top: -5px;
    /* text-align: ; */
}

ul.course-video-list-2 li a:after {
    content: '';
    display: block;
    clear: both;
}

ul.course-video-list-2 li:nth-child(2n) {
    background: #f8fbff;
}

/* if list is is active or selected */
ul.course-video-list-2 li.uk-active a span.now-playing {
    display: block;
}

ul.course-video-list-2 li.uk-active a img {
    border-color: #3e416d;
    border-radius: 6px;
}

ul.course-video-list-2 li a:hover,
ul.course-video-list-2 li.uk-active a {
    background-color: #e2ecff;
}

/* ---------------------------------- */
/* video contents
------------------------------------- */
.course-content {
    flex: 1;
    min-width: 1px;
    order: 2;
    background-color: #f8fbff;
    transition: 0.3s;
}

.course-content-inner {
    max-width: 1024px;
    height: calc(99vh - 90px) !important;
    margin: auto;
    justify-content: center;
    align-items: center;
    display: flex;
    transition: 0.3s;
    position: relative;
}

@media (max-width: 768px) {
    .course-watch-page {
        overflow-x: hidden;
        overflow-y: visible;
    }

    .course-layouts {
        display: inline;
        flex-wrap: unset;
    }

    .course-header {
        padding: 15px 10px;
    }

    .course-header h4 {
        font-size: 17px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .course-header .btn-back {
        display: none;
    }

    .course-header .btn-back i {
        padding: 5px;
    }

    /* sidebar */
    .course-sidebar {
        width: 100%;
    }

    .course-content-inner {
        height: auto !important;
    }

    .course-content {
        min-height: auto;
        padding: 0;
    }
}

.video-responsive {
    overflow: hidden;
    padding-block-end: 56.25%;
    position: relative;
    height: 0;
    display: contents;
    padding: 20px;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    padding: 20px;
}

@media (max-width: 768px) {
    .video-responsive {
        padding: 0;
    }

    .video-responsive iframe {
        position: relative;
        padding: 0px;
        height: 40vw;
        width: 100vw;
    }
}

@media (max-width: 520px) {
    .video-responsive iframe {
        position: relative;
        padding: 0px;
        height: 55vw;
        width: 100vw;
    }
}

/* ---------------------------------- */
/* courses video-list-3
------------------------------------- */
@media (min-width: 960px) {
    .vidlist-3-container {
        box-shadow: 4px 0px 9px 4px #e6e6e6;
    }
}

@media (max-width: 960px) {
    .vidlist-3-container {
        position: fixed;
        right: -330px;
        top: 0;
        height: 100%;
        width: 330px !important;
        background: #f9f9fc;
        overflow-y: scroll;
        z-index: 9;
        -webkit-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

    .is-open .vidlist-3-container {
        right: 0;
        -webkit-box-shadow: -2px 0 30px rgba(0, 0, 0, .2);
        box-shadow: -2px 0 30px rgba(0, 0, 0, .2);
    }

    /* tragger */
    .btn-vidlist-3 {
        border-radius: 5px;
        width: 40px;
        height: 40px;
        position: fixed;
        z-index: 10000000;
        top: 50%;
        right: 10px;
        display: block;
        background: #525e69;
        color: white;
        border-radius: 100%;
    }

    .btn-vidlist-3::before {
        font-family: "Feather-Icons";
        font-size: 20px;
        content: '\e9f7';
        line-height: 30px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
    }

    .is-open .btn-vidlist-3::before {
        content: '\ea02';
    }

    .is-open .btn-vidlist-3 {
        background: #515d67;
        position: fixed;
        top: 50%;
        right: 326px;
        z-index: 10;
    }
}

/* ---------------------------------- */
/* course lesson  3  
------------------------------------- */
.vidlist-3-content {
    height: calc(99vh - 90px) !important;
}

.vidlist-3-section>li {
    overflow: hidden;
    margin-block-start: 0 !important;
}

.vidlist-3-section .uk-accordion-title {
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.54);
    border-block-end: 1px solid #efefef;
}

.vidlist-3-section .uk-open .uk-accordion-title {
    border-block-end: 0
}

/* accordion indicator */
.vidlist-3-section .uk-accordion-title::before {
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Feather-Icons";
    content: "\e92e";
    background-image: none !important;
    color: rgba(0, 0, 0, 0.54);
    margin-inline-end: 0;
}

/* accordion active */
.vidlist-3-section .uk-open>.uk-accordion-title::before {
    content: "\e931";
}

.vidlist-3-section .uk-accordion-content {
    margin: 0;
    padding-block-end: 10px;
}

/* video list 3 */
ul.vidlist-3 {
    margin: 0 !important;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.vidlist-3 li>a {
    display: block;
    padding: 10px 50px;
    line-height: 29px;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    max-width: 100%;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vidlist-3 li>a:before {
    right: 15px;
    text-align: center;
    width: 26px;
    height: 26px;
    top: 25%;
    line-height: 26px;
    content: "";
    z-index: 2;
    position: absolute;
    background: url(../images/icon-play.svg);
}

.vidlist-3 li>a:hover,
.vidlist-3 li>a:active,
.vidlist-3 li>a:focus,
.vidlist-3 li.uk-active a {
    background-color: rgba(71, 74, 88, 0.0784313725490196);
}

.vidlist-3 li>a span {
    font-size: 11px;
    font-weight: 600;
    color: #989898;
    position: absolute;
    left: 12px;
}

@media (max-width: 960px) {

    .vidlist-3-section .uk-accordion-title,
    .vidlist-3 li>a {
        font-size: 12px;
    }
}

/* ---------------------------------- */
/* skil card list
------------------------------------- */
.skill-card {
    display: block;
    position: relative;
    color: #545e6f;
    transition: transform .2s ease-in-out;
    /* background: white; */
    border-radius: 9px;
    transition: 0.3s;
    position: relative;
    padding: 20px;
    /* box-shadow: -10px 10px 14px -9px rgba(25, 42, 70, .13); */
    align-items: center;
    color: var(--ion-color-primary-tint);
    text-align: center;
}

.skill-card:hover {
    transform: translate(0, -4px);
}

.skill-card-icon {
    font-size: 35px;
    width: auto;
    margin: 0 0 0 17px;
}

.skill-card-title {
    font-weight: normal;
    font-size: 20.5px;
    margin-block-start: 2px;
    margin-block-end: 5px;
    position: relative;
    line-height: 20px;
    /* color: var(--ion-color-primary-tint); */
    height: 25px;
    overflow: hidden;
    line-height: 25px;
}

.skill-card-subtitle {
    font-size: 14.4px;
    /* line-height: 16px; */
    font-weight: 400;
    margin: 0;
    color: rgba(84, 94, 111, .6);
}

.skill-card-bullet {
    color: rgba(84, 94, 111, .2);
    display: inline-block;
    margin: 0 1px;
}

/* ---------------------------------- */
/* sidebar-filter
------------------------------------- */
.sidebar-filter h4 {
    margin-block-end: 0;
    padding-block-end: 11px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    border-block-end: 1px solid #dadada;
}

.btn-sidebar-filter {
    display: none
}

@media (max-width: 768px) {
    .sidebar-filter.sidebar-filter-visible .sidebar-filter-contents {
        display: block !important;
    }

    .btn-sidebar-filter {
        width: 150px;
        margin: 0;
        margin-block-start: 15px;
        background-color: #f3f3f3;
        border-radius: 5px;
        color: #454872;
        padding: 12px 17px;
        padding-inline-start: 45px;
        text-align: left;
        font-weight: 600;
        transition: 0.2s;
        display: block;
        line-height: 20px;
        border: 0;
        position: relative;
        display: block
    }

    .btn-sidebar-filter::after {
        font-family: "Feather-Icons";
        content: '\e9d1';
        font-size: 18px;
        left: 17px;
        position: absolute;
    }

    .sidebar-filter-visible .btn-sidebar-filter::after {
        font-family: "Feather-Icons";
        content: '\ea02';
    }

    .sidebar-filter h4 {
        margin-block-start: 0px;
    }
}

/* courses filter list  accordion */
.btn-filter {
    padding: 8px 11.5px;
    background: #edeff5;
    border-radius: 6px;
    color: #3e416d;
    box-shadow: 0px 2px 8px -10px rgba(0, 0, 0, 0.3);
}

.btn-filter:hover {
    color: #fff;
    background: #3e416d;
}

@media (max-width: 640px) {
    .btn-filter {
        padding: 5px 10.5px;
    }
}

.sidebar-filter-list>li {
    overflow: hidden;
    margin-block-start: 0 !important;
}

.sidebar-filter-list .uk-accordion-title {
    padding: 13px 2px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.54);
    border-block-end: 1px solid #e6e6e6;
}

.sidebar-filter-list .uk-open .uk-accordion-title {
    border-block-end: 0;
}

/* accordion indicator */
.sidebar-filter-list .uk-accordion-title::before {
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Feather-Icons";
    content: "\e92f";
    background-image: none !important;
    color: rgba(0, 0, 0, 0.54);
    margin-inline-end: 0;
    float: left;
}

.sidebar-filter-list .uk-open>.uk-accordion-title::before {
    transform: rotate(270deg) !important;
    background-image: none !important;
}

.sidebar-filter-list .uk-accordion-content {
    margin: 0;
    padding-block-end: 10px;
}

.sidebar-filter-list .uk-form-controls label {
    display: block;
    padding: 8px 0;
    font-weight: 400;
    cursor: pointer;
    font-size: 15px;
}

.sidebar-filter-list .uk-form-controls label span span {
    font-size: 14px;
}

.sidebar-filter-list .uk-form-controls label .uk-radio {
    margin-inline-start: 9px;
}

.btn-sidebar-filter {
    display: none
}

@media (max-width: 768px) {
    .sidebar-filter .sidebar-filter-contents {
        padding: 20px 0;
        display: none;
    }

    .sidebar-filter.sidebar-filter-visible .sidebar-filter-contents {
        display: block !important;
    }

    .btn-sidebar-filter {
        width: 150px;
        margin: 0;
        margin-block-start: 15px;
        background-color: #f3f3f3;
        border-radius: 5px;
        color: #454872;
        padding: 12px 17px;
        padding-inline-start: 45px;
        text-align: left;
        font-weight: 600;
        transition: 0.2s;
        display: block;
        line-height: 20px;
        border: 0;
        position: relative;
        display: block
    }

    .btn-sidebar-filter::after {
        font-family: "Feather-Icons";
        content: '\e9d1';
        font-size: 18px;
        left: 17px;
        position: absolute;
    }

    .sidebar-filter-visible .btn-sidebar-filter::after {
        font-family: "Feather-Icons";
        content: '\ea02';
    }

    .sidebar-filter h4 {
        margin-block-start: 0px;
    }
}

/*  User Details */
.user-details-card {
    display: flex;
    padding: 20px 0px;
    align-items: center;
}

/* Avatar */
.user-details-card-avatar {
    display: inline-block;
    border-radius: 50%;
    position: relative;
    max-width: 60px;
}

.user-details-card-avatar img {
    width: 100%;
    display: inline-block;
    border-radius: 50%;
    image-rendering: -webkit-optimize-contrast;
}

.user-details-card-name {
    font-weight: 500;
    color: #333;
    line-height: 20px;
    padding: 2px 15px 0 0;
    font-weight: 600;
}

.user-details-card span {
    display: block;
    font-size: 13.7px;
    color: #888;
    font-weight: 500;
}

.user-details-card span span {
    display: inline;
    margin-inline-end: 6px;
    color: #afafaf;
}

@media (max-width: 768px) {
    .user-details-card-avatar {
        max-width: 50px;
    }
}

/* ---------------------------------- */
/* Star Rating
------------------------------------- */
.star-rating {
    display: inline-block;
    position: relative;
}

.star-rating .star {
    display: inline-block;
    margin: 0;
    padding: 0;
    float: left;
    margin-inline-start: 0;
    position: relative;
    line-height: 1;
}

.star-rating .star.half:after,
.star-rating .star:before {
    font-family: "Material-Icons";
    content: "\e988";
    display: block;
    color: #febe42;
    font-size: 19px;
}

.star-rating .star.empty:before {
    color: #ddd;
}

.rating:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.star-rating .star.half:before {
    color: #ddd;
}

.star-rating .star.half:after {
    color: #febe42;
    position: absolute;
    top: 0;
    width: 50%;
    display: block;
    height: 100%;
    overflow: hidden;
}

/* average rating before stars */
.star-rating .avg {
    float: right;
    border-radius: 4px;
    background-color: #febe42;
    color: #fff;
    font-size: 13px;
    line-height: 15px;
    font-weight: 700;
    padding: 3px 7px;
    position: relative;
    margin-inline-start: 10px;
}

/* No stars */
.star-rating.no-stars .star {
    display: none;
}

.star-rating.no-stars:before {
    margin-inline-start: 0;
}

/* ---------------------------------- */
/* Blog Post
------------------------------------- */
.blog-post {
    display: flex;
    background: #fff;
    margin-block-end: 35px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0px 2px 7px -3px #0000001a;
}

.blog-post:hover {
    box-shadow: 0 3px 28px rgba(0, 0, 0, 0.1);
}

.blog-post-thumbnail {
    flex: 0 0 auto;
    max-width: none;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    width: 40%;
}

.blog-post-thumbnail-inner {
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.blog-post-thumbnail-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.blog-post-thumbnail-inner .blog-item-tag {
    bottom: auto;
    left: 20px;
    top: 20px;
    margin: 0;
}

span.blog-item-tag {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    border-radius: 4px;
    padding: 5px 12px;
    line-height: 20px;
    font-weight: 400;
    margin-block-end: 9px;
    position: absolute;
    top: 30px;
    left: 32px;
    z-index: 99;
    transition: 0.4s;
}

.blog-post-content {
    flex: 1;
    padding: 25px;
}

.blog-post-content h3,
.blog-post-content h3 a {
    font-size: 23px;
    line-height: 31px;
    margin-block-end: 7px;
    display: block;
}

.blog-post:hover .blog-post-content h3 {
    transition: 0.3s;
    color: #0610a0;
}

a.blog-post-info,
.blog-post-info,
.blog-post-date {
    font-size: 11px;
    color: #888;
    margin-block-end: 10px;
    display: inline-block;
    background-color: #f0f0f0;
    border-radius: 4px;
    line-height: 18px;
    padding: 4px 9px;
    margin-inline-start: 3px;
    transition: 0.3s;
}

a.blog-post-info:hover {
    background-color: #3e416d;
    color: white
}

.blog-post-content-info {
    align-items: center;
    justify-content: space-between;
    display: flex;
    margin-block-end: 9px;
}

span.blog-post-info-date {
    font-weight: 600;
    color: #909090;
}

span.blog-post-info-tag {
    display: inline-block;
    padding: 0.26rem 0.6rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 10rem !important;
    line-height: 1;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: 15px;
}

.blog-post-content p {
    padding: 0;
    margin: 0;
    font-size: 18px;
    display: block;
    color: #808080;
    font-weight: 500;
    font-size: 16px;
    /* line-height: 23px; */
    margin-block-end: 6px !important;
}

/* Media Queries for Blog Post */
@media (max-width: 768px) {
    .blog-post {
        flex-direction: column;
    }

    .blog-post-thumbnail {
        width: 100%;
        height: 220px;
    }

    .blog-post-content {
        padding: 20px
    }

    .blog-post-content h3 {
        font-size: 18px;
        line-height: 24px;
        margin-block-end: 7px;
    }

    .blog-post-content p {
        font-size: 15px;
    }
}

/* blog post card */
.blog-post.blog-post-card {
    display: block;
}

.blog-post.blog-post-card .blog-post-thumbnail {
    width: 100%;
    height: 170px;
}

.blog-post.blog-post-card .blog-post-content {
    padding: 17px 20px;
    padding-block-end: 6px;
}

.blog-post.blog-post-card .blog-post-content h3 {
    font-size: 20px;
    line-height: 31px;
    font-weight: 600;
    margin-block-end: 7px;
}

.blog-post.blog-post-card .blog-post-content p {
    font-size: 15px;
}

.blog-post.blog-post-card span.blog-post-info-tag {
    padding: 6px 12px;
    font-size: 12px;
}

.blog-post.blog-post-card span.blog-post-info-date {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
}

.blog-post.blog-post-card .blog-post-footer {
    padding: 10px 17px;
    border-block-start: 1px solid #f0f4fa;
}

.blog-post.blog-post-card .blog-post-content-info {
    margin-block-end: 0
}

/* Single Post Styles */
.blog-post.single-post {
    flex-direction: column;
}

.blog-post.single-post:hover {
    transform: none;
}

.blog-post.single-post .blog-post-content h3 {
    color: #3e416d;
}

.blog-post.single-post p {
    margin-block-end: 20px;
    font-size: 16px;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .blog-post.single-post .blog-post-thumbnail {
        width: 100%;
        height: 380px;
    }

    .blog-post.single-post .blog-post-content h4:not(:first-child) {
        margin-block-start: 26px;
    }
}

/* blog artical */
.blog-article {
    position: relative;
    margin-block-end: 45px;
}

.blog-article ul.blog-article-meta {
    font-size: 14px;
    margin-block-start: 10px;
    margin-block-end: 20px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 20;
    position: relative;
    color: rgba(48, 48, 48, 0.66);
}

.blog-article-thumbnail {
    width: 100%;
    height: 380px;
    max-width: none;
    max-height: 100%;
    position: relative;
}

.blog-article-thumbnail-inner {
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    border-radius: 8px;
}

.blog-article-thumbnail-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    overflow: hidden;
    left: 0;
    border-radius: 8px;
}

.blog-article-meta {
    padding: 0;
    line-height: 1.2;
    margin: 15px 0px;
    text-transform: uppercase;
    font-size: 13px !important;
}

.blog-article-meta strong {
    color: #a0a0a0;
    padding-inline-end: 10px;
    border-inline-end: 1px solid #d0d0d0;
}

.blog-article-meta a {
    padding-inline-start: 8px;
    color: #3e416d;
    font-weight: 600;
}

.blog-article-meta span {
    color: #ababab;
    padding-inline-start: 20px;
    position: relative;
    font-weight: 600;
}

.blog-article-meta span::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    left: 5px;
    top: 0;
}

.blog-article-content {
    font-size: 16px;
    line-height: 1.6;
    margin-block-start: 20px;
    color: #868686;
}

.blog-article-content a {
    font-weight: 700;
    font-size: 14px;
    margin-inline-end: 5px;
}

.blog-article-content-read {
    background-color: white;
    border-radius: 16px;
    margin-block-start: -80px;
    position: relative;
    padding: 30px;
}

.blog-article-content-read h4 {
    margin-block-start: 28px;
}

.blog-article-content-read p {
    line-height: 1.8;
    font-size: 16px;
}

/*  blog Single post  article */
.blog-article-single {
    width: 100%;
    height: 430px;
    position: relative;
    display: flex;
    background-size: cover;
    align-items: center;
    background-blend-mode: color-burn;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 0 0 30px 30px;
    padding-block-end: 70px;
}

.blog-article-single .blog-article-meta {
    margin: 15px 0 !important;
    color: white;
}

.blog-article-single .blog-article-meta span::before {
    display: none;
}

.blog-article-single h1 {
    margin: 36px 0;
    font-size: 45px;
    max-width: 880px;
}

.blog-article-single h1,
.blog-article-single .blog-article-meta strong,
.blog-article-single .blog-article-meta a,
.blog-article-single .blog-article-meta span {
    color: white;
}

.blog-article-auther img {
    width: 100%;
    display: inline-block;
    border-radius: 50%;
    image-rendering: -webkit-optimize-contrast;
    width: 50px;
    height: 50px;
}

.blog-auther-user-name {
    line-height: 18px;
    padding: 15px 0;
    width: 100%;
    padding-block-end: 8px;
    /* font-weight: 600; */
    display: block;
    color: white;
    font-size: 18px;
}

/* Media Queries for Blog Post */
@media (max-width: 768px) {
    .blog-article {
        margin-block-end: 20px;
    }

    .blog-article .blog-article-thumbnail {
        height: 220px
    }

    .blog-article h2 {
        font-size: 22px;
    }

    .blog-article .blog-article-meta {
        font-size: 12px;
        margin: 10px 0;
    }

    .blog-article .blog-article-content {
        font-size: 18px
    }

    .blog-article-single {
        width: 100%;
        height: 300px;
    }

    .blog-article-single h1 {
        font-size: 25px;
        margin: 30px 0;
    }

    .blog-article-content-read {
        border-radius: 0
    }

    .blog-article-content-read h2 {
        font-size: 1.2rem;
    }

    .blog-article-meta {
        font-size: 12px !important
    }

    .blog-article-content-read h4 {
        margin: 0
    }
}

/* ---------------------------------- */
/* profile 
------------------------------------- */
.profile-container {
    padding: 40px 20px 0px 20px;
    background: #3e416d;
}

.profile-container .contents-inner {
    padding: 0
}

.profile-layout {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-block-end: 33px;
}

.profile-layout-content {
    flex: 1;
    min-width: 1px;
}

.profile-layout-content h1 {
    font-size: 35px;
    margin: 15px 0 9px 0;
}

.profile-layout-content h5 {
    color: #8a8a8a;
}

/* profile badge */
.profile-layout-badge {
    width: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-block-start: 19px;
    align-items: center;
}

.profile-layout-badge * {
    padding: 2px 10px;
    text-align: center;
    font-weight: 600;
    color: white;
}

.profile-layout-badge-num {
    font-size: 28px;
}

/* profile avature */
.profile-layout-avature {
    width: auto;
    margin-inline-start: 30px;
}

.user-profile-photo {
    flex: 0 0 auto;
    max-width: none;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    width: 150px;
    height: 150px;
}

.user-profile-photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
    /* border: 9px solid #edfff3; */
}

/* ---------------------------------- */
/* profile  card
------------------------------------- */
.profile-cards {
    background: white;
    padding: 10px;
    border-radius: 7px;
    box-shadow: 0px 2px 10px 0px #0000001a;
    text-align: center;
}

.profile-cards .user-profile-photo {
    width: 120px;
    height: 120px;
    box-shadow: 0px 2px 10px 0px #0000001a;
    border-radius: 100%;
    margin: auto;
    margin-block-start: 15px;
}

.profile-cards h2 {
    font-size: 22px;
    margin: 20px 0 7px 0;
}

.profile-cards .profile-cards-footer a {
    color: #3e416d;
    font-weight: 600;
}

.profile-cards .profile-cards-footer {
    border-block-start: 1px solid #e8eaef;
    background: #f9fafe;
    margin: 0px -10px -10px;
    border-radius: 0 0 7px 7px;
    padding: 13px 0;
}

.profile-cards .social-icons {
    margin: 18px 0;
}

.profile-cards .social-icons i {
    font-size: 19px;
    color: #cacaca;
    padding: 5px;
}

.profile-icon-back {
    position: absolute;
    left: 4%;
    background: #f3f3f3;
    border-radius: 50%;
    color: #b0b2be;
    border: .0625rem solid rgba(20, 23, 28, .05);
    background-color: rgba(20, 23, 28, .05);
    padding: 10px;
    line-height: 1;
}

.profile-icon-back:hover {
    background: rgba(20, 23, 28, 0.1);
    color: #b0b2be;
}

.profile-icon-back i {
    font-size: 24px;
}

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

    .profile-container,
    .profile-container .contents-inner {
        padding: 0;
        padding-block-end: 0;
    }

    .profile-layout {
        display: inline;
    }

    .profile-layout-avature {
        width: auto;
    }

    .profile-layout-avature .user-profile-photo {
        margin: auto;
        width: 150px;
        height: 150px;
    }

    .profile-layout-content {
        text-align: center
    }

    .profile-layout-content h1 {
        font-size: 23px
    }

    .profile-layout-content h5 {
        font-size: 13px;
    }

    .profile-layout-content .bio-content {
        display: none
    }

    .profile-icon-back {
        display: none
    }
}

/* button option menu  */
.btn-option {
    position: absolute !important;
    top: 8px;
    left: 0;
    right: auto;
    font-size: 21px;
    padding: 5px 3px !important;
    z-index: 1;
}

/* dropdown option menu */
.dropdown-option-nav {
    padding: 0 !important;
    min-width: 185px !important;
    margin-block-start: 3px !important;
}

.dropdown-option-nav:before {
    content: "";
    position: absolute;
    top: -13px;
    left: 5px !important;
    right: auto;
    width: 0;
    height: 0;
    border-inline-end: 8px solid transparent;
    border-inline-end: 7px solid transparent;
    border-block-end: 10px solid #e8e9eb;
    border-color: transparent transparent #eaeaea transparent;
    top: -10px;
}

.uk-dropdown-top-right.dropdown-option-nav:before {
    right: 5px;
    top: -13px;
    border-block-end: 0;
    top: auto;
    bottom: -10px;
    border-inline-start: 10px solid transparent;
    border-inline-end: 10px solid transparent;
    border-block-start: 10px solid #d4d4d4;
}

.dropdown-option-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 6px 0px;
}

.dropdown-option-nav ul li {
    margin: 0;
    padding: 0;
    display: block !important;
}

.dropdown-option-nav .divider-line {
    margin: 4px 0;
    border: .3px solid rgba(222, 223, 224, .45);
}

.dropdown-option-nav ul li a {
    display: block;
    font-size: 14px;
    transition: 0.3s;
    color: #9799a2;
    padding: 9px 19px;
    font-weight: 600;
}

.dropdown-option-nav ul li a:hover {
    background-color: #f0f5fd;
}

.dropdown-option-nav ul li a i {
    font-size: 19px;
    position: relative;
    float: right;
    top: 1px;
    margin-inline-end: 7px;
    -webkit-font-smoothing: antialiased;
    transition: 0.3s;
}

.dropdown-option-nav ul li a:hover {
    color: #2f3152;
}

@media (max-width: 420px) {
    .btn-option {
        top: -4px;
        right: -5px;
        padding: 5px 3px;
    }
}

/* User Menu Small Nav */
ul.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 6px 0px;
}

ul.dropdown-menu li {
    margin: 0;
    padding: 0;
    display: block !important;
}

ul.dropdown-menu li a {
    display: block;
    font-size: 14px;
    transition: 0.3s;
    color: #9799a2;
    padding: 9px 20px;
    font-weight: 600;
}

ul.dropdown-menu li a:hover {
    /* background-color: #f0f5fd; */
    color: #2f3152;
}

ul.dropdown-menu li a i {
    font-size: 18px;
    position: relative;
    float: right;
    top: 1px;
    margin-inline-end: 7px;
    -webkit-font-smoothing: antialiased;
    transition: 0.3s;
}

ul.dropdown-menu .menu-divider {
    margin: 4px 0;
    border: .3px solid rgba(222, 223, 224, .45);
}

ul.dropdown-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 6px 0px;
}

ul.dropdown-nav li {
    display: block;
    font-size: 13.5px;
    transition: 0.3s;
    display: flex;
    color: #9799a2;
    padding: 9px 22px;
    justify-content: space-between;
    align-items: center;
}

ul.dropdown-nav li:hover {
    color: #2f3152;
}

ul.dropdown-nav li a i {
    font-size: 18px;
    position: relative;
    top: 1px;
    -webkit-font-smoothing: antialiased;
    transition: 0.3s;
}

ul.dropdown-nav .menu-divider {
    margin: 3px 0;
    border-block-start: 1px solid rgba(222, 223, 224, .45);
    padding: 0px;
}

/* dropdown User Details */
.dropdown-user-details {
    display: flex;
    padding: 21px 16px;
    padding-block-end: 9px;
    border-block-end: 1px solid #e6e6e6;
}

/* dropdown User Details */
.dropdown-user-details {
    display: flex;
    padding: 16px 16px;
    padding-block-end: 9px;
    border-block-end: 1px solid #e6e6e6;
    /* width: 100%; */
}

/* Avatar */
.dropdown-user-avatar {
    display: inline-block;
    border-radius: 50%;
    width: 47px;
    height: 47px;
    position: relative;
}

.dropdown-user-avatar img {
    width: 100%;
    display: inline-block;
    border-radius: 50%;
    image-rendering: -webkit-optimize-contrast;
}

.dropdown-user-name {
    line-height: 20px;
    padding: 2px 15px 0 0;
    width: 100%;
    padding-block-end: 8px;
    font-weight: 600;
    color: #333;
    font-size: 17px;
}

.dropdown-user-details span {
    display: block;
    font-size: 12.7px;
    color: #888;
    font-weight: 500;
}

/* ---------------------------------- */
/* responsive tab
------------------------------------- */
.responsive-tab {
    position: relative;
    z-index: 1;
    clear: both;
    width: 100%;
    height: 52px;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

.responsive-tab ul,
.responsive-tab li,
.responsive-tab a {
    height: 100%;
}

.responsive-tab ul {
    /* enables a flex context for all its direct children */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.responsive-tab ul::after {
    clear: both;
    content: "";
    display: block;
}

.responsive-tab li {
    display: inline-block;
    float: right;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
}

.responsive-tab a {
    display: block;
    color: #8e8e8e;
    opacity: .6;
    line-height: 50px;
    padding-inline-end: 17px;
    padding-inline-start: 0;
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.responsive-tab a i {
    font-weight: 700;
    margin-inline-start: 9px;
}

.responsive-tab li a:hover {
    color: #3e416d;
    opacity: .8;
}

.responsive-tab .uk-active,
.responsive-tab .uk-active a {
    color: #3e416d;
    opacity: 1;
}

.uk-light .responsive-tab:before {
    background: transparent;
}

.uk-light .responsive-tab .uk-active a,
.uk-light .responsive-tab li a:hover {
    color: white
}

.uk-light .responsive-tab .uk-active a:before {
    background-color: white
}

@media only screen and (min-width: 1024px) {
    .responsive-tab {
        height: 40px;
        overflow: visible;
    }

    /* reset mobile style */
    .responsive-tab ul {
        display: block;
    }

    /* reset mobile style */
    .responsive-tab li {
        float: none;
        -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        flex: 1 0;
    }

    .responsive-tab a {
        font-size: 16px;
        margin-inline-end: 20px;
        padding: 0;
        line-height: 40px;
    }
}

/* ---------------------------------- */
/* style-3
------------------------------------- */
@media only screen and (min-width: 1024px) {
    .responsive-tab.style-1:before {
        background: transparent;
    }

    .responsive-tab.style-1 {
        height: 38px;
    }

    .responsive-tab.style-1 li a {
        background: #eaeaea;
        border-radius: 97px;
        line-height: 38px;
        color: black;
        font-size: 13px;
        padding: 0px 22px;
        margin-inline-start: 10px;
    }

    .responsive-tab.style-1 li.uk-active a {
        background-color: #3e416d;
        color: white;
    }

    .responsive-tab.style-1 .uk-active a:before {
        background-color: transparent;
    }
}

/* ---------------------------------- */
/* style-2
------------------------------------- */
.responsive-tab.style-2 :before {
    position: absolute;
    bottom: 0;
    content: '';
    width: 100%;
    height: 1px;
    border-radius: 27px;
}

.responsive-tab.style-2 .uk-active a:before {
    width: 100%;
    width: 20%;
    height: 4px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.responsive-tab.style-2:before {
    background: transparent;
}

.responsive-tab.style-2 .uk-active {
    color: #0a0a0a;
}

/* ---------------------------------- */
/* style-3
------------------------------------- */
.responsive-tab.style-3 .uk-active a:before,
.responsive-tab.style-3:before {
    display: none;
}

@media only screen and (min-width: 1024px) {
    .responsive-tab.style-3 {
        height: auto;
    }

    .responsive-tab.style-3 li a {
        font-size: 17px;
        font-weight: 600;
        line-height: 44px;
    }

    .responsive-tab.style-3 li {
        display: block;
    }

    .responsive-tab.style-3 ul,
    .responsive-tab.style-3 li,
    .responsive-tab.style-3 a {
        height: 100%;
    }

    .responsive-tab.style-3 li .responsive-tab.style-3 a {
        height: 100%;
    }
}

/* ---------------------------------- */
/* style-4
------------------------------------- */
.responsive-tab.style-4 :before {
    position: absolute;
    bottom: 0;
    content: '';
    background: #e8e8e8;
    width: 100%;
    height: 1px;
    border-radius: 27px;
}

.responsive-tab.style-4 a {
    margin-inline-end: 12px;
    padding: 0 10px;
}

.responsive-tab.style-4 .uk-active a:before {
    position: absolute;
    bottom: 0;
    content: '';
    background: #007791;
    width: 100%;
    height: 5px;
    left: 0;
    background: #3e416d;
}

.uk-light .responsive-tab.style-4 .uk-active a:before {
    background-color: white
}

/* ---------------------------------- */
/* style-5
------------------------------------- */
.responsive-tab.style-5 {
    height: 47px;
}

.responsive-tab.style-5 li a {
    line-height: 47px;
    padding: 0px 20px;
    margin: 0px;
}

.responsive-tab.style-5 li.uk-active a {
    padding: 0px 13px;
    margin: 0px 36px;
    background-color: #edeff0;
    color: #3e416d;
}

.responsive-tab.style-5 li.uk-active a:hover {
    background-color: #edeff0;
    opacity: 1;
}

.responsive-tab.style-5 li.uk-active a:before {
    background: url(../images/bg-shapes/tab-border-inline-start.png) no-repeat;
    background-size: cover;
    content: '';
    position: absolute;
    left: -35px;
    top: 0;
    font-size: 31px;
    height: 47px;
    width: 36px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.responsive-tab.style-5 .uk-active a:after {
    background: url(../images/bg-shapes/tab-border-inline-end.png) no-repeat;
    background-size: cover;
    content: '';
    position: absolute;
    right: -35px;
    top: 0;
    color: #f91629;
    height: 47px;
    width: 36px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

/* ---------------------------------- */
/* List Styles
------------------------------------- */
.list-3,
.list-2,
.list-1 {
    padding: 3px 0 0 0;
    font-size: 15px;
}

.list-3 li,
.list-2 li,
.list-1 li {
    list-style: none;
    margin: 10px 0;
    line-height: 27px;
    margin-inline-start: 20px;
    position: relative;
}

.list-3 li:first-child,
.list-2 li:first-child,
.list-1 li:first-child {
    margin-block-start: 0;
}

.list-4 li:before,
.list-3 li:before,
.list-2 li:before,
.list-1 li:before {
    margin: 0;
    position: relative;
    color: #66676b;
    float: right;
    margin-inline-start: -20px;
    display: block;
}

.list-1.gray li:before {
    color: #777;
}

.list-2 li,
.list-2 li {
    margin-inline-start: 28px;
}

.list-3 li:before,
.list-2 li:before {
    font-family: "Material-Icons";
    content: "\e928";
    font-size: 18px;
    font-weight: 600;
    position: relative;
    top: -2px;
    margin-inline-start: -28px;
}

.list-3 li:before {
    content: "\e912";
    font-family: "Feather-Icons";
    font-weight: 500;
    font-size: 18px;
}

.list-1 li:before {
    content: "";
    height: 6px;
    width: 6px;
    background-color: #66676b;
    border-radius: 2px;
    position: relative;
    top: 9px;
}

/* ---------------------------------- */
/* Pricing
------------------------------------- */
/* Pricing Plans Container */
.pricing-plans-container {
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    background: white;
    margin-block-start: 70px;
}

.pricing-plan {
    flex: 1;
    padding: 35px 17px;
    position: relative;
}

.pricing-plan:first-of-type {
    padding-inline-start: 35px;
}

.pricing-plan:last-of-type {
    padding-inline-end: 35px;
}

.pricing-plan h3 {
    font-size: 22px;
    font-weight: 600;
}

.pricing-plan p {
    margin: 0;
}

/* Pricing Plan Label */
.pricing-plan-label {
    background: #f6f6f6;
    border-radius: 4px;
    font-size: 18px;
    color: #888;
    text-align: center;
    line-height: 24px;
    padding: 15px;
    margin: 22px 0;
}

.pricing-plan-label strong {
    font-size: 32px;
    font-weight: 700;
    color: #3e416d;
    margin-inline-end: 5px;
    line-height: 30px;
}

.recommended .pricing-plan-label {
    background-color: rgba(102, 103, 107, 0.06);
    color: #66676b;
}

.recommended .pricing-plan-label strong {
    color: #3e416d;
}

/* Pricing Plan Features */
.pricing-plan-features strong {
    color: #333;
    font-weight: 600;
    margin-block-end: 5px;
    line-height: 24px;
    display: inline-block;
    margin-block-start: 5px;
}

.pricing-plan-features ul {
    padding: 0;
    margin: 0;
}

.pricing-plan-features ul li {
    display: block;
    margin: 0;
    padding: 3px 0;
    line-height: 24px;
}

/* Pricing Plan Button */
.pricing-plan .button:hover,
.pricing-plan.recommended .button {
    color: #fff;
    background-color: #66676b;
    box-shadow: 0 4px 12px rgba(102, 103, 107, 0.15);
}

.pricing-plan .btns {
    color: #3e416d;
    background-color: #fff;
    border: 1.5px solid #3e416d;
    box-shadow: 0 4px 12px rgba(102, 103, 107, 0.1);
    width: 100%;
    display: inline-block;
    margin: 0;
    padding: 6px 0;
    text-align: center;
    line-height: 28px;
    border-radius: 5px;
    margin-block-start: 15px;
    font-weight: 600;
}

.pricing-plan .button:hover,
.recommended .btns {
    box-shadow: 0 4px 12px rgba(102, 103, 107, 0.15);
    background: #3e416d;
    color: white;
    border-color: #3e416d;
}

/* Recommended Plan */
.pricing-plan.recommended {
    box-shadow: 0 0px 45px rgba(0, 0, 0, 0.09);
    padding: 35px;
    margin: 0 15px;
}

.pricing-plan .recommended-badge {
    background-color: #3e416d;
    color: #fff;
    position: absolute;
    width: 100%;
    height: 45px;
    top: -45px;
    left: 0;
    text-align: center;
    border-radius: 4px 4px 0 0;
    font-weight: 600;
    line-height: 45px;
}

.pricing-swicher {
    width: max-content;
    padding: 10px !important;
    border-radius: 8px;
    margin: auto !important;
}

.pricing-swicher> :first-child {
    padding-inline-start: 0px !important
}

.pricing-swicher li {
    padding-inline-start: 10px !important;
    opacity: 0.4;
}

.pricing-swicher li a {
    font-size: 15px !important;
    font-weight: 700;
    position: relative;
    padding: 6px 12px;
}

.pricing-swicher>li.uk-active {
    opacity: 1;
}

.pricing-swicher>.uk-active>a {
    color: #3e416d !important;
}

.pricing-swicher li a span {
    top: -10px;
    float: left;
    margin-inline-start: 10px;
    background: #3e416d;
    font-size: 11px;
    padding: 3px 5px;
    font-weight: 400;
    color: white;
    border-radius: 4px;
}

/* Media Queries for Pricing Plans */
@media (max-width: 992px) {
    .pricing-plans-container {
        box-shadow: none;
        display: block;
        margin-block-start: -10px;
    }

    .pricing-plan {
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
        margin-block-end: 40px;
        flex: auto;
        border-radius: 4px;
        padding: 35px;
    }

    .pricing-plan.recommended {
        padding: 35px;
        margin: 0 0 40px 0;
    }

    .recommended.pricing-plan {
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
        margin-block-start: 80px;
    }
}

/* Pricing table  */
.bg-pricing {
    background-size: cover;
    position: absolute;
    height: 450px;
    width: 100%;
}

.pricing {
    margin: 40px 0;
}

.pricing h1,
.pricing h5,
.pricing h6 {
    text-align: center;
}

.pricing h5 {
    margin: 20px 0;
    color: #a2a2a2;
}

.pricing .pricing-card {
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 2px 10px 0px #0000001a;
    overflow: hidden;
    display: flex;
    max-width: 800px;
    margin: 25px auto;
    align-items: center;
}

.pricing .pricing-card>* {
    flex: 1;
    padding: 35px 17px;
    position: relative;
}

.pricing .pricing-card .plan-name {
    margin-block-end: 0px;
}

.pricing .pricing-card .price {
    font-size: 6rem;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.pricing .pricing-card .price span {
    font-size: 18px;
    margin-block-start: 25px;
    display: block;
    margin-inline-start: 9px;
}

.pricing .pricing-card .price-type {
    display: block;
    margin-block-end: 15px;
    font-weight: 600;
    color: #b1b1b1;
}

.pricing .pricing-card ul.list-2 li {
    margin: 16px 0;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .pricing .pricing-card {
        display: block;
    }

    .pricing .pricing-card>* {
        padding: 30px 17px;
    }

    .pricing .pricing-card ul.list-2 li {
        margin: 13px 0;
        font-size: 15px;
    }
}

/* ---------------------------------- */
/*  embed video responsive 
------------------------------------- */
.embed-video {
    overflow: hidden;
    padding-block-end: 56.25%;
    position: relative;
    height: 0;
}

.embed-video iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    /* padding: 20px */
}

/* ---------------------------------- */
/* countdown
------------------------------------- */
.countdown .box .countdown-text p {
    margin-block-end: 0;
}

.countdown .box .countdown-text {
    background: #f2f4fb;
    padding: 10px;
    color: #46515a;
    text-align: center;
    font-size: 13px;
}

.countdown .box .uk-countdown-number {
    padding: 25px;
    font-size: 50px;
    color: #525e68;
}

.countdown .box {
    background: white;
    border-radius: 7px;
    overflow: hidden;
    min-width: 120px;
}

.countdown-form {
    background: #ffffff;
    padding: 8px 14px !important;
    border-radius: 33px;
}

@media (max-width: 640px) {
    .countdown .box {
        background: white;
        border-radius: 6px;
        overflow: hidden;
    }

    .countdown .box .uk-countdown-number {
        padding: 15px 2px;
        font-size: 24px;
        color: #4f5a64;
    }

    .countdown .box .countdown-text {
        padding: 5px;
        font-size: 9px;
    }

    .countdown-form {
        padding: 8px 14px !important;
    }
}

/* ---------------------------------- */
/* Footer
------------------------------------- */
.footer {
    margin-block-start: 50px;
    padding: 25px 15px;
    padding-block-end: 0;
    border-block-start: 1px solid #e4e4e4;
    /* font-weight: 500; */
    /* font-size: 18px; */
}

.footer p {
    color: #656565;
}

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

.footer-links.footer-nav ul li {
    display: inline-block !important;
    padding-inline-end: 14px;
}

.footer-links ul li a {
    color: #6f6f6f;
    line-height: 25px;
    padding: 4px 0;
    font-size: 14px;
    font-weight: 600;
}

.footer-links ul li a {
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #000;
}

.footer-description {
    color: #6f6f6f;
    font-weight: 500;
}

.uk-light .footer-links ul li a,
.uk-light .footer-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

.uk-light .footer-links h3,
.uk-light .footer-links ul li a:hover {
    color: white !important;
}

.footer-nav-icon a {
    color: #757575;
    font-weight: 400;
    display: block;
    padding: .5rem 0.8rem;
    font-size: 15px;
}

.footer-nav-icon ul {
    list-style: none;
    padding: 0
}

.footer-nav-icon ul li {
    display: inline-block;
}

.footer-nav-icon ul li a {
    color: #757575;
    font-weight: 400;
    display: block;
    padding: .5rem 0.6rem;
    font-size: 15px;
}

.uk-light .footer-nav-icon ul li a {
    color: rgba(255, 255, 255, 0.7)
}

.uk-light .footer-nav-icon ul li a:hover {
    color: white
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
        margin-block-start: 15px;
        padding-block-end: 0px;
    }
}

/* ---------------------------------- */
/* general
------------------------------------- */
.shadow {
    box-shadow: 0px 2px 7px -3px #0000001a
}

.shadow-0 {
    box-shadow: none
}

.rounded-sm {
    border-radius: 7px;
}

.rounded {
    border-radius: 8px
}

.rounded-lg {
    border-radius: 14px
}

.circle {
    border-radius: 100%
}

/* course thunbail general img */
.course-thumbnail {
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    position: relative;
    border-radius: 8px;
}

/* play icon */
.course-thumbnail .play-button-trigger {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../images/icon-play.svg) no-repeat;
    background-size: auto 50%;
    background-position: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 150ms ease-in-out;
    -moz-transition: opacity 150ms ease-in-out;
    -ms-transition: opacity 150ms ease-in-out;
    -o-transition: opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out;
    -webkit-transition: -webkit-transform 150ms ease-in-out;
    -moz-transition: -moz-transform 150ms ease-in-out;
    -o-transition: -o-transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out;
}

.course-thumbnail:hover .play-button-trigger,
.play-button-trigger.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

span.item-tag {
    font-size: 12.5px;
    font-weight: 600;
    color: #696969;
    background-color: #fff;
    border-radius: 4px;
    padding: 5px 12px;
    line-height: 21px;
    font-weight: 400;
    margin-block-end: 9px;
    position: absolute;
    top: 30px;
    right: 32px;
    z-index: 110;
    transition: 0.4s;
}

span.duration {
    background-color: rgba(62, 62, 62, 0.74);
    padding: 1px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: white;
    position: absolute;
    bottom: 7px;
    left: 8px;
    z-index: 110;
}

/* ---------------------------------- */
/* animation   
------------------------------------- */
.transition-3d-hover,
.animate-this {
    transition: all 0.2s ease-in-out;
}

.transition-3d-hover:hover,
.transition-3d-hover:focus {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.animate-this:hover,
.animate-this:focus {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* ---------------------------------- */
/* Back to top
------------------------------------- */
#backtotop {
    position: fixed;
    left: 0;
    opacity: 0;
    visibility: hidden;
    bottom: 25px;
    margin: 0 0 0 25px;
    z-index: 999;
    transition: 0.35s;
    transform: translateY(10px);
}

#backtotop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backtotop a {
    text-decoration: none;
    border: 0 none;
    display: block;
    width: 46px;
    height: 46px;
    background-color: #3e416d;
    opacity: 1;
    transition: all 0.3s;
    border-radius: 100%;
    text-align: center;
    font-size: 26px;
}

body #backtotop a {
    color: #fff;
}

#backtotop a:after {
    content: "";
    font-family: "Feather-Icons";
    position: relative;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    #backtotop {
        display: none;
    }
}

/* ---------------------------------- */
/* Select dropdown
------------------------------------- */
.icon_select_mate {
    position: absolute;
    top: 8px;
    left: 2%;
    font-size: 16px;
    height: 22px;
    transition: all 275ms;
}

.select_mate {
    position: relative;
    float: left;
    min-width: 165px;
    width: 100%;
    min-height: 40px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    background-color: #3e416d;
    box-shadow: 0px 2px 8px -6px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    transition: all 375ms ease-in-out;
    /* Oculto el elemento select */
}

.select_mate select {
    position: absolute;
    overflow: hidden;
    height: 0px;
    opacity: 0;
}

.cont_list_select_mate {
    position: relative;
    float: left;
    width: 100%;
}

.cont_select_int {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 999;
    overflow: hidden;
    height: 0px;
    width: 100%;
    background-color: #fff;
    padding: 0px;
    margin-block-end: 0px;
    /* border-block-start: 1px solid #f1f1f1; */
    margin-block-start: -4px;
    box-shadow: 1px 7px 10px -2px rgba(0, 0, 0, 0.2);
    transition: all 375ms ease-in-out;
    border-radius: 0 0 6px 6px;
}

.cont_select_int li {
    position: relative;
    float: left;
    width: 85%;
    border-block-end: 1px solid #f1f1f1;
    list-style-type: none;
    padding: 7px 8%;
    margin: 0px;
    transition: all 275ms ease-in-out;
    display: block;
    cursor: pointer;
    /* font-weight: 600; */
    color: #777777;
}

.cont_select_int li:last-child {
    border-radius: 3px;
    border-block-end: 0px;
}

.cont_select_int li:hover {
    background-color: rgba(62, 65, 109, 0.050980392156862744);
}

.cont_select_int .active {
    background-color: rgba(62, 65, 109, 0.050980392156862744);
    color: black;
}

/* etiqueta <p> con la opcion selecionada  */
.selecionado_opcion {
    padding: 9px 9%;
    width: 82%;
    line-height: 20px;
    display: block;
    margin: 0px;
    cursor: pointer;
    margin-block-end: 1px;
}

.select_mate span svg {
    fill: #fff;
}

/* ---------------------------------- */
/* syntax highlighter
------------------------------------- */
.hljs-string,
.hljs-bullet {
    color: #4FC1EA;
}

.hljs {
    display: block;
    overflow-x: auto;
    padding: 1.5em;
    background: #f3f3f3;
    color: #9c9c9c;
    margin: -10px;
}

.hljs-name,
.hljs-strong {
    /* font-weight: bold; */
    color: #f35a00;
}

.hljs-attr {
    color: #68BB88;
}

/* ---------------------------------- */
/* btn source code previewer
------------------------------------- */
.Markup-botton {
    padding-inline-end: 44px !important;
    font-size: 14px !important;
    background: #f0f0f0;
    text-transform: capitalize !important;
    color: #565656;
    border: 0 !important;
    overflow: hidden;
    cursor: pointer;
    outline: 0;
}

.Markup-botton::before {
    font-family: "Feather-Icons";
    font-size: 14px;
    content: '\e940';
    right: 0px;
    width: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    top: 0px;
    color: white;
    background: #bdbcbc;
    position: absolute;
}

.Markup-botton:hover,
.Markup-botton:focus {
    background: #c7c7c7;
}

@media (min-width: 1099px) {
    .Markup-botton {
        margin: 20px 0 !important;
    }
}

.docs-list a {
    color: #999 !important;
    padding: 3px 0 !important;
    font-size: 0.9rem !important;
    display: block;
}

.docs-list a:hover,
.docs-list a:active,
.docs-list a:focus {
    color: #000 !important
}

/* books*/
.book-card .book-cover {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    height: 240px;
}

.book-card .book-cover img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.book-card .book-content {
    margin-block-start: 6px;
}

.book-card .book-content h5 {
    font-weight: 500;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-block-end: 10px;
    margin-block-start: 10px;
    font-size: 16px;
}

@media (max-width: 960px) {
    .book-card .book-cover {
        height: 180px;
    }
}

#book-popular .book-popular-card>* {
    width: auto;
}

#book-popular .book-popular-card {
    border: 0;
    box-shadow: 0 4px 11px -4px rgba(0, 0, 0, 0.2);
    margin: 24px 0 27px;
    padding: 16px 9px;
    padding-inline-end: 15px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

#book-popular .book-popular-card .book-details {
    margin-inline-start: 12px;
    flex: 1;
    min-width: 1px;
}

#book-popular .book-popular-card .book-details h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    color: #393939;
    font-size: 15px;
    margin: 0;
    transition: all 0.2s;
}

#book-popular .book-popular-card .book-details p {
    margin: 0;
    font-size: 13px;
    color: #8d8d8d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-block-start: 4px;
    font-weight: 500;
    line-height: 1;
    transition: all 0.2s;
}

#book-popular .book-popular-card .cover-img {
    border-radius: 6px;
    width: 65px;
    height: 78px;
    margin-block-start: -24px;
    box-shadow: 0 3px 11px -2px rgba(0, 0, 0, 0.33);
}

@media (max-width: 768px) {
    .book-card-grid .book-card .book-cover {
        height: 200px;
    }
}

/* grid slider header and their icon sliders */
.grid-slider-header {
    margin-block-end: 10px;
}

.grid-slider-header h4 {
    overflow: hidden;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-block-end: 0 !important;
    line-height: 33px;
}

.grid-slider-header,
.grid-slider-header-link {
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 0 !important;
}

.grid-slider-header .slide-nav-prev.uk-invisible,
.grid-slider-header .slide-nav-next.uk-invisible {
    visibility: visible !important;
    opacity: .15;
    color: white;
    cursor: default;
}

.grid-slider-header .slide-nav-prev,
.grid-slider-header .slide-nav-next {
    background: #3e416d;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    position: relative;
    margin-inline-end: 5px;
    color: #ffffff;
}

.grid-slider-header .slide-nav-prev:hover,
.grid-slider-header .slide-nav-next:hover {
    background-color: #3e416d;
    color: #fff;
}

.grid-slider-header .slide-nav-prev:before,
.grid-slider-header .slide-nav-next:before {
    font-family: "Feather-Icons";
    font-weight: 600;
    font-size: 19px;
    line-height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.grid-slider-header .slide-nav-prev:before {
    content: "\e930";
}

.grid-slider-header .slide-nav-next:before {
    content: "\e92f";
}

@media (max-width: 768px) {

    .grid-slider-header,
    .grid-slider-header-link {
        padding-inline-end: 10px !important;
    }

    .grid-slider-header .slide-nav-prev,
    .grid-slider-header .slide-nav-next {
        width: 32px;
        height: 32px;
    }
}

/* Slider custom icon */
.slidenav-next,
.slidenav-prev {
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 38px !important;
    font-weight: 700;
    height: 38px;
    line-height: 38px;
    color: #999;
    border: 1px solid rgba(20, 23, 28, .05);
    border-radius: 100%;
    background-color: white;
}

.slidenav-next:hover,
.slidenav-prev:hover {
    background-color: rgba(20, 23, 28, .05);
}

.slidenav-next:before,
.slidenav-prev:before {
    font-family: "Feather-Icons";
    font-weight: 600;
    text-align: center;
    margin: 0;
    margin-inline-end: 0;
    color: #7d7d7d;
    position: absolute;
    font-size: 19px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slidenav-prev:before {
    content: "\e92f";
}

.slidenav-next:before {
    content: "\e930";
}

/* if they are inside the card */
.uk-position-center-left.slidenav-prev,
.uk-position-center-right.slidenav-next {
    background-color: white;
    box-shadow: 0 0 8px -6px black;
}

.uk-position-center-left.slidenav-prev {
    margin-inline-end: 0px !important;
}

.uk-position-center-right.slidenav-next {
    margin-inline-start: 0px !important;
}

@media (max-width: 768px) {

    .slidenav-next,
    .slidenav-prev {
        background: white;
    }

    .uk-position-small[class*='slidenav-next'],
    .uk-position-small[class*='slidenav-prev'] {
        margin-inline-end: -10px;
        margin-inline-start: -10px;
    }
}

/* Search overlay  */
.is-active .search-input-wrapper {
    right: 80px;
    display: inline;
}

.search-input-wrapper {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
}

.search-overlay {
    position: fixed;
    top: -100px;
    right: -100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all .4s;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 1000;
}

.is-active .search-overlay {
    -webkit-transform: scale(50);
    transform: scale(50);
}

.search-input-container {
    position: relative;
    top: 25%;
    padding: 0 18%;
}

.search-input-control {
    position: relative;
    width: 100%;
    transition: all 1.3s 1s;
    font-size: 1rem;
    position: relative;
    text-align: left;
    transition-duration: 1.2s;
}

.search-input-control input {
    width: 94%;
    height: 155px;
    padding-inline-end: 43px;
    border-inline-start: none;
    border-inline-end: none;
    border-block-start: none;
    border-radius: 0;
    border-block-end: 3px solid #2b2d3a;
    background: transparent;
    font-size: 5rem;
    font-weight: 200;
    font-family: 'Alegreya Sans SC', sans-serif;
    text-transform: uppercase;
    padding-block-end: 10px;
    outline: none;
}

.search-input-control .search-help {
    display: block;
    color: #1b245f;
    font-size: 1.3rem;
    padding-block-start: 20px;
}

.search-input-control .btn-close {
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 16px;
    z-index: 10;
    cursor: pointer;
    padding: 10px;
    padding-inline-end: 0;
}

/* ---------------------------------- */
/* Avatar  
------------------------------------- */
.avatar-xsmall {
    width: 1.375rem;
    height: 1.375rem;
}

.avatar-small {
    width: 2rem;
    height: 2rem;
}

.avatar-medium {
    width: 3.125rem;
    height: 3.125rem;
}

.avatar-large {
    width: 5.125rem;
    height: 5.125rem;
}

.avatar-xlarge {
    width: 8rem;
    height: 8rem;
}

.avatar-xxlarge {
    width: 10rem;
    height: 10rem;
}

.img-fluid {
    width: 100%;
}

/* ---------------------------------- */
/* Background   
------------------------------------- */
.bg-primary {
    background-color: #377dff !important;
}

.bg-secondary {
    background-color: #77838f !important;
}

.bg-success {
    background-color: #62d76b !important;
}

.bg-info {
    background-color: #00dffc !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-danger {
    background-color: #ff3b30 !important;
}

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

.bg-grey {
    background-color: #3e416d !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-dark {
    background-color: #000 !important;
}

.bg-transparent {
    background-color: transparent !important;
}

/* ---------------------------------- */
/* gradient Backgrounds  
------------------------------------- */
.bg-transparent {
    background-color: transparent !important;
}

.bg-gradient-primary {
    background: linear-gradient(80deg, #78a6fc, #377dff 100%) !important
}

.bg-gradient-secondary {
    background: linear-gradient(80deg, #fafafa 0, #fafafa 100%) !important
}

.bg-gradient-success {
    background: linear-gradient(80deg, #4cd964 0, #50d94c 100%) !important
}

.bg-gradient-info {
    background: linear-gradient(80deg, #24b7fa 0, #24e2fa 100%) !important
}

.bg-gradient-warning {
    background: linear-gradient(80deg, #ff9500 0, #ff6200 100%) !important
}

.bg-gradient-danger {
    background: linear-gradient(80deg, #ff3b30 0, #ff304e 100%) !important
}

.bg-gradient-light {
    background: linear-gradient(80deg, #ced4da 0, #ced6da 100%) !important
}

.bg-gradient-grey {
    background: linear-gradient(80deg, rgb(62, 71, 79) 0, rgb(95, 109, 121) 100%) !important
}

.bg-gradient-dark {
    background: linear-gradient(80deg, #05172a 0, #051e2a 100%) !important
}

.bg-gradient-1 {
    background-color: rgba(62, 62, 62, 0.52);
    background-blend-mode: color-burn;
}

.bg-gradient-2 {
    background-image: linear-gradient(-225deg, #5D9FFF 0%, #B8DCFF 48%, #6BBBFF 100%);
    background-blend-mode: color-burn;
}

.bg-gradient-3 {
    background-image: linear-gradient(to top, #0d8464 0%, #4c8bb1 100%);
    background-blend-mode: color-burn;
}

.bg-color-burn {
    background-color: rgba(62, 62, 62, 0.52);
    background-blend-mode: color-burn;
}

.bg-image-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    border-radius: inherit;
}

/* ---------------------------------- */
/* topic- Backgrounds  
------------------------------------- */
.topic-1 {
    background-color: var(--ion-color-primary) !important;
}

/*

.topic-1 * {
color: var(--ion-color-primary-tint) !important;
}
*/
.topic-2 {
    background-color: #9b3b5a !important;
}

.topic-3 {
    background-color: #890ca1 !important;
}

.topic-4 {
    background-color: #30826C !important;
}

.topic-5 {
    background-color: #4a4290 !important;
}

.topic-6 {
    background-color: rgb(122, 130, 48) !important;
}

.topic-7 {
    background-color: rgb(201, 37, 146) !important;
}

.topic-8 {
    background-color: rgb(130, 97, 48) !important;
}

.topic-9 {
    background-color: #30826C !important;
}

.topic-10 {
    background-color: rgb(130, 48, 48) !important;
}

/* iconbox icons */
.iconbox {
    display: -webkit-inline-box;
    display: inline-flex !important;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 38px;
    height: 38px;
    padding: 0 !important;
    line-height: 48px !important;
    background-color: #dce3ff;
    color: #999;
    border-radius: 8px;
    border: 1.5px solid transparent;
}

.iconbox i {
    font-weight: bold
}

.iconbox.iconbox-xs {
    width: 24px;
    height: 24px;
    line-height: 24px !important;
    font-size: .6875rem;
}

.iconbox.iconbox-sm {
    width: 32px;
    height: 32px;
    line-height: 32px !important;
}

.iconbox.iconbox-lg,
.step-icon .iconbox {
    width: 48px;
    height: 48px;
    line-height: 48px !important;
    font-size: 1.25rem;
}

.iconbox.iconbox-xl {
    width: 64px;
    height: 64px;
    line-height: 64px !important;
    font-size: 1.5rem;
}

.iconbox.iconbox-xxl {
    width: 96px;
    height: 96px;
    line-height: 96px !important;
    font-size: 2rem;
}

.iconbox-circle {
    border-radius: 50%;
}

/* ---------------------------------- */
/* Background Soft Colors  
------------------------------------- */
.bg-soft-primary {
    background-color: rgba(55, 125, 255, 0.1) !important;
}

.bg-soft-secondary {
    background-color: rgba(119, 131, 143, 0.1) !important;
}

.bg-soft-success {
    background-color: rgba(0, 201, 167, 0.1) !important;
}

.bg-soft-info {
    background-color: rgba(0, 223, 252, 0.1) !important;
}

.bg-soft-warning {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.bg-soft-danger {
    background-color: rgba(222, 68, 55, 0.1) !important;
}

.bg-soft-light {
    background-color: rgba(248, 249, 250, 0.1) !important;
}

.bg-soft-dark {
    background-color: rgba(30, 32, 34, 0.1) !important;
}

.bg-soft-white {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.bg-soft-indigo {
    background-color: rgba(45, 21, 130, 0.1) !important;
}

.bg-soft-facebook {
    background-color: rgba(59, 89, 152, 0.1) !important;
}

.bg-soft-google {
    background-color: rgba(209, 65, 48, 0.1) !important;
}

.bg-soft-twitter {
    background-color: rgba(29, 161, 242, 0.1) !important;
}

.bg-soft-instagram {
    background-color: rgba(63, 114, 155, 0.1) !important;
}

.bg-soft-github {
    background-color: rgba(36, 41, 46, 0.1) !important;
}

.bg-soft-gray {
    background-color: rgba(248, 250, 253, 0.1) !important;
}

.bg-color-burn {
    background-color: rgba(62, 62, 62, 0.52);
    background-blend-mode: color-burn;
}

/* ---------------------------------- */
/* button  
------------------------------------- */
.button1 {
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    user-select: none;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1.5px solid transparent;
    position: relative;
    color: #223ca9;
    background: #f2f4fb;
    font-size: 14px;
    line-height: 35px;
    padding: 0 20px;
    border-radius: 6px;
    margin: 0 5px;
    height: 36px;
}

.button.block {
    display: block;
    width: 100%;
}

@media screen and (prefers-reduced-motion:reduce) {
    .button {
        transition: none
    }
}

.button :focus,
.button :hover {
    text-decoration: none
}

.button .focus,
.button :focus {
    outline: 0;
    box-shadow: 0 4px 15px rgba(81, 15, 168, .35)
}

.button .disabled,
.button :disabled {
    opacity: .65;
    box-shadow: none
}

.button :not(:disabled):not(.disabled).active,
.button :not(:disabled):not(.disabled):active {
    box-shadow: none
}

.button :not(:disabled):not(.disabled).active:focus,
.button :not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 4px 15px rgba(81, 15, 168, .35), none
}

a.button .disabled,
fieldset:disabled a.button {
    pointer-events: none
}

.button.circle {
    border-radius: 500px !important;
}

.button.button-icon {
    padding: 0px 9.5px;
}

.button.button-icon i {
    font-weight: 800;
}

/* ---------------------------------- */
/* Button size  
------------------------------------- */
.button.small {
    font-size: 13px;
    line-height: 30px;
    padding: 0 17px;
    height: 32px;
}

.button.large {
    font-size: 15px;
    line-height: 45px;
    padding: 0px 23px;
    height: 48px;
}

.button.xlarge {
    font-size: 15px;
    line-height: 45px;
    padding: 0px 22px;
    height: 47px;
}

@media (min-height: 600px) and (min-width: 767px) {
    .button.xlarge {
        font-size: 17px;
        line-height: 55px;
        padding: 0px 26px;
        height: 57px;
    }
}

/* ---------------------------------- */
/* Button components  
------------------------------------- */
.button.primary {
    color: #fff;
    background-color: #377dff;
    border-color: #377dff;
}

.button.soft-primary {
    color: #377dff;
    background-color: rgba(55, 125, 255, 0.1);
}

.button.primary:hover,
.button.primary:focus,
.button.soft-primary:hover,
.button.soft-primary:focus,
.button.primary.active {
    color: #fff;
    border-color: #045cff;
    background-color: #1164ff;
}

.button.primary.disabled {
    color: #fff;
    border-color: #377dff;
    background-color: #377dff;
    box-shadow: none !important;
    cursor: auto;
}

.button.soft-primary.disabled:hover {
    color: #377dff;
    background-color: rgba(55, 125, 255, 0.1);
    border-color: transparent;
    box-shadow: none !important;
    cursor: auto;
}

.button.secondary {
    color: #fff;
    background-color: #77838f;
    border-color: #77838f;
}

.button.soft-secondary {
    color: #77838f;
    background-color: rgba(119, 131, 143, 0.1);
    border-color: transparent;
}

.button.secondary:hover,
.button.secondary:focus,
.button.soft-secondary:hover,
.button.soft-secondary:focus,
.button.secondary.active {
    color: #fff;
    background-color: #65707b;
    border-color: #65707b;
}

.button.secondary.disabled {
    color: #fff;
    background-color: #77838f;
    border-color: #77838f;
    box-shadow: none !important;
    cursor: auto;
}

.button.soft-secondary.disabled:hover {
    color: #77838f;
    background-color: rgba(119, 131, 143, 0.1);
    border-color: transparent;
    box-shadow: none !important;
    cursor: auto;
}

.button.success {
    color: #fff;
    border-color: #62d76b;
    background-color: #62d76b;
}

.button.soft-success {
    color: #62d76b;
    border-color: transparent;
    background-color: rgba(0, 201, 167, 0.1);
}

.button.success:hover,
.button.success:focus,
.button.soft-success:hover,
.button.soft-success:focus,
.button.success.active {
    color: #fff;
    background-color: #71d879;
    border-color: #71d879;
}

.button.success.disabled {
    color: #fff;
    border-color: #00c9a7;
    background-color: #00c9a7;
    box-shadow: none !important;
    cursor: auto;
}

.button.soft-success.disabled:hover {
    color: #00c9a7;
    border-color: transparent;
    background-color: rgba(0, 201, 167, 0.1);
    box-shadow: none !important;
    cursor: auto;
}

.button.info {
    color: #fff;
    background-color: #00dffc;
    border-color: #00dffc;
}

.button.soft-info {
    color: #00dffc;
    background-color: rgba(0, 223, 252, 0.1);
    border-color: transparent;
}

.button.info:hover,
.button.info:focus,
.button.soft-info:hover,
.button.soft-info:focus,
.button.info.active {
    color: #fff;
    background-color: #00dffc;
    border-color: #00dffc;
}

.button.info.disabled {
    color: #fff;
    border-color: #00dffc;
    background-color: #00dffc;
    box-shadow: none !important;
    cursor: auto;
}

.button.soft-info.disabled:hover {
    color: #00dffc;
    background-color: rgba(0, 223, 252, 0.1);
    border-color: transparent;
    box-shadow: none !important;
    cursor: auto;
}

.button.warning {
    color: #fff;
    border-color: #ffc107;
    background-color: #ffc107;
}

.button.soft-warning {
    color: #ffc107;
    border-color: transparent;
    background-color: rgba(255, 193, 7, 0.1);
}

.button.warning:hover,
.button.warning:focus,
.button.soft-warning:hover,
.button.soft-warning:focus,
.button.warning.active {
    color: #fff;
    border-color: #fdc10a;
    background-color: #fdc10a
}

.button.warning.disabled {
    color: #fff;
    border-color: #ffc107;
    background-color: #ffc107;
    box-shadow: none !important;
    cursor: auto;
}

.button.soft-warning.disabled:hover {
    color: #ffc107;
    border-color: transparent;
    background-color: rgba(255, 193, 7, 0.1);
    box-shadow: none !important;
    cursor: auto;
}

.button.danger {
    color: #fff;
    border-color: #ff3b30;
    background-color: #ff3b30;
}

.button.soft-danger {
    color: #ff3b30;
    border-color: transparent;
    background-color: rgba(222, 68, 55, 0.1);
}

.button.danger:hover,
.button.danger:focus,
.button.soft-danger:hover,
.button.soft-danger:focus,
.button.danger.active {
    color: #fff;
    border-color: #f03b2c;
    background-color: #f03b2c
}

.button.danger.disabled {
    color: #fff;
    border-color: #ff3b30;
    background-color: #ff3b30;
    box-shadow: none !important;
    cursor: auto;
}

.button.soft-danger.disabled:hover {
    color: #ff3b30;
    border-color: transparent;
    background-color: rgba(222, 68, 55, 0.1);
    box-shadow: none !important;
    cursor: auto;
}

.button.light {
    color: #212529;
    border-color: #e3e7f7;
    background-color: #e3e7f7;
}

.button.soft-light {
    color: #e3e7f7;
    border-color: transparent;
    background-color: rgba(184, 193, 202, 0.17);
}

.button.light:hover,
.button.light:focus,
.button.soft-light:hover,
.button.soft-light:focus,
.button.light.active {
    color: #212529;
    border-color: #bbc8ff;
    background-color: #bbc8ff;
}

.button.light.disabled {
    color: #212529;
    border-color: #ced4da;
    background-color: #ced4da;
    box-shadow: none !important;
    cursor: auto;
}

.button.soft-light.disabled:hover {
    color: #b8bfc5;
    border-color: transparent;
    background-color: rgba(184, 193, 202, 0.17);
    box-shadow: none !important;
    cursor: auto;
}

.button.dark {
    color: #fff;
    border-color: #000;
    background-color: #000;
}

.button.soft-dark {
    color: #000;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.06);
}

.button.dark:hover,
.button.dark:focus,
.button.soft-dark:hover,
.button.soft-dark:focus,
.button.dark.active {
    color: #fff;
    border-color: #05172a;
    background-color: #161616;
}

.button.dark.disabled {
    color: #fff;
    border-color: #000;
    background-color: #000;
    box-shadow: none !important;
    cursor: auto;
}

.button.soft-dark.disabled:hover {
    color: #000;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.06);
    box-shadow: none !important;
    cursor: auto;
}

.button.white {
    color: #212529;
    border-color: #fff;
    background-color: #fff;
    box-shadow: none
}

.button.white:hover {
    color: #212529;
    border-color: #fff;
    background-color: #fff
}

.button.white.hover,
.button.white:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, .5)
}

.button.white.disabled {
    color: #212529;
    border-color: #fff;
    background-color: #fff;
    cursor: auto;
}

.button.grey {
    color: #fff;
    border-color: #3e416d;
    background-color: #3e416d;
}

.button.soft-grey {
    color: #3e416d;
    border-color: #f1f1f1;
    background-color: #f1f1f1;
}

.button.grey:hover,
.button.grey.active,
.button.soft-grey:hover,
.button.soft-grey.active {
    color: #fff;
    border-color: #484c7d;
    background-color: #484c7d;
}

.button.grey.disabled {
    color: #fff;
    border-color: #3e416d;
    background-color: #3e416d;
    box-shadow: none;
    cursor: auto;
}

.button.default {
    background: #377dff;
    border-color: #377dff;
    color: #ffffff;
}

.button.default:hover {
    color: #072442;
    background: rgba(20, 23, 28, .05);
    border-color: rgba(20, 23, 28, .05);
}

.button.transparent {
    background: 0 0 !important
}

.button.transparent:hover {
    border-color: transparent !important;
    background: 0 0 !important
}

/* ========================================================================
Outline Button Styles
========================================================================== */
.button.outline-primary {
    color: #377dff;
    border-color: #377dff;
    background-color: transparent;
    background-image: none
}

.button.outline-primary:hover {
    color: #fff;
    border-color: #377dff;
    background-color: #377dff
}

.button.outline-secondary {
    color: #77838f;
    border-color: #77838f;
    background-color: transparent;
    background-image: none
}

.button.outline-secondary:hover {
    color: #fff;
    border-color: #77838f;
    background-color: #77838f
}

.button.outline-success {
    color: #00c9a7;
    border-color: #00c9a7;
    background-color: transparent;
    background-image: none
}

.button.outline-success:hover {
    color: #fff;
    border-color: #00c9a7;
    background-color: #00c9a7
}

.button.outline-info {
    color: #00dffc;
    border-color: #00dffc;
    background-color: transparent;
    background-image: none
}

.button.outline-info:hover {
    color: #fff;
    border-color: #00dffc;
    background-color: #00dffc
}

.button.outline-warning {
    color: #ffc107;
    border-color: #ffc107;
    background-color: transparent;
    background-image: none
}

.button.outline-warning:hover {
    color: #fff;
    border-color: #ffc107;
    background-color: #ffc107
}

.button.outline-danger {
    color: #ff3b30;
    border-color: #ff3b30;
    background-color: transparent;
    background-image: none
}

.button.outline-danger:hover {
    color: #fff;
    border-color: #ff3b30;
    background-color: #ff3b30
}

.button.outline-light {
    color: #a3abb2;
    border-color: #a3abb2;
    background-color: transparent;
    background-image: none
}

.button.outline-light:hover {
    color: #212529;
    border-color: #ced4da;
    background-color: #ced4da
}

.button.outline-dark {
    color: #000;
    border-color: #000;
    background-color: transparent;
    background-image: none
}

.button.outline-dark:hover {
    color: #fff;
    border-color: #000;
    background-color: #000
}

.button.outline-white {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

.button.outline-white:hover {
    color: #000;
    border-color: #fff;
    background-color: #fff;
}

/*------------------------------------
Social Button Styles
------------------------------------*/
.button.soft-facebook {
    color: #3b5998;
    background: rgba(59, 89, 152, 0.1);
    border-color: transparent;
}

.button.facebook,
.button.facebook {
    color: #fff;
    background: #527bd2;
    border-color: #527bd2;
}

.button.facebook:hover,
.button.facebook:focus,
.button.soft-facebook:hover,
.button.soft-facebook:focus {
    color: #fff;
    background: #6190f3;
    border-color: #6190f3;
}

.button.linkedin {
    color: #fff;
    background: #3f729b;
    border-color: transparent;
}

.button.soft-linkedin {
    color: #3f729b;
    background: rgba(63, 114, 155, 0.1);
    border-color: transparent;
}

.button.linkedin:hover,
.button.linkedin:focus,
.button.soft-linkedin:hover,
.button.soft-linkedin:focus {
    color: #fff;
    background: #3f729b;
    border-color: #3f729b;
}

/* button icon label */
.button.icon-label {
    border: 0
}

.button.icon-label {
    position: relative
}

.button.icon-label .inner-icon {
    line-height: 1;
    position: absolute;
    width: 3em;
    height: 100%;
    margin: 0;
    text-align: center;
    border-radius: 0;
    background-color: rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.button.icon-label .inner-icon:not(:first-child) {
    top: 0;
    right: 0;
    border-block-start-right-radius: inherit;
    border-block-end-right-radius: inherit
}

.button.icon-label .inner-icon:not(:last-child) {
    top: 0;
    right: 0;
    border-block-start-left-radius: inherit;
    border-block-end-left-radius: inherit;
}

.button.icon-label .inner-text:not(:first-child) {
    padding-inline-end: 2em;
}

.button.icon-label .inner-text:not(:last-child) {
    padding-inline-end: 2em
}

.button.icon .inner-text:not(:first-child) {
    margin-inline-end: .75em
}

.button.icon .inner-text:not(:last-child) {
    margin-inline-start: .75em
}

/* Button animation  */
.button.animated-x,
.button.animated-y {
    position: relative;
    overflow: hidden !important
}

.button.animated-x .inner-visible {
    position: relative;
    right: 0;
    transition: right .3s ease 0s
}

.button.animated-x .inner-hidden {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    right: -100%;
    transition: right .3s ease 0s
}

.button.animated-x:hover .inner-hidden {
    right: 0
}

.button.animated-x:hover .inner-visible {
    right: 150%
}

.button.animated-y .inner-visible {
    position: relative;
    top: 0;
    transition: top .3s ease 0s
}

.button.animated-y .inner-hidden {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    bottom: -190%;
    left: 0;
    transition: bottom .3s ease 0s;
}

.button.animated-y:hover .inner-hidden {
    bottom: -16px;
}

.button.animated-y:hover .inner-visible {
    top: 100px
}

.button.icon-only {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* button groupss  */
.buttons {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    vertical-align: baseline;
}

.buttons .button {
    border-radius: 0;
    width: 10;
}

.buttons .button:first-child {
    border-inline-start: none;
    margin-inline-end: 0;
    border-block-start-left-radius: .28571429rem;
    border-block-end-left-radius: .28571429rem;
}

.buttons .button:last-child {
    border-block-start-right-radius: .28571429rem;
    border-block-end-right-radius: .28571429rem;
}

/* button conditions */
.buttons .or {
    position: relative;
    width: .3em;
    height: auto;
    z-index: 3;
}

.buttons .or:before {
    position: absolute;
    text-align: center;
    border-radius: 500rem;
    content: 'or';
    top: 50%;
    left: 50%;
    background-color: #fff;
    text-shadow: none;
    margin-block-start: -.89285714em;
    margin-inline-end: -.89285714em;
    width: 1.78571429em;
    height: 1.78571429em;
    line-height: 1.78571429em;
    color: rgba(0, 0, 0, .4);
    font-style: normal;
    font-weight: 700;
    -webkit-box-shadow: 0 0 0 1px transparent inset;
    box-shadow: 0 0 0 1px transparent inset;
}

.buttons .or[data-text]:before {
    content: attr(data-text);
}

/* button groups icon */
.button-group-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    vertical-align: baseline;
}

.button-group-icon .button {
    border-radius: 0
}

.button-group-icon .button:first-child {
    border-inline-start: none;
    margin-inline-end: 0;
    border-block-start-left-radius: .28571429rem;
    border-block-end-left-radius: .28571429rem;
}

.button-group-icon .button:last-child {
    border-block-start-right-radius: .28571429rem;
    border-block-end-right-radius: .28571429rem;
}

.delimiter:before {
    left: 50%;
    display: block;
    width: 80%;
    margin: auto;
    height: 1px;
    content: '';
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .2) 0, rgba(255, 255, 255, 0) 75%)
}

.delimiter {
    border: 0 !important
}

.delimiter-bottom,
.delimiter-top {
    position: relative
}

.delimiter-top:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 80%;
    height: 1px;
    margin-inline-end: -40%;
    content: '';
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .2) 0, rgba(255, 255, 255, 0) 75%)
}

.delimiter-bottom:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 80%;
    height: 1px;
    margin-inline-end: -40%;
    content: '';
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .2) 0, rgba(255, 255, 255, 0) 75%)
}

/* ---------------------------------- */
/*  Spacing  
------------------------------------- */
.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-block-start: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-inline-start: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-block-end: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-inline-end: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-block-start: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-inline-start: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-block-end: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-inline-end: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-block-start: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-inline-start: 1rem !important;
}

.mb-3,
.my-3 {
    margin-block-end: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-inline-end: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-block-start: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-inline-start: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-block-end: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-inline-end: 1.5rem !important;
}

.m-5 {
    margin: 2rem !important;
}

.mt-5,
.my-5 {
    margin-block-start: 2rem !important;
}

.mr-5,
.mx-5 {
    margin-inline-start: 2rem !important;
}

.mb-5,
.my-5 {
    margin-block-end: 2rem !important;
}

.ml-5,
.mx-5 {
    margin-inline-end: 2rem !important;
}

.m-6 {
    margin: 2.5rem !important;
}

.mt-6,
.my-6 {
    margin-block-start: 2.5rem !important;
}

.mr-6,
.mx-6 {
    margin-inline-start: 2.5rem !important;
}

.mb-6,
.my-6 {
    margin-block-end: 2.5rem !important;
}

.ml-6,
.mx-6 {
    margin-inline-end: 2.5rem !important;
}

.m-7 {
    margin: 3rem !important;
}

.mt-7,
.my-7 {
    margin-block-start: 3rem !important;
}

.mr-7,
.mx-7 {
    margin-inline-start: 3rem !important;
}

.mb-7,
.my-7 {
    margin-block-end: 3rem !important;
}

.ml-7,
.mx-7 {
    margin-inline-end: 3rem !important;
}

.m-8 {
    margin: 3.5rem !important;
}

.mt-8,
.my-8 {
    margin-block-start: 3.5rem !important;
}

.mr-8,
.mx-8 {
    margin-inline-start: 3.5rem !important;
}

.mb-8,
.my-8 {
    margin-block-end: 3.5rem !important;
}

.ml-8,
.mx-8 {
    margin-inline-end: 3.5rem !important;
}

.m-9 {
    margin: 4rem !important;
}

.mt-9,
.my-9 {
    margin-block-start: 4rem !important;
}

.mr-9,
.mx-9 {
    margin-inline-start: 4rem !important;
}

.mb-9,
.my-9 {
    margin-block-end: 4rem !important;
}

.ml-9,
.mx-9 {
    margin-inline-end: 4rem !important;
}

.m-10 {
    margin: 4.5rem !important;
}

.mt-10,
.my-10 {
    margin-block-start: 4.5rem !important;
}

.mr-10,
.mx-10 {
    margin-inline-start: 4.5rem !important;
}

.mb-10,
.my-10 {
    margin-block-end: 4.5rem !important;
}

.ml-10,
.mx-10 {
    margin-inline-end: 4.5rem !important;
}

.m-11 {
    margin: 5rem !important;
}

.mt-11,
.my-11 {
    margin-block-start: 5rem !important;
}

.mr-11,
.mx-11 {
    margin-inline-start: 5rem !important;
}

.mb-11,
.my-11 {
    margin-block-end: 5rem !important;
}

.ml-11,
.mx-11 {
    margin-inline-end: 5rem !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-block-start: 0 !important;
}

.mr-0,
.mx-0 {
    margin-inline-start: 0 !important;
}

.mb-0,
.my-0 {
    margin-block-end: 0 !important;
}

.ml-0,
.mx-0 {
    margin-inline-end: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-block-start: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-inline-end: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-block-end: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-inline-start: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-block-start: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-inline-end: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-block-end: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-inline-start: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-block-start: 1rem !important;
}

.pr-3,
.px-3 {
    padding-inline-end: 1rem !important;
}

.pb-3,
.py-3 {
    padding-block-end: 1rem !important;
}

.pl-3,
.px-3 {
    padding-inline-start: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-block-start: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-inline-end: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-block-end: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-inline-start: 1.5rem !important;
}

.p-5 {
    padding: 2rem !important;
}

.pt-5,
.py-5 {
    padding-block-start: 2rem !important;
}

.pr-5,
.px-5 {
    padding-inline-end: 2rem !important;
}

.pb-5,
.py-5 {
    padding-block-end: 2rem !important;
}

.pl-5,
.px-5 {
    padding-inline-start: 2rem !important;
}

.p-6 {
    padding: 2.5rem !important;
}

.pt-6,
.py-6 {
    padding-block-start: 2.5rem !important;
}

.pr-6,
.px-6 {
    padding-inline-end: 2.5rem !important;
}

.pb-6,
.py-6 {
    padding-block-end: 2.5rem !important;
}

.pl-6,
.px-6 {
    padding-inline-start: 2.5rem !important;
}

.p-7 {
    padding: 3rem !important;
}

.pt-7,
.py-7 {
    padding-block-start: 3rem !important;
}

.pr-7,
.px-7 {
    padding-inline-end: 3rem !important;
}

.pb-7,
.py-7 {
    padding-block-end: 3rem !important;
}

.pl-7,
.px-7 {
    padding-inline-start: 3rem !important;
}

.p-8 {
    padding: 3.5rem !important;
}

.pt-8,
.py-8 {
    padding-block-start: 3.5rem !important;
}

.pr-8,
.px-8 {
    padding-inline-end: 3.5rem !important;
}

.pb-8,
.py-8 {
    padding-block-end: 3.5rem !important;
}

.pl-8,
.px-8 {
    padding-inline-start: 3.5rem !important;
}

.p-9 {
    padding: 4rem !important;
}

.pt-9,
.py-9 {
    padding-block-start: 4rem !important;
}

.pr-9,
.px-9 {
    padding-inline-end: 4rem !important;
}

.pb-9,
.py-9 {
    padding-block-end: 4rem !important;
}

.pl-9,
.px-9 {
    padding-inline-start: 4rem !important;
}

.p-10 {
    padding: 4.5rem !important;
}

.pt-10,
.py-10 {
    padding-block-start: 4.5rem !important;
}

.pr-10,
.px-10 {
    padding-inline-end: 4.5rem !important;
}

.pb-10,
.py-10 {
    padding-block-end: 4.5rem !important;
}

.pl-10,
.px-10 {
    padding-inline-start: 4.5rem !important;
}

.p-11 {
    padding: 5rem !important;
}

.pt-11,
.py-11 {
    padding-block-start: 5rem !important;
}

.pr-11,
.px-11 {
    padding-inline-end: 5rem !important;
}

.pb-11,
.py-11 {
    padding-block-end: 5rem !important;
}

.pl-11,
.px-11 {
    padding-inline-start: 5rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-block-start: 0 !important;
}

.pr-0,
.px-0 {
    padding-inline-end: 0 !important;
}

.pb-0,
.py-0 {
    padding-block-end: 0 !important;
}

.pl-0,
.px-0 {
    padding-inline-start: 0 !important;
}

.m-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
}

@media (max-width: 768px) {
    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-block-start: 0 !important;
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-inline-start: 0 !important;
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-block-end: 0 !important;
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-inline-end: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-block-start: 0.25rem !important;
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-inline-start: 0.25rem !important;
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-block-end: 0.25rem !important;
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-inline-end: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-block-start: 0.5rem !important;
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-inline-start: 0.5rem !important;
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-block-end: 0.5rem !important;
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-inline-end: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-block-start: 1rem !important;
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-inline-start: 1rem !important;
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-block-end: 1rem !important;
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-inline-end: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-block-start: 1.5rem !important;
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-inline-start: 1.5rem !important;
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-block-end: 1.5rem !important;
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-inline-end: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 2rem !important;
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-block-start: 2rem !important;
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-inline-start: 2rem !important;
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-block-end: 2rem !important;
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-inline-end: 2rem !important;
    }

    .m-sm-6 {
        margin: 2.5rem !important;
    }

    .mt-sm-6,
    .my-sm-6 {
        margin-block-start: 2.5rem !important;
    }

    .mr-sm-6,
    .mx-sm-6 {
        margin-inline-start: 2.5rem !important;
    }

    .mb-sm-6,
    .my-sm-6 {
        margin-block-end: 2.5rem !important;
    }

    .ml-sm-6,
    .mx-sm-6 {
        margin-inline-end: 2.5rem !important;
    }

    .m-sm-7 {
        margin: 3rem !important;
    }

    .mt-sm-7,
    .my-sm-7 {
        margin-block-start: 3rem !important;
    }

    .mr-sm-7,
    .mx-sm-7 {
        margin-inline-start: 3rem !important;
    }

    .mb-sm-7,
    .my-sm-7 {
        margin-block-end: 3rem !important;
    }

    .ml-sm-7,
    .mx-sm-7 {
        margin-inline-end: 3rem !important;
    }

    .m-sm-8 {
        margin: 3.5rem !important;
    }

    .mt-sm-8,
    .my-sm-8 {
        margin-block-start: 3.5rem !important;
    }

    .mr-sm-8,
    .mx-sm-8 {
        margin-inline-start: 3.5rem !important;
    }

    .mb-sm-8,
    .my-sm-8 {
        margin-block-end: 3.5rem !important;
    }

    .ml-sm-8,
    .mx-sm-8 {
        margin-inline-end: 3.5rem !important;
    }

    .m-sm-9 {
        margin: 4rem !important;
    }

    .mt-sm-9,
    .my-sm-9 {
        margin-block-start: 4rem !important;
    }

    .mr-sm-9,
    .mx-sm-9 {
        margin-inline-start: 4rem !important;
    }

    .mb-sm-9,
    .my-sm-9 {
        margin-block-end: 4rem !important;
    }

    .ml-sm-9,
    .mx-sm-9 {
        margin-inline-end: 4rem !important;
    }

    .m-sm-10 {
        margin: 4.5rem !important;
    }

    .mt-sm-10,
    .my-sm-10 {
        margin-block-start: 4.5rem !important;
    }

    .mr-sm-10,
    .mx-sm-10 {
        margin-inline-start: 4.5rem !important;
    }

    .mb-sm-10,
    .my-sm-10 {
        margin-block-end: 4.5rem !important;
    }

    .ml-sm-10,
    .mx-sm-10 {
        margin-inline-end: 4.5rem !important;
    }

    .m-sm-11 {
        margin: 5rem !important;
    }

    .mt-sm-11,
    .my-sm-11 {
        margin-block-start: 5rem !important;
    }

    .mr-sm-11,
    .mx-sm-11 {
        margin-inline-start: 5rem !important;
    }

    .mb-sm-11,
    .my-sm-11 {
        margin-block-end: 5rem !important;
    }

    .ml-sm-11,
    .mx-sm-11 {
        margin-inline-end: 5rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-block-start: 0 !important;
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-inline-end: 0 !important;
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-block-end: 0 !important;
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-inline-start: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-block-start: 0.25rem !important;
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-inline-end: 0.25rem !important;
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-block-end: 0.25rem !important;
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-inline-start: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-block-start: 0.5rem !important;
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-inline-end: 0.5rem !important;
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-block-end: 0.5rem !important;
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-inline-start: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-block-start: 1rem !important;
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-inline-end: 1rem !important;
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-block-end: 1rem !important;
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-inline-start: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-block-start: 1.5rem !important;
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-inline-end: 1.5rem !important;
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-block-end: 1.5rem !important;
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-inline-start: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 2rem !important;
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-block-start: 2rem !important;
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-inline-end: 2rem !important;
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-block-end: 2rem !important;
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-inline-start: 2rem !important;
    }

    .p-sm-6 {
        padding: 2.5rem !important;
    }

    .pt-sm-6,
    .py-sm-6 {
        padding-block-start: 2.5rem !important;
    }

    .pr-sm-6,
    .px-sm-6 {
        padding-inline-end: 2.5rem !important;
    }

    .pb-sm-6,
    .py-sm-6 {
        padding-block-end: 2.5rem !important;
    }

    .pl-sm-6,
    .px-sm-6 {
        padding-inline-start: 2.5rem !important;
    }

    .p-sm-7 {
        padding: 3rem !important;
    }

    .pt-sm-7,
    .py-sm-7 {
        padding-block-start: 3rem !important;
    }

    .pr-sm-7,
    .px-sm-7 {
        padding-inline-end: 3rem !important;
    }

    .pb-sm-7,
    .py-sm-7 {
        padding-block-end: 3rem !important;
    }

    .pl-sm-7,
    .px-sm-7 {
        padding-inline-start: 3rem !important;
    }

    .p-sm-8 {
        padding: 3.5rem !important;
    }

    .pt-sm-8,
    .py-sm-8 {
        padding-block-start: 3.5rem !important;
    }

    .pr-sm-8,
    .px-sm-8 {
        padding-inline-end: 3.5rem !important;
    }

    .pb-sm-8,
    .py-sm-8 {
        padding-block-end: 3.5rem !important;
    }

    .pl-sm-8,
    .px-sm-8 {
        padding-inline-start: 3.5rem !important;
    }

    .p-sm-9 {
        padding: 4rem !important;
    }

    .pt-sm-9,
    .py-sm-9 {
        padding-block-start: 4rem !important;
    }

    .pr-sm-9,
    .px-sm-9 {
        padding-inline-end: 4rem !important;
    }

    .pb-sm-9,
    .py-sm-9 {
        padding-block-end: 4rem !important;
    }

    .pl-sm-9,
    .px-sm-9 {
        padding-inline-start: 4rem !important;
    }

    .p-sm-10 {
        padding: 4.5rem !important;
    }

    .pt-sm-10,
    .py-sm-10 {
        padding-block-start: 4.5rem !important;
    }

    .pr-sm-10,
    .px-sm-10 {
        padding-inline-end: 4.5rem !important;
    }

    .pb-sm-10,
    .py-sm-10 {
        padding-block-end: 4.5rem !important;
    }

    .pl-sm-10,
    .px-sm-10 {
        padding-inline-start: 4.5rem !important;
    }

    .p-sm-11 {
        padding: 5rem !important;
    }

    .pt-sm-11,
    .py-sm-11 {
        padding-block-start: 5rem !important;
    }

    .pr-sm-11,
    .px-sm-11 {
        padding-inline-end: 5rem !important;
    }

    .pb-sm-11,
    .py-sm-11 {
        padding-block-end: 5rem !important;
    }

    .pl-sm-11,
    .px-sm-11 {
        padding-inline-start: 5rem !important;
    }
}

@media (max-width: 992px) {
    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0,
    .my-md-0 {
        margin-block-start: 0 !important;
    }

    .mr-md-0,
    .mx-md-0 {
        margin-inline-start: 0 !important;
    }

    .mb-md-0,
    .my-md-0 {
        margin-block-end: 0 !important;
    }

    .ml-md-0,
    .mx-md-0 {
        margin-inline-end: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .mt-md-1,
    .my-md-1 {
        margin-block-start: 0.25rem !important;
    }

    .mr-md-1,
    .mx-md-1 {
        margin-inline-start: 0.25rem !important;
    }

    .mb-md-1,
    .my-md-1 {
        margin-block-end: 0.25rem !important;
    }

    .ml-md-1,
    .mx-md-1 {
        margin-inline-end: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .mt-md-2,
    .my-md-2 {
        margin-block-start: 0.5rem !important;
    }

    .mr-md-2,
    .mx-md-2 {
        margin-inline-start: 0.5rem !important;
    }

    .mb-md-2,
    .my-md-2 {
        margin-block-end: 0.5rem !important;
    }

    .ml-md-2,
    .mx-md-2 {
        margin-inline-end: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .mt-md-3,
    .my-md-3 {
        margin-block-start: 1rem !important;
    }

    .mr-md-3,
    .mx-md-3 {
        margin-inline-start: 1rem !important;
    }

    .mb-md-3,
    .my-md-3 {
        margin-block-end: 1rem !important;
    }

    .ml-md-3,
    .mx-md-3 {
        margin-inline-end: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .mt-md-4,
    .my-md-4 {
        margin-block-start: 1.5rem !important;
    }

    .mr-md-4,
    .mx-md-4 {
        margin-inline-start: 1.5rem !important;
    }

    .mb-md-4,
    .my-md-4 {
        margin-block-end: 1.5rem !important;
    }

    .ml-md-4,
    .mx-md-4 {
        margin-inline-end: 1.5rem !important;
    }

    .m-md-5 {
        margin: 2rem !important;
    }

    .mt-md-5,
    .my-md-5 {
        margin-block-start: 2rem !important;
    }

    .mr-md-5,
    .mx-md-5 {
        margin-inline-start: 2rem !important;
    }

    .mb-md-5,
    .my-md-5 {
        margin-block-end: 2rem !important;
    }

    .ml-md-5,
    .mx-md-5 {
        margin-inline-end: 2rem !important;
    }

    .m-md-6 {
        margin: 2.5rem !important;
    }

    .mt-md-6,
    .my-md-6 {
        margin-block-start: 2.5rem !important;
    }

    .mr-md-6,
    .mx-md-6 {
        margin-inline-start: 2.5rem !important;
    }

    .mb-md-6,
    .my-md-6 {
        margin-block-end: 2.5rem !important;
    }

    .ml-md-6,
    .mx-md-6 {
        margin-inline-end: 2.5rem !important;
    }

    .m-md-7 {
        margin: 3rem !important;
    }

    .mt-md-7,
    .my-md-7 {
        margin-block-start: 3rem !important;
    }

    .mr-md-7,
    .mx-md-7 {
        margin-inline-start: 3rem !important;
    }

    .mb-md-7,
    .my-md-7 {
        margin-block-end: 3rem !important;
    }

    .ml-md-7,
    .mx-md-7 {
        margin-inline-end: 3rem !important;
    }

    .m-md-8 {
        margin: 3.5rem !important;
    }

    .mt-md-8,
    .my-md-8 {
        margin-block-start: 3.5rem !important;
    }

    .mr-md-8,
    .mx-md-8 {
        margin-inline-start: 3.5rem !important;
    }

    .mb-md-8,
    .my-md-8 {
        margin-block-end: 3.5rem !important;
    }

    .ml-md-8,
    .mx-md-8 {
        margin-inline-end: 3.5rem !important;
    }

    .m-md-9 {
        margin: 4rem !important;
    }

    .mt-md-9,
    .my-md-9 {
        margin-block-start: 4rem !important;
    }

    .mr-md-9,
    .mx-md-9 {
        margin-inline-start: 4rem !important;
    }

    .mb-md-9,
    .my-md-9 {
        margin-block-end: 4rem !important;
    }

    .ml-md-9,
    .mx-md-9 {
        margin-inline-end: 4rem !important;
    }

    .m-md-10 {
        margin: 4.5rem !important;
    }

    .mt-md-10,
    .my-md-10 {
        margin-block-start: 4.5rem !important;
    }

    .mr-md-10,
    .mx-md-10 {
        margin-inline-start: 4.5rem !important;
    }

    .mb-md-10,
    .my-md-10 {
        margin-block-end: 4.5rem !important;
    }

    .ml-md-10,
    .mx-md-10 {
        margin-inline-end: 4.5rem !important;
    }

    .m-md-11 {
        margin: 5rem !important;
    }

    .mt-md-11,
    .my-md-11 {
        margin-block-start: 5rem !important;
    }

    .mr-md-11,
    .mx-md-11 {
        margin-inline-start: 5rem !important;
    }

    .mb-md-11,
    .my-md-11 {
        margin-block-end: 5rem !important;
    }

    .ml-md-11,
    .mx-md-11 {
        margin-inline-end: 5rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0,
    .py-md-0 {
        padding-block-start: 0 !important;
    }

    .pr-md-0,
    .px-md-0 {
        padding-inline-end: 0 !important;
    }

    .pb-md-0,
    .py-md-0 {
        padding-block-end: 0 !important;
    }

    .pl-md-0,
    .px-md-0 {
        padding-inline-start: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .pt-md-1,
    .py-md-1 {
        padding-block-start: 0.25rem !important;
    }

    .pr-md-1,
    .px-md-1 {
        padding-inline-end: 0.25rem !important;
    }

    .pb-md-1,
    .py-md-1 {
        padding-block-end: 0.25rem !important;
    }

    .pl-md-1,
    .px-md-1 {
        padding-inline-start: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .pt-md-2,
    .py-md-2 {
        padding-block-start: 0.5rem !important;
    }

    .pr-md-2,
    .px-md-2 {
        padding-inline-end: 0.5rem !important;
    }

    .pb-md-2,
    .py-md-2 {
        padding-block-end: 0.5rem !important;
    }

    .pl-md-2,
    .px-md-2 {
        padding-inline-start: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .pt-md-3,
    .py-md-3 {
        padding-block-start: 1rem !important;
    }

    .pr-md-3,
    .px-md-3 {
        padding-inline-end: 1rem !important;
    }

    .pb-md-3,
    .py-md-3 {
        padding-block-end: 1rem !important;
    }

    .pl-md-3,
    .px-md-3 {
        padding-inline-start: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .pt-md-4,
    .py-md-4 {
        padding-block-start: 1.5rem !important;
    }

    .pr-md-4,
    .px-md-4 {
        padding-inline-end: 1.5rem !important;
    }

    .pb-md-4,
    .py-md-4 {
        padding-block-end: 1.5rem !important;
    }

    .pl-md-4,
    .px-md-4 {
        padding-inline-start: 1.5rem !important;
    }

    .p-md-5 {
        padding: 2rem !important;
    }

    .pt-md-5,
    .py-md-5 {
        padding-block-start: 2rem !important;
    }

    .pr-md-5,
    .px-md-5 {
        padding-inline-end: 2rem !important;
    }

    .pb-md-5,
    .py-md-5 {
        padding-block-end: 2rem !important;
    }

    .pl-md-5,
    .px-md-5 {
        padding-inline-start: 2rem !important;
    }

    .p-md-6 {
        padding: 2.5rem !important;
    }

    .pt-md-6,
    .py-md-6 {
        padding-block-start: 2.5rem !important;
    }

    .pr-md-6,
    .px-md-6 {
        padding-inline-end: 2.5rem !important;
    }

    .pb-md-6,
    .py-md-6 {
        padding-block-end: 2.5rem !important;
    }

    .pl-md-6,
    .px-md-6 {
        padding-inline-start: 2.5rem !important;
    }

    .p-md-7 {
        padding: 3rem !important;
    }

    .pt-md-7,
    .py-md-7 {
        padding-block-start: 3rem !important;
    }

    .pr-md-7,
    .px-md-7 {
        padding-inline-end: 3rem !important;
    }

    .pb-md-7,
    .py-md-7 {
        padding-block-end: 3rem !important;
    }

    .pl-md-7,
    .px-md-7 {
        padding-inline-start: 3rem !important;
    }

    .p-md-8 {
        padding: 3.5rem !important;
    }

    .pt-md-8,
    .py-md-8 {
        padding-block-start: 3.5rem !important;
    }

    .pr-md-8,
    .px-md-8 {
        padding-inline-end: 3.5rem !important;
    }

    .pb-md-8,
    .py-md-8 {
        padding-block-end: 3.5rem !important;
    }

    .pl-md-8,
    .px-md-8 {
        padding-inline-start: 3.5rem !important;
    }

    .p-md-9 {
        padding: 4rem !important;
    }

    .pt-md-9,
    .py-md-9 {
        padding-block-start: 4rem !important;
    }

    .pr-md-9,
    .px-md-9 {
        padding-inline-end: 4rem !important;
    }

    .pb-md-9,
    .py-md-9 {
        padding-block-end: 4rem !important;
    }

    .pl-md-9,
    .px-md-9 {
        padding-inline-start: 4rem !important;
    }

    .p-md-10 {
        padding: 4.5rem !important;
    }

    .pt-md-10,
    .py-md-10 {
        padding-block-start: 4.5rem !important;
    }

    .pr-md-10,
    .px-md-10 {
        padding-inline-end: 4.5rem !important;
    }

    .pb-md-10,
    .py-md-10 {
        padding-block-end: 4.5rem !important;
    }

    .pl-md-10,
    .px-md-10 {
        padding-inline-start: 4.5rem !important;
    }

    .p-md-11 {
        padding: 5rem !important;
    }

    .pt-md-11,
    .py-md-11 {
        padding-block-start: 5rem !important;
    }

    .pr-md-11,
    .px-md-11 {
        padding-inline-end: 5rem !important;
    }

    .pb-md-11,
    .py-md-11 {
        padding-block-end: 5rem !important;
    }

    .pl-md-11,
    .px-md-11 {
        padding-inline-start: 5rem !important;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-block-start: 0 !important;
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-inline-start: 0 !important;
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-block-end: 0 !important;
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-inline-end: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-block-start: 0.25rem !important;
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-inline-start: 0.25rem !important;
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-block-end: 0.25rem !important;
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-inline-end: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-block-start: 0.5rem !important;
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-inline-start: 0.5rem !important;
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-block-end: 0.5rem !important;
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-inline-end: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-block-start: 1rem !important;
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-inline-start: 1rem !important;
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-block-end: 1rem !important;
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-inline-end: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-block-start: 1.5rem !important;
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-inline-start: 1.5rem !important;
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-block-end: 1.5rem !important;
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-inline-end: 1.5rem !important;
    }

    .m-lg-5 {
        margin: 2rem !important;
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-block-start: 2rem !important;
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-inline-start: 2rem !important;
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-block-end: 2rem !important;
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-inline-end: 2rem !important;
    }

    .m-lg-6 {
        margin: 2.5rem !important;
    }

    .mt-lg-6,
    .my-lg-6 {
        margin-block-start: 2.5rem !important;
    }

    .mr-lg-6,
    .mx-lg-6 {
        margin-inline-start: 2.5rem !important;
    }

    .mb-lg-6,
    .my-lg-6 {
        margin-block-end: 2.5rem !important;
    }

    .ml-lg-6,
    .mx-lg-6 {
        margin-inline-end: 2.5rem !important;
    }

    .m-lg-7 {
        margin: 3rem !important;
    }

    .mt-lg-7,
    .my-lg-7 {
        margin-block-start: 3rem !important;
    }

    .mr-lg-7,
    .mx-lg-7 {
        margin-inline-start: 3rem !important;
    }

    .mb-lg-7,
    .my-lg-7 {
        margin-block-end: 3rem !important;
    }

    .ml-lg-7,
    .mx-lg-7 {
        margin-inline-end: 3rem !important;
    }

    .m-lg-8 {
        margin: 3.5rem !important;
    }

    .mt-lg-8,
    .my-lg-8 {
        margin-block-start: 3.5rem !important;
    }

    .mr-lg-8,
    .mx-lg-8 {
        margin-inline-start: 3.5rem !important;
    }

    .mb-lg-8,
    .my-lg-8 {
        margin-block-end: 3.5rem !important;
    }

    .ml-lg-8,
    .mx-lg-8 {
        margin-inline-end: 3.5rem !important;
    }

    .m-lg-9 {
        margin: 4rem !important;
    }

    .mt-lg-9,
    .my-lg-9 {
        margin-block-start: 4rem !important;
    }

    .mr-lg-9,
    .mx-lg-9 {
        margin-inline-start: 4rem !important;
    }

    .mb-lg-9,
    .my-lg-9 {
        margin-block-end: 4rem !important;
    }

    .ml-lg-9,
    .mx-lg-9 {
        margin-inline-end: 4rem !important;
    }

    .m-lg-10 {
        margin: 4.5rem !important;
    }

    .mt-lg-10,
    .my-lg-10 {
        margin-block-start: 4.5rem !important;
    }

    .mr-lg-10,
    .mx-lg-10 {
        margin-inline-start: 4.5rem !important;
    }

    .mb-lg-10,
    .my-lg-10 {
        margin-block-end: 4.5rem !important;
    }

    .ml-lg-10,
    .mx-lg-10 {
        margin-inline-end: 4.5rem !important;
    }

    .m-lg-11 {
        margin: 5rem !important;
    }

    .mt-lg-11,
    .my-lg-11 {
        margin-block-start: 5rem !important;
    }

    .mr-lg-11,
    .mx-lg-11 {
        margin-inline-start: 5rem !important;
    }

    .mb-lg-11,
    .my-lg-11 {
        margin-block-end: 5rem !important;
    }

    .ml-lg-11,
    .mx-lg-11 {
        margin-inline-end: 5rem !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-block-start: 0 !important;
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-inline-end: 0 !important;
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-block-end: 0 !important;
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-inline-start: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-block-start: 0.25rem !important;
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-inline-end: 0.25rem !important;
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-block-end: 0.25rem !important;
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-inline-start: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-block-start: 0.5rem !important;
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-inline-end: 0.5rem !important;
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-block-end: 0.5rem !important;
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-inline-start: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-block-start: 1rem !important;
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-inline-end: 1rem !important;
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-block-end: 1rem !important;
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-inline-start: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-block-start: 1.5rem !important;
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-inline-end: 1.5rem !important;
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-block-end: 1.5rem !important;
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-inline-start: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 2rem !important;
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-block-start: 2rem !important;
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-inline-end: 2rem !important;
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-block-end: 2rem !important;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-inline-start: 2rem !important;
    }

    .p-lg-6 {
        padding: 2.5rem !important;
    }

    .pt-lg-6,
    .py-lg-6 {
        padding-block-start: 2.5rem !important;
    }

    .pr-lg-6,
    .px-lg-6 {
        padding-inline-end: 2.5rem !important;
    }

    .pb-lg-6,
    .py-lg-6 {
        padding-block-end: 2.5rem !important;
    }

    .pl-lg-6,
    .px-lg-6 {
        padding-inline-start: 2.5rem !important;
    }

    .p-lg-7 {
        padding: 3rem !important;
    }

    .pt-lg-7,
    .py-lg-7 {
        padding-block-start: 3rem !important;
    }

    .pr-lg-7,
    .px-lg-7 {
        padding-inline-end: 3rem !important;
    }

    .pb-lg-7,
    .py-lg-7 {
        padding-block-end: 3rem !important;
    }

    .pl-lg-7,
    .px-lg-7 {
        padding-inline-start: 3rem !important;
    }

    .p-lg-8 {
        padding: 3.5rem !important;
    }

    .pt-lg-8,
    .py-lg-8 {
        padding-block-start: 3.5rem !important;
    }

    .pr-lg-8,
    .px-lg-8 {
        padding-inline-end: 3.5rem !important;
    }

    .pb-lg-8,
    .py-lg-8 {
        padding-block-end: 3.5rem !important;
    }

    .pl-lg-8,
    .px-lg-8 {
        padding-inline-start: 3.5rem !important;
    }

    .p-lg-9 {
        padding: 4rem !important;
    }

    .pt-lg-9,
    .py-lg-9 {
        padding-block-start: 4rem !important;
    }

    .pr-lg-9,
    .px-lg-9 {
        padding-inline-end: 4rem !important;
    }

    .pb-lg-9,
    .py-lg-9 {
        padding-block-end: 4rem !important;
    }

    .pl-lg-9,
    .px-lg-9 {
        padding-inline-start: 4rem !important;
    }

    .p-lg-10 {
        padding: 4.5rem !important;
    }

    .pt-lg-10,
    .py-lg-10 {
        padding-block-start: 4.5rem !important;
    }

    .pr-lg-10,
    .px-lg-10 {
        padding-inline-end: 4.5rem !important;
    }

    .pb-lg-10,
    .py-lg-10 {
        padding-block-end: 4.5rem !important;
    }

    .pl-lg-10,
    .px-lg-10 {
        padding-inline-start: 4.5rem !important;
    }

    .p-lg-11 {
        padding: 5rem !important;
    }

    .pt-lg-11,
    .py-lg-11 {
        padding-block-start: 5rem !important;
    }

    .pr-lg-11,
    .px-lg-11 {
        padding-inline-end: 5rem !important;
    }

    .pb-lg-11,
    .py-lg-11 {
        padding-block-end: 5rem !important;
    }

    .pl-lg-11,
    .px-lg-11 {
        padding-inline-start: 5rem !important;
    }
}

.m-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

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

.font-weight-lighter {
    font-weight: lighter !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-bolder {
    font-weight: bolder !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #377dff !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #0052ea !important;
}

.text-secondary {
    color: #77838f !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #545d66 !important;
}

.text-success {
    color: #007791 !important;
}

a.text-success:hover,
a.text-success:focus {
    color: #2f2f2f !important;
}

.text-info {
    color: #00dffc !important;
}

a.text-info:hover,
a.text-info:focus {
    color: #009bb0 !important;
}

.text-warning {
    color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #ba8b00 !important;
}

.text-danger {
    color: #de4437 !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #ac281c !important;
}

.text-light {
    color: #d0d9da !important;
}

a.text-light:hover,
a.text-light:focus {
    color: #464646 !important;
}

.text-dark {
    color: #1e2022 !important;
}

a.text-dark:hover,
a.text-dark:focus {
    color: black !important;
}

.text-white {
    color: #fff !important;
}

a.text-white:hover,
a.text-white:focus {
    color: #d9d9d9 !important;
}

.text-indigo {
    color: #2d1582 !important;
}

a.text-indigo:hover,
a.text-indigo:focus {
    color: #160a40 !important;
}

.text-muted {
    color: #8c98a4 !important;
}

.text-grey {
    color: #3e416d !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.w-15 {
    width: 15% !important;
}

.w-20 {
    width: 20% !important;
}

.w-30 {
    width: 30% !important;
}

.w-35 {
    width: 35% !important;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.w-65 {
    width: 65% !important;
}

.w-80 {
    width: 80% !important;
}

.w-85 {
    width: 85% !important;
}

/****************
Simplebar  Styles
****************/
[data-simplebar] {
    position: relative;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
    height: 100%;
}

.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}

.simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 0;
}

.simplebar-offset {
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}

.simplebar-content {
    direction: inherit;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    visibility: visible;
    overflow: scroll;
    max-width: 100%;
    max-height: 100%;
}

.simplebar-placeholder {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
    box-sizing: inherit !important;
    height: 100%;
    width: inherit;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    flex-grow: inherit;
    flex-shrink: 0;
    flex-basis: 0;
}

.simplebar-height-auto-observer {
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 1000%;
    width: 1000%;
    min-height: 1px;
    min-width: 1px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
}

.simplebar-scrollbar {
    position: absolute;
    right: 0px;
    width: 5px;
    min-height: 10px;
}

.simplebar-scrollbar:before {
    position: absolute;
    content: "";
    border-radius: 7px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity .2s linear;
    transition: opacity 0.2s, background-color 0.3s;
    background-color: #545252;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
    opacity: .5;
    transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
    top: 0;
    width: 10px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    top: 2px;
    bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
    left: 0;
    height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
    height: 100%;
    left: 2px;
    right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    right: auto;
    left: 0;
    top: 2px;
    height: 7px;
    min-height: 0;
    min-width: 10px;
    width: auto;
}

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0;
}

.hs-dummy-scrollbar-size {
    direction: rtl;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    height: 500px;
    width: 500px;
    overflow-y: hidden;
    overflow-x: scroll;
}

/* ---------------------------------- */
/* nprogress
------------------------------------- */
/* Make clicks pass-through  */
#nprogress {
    pointer-events: none;
    -webkit-pointer-events: none;
}

#nprogress .bar {
    background: #3e416d;
    position: fixed;
    z-index: 111000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

/* Fancy blur effect   */
#nprogress .peg {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #6de877, 0 0 5px #8bca90;
    opacity: 1.0;
    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -moz-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    -o-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner  */
#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 110000;
    top: 25px;
    right: 25px;
}

/* spinner 
#nprogress .spinner-icon {
width: 14px;
height: 14px;
border: solid 3px transparent;
border-block-start-color: #29d;
border-inline-start-color: #29d;
border-radius: 78px;
-webkit-animation: nprogress-spinner 400ms linear infinite;
-moz-animation: nprogress-spinner 400ms linear infinite;
-ms-animation: nprogress-spinner 400ms linear infinite;
-o-animation: nprogress-spinner 400ms linear infinite;
animation: nprogress-spinner 400ms linear infinite;
}

@-webkit-keyframes nprogress-spinner {
0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
}

@-moz-keyframes nprogress-spinner {
0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}

100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
}
}

@-o-keyframes nprogress-spinner {
0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
}

@-ms-keyframes nprogress-spinner {
0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
}

@keyframes nprogress-spinner {
0% {
    transform: rotate(0deg);
    transform: rotate(0deg);
}

100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
}
}

*/
/* ---------------------------------- */
/* Icons Cheatsheet Styles
------------------------------------- */
.icon-set-container {
    display: block;
    width: calc(100% + 30px);
    right: -15px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.glyph.fs1 {
    position: relative;
    font-size: 20px;
    margin: 10px 15px;
    background-color: #fff;
    box-shadow: -10px 8px 10px -7px rgba(25, 42, 70, .13);
    border-radius: 4px;
    flex: 1 1 calc(18% - 36px);
    align-content: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 15px 15px;
    padding-inline-start: 0;
    transition: 0.3s;
    color: #666;
    border-radius: 6px;
    overflow: hidden;
}

.glyph.fs1:hover {
    transform: translateY(-5px);
    background-color: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.glyph.fs1:hover span:not([class*="mls"]) {
    background-color: #fff;
    color: #333;
}

.glyph.fs1 .fs0,
.glyph.fs1 fieldset {
    display: none;
}

.glyph.fs1 span:not([class*="mls"]) {
    vertical-align: middle;
    top: -4px;
    height: 100%;
    width: 52px;
    background: rgba(0, 0, 0, 0.04);
    display: inline-block;
    /* line-height: 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 4px; */
    font-size: 24px;
    transition: 0.3s;
    position: relative;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.glyph.fs1 .mls:not([class*="icon-"]) {
    max-width: 80%;
    display: inline-block;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
    top: 0;
    vertical-align: middle;
    padding-inline-end: 65px;
}

@media (max-width: 768px) {
    .glyph.fs1 {
        box-shadow: -10px 8px 10px -7px rgba(25, 42, 70, .13);
        flex: 1 1 calc(40% - 30px);
    }
}

router-outlet.hydrated {
    position: relative;
    display: block;
    contain: unset;
}

.ion-page {
    left: unset !important;
    right: unset !important;
    top: unset !important;
    bottom: unset !important;
    display: unset !important;
    display: unset !important;
    position: unset !important;
    -webkit-box-orient: unset !important;
    -webkit-box-direction: unset !important;
    flex-direction: unset !important;
    -webkit-box-pack: unset !important;
    justify-content: unset !important;
    contain: unset !important;
    overflow: unset !important;
    z-index: unset !important;
}

body {
    -moz-osx-font-smoothing: unset !important;
    -webkit-font-smoothing: unset !important;
    margin-inline-end: unset !important;
    margin-inline-start: unset !important;
    margin-block-start: unset !important;
    margin-block-end: unset !important;
    padding-inline-start: unset !important;
    padding-inline-end: unset !important;
    padding-block-start: unset !important;
    padding-block-end: unset !important;
    position: unset !important;
    width: unset !important;
    max-width: unset !important;
    height: 100%;
    max-height: unset !important;
    text-rendering: unset !important;
    overflow: unset !important;
    touch-action: unset !important;
    -webkit-user-drag: unset !important;
    -ms-content-zooming: unset !important;
    word-wrap: unset !important;
    overscroll-behavior-y: unset !important;
    -webkit-text-size-adjust: unset !important;
    -moz-text-size-adjust: unset !important;
    -ms-text-size-adjust: unset !important;
    text-size-adjust: unset !important;
}

i.icon-main.skill-card-icon {
    width: 30px;
    height: 30px;
    background-size: contain;
}

.container.main-c {
    padding-block-start: 50px;
    overflow: hidden;
    width: calc(100% - 440px);
    padding-block-end: 20px;
}

.uk-grid-collapse.uk-grid {
    text-align: right;
    margin-inline-start: 99px;
}

.sc-ion-modal-md-h {
    position: fixed;
}

.course-details-info.course-details-info-star {
    direction: ltr;
}

button.text-design-selectd,
button.text-design-open,
button.color-design-selectd,
button.color-design-open {
    float: left;
    margin-inline-end: 27px;
    border: 1px solid #fff;
}

.side-nav ul li:hover .side-menu-slide,
.side-nav ul li .side-menu-slide:hover {
    display: block;
}

.side-nav ul li span.title-link {
    margin-inline-start: 17px;
}

.side-nav ul li i {
    width: 28px;
    height: 28px;
}

.container.main-c ul.uk-slider-items.slider-items-header {
    /* border-block-start:   solid 2px #e2e2e2; */
    /* border-block-end: solid 2px #e2e2e2; */
    /* padding: 10px 0; */
    /* width: 100%; */
    margin: 0;
    /* overflow: hidden; */
}

li.art-active.uk-active {
    border-block-end: solid 2px #4d009c;
}

li.uk-active {
    padding: 10px 0;
}

li.art-active h2.skill-card-title,
li.art-active p.skill-card-subtitle {
    color: var(--ion-color-primary-tint);
}

li.slide-item {
    padding: 16px;
}

ul.uk-slider-items {
    margin: 0;
}

.container-full {
    max-width: calc(100% - 200px);
    margin-inline-start: auto;
    padding-block-start: 50px;
}

.container-full-right {
    width: calc(100% - 350px);
    display: inline-block;
}

.container-full-left {
    width: 300px;
    display: inline-block;
    vertical-align: top;
    margin-inline-start: 25px;
    position: sticky;
    height: 100vh;
    overflow-y: auto;
    top: 0;
    left: 0;
    padding-inline-start: 10px;
}

.course-details span {
    font-size: 16px;
}

span.course-details-title {
    font-weight: bold;
    margin-inline-end: 5px;
    margin-inline-start: 15px;
}

span.course-details-created {
    /* margin-inline-start: 10px; */
}

.canvas-container {
    border: 1px solid #CCCCCC;
    border-block-start: 0;
    margin: 0 auto;
}

/* .templates-designs-main {
  border-radius: 33px;
  box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, 0.1);
  background-color: #ecf4f7;
  padding: 45px;
  margin-block-start: 12px;
} */

.templates-designs {
    width: 500px;
    margin: 0 auto;
}

.fr-toolbar.fr-desktop>div {
    transform: scale(0.8);
    width: 600px;
    margin-inline-start: -53px;
    /* overflow: hidden; */
}

.fr-toolbar {
    z-index: 2;
}

.fr-btn-grp.fr-float-left {
    margin: 0 0 !important;
}

.container-full-left .responsive-tab ul {
    display: flex;
}

.container-full-left .responsive-tab ul li {
    text-align: center;
    padding: 0;
    margin: 0 10px;
    width: 29%;
}

.container-full-left .responsive-tab ul li.uk-active {
    border-block-end: 1px solid #7bd9fd;
}

.container-full-left .responsive-tab ul li a {
    padding: 0;
    margin: 0;
    color: #979797;
    text-decoration: unset;
}

.container-full-left .responsive-tab ul li.uk-active a {
    color: #7bd9fd;
}

ul.uk-accordion {
    margin-block-end: 0;
}

.resume-thumbnail {
    background: #eeeeee;
    padding: 8px;
}

.course-card-resume:hover h5 {
    color: #36009c;
}

.container.main-c {
    max-width: 1140px;
}

.category-building-price {
    text-align: center;
    color: #6b6f81;
}

a.slide-nav {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    padding: 0;
    color: #e2e2e2;
    font-size: 22px;
    text-align: center;
    z-index: 2;
}

.uk-slider-container {
    overflow: unset !important;
}

a.slide-nav-prev.slide-nav {
    right: -15px;
}

a.slide-nav-next.slide-nav {
    left: -15px;
}

.slider-categories {
    border-block-start: solid 2px #e2e2e2;
    border-block-end: solid 2px #e2e2e2;
}

.slider-designs a.slide-nav {
    top: 121px;
}

/* .show-all {
    text-align: left;
} */

/* .show-all a {
    color: #6b6f81;
} */

.section-small.slider-designs {
    padding-block-end: 0;
}

.line-through {
    text-decoration: line-through;
}

li.slide-colors h5 {
    font-size: 13px;
}

ion-icon.hader-cart {
    font-size: 24px;
    vertical-align: text-bottom;
}

.side-nav>ul>li:hover>a {
    color: #7bd9fd;
}

.side-nav .side-menu-slide ul li {
    display: list-item;
}

.text-right button.btn.btn-primary {
    margin: 5px;
}

ul.options-list-item-ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    justify-content: flex-end;
    gap: 10px;
    margin-block-end: 0;
}

ul.options-list-item-ul li i {
    width: 40px;
    border-radius: 50%;
    border: 1px solid #7bd9fd;
    height: 40px;
    text-align: center;
    display: block;
    margin: 0 auto;
    padding-block-start: 8px;
    font-size: 18px;
}

ul.options-list-item-ul li {
    display: block;
    margin: 0 2px;
    text-align: center;
    cursor: pointer;
}

ul.options-list-item-ul li span {
    color: #7bd9fd;
    font-size: 12px;
    display: BLOCK;
}

.cart-item-right {
    /* background-color: #eeeeee; */
    flex: 3;
    padding: 10px;
    display: flex;
}

.cart-item-left {
    flex: 5;
    align-self: center;
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    padding: 20px;
}

.cart-item-right-image img {
    /* height: 100%; */
    max-height: 100%;
    display: block;
    padding: 0;
    width: unset;
    max-width: 80px;
}

.cart-item-right-image {
    max-height: 100%;
    display: inline;
    width: 105px;
}

.cart-item-right-image-info>span {
    display: block;
    margin: 5px 10px;
}

.cart-item-right-image-info {
    padding-block-start: 19px;
}

span.course-title {
    font-weight: bold;
    float: none;
    text-align: right;
}

.container-full-right-max {
    max-width: 1000px;
    margin: 0 auto;
}

ul.list-items {
    margin: 0;
    padding: 0;
    width: 95%;
}

h2.title-page {
    font-size: 22px;
    color: #7bd9fd;
    margin: 12px 0;
}

.options-list-item {
    align-self: center;
    display: flex;
}

.Oval {
    width: 111px;
    height: 111px;
    /* border-image-slice: 1; */
    background: conic-gradient(from 0.3turn, #8523ae, #53dbfd 0.38turn, #ec519e 0.7turn, #8523ae);
    position: relative;
    border-radius: 50%;
    margin: 70px auto 0;
}

.Oval::after {
    content: "";
    border-image-slice: 1;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
    background: linear-gradient(red, blue);
    z-index: 2;
    border: 5px solid #f9f9f9;
    background: #e4e4e4;
}

.Oval.add-to-cart::before {
    content: "";
    position: absolute;
    background: #fff;
    width: 55px;
    height: 55px;
    position: absolute;
    left: 0;
}

a.cart-button {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    left: 0;
    padding-block-start: 61px;
    text-align: center;
}

.cart-icon {
    position: absolute;
    top: 34px;
    z-index: 5;
    left: 45px;
    font-size: 27px;
    color: #979797;
}

span.cart-text {
    font-size: 12px;
    max-width: 80%;
    display: block;
    margin: 0 auto;
}

.text-price {
    font-size: 14px !important;
    font-weight: normal;
    color: #979797 !important;
    padding-block-end: 0;
}

.center {
    text-align: center;
}

color-picker {
    direction: ltr;
}

.container-full-left.cart-empty {
    filter: grayscale(100%);
}

.main-c {
    /*min-height: 78vh;*/
}

.new-line {
    display: block;
}

.mobile-header img.logo-menu {
    height: 38px;
}

ion-segment {
    border-block-start: solid 2px #e2e2e2;
    border-block-end: solid 2px #e2e2e2;
}

ion-segment.sc-ion-segment-md-h ion-label {
    padding: 20px 0;
    font-weight: normal;
    font-size: 20.5px;
    font-family: var(--font-family);
    color: var(--ion-color-primary-tint);
}

ion-segment:not(.buttons) {
    width: 160px !important;
    margin: 0 auto;
    padding: 3px;
    background: #979797;
    height: 44px;
    border-radius: 22px;
}

ion-segment-button {
    border: 0;
    padding: 2px 0;
    color: #fff;
    font-size: 19px;
}

ion-segment-button.segment-button-checked {
    color: var(--p-main-color, #7BD9FD);
    --border-radius: 18px;

}

p.uk-accordion-title-block-name {
    color: var(--ion-color-primary-tint);
    font-weight: bold;
    margin: 0;
}

p.uk-accordion-title-block-num {
    font-size: 14px;
    margin: 0;
}

.designs-list {
    border-block-start: 1px solid #e5e5e5;
    display: flex;
}

a.designs-list-design {
    display: block;
    max-width: 150px;
    padding: 20px;
    text-align: center;
    color: #4c4c4e;
}

.designs-list-design-name {
    font-weight: bold;
}

span.text-muted-amount {
    text-decoration: line-through;
    font-weight: normal;
    color: #bbb6b6 !important;
}

.elements-block.elements-block-cart {
    padding: 10px;
}

span.span-login {
    color: #7bd9fd;
    cursor: pointer;
}

.fontSize-block {
    display: inline-block;
}

.fr-btn-grp>div,
.fr-btn-grp>button {
    display: inline-block;
    vertical-align: top;
    margin: 0 2px;
    float: left !important;
    position: relative;
}

.fr-btn-grp {
    display: inline-block !important;
    max-height: 52px;
}

.fr-btn-grp.fr-float-left {
    max-width: calc(100% - 100px);
}

.home-hero-init {
    position: absolute;
    width: 100%;
    height: 1633px;
    z-index: -1;
    overflow-x: hidden;
    top: -219px;
}

.home-hero-init:before {
    /* content: ""; */
    /* width: 134%; */
    /* height: 956px; */
    /* background: #049ae5; */
    /* position: absolute; */
    /* top: -84px; */
    /* transform: rotate(-10deg); */
    /* left: -14%; */
}

.title-artime h1 {
    color: #36009C !important;
}

/* div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    border-radius: 5px;
}

div::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #F5F5F5;
}

div::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #7bd9fd;
} */


.template-form-img {
    position: relative;
    cursor: pointer;
    margin-block-end: 8px;
}

ion-chip.template-form-img-chip.md.ion-activatable.hydrated {
    position: absolute;
    right: 10px;
    top: 10px;
}


.home-hero-init.container {
    text-align: left;
}

.home-hero-init.container {
    max-width: 1330px;
}

.home-hero-top {
    max-width: 1300px;
    width: 50%;
    position: absolute;
    height: 600px;
    margin-block-start: 0;
    right: 400px;
}

.page-content-inner-text-2 {
    text-align: right;
}

.image-home {
    max-width: 1000px;
    display: block;
    margin-inline-end: auto;
    z-index: 999999;
    width: 60%;
}

ion-slides.home-slider {
    position: absolute;
    height: 606px;
    width: calc(100% - 283px);
    display: block;
    top: -45px;
    left: 45px;
    /* background: #000; */
    z-index: 0;
    min-height: unset;
    max-height: unset;
}

ion-slides.home-slider .swiper-slide img {
    object-fit: fill;
    width: 100%;

}

ion-slide.swiper-slide-next img.slide-image-a,
ion-slide.swiper-slide-prev img.slide-image-a {
    display: none;
}

.title-artime {
    text-align: right;
}


.poptin-contact {
    margin: 0 0 10px 20px;
}

ion-icon.md.flip-rtl {
    color: #6b6f81;
}

.text-price-2 {
    font-size: 10px !important;
    font-weight: normal;
    color: #979797 !important;
    padding-block-end: 0;
}


body a:hover {
    text-decoration: none;
}



@media (max-width: 768px) {

    .slidenav-next,
    .slidenav-prev {
        background: white;
    }

    .uk-position-small[class*='slidenav-next'],
    .uk-position-small[class*='slidenav-prev'] {
        margin-inline-end: -10px;
        margin-inline-start: -10px;
    }

    .side-nav.uk-animation-slide-left-medium {
        display: none;
    }

    .container.main-c {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    a.slide-nav {
        /* right: 0; */
        width: 30px;
        height: 30px;
    }

    ion-icon.md.flip-rtl.hydrated {
        /* background: #000; */
    }

    .container.main-c ul.uk-slider-items.slider-items-header {
        margin: 0 14px;
    }

    h2.skill-card-title {
        font-size: 14px;
    }

    a.skill-card {
        padding: 0;
    }

    li.slide-item {
        padding: 5px;
    }

    .course-card-resume-thumbnail {
        height: 51px;
    }

    a.slide-nav-prev.slide-nav {
        right: 0;
    }

    a.slide-nav-next.slide-nav {
        left: 17px;
    }

    .uk-slider-container {
        box-sizing: border-box;
        /* margin: 0; */
    }

    .hader {
        height: 43px;
    }

    .templates-designs-main video {
        min-height: 150px !important;
    }

    .slider-designs a.slide-nav {
        top: 59px;
    }

    .course-grid-slider ul li:not(.uk-active) {
        /* height: 1px; */
        overflow: hidden;
    }

    .page-content-inner {
        /* display: none !important; */
        background: url(/assets/images/sliders-home/1/background-min.png);
        background-size: cover;
    }

    .home-hero {
        padding-block-start: 0 !important;
        height: auto;
    }

    .title-artime {
        position: relative !important;
        top: 0 !important;
        right: unset !important;
        width: unset !important;
    }

    .container-full {
        max-width: 100%;
        padding: 10px;
    }

    .container-full-left {
        width: 100%;
        margin-inline-start: 0;
        padding: 20px;
    }

    .container-full-right {
        width: 100%;
    }

    .templates-designs {
        max-width: 100%;
        width: min-content;
    }

    .fr-toolbar.fr-desktop>div {
        margin-inline-start: -39px;
        max-width: 118%;
    }

    .container-full-left .responsive-tab ul li {
        width: 30%;
    }

    .mobile-active .side-nav.uk-animation-slide-left-medium {
        display: block;
        background: #f9f9f9ed;
        right: 0;
        top: 51px;
        padding-inline-end: 16px;
    }

    div#topbar {
        top: -57px;
        width: 100px !important;
        left: 0;
        height: 59px;
        padding-block-start: 16px;
    }

    .container {
        box-sizing: border-box;
    }

    .uk-grid {
        margin-inline-start: 0 !important;
    }

    .home-hero h1 {
        text-align: center;
        margin: 0 auto;
        display: block !important;
    }

    .select-event {
        margin: 0 auto !important;
    }

    li.cart-item {
        flex-flow: wrap;
    }

    .elements-block.elements-block-cart {
        text-align: center;
    }

    .cart-item-left {
        flex-flow: column;
    }

    .cart-item-right-image {
        display: block;
    }

    .cart-item-right {
        flex-direction: column;
    }

    span.course-number {
        float: unset !important;
    }

    .home-hero-init {
        display: none;
    }

    .home-hero:before,
    ion-slides.home-slider,
    ion-slides.home-slider img {
        display: none;
    }

    .home-hero h1 {
        color: var(--ion-color-primary-tint) !important;
    }

    .course-details {
        padding-inline-end: 0;
    }

    span.course-details-name span.course-details-title {
        margin-inline-start: 0;
    }

    .course-details span {
        font-size: 14px;
        margin-inline-start: 3px;
        margin-inline-end: 1px;
    }

    .image-home {
        margin: 0 auto;
        position: relative !important;
        max-width: 320px;
        width: 320px;
    }

    .block-steps {
        margin: 0 auto;
    }

    .home-hero-top {
        position: relative;
        margin-block-start: 20px;
        height: unset;
        right: unset;
        width: 100%;
    }

    .background-white {
        background: none !important;
    }

    .page-content-inner-text-2 {
        text-align: center;
    }

    .fr-btn-grp>.align-block {
        display: none;
    }

    body ion-modal .modal-wrapper {
        max-width: 88% !important;
    }
}


app-design~.footer {
    display: none;
}

.down-animation::after {
    content: "";
    background: url(/assets/images/gif-down.gif) #ffffff6b;
    position: fixed;
    bottom: 10px;
    right: 128px;
    width: 50px;
    height: 50px;
    z-index: 99999999999999999999999999999999;
    background-size: contain;
    border: 3px solid #656565;
    border-radius: 50%;
    opacity: 0.9;
}

@media (min-width: 640px) and (max-width:1220px) {
    /* .header-widget {
      border-radius: 9px;
      position: absolute;
      top: -50px;
      z-index: 1;
      background: white;
      right: 12px;
  } */

    /* in horizontal version */
    /* .header .header-widget {
      top: 0
  } */

    .home-hero-top {
        height: 260px;
        top: 0;
    }
}


@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/* ----------------------------------------------
 * Generated by Animista on 2021-1-28 19:31:42
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-fwd-center
 * ----------------------------------------
 */
@-webkit-keyframes slide-fwd-center {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    100% {
        -webkit-transform: translateZ(160px);
        transform: translateZ(160px);
    }
}

@keyframes slide-fwd-center {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    100% {
        -webkit-transform: translateZ(160px);
        transform: translateZ(160px);
    }
}

/* ----------------------------------------------
 * Generated by Animista on 2021-1-28 19:33:17
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-90-cw
 * ----------------------------------------
 */
@-webkit-keyframes rotate-90-cw {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes rotate-90-cw {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

/* ----------------------------------------------
 * Generated by Animista on 2021-1-28 19:37:18
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-tr
 * ----------------------------------------
 */
@-webkit-keyframes slide-tr {
    0% {
        -webkit-transform: translateY(-100px) translateX(100px);
        transform: translateY(-100px) translateX(100px);
    }

    100% {
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
    }
}

@keyframes slide-tr {
    0% {
        -webkit-transform: translateY(-100px) translateX(100px);
        transform: translateY(-100px) translateX(100px);
    }

    100% {
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
    }
}


.slide-tr,
img.slide-image-a.slide-image-a-bottle {
    -webkit-animation: slide-tr 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-tr 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}



.rotate-90-cw,
img.slide-image-a.slide-image-a-glass {
    -webkit-animation: rotate-90-cw 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: rotate-90-cw 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


.slide-top,
.slide-image-a-sticker {
    -webkit-animation: slide-top 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-top 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.slide-fwd-center,
.slide-image-a-Invitation {
    -webkit-animation: slide-fwd-center 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-fwd-center 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}