@charset "UTF-8";

/*
 * Author: Hamse Mohamoud
 * URL: http://Holathemes.net
 */


/* -------------------------------------------------------------- */
/* Table of Contents
 -----------------------------------------------------------------
 
   #Base
   section
   #responsive-tab
   #responsive-tab style-1
   #responsive-tab style-2
   #responsive-tab style-3 
   #responsive-tab style-4
   #embed-video
   #Background
   #Button 
   #spacing
   #avatar 
   #simplebar
   #grid_slider_header
   #slidenav
   #dropdown-notifications
   #chats-container
   #user-details-card
   #main_header
   #sidebar
   #main_sidebar
   #collapse-sidebar
   #main_content
   #group-catagroy-card
   #story-slider
   #story-slider-card
   #post-new
   #post
   #profile
   #profile-cover
   #btn-option
   #dropdown option nav
   #list-items
   #list-group-items 
   #events-list
   #sl_event_listing
   #sl_side_invite_prnt
   #sl_avatar-groups
   #sl_hide_members
   #sl_group_list
   #sl_page_list
   #sl_events_list
   #sl_game_list
   #sl_jobs_list
   #sl_blog_list
   #sl_srch_form
   #sl_srch_innr_filtr
   #sl_form_fields
   #fundings
   #sl_pokes_cont
   #sl_find_frns_user
   #sl_sidebar_sugs_title
   #sl_sidebar_sugs
   #sl_side_invite
   #sl_htag
   #sl_pro_users
   #widget
   #sl_user-widget
   #sidebar-user-data
   #sl_right_user_info
   #footer-wrapper
   #product
   #sl_offer_list
   #sl_photo_list
   #shadow classes
   #sl_event_listing
   #load-mor


 ----------------------------------------------------------------- */

/* -------------------------------------------------------------- */
/* 01. Import googlefonts 
 ----------------------------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);



html {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
html body {-webkit-font-smoothing: antialiased;overflow-x: hidden;padding: .75rem 2rem;background-repeat: no-repeat;background-attachment: fixed;padding-top: 1.25rem;padding-bottom: 1.25rem;background: #1c3faa;}

.wrapper{
  background-color: #f1f5f
} 
 
/* @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: 14px 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: #3e416d;
  text-transform: capitalize;
}

.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;
  line-height: .7;
}



/* 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;
  }

}




  
/* ---------------------------------- */
/* 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);
}

 


/* ---------------------------------- */
/* Background   
------------------------------------- */
.bg-primary,
.bg-primary-hover:hover {
  background-color: #377dff !important;
}

.bg-secondary,
.bg-secondary-hover:hover {
  background-color: #f1f3f4 !important;
}

.bg-success,
.bg-success-hover:hover {
  background-color: #62d76b !important;
}

.bg-info,
.bg-info-hover:hover {
  background-color: #00dffc !important;
}

.bg-warning,
.bg-warning-hover:hover {
  background-color: #ffc107 !important;
}

.bg-danger,
.bg-danger-hover:hover {
  background-color: #ff3b30 !important;
}

.bg-light,
.bg-light-hover:hover {
  background-color: #e5e5e5 !important;
}

.bg-grey,
.bg-grey-hover:hover {
  background-color: #3e416d !important;
}

.bg-white,
.bg-white-hover:hover {
  background-color: #fff !important;
}

.bg-dark,
.bg-dark-hover:hover {
  background-color: #000 !important;
}

.bg-transparent,
.bg-transparent-hover:hover {
  background-color: transparent !important;
}


/* ---------------------------------- */
/* gradient Backgrounds  
------------------------------------- */
.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient-primary {
  background: linear-gradient(80deg, #325bd6, #002fbd 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: 15px;
  line-height: 36px;
  padding: 0 20px;
  border-radius: 6px;
  margin: 0;
  height: 37px;
  transition: all 0.08s ease 0s;
  cursor: pointer;
}

.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 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.button.button-icon i {
  font-weight: 500;
}


/* ---------------------------------- */
/* Button size  
------------------------------------- */
.button.small {
  font-size: 13px;
  line-height: 31px;
  padding: 0 16px;
  height: 31px;
}

.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: #3e416d;
  background-color: #f1f3f4;
  border-color: #f2f2f2;
}

.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: #0cd82f !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;
}



/* ---------------------------------- */
/* border 
------------------------------------- */

.border {
  border: .0625rem solid #e9ecef !important
}

.border-top {
  border-top: .0625rem solid #e9ecef !important
}

.border-right {
  border-right: .0625rem solid #e9ecef !important
}

.border-bottom {
  border-bottom: .0625rem solid #e9ecef !important
}

.border-left {
  border-left: .0625rem solid #e9ecef !important
}

.border-0 {
  border: 0 !important
}

.border-top-0 {
  border-top: 0 !important
}

.border-right-0 {
  border-right: 0 !important
}

.border-bottom-0 {
  border-bottom: 0 !important
}

.border-left-0 {
  border-left: 0 !important
}

.border-primary,
.border-primary::after {
  border-color: #377dff !important;
}

.border-secondary,
.border-secondary::after {
  border-color: #fafafa !important
}

.border-success,
.border-success::after {
  border-color: #4cd964 !important
}

.border-info,
.border-info::after {
  border-color: #24b7fa !important
}

.border-warning,
.border-warning::after {
  border-color: #ff9500 !important
}

.border-danger,
.border-danger::after {
  border-color: #ff3b30 !important
}

.border-light,
.border-light::after {
  border-color: #ced4da !important
}

.border-dark,
.border-dark::after {
  border-color: #05172a !important
}

.border-white,
.border-white::after {
  border-color: #fff !important
}

.border-darker,
.border-darker::after {
  border-color: #020b13 !important
}

.border-size-1,
.border-size-1::before,
.border-size-1::after {
  border-width: 1px !important
}

.border-size-2,
.border-size-2::before,
.border-size-2::after {
  border-width: 2px !important
}

.border-size-3,
.border-size-3::before,
.border-size-3::after {
  border-width: 3px !important
}

.border-size-4,
.border-size-4::before,
.border-size-4::after {
  border-width: 4px !important
}

.border-size-5,
.border-size-5::before,
.border-size-5::after {
  border-width: 5px !important
}

.rounded {
  border-radius: 0.4rem !important;
}

.circle {
  border-radius: 50% !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;
}


.dropdown-menu>li>a {
  display: block;
  padding: 7px 10px;
  padding-right: 35px;
  clear: both;
  font-weight: normal;
  line-height: 21px;
  color: #808080;
  border-radius: 4px;
}


.bootstrap-select:before {
  content: "";
  position: absolute;
  z-index: 2100;
  bottom: 0px;
  left: 0;
  height: 8px;
  width: 100%;
  background-color: #fff;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.bootstrap-select.open:before {
  opacity: 1;
}


.dropdown-menu>li>a:hover,
.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover {
  color: #66676b;
  text-decoration: none;
  background-color: rgba(102, 103, 107, 0.07);
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:hover {
  color: #777;
}

.dropdown-menu>.disabled>a:hover {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
}

/* Custom Scrollbar for -wekbit */
.dropdown-menu.inner::-webkit-scrollbar {
  width: 5px;
}

.dropdown-menu.inner::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.0);
  border-radius: 12px;
}

.dropdown-menu.inner::-webkit-scrollbar-thumb {
  border-radius: 12px;
  background-color: #d8d8d8;
}

.dropdown-menu.inner::-webkit-scrollbar-thumb:hover {
  border-radius: 12px;
  background-color: #c8c8c8;
}


.bootstrap-select .dropdown-menu {
  opacity: 0;
  transition: 0.4s;
  display: block;
  pointer-events: none;
  visibility: hidden;
  cursor: default;
}

.bootstrap-select.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.open>a {
  outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  display: block;
  padding: 7px 10px;
  line-height: 20px;
  white-space: nowrap;
  background: #f6f6f6;
  color: #777;
  border-radius: 4px;
  margin-bottom: 1px;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.pull-right>.dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: 100%;
  bottom: auto;
  margin-bottom: 2px;
}

@media (min-width: 767px) {
  .navbar-right .dropdown-menu {
      right: 0;
      left: auto;
  }

  .navbar-right .dropdown-menu-left {
      right: auto;
      left: 0;
  }
}

.bootstrap-select.btn-group {
  position: relative;
}

.bootstrap-select.btn-group button {
  position: relative;
  display: inline-block;
  height: 48px;
  line-height: 0;
  padding: 0 20px;
  margin: 0;
  outline: none;
  font-size: 16px;
  color: #808080;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  display: block;
  border: 1px solid #e2e5ec;
  background-color: #fff;
  font-weight: 500;
  opacity: 1;
  border-radius: 4px;
  /* border: none; */
  /* box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.12); */
}

.bootstrap-select .dropdown-toggle::after {
  display: none !important
}

/* Select Check Icon */
.hide-tick .check-mark {
  display: none !important;
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  line-height: 0;
  width: 20px;
  height: 20px;
  text-align: center;
}

.bootstrap-select.btn-group .dropdown-menu li span.check-mark:before {
  font-family: "Feather-Icons";
  content: "\e92b";
  font-size: 18px;
  transition: all 0.3s;
  display: inline-block;
  top: 50%;
  right: 0;
  position: absolute;
  margin: 0;
  opacity: 0;
  transform: scale(0.5);
}

.bootstrap-select.btn-group .dropdown-menu li.selected span.check-mark:before {
  opacity: 1;
  transform: scale(1);
  transition: all 0.35s cubic-bezier(0.3, -.41, .19, 2), opacity 0.3s;
}

.bootstrap-select .dropdown-menu li.selected a span.check-mark:before,
.bootstrap-select .dropdown-menu li.selected:hover a span.check-mark:before {
  color: #66676b;
}

/* Icons*/
.bootstrap-select .glyphicon:not(.check-mark) {
  font-size: 17px;
  line-height: 0;
  position: relative;
  top: 1px;
  margin-right: 3px;
}

.bootstrap-select .filter-option .glyphicon {
  position: relative;
  top: 1px;
}

/* Styles with border */
.with-border .dropdown-menu,
.with-border.bootstrap-select.btn-group button {
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.05);
}

.with-border.bootstrap-select:before {
  width: calc(100% - 2px);
  left: 1px;
}


/* ---------------------------------- 
///////////

/* ---------------------------------- */


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 12rem;
  padding: .35rem 0;
  margin: .125rem 0 0;
  color: #8492a6;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #eff2f7;
  border-radius: .25rem;
  -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08);
  box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08);
}
.dropdown-menu>li>a {
  display: block;
  padding: 7px 10px;
  padding-right: 35px;
  clear: both;
  font-weight: normal;
  line-height: 21px;
  color: #808080;
  border-radius: 4px;
}
 


/* ---------------------------------- */
/*  Simplebar  
/* ---------------------------------- */

[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(26, 115, 232), rgb(119, 110, 255));
  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: 14px;
  right: 28px;
}

/* spinner */
#nprogress .spinner-icon {
  width: 28px;
  height: 28px;
  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: #d0e5f1;
  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: #f0f6f9;
  color: #404040;
}

.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";
}
 

/* ---------------------------------- */
/* 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;
  }
}
 


/* ---------------------------------- */
/* Header Dropdown Notification box   
------------------------------------- */

.dropdown-notifications {
  width: 340px;
  border-radius: 4px;
  padding: 12px !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  margin: auto;
  right: 0px !important;
  left: auto !important;
}

.dropdown-notifications.large {
  width: 420px;
}
.dropdown-notifications.medium {
  width: 310px;
}
.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: 20px 15px 0px 0;
  line-height: 25px;
  color: #29303b;
}

.dropdown-notifications-headline h4 {
  display: inline-block;
  margin-bottom: 9px;
  font-size: 19px;
  font-weight: 600;
  color: #666 !important;
  margin-left: 2px;
}

.dropdown-notifications-headline .uk-input,
.dropdown-notifications-headline .uk-input:focus {
  background-color: #f1f3f4;
  border-radius: 50px;
  border: 0;
  height: 38px;
}

.dropdown-notifications-headline .uk-input::placeholder {
  color: #666;
  font-weight: 600
}

.dropdown-notifications-headline a {
  position: absolute;
  padding: 5.5px 10px;
  border-radius: 50px;
  top: 16px;
  right: 10px;
  color: #888 !important;
  transition: 0.25s;
  border: 0;
  font-size: 16px;
}

.dropdown-notifications-headline a:hover {
  background: #f1f3f4;
}

button.mark-as-read:hover {
  background-color: #f2f2f2 !important;
  color: #888;
}

.dropdown-notifications-content {
  display: block;
  width: 100%;
  height: 400px !important;
}

.dropdown-notifications-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-right: 15px;
}

.dropdown-notifications-content ul li {
  /* border-bottom: 1px solid #f3f3f3; */
  transition: 0.25s;
  margin-right: 0;
  position: relative;
  border-radius: 7px;
}

.dropdown-notifications-content ul li:last-child {
  border-bottom: 1px solid transparent;
}

.dropdown-notifications-content ul li:hover,
.notifications-not-read {
  background-color: #f7f8fa;
  background-color: #f1f3f4;
}

.dropdown-notifications-content ul li a {
  display: inline-flex !important;
  flex-wrap: wrap;
  color: #666 !important;
  position: relative;
  padding: 8px 7px;
}

.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;
  display: inline-block;
  line-height: 23px;
  font-size: 13.5px;
}

.dropdown-notifications-content .notification-text .time-ago {
  font-size: 12.7px;
  color: #9f9d9d;
  margin-left: 4px;
}

.dropdown-notifications-content .notification-text.notification-msg-text .time-ago {
  display: inline-flex;
  margin-left: 9px;
  font-weight: 600;
}

.dropdown-notifications-content .notification-avatar {
  height: 42px;
  width: 42px;
  max-width: 42px;
  display: inline-block;
  border-radius: 50%;
  overflow: visible;
  align-self: flex-start;
  position: relative;
}

.dropdown-notifications-content .notification-icon {
  padding: 0;
  font-size: 13px;
  height: 26px;
  position: absolute !important;
  width: 26px;
  display: inline-block;
  background-color: #f2f2f2;
  line-height: 29px;
  text-align: center;
  color: white;
  transition: 0.25s;
  margin-top: 24px;
  margin-left: 24px;
  border-radius: 100%;
}

.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: 2px 0;
}

.dropdown-notifications-footer {
  height: 28px;
  display: flex;
  justify-content: center;
  /* border-top: 1px solid #f1f3f4; */
  padding: 9px 0;
  padding-bottom: 0;
}

.dropdown-notifications-footer a {
  color: #3483ea !important;
  display: block;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

/* customize scrollbar */
.dropdown-notifications-content .simplebar-track {
  right: 2px !important;
}

.dropdown-notifications-content .simplebar-scrollbar {
  width: 8px;
  z-index: 10000;
}

.dropdown-notifications-content .simplebar-track.simplebar-horizontal {
  display: none
}

.dropdown-search {
  border-radius: 4px;
  padding: 0 !important;
  width: 540px !important;
  margin-left: -25px;
  margin-top: 0px !important;
  border-radius: 2rem  2rem   8px 8px !important;
  left: 16px !important;
  right: auto !important;
  margin-top: -50px !important;
  padding-top: 49px !important;
  top: 24px !important;
}

/* dropdown-search Nav */
ul.dropdown-search-list .list-title {
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #9799a2;
  padding: 7px 10px;
}

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 10px;
  padding: 0;
  display: block !important;
}

ul.dropdown-search-list li a {
  display: flex;
  font-size: 15px;
  transition: 0.3s;
  color: #9799a2;
  padding: 6px 9px;
  font-weight: 500;
  border-radius: 7px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
}

ul.dropdown-search-list li a:hover {
  background-color: #f0f5fd;
  color: #2f3152;
}

ul.dropdown-search-list li a img {
  width: 40px;
  height: 40px;
  border-radius: 2rem;
  margin-right: 13px;
}
ul.dropdown-search-list li a p{
    margin-bottom: 0;
    /* font-size: 15.6px; */
    font-weight: 600;
    color: #4c4c4c;
}
ul.dropdown-search-list li a p span {
    display: block;
    font-size: 11px;
    color: #a2a2a2;
    font-weight: 400;
    line-height: 1.3;
}
ul.dropdown-search-list li a p span span{
  
display: inline-block;
  
font-size: 12px;
  
padding: 2px 8px;
  
background: #d3d3fb;
  
font-weight: 700;
  
margin-left: 4px;
  
text-transform: capitalize;
  
color: #6563ff;
  
border-radius: 4px;
}
ul.dropdown-search-list .menu-divider {
  margin: 4px 0;
  border: .1px solid rgb(239 236 236 / 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;
  margin-bottom: 1px;
}

ul.dropdown-user-menu li a {
  display: flex;
  font-size: 15.3px;
  align-items: center;
  transition: 0.3s;
  font-weight: 600;
  border-radius: 6px;
  color: #4b4b4b;
  padding: 5px 5px;
  position: relative;
}

ul.dropdown-user-menu li a:hover {
  background-color: rgb(241, 243, 244);
}

ul.dropdown-user-menu li a:hover i {
  background: #ededed !important;
}

ul.dropdown-user-menu li a i {
  font-size: 17px;
  font-weight: 600;
  position: relative;
  top: 1px;
  float: left;
  margin-right: 14px;
  -webkit-font-smoothing: antialiased;
  transition: 0.3s;
  background: #f1f3f4;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.dropdown-user-menu li a span {
  display: block;
  font-weight: 500;
  margin-top: -3px;
  font-size: 13px;
}

ul.dropdown-user-menu .menu-divider {
  margin: 4px 0;
  border: .3px solid rgba(222, 223, 224, .45);
}

.dropdown-notifications ul.dropdown-user-menu {
  padding-right: 13px;
}


/* dropdown User Details */
.dropdown-user-details {
  text-align: center;
  padding-top: 18px;
}

.dropdown-user-cover {
  display: inline-block;
  border-radius: 4px;
  height: 54px;
  position: relative;
  margin: -17px 0px 0px -15px;
  width: calc(100% + 14px);
}
.dropdown-user-cover img {
  width: 100%;
  display: inline-block;
  border-radius: 6px 6px 0 0;
  image-rendering: -webkit-optimize-contrast;
  height: 80px;
  object-fit: cover;
}

/* Avatar */
.dropdown-user-avatar {
  display: inline-block;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  position: relative;
  border: 3px solid white;
}

.dropdown-user-avatar img {
  width: 100%;
  display: inline-block;
  border-radius: 50%;
  image-rendering: -webkit-optimize-contrast;
}

.dropdown-user-name {
  line-height: 20px;
  width: 100%;
  padding-bottom: 4px;
  font-weight: 600;
  color: #333;
  font-size: 21px;
  margin-top: 8px;
}


/* ---------------------------------- */
/* 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) {

  .dropdown-notifications-content {
    height: 400px !important;
  }

  .dropdown-notifications-content .notification-avatar {
    height: 45px;
    width: 45px;
    max-width: 45px;
  }

  .status-icon,
  .notification-avatar:after,
  .user-avatar:after {
    height: 8px !important;
    width: 8px !important;
    border: 2px solid #fff !important;
  }

  .dropdown-notifications-content ul li a {
    padding: 5px 9px;
  }

  .dropdown-notifications-content .notification-icon {
    font-size: 15px;
    height: 26px;
    width: 26px;
    line-height: 27px;
    margin-top: 25px;
    margin-left: 28px;
  }
}

@media (max-width: 420px) {

  /*.user-menu .dropdown-notifications */
  .dropdown-notifications {
    right: -11px !important;
    min-width: 96vw !important;
  }

  .dropdown-notifications-content .notification-text .time-ago {
    font-size: 13px;
  }
}



/* ---------------------------------- */
/* Dashboard chats
------------------------------------- */
.chats-container {
  margin: 0;
  /* background-color: #fff; */
  border: 1px solid #f1f3f4;
  border-top: 0;
}


/* Scrollbar Adjustments */
.chats-inbox ul {
  max-height: 875px;
}

.message-content-inner {
  max-height: 750px;
}

.message-content,
.chats-container-inner .chats-inbox {
  /* overflow: hidden; */
}

.message-content-inner {
  overflow-y: scroll;
  width: calc(100% - 24px);
}

.chats-container-inner .chats-inbox ul {
  overflow-y: scroll;
  width: calc(100% + 17px);
}

.message-content-inner::-webkit-scrollbar,
.chats-container-inner .chats-inbox ul::-webkit-scrollbar {
  width: 17px;
}

/*  Scrollbar Hide - End */

.chats-headline {
  height: 42px;
  font-size: 16px;
  margin: 0;
  padding: 18px 24px;
  color: #333;
  /* background-color: #fff; */
  display: block;
  border-bottom: 1px solid #f1f3f4;
  border-radius: 4px 4px 0 0;
  position: relative;
}

.chats-headline input {
  background-color: #f1f3f4;
  border: 1px solid #f1f3f4;
  box-shadow: none;
  height: 38px;
  padding: 14px;
  font-size: 14px;
  margin: 0;
  border-radius: 8px;
}

.chats-headline input:focus {
  box-shadow: none;
}

.chats-headline .input-with-icon i {
  font-size: 18px;
  right: 14px;
}

.chats-headline h4 {
  font-size: 16px;
  color: #333;
  padding: 6px 0;
  padding-bottom: 0;
  margin: 0;
  font-weight: 600;
  display: inline-block;
}

.chats-headline h4 span {
  display: block;
  font-size: 10px;
}

.message-action {
  border-radius: 50px;
  font-size: 13px;
  color: #666;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
  color: #666;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.message-action i {
  position: relative;
  top: 1px;
  margin-right: 1px;
  font-size: 25px;
  margin-left: 13px;
}

.message-action:hover {
  color: #ee3535;
}

/* List */
.chats-inbox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.message-avatar img {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.chats-inbox ul li a {
  position: relative;
  display: block;
  padding: 30px;
}

.chats-inbox ul li {
  transition: 0.2s;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
}

.chats-inbox ul li:nth-child(2n) {
  /* background-color: #fafafa; */
}

.chats-inbox ul li:last-child {
  border-bottom: none;
}

.chats-inbox ul li.active-message {
  background-color: #fafafa;
}

.chats-inbox ul li:before {
  position: absolute;
  top: 0;
  left: -4px;
  width: .25rem;
  height: 100%;
  background-color: #1b74e8;
  display: block;
  content: "";
  opacity: 0;
  transition: 0.3s;
}

.chats-inbox ul li:hover:before,
.chats-inbox ul li.active-message:before {
  opacity: 1;
  left: 0px;
}

.chats-inbox .message-avatar {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.status-icon.status-online,
.notification-avatar.status-online:after,
.status-online:after {
  background-color: #38b653;
  opacity: 1;
}

.status-icon,
.notification-avatar:after,
.user-avatar:after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background-color: #c0c0c0;
  bottom: 0;
  right: 0;
  display: block;
  border: 1.8px solid #fff;
  border-radius: 50%;
  opacity: 0;
}

.chats-inbox .message-by {
  margin-left: 85px;
  font-size: 15px;
  color: #666;
}

.chats-inbox .message-by p {
  margin: 0;
  padding: 0;
  line-height: 25px;
  font-size: 15px;
}

.message-by-headline h5,
.message-by-headline span {
  display: inline-block;
}

.message-by-headline span {
  float: right;
  color: #969595;
  font-size: 14px;
}

.message-by-headline h5 {
  font-weight: 600;
  color: #888;
  margin: 0 0 7px 0;
  padding: 0;
}

.message-by-headline:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.message-by h5 i {
  background-color: #66676b;
  border-radius: 4px;
  line-height: 20px;
  font-size: 12px;
  color: #fff;
  font-style: normal;
  padding: 3px 8px;
  margin-left: 3px;
}


/* Single Message */
.chats-container-inner {
  display: flex;
}

.chats-container-inner .chats-inbox,
.chats-container-inner .message-content {
  flex: 1;
}

.chats-container-inner .message-content-inner {
  padding: 26px;
  padding-bottom: 0;
  flex-grow: 1;
}

.chats-container-inner .message-content {
  display: flex;
  flex-direction: column;
}

.chats-container-inner .chats-inbox {
  max-width: 300px;
  border-right: 1px solid #f1f3f4;
}

.chats-container-inner .chats-inbox ul li a {
  padding: 17px 20px;
}

.chats-container-inner .chats-inbox .message-by p {
  height: 26px;
  max-width: 205px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  color: #888;
  margin-right: 11px;
}

.chats-container-inner .message-avatar img {
  width: 40px;
  height: 40px;
}

.chats-container-inner .chats-inbox .message-avatar {
  left: 25px;
}

.chats-container-inner .chats-inbox .message-by {
  margin-left: 60px;
}

.chats-container-inner .chats-inbox .message-readed {
  float: right;
  margin-top: -21px;
  color: #0ae489;
}

.chats-container-inner .message-by-headline h5 {
  font-size: 14px;
  margin-bottom: 2px;
  max-width: 160px;
  line-height: 23px;
}

.chats-container-inner .message-by-headline span {
  font-size: 12.5px;
  position: absolute;
  top: 20px;
  right: 25px;
}

.chats-container-inner .active-message .message-by-headline h5,
.chats-container-inner .active-message .message-by p {
  color: black;
}

/* Message Bubbles */
.message-bubble {
  display: block;
  position: relative;
  margin-bottom: 20px;
}

.message-bubble .message-avatar {
  position: absolute;
  left: 0;
  top: 0;
}

.message-bubble .message-avatar img {
  width: 50px;
  height: 50px;
}

.message-bubble .message-text {
  margin-left: 62px;
  background-color: #f4f4f4;
  border-radius: 4px;
  padding: 10px 16px;
  position: relative;
  /* display: inline-block; */
  float: left;
  line-height: 23px;
  max-width: 70%;
  align-items: center;
}

.message-bubble.me .message-text {
  float: right;
}

.message-bubble .message-text p {
  font-size: 15px;
  padding: 0;
  margin: 0;
  line-height: 25px;
}


/* Message Bubble "me" */
.message-bubble.me .message-avatar {
  left: auto;
  right: 0;
}

.message-bubble.me .message-text {
  margin-left: 0;
  margin-right: 62px;
  background-color: #1b74e8;
  color: #fff;
  position: relative;
}

/* Arrow */
.message-bubble .message-text:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 10px solid #f4f4f4;
  left: -8px;
  right: auto;
  top: 0px;
  position: absolute;
}

.message-bubble.me .message-text:before {
  border-top: 0px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 9px solid #1b74e8;
  border-right: none;
  right: -7px;
  left: auto;
}

/* Message Time Sign */
.message-time-sign {
  text-align: center;
  display: block;
  position: relative;
  margin-bottom: 25px;
}


.message-time-sign span {
  /* background-color: #fff; */
  font-size: 14px;
  color: #888;
  z-index: 11;
  position: relative;
  padding: 0 10px;
}

/* Reply */
.message-reply {
  border-top: 1px solid #f1f3f4;
  padding: 30px 16px;
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
}

.message-reply textarea {
  height: 48px;
  min-height: 48px;
  padding: 10px 0;
  margin: 0 15px 0 0;
  flex: 1;
  font-weight: 400;
  line-height: 26px;
  box-shadow: none;
  border: none;
  box-sizing: border-box;
  resize: none;
}

.message-reply .button {
  border-radius: 50px !important;
  align-self: center;
  display: flex;
  width: 40px;
  height: 40px;
  position: relative;
  padding: 0;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.message-reply .button i {
  padding: 0;
  margin: 0;
  position: absolute;
}


/* Typing Indicastor */
.typing-indicator {
  width: auto;
  display: inline-block;
  margin-left: 10px;
}

.typing-indicator span {
  height: 5px;
  width: 5px;
  float: left;
  margin: 0 1.5px;
  background-color: #808080;
  display: block;
  border-radius: 100%;
  opacity: 0.4;
}

.typing-indicator span:nth-of-type(1) {
  animation: 1s blink infinite 0.33333s;
}

.typing-indicator span:nth-of-type(2) {
  animation: 1s blink infinite 0.66666s;
}

.typing-indicator span:nth-of-type(3) {
  animation: 1s blink infinite 0.99999s;
}

@keyframes blink {
  50% {
    opacity: 1;
  }
}

/* chats Media Queries */
@media (max-width: 992px) {
  .chats-container-inner .chats-inbox {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .chats-container-inner {
    display: block;
  }

  .chats-container-inner .chats-inbox {
    max-width: 100%;
    border-bottom: 1px solid #e4e4e4;
    border-right: none;

  }

  .chats-inbox ul {
    max-height: 500px;
  }

  .chats-container-inner .message-by-headline span {
    position: relative;
    top: 0;
    right: 0;
    display: block;
    float: none;
    padding: 0;
    margin: -4px 0 0 0;
  }

  .message-action {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    margin-top: -5px;
  }

  .chats-headline {
    max-height: 120px;
  }
}



/* ---------------------------------- */
/* 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;
  }
}
 


/* ---------------------------------- */
/*   main header 
------------------------------------- */

#main_header {
  z-index: 100;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #dee7ef;
}
 

header .header-btn-traiger {
  padding: 9px;
  left: 12px;
  position: absolute;
  font-size: 23px;
  cursor: pointer;
  border-radius: 60px;
}


.header-btn-traiger {
  font-size: 20px;
  width: 33px;
  height: 33px;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  padding-left: 7px;
}

.header-btn-traiger span,
.header-btn-traiger span:before,
.header-btn-traiger span:after {
  cursor: pointer;
  border-radius: 0.3em;
  height: 3px;
  width: 71%;
  background: #b5b5b5;
  position: relative;
  display: block;
  top: 44%;
  -webkit-transition: all 0.25s ease-out;
}

.header-btn-traiger span:before {
  width: 76%;
  content: " ";
  top: -7px;
}

.header-btn-traiger span:after {
  width: 54%;
  content: '';
  top: 4px;
}

.header-btn-traiger:hover span:after,
.header-btn-traiger:hover span:before {
  width: 100%;
}

.uk-light header .header-btn-traiger span:before,
.uk-light header .header-btn-traiger span,
.uk-light header .header-btn-traiger span:after {
  background-color: #fff;
}


.header-btn-traiger.is-hidden~#logo{
   left: 25px;
}

header #logo {
  position: absolute;
  left:65px
}


header #logo img {
  width: 121px;
}

header #logo .logo-inverse {
  display: none;
}

.uk-light #logo img {
  display: none;
}

.uk-light #logo .logo-inverse {
  display: inline;
}

header {
  padding: 0;
}

header .header-innr {
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  height: 70px;
}

.head_search .head_search_cont,
header .head_search {
  position: relative;
  border-radius: 6px;
  z-index: 10001;
}

.head_search .head_search_cont input {
  height: 40px;
  color: #393939;
  padding: 0 30px 0 40px;
  outline: 0;
  background: #eaf0f5;
  border: 1px solid transparent;
  -webkit-border-radius: 2rem;
  min-width: 450px;
  font-size: 15px;
}
 
.uk-light header .head_search .head_search_cont input {
  background-color: white !important
}
.head_search .head_search_cont input:focus {
  border-radius: 2rem 2rem 10px 10px;
}
.head_search .head_search_cont>i.s_icon {
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #737373;
}

header .head_user {
  margin-left: auto;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0px;
}

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: 5px 9px;
  border-radius: 100px;
  /* background-color: #f1f3f4; */
}

header .head_user .opts_icon>img {
  width: 26px;
  height: 26px;
}

header .head_user .opts_icon:hover,
header .head_user .opts_icon:focus {
  background-color: #e3ecf3;
}

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: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
}

/* ---------------------------------- */
/*   custom header btn icons 
------------------------------------- */
header .icon-browse {
  width: 300px;
  padding: 1.5rem 1rem;
  padding-bottom: 0;
  padding-top: 10px;
  border-radius: .75rem;
  overflow: hidden;
}

header .icon-browse .icon-menu-item {
  width: 49%;
  text-align: center;
  padding: 0.9rem 0;
  margin-bottom: 1px;
  color: rgba(33, 33, 33, .8);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header .icon-browse .icon-menu-item svg {
  font-size: 28px;
  line-height: 42px;
  display: block;
  width: 44px;
  background: #f1f3f4;
  padding: 9px;
  border-radius: 100%;
  margin-bottom: 4px;
}

header .icon-browse .icon-menu-item:hover {
  color: #0e0e0e;
  background: #f1f3f4;
  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: 340px;
  display: inline-block;
  margin-bottom: 0;
  font-size: 14px;
  margin-top: 15px !important;
  margin: 0 -15px;
  border-top: 1px solid #eaeaea;
}

header .opts_icon_link {
  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;
  font-size: 15px;
}

header .opts_icon_link {
  padding: 7px 15px;
}

header .opts_icon_link:hover {
  background: rgb(241, 243, 244);
  color: #1a73e8;
}

.uk-light header .opts_icon_link:hover {
  background: white;
  color: #1a73e8 !important;
}

   
/* ---------------------------------- */
/*   main sidebar 
------------------------------------- */


.sidebar {
  overflow: hidden;
  height: calc(100% - 0px);
  padding-right: 10px;
}

.sidebar .sidebar_innr {
  overflow: hidden;
  overflow-y: auto;
}

.sidebar .sidebar_innr .sections {
  padding: 0 0px;
  list-style-type: none;
  margin: 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  margin-bottom: 12px;
}

.sidebar .sidebar_innr .sections:first-child {
  padding-top: 12px;
}

.sidebar .sidebar_innr .sections:last-child {
  padding-bottom: 0px !important;
  border-bottom: 0;
}

.sidebar .sidebar_innr .sections h3 {
  margin: 0;
  padding: 1px 10px 6px;
  font-size: 15px;
  letter-spacing: 0.75px;
  text-transform: capitalize;
  color: white;
  font-weight: 600;
}

.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 10px 0  20px;
  display: flex;
  position: relative;
  align-items: center;
  line-height: 50px;
  font-weight: 400;
  /* overflow: hidden; */
  /* white-space: nowrap; */
  /* text-overflow: ellipsis; */
  font-size: 15.4px;
  color: #ffffff;
  transition: all 0.1s;
  /* border-radius: 8px; */
  letter-spacing: .01785714em;
  border-radius: 2rem 0 0 2rem;
}
.sidebar .sidebar_innr .sections li a svg {
  margin-right:10px
}
.sidebar .sidebar_innr .sections li a svg path{
  fill: rgb(255 255 255 / 91%);
}
.sidebar .sidebar_innr .sections li.active a svg path{
  fill: #1a73e8
}
.sidebar .sidebar_innr .sections li a:hover,
.sidebar .sidebar_innr .sections li a:focus {
  background-color: #ffffff4a;
}

.sidebar .sidebar_innr .sections li.active a {
  color: #1a73e8;
  background-color: #f1f5f8;
}
.sidebar .sidebar_innr .sections li.active:after , .sidebar .sidebar_innr .sections li.active:before {
  content: "" !important;
  width: 30px !important;
  height: 30px !important;
  background-size: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='259.51' height='259.52'%3E%3Cpath data-name='Path 143' d='M259.51 259.52c-.167-2.608.05-5.319-.19-8.211-.084-1.012-.031-2.15-.118-3.12-.113-1.25-.1-2.682-.236-4.061-.172-1.722-.179-3.757-.365-5.394-.328-2.889-.478-5.857-.854-8.61-.509-3.714-.825-7.252-1.38-10.543-.934-5.535-2.009-11.312-3.189-16.692-.855-3.9-1.772-7.416-2.752-11.2-1.1-4.256-2.394-8.149-3.687-12.381-1.1-3.615-2.366-6.893-3.623-10.493-1.3-3.739-2.917-7.26-4.284-10.7-1.708-4.295-3.674-8.078-5.485-12.023-1.145-2.493-2.5-4.932-3.727-7.387-1.318-2.646-2.9-5.214-4.152-7.518-1.716-3.16-3.517-5.946-5.274-8.873-1.692-2.818-3.589-5.645-5.355-8.334-2.326-3.542-4.637-6.581-7.039-9.848-2.064-2.809-4.017-5.255-6.088-7.828a237.651 237.651 0 00-7.292-8.589c-3.027-3.411-6.049-6.744-9.055-9.763-2.4-2.412-4.776-4.822-7.108-6.975-3-2.767-5.836-5.471-8.692-7.854-3.332-2.779-6.657-5.663-9.815-8.028-2.958-2.216-5.784-4.613-8.7-6.6-3.161-2.159-6.251-4.414-9.219-6.254-3.814-2.365-7.533-4.882-11.168-6.89-4.213-2.327-8.513-4.909-12.478-6.834-4.61-2.239-9.234-4.619-13.51-6.416-4.1-1.725-8.11-3.505-11.874-4.888-4.5-1.652-8.506-3.191-12.584-4.47-6.045-1.9-12.071-3.678-17.431-5-9.228-2.284-17.608-3.757-24.951-4.9-7.123-1.112-13.437-1.64-18.271-2.035l-2.405-.2c-1.638-.136-3.508-.237-4.633-.3A115.051 115.051 0 000 .081h259.51z' fill='%23f1f5f8'/%3E%3C/svg%3E") !important;
  position: absolute !important;
  right: -1px;
  margin-top: -1px;
}

.sidebar .sidebar_innr .sections li.active:before {
  transform: rotate(90deg);
  margin-top: -29px;
} 
 

.sidebar .sidebar_innr .sections li a i {
  margin-right: 22px;
  font-size: 17px;
}

.sidebar .sidebar_innr .sections li a img {
  margin-right: 15px;
  width: 26px;
  height: 26px;
  border-radius: 5px;
}

.sidebar .sidebar_innr .sections li a .dot-notiv {
  background: #1a73e8;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 24px;
  border-radius: 100%;
  overflow: hidden;
}

.sidebar .sidebar_innr .sections .btn-more {
  display: block;
  padding: 0 0px !important;
  margin-bottom: 9px;
  border-radius: 6px;
  border: 0;
  margin-top: -3px;
  display: flex;
  justify-content: center;
  height: 40px;
  color: rgb(255 255 255);
  background-color: #ffffff26;
  width: calc(100% - 12px);
  font-weight: 500;
}

.sidebar .sidebar_innr .sections .btn-more:hover {
  background-color: #ffffff47;
}

.sidebar .sidebar_innr .sections .btn-more span {
  display: flex;
  align-items: center
}

.sidebar .sidebar_innr .sections .btn-more i {
  font-size: 17px;
  margin-left: 5px;
}

.main_sidebar {
  display: block;
  margin-top: 18px;
  width: 245px;
  color: inherit;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 2rem;
  bottom: 0;
  height: calc(100% - 18px);
}

.main_sidebar .sidebar-header {
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 0px solid #e2e2e2;
}
.main_sidebar .sidebar-header #logo img{
  width: 136px;
  padding-left: 15px;
}


.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;
}



.main_sidebar .simplebar-track {
  right: 0px !important;
}

.main_sidebar .simplebar-scrollbar {
  width: 8px;
  z-index: 10000;
}

@media (min-width: 1220px) {

  .collapse-sidebar .main_sidebar {
    width: 80px;
    overflow: hidden;
  }
  .collapse-sidebar .sidebar {padding: 0px;height: calc(100% - 80px);}

  .collapse-sidebar .main_sidebar:hover {
    width: 260px;
    transition: all 300ms 0s ease-in-out;
    z-index: 10001;
    background-color: #1c3faa;
    -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: 10px 16px 10px 0 rgba(0, 0, 0, 0.14), 10px 11px 18px 0 rgba(0, 0, 0, 0.12), 10px 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); */
    margin-top: 0px;
    padding-top: 18px;
    height: calc(100% - 18px) !important;
  }

     .collapse-sidebar .main_sidebar {
    width: 80px;
    overflow: hidden;
  }

  .collapse-sidebar .main_sidebar:hover {
    width: 260px;
    transition: all 300ms 0s ease-in-out;
    z-index: 10001;
    background-color: #1c3faa;
    -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: 10px 16px 10px 0 rgba(0, 0, 0, 0.14), 10px 11px 18px 0 rgba(0, 0, 0, 0.12), 10px 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: 9px 15px;
    /* width: 24px; */
    /* margin-bottom: 7px; */
  }

  .collapse-sidebar .main_sidebar:hover .sidebar_innr .sections li a {
    padding: 0px 14px;
    width: calc(100% - 27px);
    margin-bottom: 0;
  }

  .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 ul li a:after, 
  .sidebar-header:hover .sidebar_innr .sections li a span ,
  .collapse-sidebar .sidebar-header:hover .sidebar_innr .sections li a span{
    display: inline-block;
  }

  .collapse-sidebar .sidebar:hover .sidebar_innr .button {
    display: flex !important
  }


}

/* 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 10px 0px 0px;
}

#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 {color: rgb(255 255 255 / 82%);font-weight: 500;}
#foot ul li a:hover {
  text-decoration: underline
}

#foot .foot-content {
  margin-top: 4px;
  font-size: 13px;
  margin-bottom: 80px;
}

#foot .foot-content p {
  margin-bottom: 0px;
  color: rgb(255 255 255 / 82%);
}




/* ---------------------------------- */
/*   collapse sidebar
------------------------------------- */
.collapse-sidebar .main_sidebar {
  margin-left: 0px;
  height: calc(100% - 57px);
}

.collapse-sidebar .main_content,
.collapse-sidebar header {
  margin-left: 80px;
}

.collapse-sidebar header {
  width: calc(100% - -90px);
  margin-left: 0px;
  /* width: 100%; */
}

.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: 235px;
  overflow: visible;
  border-radius: 30px;
  min-height: 100vh;
  background-color: #f1f5f8;
  padding: 0 22px 2.5rem;
}

.main_content_inner {
  display: block;
  padding: 20px;
  margin: auto;
  padding-bottom: 0;
  position: relative;
}


@media (min-width: 1200px) {
  .main_content_inner {
    /* max-width: 1000px; */
    padding: 25px 0;
    margin-bottom: 20px;
    animation: r;
  }

  .collapse-sidebar .main_content_inner {
    max-width: 1000px;
  }

  .content-expand .main_content_inner {
    max-width: 1340px;
  }

  .fead-area {
    width: 62% !important;
  }
}

@media (min-width: 1600px) {

  .main_content_inner,
  header .header-innr {
    max-width: 1200px;
  }

}

/* ---------------------------------- */
/*  Meda small devices
------------------------------------- */
 
@media (max-width: 960px) {
  #main_header{
     position:fixed;
     top: 0;
     left: 0;
     background: white;
     border-color: transparent;
   }
    
  .main_content {
    padding: 0;
    padding-top: 60px;
  }

  header {
    box-shadow: 0 1px 0 0 rgba(139, 141, 157, 0.05), 10px 1px 7px 0 rgba(65, 71, 108, 0.15) !important;
    padding: 0 20px;
  }
  html body {padding: 0;border-radius: 0;background: transparent ;}
  .main_sidebar {left: 0;padding-left: 7px;}

}
@media (max-width: 1260px) {
  .main_content {
    margin-left: 0px !important; 
  }

  .main_content_inner {
    padding: 15px !important;
  }

  .main_sidebar {
    margin-top: 0 !important;
    z-index: 10000  !important;
    position: fixed  !important;
    height: calc(100% - 0px) !important;
    width: 270px  !important;
  }

  .main_sidebar,
  .collapse-sidebar .main_sidebar {
    margin-left: -300px;
  }

  .sidebar {
    overflow: hidden;
    height: calc(100% - 50px);
    padding: 0;
  }

  .mobile-visible .main_sidebar {
    margin-left: 0px !important;
    height: calc(100% - 0px) !important;
    background: #1c3faa;
    padding-top: 0px;
  }
  .main_sidebar .sidebar-header .btn-close {
    display: block !important;
  }

  .main_sidebar .sidebar-header h4 {
    font-size: 15px;
  }

  .sidebar .sidebar_innr .sections {
    padding: 0 !important;
    padding-top: 7px !important;
  }

  .sidebar .sidebar_innr .sections li a {
    line-height: 45px
  }

  .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 .header-innr {
    height: 65px;
    max-width: 100%;
  }

  header #logo {
    position: relative;
    left: -15px !important;
  }

  header .header-btn-traiger {
    left: -12px;
    position: relative;
  }

  header .header-innr .head_user {
    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;
  }

}
@media (min-width: 1260px) {
  header #logo , header .header-btn-traiger { display: none;}
}


/* ---------------------------------- */
/* general
------------------------------------- */

.shadow {
  box-shadow: 0px 2px 7px -3px #0000001a
}

.rounded-sm {
  border-radius: 5px;
}

.rounded {
  border-radius: 8px !important;
}

.rounded-lg {
  border-radius: 14px !important;
}

.circle {
  border-radius: 50% !important;
}

.border-0 {
  border: 0 !important
}

.shadow-0 {
  box-shadow: none !important;
}


 


/* ---------------------------------- */
/* story  card   
------------------------------------- */
.story-slider>* {
  padding-left: 6px !important;
}

.story-slider {
  margin-left: -6px !important;
}


.story-card {
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 160px;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}

.story-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;
}

.story-card-content {
  position: relative;
  width: 100%;
  padding: 12px 13px;
  z-index: 2;
}

.story-card-content h4 {
  margin-bottom: 0;
  color: white;
  font-size: 15px;
}

.story-card img {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  padding: 2px;
  background-color: white;
  position: absolute;
  top: 12px;
  left: 12px;
}

.story-card>i {
  color: #757272;
  font-size: 20px;
  background-color: white;
  position: absolute;
  top: 12px;
  left: 10px;
  border-radius: 50px;
  border: 2px solid #f1f3f4;
  padding: 5px;
}

/* ---------------------------------- */
/*  market
------------------------------------- */

.market-list .item-media {
  flex: 0 0 auto;
  max-width: none;
  max-height: 100%;
  position: relative;
  width: 100%;
  height: 190px;
}

.market-list .item-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
}

.market-list .item-inner {
  padding: 10px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  flex-basis: auto;
}

.market-list .item-inner .item-title {
  margin-bottom: 4px;
  max-width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  font-size: 16px;
  text-overflow: ellipsis;
  line-height: 21px;
  word-break: break-word;
  word-wrap: break-word;
  max-height: 42px;
  white-space: normal;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.market-list .item-inner .item-title a {
  color: #555555;
}

.market-list .item-inner .item-price {
  font-size: 17px;
  line-height: 20px;
  color: #757575;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: auto;
}

.market-list .item-inner .item-minor-info {
  margin-bottom: 4px;
  color: #a2a2a2;
  font-size: 12px;
  line-height: 16px;
  display: flex;
}

.market-list .item-inner .item-statistic {
  margin-top: 2px;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  flex-flow: wrap;
}

.market-list .item-inner .item-statistic>span {
  margin-right: 16px;
}

.market-list .item-inner .item-statistic> :last-child {
  margin-right: 0px;
}

@media (max-width: 768px) {
  .market-list .item-media {
    height: 150px
  }
}








/* ---------------------------------- */
/* Add  Post state 
------------------------------------- */
.post-new {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0px 1px 9px -2px #d2d2d2;
  border-radius: 6px;
  padding: 16px;
  padding-bottom: 10px;
}

.post-new-media {
  display: flex;
}

.post-new-media-user {
  width: auto;
  margin-right: 15px;
}

.post-new-media-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.post-new-media-input {
  flex: 1;
  min-width: 1px;
}
.post-focus .post-pop .post-new .post-new-media-user{
  margin-right:0;
}
.post-new-media-input .uk-input {
  border-radius: 50px;
  border-color: #f1f3f4;
  background-color: #f1f3f4;
  font-size: 17px;
}

.post-new-media-input .uk-input:focus {
  border-radius: 5px;
 
  border-color: #f1f3f4;
}

.post-new-type {
  display: flex;
  align-items: center;
}

.post-new-type>a {
  flex: auto;
  min-width: 1px;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 5px;
}

.post-new-type>a:hover {
  background-color: #f1f3f4
}

.post-new-type>a img {
  width: 23px;
  margin-right: 7px;
}

.post-new hr {
  margin: 8px 0;
}



/* post new overlay*/ 

.post-new-overyly{
  z-index: 1;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background: hsla(0, 0%, 60%, 0.42);
  visibility: hidden;
  z-index: 10000000000000;
}
.post-focus .post-pop .post-new-overyly{
  visibility: visible;
}


.post-new-header{
  display: flex;
  border-bottom: 0px solid #f1f3f4;
  margin: 0 -15px;
  margin-bottom: 14px;
}
.post-new-header h4{
  flex: 1;
  text-align: center;
  margin-bottom: 10px;
}


.post-pop  .post-new{
  display: none;
}
.post-focus .post-pop  .post-new{
  margin-top: -140px;
  position: relative;
  z-index: 1;
  display: block;
  z-index: 10000000000000;
  box-shadow: 0px 10px 10px -8px #a0a0a0;
}
.post-focus .post-pop  .post-new .post-new-media-input .uk-input {
  background-color: transparent;
  border-color: transparent;
  }
   

.post-focus  .main_sidebar {
    z-index: 0 !important;
    transition: none;
}

/* button closec */
.post-new-btn-close {
  z-index: 100;
  border-radius: 100%;
  background: #f1f3f4;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 18px;
  margin-top: -5px;
}

.post-new-btn-close::before {
  font-family: "Feather-Icons";
  font-size: 20px;
  content: '\ea02';
  line-height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.post-new-btn-close:hover {
  background-color: #d4d4d4;
  cursor: pointer;
}

.post-focus .post-pop  .post-new ,
.post-focus .post-pop .post-new-overyly  {
  transition: all 0.15s cubic-bezier(0, 0, 0, 1.09) !important;
}

.post-pop .post-new .post-new-media{
  margin-bottom:40px
}

.post-new-tab-nav{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
  border-bottom: 0px solid #ebebee;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.post-new-tab-nav .uk-grid-margin {
  margin-top: 10px !important;
}
.post-new-tab-nav a {
  display: flex;
  align-items: center;
  border-radius: 100px;
  border-radius: 6px;
  cursor: pointer;
  width: 30%;
  transition: all .1s linear;
  padding: 5px 8px;
}

.post-new-tab-nav a:hover {
  background-color: #f2f4f5;
}

.post-new-tab-nav a img {
  width: 23px;
  margin-right: 7px;
}

.post-new-tab-nav a svg {margin-right: 6px;}
.post-new-tab-nav a span {font-size: 15px;font-weight: 600;}


/* ---------------------------------- */
/*  posts 
/* ---------------------------------- */

.post {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0px 1px 9px -2px #d2d2d2;
  border-radius: 6px;
}

.post .post-heading {
  padding: 20px 15px;
  display: flex;
  padding-bottom: 0;
  position: relative;
}

.post-heading .post-avature {
  width: auto
}

.post-heading .post-avature img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.post-heading .post-title {
  margin-left: 15px;
  flex: 1;
  min-width: 1px;
}

.post-heading .post-title h4 {
  font-size: 16px;
  margin-bottom: -1px;
}

.post-heading .post-title p {
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 600;
  color: #7d7d7d;
}

.post-heading .post-title p i {
  margin-left: 8px
}

.post-heading .post-btn-action {
  right: 0;
  top: 0;
  width: auto;
  height: 25px;
}


.post-heading .post-btn-action span.icon-more {
  width: 29px;
  height: 3px;
  position: relative;
  border-radius: 100%;
}

.post-heading .post-btn-action span.icon-more::before {
  font-family: "unicons";
  font-size: 22px;
  content: '\e99e';
  line-height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  position: absolute;
}

.post .post-description {
  padding: 15px 15px 15px; 
  padding-bottom: 8px;
}

.post .post-description .uk-grid-small>* {
  padding-left: 10px !important;
}

.post .post-description *+.uk-grid-margin {
  margin-top: 10px
}

.post .post-description .fullsizeimg,
.post .post-description .fullsizevid {
  max-height: 600px;
  margin-left: -15px;
  width: calc(100% + 30px);
  overflow: hidden;
  margin-bottom: 5px;
  margin-top: -10px;
}

.post .post-description .fullsizeimg img,
.post .post-description .fullsizeimg video {
  max-height: none;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.post hr {
  margin: 0 -15px 0 -15px;
  border-color: #efefef;
}

.post .post-state {
  width: 100%;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid #f3f3f3;
  border-bottom: 0px solid #f3f3f3;
}

.post .post-state .post-state-btns:hover {
  background-color: rgb(241, 243, 244);
}

.post .post-state .post-state-btns {
  border-radius: 2px;
  color: #616770;
  font-size: 13px;
  border-radius: 5px;
  font-weight: 600;
  line-height: 19px;
  flex: 1;
  width: 100%;
  border: 0;
  margin: 4px 4px;
  box-shadow: none;
  padding: 9px 5px; 
  transition: all .1s ease-in-out;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post .post-state .post-state-btns i {
  font-size: 19px;
  margin-right: 4px;
}

.post .post-state .post-state-btns span {
  margin-left: 4px;
}

.post .post-state-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
  padding-right: 4px;
}

.post .post-state-details div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post .post-state-details * img {
  width: 27px;
  border-radius: 100%;
  z-index: 2;
  border: 3px solid white;
}

.post .post-state-details * img:nth-child(2) {
  margin-left: -6px;
  z-index: 1;
}

.post .post-state-details p {
  margin-bottom: 0;
  font-size: 13px;
}

.post .post-add-comment-avature img {
  width: 35px;
  border-radius: 100%;
}

.post .post-add-comment {
  transition: all .2s ease;
  display: flex;
  position: relative;
  margin-top: 15px;
  overflow: hidden;
}

.post .post-add-comment-text-area input {
  border: 0;
  width: 100%;
  height: 30px;
  background: #f1f3f4;
  outline: 0;
}

.post .post-add-comment-text-area {
  background-color: #f1f3f4;
  margin-left: 10px;
  position: relative;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
  padding: 3px 15px;
}

.post .post-add-comment-text-area .icons {
  position: absolute;
  right: 15px;
  top: 8px;
}

.post .post-add-comment-text-area .icons span {
  font-size: 19px;
  margin-left: 10px;
}

.post-comments {
  padding: 15px; 
}

.post-comments-single {
  display: flex;
  margin-bottom: 14px;
}

.post-comment-avatar {
  width: auto;
  flex: none;
}

.post-comment-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.post-comment-text {
  position: relative;
  margin-left: 15px;
}

.post-comment-text-inner {
  background-color: #f1f3f4;
  padding: 10px;
  border-radius: 9px;
  margin-bottom: 3px;
}

.post-comment-text-inner h6 {
  margin-bottom: 0;
  font-size: 14.5px;
}

.post-comment-text-inner p {
  margin-bottom: 0;
}

.post-comment-text::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid;
  border-right-color: #f4f4f4;
  left: -7px;
  right: auto;
  top: 12px;
  position: absolute;
}

.post-comments a.view-more-comment {
  display: block;
  margin-bottom: 8px;
  font-size: 13.5px;
}

.post-comments a.view-more-comment:hover {
  text-decoration: underline;
}

.post-comment-opt {
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 100%;
  margin-left: 5px;
  flex: none;
}

.post-comment-opt:hover,
.post-comment-opt:focus {
  background-color: #f1f3f4
}

.post-comment-opt::before {
  font-family: "unicons";
  font-size: 24px;
  content: '\e99e';
  /* line-height: 30px; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}




@media (max-width: 768px) {
  .post .post-description {
    padding-bottom: 8px
  }

  .post .post-state-details p {
    font-size: 14px
  }

  .post .post-heading {
    padding: 17px 15px;
    padding-bottom: 0;
  }

  .post-heading .post-avature img {
    width: 35px;
  }

  .post .post-state .post-state-btns {
    font-size: 15px
  }

  .post .post-state .post-state-btns i {
    margin-right: 5px;
    font-size: 19px
  }

  .post .post-state .post-state-btns span {
    display: none
  }

  .post .post-comment-opt {
    width: 30px;
    height: 30px;
  }

  .post-new {
    padding: 11px
  }

  .post-new-media-user {
    margin-right: 10px
  }

  .post-new-media-user img {
    width: 35px;
    height: 35px
  }

  .post-new-media-input {}

  .post-new-media-input .uk-input {
    height: 40px;
  } 

  .post .post-state .post-state-btns {
    margin: 4px 0
  }
}


/* ---------------------------------- */
/* channal sigle page design  
------------------------------------- */
.profile{
  background-color: white;
  border-radius: 12px;
  margin-top: -10px;
}
.profile .profile-cover {
  min-height: 100%;
  max-height: 100%;
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  min-height: 270px;
  border-radius: 12px 12px 0 0;
}

.profile .profile-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;
}

.profile-cover:before {
  position: absolute;
  content: '';
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  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;
}

.profile .profile-cover>a {
  background: rgb(241, 243, 244);
  display: block;
  z-index: 3;
  color: black !important;
  padding: 4px 16px;
  border-radius: 6px;
  position: absolute;
  bottom: 8px;
  right: 11px;
  font-size: 14px;
}

.profile .profile-cover>a:hover {
  background-color: white
}

.profile-details {
  position: relative;
  margin-top: -110px;
  z-index: 2;
  margin-bottom: 20px;
  text-align: center;
}

.profile-details .profile-image {
  margin-bottom: 10px;
}

.profile-details .profile-image a {
  z-index: 100;
  left: -23px;
  border-radius: 100%;
  position: relative;
  bottom: -42px;
}

.profile-details .profile-image a::before {
  font-family: "unicons";
  font-size: 19px;
  content: '\e8be';
  line-height: 27px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: whitesmoke;
  width: 27px;
  height: 27px;
  border-radius: 100px;
  border: 2px solid white;
}

.profile-details .profile-image img {
  width: 125px;
  height: 125px;
  border-radius: 100%;
  border: 3px solid white;
}

.profile-details .profile-details-info h1 {
  margin-bottom: 7px;
  color: #464646;
  text-transform: capitalize;
  font-size: 29px;
}

.profile-details .profile-details-info p {
  margin-bottom: 0px;
  color: #9c9c9c;
}

.profile-details .profile-details-info p a {
  color: #267be9;
  margin-left: 10px;
}


.nav-profile {
  border-top: 1px solid #eaeaea;
  /* box-shadow: 0px 6px 17px -12px #c4c4c4; */
  margin-top: 13px;
  position: relative;
  margin: auto;
  z-index: 2;
  /* background: white; */
  /* border-bottom: 1px solid #67676740; */
}

.nav-profile>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-profile .nav-btn-more {
  display: inline-block;
  color: #929292;
  opacity: .8;
  font-weight: 600;
  padding-left: 15px;
  padding-right: 18px;
  position: relative;
}

.nav-profile .nav-btn-more:hover {
  color: #3e416d;
}

.nav-profile .nav-btn-more::after {
  font-family: "Material-Icons";
  content: '\e914';
  font-size: 18px;
  right: 0;
  position: absolute;
  line-height: 1;
  margin-top: 2px;
}

@media only screen and (min-width: 1024px) {
  .nav-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 12px 12px;
  }

  .nav-profile .responsive-tab {
    height: 61px;
    border-radius: 12px;
  }

  .nav-profile .responsive-tab a {
    line-height: 58px;
  }
}
 
.nav-profile.uk-sticky-fixed {
    background: white;
    border-radius: 0 0 7px 7px;
    border-top: 1px solid #efefef;
    box-shadow: 0 0px 0 0 rgba(139, 141, 157, 0.05), 0px 2px 10px -2px rgba(65, 71, 108, 0.15) !important;
}
.nav-profile .responsive-tab li { padding:0 !important}

.nav-profile .responsive-tab a {
  padding: 0px 12px;
  margin-right: 0;
  color: #000000f0 
}

.responsive-tab .uk-active a:before {
  position: absolute;
  bottom: 0px;
  content: '';
  width: 100%;
  height: 3px;
  left: 0;
  background: #1a73e8;
  border-radius: 12px;
}

@media (max-width: 965px) {
  .profile .profile-cover {
    min-height: 160px;
    border-radius: 0;
    margin-top: 16px;
  }

  .profile .profile-cover>a {
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 4px;
  }

  .profile .profile-cover>a i {
    margin-right: 4px;
  }

  .profile .profile-cover>a span {
    display: none
  }

  .profile-details .profile-image img {
    width: 80px;
    height: 80px;
  }

  .profile-details {
    position: relative;
    margin-top: -50px;
    margin-bottom: 12px;
  }

  .profile-details .profile-details-info p {
    font-size: 13px;
  }

  .profile-details .profile-details-info h1 {
    font-size: 19px;
  }

  .nav-profile {
    /* margin: 0px -15px; */
    margin-bottom: 10px;
    border-bottom: 0;
  }
}




/* ---------------------------------- */
/* channal sigle page design  
------------------------------------- */

.single-group .group-cover {
  min-height: 100%;
  max-height: 100%;
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  min-height: 250px;
  border-radius: 10px 10px 0 0;
}

.single-group .group-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;
}

.single-group .group-cover:before {
  position: absolute;
  content: '';
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  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;
}

.single-group-details {
  display: flex;
  position: relative;
  margin-top: -90px;
  z-index: 2;
  margin-bottom: 20px;
  width: 93%;
  padding: 0px 3%;
  align-items: center;
}

.single-group-details .left-side {
  flex: 1;
  display: flex;
  align-items: center;
}

.single-group-details .right-side {
  width: auto;
}

.single-group-details .single-group-image {
  margin-right: 17px;
}

.single-group-details .single-group-image img {
  width: 70px;
  border-radius: 100%;
}

.single-group-details .single-group-details-info h3 {
  color: white;
  margin-bottom: -1px;
}

.single-group-details .single-group-details-info p {
  color: white;
  margin-bottom: 0px;
}


.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: 2.5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 33px;
  padding: 0 10px;
  height: 35px;
  display: inline-block;
}


.nav-single-group {
  background: white;
  border-radius: 0 0 7px 7px;
  border-top: 1px solid #efefef;
  overflow: hidden;
  box-shadow: 0px 6px 12px -10px #c4c4c4;
  box-shadow: 0 0px 0 0 rgba(139, 141, 157, 0.05), 0px 2px 10px -2px rgba(65, 71, 108, 0.15) !important;
  margin-top: 10px;
  position: relative;
  margin: auto;
  z-index: 2;
}

@media only screen and (min-width: 1024px) {
  .nav-single-group .responsive-tab {
    height: 60px;
  }

  .nav-single-group .responsive-tab a {
    line-height: 57px;
    font-weight: 500;
  }
}
.nav-single-group .responsive-tab li:first-child {
  padding-left: 20px
}

.nav-single-group .responsive-tab li {
  padding: 0px
}

.nav-single-group .responsive-tab a {
  padding: 0px 14px;
  margin-right: 0;
}

.nav-single-group .responsive-tab:before {
  background: transparent;
}

.nav-single-group-saerchbox {
  display: flex;
  top: 9px;
  right: 16px;
  width: 250px;
  z-index: 1;
  position: absolute;
}

.nav-single-group-saerchbox i {
  position: absolute;
  right: 12px;
  top: 10px;
}

.nav-single-group-saerchbox .uk-input {
  height: 37px;
  padding: 0px 13px;
  font-size: 14px;
  background: #f5f5f5;
  border-color: #f5f5f5;
}

@media (max-width: 965px) {
  .single-group {
    margin: 0 -15px
  }

  .single-group .group-cover {
    min-height: 190px;
  }

  .single-group-details .single-group-image img {
    width: 40px
  }

  .btn-subscribe a {
    padding: 4px 15px;
    height: 23px;
    font-size: 14px;
    line-height: 23px;
  }

  .btn-subscribe i,
  .btn-subscribe .button:before,
  .btn-subscribe .subs-amount {
    display: none !important;
  }

  .single-group-details .single-group-details-info p {
    font-size: 13px;
  }

  .single-group .main_content_inner {
    padding: 0
  }

  .nav-single-group {
    border-radius: 0;
  }

  .nav-single-group-saerchbox {
    display: none
  }
}


 




/* ---------------------------------- */
/* button option menu  
------------------------------------- */
.btn-option {
  font-size: 21px;
  padding: 5px 3px !important;
  z-index: 1;
  position: relative !important;
  top: auto;
  right: auto;
  display: block !important;
}

/* 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 #f1f3f4 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 *> {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  transition: 0.3s;
  color: #9799a2;
  padding: 9px 14px;
  cursor: cursor
}

.dropdown-option-nav ul li>:hover {
  background-color: rgba(0, 0, 0, 0.07);
  pointer: cursor
}

.dropdown-option-nav ul li>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;
}

 

/* ---------------------------------- */
/*  contact list  
/* ---------------------------------- */

.contact-list {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  padding: 10px 0;
  border-radius: 10px;
  padding-left: 6px;
}

.contact-list:hover {
  background: #f1f3f4;
}

.contact-list h5 {
  margin-bottom: 0;
}

.contact-list-media {
  position: relative;
  margin-right: 10px;
}

.contact-list-media img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, .04);
}

.contact-list-media span.online-dot,
.contact-list-media span.offline-dot {
  background: #4fbb61;
  z-index: 1;
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: 0;
  right: -5px;
  border-radius: 50%;
  border: 3px solid #fff;
}

.contact-list-media span.offline-dot {
  background-color: #cecece
}

 
.contact-list-box {
  background: #fff;
  color: #474747;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.contact-list-box-media {
  position: relative;
  margin: 10px 0;
  display: inline-block;
}

.contact-list-box-media img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: auto;
}

.contact-list-box-btns {
  display: flex;
  align-items: center;
}

.contact-list-box-media span.online-dot,
.contact-list-box-media span.offline-dot {
  background: #4fbb61;
  z-index: 1;
  position: absolute;
  width: 13px;
  height: 13px;
  bottom: 0;
  right: 2px;
  border-radius: 50%;
  border: 3px solid #fff;
}

.contact-list-box-media span.offline-dot {
  background-color: #cecece
}

.contact-list span.dot {
    background: #1a73e8;
    width: 6px;
    height: 6px;
    position: absolute;
    right: 24px;
    border-radius: 100%;
    overflow: hidden;
}
 

/* ---------------------------------- */
/* story
------------------------------------- */
.story-pop {
  position: fixed;
  z-index: 10000;
  width: calc(100% - 40px );
  height: calc(100% - 40px );
  display: flex;
  border-top: 1px solid #f1f3f4;
  visibility: hidden;
  display: none;
  top: 0;
  left: 0;
  border: 20px solid #1c3faa;
}
@media (min-width: 760px) {
body.is-open .story-pop {
  visibility: visible;
  display: flex !important;
}

body.is-open {
  overflow-y: hidden;
}

}

/* story side */
.story-pop .story-side {
  padding: 10px;
  border-radius: 10px 0 0 10px;
  background: white;
}

.story-side-innr {
  height: calc(100% - 48px);
  width: 100%;
}
.story-side-innr .simplebar-scrollbar {
  
right: -8px;
}
/* story side list */
ul.story-side-list{
    margin: 0;
    padding: 0;
}
 
ul.story-side-list li a{
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  padding: 10px 9px;
  border-radius: 10px; 
}
.story-pop ul.story-side-list li.uk-active  a ,
.story-pop ul.story-side-list li a:hover{
  background-color: #f1f3f4;
}
 
ul.story-side-list li a .story-user-media{
    margin-right: 10px;
}
 
ul.story-side-list li a .story-user-media img {
  width: 40px;
  height: 40px;
  border-radius: 53px;
  border: 1.5px solid #ffffff;
  box-shadow: 0px 0px 0px 3px #2f80ed;
}
ul.story-side-list li a .story-user-innr{
    flex: 1;
}
 
ul.story-side-list li a .add-story-btn{
  width: 40px;
  height: 40px;
  background-color: #dedede;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 16px;
}

ul.story-side-list li a .story-user-innr h5{
    margin-bottom: 0;
}
ul.story-side-list li a .story-user-innr p{
    margin-bottom: 0;
    font-size: 14px;
}
ul.story-side-list li a .story-user-innr p span.story-count{
  margin-right: 9px;color: #2f80ed;
}
ul.story-side-list li a .story-user-innr p span.story-count ,
ul.story-side-list li a .story-user-innr p span.story-time-ago{
    font-weight: 600;
}



.story-pop .story-content {
  flex: 1;
  min-width: 1px;
  background: #f1f3f4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}

/* story side search input */
.story-pop .story-side-search {
  position: relative;
  margin-bottom: 10px;
}

.story-pop .story-side-search .uk-input {
  background-color: #f1f3f4;
}

.story-pop .story-side-search i {
  position: absolute;
  right: 13px;
  top: 15px;
}


/* story content innr */
.story-pop .story-content .story-content-innr {
  max-width: 400px;
  height: 540px; 
  position: relative;
}

.story-pop .story-side a.uk-active .contact-list {
  background-color: #f1f3f4;
}

.story-slider li {
  position: relative;
}

.story-slider-image {
  flex: 0 0 auto;
  max-width: none;
  max-height: 100%;
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 8px;
}

.story-slider-image:before {
  position: absolute;
  content: '';
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  border-radius: inherit; 
  box-shadow: 0px 0px 28px 0px black inset;
}

.story-slider li .story-slider-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  border-radius: 10px;
  border-radius: 8px;
}

.story-slider-nav {
  margin-bottom: -20px !important;
  position: relative;
  z-index: 21;
  margin-left: 0 !important;
}

.story-slider-nav li {
  flex: 1;
  min-width: 1px;
  padding-left: 0;
  padding: 4px;
  padding-right: 0;
}

.story-slider-nav li a {
  width: 100%;
  border-radius: 0;
  border: 0;
  height: 5px;
  border-radius: 39px;
  background: #afafaf;
}

.story-slider-nav li.uk-active a {
  background-color: #2f80ed
}

/* button close */
.story-btn-close {
  z-index: 100;
  border-radius: 100%;
  background: #ffffff;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.story-btn-close::before {
  font-family: "Feather-Icons";
  font-size: 22px;
  content: '\ea02';
  line-height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.story-btn-close:hover {
  background-color: #d4d4d4;
  cursor: pointer;
}

 

/* ---------------------------------- */
/*  contact list  
/* ---------------------------------- */

 .sidebar-chat .uk-offcanvas-bar { 
   padding: 10px !important
}

.sidebar-chat-head .btn-actions .uk-offcanvas-close {
  top: auto;
  right: auto;
  left: auto;
}

.sidebar-chat-head .btn-actions{
  position: absolute;
  top: 4px;
  right: 0px;
  display: flex;
}
.sidebar-chat-head{
  position: relative;
  padding: 10px;
  padding-bottom: 0;
}
.sidebar-chat-head h2 {font-weight :700;margin-bottom: 15px;}
.sidebar-chat-head .uk-input, 
.sidebar-chat-head .uk-input:focus {
  background-color: #f1f3f4;
  border-radius: 50px;
  border: 0;
  height: 38px;
} 
.sidebar-chat-head .btn-actions a {
  border-radius: 50px;
  color: #888 !important;
  transition: 0.25s;
  border: 0;
  font-size: 16px;
  width: 30px;
  margin-left: 4px;
  height: 30px;  
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-chat-head .btn-actions a:hover{
  background: #f1f3f4;
}

.sidebar-chat-messages.is-active{
  display: block;
}
.sidebar-chat-messages{
  z-index: 10;
  background-color: white;
  top: 0 !important;
  width: 350px;
  right: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 100vh;
  margin: 0 !important;
  position: absolute;
  display: none;
}


.sidebar-chat-messages-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10000;
  background: red;
  height: 50px;
}
.sidebar-chat-messages-header .close{
  position: absolute;
  left: 0;
}

.sidebar-chat-messages {
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scroll-snap-type: y mandatory;
}

.sidebar-chat-messages > div > div:last-child {
  scroll-snap-align: end;
}
 

@media (max-width: 960px) {
  .sidebar-chat .uk-offcanvas-bar{
    width: 100vw !important;
  }
}



.user-data {
  position: relative;
  overflow: hidden;
}

.user-data-media img {
  width: 150px;
  height: 140px;
  border-radius: 8px;
  box-sizing: border-box;
  background-clip: content-box;
  border: 0 solid transparent;
}
.user-data-content {
  padding-top: 10px;
}

.user-data-content h4{
  margin-bottom: 0;
}


.form-media {
  position: relative;
  padding: 30px !important;
}

.form-media .logo {
  max-width: 140px;
  margin-bottom: 15px;
}

.form-media::before {
  position: absolute;
  content: '';
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  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;
}

.form-media-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.form-media-content h1 {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 32px;
}

.form-media-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-media-footer ul li {
  display: inline-block;
}

.form-media-footer ul li a {
  display: block;
  padding-right: 11px;
  color: rgba(255, 255, 255, 0.5294117647058824);
}



 


.chat-plus-btn {
  position: fixed;
  bottom: 25px;
  right: 50px;
  background: #284bb7;
  color: #444444;
  z-index: 10;
  border-radius: 100%;
  box-shadow: 0px 6px 12px -4px #616161;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-plus-btn svg {
  background: #517cff;
  padding: 4px;
  border-radius: 100%;
  color: white;
  width: 26px;
  height: 26px;
  overflow: hidden;
}

.sidebar-chat-tabs {
  box-shadow: 7px 5px 12px -9px rgba(4, 4, 4, 0.28);
  margin: 0 -10px;
  margin-bottom: 10px;
}
.sidebar-chat-tabs  li a {
  border-radius: 0 !important;
  padding: 12px 22px;
  border-width: 2px;
  border-width: 5px;
}
.sidebar-chat-tabs::before {
  display: none;
}

.sidebar-chat-search{
  background-color: #ffffff;
  position: absolute;
  width: 95%;
  padding: 9px 0;
  z-index: 1;
}

.sidebar-chat-search input{
  height: 38px;
}
.sidebar-chat-search input , .sidebar-chat-search input:focus{
  background: #f1f3f4;
}
.sidebar-chat-search span.btn-close {
  z-index: 1;
  width: 26px;
  top: 6px;
  height: 26px;
  position: absolute;
  right: 2px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 7px;
}

 
/*Sidebar Invite*/
.sidebar .sl_side_invite_prnt {/* box-shadow: 0 1px 3px rgba(129, 92, 0, 0.2); */}
.sl_side_invite {z-index: 1;/* text-align: center; *//* background-color: #ededed; *//* padding: 9px 15px; */border-radius: 7px;}
.sl_side_invite  sl_side_invite {border:0}
.sl_side_invite > svg {display: none;width: 60px;height: 60px;}
.sidebar .sl_side_invite .sidebar-title-back {/* border-color: transparent; *//* padding-top: 0; *//* margin-top: 0; */}
.invite-user-form .invite-user-combine {position:relative;margin: 0;padding: 0;border-radius: 6px;overflow: hidden;}
.invite-user-form .invite-user-combine input {background-color: #e2e4ea;border-radius: 6px;margin: 0 7px;}
.invite-user-form button {position:absolute;top:4px;right:4px;line-height:16px;background: #cacedb;border-color: transparent;height:36px;border-radius:3px;color: #666;}
.invite-user-form button svg {height:16px;width:16px}
   
 /* General avatars groups */
 .sl_avatar-groups { display: inline-block;line-height: 1;}
 .sl_avatar-groups .avatars { z-index: 1;-webkit-transition: margin .15s ease-in-out;transition: margin .15s ease-in-out;}
 .sl_avatar-groups .avatars {position: relative;color: #fff;display: -webkit-inline-box;display: -ms-inline-flexbox;display: inline-flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;vertical-align: middle;width: 27px;height: 27px;font-size: .75rem;box-shadow: 0 0 0px 3px white;border-radius: 50% !important;}
 .sl_avatar-groups.avatars-md .avatars {font-size: 1rem;font-weight: 600;height: 3.125rem;width: 3.125rem; }
 .sl_avatar-groups .avatars:not(:first-child)+.avatars , .sl_avatar-groups .avatar-md+.avatar-md {margin-left: -.9rem;} 
 .sl_avatar-groups .avatars:hover { z-index: 2;}
 @media (prefers-reduced-motion:reduce) {
   .sl_avatar-groups .avatars { -webkit-transition: none;transition: none}
 }
 
 /* avatars member */ 
 .sl_hide_members img { display:none !important}
 .sl_hide_members  img:nth-child(2) , .sl_hide_members  img:nth-child(3) ,  .sl_hide_members  img:nth-child(4) , .sl_hide_members  img:nth-child(5) , .sl_hide_members  img:nth-child(6) {  display:inline  !important}
  
 /* Group list*/
 .sl_group_list {transition: 0.3s;position: relative;border-radius: 8px;overflow: hidden;background-color: white;margin-bottom: 25px;/* box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important; */box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
 .sl_group_list:hover{ box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important}
 .sl_group_list_media {flex: 0 0 auto;max-width: none;max-height: 100%;position: relative;width: 100%;height: 125px;background: #f1f3f4;}
 .sl_group_list_media img { height: 100%; width: 100%; object-fit: cover; position: absolute;top: 0;left: 0;}
 .sl_group_list_info {padding: 13px 15px;position: relative;}
 .sl_group_list_info .sl_avatar-groups {margin-top: 5px;}
 .sl_group_list_info h3 {font-size: 17px;line-height: 22px;margin: 0px;display: block;max-width: 100%;font-weight: 600;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;margin-bottom: 0px;}
 .sl_group_list_info h3 a{ color:#333}
 .sl_group_list_info h3 a:hover { color: #66676b;} 
 .sl_group_list_info ul {padding: 0;margin: 0;display: flex;margin-bottom: 7px;list-style: none;}
 .sl_group_list_info ul li {margin-right: 10px;color: #a2a2a2;font-size: 14px;}
 .sl_group_list_info_btns {margin-top: 10px;display:flex;}
 .sl_group_list_info_btns span .btn , .sl_group_list_info_btns a {  width: 100%;}
 .sl_group_list_info_btns span { flex: 1 ; margin-right: 8px;}
 .sl_group_list_info_btns span:last-child {  margin-right: 0;}

 /* page list */
 .sl_page_list {padding: 0; margin-bottom: 30px;transition: 0.3s;position: relative; border-radius: 8px;overflow: hidden;background-color: white;margin-bottom: 25px;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
 .sl_page_list:hover{ box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important}
 .sl_page_list_media {width: 100%;padding-top: 90%;position: relative;}
 .sl_page_list_media img {width: 100%;height: 100%;object-fit: cover;position: absolute;top: 0;right: 0;bottom: 0;left: 0;}
 .sl_page_list_info {padding: 12px 15px;}
 .sl_page_list_info h3 {margin: 0 0;font-size: 17px;font-weight: 600;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
 .sl_page_list_info h3 a {text-decoration: none;color: #1e1e1e;font-size: 17px;}
 .sl_page_list_info p {color: #7b7b7b;margin: 5px 0;}
 .sl_page_list_info > span {color: #7b7b7b;font-size: 13px;display: block;}
 .sl_page_list_info_btns {margin-top: 4px;display:flex;}
 .sl_page_list_info_btns a , .sl_page_list_info_btns span .btn , .sl_page_list_info_btns span  {width: 100%;}
 .sl_page_list_info_btns span .btn { margin: 0 !important} 
 
 /* events list */ 
 .sl_events_list {transition: 0.3s;position: relative; border-radius: 8px;overflow: hidden;background-color: white;margin-bottom: 25px;/* box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important; */box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
 .sl_events_list:hover{ box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important}
 .sl_events_list_media {flex: 0 0 auto;max-width: none;max-height: 100%;position: relative;width: 100%;height: 120px;background: #f1f3f4;}
 .sl_events_list_media img { height: 100%; width: 100%; object-fit: cover; position: absolute;top: 0;left: 0;}
 .sl_events_list_info {padding: 15px;position: relative;}
 .sl_events_list_info p{margin-bottom: 5px;color: #666;}
 .sl_events_list_info h3 {font-size: 16px;line-height: 22px;margin-bottom: 8px;display: block;max-width: 100%;font-weight: 600;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
 .sl_events_list_info h3 a{ color: #333}
 .sl_events_list_info h3 a:hover {color: #66676b;} 
 .sl_events_list .event-info-date {position: absolute;background-color: white;box-shadow: 0px 1px 20px -5px #d2d2d2;border-radius: 5px;padding: 5px;width: 50px;text-align: center;right: 12px;top: -24px;}
 .sl_events_list .event-info-date b {font-size: 18px;line-height: 1.4;color: #377dff;margin: 0;}
 .sl_events_list .event-info-date p { margin-bottom: 0; font-size: 12px; line-height: 1.2;}
 .sl_events_list_info_btns {margin-top: 13px;display:flex;}
 .sl_events_list_info_btns span .btn {width: 100%;line-height: 30px;padding: 0 1px;}
  .sl_events_list_info_btns span .btn svg{
    width: 20px;
    height: 20px;
}
 .sl_events_list_info_btns span { flex: 1 ; margin-right: 8px;}
 .sl_events_list_info_btns span:last-child {  margin-right: 0;}
 .sl_events_list .sl_avatar-groups .avatars:not(:first-child) {margin-left: -.9rem;}

 
 /* Games list */
 .sl_game_list {padding: 0; margin-bottom: 30px;transition: 0.3s;position: relative; border-radius: 8px;overflow: hidden;background-color: white;margin-bottom: 25px;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
 .sl_game_list:hover{ box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important}
 .sl_game_list_media {width: 100%;padding-top: 90%;position: relative;}
 .sl_game_list_media img {width: 100%;height: 100%;object-fit: cover;position: absolute;top: 0;right: 0;bottom: 0;left: 0;}
 .sl_game_list_info {padding: 12px;}
 .sl_game_list_info h3 {margin: 0 0 2px;font-size: 17px;font-weight: 600;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
 .sl_game_list_info h3 a {text-decoration: none;color: #1e1e1e;font-size: 17px;}
 .sl_game_list_info p {color: #7b7b7b;margin-top: 10px;}
 .sl_game_list_info > span {color: #7b7b7b;}
 .sl_game_list_info_btns {margin-top: 13px;display:flex;}
 .sl_game_list_info_btns .btn {width: 100%;}
 .sl_game_list_info_btns .btn  svg{
    width: 18px;
    height: 18px;
}
 .sl_page_list_info_btns span .btn { margin: 0 !important}

  /* jobs list */ 
  .sl_jobs_list {transition: 0.3s;position: relative;border-radius: 8px;overflow: hidden;background-color: white;margin-bottom: 25px;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
  .sl_jobs_list:hover{ box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important}
  .sl_jobs_list_media {flex: 0 0 auto;max-width: none;max-height: 100%;position: relative;width: 100%;height: 150px;background: #f1f3f4;}
  .sl_jobs_list_media img { height: 100%; width: 100%; object-fit: cover; position: absolute;top: 0;left: 0;}
  .sl_jobs_list_media .btn{position: absolute;right: 22px;top: 20px;}
  .sl_jobs_list_media .btn.btn-default{background-color: #2f80ed;color:white }
  .sl_jobs_list_info {padding: 18px 22px 19px;position: relative;}
  .sl_jobs_list_info_price {margin-bottom: 5px;letter-spacing: .2px;position: absolute;right: 20px;margin-top: -41px;background-color: #f0f9ff;padding: 6px 15px;border-radius: 2rem;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.03)!important;color: #4992ff;font-size: 14px;font-weight: 700;border: 1px solid #e1e2ff;} 
  .sl_jobs_list_info .sl_jobs_list_info_tags{display:flex;align-items: center;margin-top: 10px;}
  .sl_jobs_list_info .sl_jobs_list_info_tags span{background-color: #f1f3f4;margin-right: 9px;padding: 3px 11px;border-radius: 5px;font-size: 12px;text-transform: capitalize;display: inline-block;font-weight: 600;}
  .sl_jobs_list_info .sl_jobs_list_info_tags span svg {display:none}
  .sl_jobs_list_info h3 {font-size: 19px;margin-bottom: 1px;display: block;max-width: 100%;font-weight: 600;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
  .sl_jobs_list_info h3 a{color: #333;text-decoration: none;}
  .sl_jobs_list_info h3 a:hover { color: #66676b;} 
  .sl_jobs_list_info ul {display:flex;align-items:center;padding:0;list-style: none;}
  @media (max-width: 1200px){
    .sl_jobs_list_info {padding: 15px 15px 15px}
  }
  @media (max-width: 767px){
    .sl_jobs_list_info ul { margin-bottom:-6px}
    .sl_jobs_list_info_price {background: white;color: #353333;left: 7px;margin-top: -53px;width: fit-content;padding: 1px 10px;border-radius: 2rem;}
    .sl_jobs_list_info .sl_jobs_list_info_tags span { background-color:transparent;font-size:13px;padding:0 3px}
  }


  /* Blog */
 .sl_blog_list {padding: 0; margin-bottom: 30px;transition: 0.3s;position: relative; border-radius: 8px;overflow: hidden;background-color: white;margin-bottom: 25px;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
 .sl_blog_list:hover{ box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important}
 .sl_blog_list_media {width: 100%;padding-top: 51%;position: relative;}
 .sl_blog_list_media img {width: 100%;height: 100%;object-fit: cover;position: absolute;top: 0;right: 0;bottom: 0;left: 0;}
 .sl_blog_list_info {padding: 12px 15px;}
 .sl_blog_list_info .art-title {margin-top: 0;}
 .sl_blog_list_info .art-title a {text-decoration: none;color: #1e1e1e;text-decoration: none;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;line-height: 27px;font-size: 17px;}
 .sl_blog_list_info .postCategory {color: #7b7b7b;margin-top: 10px;font-size: 13px;}
 .sl_blog_list_info .postMeta--author-text {display: flex;align-items: center;margin-top: 6px;text-decoration: none;}
 .sl_blog_list_info .postMeta--author-text > img {width: 33px;height: 33px;border-radius: 100%;margin-right: 10px;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
 .sl_blog_list_info .postMeta--author-text .author-name{font-size: 13px;display: block;line-height: 1;}
 .sl_blog_list_info .postMeta--author-text time {font-size:12px;color: #b6b6b6;}
 .sl_blog_list_info_act {display: flex;align-items: center;justify-content: space-between;margin-top: 7px;}
 .sl_blog_list_info_act .btn{background-color: #ffe6e6;color:red;line-height: 32px;}
 .sl_blog_read_hdr_img {position: relative;overflow: hidden;}
 .sl_blog_read_hdr_img img {width: 100%;height: 400px;object-fit: cover;}
 .sl_blog_read_hdr_img_overly {position: absolute;top: 0;right: 0;bottom: 0;left: 0;width: 100%;height: 100%;background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0, 0, 0, 0.8) 100%);display: flex;align-items: flex-end;padding: 0 15px 80px;font-family: "Roboto", sans-serif;z-index: 9;}
 .sl_blog_read_hdr_img_innr {position: absolute;top: 0;right: 0;bottom: 0px;left: 0;width: 100%;height: 100%;display: flex;align-items: flex-end;padding: 0px 15px 0px;z-index: 9;}
 .sl_blog_read_hdr_img_innr .postCategory {background-color: rgba(255, 255, 255, 0.2);color: white;backdrop-filter: blur(10px);min-width: auto;line-height: 25px;padding: 0 10px;font-weight: normal;}
 .sl_blog_read_hdr_img_innr h2 {margin: 20px 0;font-size: 44px;color: #fff;}
 .sl_blog_read_hdr_img_innr .read-blog-info-user {margin-bottom: 30px;}
 .sl_blog_read_hdr_img_innr .read-blog-info-user .metaLink {color: rgba(255, 255, 255, 0.8);display: inline-block;text-decoration: none;margin: 9px 0;}
 .sl_blog_read_hdr_img_innr .read-blog-info-user .views, .sl_blog_read_hdr_img_innr .read-blog-info-user .middot {color: rgba(255, 255, 255, 0.8);}
 .sl_blog_read_hdr_img_innr .postMeta--author-text {color: rgba(255, 255, 255, 0.8);text-decoration: none;}
 .sl_blog_read_hdr_img_innr .postMeta--author-avatar img {width: 35px;height: 35px;}
 .sl_blog_read_hdr_img_innr .postMeta--author-text a {font-weight: 500;font-size: 15px;color: white;text-decoration: none;}
 .sl_blog_read_hdr_img_innr .postMeta--author-text time {display: block;font-size: 13px;}
 .blog-content p , .read-blog-desc p {font-size: 15px;line-height: 23px;}

/*explore page */
.sl_srch_form .sl_form_fields {margin: 9px 0;}
.sl_srch_form .sl_form_fields input , .sl_srch_form .sl_form_fields > select {padding-left: 40px !important;width: calc(100% - 47px);}
.sl_srch_form .sl_form_fields svg {}
.sl_srch_form .sl_form_fields > select {border-radius: 4px;background: #f1f3f4;}
.sl_srch_form .sl_form_fields > select {width: 100%;border: 0;outline: none;padding: 14px 35px;}
.nav-tabs.sl_srch_tabs {display: flow-root;border: 0;border-radius: 7px;padding: 5px;margin: 0;background-color: #f1f3f4;}
.nav-tabs.sl_srch_tabs::before {border-color: transparent;}
.nav-tabs.sl_srch_tabs > li {float: left;width:50%;padding-left: 0;}
.nav-tabs.sl_srch_tabs > li a{height: auto;border: 0 !important;text-align: initial;font-weight: 500;text-shadow: none;color: #47525d;line-height: 34px !important;font-size: 14px !important;opacity: .8;padding: 4px 10px;}
.nav-tabs.sl_srch_tabs > li a:hover {background-color: transparent !important;opacity: .9;}
.nav-tabs.sl_srch_tabs > li.uk-active a , .nav-tabs.sl_srch_tabs > li.uk-active a:hover {background-color: #ffffff !important;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;border-radius: 7px;color: #777 !important;opacity: 1 !important;} 
 
 /*Search Filter*/
.sl_srch_innr_filtr {padding: 0 10px;margin-bottom: 10px;}
.sl_srch_innr_filtr > .dropdown .dropdown-menu li:last-child .sl_srch_innr_filtr {margin-bottom: 5px;}
.sl_srch_innr_filtr > p {font-weight: 500;margin-bottom: 5px;font-size: 15px;}
.sl_srch_innr_filtr .pp_mat_input {display: flex;flex-wrap: wrap;margin: 0 -4px;border-radius: 7px;/* overflow: hidden; */padding: 5px;background-color: #f1f3f4;}
.sl_srch_innr_filtr .round_check {/* display: block; *//* margin: 0 4px; */flex: 1;/* border-radius: 7px; *//* overflow: hidden; */text-align: center;}
.sl_srch_innr_filtr .round_check input {display: none;}
.sl_srch_innr_filtr .round_check label {margin: 0;transition: all .2s ease-in-out;padding: 0px 15px;font-size: 13.5px;line-height: 33px;color: #393939;/* width: 100%; */display: inline-block;width: 72%;cursor: pointer;}
.sl_srch_innr_filtr .round_check input:checked+label {background-color: #ffffff;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;border-radius: 7px;}
.sl_srch_innr_filtr .pp_mat_input .age_number {/* width: auto; */text-align: center;border: 0;border-radius: 2em;padding: 0 14px;font-size: 14px;line-height: 28px;background-color: #8eb3f3 !important;color: #ffffff;margin-left: auto;}
.sl_srch_innr_filtr .ui-slider {border-radius: 2em;box-shadow: none;height: 4px;margin-top: 15px;background: rgba(63, 81, 181, 0.25);z-index: 9;}
.sl_srch_innr_filtr .ui-slider .ui-slider-handle {width: 15px;height: 15px;outline: none;border: 0;border-radius: 50%;top: -5px;}
.sl_srch_innr_filtr .ui-slider .ui-slider-range, .sl_srch_innr_filtr .ui-slider .ui-slider-handle {background-color: #2196f3;}
.sl_srch_game_tabss .col-md-6 {width: 25%;}

/*Form Fields*/
.sl_form_fields {position: relative;margin: 15px 0;font-family: "Roboto",sans-serif;}
.sl_form_fields > label {font-weight: 500;font-size: 15px;display: block;}
.sl_form_fields input, .sl_form_fields textarea, .sl_form_fields select, .sl_form_fields > .bootstrap-select.btn-group > .dropdown-toggle {background-color: transparent;box-shadow: rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;border-radius: 4px;transition: background-color 240ms, box-shadow 240ms;color: #393d4a;font-weight: 400;font-size: 16px;line-height: 28px;padding: 8px;width: 100%;border: 0;outline: 0;background: #f1f3f4;box-shadow: none;}
.sl_form_fields select {height: 48px;}
.sl_form_fields textarea {resize: vertical;}
.sl_form_fields input:focus, .sl_form_fields textarea:focus, .sl_form_fields select:focus, .sl_form_fields > .bootstrap-select.btn-group > .dropdown-toggle:focus, .sl_form_fields .bootstrap-tagsinput:focus {box-shadow: rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(58, 151, 212, 0.28) 0px 0px 0px 4px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;box-shadow: 0px 2px 4px 0px #dcdcdc;}
.sl_form_fields input[disabled] {background-color: #f2f2f2;}
.sl_form_fields > svg, .sl_form_fields > .dropdown > .btn svg {position: absolute;top: 50%; transform: translateY(-50%);left: 15px;pointer-events: none;}

 /*Fundings*/
.fundings {background: #fff;border-radius: 7px;margin-bottom: 30px;overflow: hidden;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
.fundings:hover{box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important;}
.fundings .avatar {position: relative;height: 0;width: 100%;padding-bottom: 47.25%;}
.fundings .avatar img {position: absolute;width: 100%;height: 100%;top: 0;right: 0;left: 0;bottom: 0;object-fit: cover;}
.fundings_desc {padding: 15px;}
.fundings_desc h3 {font-size: 16px;overflow: hidden;line-height: 26px;margin: 0 0 6px;font-weight: 600;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;}
.fundings_desc h3 a {color: #222;text-decoration: none;}
.fundings_desc .fund_raise_btns{ margin:0}
.fundings_desc .fund_raise_btns .button {font-size: 14px;/* line-height: 38px; */}
.fundings_footer {padding-top: 2px;padding-bottom: 10px;}
.fundings_footer p {font-weight: 600;font-size: 14px;}
.fundings_footer .fund_raise_progress {position: relative;height: 5px;background-color: #E0E1EA;border-radius: 15px;z-index: 1;width: 101%;overflow: hidden;}
.fundings_footer .fund_raise_progress .fund_raise_progress_filler {position: relative;height: auto;border-radius: 14px;height: 5px;background: linear-gradient(100deg, #49cfce 0%, #5eefcb 100%);}
.fundings_desc_meta .postMeta--author-avatar {display: inline-block;padding-right: 5px;}
.fundings_desc_meta .postMeta--author-text, .fundings_desc_meta .postMeta--author-text .middot {color: #545454;}
.fundings_desc_meta .postMeta--author-text {white-space: nowrap;overflow: hidden;text-overflow: ellipsis;max-width: 100%;max-width: calc(100% - 40px);display: inline-block;font-size: 13px;}
.fundings_desc_meta .postMeta--author-text a {color: #545454;text-decoration: none;font-size: 14px;}
 
/*User Pokes*/
.sl_pokes_cont {border-radius: 5px;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;background-color: #fff;padding: 0 10px;margin-bottom: 15px;}
.sl_poke_users {/* background: #fff; */overflow: hidden;padding: 10px 5px;border-bottom: 1px solid rgba(0, 0, 0, 0.07);}
.sl_poke_users:last-child {border:0;}
.sl_poke_info_innr{display:flex;align-items: center;width: 100%;}
.sl_poke_info_innr_user{flex:1 }
.sl_poke_info{display:flex}
.sl_poke_users .button {padding: 2px 12px;border-radius: 7px;font-size: 13px;display: flex;align-items: center;}
.sl_poke_users .btn svg {width: 18px;height: 18px;margin-right: 5px;}
.sl_poke_users .sl_poke_info .avatar {background: transparent 50% 50% no-repeat;background-size: cover;border-radius: 50%;display: inline-block;height: 50px;width: 50px;margin-right: 20px;overflow: hidden;}
.sl_poke_users .sl_poke_info .user-name {font-size: 18px;color: #474747;font-weight: 600;}

/*Find Friends*/
.sl_find_frns_user {padding: 0;margin-bottom: 30px;transition: 0.3s;position: relative;border-radius: 8px;overflow: hidden;background-color: white;margin-bottom: 25px;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;min-height: 265px;min-height: 270px;display: flex;flex-direction: column;justify-content: space-between;}
.sl_find_frns_user:hover{ box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important}
.sl_find_frns_user_cover {width: 100%;padding-top: 38%;position: relative;background-color: #f1f3f4;}
.sl_find_frns_user_cover img {width: 100%;height: 100%;object-fit: cover;position: absolute;top: 0;right: 0;bottom: 0;left: 0;}
.sl_find_frns_user_info {padding: 15px;padding-bottom: 0;position: relative;text-align: center;margin-top: -70px;}
.sl_find_frns_user_avatar{width: 95px;height: 95px;border-radius: 100%;overflow: hidden;border: 5px solid white;margin: auto;background: #f1f3f4;margin-bottom: 5px;}
.sl_find_frns_user_info h4 {font-size: 19px;line-height: 22px;color: #333 !important;margin-bottom: 3px;display: block;max-width: 100%;font-weight: 600;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;text-transform: capitalize;}
.sl_find_frns_user_info h4 a{ text-decoration:none}
.sl_find_frns_user_info h4 a:hover { color: #66676b;} 
.sl_find_frns_user_info p {color: #a0a0a0;margin-top: 2px;margin-bottom: 0;font-size: 13px;}
.sl_find_frns_user_info p b {background-color: #ececec;padding: 3px 9px;border-radius: 100px;}
.sl_find_frns_user_btns {display:flex; padding: 0 10px;}
.sl_find_frns_user_btns span .btn {width: 100%;tant;font-size: 13.6px !important;font-weight: 500;line-height: 2.2;display: flex;align-items: center;text-align: center;flex: 1;justify-content: center;padding: 3px 10px !important;border-radius: 8px;outline: none;}
.sl_find_frns_user_btns .btn svg {margin-right: 4px !important;margin-top: -4px;height: 16px;width: 17px;vertical-align: middle;margin: -3px 3px 0 -1px;fill: rgba(255,255,255,.32);display: block;}
.sl_find_frns_user_btns > span { width: 100%; padding: 10px 4px;}
.sl_find_frns_user_btns > span:last-child {margin-right: 0 }
@media (max-width: 1100px) { 
 .sl_find_frns_user{ min-height: auto;}
 .sl_find_frns_user_cover{ padding-top:30% ;} 
}

 /* sidebar suggests  list */  
 .sl_sidebar_sugs_title{display: flex;padding: 0;line-height: 35px;margin: 5px 7px 10px;padding-top: 6px;font-size: 16px;color: #777;font-weight:600;border-top: 1px solid #e2e2e2;align-items: center;justify-content: space-between;}
 .sl_sidebar_sugs_title i {font-size: 17px;font-weight: 600;}
 .sl_sidebar_sugs {padding: 6px 7px;display: block; overflow: hidden;display: flex;border-radius: 7px;align-items: center;}
 .sl_sidebar_sugs:hover{background-color: rgba(178, 185, 195, 0.25);}
 .sl_sidebar_users:last-child {border: 0;}
 .sl_sidebar_sugs .sl_sidebar_sugs_avatar {margin-right: 10px;}
 .sl_sidebar_sugs .sl_sidebar_sugs_avatar img {border-radius:50%;width: 50px;height: 50px;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
 .sl_sidebar_sugs .sl_sidebar_sugs_text {flex:1;}
 .sl_sidebar_sugs .sl_sidebar_sugs_text .user-popover { line-height : 1.2}
 .sl_sidebar_sugs .sl_sidebar_sugs_text a{font-size: 15px;color: #4e4e4e;margin: 0;max-width: 100%;text-transform: capitalize;font-weight: 600;text-decoration: none;}
 .sl_sidebar_sugs .sl_sidebar_sugs_text > span{display:block;font-size: 13px;color: #898989;line-height: 1.1;}
 .sl_sidebar_sugs .sl_sidebar_sugs_btns { width:auto;} 
 .sl_sidebar_sugs .sl_sidebar_sugs_btns .button {box-shadow: none !important;font-size: 14px !important;background: #dadfe2 !important;color: #4c4c4c !important;font-weight: 700;margin: 0;outline: none;}
 .sl_sidebar_sugs .sl_sidebar_sugs_btns .button svg {display: none;}
 .sl_sidebar_users .info_prt { padding-top: 2px;flex: 1;}
 .sl_sidebar_users .sl_user_link_name {display: block !important;margin-bottom: 4px;max-width: unset !important;white-space: normal !important;}
 .sl_sidebar_users .sl_user_link_name span{display:block;font-size: 13px;}
 .sl_sidebar_users .sl_user_username_cont{overflow:hidden;display:block;white-space:nowrap;text-overflow:ellipsis;word-break:break-all;margin:-3px 0 10px}

 /*Sidebar Invite*/
.sl_side_invite {z-index: 1; border-radius: 7px;}
.sl_side_invite  sl_side_invite {border:0}
.sl_side_invite > svg {display: none;width: 60px;height: 60px;} 
.invite-user-form .invite-user-combine {position:relative;margin: 0;padding: 0;border-radius: 6px;overflow: hidden;}
.invite-user-form .invite-user-combine input {background-color: #e2e4ea;border-radius: 6px;margin: 0 7px;}
.invite-user-form button {position:absolute;top:4px;right:4px;line-height:16px;background: #cacedb;border-color: transparent;height: 36px !important;border-radius:3px;color: #666;padding: 0 13px !important;}
.invite-user-form button svg {height:16px;width:16px}

/*Sidebar Hashtags*/
.sidebar .list-group, .featured-users {border: 0;background: transparent !important;box-shadow: none;}
.sl_htag {background-color: transparent;display: inline-block;background: #dadfe2;margin-bottom: 5px;margin-right: 5px;border-radius: 100px;}
.sl_htag a {text-decoration: none;}
.sl_htag .htag_top {display: block;color: #45494e;font-weight: 600;line-height: 1 !important;padding: 8px 12px;font-size: 13px;}
 
/*Sidebar Pro Users*/
.sl_pro_users {margin: 0;padding: 0px}
.sl_pro_users li .user {box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important;position: relative;display: block;overflow: hidden;text-align: center;text-decoration: none;background-color: #ffffff;border-radius: 4px;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
.sl_pro_users li .user img {width: 100%;height: 90px;object-fit: cover;background-color: #ffffff;border-radius: 4px 4px 0 0;}
.sl_pro_users li .user span {padding: 5px;display: block;font-size: 12px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.sl_pro_users_next{transform: translateY(-90%) translateX(-11px) !important;margin: 0 !important;}
.sl_pro_users_prev{transform: translateY(-90%) translateX(-11px) !important;margin: 0;}

.sl_user-widget {border-bottom: 1px solid #ebebee;background-color: white;padding: 10px;padding-bottom: 6px;margin-bottom: 18px;border-radius: 7px;box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important;overflow: hidden;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
.sl_user-widget .section-header.border-bottom { border-top: 0; border-bottom: 1px solid #ebebee;}
.sl_user-widget-wrap-header{position: relative;display: flex;flex-wrap: wrap;padding-bottom: 14px;align-items: end;padding: 11px 5px;padding-top: 7px;}
.sl_user-widget-wrap-header-left { flex: 1; min-width: 1px; display: flex;align-items: center;}
.sl_user-widget-wrap-header-left>* {/* margin-bottom: 5px; */color: #333334;text-transform: capitalize;}
.sl_user-widget-wrap-header-left> div {/* display : none; */}
.sl_user-widget-wrap-header-left> a , .sl_user-widget-wrap-header-left> h4 {font-size: 16.4px;margin-bottom: 0;font-weight: 700;}
.sl_user-widget-wrap-header-left> span { display : none}
.sl_user-widget-wrap-right {width: auto; align-items: center; display: flex;justify-content: center;}
.sl_user-widget-wrap-right>* {margin-left: 10px;}
.sl_user-widget-wrap-right a.see-all {position: relative;color: #2f80ed;line-height: 1;font-size: 15px;padding: 7px;border-radius: 6px;text-decoration: none;}
.sl_user-widget-wrap-right a.see-all:hover { background-color:#f1f3f4}
.sl_user-widget-wrap-right a.see-all::after {font-family: "Feather-Icons";content: '\e930';font-size: 18px;right: 0;position: absolute;line-height: .7;display: none;}
.sl_user-widget-see-all {display: block;margin-bottom: 8px;font-size: 15px;}
.sl_user-widget_text{padding: 10px;}

.sidebar-user-data {padding: 0 6px 7px;padding-bottom: 0;margin-bottom: 12px;}
.sidebar-user-data{width: 30.33333%;margin:0;display:inline-block;padding:0 3px 5px;position:relative;}
.sidebar-user-data a{position:relative;display:block;text-decoration: none;}
.sidebar-user-data .sidebar-listed-user-avatar img{width:100%;margin:0;padding:0;display:inline-block}
.sidebar-user-data .sidebar-listed-user-name{bottom:0;font-weight: 600;left:0;color:#fff;background:linear-gradient(transparent,rgba(0,0,0,.45));padding: 6px 0;width:100%;position:absolute;font-size: 13.5px;line-height: 19px;max-height:56px;max-width: 100%;overflow: hidden;text-overflow: ellipsis;text-transform: capitalize;text-decoration: none;}
.sidebar-user-data-container{padding : 0;/* display: flex; *//* align-items: center; *//* flex-wrap: wrap; *//* justify-content: center; */margin-bottom: 0;}
.sidebar-user-data .sidebar-listed-user-name { position: relative !important; background: transparent;color: unset;}
.sidebar-user-data .sidebar-listed-user-avatar img {border-radius: 5px;width: 100%;/* height: 88px; */}
.sidebar-albums-container .sidebar-user-data .sidebar-listed-user-avatar img {height: auto ; width: 100% ; border-radius: 5px }

.sl_right_user_info {padding-left: 0;padding-right: 0}
.sl_right_user_info .wo_page_hdng {margin-bottom: 7px;}
.sl_right_user_info .wo_page_hdng_innr{ line-height: 24px; font-size: 15px;}
.sl_right_user_info .wo_page_hdng{   margin-bottom: 0;  border: none; padding: 12px 18px; padding-bottom: 6px;}
.sl_right_user_info li {padding: 4px 13px;color: #1d2129;font-size: 12px;}
.sl_right_user_info li a {text-decoration: none;color: #1d2129;}
.sl_right_user_info li svg {color:#7a7a7a;margin:-3px 6px 0 2px;width:18px;height:18px}
.sl_right_user_info li.list-group-item{padding: 7px 4px;color: #1d2129;font-size: 15px;background-color: transparent;}
.sl_right_user_info li.list-group-item svg {width: 21px;height: 21px;margin-right: 10px;font-size: 19px;line-height: 28px;}


/*Footer*/
.footer-wrapper {font-size:12px;/* font-family: "Roboto", sans-serif; */display: none;}
.footer-wrapper hr {border-color:#e9e9e9;margin-bottom:15px!important}
.footer-wrapper .footer-powered {display: flex;align-items: center;justify-content: space-between;color: #858585;}
.footer-wrapper .footer-powered .list-inline {margin: 0;}
.footer-wrapper-sidebar {font-size:12px;font-family: "Roboto", sans-serif;}
.footer-wrapper-sidebar .footer-powered {display: flex;align-items: center;justify-content: space-between;color: #858585;font-weight: 500;}
.footer-wrapper-sidebar .footer-powered p, .footer-wrapper .footer-powered p {margin: 0;font-weight: 600;}
.footer-wrapper-sidebar .footer-powered .dropdown-toggle, .footer-wrapper .footer-powered .dropdown-toggle {text-decoration: none;line-height: 1;display: block;color: #858585;}
.footer-wrapper-sidebar .footer-powered .dropdown-toggle svg, .footer-wrapper .footer-powered .dropdown-toggle svg {width: 13px;height: 13px;margin-top: -2px;}
.sl_lang_select_menu , .footer-wrapper-sidebar .sun_foot_drop_menu .dropdown-menu {min-width: 240px;border-radius: 7px !important;box-shadow: 0 3px 15px -3px rgba(0,0,0,.1),0 10px 6px -2px rgba(0,0,0,.05)!important;}
.sl_lang_select_menu >li>a , .footer-wrapper-sidebar .sun_foot_drop_menu .dropdown-menu >li>a {font-size: 14px !important;padding: 2px 10px !important;margin: 0 7px;border-radius: 6px;color: #111111;}
.sl_lang_select_menu >li>a:hover , .footer-wrapper-sidebar .sun_foot_drop_menu .dropdown-menu >li>a:hover{background: #f1f3f4;}
.footer-wrapper-sidebar hr {border-color: #e9e9e9;margin: 10px 0 !important;}
.footer-wrapper-sidebar .list-inline {margin: 0 -5px 0;display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}
.footer-wrapper-sidebar .list-inline > li > a {text-decoration: none;line-height: 1;display: block;color: #858585;font-weight: 600;}

/*Product*/
.product{margin-bottom: 20px !important;position: relative;}
.product .product_info{ background-color: #fff;padding: 0 3px 5px;border: 1px solid #ddd;border-radius: 4px;overflow: hidden;transition: all .2s linear;border: 0;border-radius: 7px;transition: all 0.2s;padding: 0px;box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
.product .product_info:hover{box-shadow: 0 1px 4px rgba(0,0,0,.18);}
.product .product-image{overflow:hidden;margin:0 0 0 -3px;width: calc(100% + 7px);position:relative;}
.product .product-image img{width:100%;height: 200px;object-fit: cover;}
.product .produc_info {padding: 10px 12px;padding-bottom: 15px;}
.product .product-title{color: #c3c3c3;font-size: 17px !important;margin-bottom: 0;display: block;overflow: hidden;word-break: break-all;text-overflow: ellipsis;white-space: nowrap;}
.product .product-title a {color: #222;background-color: transparent !important;}
.product .product-by{margin-bottom: 0px;color: #7f7f7f;font-size: 13px;}
.product .product-price{font-size:14px;letter-spacing:.3px;position: absolute;top: 10px;left: 10px;font-weight: 700 !important;background: #e5f0ff;border-radius: 4px;color: #2f80ed !important;padding: 3px 8px;}
.product .product-desc{color:#999;margin-top:8px;font-size:12px}
@media (max-width: 960px) { 
  .product .product-price {top: 5px;}
  .product .product-image img { height: 140px; }
}

/* .sl_offer_list  */
.sl_offer_list { box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;box-shadow: 0 1px 0 0 #e3e4e8, 0 0 0 1px #f1f1f1; margin-bottom: 20px; background-color: #fff;border: 1px solid transparent;border-radius: 3px;}
.sl_offer_list:hover{box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important }
.sl_offer_list_headimg {height: 180px;border-radius: 3px 3px 0 0;overflow: hidden;position: relative;}
.sl_offer_list_headimg img {width: 100%; height: 100%;object-fit: cover;}
.sl_offer_list_date {position: absolute;margin: 0;padding: 3px 7px;display: inline-block;background-color: white;border: 0;box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);border-radius: 5px;left: 15px;bottom: 15px;font-size: 13px;font-weight: 500;font-family: "Roboto", sans-serif;}
.sl_offer_list_info {position: relative;background: transparent;padding: 15px; border-radius: 3px;}
.sl_offer_list_info h2 {font-size: 17px;font-weight: 500;max-width: 100%;margin: 0;color: red;}
.sl_offer_list_info h2 a {
    color: #272727;
}

/* photo  card  */
.sl_photo_list {box-sizing: border-box;border: 3px solid #f1f2f6;position: relative;overflow: hidden;height: 150px;background-size: cover;display: flex;align-items: flex-end;transition: all ease .3s;}
.sl_photo_list:hover .sl_photo_list-content {margin-bottom: 0;}
.sl_photo_list:before {position: absolute; content: ''; z-index: 1; bottom: 0; left: 0; width: 100%; height: 44%;opacity: 0.5;border-radius: inherit; background: transparent;background-blend-mode: color-burn;}
.sl_photo_list:hover.sl_photo_list:before {background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #2b2b2b 60%) !important;background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #2b2b2b 60%) !important;}
.sl_photo_list-content {position: relative;width: 100%;padding: 11px 16px;z-index: 2;display: flex;justify-content: space-between; align-items: center;margin-bottom: -57px;}
.sl_photo_list-content h4 { margin-bottom: -3px;color: white;font-size: 16px;}
.sl_photo_list-content p {margin-bottom: 0}
.sl_photo_list-content p span:hover {color: white;}
.sl_photo_list-content p span {color: #bbbbbb;font-size: 13px;margin-right: 6px;}
.sl_photo_list-content .btn-down {font-size: 21px;color: white;}

/* catagroy card*/
.group-catagroy-card {box-sizing: border-box;border-radius: 10px;position: relative;overflow: hidden;height: 135px;background-size: cover;display: flex;align-items: flex-end;}
.group-catagroy-card:before {position: absolute;content: '';z-index: 1;bottom: 0;left: 0;width: 100%;height: 29%;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 66%);background-blend-mode: color-burn;}
.group-catagroy-card-content {position: relative;width: 100%;padding: 12px 13px;z-index: 2;}
.group-catagroy-card-content h4 {margin-bottom: 0;color: white;font-size: 16px;}

.list-inline, .list-unstyled {padding-left: 0;list-style: none;}
.list-inline>li {display: inline-block;/* padding-right: 5px; */padding-left: 5px;}
.dropup .caret, .navbar-fixed-bottom .dropdown .caret {content: ""; border-top: 0;border-bottom: 4px solid;}
.caret {display: inline-block;width: 0;height: 0;margin-left: 2px; border-top: 4px dashed;border-right: 4px solid transparent;border-left: 4px solid transparent;}

/*Empty State*/
.empty_state{margin:85px 0;font-family: "Roboto", sans-serif;font-size: 15px;color:#6d6d6d;text-align: center;}
.empty_state svg{display: block;margin: 0 auto 15px;width: 60px;height: 60px;color: #ffffff;background-color: #607D8B;border-radius: 50%;padding: 14px;opacity: 0.7;}

.middot{margin:0 6px;font-size:13px;line-height:1.1;font-weight:700}

.shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)!important}
.shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important}
.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important;}
.shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important;}
.shadow-lg{box-shadow: 0 3px 15px -3px rgba(0,0,0,.1),0 10px 6px -2px rgba(0,0,0,.05)!important;}
.shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)!important}


 
.sl_event_listing {
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 180px;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}

.sl_event_listing: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;
}

.sl_event_listing-content {
  position: relative;
  width: 100%;
  padding: 12px 13px;
  z-index: 2;
}

.sl_event_listing-content h4 {
  margin-bottom: 0;
  color: white;
  font-size: 15px;
}


.sl_event_listing-content p {
  margin-bottom: 0;
  color: white;
  font-size: 13px;
}

@media (max-width: 768px) {
  .sl_event_listing {
    height: 130px;
  }
}

@media (max-width: 1260px) { 
  .main_sidebar.sidebar_2 {display:none}
}

 .main_sidebar .sidebar-header {
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e2e2e27a;
  width: 96%;
}

.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;
  color: white;
  padding-right: 15px;
}

.main_sidebar .sidebar-header .btn-close {
  display: none;
} 

.main_sidebar .side-overlay {
    z-index: 1;
    position: fixed;
    width: 100%;
    margin-left: 270px;
    height: 100%;
    background: hsl(0deg 0% 0% / 18%);
    visibility: hidden;
}

.mobile-visible .main_sidebar {
  margin-left: 0px !important;
  height: calc(100% - 0px) !important;
}

.main_sidebar .sidebar-header h4 {
  font-size: 15px;
} 


@media (min-width: 1260px) { 
  header .header-btn-traiger.is-hidden {display:none}
}
@media (max-width: 690px) { 
.post-new-type>a img { 
    display: none;
}
.nav-profile .responsive-tab a {     
     height: 38px;
}

}
.display-hidden { display: none;}
 


.load-more {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 20px;
}
.load-more .btn {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  height: 36px;
  line-height: 36px;
  font-weight: 600;
  border-radius: 2em;
  padding: 0 20px !important;
  position: relative;
  transition: all 0.15s;
  outline: none;
  color: #848484;
}
.load-more .btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

















/* ---------------------------------- */
/* responsive tab
------------------------------------- */

.responsive-tab {
  position: relative;
  z-index: 1;
  clear: both;
  width: 100%;
  height: 52px;

  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.responsive-tab ul,
.responsive-tab li,
.responsive-tab a {
  height: 100%;
}

.responsive-tab ul {
  /* enables a flex context for all its direct children */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.responsive-tab ul::after {
  clear: both;
  content: "";
  display: block;
}

.responsive-tab li {
  display: inline-block;
  float: left;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.responsive-tab a {
  display: block;
  color: #0c0c0c;
  opacity: .6;
  line-height: 50px;
  padding-right: 17px;
  padding-left: 0;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  text-transform: capitalize;
}

.responsive-tab a span {
  padding: 5px 9px;
  background: #e8f0fe;
  border-radius: 30px;
  font-size: 12px;
  margin-left: 3px;
}

.responsive-tab a i {
  /* font-weight: 700; */
  margin-right: 9px;
}

.responsive-tab li a:hover {
  color: #3e416d;
  opacity: .8;
}

.responsive-tab .uk-active,
.responsive-tab .uk-active a {
  color: #3e416d;
  opacity: 1;
}

.uk-light .responsive-tab:before {
  background: transparent;
}

.uk-light .responsive-tab .uk-active a,
.uk-light .responsive-tab li a:hover {
  color: white
}

.uk-light .responsive-tab .uk-active a:before {
  background-color: white
}

@media only screen and (min-width: 1024px) {

  .responsive-tab {
    height: 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: 20px;
    padding: 0;
    line-height: 55px;
  }
}

/* ---------------------------------- */
/* responsive tab style  1
------------------------------------- */
.responsive-tab.style-1:before {
  background: transparent;
}

.responsive-tab.style-1 {
  height: 34px;
}

.responsive-tab.style-1 li a {
  background: #eaeaea;
  border-radius: 97px;
  line-height: 34px;
  color: black;
  font-size: 13px;
  padding: 0px 20px;
  margin-right: 7px;
}

.responsive-tab.style-1 li.uk-active a {
  background-color: #d9e8f5;
  color: #377dff;
}

.responsive-tab.style-1 .uk-active a:before {
  background-color: transparent;
}

@media only screen and (max-width: 1024px) {
  .responsive-tab.style-1 {
    height: 32px;
  }

  .responsive-tab.style-1 li a {
    background: #eaeaea;
    border-radius: 97px;
    line-height: 32px;
    color: black;
    font-size: 12px;
    padding: 0px 14px;
    margin-right: 7px;
  }

}

.sl_srch_drp_mnu{ padding: 0;}
.sl_srch_drp_mnu li { list-style: none;}

.sl_filter_btn {
    position: absolute;
    right: 0;
    padding: 7px 13px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    line-height: 1.3;
}
.sl_filter_btn i{
    margin-right: 4px;
}
.sl_filter_btn:hover{background: #dfe9f1;}

@media only screen and (max-width: 960px) {
.sl_photo_list-content .btn-down{ display:none}
#foot .foot-content { margin-bottom: 30px;}
}
@media only screen and (max-width: 767px) {

.profile { 
  margin: 0 -15px;
  margin-top: -25px;
  border-radius: 0;
}
.responsive-tab .uk-active a:before {
  background:transparent
}
}