
html {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* letter-spacing: .2px; */
} 

/* @import url('https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800&subset=latin-ext');


========================================================================
   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: 1140px;
  margin-left: auto;
  margin-right: auto;
}

/*
   * Micro clearfix
   */
.container::before,
.container::after {
  content: "";
  display: table;
}

.container::after {
  clear: both;
}

/*
   * Remove margin from the last-child
   */
.container> :last-child {
  margin-bottom: 0;
}

/*
   * Remove padding from nested containers
   */
.container .container {
  padding-left: 0;
  padding-right: 0;
}

/* Size modifier
   ========================================================================== */
.container-xsmall {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.container-large {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.container-expand {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}


/* Expand modifier
 ========================================================================== */
/*
* Expand one side only
*/
.container-expand-left {
  margin-left: 0;
}

.container-expand-right {
  margin-right: 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-top: 40px;
  padding-bottom: 40px;
}

/* Desktop and bigger */
@media (min-width: 960px) {
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/*
 * Micro clearfix
 */
.section::before,
.section::after {
  content: "";
  display: table;
}

.section::after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.section> :last-child {
  margin-bottom: 0;
}


/* Size modifiers
 ========================================================================== */

/*
* Small
*/
.section-small {
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}

/*
* Large
*/
.section-large {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

/*
* XLarge
*/
.section-xlarge {
  padding-top: 140px;
  padding-bottom: 140px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .section-small {
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
  }

  .section-xlarge {
    padding-top: 210px;
    padding-bottom: 210px;
  }

  .section-large {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}


/* ---------------------------------- */
/* section header
------------------------------------- */
.section-header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0;
  /*border-top: 1px solid #ebebee;*/
}
.section-header.border-bottom{
  border-top: 0 ;
  border-bottom: 1px solid #ebebee;
}
.section-header-left {
  flex: 1;
  min-width: 1px;
}

.section-header-left>* {
  margin-bottom: 5px;
  color: #333;
}

.section-header-right {
  width: auto;
  align-items: center;
  display: flex;
  justify-content: center;
}

.section-header-right>* {
  margin-left: 10px;
}

.section-header-right a.see-all {
  position: relative;
  padding-right: 23px;
  color: #9799b1;
  bottom: -3px;
  line-height: 1;
}

.section-header-right a.see-all:hover {
  color: #3e416d;
}

.section-header-right a.see-all::after {
  font-family: "Feather-Icons";
  content: '\e930';
  font-size: 18px;
  right: 0;
  position: absolute;
}



/* Tablet landscape and smaller */
@media (max-width: 768px) {
  .section-header {
    /* display:block; */
    margin-bottom: 10px;
    padding-bottom: 13px;
    align-items: center;
  }

  .section-header-title>* {
    font-size: 17px;
    line-height: 1;
  }

  .section-header-link a {
    font-size: 14px;
    bottom: 0;
  }

}


.display-as {
  border-radius: 7px;
  display: flex;
  /* background: #ffffff; */
}

.display-as a {
  padding: 8px 10px;
  font-size: 16px;
  display: inline-block;
  line-height: 1;
  color: #040404;
  cursor: default !important;
}

.display-as a.active {
  background: #efefef;
  border-radius: 5px;
  cursor: pointer !important;
}

@media (max-width: 640px) {
  .display-as a {
    padding: 7px 8px;
    font-size: 16px;
  }
}


 
 

/* Breadcrumbs */
#breadcrumbs {
  display: inline-block;
  border-radius: 5px;
  font-weight: 600;
  color: #062e69;
  font-size: 15px;
}

#breadcrumbs ul {
  margin: 0;
  padding: 0 8px 15px 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 
}
#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-left: 0;
}

#breadcrumbs ul li:before {
  content: "";
  display: inline-block;
  font-size: 11px;
  margin-right: 4px;
  font-family: "Feather-Icons";
  font-weight: 700;
  transform: translate(0%, 5%);
  content:
    "\e930";
}

#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
  }
}
 

/* ---------------------------------- */
/* 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:before {
  position: absolute;
  bottom: 0;
  content: '';
  background: #e8e8e8;
  width: 100%;
  height: 1px;
  border-radius: 27px;
}

.responsive-tab li {
  display: inline-block;
  float: left;
  -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: 0px 13px;
  font-weight: 500;
  font-size: 13px;
  position: relative;
}

.responsive-tab a i {
  margin-right: 9px;
}

.responsive-tab li a:hover {
  color: #3e416d;
  opacity: .8;
}

.responsive-tab .uk-active:hover,
.responsive-tab .uk-active a {
  color: #1a73e8 !important;
  opacity: 1;
}

.responsive-tab .uk-active a:before {
  position: absolute;
  bottom: 0;
  content: '';
  width: 100%;
  height: 4px;
  left: 0;
  background: #1a73e8;
}

.uk-light .responsive-tab:before {
  background: transparent;}
.uk-light .responsive-tab .uk-active a  ,
.uk-light .responsive-tab li a:hover{
  color: white !important;
}
.uk-light .responsive-tab .uk-active a:before {
  background-color:white
}
@media only screen and (min-width: 1024px) {

  .responsive-tab {
    height: 56px;
    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: 15px;
    margin-right: 10px;
    padding: 0 10px;
    line-height: 55px;
  }
}

/* ---------------------------------- */
/* style-1
------------------------------------- */

.style-1.responsive-tab:before  ,
.style-1.responsive-tab .uk-active a:before {
  background: transparent;
} 

/* ---------------------------------- */
/* style-2
------------------------------------- */

.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,
.responsive-tab.style-2 .uk-active a {
  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: 18px;
    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%;
  }

}
 


/* ---------------------------------- */
/*  embed video responsive 
------------------------------------- */

.embed-video {
  overflow: hidden;
  position: relative;
  height: 35vh;
}

.embed-video iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  /* padding: 20px */
} 


/* ---------------------------------- */
/* docs list 
------------------------------------- */
.docs-list li.uk-active a {
  color:#1a73e8
}

/* ---------------------------------- */
/* countdown
------------------------------------- */

.countdown .box .countdown-text p {
  margin-bottom: 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;
}

.countdown-form {
  background: #ffffff;
  padding: 8px 5px !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-top: 50px;
  padding: 25px 15px;
  padding-bottom: 0;
  border-top: 1px solid #e4e4e4;
}

.footer p {
  color: #656565;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links.footer-nav ul li {
  display: inline-block !important;
  padding-right: 14px;
}

.footer-links ul li a {
  color: #6f6f6f;
  line-height: 25px;
  padding: 4px 0;
  font-size: 15px;
  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: 600;
}

.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-top: 15px;
    padding-bottom: 0px;
  }
}


/* ---------------------------------- */
/* general
------------------------------------- */

.shadow {
  box-shadow: 0px 2px 7px -3px #0000001a
}

.rounded-sm {
  border-radius: 7px;
}

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 14px
}

.circle {
    border-radius: 50% !important;
}

.border-0{
  border:0 !important  
}
.shadow-0{
  box-shadow:none
}

  
/* ---------------------------------- */
/* 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;
  right: 0;
  opacity: 0;
  visibility: hidden;
  bottom: 25px;
  margin: 0 25px 0 0;
  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: #1a73e8;
  opacity: 1;
  transition: all 0.3s;
  border-radius: 100%;
  text-align: center;
  font-size: 26px;
}

body #backtotop a {
  color: #ffffff;
}

#backtotop a:after {
  content: "\e931" ;
  font-family: "Feather-Icons";
  position: relative;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  #backtotop {
    display: none;
  }
}

 
/* ---------------------------------- */
/* Icons Cheatsheet Styles
------------------------------------- */
.icon-set-container {
  display: block;
  width: calc(100% + 30px);
  left: -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-left: 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-left: 65px;
}


@media (max-width: 768px) {
  .glyph.fs1 {
    box-shadow: -10px 8px 10px -7px rgba(25, 42, 70, .13);
    flex: 1 1 calc(40% - 30px);
  }
}



/* ---------------------------------- */
/* syntax highlighter
------------------------------------- */

.hljs-string,
.hljs-bullet {
  color: #4FC1EA;
}

.hljs {
  display: block;
  overflow-x: auto;
  padding: 1.5em;
  background: #f3f3f3;
  color: #9c9c9c;
  margin: -13px;
}

.hljs-name,
.hljs-strong {
  /* font-weight: bold; */
  color: #f35a00;
}

.hljs-attr {
  color: #68BB88;
}



/* ---------------------------------- */
/* btn source code previewer
------------------------------------- */

.Markup-botton {
  padding-left: 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';
  left: 0px;
  width: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  top: 0px;
  color: white;
  background: #77a4f9;
  position: absolute;
}

.Markup-botton:hover,
.Markup-botton:focus {
  background: #679af9;
  color: white;
}


@media (min-width: 1099px) {
  .Markup-botton {
    margin: 20px 0 !important;
  }
}

 
/* ---------------------------------- */
/* Avatar  
------------------------------------- */
.avatar-xsmall {
  width: 1.375rem;
  height: 1.375rem;
}

.avatar-small {
  width: 2rem;
  height: 2rem;
}

.avatar {
  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: #ededed !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: #e5e5e5 !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, #3576ef 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-gradient-4 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #212529 115%);
}

.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;
}
 

/* ---------------------------------- */
/* 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  
------------------------------------- */

.button {
  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: #679af9;
  background: #dde9ff;
  font-size: 14px;
  line-height: 35px;
  padding: 0 20px;
  border-radius: 6px;
  margin: 0;
  height: 36px;
  transition: all 0.08s ease 0s;
}

.button.block {
  display: block;
  width: 100%;
  padding: 0;
}



@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.default {
  background: linear-gradient(to right, rgb(26, 115, 232), rgb(32, 98, 183));
  border-color: transparent;
  box-shadow: none !important;
  border: 0;
  background: #e8f0fe;
  color: #2076e8;
}
 

.button.default:hover,
.button.default:focus, 
.button.default.active {
  color: #fff;
  background: linear-gradient(to right, rgb(60, 140, 245), rgb(39, 113, 208));
  border-color: transparent;
}
 

.button.primary {
  color: #fff;
  background-color: #377dff;
  border-color: #377dff;
}

.button.soft-primary {
  color: #1a73e8;
  background-color: rgb(232, 240, 254);
}

.button.primary:hover,
.button.primary:focus,
.button.soft-primary:hover,
.button.soft-primary:focus,
.button.primary.active {
  color: #fff;
  border-color: #1a73e8;
  background-color: #1a73e8;
}

.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: #dffafd;
  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: #f98f1d;
  background-color: #f98f1d;
}

.button.soft-warning {
  color: #f98f1d;
  border-color: transparent;
  background-color: rgb(255, 241, 227);
}

.button.warning:hover,
.button.warning:focus,
.button.soft-warning:hover,
.button.soft-warning:focus,
.button.warning.active {
  color: #fff;
  border-color: #f89020;
  background-color: #f89020;
}


.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: rgb(255, 227, 227);
}

.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.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: #ffa500;
  border-color: #ffa500;
  background-color: transparent;
  background-image: none;
}

.button.outline-warning:hover {
  color: #fff;
  border-color: #ffa500;
  background-color: #ffa500;
}


.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-top-right-radius: inherit;
  border-bottom-right-radius: inherit
}

.button.icon-label .inner-icon:not(:last-child) {
  top: 0;
  left: 0;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit
}

.button.icon-label .inner-text:not(:first-child) {
  padding-left: 2em;
}

.button.icon-label .inner-text:not(:last-child) {
  padding-right: 2em
}


.button.icon .inner-text:not(:first-child) {
  margin-left: .75em
}

.button.icon .inner-text:not(:last-child) {
  margin-right: .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-left: none;
  margin-left: 0;
  border-top-left-radius: .28571429rem;
  border-bottom-left-radius: .28571429rem;
}

.buttons .button:last-child {
  border-top-right-radius: .28571429rem;
  border-bottom-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-top: -.89285714em;
  margin-left: -.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-left: none;
  margin-left: 0;
  border-top-left-radius: .28571429rem;
  border-bottom-left-radius: .28571429rem;
}

.button-group-icon .button:last-child {
  border-top-right-radius: .28571429rem;
  border-bottom-right-radius: .28571429rem;
}


/* buttun Switch styles */

.btn-switch {
  display: inline-block;
  height: 18px;
  width: 37px;
  position: relative;
}

.btn-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.btn-switch-slider {
  background-color: rgba(0, 0, 0, 0.09);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 500px;
  bottom: 0;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: .2s;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.07);
  outline: none;
}

.btn-switch-slider:before {
  content: '';
  background-color: #a9a9a9;
  position: absolute;
  width: 21px;
  height: 21px;
  left: 0px;
  bottom: -1px;
  border-radius: 50%;
  transition-property: transform, box-shadow;
  transition-duration: .2s;
}


input:checked+.btn-switch-slider {
  background-color: #e8e8e8;
}

input:checked+.btn-switch-slider:before {
  -webkit-transform: translateX(17px);
  -ms-transform: translateX(17px);
  transform: translateX(17px);
  background-color: #3e416d;
  box-shadow: 1px 1px 4px -1px #3e416d;
}





.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-left: -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-left: -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-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 2rem !important;
}

.mt-5,
.my-5 {
  margin-top: 2rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 2rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 2rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 2rem !important;
}

.m-6 {
  margin: 2.5rem !important;
}

.mt-6,
.my-6 {
  margin-top: 2.5rem !important;
}

.mr-6,
.mx-6 {
  margin-right: 2.5rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 2.5rem !important;
}

.ml-6,
.mx-6 {
  margin-left: 2.5rem !important;
}

.m-7 {
  margin: 3rem !important;
}

.mt-7,
.my-7 {
  margin-top: 3rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 3rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 3rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 3rem !important;
}

.m-8 {
  margin: 3.5rem !important;
}

.mt-8,
.my-8 {
  margin-top: 3.5rem !important;
}

.mr-8,
.mx-8 {
  margin-right: 3.5rem !important;
}

.mb-8,
.my-8 {
  margin-bottom: 3.5rem !important;
}

.ml-8,
.mx-8 {
  margin-left: 3.5rem !important;
}

.m-9 {
  margin: 4rem !important;
}

.mt-9,
.my-9 {
  margin-top: 4rem !important;
}

.mr-9,
.mx-9 {
  margin-right: 4rem !important;
}

.mb-9,
.my-9 {
  margin-bottom: 4rem !important;
}

.ml-9,
.mx-9 {
  margin-left: 4rem !important;
}

.m-10 {
  margin: 4.5rem !important;
}

.mt-10,
.my-10 {
  margin-top: 4.5rem !important;
}

.mr-10,
.mx-10 {
  margin-right: 4.5rem !important;
}

.mb-10,
.my-10 {
  margin-bottom: 4.5rem !important;
}

.ml-10,
.mx-10 {
  margin-left: 4.5rem !important;
}

.m-11 {
  margin: 5rem !important;
}

.mt-11,
.my-11 {
  margin-top: 5rem !important;
}

.mr-11,
.mx-11 {
  margin-right: 5rem !important;
}

.mb-11,
.my-11 {
  margin-bottom: 5rem !important;
}

.ml-11,
.mx-11 {
  margin-left: 5rem !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 2rem !important;
}

.pt-5,
.py-5 {
  padding-top: 2rem !important;
}

.pr-5,
.px-5 {
  padding-right: 2rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 2rem !important;
}

.pl-5,
.px-5 {
  padding-left: 2rem !important;
}

.p-6 {
  padding: 2.5rem !important;
}

.pt-6,
.py-6 {
  padding-top: 2.5rem !important;
}

.pr-6,
.px-6 {
  padding-right: 2.5rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 2.5rem !important;
}

.pl-6,
.px-6 {
  padding-left: 2.5rem !important;
}

.p-7 {
  padding: 3rem !important;
}

.pt-7,
.py-7 {
  padding-top: 3rem !important;
}

.pr-7,
.px-7 {
  padding-right: 3rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 3rem !important;
}

.pl-7,
.px-7 {
  padding-left: 3rem !important;
}

.p-8 {
  padding: 3.5rem !important;
}

.pt-8,
.py-8 {
  padding-top: 3.5rem !important;
}

.pr-8,
.px-8 {
  padding-right: 3.5rem !important;
}

.pb-8,
.py-8 {
  padding-bottom: 3.5rem !important;
}

.pl-8,
.px-8 {
  padding-left: 3.5rem !important;
}

.p-9 {
  padding: 4rem !important;
}

.pt-9,
.py-9 {
  padding-top: 4rem !important;
}

.pr-9,
.px-9 {
  padding-right: 4rem !important;
}

.pb-9,
.py-9 {
  padding-bottom: 4rem !important;
}

.pl-9,
.px-9 {
  padding-left: 4rem !important;
}

.p-10 {
  padding: 4.5rem !important;
}

.pt-10,
.py-10 {
  padding-top: 4.5rem !important;
}

.pr-10,
.px-10 {
  padding-right: 4.5rem !important;
}

.pb-10,
.py-10 {
  padding-bottom: 4.5rem !important;
}

.pl-10,
.px-10 {
  padding-left: 4.5rem !important;
}

.p-11 {
  padding: 5rem !important;
}

.pt-11,
.py-11 {
  padding-top: 5rem !important;
}

.pr-11,
.px-11 {
  padding-right: 5rem !important;
}

.pb-11,
.py-11 {
  padding-bottom: 5rem !important;
}

.pl-11,
.px-11 {
  padding-left: 5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.m-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}


@media (max-width: 768px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 2rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 2rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 2rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 2rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 2rem !important;
  }

  .m-sm-6 {
    margin: 2.5rem !important;
  }

  .mt-sm-6,
  .my-sm-6 {
    margin-top: 2.5rem !important;
  }

  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 2.5rem !important;
  }

  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 2.5rem !important;
  }

  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 2.5rem !important;
  }

  .m-sm-7 {
    margin: 3rem !important;
  }

  .mt-sm-7,
  .my-sm-7 {
    margin-top: 3rem !important;
  }

  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 3rem !important;
  }

  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 3rem !important;
  }

  .m-sm-8 {
    margin: 3.5rem !important;
  }

  .mt-sm-8,
  .my-sm-8 {
    margin-top: 3.5rem !important;
  }

  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 3.5rem !important;
  }

  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 3.5rem !important;
  }

  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 3.5rem !important;
  }

  .m-sm-9 {
    margin: 4rem !important;
  }

  .mt-sm-9,
  .my-sm-9 {
    margin-top: 4rem !important;
  }

  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 4rem !important;
  }

  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 4rem !important;
  }

  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 4rem !important;
  }

  .m-sm-10 {
    margin: 4.5rem !important;
  }

  .mt-sm-10,
  .my-sm-10 {
    margin-top: 4.5rem !important;
  }

  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 4.5rem !important;
  }

  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 4.5rem !important;
  }

  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 4.5rem !important;
  }

  .m-sm-11 {
    margin: 5rem !important;
  }

  .mt-sm-11,
  .my-sm-11 {
    margin-top: 5rem !important;
  }

  .mr-sm-11,
  .mx-sm-11 {
    margin-right: 5rem !important;
  }

  .mb-sm-11,
  .my-sm-11 {
    margin-bottom: 5rem !important;
  }

  .ml-sm-11,
  .mx-sm-11 {
    margin-left: 5rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 2rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 2rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 2rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 2rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 2rem !important;
  }

  .p-sm-6 {
    padding: 2.5rem !important;
  }

  .pt-sm-6,
  .py-sm-6 {
    padding-top: 2.5rem !important;
  }

  .pr-sm-6,
  .px-sm-6 {
    padding-right: 2.5rem !important;
  }

  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 2.5rem !important;
  }

  .pl-sm-6,
  .px-sm-6 {
    padding-left: 2.5rem !important;
  }

  .p-sm-7 {
    padding: 3rem !important;
  }

  .pt-sm-7,
  .py-sm-7 {
    padding-top: 3rem !important;
  }

  .pr-sm-7,
  .px-sm-7 {
    padding-right: 3rem !important;
  }

  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-7,
  .px-sm-7 {
    padding-left: 3rem !important;
  }

  .p-sm-8 {
    padding: 3.5rem !important;
  }

  .pt-sm-8,
  .py-sm-8 {
    padding-top: 3.5rem !important;
  }

  .pr-sm-8,
  .px-sm-8 {
    padding-right: 3.5rem !important;
  }

  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 3.5rem !important;
  }

  .pl-sm-8,
  .px-sm-8 {
    padding-left: 3.5rem !important;
  }

  .p-sm-9 {
    padding: 4rem !important;
  }

  .pt-sm-9,
  .py-sm-9 {
    padding-top: 4rem !important;
  }

  .pr-sm-9,
  .px-sm-9 {
    padding-right: 4rem !important;
  }

  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 4rem !important;
  }

  .pl-sm-9,
  .px-sm-9 {
    padding-left: 4rem !important;
  }

  .p-sm-10 {
    padding: 4.5rem !important;
  }

  .pt-sm-10,
  .py-sm-10 {
    padding-top: 4.5rem !important;
  }

  .pr-sm-10,
  .px-sm-10 {
    padding-right: 4.5rem !important;
  }

  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 4.5rem !important;
  }

  .pl-sm-10,
  .px-sm-10 {
    padding-left: 4.5rem !important;
  }

  .p-sm-11 {
    padding: 5rem !important;
  }

  .pt-sm-11,
  .py-sm-11 {
    padding-top: 5rem !important;
  }

  .pr-sm-11,
  .px-sm-11 {
    padding-right: 5rem !important;
  }

  .pb-sm-11,
  .py-sm-11 {
    padding-bottom: 5rem !important;
  }

  .pl-sm-11,
  .px-sm-11 {
    padding-left: 5rem !important;
  }
}

@media (max-width: 992px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 2rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 2rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 2rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 2rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 2rem !important;
  }

  .m-md-6 {
    margin: 2.5rem !important;
  }

  .mt-md-6,
  .my-md-6 {
    margin-top: 2.5rem !important;
  }

  .mr-md-6,
  .mx-md-6 {
    margin-right: 2.5rem !important;
  }

  .mb-md-6,
  .my-md-6 {
    margin-bottom: 2.5rem !important;
  }

  .ml-md-6,
  .mx-md-6 {
    margin-left: 2.5rem !important;
  }

  .m-md-7 {
    margin: 3rem !important;
  }

  .mt-md-7,
  .my-md-7 {
    margin-top: 3rem !important;
  }

  .mr-md-7,
  .mx-md-7 {
    margin-right: 3rem !important;
  }

  .mb-md-7,
  .my-md-7 {
    margin-bottom: 3rem !important;
  }

  .ml-md-7,
  .mx-md-7 {
    margin-left: 3rem !important;
  }

  .m-md-8 {
    margin: 3.5rem !important;
  }

  .mt-md-8,
  .my-md-8 {
    margin-top: 3.5rem !important;
  }

  .mr-md-8,
  .mx-md-8 {
    margin-right: 3.5rem !important;
  }

  .mb-md-8,
  .my-md-8 {
    margin-bottom: 3.5rem !important;
  }

  .ml-md-8,
  .mx-md-8 {
    margin-left: 3.5rem !important;
  }

  .m-md-9 {
    margin: 4rem !important;
  }

  .mt-md-9,
  .my-md-9 {
    margin-top: 4rem !important;
  }

  .mr-md-9,
  .mx-md-9 {
    margin-right: 4rem !important;
  }

  .mb-md-9,
  .my-md-9 {
    margin-bottom: 4rem !important;
  }

  .ml-md-9,
  .mx-md-9 {
    margin-left: 4rem !important;
  }

  .m-md-10 {
    margin: 4.5rem !important;
  }

  .mt-md-10,
  .my-md-10 {
    margin-top: 4.5rem !important;
  }

  .mr-md-10,
  .mx-md-10 {
    margin-right: 4.5rem !important;
  }

  .mb-md-10,
  .my-md-10 {
    margin-bottom: 4.5rem !important;
  }

  .ml-md-10,
  .mx-md-10 {
    margin-left: 4.5rem !important;
  }

  .m-md-11 {
    margin: 5rem !important;
  }

  .mt-md-11,
  .my-md-11 {
    margin-top: 5rem !important;
  }

  .mr-md-11,
  .mx-md-11 {
    margin-right: 5rem !important;
  }

  .mb-md-11,
  .my-md-11 {
    margin-bottom: 5rem !important;
  }

  .ml-md-11,
  .mx-md-11 {
    margin-left: 5rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 2rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 2rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 2rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 2rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 2rem !important;
  }

  .p-md-6 {
    padding: 2.5rem !important;
  }

  .pt-md-6,
  .py-md-6 {
    padding-top: 2.5rem !important;
  }

  .pr-md-6,
  .px-md-6 {
    padding-right: 2.5rem !important;
  }

  .pb-md-6,
  .py-md-6 {
    padding-bottom: 2.5rem !important;
  }

  .pl-md-6,
  .px-md-6 {
    padding-left: 2.5rem !important;
  }

  .p-md-7 {
    padding: 3rem !important;
  }

  .pt-md-7,
  .py-md-7 {
    padding-top: 3rem !important;
  }

  .pr-md-7,
  .px-md-7 {
    padding-right: 3rem !important;
  }

  .pb-md-7,
  .py-md-7 {
    padding-bottom: 3rem !important;
  }

  .pl-md-7,
  .px-md-7 {
    padding-left: 3rem !important;
  }

  .p-md-8 {
    padding: 3.5rem !important;
  }

  .pt-md-8,
  .py-md-8 {
    padding-top: 3.5rem !important;
  }

  .pr-md-8,
  .px-md-8 {
    padding-right: 3.5rem !important;
  }

  .pb-md-8,
  .py-md-8 {
    padding-bottom: 3.5rem !important;
  }

  .pl-md-8,
  .px-md-8 {
    padding-left: 3.5rem !important;
  }

  .p-md-9 {
    padding: 4rem !important;
  }

  .pt-md-9,
  .py-md-9 {
    padding-top: 4rem !important;
  }

  .pr-md-9,
  .px-md-9 {
    padding-right: 4rem !important;
  }

  .pb-md-9,
  .py-md-9 {
    padding-bottom: 4rem !important;
  }

  .pl-md-9,
  .px-md-9 {
    padding-left: 4rem !important;
  }

  .p-md-10 {
    padding: 4.5rem !important;
  }

  .pt-md-10,
  .py-md-10 {
    padding-top: 4.5rem !important;
  }

  .pr-md-10,
  .px-md-10 {
    padding-right: 4.5rem !important;
  }

  .pb-md-10,
  .py-md-10 {
    padding-bottom: 4.5rem !important;
  }

  .pl-md-10,
  .px-md-10 {
    padding-left: 4.5rem !important;
  }

  .p-md-11 {
    padding: 5rem !important;
  }

  .pt-md-11,
  .py-md-11 {
    padding-top: 5rem !important;
  }

  .pr-md-11,
  .px-md-11 {
    padding-right: 5rem !important;
  }

  .pb-md-11,
  .py-md-11 {
    padding-bottom: 5rem !important;
  }

  .pl-md-11,
  .px-md-11 {
    padding-left: 5rem !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 2rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 2rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 2rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 2rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 2rem !important;
  }

  .m-lg-6 {
    margin: 2.5rem !important;
  }

  .mt-lg-6,
  .my-lg-6 {
    margin-top: 2.5rem !important;
  }

  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 2.5rem !important;
  }

  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 2.5rem !important;
  }

  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 2.5rem !important;
  }

  .m-lg-7 {
    margin: 3rem !important;
  }

  .mt-lg-7,
  .my-lg-7 {
    margin-top: 3rem !important;
  }

  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 3rem !important;
  }

  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 3rem !important;
  }

  .m-lg-8 {
    margin: 3.5rem !important;
  }

  .mt-lg-8,
  .my-lg-8 {
    margin-top: 3.5rem !important;
  }

  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 3.5rem !important;
  }

  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 3.5rem !important;
  }

  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 3.5rem !important;
  }

  .m-lg-9 {
    margin: 4rem !important;
  }

  .mt-lg-9,
  .my-lg-9 {
    margin-top: 4rem !important;
  }

  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 4rem !important;
  }

  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 4rem !important;
  }

  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 4rem !important;
  }

  .m-lg-10 {
    margin: 4.5rem !important;
  }

  .mt-lg-10,
  .my-lg-10 {
    margin-top: 4.5rem !important;
  }

  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 4.5rem !important;
  }

  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 4.5rem !important;
  }

  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 4.5rem !important;
  }

  .m-lg-11 {
    margin: 5rem !important;
  }

  .mt-lg-11,
  .my-lg-11 {
    margin-top: 5rem !important;
  }

  .mr-lg-11,
  .mx-lg-11 {
    margin-right: 5rem !important;
  }

  .mb-lg-11,
  .my-lg-11 {
    margin-bottom: 5rem !important;
  }

  .ml-lg-11,
  .mx-lg-11 {
    margin-left: 5rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 2rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 2rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 2rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 2rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 2rem !important;
  }

  .p-lg-6 {
    padding: 2.5rem !important;
  }

  .pt-lg-6,
  .py-lg-6 {
    padding-top: 2.5rem !important;
  }

  .pr-lg-6,
  .px-lg-6 {
    padding-right: 2.5rem !important;
  }

  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 2.5rem !important;
  }

  .pl-lg-6,
  .px-lg-6 {
    padding-left: 2.5rem !important;
  }

  .p-lg-7 {
    padding: 3rem !important;
  }

  .pt-lg-7,
  .py-lg-7 {
    padding-top: 3rem !important;
  }

  .pr-lg-7,
  .px-lg-7 {
    padding-right: 3rem !important;
  }

  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-7,
  .px-lg-7 {
    padding-left: 3rem !important;
  }

  .p-lg-8 {
    padding: 3.5rem !important;
  }

  .pt-lg-8,
  .py-lg-8 {
    padding-top: 3.5rem !important;
  }

  .pr-lg-8,
  .px-lg-8 {
    padding-right: 3.5rem !important;
  }

  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 3.5rem !important;
  }

  .pl-lg-8,
  .px-lg-8 {
    padding-left: 3.5rem !important;
  }

  .p-lg-9 {
    padding: 4rem !important;
  }

  .pt-lg-9,
  .py-lg-9 {
    padding-top: 4rem !important;
  }

  .pr-lg-9,
  .px-lg-9 {
    padding-right: 4rem !important;
  }

  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 4rem !important;
  }

  .pl-lg-9,
  .px-lg-9 {
    padding-left: 4rem !important;
  }

  .p-lg-10 {
    padding: 4.5rem !important;
  }

  .pt-lg-10,
  .py-lg-10 {
    padding-top: 4.5rem !important;
  }

  .pr-lg-10,
  .px-lg-10 {
    padding-right: 4.5rem !important;
  }

  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 4.5rem !important;
  }

  .pl-lg-10,
  .px-lg-10 {
    padding-left: 4.5rem !important;
  }

  .p-lg-11 {
    padding: 5rem !important;
  }

  .pt-lg-11,
  .py-lg-11 {
    padding-top: 5rem !important;
  }

  .pr-lg-11,
  .px-lg-11 {
    padding-right: 5rem !important;
  }

  .pb-lg-11,
  .py-lg-11 {
    padding-bottom: 5rem !important;
  }

  .pl-lg-11,
  .px-lg-11 {
    padding-left: 5rem !important;
  }
}

.m-auto {
  margin-left: auto !important;
  margin-right: 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;
  right: 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: #c3c3c3;
}

.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: linear-gradient(to right, rgb(253, 5, 5), rgb(255, 168, 5));
  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 #1a73e8, 0 0 5px #1a73e8;
  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-top-color: #29d;
  border-left-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);
  }
}

*/
 
/* ---------------------------------- */
/* grid slider header and their icon sliders  
------------------------------------- */

.grid-slider-header {
  margin-bottom: 15px;
}

.grid-slider-header h3 {
  overflow: hidden;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 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 ,
.grid-slider-header .slide-nav-prev.uk-invisible:hover,
.grid-slider-header .slide-nav-next.uk-invisible:hover  {
  visibility: visible !important;
  opacity: .15;
  color: #040404;
  cursor: default;
  background: #cecece;
}

.grid-slider-header .slide-nav-prev,
.grid-slider-header .slide-nav-next {
  background: #ffffff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: 5px;
  color: #7f7f7f;
}

.grid-slider-header .slide-nav-prev:hover,
.grid-slider-header .slide-nav-next:hover {
  background-color: #e2e2e2;
  color: #454545;
}

.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: "\e92f";
}

.grid-slider-header .slide-nav-next:before {
  content: "\e930";
}

@media (max-width: 768px) {

  .grid-slider-header,
  .grid-slider-header-link {
    padding-right: 10px !important;
  }

}


/* ---------------------------------- */
/* Slider nav custom icon  
------------------------------------- */

/* 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: rgb(232, 240, 254);
}

.slidenav-next:before,
.slidenav-prev:before {
  font-family: "Feather-Icons";
  font-weight: 600;
  text-align: center;
  margin: 0;
  margin-left: 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-left: 0px !important;
}

.uk-position-center-right.slidenav-next {
  margin-right: 0px !important;
}

.uk-position-center-right-out.slidenav-next {left: 96.4%;}
.uk-position-center-left-out.slidenav-prev { right: 96.4%;
}
@media (max-width: 768px) {

  .slidenav-next,
  .slidenav-prev {
    background: white;
  }

  .uk-position-small[class*='slidenav-next'],
  .uk-position-small[class*='slidenav-prev'] {
    margin-left: -10px;
    margin-right: -10px;
  }
}


/* ---------------------------------- */
/* Slider nav arrow  
------------------------------------- */


.btn-arrow-slider{
  height: 26px;
  cursor: pointer;
  display: inline-flex; 
}

.btn-arrow-slides{
  margin: 0 5px;
  position: relative;
  padding: 17px 0;
}
 
.btn-arrow-slides span{
  display: block;
  position: relative;
  transition: width 0.3s ease 0s;
}

.btn-arrow-slides:before {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 30%;
  background-color: #1a73e8;
  position: relative;
  transition: width 0.3s ease 0s;
}
 
span.arrow-left::before ,
span.arrow-left::after ,
span.arrow-right::before ,
span.arrow-right::after {
  content: "";
  display: block;
  width: 14px;
  height: 3px;
  background-color: #1a73e8;
  position: absolute;
  z-index: 1;
  top: -3px;
  border-radius: 7px;
  transition: all 0.3s ease 0s;
}


span.arrow-left::before ,
span.arrow-left::after {
  left: 2px;
  transform: rotate(0deg);
  transform-origin: 0px 2px;
}
span.arrow-right::before ,
span.arrow-right::after {
  right: 2px;
  transform: rotate(0deg);
  transform-origin: 14px 2px;
} 



span.arrow-left::before{
  transform: rotate(-42deg);
}
span.arrow-left::after{
  transform: rotate(42deg);
}
span.arrow-right::before{
  transform: rotate(42deg);
}
span.arrow-right::after{
  transform: rotate(-42deg);
}



.btn-arrow-slides.uk-invisible span {
  visibility: visible !important;
}
.btn-arrow-slides.uk-invisible span:before ,
.btn-arrow-slides.uk-invisible span:after{
  background-color: #e0e0e0;
  transform: rotate(0deg);
  margin-top: 0px;
  opacity: 0.1;
}
.btn-arrow-slides.uk-invisible:before {
    content: '';
    display: block;
    width: 24px !important;
    visibility: visible !important;
    background-color:#bdbdbd;
    opacity: .4;
}





 
.btn-arrow-slides.left:before {
  width: 24px !important;  
  background-color:#bdbdbd;
}
.btn-arrow-slides.left:hover:before{
  width: 45px !important;
  background-color: #1a73e8;
}
.btn-arrow-slides.left span:before,
.btn-arrow-slides.left span:after{
  background-color:#bdbdbd;
  transform: rotate(0deg);
  margin-top: 0px;
}
 
.btn-arrow-slides.left:hover span.arrow-left::before{
  transform: rotate(-42deg) !important;
  background-color: #1a73e8;
}
.btn-arrow-slides.left:hover span.arrow-left::after{
  transform: rotate(42deg) !important;
  background-color: #1a73e8;
}


@media (max-width: 960px) {
  .btn-arrow-slides:before {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
  }

  span.arrow-left::before,
  span.arrow-left::after,
  span.arrow-right::before,
  span.arrow-right::after {
    content: "";
    display: block;
    width: 10px;
    height: 3px;
  }

  span.arrow-right::before,
  span.arrow-right::after {
    transform-origin: 11px 2px;
  }
  .btn-arrow-slides.uk-invisible:before { 
    width: 19px !important;
  }
}
  


 
/* ---------------------------------- */
/* Header Dropdown Notification box   
------------------------------------- */

.dropdown-notifications {
  width: 340px;
  border-radius: 4px;
  padding: 0 !important;
}

.dropdown-notifications.large {
  width: 420px;
}

.dropdown-notifications.small {
  width: 210px;
}

.dropdown-notifications:before {
  content: "";
  position: absolute;
  right: 8px;
  top: -13px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid #e8e9eb;
  border-color: transparent transparent #eaeaea transparent;
  top: -13px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid #e8e9eb;
  border-color: transparent transparent #eaeaea transparent;
  display: none;
}

.dropdown-notifications-headline {
  padding: 16px 20px;
  line-height: 24px;
  border-bottom: 1px solid #e6e6e6;
  color: #29303b;
}

.dropdown-notifications-headline h4 {
  display: inline-block;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
  color: #666 !important;
}

.dropdown-notifications-headline a {
  float: right;
  position: relative;
  border-radius: 4px;
  height: 32px;
  width: 32px;
  text-align: center;
  line-height: 36px;
  top: -4px;
  right: -8px;
  color: #888 !important;
  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%;
  height: 370px !important;
}

.dropdown-notifications-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dropdown-notifications-content ul li {
  border-bottom: 1px solid #f3f3f3;
  transition: 0.25s;
  margin-right: 0;
  position: relative;
}

.dropdown-notifications-content ul li:last-child {
  border-bottom: 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: 18px 17px;
}

.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::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 62px;
  top: 0;
  z-index: 1000000;
  background: red;
  background: url(../images/icon-play.svg) no-repeat;
  background-size: auto 50%;
  background-position: center;
}

.dropdown-notifications-content .notification-image,
.dropdown-notifications-content .notification-text {
  flex: 1;
}

.notification-text,
.dropdown-notifications-content .notification-text {
  padding-left: 16px;
  padding-right: 5px;
  display: inline-block;
  line-height: 23px;
  font-size: 13.6px;
}

.dropdown-notifications-content .notification-text .time-ago {
  font-size: 12.7px;
  color: #9f9d9d;
}

.dropdown-notifications-content .notification-text.notification-msg-text .time-ago {
  position: absolute;
  top: 14px;
  display: inline-block;
  right: 16px;
  font-size: 13px;
}

.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 {
  padding: 0;
  font-size: 21px;
  height: 40px;
  width: 40px;
  max-width: 40px;
  display: inline-block;
  background-color: #f2f2f2;
  border-radius: 6px;
  line-height: 42px;
  text-align: center;
  color: #a0a0a0;
  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: inherit;
  margin: 4px 0;
}

.dropdown-notifications-footer {
  background: #f7f8fa;
  height: 51px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #ebeef3;
}

.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;
}


.dropdown-search {
  border-radius: 4px;
  padding: 0 !important;
  width: 554px !important;
  margin-left: -22px;
  margin-top: 0px !important;
  border-radius: 0 0 8px 8px;
  left: 21px !important;
  right: auto !important;
}

/* dropdown-search Nav */
ul.dropdown-search-list .list-title {
  transition: 0.3s;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .3px;
  color: #9799a2;
  padding: 7px 14px; 
}
ul.dropdown-search-list .list-footer a{
  letter-spacing: .3px;
  padding: 5px 19px;
  font-size: 13px;
  text-align: right;
  display: inline-block;
  float: right;
  margin-bottom: 6px;
}
ul.dropdown-search-list .list-footer a:hover{
  background-color:transparent;
}


ul.dropdown-search-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 6px;
}

ul.dropdown-search-list li {
  margin: 0;
  padding: 0;
  display: block !important;
}

ul.dropdown-search-list li a {
  display: block;
  font-size: 13.5px;
  transition: 0.3s;
  color: #9799a2;
  padding: 10px 19px;
  /* 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: .5px solid rgba(229, 229, 229, 0.45);
}

  /* 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: block;
  font-size: 14px;
  transition: 0.3s;
  color: #4b4b4b;
  padding: 9px 18px;
}

ul.dropdown-user-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.07);
  color: #2f3152;
  background: #e8f0fe;
  color: #1a73e8;
}

ul.dropdown-user-menu li a i {
  font-size: 19px;
  position: relative;
  top: 1px;
  margin-right: 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-bottom: 9px;
  border-bottom: 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-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.dropdown-user-details span {
  display: block;
  font-size: 12.7px;
  color: #888;
  font-weight: 500;
}

/* ---------------------------------- */
/* button option menu  
------------------------------------- */
.btn-option {
  position: absolute !important;
  top: 4px;
  right: 4px;
  font-size: 21px;
  padding: 5px 3px !important;
  z-index: 1;
}
.video-post-thumbnail .btn-option {
  color:white 
} 

/* dropdown option menu */
.dropdown-option-nav {
  z-index: 10000 !important;
  border-radius: 6px;
  min-width: 180px !important;
  padding: 0 !important;
  margin-top: 3px !important;
}

.dropdown-option-nav:before {
  content: "";
  position: absolute;
  right: 8px;
  top: -13px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid #e8e9eb;
  border-color: transparent transparent #ffffff transparent;
  top: -10px;
}

.uk-dropdown-top-right.dropdown-option-nav:before {
  right: 5px;
  top: -13px;
  border-bottom: 0;
  top: auto;
  bottom: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 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-weight: 600;
  font-size: 13px;
  transition: 0.3s;
  color: #9799a2;
  padding: 9px 14px;
}

.dropdown-option-nav ul li>span:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.dropdown-option-nav ul li>span i {
  font-size: 19px;
  position: relative;
  top: 1px;
  margin-right: 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: auto !important;
    margin: auto;
    max-width: 400px;
    top: 56px !important;
  }

}

@media (max-width: 420px) {

  /*.user-menu .dropdown-notifications */
  .dropdown-notifications {
    width: 100% !important;
    margin: auto;
    margin: auto;
    margin: auto;
    right: 0 !important;
    margin: auto;
    left: 0 !important;
    margin: auto;
    max-width: 360px;
    top: 60px !important;
  }

  .dropdown-notifications-content .notification-text .time-ago {
    font-size: 13px;
  } 
}


/* ---------------------------------- */
/* user details card avatar 
------------------------------------- */

/*  User Details */
.user-details-card {
  display: flex;
  padding: 20px 0px;
  align-items: center;
}


.user-details-card-avatar {
  display: inline-block;
  border-radius: 50%;
  position: relative;
  max-width: 50px;
}

.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 0 0 15px;
  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-left: 6px;
  color: #afafaf;
}

@media (max-width: 768px) {
  .user-details-card-avatar {
    max-width: 50px;
  }
}


/* ---------------------------------- */
/* Comments
------------------------------------- */
.comments {
  margin: 40px 0px;
}

.comments ul {
  padding-left: 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 0 0 90px;
}

.comment-content p {
  margin: 3px 0 0 0;
  line-height: 26px;
  padding: 5px 0;
}

.comments ul li {
  position: relative;
}

.comment-content strong {
  padding-right: 5px;
  color: #666;
}

.comment-content span {
  color: #888;
}

.comments-amount {
  color: #888;
  font-weight: 500;
  margin-left: 8px;
}

.avatar {
  display: inline-block;
  padding: 0 17px 0 0;
  position: absolute;
  left: 0px;
  top: -5px;
}

.avatar img {
  max-width: 60px;
  border-radius: 50%;
}

.comment-by {
  width: 100%;
  padding-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.comment-by .comment-stars {
  display: inline;
  line-height: 22px;
  font-weight: 500;
  position: absolute;
  right: 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;
  right: 0;
  top: 14px;
  border-radius: 4px;
}

.comment-by a.reply i {
  font-size: 12px;
  margin-right: 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: left;
  font-size: 13px;
}

.comment-footer {
  margin-top: 13px
}

.comment-footer span {
  font-size: 15px;
  margin-right: 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-right: 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;
  }

}




/* ---------------------------------- */
/* catagroy  card   
------------------------------------- */
.catagroy-card {
  background-color: #ffffff;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 0px 14px -8px black;
  overflow: hidden;
  height: 130px;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
 
.catagroy-card:before{
  position: absolute;
  content: '';
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 44%;
  opacity: 0.5;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #2b2b2b 60%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #2b2b2b 60%);
  background-blend-mode: color-burn;
}

.catagroy-card-content{
  position: relative;
  width: 100%;
  padding: 12px 13px;
  z-index: 2;
}

.catagroy-card-content h4{
  margin-bottom: 0;
  color: white;
}
 
/* ---------------------------------- */
/* Browse channals card   
------------------------------------- */
 
.single-channal-creator{
  width: 100px;
  border-radius: 100%;
  overflow: hidden;
  margin: auto;
  margin-bottom: 7px;
  border: 3px solid white;
}
.single-channal-body{
    text-align: center;
    padding: 0 15px 20px;
}
.single-channal-body h4{
    font-size: 15px;
    margin-bottom: 2px;
}
.single-channal-body p{
    color: #6b6b6b;
    font-size: 13.2px;
    margin-bottom: 11px;
}
.single-channal .subscibe-btn {
  background: red
}






/* ---------------------------------- */
/* channal sigle page design  
------------------------------------- */
 
.channal .channal-cover {
  min-height: 100%;
  max-height: 100%;
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  min-height: 250px;
}

.channal .channal-cover img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  display: block;
  transform: translate(-50%,-50%);
  object-fit: cover;
}

.channal-cover:before {
  position: absolute;
  content: '';
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  opacity: 0.5;
  border-radius: inherit;
  background-blend-mode: color-burn;
}

.channal-details {
    display: flex;
    position: relative;
    margin-top: -110px;
    z-index: 2;
    margin-bottom: 20px;
    width: 93%;
    padding: 0px 3%;
    align-items: center;
}
.channal-details .left-side{
    flex: 1;
    display: flex;
    align-items: center;
}
.channal-details .right-side{
    width: auto;
}
.channal-details .channal-image{
    margin-right: 17px;
}
.channal-details .channal-image img{
  width: 60px;
  border-radius: 100%;
}

.channal-details .channal-details-info h3{
    color: white;
    margin-bottom: 2px;
}

.channal-details .channal-details-info p{
    color: white;
    margin-bottom: 0px;
}

.nav-channal{
    background: white;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0px 6px 12px -10px #c4c4c4;
    margin-top: 13px;
    position: relative;
    margin: auto;
    z-index: 2;
}

.nav-channal .responsive-tab a{
  padding: 0px 19px;
  margin-right: 0;
}

.nav-channal-saerchbox{
  display: flex;
  top: 9px;
  right: 16px;
  width: 250px;
  z-index: 1;
  position: absolute;
}

.nav-channal-saerchbox i {
  position: absolute;
    right: 12px;
    top: 10px;
}

.nav-channal-saerchbox .uk-input{
    height: 37px;
    padding: 0px 11px;
    font-size: 14px;
}

@media (max-width: 965px) {
  .channal .channal-cover {
  min-height: 200px;
  }

  .channal-details .channal-image img {
    width: 40px
  }

  .btn-subscribe a {
    padding: 5px;
    height: 23px;
    font-size: 14px;
    line-height: 23px;
  }

  .btn-subscribe i,
  .btn-subscribe .button:before,
  .btn-subscribe .subs-amount {
    display: none !important;
  }

  .channal-details .channal-details-info p {
    font-size: 13px;
  }

  .channal .main_content_inner {
    padding: 0
  }

  .nav-channal {
    border-radius: 0;
  }

  .nav-channal-saerchbox {
    display: none
  }
}


/* ---------------------------------- */
/*   main header 
------------------------------------- */

#main_header {z-index: 100;position: fixed;width: 100%;background-color: white;}
.header-scrolled {box-shadow: 0 1px 0 0 rgba(139, 141, 157, 0.05), 0 -1px 10px 0 rgba(65, 71, 108, 0.15) !important;box-shadow: 0 1px 0 0 rgba(139, 141, 157, 0.05), 10px 1px 7px 0 rgba(65, 71, 108, 0.15) !important;}
header .header-traiger {padding: 9px;left: 20px;position: absolute;font-size: 23px;cursor: pointer;border-radius: 60px;}
header .header-traiger:hover{ background-color:#f1f3f4 }
.uk-light header .header-traiger {color:white}
header #logo {position: absolute;left: 65px;}
header #logo img {width: 119px;}
header #logo .logo-inverse {display: none;}
.uk-light #logo img { display: none;}
.uk-light #logo .logo-inverse {display: inline; }
header {height: 64px;display: flex;align-items: center;padding: 0px 35px;margin-left: 270px;/* position: relative; *//* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); *//* border-bottom: 1px solid #f1f1f1; *//* box-shadow: 0px 5px 15px -7px rgba(0, 0, 0, 0.1); *//* box-shadow: 0 1px 0 0 rgba(139, 141, 157, 0.05), 10px 1px 7px 0 rgba(65, 71, 108, 0.15) !important; */}
.head_search .head_search_cont ,.head_search {position: relative;}
.head_search .head_search_cont input {height: 46px;color: #393939;padding: 0 30px 0 45px;border-radius: 100px;width: 100%;outline: 0;background: #f1f3f4;border: 1px solid transparent;-webkit-border-radius: 8px;border-radius: 8px;min-width: 400px;}
.head_search .head_search_cont input:focus {/* box-shadow: 0 1px 1px rgba(0,0,0,0.24); *//*background: #fff;border: 1px solid rgba(0,0,0,0.12);*/border-radius: 8px 8px 0px 0px;}
.uk-light .head_search .head_search_cont input {background-color:white !important}
.head_search .head_search_cont > i.s_icon {position: absolute;pointer-events: none;top: 50%;left: 17px;transform: translateY(-50%);color: #737373;}
header .head_user {margin-left: auto;display: flex;align-items: center;}
header .head_user .btn.login {color: #d2d2d2;font-weight: 500;letter-spacing: .25px;margin-right: 5px;}
header .head_user .btn.btn-mat {background-color: rgb(255, 242, 219);border-color: rgba(249, 144, 31, 0.05);color: #1a73e8;padding: 7px 16px;line-height: 19px;font-size: 13px;border-radius: 5px;font-weight: bold;}
header .head_user .btn.btn-mat:hover {background-color: #ff8d00;border-color: #ff8d00;color: #fff;}
header .head_user .opts_icon {margin-left: 10px;font-size: 19px;position: relative;padding: 6px 8.6px;border-radius: 100px;}
header .head_user .opts_icon:hover{ background-color: #f1f3f4}
header .head_user .opts_icon span {position: absolute !important;display: block;top: 2px;margin-left: -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 .head_user .opts_account {margin-left: 12px;}
header .head_user .opts_account > img {width: 36px;height: 36px;object-fit: cover;border-radius: 50%;cursor: pointer;}

/* ---------------------------------- */
/*   custom header btn icons 
------------------------------------- */
header .icon-browse{
  width: 220px;
  padding: 1.5rem 1rem;
  padding-bottom: 0;
  padding-top: 10px;
  border-radius: .75rem;
}
 
header .icon-browse .icon-menu-item {
  width: 90px;
  display: inline-block;
  text-align: center;
  padding: 0.9rem 0;
  /* margin-bottom: 0.9rem; */
  color: rgba(33,33,33,.8);
}
header .icon-browse .icon-menu-item i {
  font-size: 28px;
  line-height: 42px;
  display: block;
}

header .icon-browse .icon-menu-item:hover {
  color: #1a73e8;
  background: #e8f0fe;
  border-radius: 10px;
}
header .icon-browse .more-app{
  background: #f7f7f7;
  border-radius: 0 0 10px 10px;
  padding: 10px 0;
  text-align: center;
  color: #969696;
  width: 220px;
  display: inline-block;
  margin-bottom: 0;
  font-size: 14px;
  margin: 0 -14px;
  border-top: 1px solid #eaeaea;
  margin-top: 14px;
}
header .btn-upload , header .btn-upgrade { 
  border-color: rgba(249, 144, 31, 0.05);
  color: #1a73e8;
  padding: 7px 11px;
  line-height: 22px;
  font-size: 13px;
  border-radius: 5px;
  font-weight: 600;
}
 
header .btn-upgrade {
  padding: 7px 17px;
}

header .btn-upload:hover , header .btn-upgrade:hover {
  background: rgb(241, 243, 244);
  color: #1a73e8;
}

.uk-light header .btn-upload:hover , .uk-light header .btn-upgrade:hover {
  background: white;
  color: #1a73e8 !important;
}
 




/* ---------------------------------- */
/*   main sidebar 
------------------------------------- */


.sidebar {overflow: hidden;height: calc(100% - -60px);}
.sidebar .sidebar_innr {overflow: hidden;overflow-y: auto;/* padding-right: 10px; */}
.sidebar .sidebar_innr .sections {padding: 0 0 0px;list-style-type:none;margin: 0;border-bottom: 1px solid rgba(0,0,0,0.12);margin-bottom: 12px;}
.sidebar .sidebar_innr .sections:first-child {padding-top: 15px;}
.sidebar .sidebar_innr .sections:last-child {padding-bottom: 15px;}
.sidebar .sidebar_innr .sections h3 {margin: 0;padding: 3px 24px 8px;font-size: 12px;letter-spacing: 0.75px;text-transform: uppercase;color: #999595;/* display: none; */}
.sidebar .sidebar_innr .sections ul { padding:0}
.sidebar .sidebar_innr .sections li {display: block;width: 100%;height: auto;position: relative;}
.sidebar .sidebar_innr .sections li a {padding: 0 26px;display: flex;position: relative;align-items: center;line-height: 35px;font-weight: 600;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-size: 14px;color: #6d6d6d;color: #202124;transition: all 0.1s;border-radius: 0 25px 25px 0;letter-spacing: .01785714em;font-size: .9rem;/* width: 100%; */}
.sidebar .sidebar_innr .sections li a:hover, .sidebar .sidebar_innr .sections li a:focus {background-color: #ededed;background-color: #f1f3f4;}
.sidebar .sidebar_innr .sections li.active a {color: #1a73e8;background-color: #e8f0fe;}
.sidebar .sidebar_innr .sections li.active a:before{content:'';position:absolute;left: -12px;width: 18px;/* background: #377dff; */height: 107%;border-radius: 22%;/* background: linear-gradient(to right, rgb(253, 5, 5), rgb(255, 168, 5)); */} 
.sidebar .sidebar_innr .sections li a i {margin-right: 22px;font-size: 17px;}
.sidebar .sidebar_innr .sections li a img {margin-right: 15px;width: 30px;border-radius: 100%;}
.sidebar .sidebar_innr .sections li a .dot-notiv {background: #1a73e8;width: 5px;height: 5px;position: absolute;right: 24px;border-radius: 100%;overflow: hidden;}
.main_sidebar {display: block;margin-top: 57px;width: 260px;background-color: white;color: inherit;z-index: 99;z-index: 10000;position: fixed;top: 0;left: 0;bottom: 0;height: calc(100% - 60px);}
.main_sidebar .sidebar-header {height: 60px;display: flex;padding: 0 24px;align-items: center;border-bottom: 1px solid #e2e2e2;}
.main_sidebar .sidebar-header h4 {margin-bottom: 0;font-size: 18px;}
.main_sidebar .sidebar-header .btn-close {position: absolute;right: 25px;}
.main_sidebar .sidebar-header .btn-close::before {
  font-family: "Feather-Icons";
  font-size: 22px;
  content: '\e92f';
  line-height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  padding: 6px;
  cursor: pointer;
}
.main_sidebar .sidebar-header {display: none;}
.main_sidebar .side-overlay {z-index: 1;position: fixed;width: 100%;margin-left: 270px;height: 100%;background: hsla(0, 0%, 0%, 0.42);visibility: hidden;} 


@media (min-width: 1220px) {

  .collapse-sidebar .main_sidebar {
    width: 90px;
    overflow: hidden;
  }

  .collapse-sidebar .main_sidebar:hover {
    width: 260px;
    transition: all 300ms 0s ease-in-out;
    z-index: 10001;
    background-color: #fff;
    -webkit-box-shadow: 0 16px 10px 0 rgba(0,0,0,0.14), 0 11px 18px 0 rgba(0,0,0,0.12), 0 13px 5px -1px rgba(0,0,0,0.2);
    box-shadow: 0 16px 10px 0 rgba(0,0,0,0.14), 0 11px 18px 0 rgba(0,0,0,0.12), 0 13px 5px -1px rgba(0,0,0,0.2);
    /* -webkit-transition-property: background-color,box-shadow,max-width,min-width; */
    /* transition-property: background-color,box-shadow,max-width,min-width; */
    z-index: 100;
    /* transition: all 0.35s cubic-bezier(0, 0, 0, 1.09); */
  }
   .collapse-sidebar .sidebar .sidebar_innr .sections li a  {
     padding: 11px 27px;
  }
   
  .collapse-sidebar .main_sidebar:hover .sidebar_innr .sections li a  {
    padding: 0px 28px;
  }
  .collapse-sidebar .sidebar  .sidebar_innr .sections li a i  {
      font-size: 20px;
  }
  .collapse-sidebar .sidebar:hover .sidebar_innr .sections li a i {
     font-size:17px
  }

  .sidebar .sidebar_innr .sections li a :hover ul li a {
    justify-content: initial !important;
  }
  .collapse-sidebar .sidebar .sidebar_innr .sections {
    border-color: transparent;
    margin-bottom: 0px;
  }

  .collapse-sidebar .sidebar:hover .sidebar_innr .sections {
    border-color:rgba(0,0,0,0.12);
    margin-bottom: 12px;
  }
  
.collapse-sidebar .main_sidebar .sidebar_innr .sections li a span,
.collapse-sidebar .sidebar .sidebar_innr .sections h3 ,
.collapse-sidebar .sidebar .sidebar_innr .button ,
.collapse-sidebar .sidebar_innr ul li a:after {
   display: none;
}

.collapse-sidebar .sidebar:hover  .sidebar_innr .sections li a span,
.collapse-sidebar .sidebar:hover .sidebar_innr .button ,
.collapse-sidebar .sidebar:hover ul li a:after {
  display: inline-block;
}

   

}

/* Dropdown Styles */
.sidebar_innr ul li ul {
  padding: 0;
  margin: 0;
  visibility: hidden;
  max-height: 0;
  opacity: 0;
  line-height: 0;
  transition: 0.3s;
  pointer-events: none;
}

.sidebar_innr ul li.active-submenu ul {
  visibility: visible;
  padding: 0px 0 13px 0;
  line-height: 24px;
  opacity: 1;
  max-height: initial;
  pointer-events: all;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.sidebar_innr ul li ul li {
  background-color: transparent;
  border: none; 
  position: relative;
  margin: 0;
}

.sidebar_innr ul li ul li a {
  padding-left: 56px !important;
} 

.sidebar_innr ul li ul li:hover {
  border: none;
  background-color: transparent;
}

/* Indicator Arrow */
.sidebar_innr 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-left: 7px;
  text-indent: 0;
  top: 1px;
  position: absolute;
  right: 35px;
  top: 15px;
}

.sidebar_innr ul li.active-submenu a:after {
  content: '\e931';
}

.sidebar_innr ul li.active-submenu a:after,
.sidebar_innr ul li.active a:after,
.sidebar_innr ul li:hover a:after {
  color: #66676b;
  opacity: 0.8;
}

.sidebar_innr ul li ul:before,
.sidebar_innr ul li a:only-child:after {
  content: '';
  display: none;
}
 
.sidebar_innr ul li ul li a:after {
  display: none !important ;
} 

#foot{
  padding: 0 15px 0px 15px;
 }
 
 #foot ul {
   padding: 0;
   margin-bottom: 0px;
 }
 #foot ul  li {
   font-size: 13px;
   display: inline;
   margin-right: 7px;
   font-weight: 600;
 }
  
  #foot ul  li a:hover{ text-decoration:underline}
 #foot .foot-content{margin-top: 15px;font-size: 13px;margin-bottom: 80px;}
 #foot .foot-content p{margin-bottom: 0px; }

 

/* ---------------------------------- */
/*   sidebar out of the page 
------------------------------------- */
.sidebar-out .main_content {margin-left: 0px !important;} 
.sidebar-out .main_sidebar {margin-left: -260px;margin-top: 0;}
.sidebar-out .main_sidebar .sidebar { height: calc(100% - 0px);}
.sidebar-out .sidebar-header {display: flex !important;}
.sidebar-out.collapse-sidebar .main_sidebar {margin-left: 0px;z-index: 1000;position: fixed;height: calc(100% - 0px);width: 270px;} 
.sidebar-out.collapse-sidebar .main_sidebar .side-overlay { visibility: visible;} 

 

 .sidebar-out.collapse-sidebar .sidebar .sidebar_innr .sections li a  {
     padding: 0px 28px !important;
  }
  .sidebar-out.collapse-sidebar .sidebar .sidebar_innr .sections li a span ,
  .sidebar-out.collapse-sidebar .sidebar .sidebar_innr .sections .button {
     display:block !important
  } 
  .sidebar-out.collapse-sidebar .sidebar .sidebar_innr .sections li a i {
     font-size:17px 
  }
  .sidebar-out.collapse-sidebar .sidebar .sidebar_innr .sections  {
       border-color:rgba(0,0,0,0.12);
    margin-bottom: 12px;
  }


/* ---------------------------------- */
/*   collapse sidebar
------------------------------------- */
.collapse-sidebar .main_sidebar{margin-left: 0px;} 
.collapse-sidebar .main_content{margin-left: 80px;}
.collapse-sidebar .sidebar .sidebar_innr{padding-right: 10px}

.main_sidebar, .main_content{
  transition: all 0.45s cubic-bezier(0, 0, 0, 1.09);
 } 

/* ---------------------------------- */
/*   page contents Layout
------------------------------------- */

.main_content {position: relative;z-index: 5;display: block;margin-left: 275px;padding-top: 65px;}
.main_content_inner {display: block;padding: 20px;margin: auto;padding-bottom: 0;}
 
 
@media (min-width: 1200px) {
  .main_content_inner {
    max-width: 1140px;
    padding: 25px;
    padding-bottom: 0;
    padding-top: 15px;
  }

  .collapse-sidebar .main_content_inner {
    max-width: 1200px;
  }

  .content-expand .main_content_inner {   
    max-width: 1340px;  
  }
}

@media (min-width: 1650px) {
  .main_content_inner {
    max-width: 1300px;
  }
  
}

/* ---------------------------------- */
/*   small devices
------------------------------------- */

@media (max-width: 1100px) {
  .main_content {
    margin-left: 0px;
    padding-top: 0px;
    background: white;
  }
  
  .main_sidebar{
    margin-top: 0;
    z-index: 1000;
    position: fixed;
    height: calc(100% - 0px);
    width: 270px;
  }
  .main_sidebar,
  .collapse-sidebar .main_sidebar {
    margin-left: -270px;
  }

  .mobile-visible .main_sidebar {
    margin-left: 0px !important;
  }

  .main_sidebar .sidebar-header h4 {
    font-size: 15px;
  }
  .sidebar .sidebar_innr .sections{
    padding: 0 !important;
  }
  .main_sidebar .sidebar-header {
    display: flex !important;
    height: 50px;
  }

  .sidebar .sidebar_innr .sections h3 {
    display: none;
  }

  .mobile-visible  .main_sidebar .side-overlay { 
    visibility: visible;
  } 

  header .head_search {
    display: none;
  }

  header {
    height: 60px;
    padding: 0px 20px;
    margin-left: 0px;
  }

  header #logo {
    position: relative;
    left: -7px;
  }

  header .header-traiger {
    left: -12px;
    position: relative;
  }
  header .head_user .opts_icon{
    margin-left: 0px;
    font-size: 20px;
    padding: 6px 8px;
    }
    header .head_user .opts_account {
      margin-left: 5px;
      width: 30px;
      height: 30px;
  }
  header .head_user .opts_account > img {
    width: 30px;
    height: 30px;
  }
}






/* ---------------------------------- */
/* Video Post card 
------------------------------------- */
.video-post {
  transition: 0.3s;
  position: relative;
}

.video-post-thumbnail {
  flex: 0 0 auto;
  max-width: none;
  max-height: 100%;
  position: relative;
  width: 100%;
  height: 140px;
} 

.video-post-thumbnail img {height: 100%;width: 100%;object-fit: cover;position: absolute;top: 0;left: 0;border-radius: 10px;}


.video-post-content {
  flex: 1;
  padding-top: 9px;
}
.video-post-content img{
  border-radius: 100%;
  width: 30px;
  float: left;
  margin-right: 10px;
}

.video-post-content h3{font-size: 15px;line-height: 22px;color: #333 !important;margin-bottom: 8px;display: block;}

.blog-post-content h3 a:hover {
color: #66676b;
}

span.video-post-time , span.video-post-count{
  font-size: 12px;
  color: #ffffff;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
  background-color: #292929;
  border-radius: 7px;
  line-height: 19px;
  padding: 1px 7px;
  margin-right: 3px;
  transition: 0.3s;
}

.video-post-content p {
  padding: 0;
  margin: 0;
  display: block;
  color: #808080;
}

.video-post-user,
.video-post-date,
.video-post-views {
  line-height: 14px;
  font-size: 13px;
  color: #737373;
}

.video-post-user {
  display: block;
  font-weight: 600;
}

/* play button on hover video  card image*/

.video-post-thumbnail .play-btn-trigger {
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../images/icon-play.svg) no-repeat;
  background-size: auto 40%;
  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;
}

.video-post:hover .play-btn-trigger,
.play-btn-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);
}


/* ---------------------------------- */
/* Small Devices 
------------------------------------- */
@media (max-width: 760px) {
  .video-post {
    margin-bottom: 30px;
    display: flex
  }

  .video-post .video-post-thumbnail {
    width: 140px;
    height: 80px;
  }

  .video-post .video-post-content {
    padding: 0 0 0 15px;
  }

  .video-post-content p {
    display: none;
  }

  .video-post .video-post-content h3 {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 8px;
    height: 41px;
    overflow: hidden;
  }

  .video-post .video-post-user {
    display: block;
  }

  .video-post .btn-option {
    top: -4px;
    right: -2px;
  }

  .video-post .video-post-content .btn-option {
    right: -11px;
  }

  .video-post-content h3 {
    font-size: 15px;
    line-height: 22px;
    color: #333;
    margin-bottom: 8px;
    display: block;
  }

  span.video-post-time,
  span.video-post-count {
    line-height: 15px;
    padding: 1px 5px;
    font-size: 10px;
  }

  span.video-post-time {
    bottom: 7px !important;
    right: 7px !important;
  }

  span.video-post-count {
    top: 7px !important;
    left: 7px !important;
  }

  .video-post .video-post-count:before {
    display: none;
  }

}



/* ---------------------------------- */
/* Only Large screen
------------------------------------- */

@media (min-width: 767px) {

  /* ---------------------------------- 
   Video list small
  ------------------------------------- */

  .video-list-small .video-post-list.video-post {
    margin-bottom: 0px;
    display: flex;
  }

  .video-list-small .video-post-list.video-post .video-post-thumbnail {
    width: 180px !important;
    height: 100px;
  }

  .video-list-small .video-post-list.video-post .video-post-content {
    padding: 0 0 0 20px;
  }

  .video-list-small .video-post-list.video-post .video-post-content h3 {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 10px;
    padding-right: 19px;
  }

  .video-list-small .video-post-list.video-post .video-post-user {
    display: block;
  }

  .video-list-small .video-post-list.video-post .btn-option {
    top: -4px;
    right: -2px;
  }
  .video-list-small .video-post .video-post-count {
    top:8px ;
    left:9px
  }
  .video-list-small .video-post-list.video-post .video-post-count ,
  .video-list-small .video-post-list.video-post .video-post-time {
     padding: 0px 4px !important;
     font-size:11px;
  }

  /* ---------------------------------- 
   Display Video post  as list  
  ------------------------------------- */
  .video-post-list.video-post {
    margin-bottom: 30px;
    display: block
  }

  .video-post-list.video-post {
    display: flex;
  }

  .video-post-list.video-post .video-post-thumbnail {
    width: 240px !important;
    height: 135px;
  }

  .video-post-list.video-post .video-post-content {
    padding: 0 0 0 20px;
  }

  .video-post .video-post-time {
    font-size: 10px;
    bottom: 8px;
    right: 8px;
    margin: 0;
    position: absolute;
    z-index: 1;
    padding: 1px 7px;
  }

  .video-post .video-post-count {
    top: 13px;
    left: 13px;
    margin: 0;
    position: absolute;
    z-index: 1;
    background: #377dff;
    /* background: linear-gradient(to right, red, #1a73e8); */
    background: #e8f0fe;
    color: #1a73e8;
  }

  .video-post .video-post-count:before {
    font-family: "Unicons";
    font-size: 14px;
    content: '\e9d3';
    margin-right: 3px;
  }

  .video-post-list .video-post-content h3 {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 1px;
    padding-right: 25px;
  }
  .video-post-list .video-post-content p{
    padding-top:8px
  }

  .video-post-list .video-post-user {
    display: inline;
  }

  .video-post-list.video-post .btn-option {
    right: -2px;
    top: -5px;
  }  
  .video-post-list.video-post .video-post-date,
  .video-post-list.video-post .video-post-views {
    margin-left: 6px;
  }
}


/* ---------------------------------- */
/*  video grid slider
------------------------------------- */

.video-grid-slider {
  position: relative;
  padding-bottom: 16px;
}

.video-grid-slider>*>* {
  padding-left: 25px !important;
}

.video-grid-slider>* {
  margin-left: -25px !important;
}
 
@media (max-width: 960px) {
  .video-grid-slider>*>* {
    padding-left: 20px !important;
  }

  .video-grid-slider>* {
    margin-left: -25px !important;
  }

  .video-grid-slider {
    margin: 0 -20px;
    padding-left: 20px;
  }

  .video-grid-slider ul li {
    width: 220px;
  }
  
   .video-grid-slider .video-post  {
    display: inline-block; 
  }

  .video-grid-slider .video-post .video-post-thumbnail {
    height: 120px;
    width: 100%;
    }
  .video-grid-slider .video-post .video-post-content {
    padding: 12px 0 0;
  }

}


/* ---------------------------------- */
/* Movei card
------------------------------------- */

.mov-card {
  position: relative;
  background: #000;
  overflow: hidden; 
  height: 266px;
  border-radius: 8px;
}

.mov-card .poster {
  position: relative;
  overflow: hidden;
}

.mov-card .poster:before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,#000 50%, transparent);
  transition: 0.5s;
  z-index: 1;
}

.mov-card:hover .poster:before {
  bottom: 0;
}

.mov-card .poster img {
  width: 100%;
  transition: 0.5s;
}

.mov-card:hover .poster img {
  filter: blur(2px);
  transform: translateY(-30px);
}

.mov-card-details  {
  position: absolute;
  padding: 16px;
  width: 100%;
  height: 100%;
  bottom: -175px;
  left: 0;
  box-sizing: border-box;
  transition: 0.5s;
  z-index: 2;
  border-radius: 8px;
}

.mov-card:hover .mov-card-details  {
  bottom: -12px;
}

.mov-card-details h2 {
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 20px; 
}

.mov-card:hover .mov-card-details h2{
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mov-card-details h6{
  font-size: 14px;
  color: #ff9800;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 3px;
}

.mov-card-rating {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2px 0;
}

.mov-card-rating i {
  color: #f7f406;
  margin-right: 2px;
  font-size: 16px;
}

.mov-card-rating span {
  color: #fff;
  padding: 0 5px;
  font-size: 12px;
}

.mov-card-tags {
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
}

.mov-card-tags span {
  padding: 2px 5px;
  margin-right: 2px;
  color: #fff;
  display: inline-block;
  border-radius: 4px;
}

.mov-card-tags span.fantasy {
  background: #7206f7;
}

.mov-card-tags span.scifi {
  background: #f70661;
}

.mov-card-info {
  color: #ddd;
  font-size: 13px;
  height: 60px;
  overflow: hidden;
}
 
.mov-card-act {
  position: relative;
}

.mov-card-act h4 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #f7f406;
}

.mov-card-act ul {
  margin: 5px 0 0;
  padding: 0;
  display: flex;
}

.mov-card-act ul li {
  list-style: none;
  width: 40px; 
  border-radius: 50%;
  overflow: hidden;
  margin-right: 6px;
}

.mov-card-act ul li img {
  width: 100%;
  width: 40px;
  height: 29px;
}

@media (max-width:960px) {
  .mov-card {
    height: 195px;
  }

  .mov-card-info,
  .mov-card-rating span {
    display: none
  }

  .mov-card-details {
    bottom: -115px;
  }

  .mov-card-details h2 {
    font-size: 14px;
  }
}



/* ---------------------------------- */
/*  story card
------------------------------------- */
.story-card{
  padding-left: 20px;
  width: 76px;
}
 
 .story-card .story-img:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  left: 0;
  z-index: -1;
   /* ! */
  background: linear-gradient(to right, red, #1a73e8);
}
 
.story-card .story-img {
  width: 42px;
  height: 42px;
  margin: auto;
  margin-bottom: 11px;
  border-radius: 100%; 
  position: relative;
  padding: 8px; 
}
.story-card .story-img img {
  border-radius: 100%;
  box-shadow: 0px 0px 2px 4.5px white;
  width: 42px;
  height: 42px;
}

.story-card p {
  font-size: 13px;
  font-weight: 500;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.add-story.story-card .story-img:before {
  background: #d9d9d9 !important
}

.add-story i {
  color: white;
  font-size: 14px;
  position: absolute;
  background: linear-gradient(to right, red, #1a73e8);
  border-radius: 100%;
  padding: 3px;
  border: 3px solid white;
  z-index: 1;
  bottom: -6px;
  right: -6px;
}





/* ---------------------------------- */
/*  single video details
------------------------------------- */
.video-info {
  padding: 0 5px;
}

.video-info-title {
  margin-top: 8px;
  margin-bottom: 12px;
}

.video-info-title h1 {
  font-size: 24px;
  margin: 0;
  line-height: 1.3;
  font-weight: 400 !important;
  word-break: break-all;
}
.video-info .video-info-details{
  display: block;
  font-size: 15px;
  color: #848484;
}
 
.video-likes {
  color: #929292;
  display: flex;
  align-items: center;
}
.video-likes .like-btn {
  cursor: pointer;
  user-select: none;
}
.video-likes .like-btn .likes {
  font-size: 12px;
}
.video-likes .video-info-element {
  width: 120px;
  text-align: right;
  position: relative;
  margin: 4px 10px;
}
.video-likes .video-info-element .views-bar {
  width: 80%;
  text-align: right;
  position: absolute;
  right: 0;
  height: 4px;
  background-color: #dedede;
  color: #333;
  border-radius: 2px;
}

.video-likes .video-info-element .blue {
  background: linear-gradient(to right, #f65858, #946eff);
  left: 0;
  width: 20%;
  text-align: left;
}


.btn-subscribe .button:before {
  content: '';
  display: block;
  position: absolute;
  left: 100%;
  margin-left: 2px;
  top: 50%;
  margin-top: -6px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left-width: 0;
  border-right-color: #e8f0fe;
}

.subs-amount {
  border: 0;
  background: #e8f0fe;
  color: #1a73e8;
  border-radius: 3px;
  margin-left: 1.5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 33px;
  padding: 0 10px;
  height: 35px;
  display: inline-block;
}


.about-ch-sec { 
  margin-top: 10px;
}
.abt-rw {
  margin-bottom: 16px;
}
.abt-rw {
  margin-bottom: 16px;
}
.abt-rw > h4 {
  font-size: 16px;
  margin-bottom: 7px;
}
.abt-rw ul {
  display: block;
  padding-left: 0px;
}
.abt-rw ul li:first-child {
  padding-left: 0;
}
.abt-rw ul li {
  display: inline-block;
  position: relative;
  padding: 0 5px;
}
.abt-rw ul li:before {
  content: ',';
  position: absolute;
  top: 0;
  right: -2px;
  color: #7e7e7e;
  font-size: 16px;
}
.abt-rw ul li span {
  display: inline-block;
  color: #7e7e7e;
  font-size: 16px;
}


.video-resized {
  width: 390px !important;
  bottom: 0 !important;
  top: auto !important;
  /* border: 6px solid white; */
  box-shadow: 1px 11px 30px -6px black;
  right: 0;
}

.video-resized .btn-box-close {
  display:block;
}

.btn-box-close {
  position: absolute;
  right: 8px;
  cursor: pointer;
  top: 10px;
  color: white;
  z-index: 10000;
  font-size: 23px;
  display:none;
}

.video-resized-hedden .btn-box-close {
  display:none !important
}

.video-resized-hedden {
   position: relative !important;
}
  
.setting-menu {
  background: #fff;
  color: #474747;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.setting-menu ul li { padding-left:0}
.setting-menu ul li a , .setting-menu .uk-active.li a{
    padding: 4px 20px;
    margin-right: 0px;
    font-size: 15px !important;
    border: 0;
    text-align: left;
}
.setting-menu ul li a:hover{
  background-color: #ededed;
}

@media (max-width:960px){
  .setting-menu ul li a {
    padding: 0px 15px;
   } 
    .responsive-tab a i {
    margin-right: 5px;
   }
}










/* Single movie */
.main-moviewatch {
  min-height: 100%;
  max-height: 100%;
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  min-height: 400px;
}
.main-moviewatch:before {
  position: absolute;
  content: '';
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  opacity: 0.5;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #212529 60%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #212529 60%);
  background-blend-mode: color-burn;
}
.main-moviewatch img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  display: block;
  transform: translate(-50%,-50%);
  object-fit: cover;
}
.main-moviewatch  .main-moviewatch-content {
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: 100%;
  position: absolute;
  z-index: 100;
}
/* single movie contents */
.moviecontent {
  position: relative;
  z-index: 9;
  margin: -90px 30px 0 30px;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.moviecontent-infos {
  display: flex;
}

.moviecontent-infos .mve_thmb {
  position: relative;
  width: 200px;
  min-width: 200px;
  height: 0;
  padding-bottom: 290px;
}
.moviecontent-infos .mve_thmb img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.moviecontent-infos .mve_nfo {
  padding-left: 25px;
}

.moviecontent-infos .mve_nfo .about-film {
  font-size: 15px;
  line-height: 25px;
}
.moviecontent-infos .mve_nfo ul {
  padding-left: 0;
  list-style: none;
}
.moviecontent-infos .mve_nfo ul li  p {
  font-size: 15px;
  line-height: 25px;
}

@media (max-width: 960px) {
  .main-moviewatch { 
  border-radius: 5px; 
  min-height: 200px;
  }
  .moviecontent {
    margin: 0px;
    padding: 20px;
    padding-top: 20px;
    border-radius: 0;
    }
    .moviecontent-infos .mve_thmb{
      display:none
    }
    .moviecontent-infos .mve_nfo{
      padding:0
    }
    .main-moviewatch .main-moviewatch-content {
     top: 70%; 
    }
}
.youline{
  width: 100%;
}
.youline a{
  color: #333;
}
.page {
    text-align: center;
}
.page a{
    color: #333;
    transition: color .1s ease-in-out;
    margin-right:10px;
}
.page .select{
    margin-right:10px;
}
.embed-video{
  background-color: #000;
}
.video-js{
  position: absolute!important;
}
#video-box{
  font-size: 16px;
  line-height: 28px;
}
#lycms_list_videos_most_recent_videos{
  margin-top: 20px;
  overflow: hidden;
}
.table-container {
    width: 100%;
    overflow-y: auto;
}
.detile-a{
  display: none;
}
.mb-search{
      display: none;
}

@media (max-width: 760px){
    .detile-a{
      display: block;
    }
    .uk-accordion-title{
      font-size: 1rem!important;
    }
    .uk-animation-slide-bottom-small{
      margin: 5px 0!important;
    }
    .mb-search{
      display: block;
    }
    .mb-search .head_search .head_search_cont input{
      border-radius: 0px;
      width: 72%;
      min-width: auto;
    }
}