/*
 * metismenu - v2.7.2
 * A jQuery menu plugin
 * https://github.com/onokumus/metismenu#readme
 *
 * Made by Osman Nuri Okumus <onokumus@gmail.com> (https://github.com/onokumus)
 * Under MIT License
 */

.metismenu .arrow {
  float: right;
  line-height: 1.42857;
}
*[dir="rtl"] .metismenu .arrow {
  float: left;
}

/*
 * Require Bootstrap 3.x
 * https://github.com/twbs/bootstrap
*/

.metismenu .glyphicon.arrow:before {
  content: "\e079";
}
.metismenu .active > a > .glyphicon.arrow:before {
  content: "\e114";
}

/*
 * Require Font-Awesome
 * http://fortawesome.github.io/Font-Awesome/
*/

.metismenu .fa.arrow:before {
  content: "\f104";
}
.metismenu .active > a > .fa.arrow:before {
  content: "\f107";
}

/*
 * Require Ionicons
 * http://ionicons.com/
*/

.metismenu .ion.arrow:before {
  content: "\f3d2"
}
.metismenu .active > a > .ion.arrow:before {
  content: "\f3d0";
}
.metismenu .plus-times {
  float: right;
}
*[dir="rtl"] .metismenu .plus-times {
  float: left;
}
.metismenu .fa.plus-times:before {
  content: "\f067";
}
.metismenu .active > a > .fa.plus-times {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.metismenu .plus-minus {
  float: right;
}
*[dir="rtl"] .metismenu .plus-minus {
  float: left;
}
.metismenu .fa.plus-minus:before {
  content: "\f067";
}
.metismenu .active > a > .fa.plus-minus:before {
  content: "\f068";
}
.metismenu .collapse {
  display: none;
}
.metismenu .collapse.in {
  display: block;
}
.metismenu .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
  -o-transition-duration: .35s;
  transition-duration: .35s;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
}

.metismenu .has-arrow {
  position: relative;
}

.metismenu .has-arrow::after {
  position: absolute;
  content: '';
  width: .5em;
  height: .5em;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: initial;
  right: 1em;
  -webkit-transform: rotate(-135deg) translate(0, -50%);
  -ms-transform: rotate(-135deg) translate(0, -50%);
  -o-transform: rotate(-135deg) translate(0, -50%);
  transform: rotate(-135deg) translate(0, -50%);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  top: 45%;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

*[dir="rtl"] .metismenu .has-arrow::after {
  right: auto;
  left: 1em;
  -webkit-transform: rotate(135deg) translate(0, -50%);
  -ms-transform: rotate(135deg) translate(0, -50%);
  -o-transform: rotate(135deg) translate(0, -50%);
  transform: rotate(135deg) translate(0, -50%);
}

.metismenu .active > .has-arrow::after,
.metismenu .has-arrow[aria-expanded="true"]::after {
  -webkit-transform: rotate(45deg) translate(0, -50%);
  -ms-transform: rotate(45deg) translate(0, -50%);
  -o-transform: rotate(45deg) translate(0, -50%);
  transform: rotate(45deg) translate(0, -50%);
  top: 55%;
}














/*-------------------------------------------------------------------------------------------------------------------------*/
   /*------------------------------------------------ MAIN HEADER CSS ------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

li {
  list-style: none;
  position: relative;
}

.bg-overlay {
  position: relative;
  z-index: 1;
}

.bg-overlay::before {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
}

.overlay {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 40%;
  opacity: 0;
  visibility: hidden;
}

.overlay.active {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  content: "";
  background-color: #001c47;
  z-index: 99;
  opacity: 0.95;
  visibility: visible;
}

.progress-wrap {
  position: fixed;
  right: 10px;
  bottom: 40px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px #aaaeb9;
  box-shadow: inset 0 0 0 2px #aaaeb9;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 50px;
  font-size: 26px;
  color: #fc5e16;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  /*fill: none;*/
  fill: hsla(0,0%,100%,0.25);
}

.progress-wrap svg.progress-circle path {
  stroke: #fc5e16;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* ====================================================
    HEADER
 ====================================================== */

.header-wrapper {
  position: fixed;
  z-index: 997;
  left: 0;
  right: 0;
  /*background-color: rgba(255,255,255,0.5);*/
}

.header-wrapper .navbar {
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-wrapper .navbar-content {
  width: 100%;
}

.header-wrapper .logo-wrapper {
  /*width: 20%;
  background-color: #fc5e16;
  padding: 20px 30px;*/
  padding: 10px 0px;
  margin-top: 0;
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;  
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  /*.header-wrapper .logo-wrapper {
    width: 40%;
  }*/
}

@media (max-width: 400px) {
  /*.header-wrapper .logo-wrapper {
    width: 50%;
  }*/
}

.header-wrapper .menu-wrapper {
  /*width: 100%;*/
}

@media (max-width: 991px) {
  .header-wrapper .menu-wrapper {
    display: none !important;
  }
}

.header-wrapper .top-menu {
  padding: 10px 50px;
  border-bottom: 1px solid #ededed;
}

.header-wrapper .main-menu {
  /*padding: 23px 50px;*/
}

.header-wrapper .main-menu-right {
  position: relative;
}

.header-wrapper .main-menu-right::before {
  content: "";
  width: 1px;
  height: 74px;
  background-color: #ededed;
  position: absolute;
  left: -110px;
}

@media (max-width: 1164px) {
  .header-wrapper .main-menu-right::before {
    left: -50px;
  }
}

.header-wrapper .main-menu ul {
  line-height: 1;
}

.header-wrapper .main-menu ul > li {
  display: inline-block;
  line-height: 1;
}

.header-wrapper .main-menu ul > li:not(:last-child) {
  /*margin-right: 25px;*/
}

.header-wrapper .main-menu ul > li > a {
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  color: #001c47;
  line-height: 1;
  overflow: hidden;
  letter-spacing: 0.05px;
  padding: 15px 12px;
}

.header-wrapper .main-menu ul > li > a .btn-blue {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 4px 14px;
}

.header-wrapper .main-menu ul > li > a.cta {
  margin: 4px 0px 4px 0px;
  padding: 0px;
}

.header-wrapper .main-menu ul > li > a.cta.hashbtn {
  margin: 4px 0px 4px 10px;
  padding: 0px;
}

.header-wrapper .main-menu ul > li .icon {
  font-size: 10px;
  font-weight: 400;
  margin-left: 3px;
}

.header-wrapper .main-menu ul > li:hover > a {
  color: #64cbff!important;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.header-wrapper .main-menu ul > li a .icon .fas {
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.header-wrapper .main-menu ul > li:hover > a .icon .fas {
  -webkit-transform: rotate(-181deg) translate(0, -20%);
  -ms-transform: rotate(-181deg) translate(0, -20%);
  -o-transform: rotate(-181deg) translate(0, -20%);
  transform: rotate(-181deg) translate(0, -20%);
	
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}


.header-wrapper .main-menu ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header-wrapper .main-menu ul > li > ul {
  position: absolute;
  top: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  background-color: #FFFFFF;
  border-radius: 10px;
  left: 0;
  z-index: 999;
  -webkit-box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 10px 0px;
  /*margin-top: 20px;
  background-color: #fc5e16;
  margin-top: 18px;*/
  margin-top: 12px;
}

.header-wrapper .main-menu ul > li > ul li {
  display: block;
}

.header-wrapper .main-menu ul > li > ul li a {
  font-size: 14px;
  display: block;
  color: #ffffff;
  padding: 12px 25px;
}

.header-wrapper .main-menu ul > li > ul li a:hover {
  color: #fff;
}

.header-wrapper .main-menu ul > li > ul ul {
  left: 100%;
  top: 0;
}

#hamburger {
  color: #001c47;
  font-size: 30px;
  display: none;
  /*position: absolute;*/
  top: 33px;
  right: 50px;
}

@media (max-width: 991px) {
  #hamburger {
    display: block !important;
  }
}

@media (max-width: 575px) {
  #hamburger {
    right: 20px;
  }
}

#hamburger i {
  cursor: pointer;
}

.mobile-nav-one-wrapper .mobile-nav {
  position: fixed;
  right: -540px;
  top: 0;
  width: 500px;
  height: 100vh;
  scroll-behavior: smooth;
  overflow-y: scroll;
  -webkit-transition: right 0.5s ease-in;
  transition: right 0.5s ease-in;
  background-color: #001c47;
  padding: 50px 20px 20px 20px;
  z-index: 9999;
  -webkit-box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
          box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
  /* Vertical Menu Style */
  
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .mobile-nav-one-wrapper .mobile-nav {
    width: 320px;
  }
}
@media (max-width: 480px) {
  .mobile-nav-one-wrapper .mobile-nav {
    width: 100%;
  }
}

.mobile-nav-one-wrapper .mobile-nav.show {
  right: 0px;
}

.mobile-nav-one-wrapper .mobile-nav .close-nav {
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 30px;
  position: absolute;
  /*font-size: 20px;
  left: 20px;
  top: 10px;*/
  font-size: 30px;
  right: 23px;
  top: 64px;
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav {
  /*margin-top: 30px;*/
  margin-top: 65px;
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: transparent;
  /*margin: 10px 0px 10px 0px;*/
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu a {
  font-size: 16px;
  position: relative;
  display: block;
  padding: 10px 15px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
  color: #FFFFFF!important;  
  outline-width: 0;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu .sub-menu a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.70)!important;  
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu ul a {
  padding: 6px 15px 6px 30px;
  position: relative;
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu ul a:hover {
  padding-left: 35px;
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu ul a:hover::before {
  background-color: #fff;
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu ul a::before {
  position: absolute;
  left: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.70);
  content: "";
  top: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu ul ul {
  list-style-type: circle !important;
}

.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu ul ul a {
  padding: 10px 15px 10px 45px;
}

/*.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu a:hover,
.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu a:focus,*/
.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu a:active {
  text-decoration: none;
  color: #f8f9fa;
  background: rgba(100, 203, 255, 0.10);
  border-radius: 5px;
}
.mobile-nav-one-wrapper .mobile-nav .sidebar-nav .metismenu a[aria-expanded="true"] {
  background: rgba(100, 203, 255, 0.10);
  border-radius: 5px;
}


.navbar-brand .logo-white {display:none}
.navbar-brand .logo-dark {display:block}
.is-sticky .navbar-brand .logo-white {display:none}
.is-sticky .navbar-brand .logo-dark {display:block}
#hamburger {color: #001c47;}

.darkTheme #hamburger {color: #FFFFFF;}

.sub-menu li > a {color: #001c47!important;}
.sub-menu li:hover > a {color: #64cbff!important;}

.header-wrapper .main-menu ul > li > a {
	color: #001c47;
}
.header-wrapper.is-sticky .main-menu ul > li > a {
	color: #001c47;
}
.header-wrapper.is-sticky .main-menu ul > li:hover > a {
    color: #64cbff;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

/*------------------------------------------------*/
/*--------------[Sticky Header]-----------*/
/*------------------------------------------------*/

.sticky-header:not(.header-submenu).is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: hsla(0,0%,100%,0.85);
    backdrop-filter: saturate(180%) blur(30px);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    -webkit-transition: 0.8s ease;
  -moz-transition: 0.8s ease;
  -ms-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
}
.sticky-header:not(.header-submenu).is-sticky .top-menu {
    display: none!important;
}
.sticky-header:not(.header-submenu).is-sticky .logo-wrapper{
	/*padding: 8px 30px!important;*/
	padding: 8px 0px!important;
}



.sticky-header:not(.header-submenu).is-sticky .nav-header,
.sticky-header:not(.header-submenu).is-sticky .topbar ul.topbarnav
{
        padding: 0;
}
.sticky-header:not(.header-submenu).is-sticky .nav-search-inner input[type="text"], .sticky-header:not(.header-submenu).is-sticky  .nav-search-inner input[type="search"]{
    line-height: 40px!important;
}
.sticky-header:not(.header-submenu).is-sticky .nav-search-close-button{
    top: 6px;
}
.sticky-header:not(.header-submenu).is-sticky .nav-menu > li > a {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 14px;
    padding-bottom: 30px;
}

.sticky-header:not(.header-submenu).is-sticky .topbar ul.topbarnav,
.sticky-header:not(.header-submenu).is-sticky .nav-cart, 
.sticky-header:not(.header-submenu).is-sticky .nav-search{
       padding-top: 14px;
 
}
.header-main-block.header-style.transparent-header-style.sticky-header.is-sticky {
    background: #fff;
}
.header-main-block.header-style.transparent-header-style.sticky-header {
    background: transparent;
}
.sticky-header:not(.header-submenu).is-sticky  .topbar ul.topbarnav li ul{
    top: 49px;
}

.sticky-header:not(.header-submenu).is-sticky .topbar ul.topbarnav,
.sticky-header:not(.header-submenu).is-sticky .nav-cart, 
.sticky-header:not(.header-submenu).is-sticky .nav-search,
.sticky-header:not(.header-submenu).is-sticky .header-style .nav-header, 
.sticky-header:not(.header-submenu).is-sticky .header-style .nav-search,
.sticky-header:not(.header-submenu).is-sticky .header-style .nav-cart,
.navigation-portrait .nav-search{
    padding: 0;
}
.sticky-header:not(.header-submenu).is-sticky .navigation-portrait .nav-search-button {
    line-height: 30px;
}




.darkTheme .sticky-header:not(.header-submenu).is-sticky {
    background: hsla(214,15%,16%,0.75);
    backdrop-filter: saturate(180%) blur(30px);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.darkTheme .navbar-brand .logo-white {
    display: block;
}
.darkTheme .header-wrapper .main-menu ul > li > a {
	color: #FFFFFF;
}
.darkTheme .header-wrapper.is-sticky .main-menu ul > li > a {
	color: #FFFFFF;
}
.darkTheme 





/*------------------------------------------------*/
   /*-------------- PROGRESS CIRCLE -----------*/
/*------------------------------------------------*/


/**
 * Inspiration for this project found at:
 * https://markus.oberlehner.net/blog/pure-css-animated-svg-circle-chart
 * 1. The `reverse` animation direction plays the animation backwards
 *    which makes it start at the stroke offset 100 which means displaying
 *    no stroke at all and animating it to the value defined in the SVG
 *    via the inline `stroke-dashoffset` attribute.
 * 2. Rotate by -90 degree to make the starting point of the
 *    stroke the top of the circle.
 * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
 *    and Edge, use the transform attribute directly on the SVG element as a
 * .  workaround.
 */

.circle-chart {
    width: 150px;
    height: 150px;
}

.circle-chart__circle {
    stroke: #00acc1;
    stroke-width: 2;
    stroke-linecap: square;
    fill: none;
    animation: circle-chart-fill 2s reverse; /* 1 */
    transform: rotate(-90deg); /* 2, 3 */
    transform-origin: center; /* 4 */
}

/**
 * 1. Rotate by -90 degree to make the starting point of the
 *    stroke the top of the circle.
 * 2. Scaling mirrors the circle to make the stroke move right
 *    to mark a positive chart value.
 * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
 *    and Edge, use the transform attribute directly on the SVG element as a
 * .  workaround.
 */

.circle-chart__circle--negative {
    transform: rotate(-90deg) scale(1, -1); /* 1, 2, 3 */
}

.circle-chart__background {
    stroke: #efefef;
    stroke-width: 2;
    fill: none;
}

.circle-chart__info {
    animation: circle-chart-appear 2s forwards;
    opacity: 0;
    transform: translateY(0.3em);
}

.circle-chart__percent {
    alignment-baseline: central;
    text-anchor: middle;
    font-size: 8px;
}

.circle-chart__subline {
    alignment-baseline: central;
    text-anchor: middle;
    font-size: 3px;
}

.success-stroke {
    stroke: #00c851;
}

.warning-stroke {
    stroke: #ffbb33;
}

.danger-stroke {
    stroke: #ff4444;
}

@keyframes circle-chart-fill {
    to {
        stroke-dasharray: 0 100;
    }
}

@keyframes circle-chart-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}