/* --------------------------------------------------------
Style Sheet for the Yuletide Village app
version: 1.0
author: Lion + Panda
email: info@lionandpanda.com
----------------------------------------------------------*/
@import url("variables.css");
/*-----------------------------------------------------------------------------------*/
/*	Colors
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*	Font & Text
/*-----------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/scss2?family=Poppins:wght@400;500;700&display=swap");
/*-----------------------------------------------------------------------------------*/
/*	Header
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*	Mobile Menu
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*	Footer
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*	Page Titles
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*	Overlays
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*	Modals
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*	Accessability
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*	Global Variables
/*-----------------------------------------------------------------------------------*/
:root {
  --primary-color: #84b24e;
  --primary-rgb: 132, 179, 77;
  --primary-filter: 181, 34, 44;
  --accent-color: #b7202f;
  /*orange*/
  --accent-rgb: 255, 112, 67;
  /*orange*/
  --danger-color: #EF5350;
  /*red*/
  --success-color: #66BB6A;
  /*green*/
  --info-color: #42A5F5;
  /*blue*/
  --warning-color: #FFB300;
  /*blue*/
  --deep-purple-color: #230738;
  --red-color: #EF5350;
  --orange-color: #FF7043;
  --blue-color: #42A5F5;
  --green-color: #66BB6A;
  --teal-color: #26A69A;
  --amber-color: #FFB300;
  --pink-color: #EC407A;
  --indigo-color: #3F51B5;
  --blue-grey-color: #78909C;
  --brown-color: #8D6E63;
  --cyan-color: #00BCD4;
  --light-green-color: #8BC34A;
  --purple-color: #AB47BC;
  --grey-color: #616161;
  --border-radius: 4px;
  --border-radius-button: 4px;
  --border-radius-50percent: 4px;
  --brand-facebook-color: #3b5998;
  --brand-twitter-color: #1da1f2;
  --brand-dribbble-color: #ea4c89;
  --brand-google-plus-color: #ea4335;
  --brand-linkedin-color: #007bb5;
  --brand-whatsapp-color: #4fce5d;
  --brand-gmail-color: #D44638;
  --brand-pinterest-color: #E60023;
  --brand-instagram-color: #A2292E;
  --brand-microsoft-color: #00A4EF;
  --dark-900: #19161d;
  --dark-800: #101010;
  --dark-700: #323232;
  --dark-600: #3b3b3b;
}

body[data-theme=red] {
  --primary-color: #EF5350;
  /*red*/
  --primary-rgb: 239, 83, 80;
  /*red*/
  --primary-filter: 75,34,34;
  /*red*/
  --accent-color: #3F51B5;
  /*indigo*/
  --accent-rgb: 63, 81, 181;
  /*indigo*/
}

body[data-theme=orange] {
  --primary-color: #FF7043;
  /*orange*/
  --primary-rgb: 255, 112, 67;
  /*orange*/
  --primary-filter: 114,58,41;
  /*orange*/
  --accent-color: #42A5F5;
  /*blue*/
  --accent-rgb: 66, 165, 245;
  /*blue*/
}

body[data-theme=blue] {
  --primary-color: #42A5F5;
  /*blue*/
  --primary-rgb: 66, 165, 245;
  /*blue*/
  --primary-filter: 29,59,84;
  /*blue*/
  --accent-color: #EF5350;
  /*red*/
  --accent-rgb: 239, 83, 80;
  /*red*/
}

body[data-theme=green] {
  --primary-color: #66BB6A;
  /*green*/
  --primary-rgb: 102, 187, 106;
  /*green*/
  --primary-filter: 23,82,26;
  /*green*/
  --accent-color: #EC407A;
  /*pink*/
  --accent-rgb: 236, 64, 122;
  /*pink*/
}

body[data-theme=teal] {
  --primary-color: #26A69A;
  /*teal*/
  --primary-rgb: 38, 166, 154;
  /*teal*/
  --primary-filter: 23,75,70;
  /*teal*/
  --accent-color: #EC407A;
  /*pink*/
  --accent-rgb: 236, 64, 122;
  /*pink*/
}

body[data-theme=amber] {
  --primary-color: #FFB300;
  /*amber*/
  --primary-rgb: 255, 179, 0;
  /*amber*/
  --primary-filter: 85,69,22;
  /*amber*/
  --accent-color: #7E57C2;
  /*primary*/
  --accent-rgb: 126, 87, 194;
  /*primary*/
}

body[data-theme=pink] {
  --primary-color: #EC407A;
  /*pink*/
  --primary-rgb: 236, 64, 122;
  /*pink*/
  --primary-filter: 97,30,53;
  /*pink*/
  --accent-color: #26A69A;
  /*teal*/
  --accent-rgb: 38, 166, 154;
  /*teal*/
}

body[data-theme=indigo] {
  --primary-color: #3F51B5;
  /*indigo*/
  --primary-rgb: 63, 81, 181;
  /*indigo*/
  --primary-filter: 32,42,91;
  /*indigo*/
  --accent-color: #FF7043;
  /*orange*/
  --accent-rgb: 255, 112, 67;
  /*orange*/
}

body[data-theme=blue-grey] {
  --primary-color: #78909C;
  /*blue-grey*/
  --primary-rgb: 120, 144, 156;
  /*blue-grey*/
  --primary-filter: 41,59,68;
  /*blue-grey*/
  --accent-color: #00BCD4;
  /*cyan*/
  --accent-rgb: 0, 188, 212;
  /*cyan*/
}

body[data-theme=brown] {
  --primary-color: #8D6E63;
  /*brown*/
  --primary-rgb: 141, 110, 99;
  /*brown*/
  --primary-filter: 62,40,32;
  /*brown*/
  --accent-color: #FFB300;
  /*amber*/
  --accent-rgb: 255, 179, 0;
  /*amber*/
}

body[data-theme=cyan] {
  --primary-color: #00BCD4;
  /*cyan*/
  --primary-rgb: 0, 188, 212;
  /*cyan*/
  --primary-filter: 29,79,85;
  /*cyan*/
  --accent-color: #FF7043;
  /*orange*/
  --accent-rgb: 255, 112, 67;
  /*orange*/
}

body[data-theme=light-green] {
  --primary-color: #8BC34A;
  /*light-green*/
  --primary-rgb: 139, 195, 74;
  /*light-green*/
  --primary-filter: 67,98,31;
  /*light-green*/
  --accent-color: #EF5350;
  /*red*/
  --accent-rgb: 239, 83, 80;
  /*red*/
}

body[data-theme=deep-purple] {
  --primary-color: #7E57C2;
  /*deep-purple*/
  --primary-rgb: 126, 87, 94;
  /*deep-purple*/
  --primary-filter: 24,13,42;
  /*deep-purple*/
  --accent-color: #00BCD4;
  /*cyan*/
  --accent-rgb: 0, 188, 212;
  /*cyan*/
}

body[data-theme=purple] {
  --primary-color: #AB47BC;
  /*purple*/
  --primary-rgb: 171, 71, 188;
  /*purple*/
  --primary-filter: 90,41,99;
  /*purple*/
  --accent-color: #66BB6A;
  /*green*/
  --accent-rgb: 102, 187, 106;
  /*green*/
}

body[data-theme=grey] {
  --primary-color: #616161;
  /*grey*/
  --primary-rgb: 97, 97, 97;
  /*grey*/
  --primary-filter: 33,33,33;
  /*grey*/
  --accent-color: #26A69A;
  /*teal*/
  --accent-rgb: 38, 166, 154;
  /*teal*/
}

/*-----------------------------------------------------------------------------------*/
/*	Mixins
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*	Helpers
/*-----------------------------------------------------------------------------------*/
.is-position-relative {
  position: relative;
}
.is-position-absolute {
  position: absolute;
}
.is-position-fixed {
  position: fixed;
}
.is-position-inherit {
  position: inherit;
}

.is-overflow-hidden {
  overflow: hidden;
}
.is-overflow-x-hidden {
  overflow-x: hidden;
}
.is-overflow-y-hidden {
  overflow-y: hidden;
}

.has-opacity-1 {
  opacity: 1;
}
.has-opacity-0 {
  opacity: 0;
}

.is-no-br {
  white-space: nowrap;
}

.is-clearfix {
  overflow: auto;
}
.is-clearfix:after {
  content: "";
  clear: both;
  display: table;
}

.is-padding-flat {
  padding: 0px;
}
.is-padding-small {
  padding: 50px 0px;
}
@media only screen and (max-width: 768px) {
  .is-padding-small {
    padding: 25px 0px;
  }
}
.is-padding-medium {
  padding: 150px 0px;
}
@media only screen and (max-width: 768px) {
  .is-padding-medium {
    padding: 50px 0px;
  }
}
.is-padding-large {
  padding: 200px 0px;
}
@media only screen and (max-width: 768px) {
  .is-padding-large {
    padding: 75px 0px;
  }
}

.is-margin-flat {
  margin: 0px auto !important;
}
.is-margin-small {
  margin: 25px auto !important;
}
.is-margin-medium {
  margin: 60px auto !important;
}
.is-margin-large {
  margin: 100px auto !important;
}

.is-reverse-row {
  display: flex;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .is-reverse-row {
    display: block;
  }
}

.is-inverted h1,
.is-inverted h2,
.is-inverted h3,
.is-inverted h4,
.is-inverted h5,
.is-inverted h6,
.is-inverted p,
.is-inverted figcaption,
.is-inverted a,
.is-inverted ul,
.is-inverted li,
.is-inverted i,
.is-inverted svg,
.is-inverted .slick-prev:before,
.is-inverted .slick-next:before {
  color: white !important;
}
.is-inverted a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.is-inverted .slick-prev,
.is-inverted .slick-next {
  background: #212121;
}
.is-inverted .slick-prev:hover,
.is-inverted .slick-prev:focus,
.is-inverted .slick-next:hover,
.is-inverted .slick-next:focus {
  background: rgba(33, 33, 33, 0.8);
}

.has-dropshadow {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.has-bg-parallax {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

.has-bg-position-cc {
  background-position: center center !important;
}
.has-bg-position-ct {
  background-position: center top !important;
}
.has-bg-position-cb {
  background-position: center bottom !important;
}
.has-bg-position-lt {
  background-position: left top !important;
}
.has-bg-position-lc {
  background-position: left center !important;
}
.has-bg-position-lb {
  background-position: left bottom !important;
}
.has-bg-position-rt {
  background-position: right top !important;
}
.has-bg-position-rc {
  background-position: right center !important;
}
.has-bg-position-rb {
  background-position: right bottom !important;
}

.is-zindex-1 {
  z-index: 1;
}
.is-zindex-2 {
  z-index: 2;
}
.is-zindex-3 {
  z-index: 3;
}
.is-zindex-4 {
  z-index: 4;
}
.is-zindex-5 {
  z-index: 5;
}

.has-ar-16-9 {
  aspect-ratio: 16/9;
}
.has-ar-16-9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.has-ar-1-1 {
  aspect-ratio: 1/1;
}
.has-ar-5-3 {
  aspect-ratio: 5/3;
}

.has-rounded-corners {
  border-radius: 6px;
}

.has-round-image {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.has-width-100 {
  width: 100%;
}
.has-width-auto {
  width: auto;
}

.has-height-100 {
  height: 100%;
}
.has-height-auto {
  width: auto;
}

.has-object-fit-cover {
  object-fit: cover;
}
.has-object-fit-contain {
  object-fit: contain;
}

.is-vcentered {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/*----------------------------------------
  General Layout
------------------------------------------*/
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

body {
  background: #f5f5f5;
  color: var(--dark-700);
}

body,
body *,
p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}

body.ajax nav.navigation,
body.ajaxurl nav.navigation {
  position: relative;
  z-index: 999;
}

body.ajaxloading #response_wrapper,
body.ajaxloading .sidenav,
body.ajaxloading .sidesettings {
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  ::-webkit-scrollbar {
    display: none;
  }
}
/* .container.full {
	margin: 0px;
	width: 100%;
}
.container.full .sec-tit {
	margin-left: 24px;
} */
.container.over {
  background-color: #ffffff;
  z-index: 1;
  position: relative;
  border-radius: var(--border-radius);
  padding: 0 24px;
  margin-bottom: 30px;
}

.container.over.primary-bg {
  background-color: var(--primary-color);
}

.container.over.p0 {
  padding: 0;
}

.container.relative {
  position: relative;
}

.container.over.mb0 {
  margin-bottom: 0;
}

.container.overhide {
  overflow: hidden;
}

.sidenav .waves-ripple {
  background: transparent !important;
}

img {
  max-width: 100%;
}

/*----------------------------------------
  Typography
------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  text-transform: none;
}

h1 {
  font-size: 32px;
  line-height: 62px;
  margin: 2rem 0 1rem 0;
}

h2 {
  font-size: 28px;
  line-height: 1.25em;
  margin: 1.6rem 0 1rem 0;
}

h3 {
  font-size: 22px;
  line-height: 45px;
  margin: 1.6rem 0 0.8rem 0;
}

h4 {
  font-size: 24px;
  line-height: 39px;
  margin: 1.5rem 0 0.5rem 0;
}

h5 {
  font-size: 21px;
  line-height: 34px;
  margin: 1.2rem 0 0.5rem 0;
}

h6 {
  font-size: 19px;
  line-height: 31px;
  margin: 1rem 0 0.5rem 0;
}

strong {
  font-weight: 700;
}

a {
  color: var(--primary-color);
}

h4.sec-tit {
  line-height: 34px;
}

.sec-tit {
  position: relative;
}

.sec-tit.mt0 {
  margin-top: 0;
}

.sec-tit:after {
  display: block;
  position: relative;
  content: " ";
  height: 1px;
  width: 60px;
  margin: 10px 0 0px 0;
  background: var(--primary-color);
}

.sec-tit:before {
  display: none;
  position: absolute;
  content: " ";
  height: 1px;
  width: 20px;
  margin: 7px 0 0px 0;
  background: var(--primary-color);
  top: 34px;
}

.sec-tit.center:after {
  margin: 10px auto 0px auto;
}

.sec-tit.center:before {
  left: 50%;
  margin-left: -10px !important;
}

.white-text .sec-tit:after,
.white-text .sec-tit:before,
.sec-tit.white-text:after,
.sec-tit.white-text:before {
  background: #ffffff;
  opacity: 0.8;
}

.secondary-content {
  color: #607d8b;
}

.dark-text {
  color: var(--dark-700);
}

.light {
  font-weight: 400;
}

label {
  color: var(--dark-600);
}

.transparent {
  background-color: transparent;
}

.section.pt0 {
  padding-top: 0;
}

.section.pb0 {
  padding-bottom: 0;
}

.mt0 {
  margin-top: 0;
}

.mb0 {
  margin-bottom: 0;
}

/*----------------------------------------
  Page Title
------------------------------------------*/
.pagetitle {
  text-transform: none;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  position: relative;
  margin-top: 50px;
}

.pagetitle::after {
  display: block;
  position: relative;
  content: " ";
  height: 1px;
  width: 60px;
  margin: 10px 0 0px 0;
  background: var(--primary-color);
}

.pagetitle::before {
  display: none;
  position: absolute;
  content: " ";
  height: 1px;
  width: 20px;
  margin: 7px 0 0px 0;
  background: var(--primary-color);
  top: 36px;
}

.small {
  font-size: 14px;
  opacity: 0.8;
}

.text-upper {
  text-transform: uppercase;
}

.preloader-background {
  background-color: #f5f5f5;
}

/*----------------------------------------
  Helper Classes
------------------------------------------*/
.top-0 {
  margin-top: 0px;
}

.bot-0 {
  margin-bottom: 0px;
}

.bot-20 {
  margin-bottom: 20px;
}

.pad-top-15 {
  padding-top: 15px;
}

.pad-15 {
  padding: 0 15px;
}

.pad-30 {
  padding: 0 30px;
}

.spacer {
  margin-bottom: 20px;
  display: block;
  width: 100%;
  height: 1px;
}

.spacer-line {
  margin-bottom: 1px;
  display: block;
  width: 100%;
  height: 1px;
}

.spacer-small {
  margin-bottom: 3px;
  display: block;
  width: 100%;
  height: 1px;
}

.spacer-medium {
  margin-bottom: 30px;
  display: block;
  width: 100%;
  height: 1px;
}

.spacer-large {
  margin-bottom: 50px;
  display: block;
  width: 100%;
  height: 1px;
}

.spacer-xlarge {
  margin-bottom: 100px;
  display: block;
  width: 100%;
  height: 1px;
}

.col.pad-0,
.pad-0 {
  padding: 0px;
}

.divider {
  background-color: #e0e0e0;
}

.inblock {
  display: inline-block;
}

body .white-bg {
  background-color: #ffffff;
}

body .primary-bg {
  background-color: var(--primary-color);
}

body .primary-bg-light {
  background-color: rgba(var(--primary-rgb), 0.1);
}

body .primary-text {
  color: var(--primary-color);
}

body .accent-bg {
  background-color: var(--accent-color);
}

body .accent-bg-light {
  background-color: rgba(var(--accent-rgb), 0.1);
}

body .accent-text {
  color: var(--accent-color);
}

body .circle {
  border-radius: var(--border-radius-50percent);
}

.b0 {
  border: none !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

/*----------------------------------------
  Highlight
------------------------------------------*/
.highlight {
  padding: 2px 5px;
}

/*----------------------------------------
  Breadcrumbs
------------------------------------------*/
.breadcrumb:before {
  content: "\f142";
  font: normal normal normal 24px/1 "Material Design Icons";
}

.breadcrumb.black-text:before {
  color: rgba(50, 50, 50, 0.7);
}

/*----------------------------------------
  Hide elements on installed
------------------------------------------*/
@media all and (display-mode: standalone) {
  #installboxes {
    display: none;
  }
}
.CTA-card {
  background-image: url(/assets/images/background-gradient.jpg);
  background-size: cover;
  position: relative;
}

/* .CTA-card:after {
content:'';
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: var(--dark-900);
opacity: .3;
position: absolute;
mix-blend-mode: overlay;
 }*/
.is-inline-block {
  display: inline-block;
}

.messagebar {
  background-color: #e7e7e7;
  margin-bottom: 5px;
}
.messagebar p, .messagebar a {
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  color: #212121;
  margin: 0px;
}

.parkstatus {
  text-transform: uppercase;
  display: inline-block;
  margin-right: 20px !important;
}
.parkstatus i {
  font-size: 0.6rem;
}
.parkstatus.open i {
  color: green;
}
.parkstatus.closed i {
  color: red;
}

[data-site_mode=dark] .messagebar {
  background-color: var(--dark-600);
}
[data-site_mode=dark] .messagebar p, [data-site_mode=dark] .messagebar a {
  color: white !important;
}

.fc-toolbar-title {
  display: none !important;
}

.fc-list-day-cushion {
  display: none;
}

/*----------------------------------------
  Preloader
------------------------------------------*/
/*----------------------------------------
  type 2
------------------------------------------*/
@keyframes configure-clockwise {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes configure-xclockwise {
  0% {
    transform: rotate(45deg);
  }
  25% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(-135deg);
  }
  75% {
    transform: rotate(-225deg);
  }
  100% {
    transform: rotate(-315deg);
  }
}
.preloader-wrapper {
  width: 100px;
  height: 100px;
}

.preloader-wrapper .configure-border-1 {
  width: 100px;
  height: 100px;
  position: absolute;
  animation: configure-clockwise 3s ease-in-out 0s infinite alternate;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.preloader-wrapper .configure-border-1 i {
  font-size: 4rem;
}

.preloader-wrapper .configure-border-2 {
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent-color);
  transform: rotate(45deg);
  animation: configure-xclockwise 3s ease-in-out 0s infinite alternate;
  border-radius: var(--border-radius);
}

/*----------------------------------------
  UI - buttons
------------------------------------------*/
.ui-buttons .btn, .ui-buttons .btn-large, .ui-buttons .btn-small {
  margin: 10px 10px 0 0;
}

.ui-buttons .btn-floating {
  margin: 10px 30px 0 0;
}

/*----------------------------------------
  UI - badges & Waves
------------------------------------------*/
.ui-badges .badge {
  margin: 10px 10px 0 0;
  float: left;
}

.ui-wavesgrid img {
  vertical-align: top;
}

.ui-wavesgrid .col {
  margin-bottom: 15px;
}

/*----------------------------------------
  UI - Colors
------------------------------------------*/
.ui-colors {
  padding: 0 0.75rem;
}

.ui-colors .col {
  margin: 0px 0 0px 0;
  /* border-bottom: 1px solid #e0e0e0; */
  padding: 0 0 20px 0;
}

.ui-colors .col .col {
  border: none;
  border-radius: var(--border-radius);
  /* margin: 5px; */
  min-height: 60px;
  /* min-width: 10px; */
  padding: 0;
  margin-left: -1px;
  width: 7.2%;
}

.ui-colors .col div {
  margin: 1px 0px 0 0;
}

/*----------------------------------------
  UI - Toasts
------------------------------------------*/
.ui-toasts .btn {
  margin: 10px 10px 0 0;
}

.toast.rounded {
  width: 96%;
  margin: 2% 2% 15px 2%;
}

/*----------------------------------------
  UI - Modal
------------------------------------------*/
.ui-modal .btn {
  margin: 10px 10px 0 0;
}

/*----------------------------------------
  UI - Grid
------------------------------------------*/
/* .ui-grid{
  border-right: 1px;
} */
.ui-grid .col {
  border-right: 3px solid rgba(255, 255, 255, 0.9);
  padding: 0;
  text-align: center;
  margin-bottom: 5px;
  background: rgba(var(--primary-rgb), 0.2);
  color: var(--primary-color);
  box-shadow: none;
  border-radius: var(--border-radius);
  min-height: 40px;
}

.ui-grid .col .col-in {
  font-size: 14px;
  line-height: 26px;
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 5px;
  min-height: 40px;
}

/* .ui-grid .col:nth-child(odd){
    background: var(--primary-color);
} */
.ui-grid .col .col-in {
  display: block;
  /* padding: 7px 0; */
}

.ui-grid.ui-grid-large .col {
  min-height: 100px;
  height: 100px;
  position: relative;
}

.ui-grid-large .col .col-in {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  font-size: 120%;
  left: 0;
}

.ui-grid-large .col .col-in p, .ui-grid-large .col .col-in div {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  width: 100%;
}

/*----------------------------------------
  UI - Icons
------------------------------------------*/
.ui-icons.sizes i {
  line-height: 50px;
}

.ui-icons .iprev {
  height: 60px;
  text-align: left;
  margin-bottom: 1.5rem;
  position: relative;
}

.ui-icons .iprev div {
  transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.14), 0 3px 11px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.14), 0 3px 11px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  height: 100%;
  padding: 0px;
  border-radius: var(--border-radius);
}

.ui-icons .iprev i {
  font-size: 36px;
  margin-bottom: 15px;
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: var(--border-radius-50percent);
  float: left;
}

.ui-icons .iprev span {
  display: block;
  font-size: 14px;
  line-height: 23px;
  word-wrap: break-word;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  margin-left: 73px;
  /* float: left; */
  /* white-space: nowrap; */
  /* margin: 15px; */
}

.ui-icons .iprev code:before {
  content: "(";
}

.ui-icons .iprev code:after {
  content: ")";
}

.ui-icons .iprev code {
  display: none;
  font-size: 12px;
  line-height: 13px;
  word-wrap: break-word;
  float: right;
  white-space: nowrap;
  margin: 15px;
  opacity: 0.7;
  text-transform: uppercase;
  position: absolute;
  right: 1px;
  top: -7px;
}

/*----------------------------------------
  Form Select
------------------------------------------*/
.ui-select .input-field {
  margin-bottom: 30px;
}

nav.ui-forms label {
  top: -11px;
  left: 11px;
}

nav.ui-forms label.active {
  top: 20px;
}

nav.ui-forms label i {
  margin-left: 0px;
}

/*----------------------------------------
  Dropdowns
------------------------------------------*/
.ui-dropdowns .btn, .ui-dropdowns .btn-large {
  margin: 15px 15px 0 0;
}

.dropdown-trigger.btn-large {
  line-height: 36px;
}

.dropdown-trigger.btn {
  line-height: 30px;
}

/*----------------------------------------
  Mediabox
------------------------------------------*/
.ui-mediabox .col {
  margin-bottom: 24px;
}

/*----------------------------------------
  Feature Discovery
------------------------------------------*/
.tap-target {
  background-color: var(--primary-color);
}

.tap-wrap {
  margin-left: 25px;
}

/*----------------------------------------
  Faq
------------------------------------------*/
.ui-faq .collapsible-header {
  line-height: 25px;
}

/*----------------------------------------
About Sections
------------------------------------------*/
.home-mode {
  padding-bottom: 30px;
}

/*----------------------------------------
  Site - Dark Mode - UI Icons
----------------------------------------*/
[data-site_mode=dark] .ui-icons .iprev div {
  background-color: var(--dark-700);
}

[data-site_mode=dark] .ui-grid .col {
  border-right: 2px solid var(--dark-800);
  color: #eee;
}

/*----------------------------------------
  Carousel
------------------------------------------*/
.carousel.carousel-fullscreen {
  position: relative;
  top: 0px;
  z-index: 997;
}

.fullfixed .carousel.carousel-fullscreen {
  position: fixed;
}

.carousel.carousel-fullscreen .carousel-item .bg {
  height: 100%;
  width: 100%;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}

.carousel.carousel-fullscreen .carousel-item .item-content {
  position: relative;
  z-index: 2;
  padding: 15%;
  transition: 800ms;
  transform: translateX(-100px);
  opacity: 0;
}

.carousel.carousel-fullscreen .carousel-item.active .item-content {
  transform: translateX(0px) translateY(0px);
  opacity: 1;
}

.carousel.carousel-fullscreen .indicators {
  position: absolute;
  bottom: 60px;
}

[data-footer_menu=hide] .carousel.carousel-fullscreen .indicators {
  bottom: 40px;
}

.carousel .indicators .indicator-item {
  height: 2px;
  width: 36px;
  margin: 4px;
  border: 1px solid rgba(230, 230, 230, 0.8);
  background-color: transparent;
  box-shadow: 2px 2px 2px rgba(33, 33, 33, 0.1);
  border-radius: 2px;
  opacity: 0.5;
}

.carousel .indicators .indicator-item.active {
  background-color: rgba(230, 230, 230, 0.8);
  border: none;
  opacity: 1;
}

.carousel.carousel-slider .carousel-item p {
  font-size: 16px;
  line-height: 26px;
}

.carousel .item-content {
  z-index: 2;
  position: relative;
}

/*----------------------------------------
  Carousel - Basics
------------------------------------------*/
.carousel-basic {
  height: 250px;
}

.carousel-basic .carousel-item {
  height: 100%;
  overflow: hidden;
}

.carousel-basic .indicators {
  bottom: 15px;
}

.carousel .indicators {
  bottom: 15px;
}

.carousel-full {
  height: 230px;
}

.container .carousel .indicators {
  bottom: 45px;
}

.carousel.carousel-h100 .carousel-item > img {
  width: auto;
  height: 100%;
}

.carousel.carousel-h100 .carousel-item {
  height: 100%;
  overflow: hidden;
}

.carousel.carousel-fullscreen.carousel-dashboard-home,
.carousel.carousel-fullscreen.carousel-dashboard-aboutus {
  background-color: rgba(0, 0, 0, 0.7);
}

/*----------------------------------------
  Flickity Carousel
------------------------------------------*/
/* .gallery-cell { */
/* width: 36%; */
/* height: 200px; */
/* margin-right: 10px; */
/* background: #8C8; */
/* counter-increment: gallery-cell; */
/* } */
/* cell number */
/* .gallery-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
} */
.flickity-slider {
  top: -10px;
}

.flickity-slider .gallery-cell {
  margin-top: 15px;
  margin-bottom: 20px;
}

.row.ui-mediabox.prods.gallery,
.row.ui-mediabox.blogs.gallery {
  margin-bottom: 50px;
}

.row.ui-mediabox.blogs.gallery.js-flickity,
.row.ui-mediabox.prods.gallery.js-flickity {
  margin-bottom: 0;
}

.collection.activity.gallery .collection-item {
  width: 70%;
  margin-right: 15px;
}

.container.full ul.collection.activity.gallery {
  margin-left: -5px;
}

.activity .flickity-slider {
  margin-left: 5px;
  margin-right: 5px;
}

/*-----------------------------------------------------
  Horizontal Carousel of Collection Avatar list
------------------------------------------------------*/
.collection.gallery.horizontal .collection-item.avatar {
  width: 220px;
  padding-top: 15px;
  position: relative;
}

.collection.gallery.horizontal .collection-item.avatar:not(:last-child):after {
  content: "";
  position: absolute;
  height: 50px;
  width: 1px;
  background: #eeeeee;
  top: 30px;
  right: 10px;
}

.collection.gallery.horizontal .collection-item.avatar .chatlink {
  padding-right: 10px;
}

.collection.gallery.vertical .collection-item.avatar {
  width: 150px;
  padding-top: 0px;
  position: relative;
  margin: 0;
}

.collection.gallery.vertical .collection-item.avatar .chatlink {
  /* padding-right: 10px; */
  padding: 5px 5px 15px 5px;
  height: auto;
  max-height: none;
  overflow: visible;
  text-align: center;
}

.collection.gallery.vertical .collection-item.avatar :not(.circle-clipper) > .circle,
.collection.gallery.vertical .collection-item.avatar a img {
  height: 80px;
  width: 80px;
  position: relative;
  left: auto;
  margin: 15px 0;
}

.collection.gallery.vertical .collection-item.avatar .status:after {
  top: 25px;
  left: 108px;
}

.collection.gallery.vertical .collection-item.avatar:not(:last-child):after {
  content: "";
  position: absolute;
  height: 130px;
  width: 1px;
  background: #eeeeee;
  top: 20px;
  right: 0px;
}

.container-carousel {
  overflow: hidden;
}

/* .container-carousel .carousel.carousel-slider .carousel-item{
  min-height: 350px;
} */
.carousel-dashboard-aboutus,
.carousel-dashboard-home {
  height: 400px !important;
}

.carousel-events-home {
  height: 400px !important;
}

.carousel-products-home {
  height: 400px !important;
}

.friends-carousel.home-carousel {
  margin-top: -60px;
}

[data-site_mode=dark] .collection.gallery.vertical .collection-item.avatar:not(:last-child):after {
  background: rgba(0, 0, 0, 0.2);
  border: none;
}

/*----------------------------------------
  Carousel Home Screen
------------------------------------------*/
.fullfixed {
  position: relative;
  z-index: 1;
}

.welcome-logo.index-welcome {
  position: absolute;
  z-index: 2;
  margin-top: 0;
  /* transform: translateX(50%) translateY(50%); */
  /* height: 70vh; */
  margin-top: 100px;
  width: 100%;
}

.index-start {
  text-align: center;
  width: 100%;
  display: inline-block;
  position: absolute;
  z-index: 2;
  bottom: 0px;
  padding-bottom: 50px;
}

.index-start .btn-large {
  width: 80%;
  margin: 0 10%;
  z-index: 2;
  position: relative;
}

.fullfixed.index-carousel .carousel.carousel-fullscreen .indicators {
  bottom: 10px;
}

.index-carousel .carousel.carousel-fullscreen .carousel-item .item-content {
  /* transform: translateX(0px) translateY(0%); */
  opacity: 1;
  /* top: 360px; */
  bottom: 110px;
  /* left: 0; */
  position: absolute;
  width: 100%;
  padding: 0 20px;
}

.wave-bg {
  position: absolute;
  bottom: 0px;
  opacity: 0.7;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  height: 300px;
}

.wave-bg svg {
  width: 100%;
  vertical-align: top;
}

.wave-bg path {
  fill: var(--primary-color);
}

.wave-bg div {
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  vertical-align: top;
}

/*----------------------------------------
  Slider
------------------------------------------*/
.slider .indicators {
  bottom: 50px;
  z-index: 2;
}

.slider .indicators .indicator-item {
  /* border: none;
  height: 4px;
  width: 20px;
  margin: 6px;
  border: 1px solid rgba(230,230,230,0.8);
  background-color: transparent;
  box-shadow: 2px 2px 2px rgba(33,33,33,.1);
  border-radius: 2px; */
  height: 2px;
  width: 36px;
  margin: 4px;
  border: 1px solid rgba(230, 230, 230, 0.8);
  background-color: transparent;
  box-shadow: 2px 2px 2px rgba(33, 33, 33, 0.1);
  border-radius: 2px;
  opacity: 0.5;
}

.slider .indicators .indicator-item.active {
  background-color: rgba(230, 230, 230, 0.8);
  border: none;
  opacity: 1;
  /* background-color: rgba(230,230,230,0.8);
  border: none; */
}

.slider .slides li img {
  position: absolute;
}

.slides .img-wrap {
  height: 100%;
}

body .noUi-horizontal .noUi-handle, body .noUi-vertical .noUi-handle {
  width: 23px;
  height: 23px;
  left: -10px;
  top: -10px;
}

body .noUi-handle-touch-area {
  position: relative;
  width: 55px;
  height: 55px;
  left: -17px;
  top: -16px;
}

body .noUi-target.noUi-horizontal .noUi-tooltip {
  height: 30px;
  width: 30px;
  top: -13px;
  left: 0px;
}

body .noUi-target.noUi-vertical .noUi-tooltip {
  height: 30px;
  width: 30px;
  top: -13px;
  left: -2px;
}

.slider.dark-text .slides li .caption p {
  color: var(--dark-700);
}

.slider.fullscreen ul.indicators {
  bottom: 70px;
}

.slider .slides li .caption {
  top: 28%;
}

/*----------------------------------------
 Floating action buttons
------------------------------------------*/
.fixed-action-btn.horleft {
  bottom: auto;
  right: 50px;
  left: auto;
  top: 350px;
  width: auto;
}

.fixed-action-btn.horright {
  bottom: auto;
  right: auto;
  left: 50px;
  top: 430px;
  width: auto;
}

.fixed-action-btn.verbottom {
  bottom: auto;
  right: auto;
  left: 46%;
  top: 250px;
  width: auto;
}

.fixed-action-btn.vertop {
  bottom: auto;
  right: auto;
  left: 46%;
  top: 550px;
  width: auto;
}

.fixed-action-btn.toolbar {
  bottom: 10px;
  right: auto;
  left: 46%;
  top: auto;
}

.floatingpanel {
  min-height: 100vh;
}

.fixed-action-btn {
  bottom: 75px;
  right: 40px;
}

[data-footer_menu=hide] .fixed-action-btn {
  bottom: 25px;
  right: 40px;
}

/*----------------------------------------
  Tooltip
------------------------------------------*/
.tooltip-content {
  text-align: left;
}

.tooltip-content .tooltip-title {
  font-size: 15px;
  margin-top: 0px;
}

.tooltip-content p {
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 0px;
}

.material-tooltip {
  border-radius: var(--border-radius);
  padding: 5px 20px;
}

.material-tooltip .tooltip-content h6 {
  padding: 10px 0px 0 0;
}

.material-tooltip .tooltip-content p {
  padding: 0px 0px 10px 0;
}

/*----------------------------------------
  Buttons
------------------------------------------*/
.btn-rounded {
  border-radius: 36px;
}

.btn,
.btn-large,
.btn-small,
.btn-floating {
  background-color: var(--primary-color);
}

.btn:hover,
.btn-large:hover,
.btn-small:hover,
.btn-floating:hover,
.btn:focus,
.btn-large:focus,
.btn-small:focus,
.btn-floating:focus {
  background-color: var(--primary-color);
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}

.btn-large {
  height: 38px;
  line-height: 38px;
  font-size: 14px;
  padding: 0 24px;
  border-radius: var(--border-radius-button);
  margin-bottom: 10px;
  margin: 16px 10px 10px 0px;
}

.btn-large i {
  font-size: 1.2rem;
  position: relative;
  top: 2px;
}

.btn-large i.left {
  margin-right: 7px;
  margin-left: 0px;
}

.btn {
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  padding: 0px 18px;
  border-radius: var(--border-radius-button);
}

.btn i {
  font-size: 1.2rem;
  position: relative;
  top: 1px;
}

.btn i.left {
  margin-right: 10px;
}

.btn i.right {
  margin-left: 10px;
}

.btn-large i.right {
  margin-right: 0px;
  margin-left: 7px;
}

.btn-small {
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  padding: 0px 15px;
  border-radius: var(--border-radius-button);
}

.btn-small i {
  font-size: 0.7rem;
}

.btn-small i.left {
  margin-right: 7px;
  margin-left: 0px;
}

.btn-small i.right {
  margin-right: 0px;
  margin-left: 7px;
}

.btn-floating i {
  width: auto;
}

.btn-floating.btn-small {
  padding: 0px;
}

.btn-floating.btn-small i {
  font-size: 18px;
}

.btn-floating.btn-large i {
  font-size: 26px;
}

.btn-floating.pulse {
  text-align: center;
}

.btn-floating {
  height: 40px;
  padding: 0px;
  text-align: center;
  width: 40px;
}

.btn-flat.disabled {
  margin: 10px 10px 0 0;
}

.btn-small.disabled,
.btn-large.disabled,
.btn.disabled,
.btn-floating.disabled {
  background-color: #dddddd !important;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.07), 0 3px 1px -2px rgba(0, 0, 0, 0.06), 0 1px 5px 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.07), 0 3px 1px -2px rgba(0, 0, 0, 0.06), 0 1px 5px 0 rgba(0, 0, 0, 0.03);
}

.btn-small.disabled i,
.btn-large.disabled i,
.btn.disabled i,
.btn-floating.disabled i {
  color: #aaaaaa !important;
}

.btn,
.btn-large,
.btn-small,
.btn-flat {
  text-transform: capitalize;
}

.btn.m0,
.btn-large.m0,
.btn-small.m0,
.btn-flat.m0 {
  margin: 0;
}

.addbutton {
  display: inline-block;
  position: fixed;
  right: 20px;
  bottom: 85px;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-name: fadeIn;
  animation-duration: 1s;
  z-index: 998;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.addbutton .btn-floating {
  width: 50px;
  height: 50px;
  padding: 0px;
  text-align: center;
}

.addbutton .btn-floating i {
  width: inherit;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  line-height: 50px;
  width: auto;
}

[data-footer_menu=hide] .addbutton {
  bottom: 20px;
  right: 20px;
}

.btn-floating.halfway-fab i,
.btn-floating.halfway-fab {
  width: 40px;
}

/*----------------------------------------
  Site - Dark Mode - UI
----------------------------------------*/
[data-site_mode=dark] .btn-small.disabled,
[data-site_mode=dark] .btn-large.disabled,
[data-site_mode=dark] .btn.disabled,
[data-site_mode=dark] .btn-floating.disabled,
[data-site_mode=dark] .btn-small.disabled i,
[data-site_mode=dark] .btn-large.disabled i,
[data-site_mode=dark] .btn.disabled i,
[data-site_mode=dark] .btn-floating.disabled i {
  background-color: var(--dark-700) !important;
  color: #90a4ae !important;
}

[data-site_mode=dark] .btn-flat {
  color: #cfd8dc;
}

[data-site_mode=dark] .ui-colors .col {
  border-bottom: 1px solid var(--dark-800);
}

[data-site_mode=dark] .ui-colors .col div {
  border-right: 1px solid var(--dark-800) !important;
}

.btn.is-outlined {
  background-color: transparent !important;
  color: #212121;
  box-shadow: none;
  border: solid 1px #212121;
}

/*----------------------------------------
  Badges
------------------------------------------*/
/* .badge-rounded {
  border-radius: 22px !important;
} */
span.badge.new {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-button);
  padding-left: 10px;
  padding-right: 10px;
  width: auto;
  min-width: auto;
  line-height: 22px;
}

span.badge.new:after {
  content: "";
}

.collapsible span.badge {
  margin-left: auto;
  margin-right: 25px;
  margin-top: 7px;
}

/*----------------------------------------
  Site - Dark Mode - Badge
----------------------------------------*/
[data-site_mode=dark] .dropdown-content .badge,
[data-site_mode=dark] .collapsible-header .badge,
[data-site_mode=dark] .collection span.badge {
  color: #f5f5f5;
}

/*----------------------------------------
  Spineers / preloaders
------------------------------------------*/
.spinner-layer.thin .circle-clipper .circle {
  border-width: 1px;
}

.spinner-layer.thick .circle-clipper .circle {
  border-width: 6px;
}

.preloaders .card-panel {
  margin: 0 15px;
}

.center .preloader-wrapper {
  margin: auto;
}

.spinner-green, .spinner-green-only {
  border-color: #81C784;
}

.spinner-blue, .spinner-blue-only {
  border-color: #64B5F6;
}

.spinner-red, .spinner-red-only {
  border-color: #E57373;
}

.spinner-yellow, .spinner-yellow-only {
  border-color: #ffc107;
}

/*----------------------------------------
 Accordion
------------------------------------------*/
.collapsible.transparent {
  border: none;
  /* border-top: 1px solid #ddd; */
  /* border: 1px solid rgba(50, 50, 50, .07); */
}

.collapsible {
  border: none;
}

.collapsible.transparent .collapsible-header {
  background-color: transparent;
}

.collapsible.colored {
  border: none;
}

.collapsible.colored li:last-child .collapsible-header {
  border-bottom: none;
}

.collapsible .collapsible-header.primary-bg, .collapsible .collapsible-header.primary-bg:focus {
  background-color: var(--primary-color);
}

.collapsible .collapsible-header.accent-bg, .collapsible .collapsible-header.accent-bg:focus {
  background-color: var(--accent-color);
}

.collapsible-header {
  position: relative;
  font-size: 0.9rem !important;
}

.collapsible-header:after {
  content: "\f140";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 15px;
  font-size: 17px;
  opacity: 0.7;
}

.active .collapsible-header:after {
  content: "\f143";
}

.collapsible,
.collapsible li,
.collapsible-body,
.collapsible-header {
  border-radius: var(--border-radius);
}

.collapsible-header i {
  width: 36px;
  font-size: 16px;
  display: inline-block;
  background: var(--primary-color);
  border-radius: var(--border-radius-50percent);
  height: 36px;
  line-height: 36px;
  color: #ffffff;
}

.collapsible-header {
  line-height: 36px;
  font-size: 17px;
  padding: 12px 15px;
  border: none;
}

.collapsible-header,
.collapsible li {
  /* box-shadow: 0px -1px 5px rgba(0, 0, 0, .1); */
}

.collapsible-body {
  margin-top: -8px;
}

.collapsible-body,
.collapsible-header {
  margin-bottom: 8px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
}

.collapsible.transparent .collapsible-header,
.collapsible.transparent li {
  /* box-shadow: 0px -1px 3px rgba(0, 0, 0, .1); */
}

.collapsible.transparent .collapsible-header {
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* border-bottom: 1px solid rgba(0, 0, 0, .1); */
  /* border-bottom: 1px solid  rgba(0, 0, 0, 0.1); */
}

/* .collapsible, */
.collapsible-body {
  border: none;
  background: #ffffff;
}

.collapsible.transparent .collapsible-header, .collapsible.transparent .collapsible-body,
body .collapsible, body .collapsible.colored {
  box-shadow: none;
  /* border: none; */
  background: transparent;
}

.collapsible.colored .collapsible-header i {
  background: rgba(0, 0, 0, 0.2);
}

.collapsible .img {
  border-radius: var(--border-radius);
  margin-bottom: 15px;
}

body .primary-bg-light.collapsible-body,
body .accent-bg-light.collapsible-body {
  position: relative;
}

body .primary-bg-light.collapsible-body::after,
body .accent-bg-light.collapsible-body::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  top: 0;
  left: 0;
  z-index: -1;
}

/*----------------------------------------
  Site - Dark Mode - collapsible
----------------------------------------*/
[data-site_mode=dark] .collapsible-header,
[data-site_mode=dark] .collapsible-header:focus {
  background-color: var(--dark-800);
  color: #f5f5f5;
  border-color: var(--dark-700);
}

[data-site_mode=dark] .collapsible-body {
  border-color: var(--dark-700);
  background-color: var(--dark-800);
}

[data-site_mode=dark] .collapsible.transparent .collapsible-header {
  border: 1px solid var(--dark-800);
}

[data-site_mode=dark] .primary-bg-light.collapsible-body::after,
[data-site_mode=dark] .accent-bg-light.collapsible-body::after {
  background-color: var(--dark-800);
}

[data-site_mode=dark] .collapsible.transparent .collapsible-header {
  border-color: var(--dark-700);
}

/*----------------------------------------
  Waves
------------------------------------------*/
.waves-color-demo .collection-item {
  padding-bottom: 26px;
}

.waves-color-demo .collection-item .btn {
  float: right;
}

.waves-color-demo .btn, .waves-color-demo .btn-large, .waves-color-demo .btn-small {
  background-color: #fff;
  color: #212121;
}

/*----------------------------------------
  Site - Dark Mode - Waves
----------------------------------------*/
[data-site_mode=dark] .waves-color-demo .btn,
[data-site_mode=dark] .waves-color-demo .btn-large,
[data-site_mode=dark] .waves-color-demo .btn-small {
  background-color: var(--dark-700);
  color: #f5f5f5;
}

/*----------------------------------------
  Top Bar
------------------------------------------*/
#logo-container {
  font-weight: 500;
  font-size: 24px;
  line-height: 64px;
}

nav .navicon i {
  font-size: 23px;
}

nav .navicon.right {
  margin-right: -10px;
}

nav .navicon.back-button {
  float: left;
  height: 36px;
  width: 36px;
  margin: 10px 15px 10px 5px;
}

body.ishome nav .navicon.back-button {
  display: none;
}

.nav-site-mode {
  margin-right: 0px !important;
}

nav .navicon.nav-site-mode,
nav .navicon.sidenav-trigger {
  float: left;
  height: 36px;
  width: 36px;
  margin: 10px 18px 10px -15px;
}

nav .navicon.sidenav-trigger {
  margin-right: -8px;
}

nav a.sidenav-trigger i {
  height: 36px;
  line-height: 36px;
  font-size: 17px;
}

nav .navicon.nav-site-mode i {
  font-size: 17px;
}

nav .navicon {
  margin-top: 0px;
  height: 36px;
  width: 36px;
}

nav .navicon i {
  line-height: 36px;
  height: 36px;
}

body.isfullscreen nav {
  background-color: transparent !important;
  box-shadow: none;
  -webkit-box-shadow: none;
}

body.isfullscreen nav .brand-logo,
body.isfullscreen nav .navicon {
  color: #eeeeee;
}

nav .nav-wrapper {
  text-align: center;
}

.sidenav-overlay {
  z-index: 998;
}

@media only screen and (max-width: 600px) {
  nav.navigation {
    height: 56px;
    line-height: 56px;
  }

  #logo-container {
    line-height: 56px;
  }
}
@media only screen and (min-width: 601px) {
  nav .navicon.nav-site-mode,
nav .navicon.back-button,
nav .navicon.sidenav-trigger {
    margin: 14px 15px 14px -15px;
  }
}
nav.navigation {
  background-color: transparent;
  background-image: linear-gradient(to bottom, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  position: absolute;
  top: 0px;
  box-shadow: none;
  -webkit-box-shadow: none;
}

[data-header=dark] nav.navigation {
  background-color: transparent;
  background-image: linear-gradient(to bottom, #19161d, rgba(25, 22, 29, 0.6), rgba(25, 22, 29, 0));
}

nav.navigation.isfixed {
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
}

[data-header=dark] nav.navigation.isfixed {
  background-image: linear-gradient(to bottom, #19161d, rgba(25, 22, 29, 0));
}

nav.navigation.logo_on_fixed .brand-logo {
  display: none;
}

nav.navigation.logo_on_fixed.isfixed .brand-logo {
  display: inline-block;
}

/*----------------------------------------
  Page Top Bar - Left Align
------------------------------------------*/
[data-header_align=left] nav.navigation .brand-logo {
  position: absolute;
  left: -3px;
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
}

[data-header_align=left] nav.navigation .navicon[data-target=slide-nav] {
  float: right;
  margin-right: -8px;
}

[data-header_align=left] nav.navigation .navicon.back-button {
  position: absolute;
  right: 95px;
}

[data-header_align=left] nav .navicon.sidenav-trigger {
  margin-right: 18px;
}

/*----------------------------------------
  Page Top Bar - App Based
------------------------------------------*/
[data-header_align=app] nav.navigation .brand-logo {
  position: relative;
  left: 0px;
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
}

[data-header_align=app] nav.navigation .navicon[data-target=slide-settings] {
  float: right;
  margin-right: -8px;
}

[data-header_align=app] nav .navicon.sidenav-trigger {
  margin-right: 12px;
}

[data-header_align=app] nav .nav-wrapper {
  text-align: left;
}

/*----------------------------------------
  Page Top Bar - Right Aligned
------------------------------------------*/
[data-header_align=right] nav.navigation .brand-logo {
  position: absolute;
  left: auto;
  right: 0px;
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
}

[data-header_align=right] nav.navigation .navicon[data-target=slide-settings],
[data-header_align=right] nav.navigation .nav-site-mode {
  float: left !important;
}

[data-header_align=right] nav .navicon.sidenav-trigger {
  margin-right: 18px;
}

/*----------------------------------------
  Page Top Bar - Dark Style
------------------------------------------*/
[data-header=dark] nav.navigation.isfixed {
  background-color: transparent;
}

[data-header=dark] nav.isfixed .brand-logo,
[data-header=dark] nav.isfixed .navicon {
  color: #eeeeee;
}

body[data-site_mode=dark][data-header=light] nav .brand-logo,
body[data-site_mode=dark][data-header=light] nav .navicon {
  color: #eeeeee;
}

body[data-site_mode=dark][data-header=light] nav.isfixed .brand-logo,
body[data-site_mode=dark][data-header=light] nav.isfixed .navicon {
  color: var(--dark-700);
}

body[data-site_mode=dark][data-header=dark] nav .brand-logo,
body[data-site_mode=dark][data-header=dark] nav .navicon {
  color: #eeeeee;
}

/*----------------------------------------
  Page Top Bar - Colored Style
------------------------------------------*/
[data-header=colored] nav.navigation.isfixed {
  background-color: var(--primary-color);
}

[data-header=colored] nav.isfixed .brand-logo,
[data-header=colored] nav.isfixed .navicon {
  color: #ffffff;
}

body[data-site_mode=dark] nav .brand-logo,
body[data-site_mode=dark] nav .navicon {
  color: #eeeeee;
}

/*----------------------------------------
Chatbot icon
------------------------------------------*/
.chatbot-icon-wrapper {
  width: 35px;
  height: 35px;
  position: relative;
}

.chatbot-icon-wrapper img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.chatbot-icon-wrapper .status::after {
  content: " ";
  position: absolute;
  width: 12px;
  height: 12px;
  top: -2px;
  right: -2px;
  border-radius: 50%;
  background-color: var(--green-color);
  border: solid 2px white;
}

[data-site_mode=dark] .chatbot-icon-wrapper .status::after {
  border-color: var(--dark-700);
}

/*----------------------------------------
  Navigation Menu
------------------------------------------*/
nav {
  background: var(--primary-color);
  z-index: 999;
}

.sidenav li {
  line-height: 48px;
}

.sidenav .collapsible li {
  box-shadow: none;
}

.sidenav .waves-effect {
  display: inline-block;
  width: 100%;
}

.sidenav li a {
  display: block;
  color: var(--dark-700);
}

.sidenav li a span {
  line-height: 43px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  /* text-transform: uppercase; */
}

.sidenav li a i {
  margin-right: 15px;
  top: 0px;
  position: relative;
  font-size: 24px;
  border-radius: var(--border-radius-50percent);
  height: 63px;
  width: 30px;
  display: inline-block;
  text-align: center;
  line-height: 63px;
  float: left;
}

.sidenav.sidesettings li a span {
  white-space: nowrap;
  line-height: 63px;
  padding-left: 10px;
}

.sidenav.sidesettings li a i {
  margin-right: 0px;
}

.sidenav.sidemenu li.lvl1 a:after {
  content: "\f142";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 15px;
  font-size: 16px;
  opacity: 0.7;
  top: 11px;
  display: none;
}

.sidenav li.lvl1 .waves-effect {
  padding-left: 11px;
}

.sidenav li.lvl1 .waves-effect {
  border-left: 5px solid transparent;
  border-radius: 0px;
}

.menu-users .collection .collection-item .chatlink:hover,
.sidenav li.lvl1 .waves-effect:hover,
.sidenav li.lvl1 .waves-effect.active {
  border-left-color: var(--primary-color);
  background: rgba(var(--primary-rgb), 0.15);
}

.sidenav span.badge {
  line-height: 24px;
  color: #fff;
  font-size: 10px;
  margin-right: 40px;
}

.sidenav .copyright,
.sidenav .subheader {
  padding-left: 20px;
}

nav .sidenav-trigger {
  margin-left: 0px;
}

.sidenav .subheader {
  text-transform: uppercase;
  font-size: 12px;
  color: #90a4ae;
  font-weight: 400;
  line-height: 24px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.sidenav .divider {
  background: #f5f5f5;
  margin: 0px;
  clear: both;
}

.sidenav .copyright {
  font-size: 13px;
  color: #90a4ae;
  /* text-transform: uppercase; */
}

.sidenav .copy-spacer,
.sidenav .copy-wrap,
.sidenav .copyright {
  display: none;
}

.sidenav .lvl1-tag {
  display: block;
  font-size: 12px;
  opacity: 0.6;
  line-height: 20px;
  position: relative;
  top: -6px;
  font-style: italic;
}

/*----------------------------------------
  Navigation User Menu
------------------------------------------*/
nav .brand-logo,
nav .navicon {
  color: var(--dark-700);
}

body nav a.brand-logo i {
  font-size: 24px;
  margin-right: 6px !important;
}

.sidenav .user-view {
  /* margin: 0px 0 15px 0;
  height: 180px;
  background: #eee; */
  /* background-image: url('../images/menu-user-full.jpg');
  background-size: cover;
  background-position: center; */
}

.user-wrap,
.user-wrap .user-view {
  position: relative;
  margin: 5px 0 10px 0;
}

.user-wrap .user-view {
  padding: 16px 21px 0;
}

.user-wrap {
  /* padding-bottom: 15px; */
  border-bottom: 1px solid #f5f5f5;
  padding-top: 5px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.user-wrap .user-view::before {
  /* content: " "; */
  /* background-color: #222222; */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 2;
  width: 100%;
  opacity: 0.3;
}

.sidenav .user-view .imgarea {
  padding: 0px;
  max-width: 70px;
  /* min-width: 70px; */
}

.sidenav .user-view .infoarea {
  /* padding-top: 5px;
  padding-left: 9px; */
  position: relative;
  /* bottom: 20px; */
  z-index: 3;
  top: 0px;
  padding-left: 5px;
}

.sidenav .user-view .circle {
  width: 54px;
  height: 54px;
}

.sidenav .user-view .name {
  margin-top: 0px;
  font-size: 20px;
  margin-bottom: 10px;
  white-space: nowrap;
  font-weight: 400;
  /* text-transform: uppercase; */
  /* color: #ffffff; */
}

.sidenav .user-view .email {
  white-space: nowrap;
  padding-bottom: 0px;
  font-weight: 400;
  /* color: #eeeeee; */
  font-size: 14px;
}

/*----------------- Navigation Menu Users & Social icons -------------------*/
.menu-users .collection {
  box-shadow: none !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.menu-users .collection .collection-item .title {
  line-height: 1.6;
}

.menu-users .collection .collection-item .chatlink {
  /* padding-top: 10px; */
  min-height: auto;
  height: 70px;
  /* vertical-align: top; */
  /* padding-bottom: 0; */
  line-height: 1;
  border-left: 5px solid transparent;
  border-radius: 0px;
  white-space: nowrap;
  padding: 10px 75px 0px 72px;
}

.menu-users .collection .collection-item.avatar {
  height: 70px;
  min-height: auto;
  /* background: #ccc; */
  padding-top: 0px;
  margin-bottom: 1px;
}

/* .menu-users .user-avatar .status:after, .menu-users .collection-item.avatar .status:after{
	display: none;
} */
.sidenav span.badge,
.menu-users .collection .collection-item.avatar .badge {
  min-width: auto;
  margin: 0;
  height: 22px;
  width: 22px;
  line-height: 22px;
  border-radius: var(--border-radius-button);
}

.menu-social .social-wrap .social {
  padding: 0 15px;
}

.menu-social .social-wrap .social a {
  padding: 0;
  margin: 10px 5px 0 5px;
}

.menu-social .social-wrap .social a:hover {
  background: transparent;
}

.sep-wrap {
  margin: 15px 0;
}

.sidenav span.badge {
  background: var(--primary-color);
  position: absolute;
  left: auto;
  right: 23px;
  top: 50%;
  margin-top: -11px !important;
}

.sidenav .menu-users .collection .collection-item.avatar .secondary-content {
  right: 0;
}

.sidenav .menu-users .collection.contacts .collection-item.avatar :not(.circle-clipper) > .circle {
  left: 12px;
}

.sidenav.sidesettings .sep-wrap {
  margin: 0px 0 15px 0;
}

.menu-users .collection .collection-item.avatar .status:after {
  left: 47px;
}

[data-menu=dark] .user-wrap {
  /* padding-bottom: 15px; */
  border-color: var(--dark-700);
}

/* [data-menu="dark"] .sidenav .user-view .name {
	color: #cfd8dc;
}
[data-menu="dark"] .sidenav .user-view .email {
	color: #b0bec5;
}

[data-menu="colored"] .sidenav .user-view .name {
	color: #f5f5f5;
}
[data-menu="colored"] .sidenav .user-view .email {
	color: #eeeeee;
} */
[data-menu=colored] .menu-users .collection .collection-item.avatar {
  background-color: transparent;
}

[data-menu=colored] .user-wrap {
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
}

/*----------------------------------------
  Navigation Menu - Dark Style
------------------------------------------*/
[data-menu=dark] .sidenav {
  background-color: var(--dark-800);
}

[data-menu=dark] .sidenav .subheader {
  color: #B0BEC5;
}

[data-menu=dark] .sidenav li a, [data-menu=dark] .sidenav li a:hover {
  color: #CFD8DC;
}

/* [data-menu="dark"] .sidenav li.lvl1 .waves-effect:hover, 
[data-menu="dark"] .sidenav li.lvl1 .waves-effect.active{
  background-color: var(--dark-900); 
} */
[data-menu=dark] .sidenav .badge.blue-grey {
  background-color: var(--primary-color) !important;
}

[data-menu=dark] .sidenav .divider {
  background-color: var(--dark-700);
}

[data-menu=dark] .sidenav .copyright {
  color: #B0BEC5;
}

/*----------------------------------------
  Navigation Menu - Colored Style
------------------------------------------*/
[data-menu=colored] .sidenav {
  background-color: var(--primary-color);
}

[data-menu=colored] .sidenav .subheader {
  color: #eeeeee;
}

[data-menu=colored] .sidenav .collection li.collection-item a, [data-menu=colored] .sidenav .collection li.collection-item a:hover, [data-menu=colored] .sidenav .collection li.collection-item a:hover i,
[data-menu=colored] .sidenav li a, [data-menu=colored] .sidenav li a:hover, [data-menu=colored] .sidenav li a:hover i {
  color: #f5f5f5;
}

[data-menu=colored] .sidenav li.lvl1 .waves-effect.active,
[data-menu=colored] .sidenav li.lvl1 .waves-effect:hover {
  border-left-color: rgba(33, 33, 33, 0.5);
  background-color: rgba(33, 33, 33, 0.15);
}

[data-menu=colored] .sidenav .badge.blue-grey {
  background-color: rgba(33, 33, 33, 0.4) !important;
}

[data-menu=colored] .sidenav .divider {
  background-color: rgba(33, 33, 33, 0.2);
}

[data-menu=colored] .sidenav .copyright {
  color: #eeeeee;
}

[data-menu=colored] .menu-close i {
  color: var(--primary-color);
}

[data-menu=colored] .collection .collection-item.avatar:not(:last-child):after {
  border-bottom: none;
}

[data-menu=colored].menu-full.menu-open .menu-close {
  background-color: #f5f5f5;
}

[data-site_mode=dark][data-menu=colored].menu-full.menu-open .menu-close {
  background-color: var(--dark-700);
}

[data-site_mode=dark][data-menu=colored] .menu-close i {
  color: #f5f5f5;
}

[data-menu=colored] .sidenav span.badge {
  background-color: #f5f5f5;
  color: var(--primary-color);
}

[data-site_mode=dark][data-menu=colored] .sidenav span.badge {
  background-color: var(--dark-700);
  color: #f5f5f5;
}

/*----------------------------------------
  Footer
------------------------------------------*/
.page-footer {
  /* background: var(--dark-800); */
  padding-bottom: 60px;
  position: relative;
  background-color: #f5f5f5;
}

.page-footer.dark-bg {
  background: var(--dark-800);
}

.footer-ex .page-footer {
  padding-bottom: 60px;
}

.page-footer .logo {
  font-weight: 500;
  font-size: 25px;
  color: #CFD8DC;
}

[data-footer_type=center] .page-footer {
  text-align: center;
}

.page-footer .text {
  color: #CFD8DC;
  margin-bottom: 5px;
}

.page-footer .link-wrap .link-ul {
  display: inline-block;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 0px;
}

.social-wrap li {
  margin: 0 0 10px 0;
}

.social li a {
  color: #CFD8DC;
}

.social-wrap li a i {
  margin-right: 10px;
}

.social-wrap {
  margin: 0;
  display: inline-block;
  width: 100%;
}

.social-wrap .social {
  margin-top: 5px;
}

.social-wrap .social a {
  margin: 10px 10px 0 0;
  display: inline-block;
}

.social-wrap .social a i {
  margin: 0px;
  font-size: 18px;
  border-radius: var(--border-radius-50percent);
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  height: 34px;
  width: 34px;
  display: inline-block;
  text-align: center;
  line-height: 34px;
}

.page-footer .footer-copyright {
  position: absolute;
  width: 100%;
  bottom: 0;
}

.page-footer .footer-copyright .container, .page-footer .footer-copyright .container a {
  color: #78909C;
  font-size: 13px;
}

.page-footer.light-bg {
  background-color: #ffffff;
}

.page-footer.light-bg .footer-copyright {
  background: rgba(150, 150, 150, 0.15);
}

.page-footer.white-text *, .page-footer.white-text a, .page-footer.white-text .social a i {
  color: #ffffff;
}

.page-footer.white-text .logo:after {
  background: #f5f5f5;
}

.page-footer.white-text .footer-copyright .container, .page-footer.white-text .footer-copyright .container a {
  color: #eeeeee;
}

.page-footer.dark-text *, .page-footer.dark-text a, .page-footer.dark-text .social a i {
  color: var(--dark-700);
}

.page-footer.dark-text .logo:after {
  background: #607D8B;
}

.page-footer.dark-text .footer-copyright .container, .page-footer.dark-text .footer-copyright .container a {
  color: #607D8B;
}

.social-colored .social-wrap .social a i {
  color: #ffffff;
}

.social-colored .social a i.mdi-facebook {
  background: var(--brand-facebook-color);
}

.social-colored .social a i.mdi-twitter {
  background: var(--brand-twitter-color);
}

.social-colored .social a i.mdi-dribbble {
  background: var(--brand-dribbble-color);
}

.social-colored .social a i.mdi-google-plus {
  background: var(--brand-google-plus-color);
}

.social-colored .social a i.mdi-linkedin {
  background: var(--brand-linkedin-color);
}

.social-colored .social a i.mdi-whatsapp {
  background: var(--brand-whatsapp-color);
}

.social-colored .social a i.mdi-gmail {
  background: var(--brand-gmail-color);
}

.social-colored .social a i.mdi-pinterest {
  background: var(--brand-pinterest-color);
}

.social-colored .social a i.mdi-instagram {
  background: var(--brand-instagram-color);
}

[data-footer_menu=show] .page-footer {
  margin-bottom: 60px;
}

.page-footer.nocopy {
  padding-bottom: 20px;
}

[data-footer_type=left] .page-footer:not(.footer-ex) {
  text-align: left;
}

[data-footer_menu=show] .footer-ex .page-footer,
[data-footer_menu=hide] .footer-ex .page-footer {
  margin-bottom: 20px;
}

/*----------------------------------------
  Footer - Light Style
------------------------------------------*/
[data-footer=light] .page-footer:not(.footer-ex) {
  background: #f5f5f5;
}

[data-footer=light] .page-footer:not(.footer-ex) .logo:after {
  background-color: var(--primary-color);
}

[data-footer=light] .page-footer:not(.footer-ex) .logo {
  color: var(--dark-700);
}

[data-footer=light] .page-footer:not(.footer-ex) .text,
[data-footer=light] .page-footer:not(.footer-ex) li a,
[data-footer=light] .page-footer:not(.footer-ex) .footer-copyright .container,
[data-footer=light] .page-footer:not(.footer-ex) .footer-copyright .container a {
  color: var(--dark-600);
}

[data-footer=light] .page-footer:not(.footer-ex) .footer-copyright {
  background: rgba(200, 200, 200, 0.3);
}

[data-footer=dark] .page-footer:not(.footer-ex) {
  background: transparent;
}

[data-footer=dark] .page-footer:not(.footer-ex) .logo:after {
  background-color: var(--primary-color);
}

[data-footer=dark] .page-footer:not(.footer-ex) .logo {
  color: #CFD8DC;
}

[data-footer=dark] .page-footer:not(.footer-ex) .text,
[data-footer=dark] .page-footer:not(.footer-ex) li a,
[data-footer=dark] .page-footer:not(.footer-ex) .footer-copyright .container,
[data-footer=dark] .page-footer:not(.footer-ex) .footer-copyright .container a {
  color: #CFD8DC;
}

[data-footer=light] .page-footer:not(.footer-ex) .footer-copyright {
  background: rgba(200, 200, 200, 0.3);
}

/*----------------------------------------
  Footer - Colored Style
------------------------------------------*/
[data-footer=colored] .page-footer {
  background: var(--primary-color);
}

[data-footer=colored] .page-footer .logo:after {
  background-color: #ffffff;
}

[data-footer=colored] .page-footer .logo {
  color: #ffffff;
}

[data-footer=colored] .page-footer .text,
[data-footer=colored] .page-footer li a,
[data-footer=colored] .page-footer .social a i,
[data-footer=colored] .page-footer .footer-copyright .container,
[data-footer=colored] .page-footer .footer-copyright .container a {
  color: #eeeeee;
}

[data-footer=colored] .page-footer .footer-copyright {
  background: rgba(33, 33, 33, 0.2);
}

/*----------------------------------------
  Footer - Minimal
------------------------------------------*/
[data-footer_type=minimal] .page-footer:not(.footer-ex) {
  /* padding-top: 0px; */
  padding-bottom: 20px;
}

[data-footer_type=minimal] .page-footer:not(.footer-ex) .footer-content .text {
  display: none;
}

[data-footer_type=minimal] .page-footer:not(.footer-ex) .footer-copyright {
  display: none;
  text-align: center;
}

/*----------------------------------------
  Drop Down
------------------------------------------*/
.dropdown-content li > a, .dropdown-content li > span {
  color: var(--dark-700);
}

.dropdown-content li > a > i {
  margin: 0 10px 0 0;
}

.dropdown-content {
  border-radius: var(--border-radius);
}

.dropdown-trigger.btn-small i:not(.icon-only),
.dropdown-trigger.btn-large i:not(.icon-only),
.dropdown-trigger.btn i:not(.icon-only) {
  font-size: 1.2rem;
  position: relative;
  top: 1px;
  display: inline-block;
  /* line-height: 31px; */
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 7px;
  margin-left: 4px;
}

.dropdown-trigger.btn {
  line-height: 30px;
}

.dropdown-trigger.btn,
.dropdown-trigger.btn-small,
.dropdown-trigger.btn-large {
  padding-right: 9px;
}

.dropdown-trigger i.icon-only {
  padding-right: 7px;
}

body .dropdown-trigger.btn i {
  height: 32px;
}

body .dropdown-trigger.btn-large i {
  height: 38px;
}

body .dropdown-trigger.btn-small i {
  font-size: 1rem;
  height: 24px;
}

/*----------------------------------------
  Site - Dark Mode - Dropdown
----------------------------------------*/
[data-site_mode=dark] .dropdown-content {
  background-color: var(--dark-800);
}

[data-site_mode=dark] .dropdown-content li > a,
[data-site_mode=dark] .dropdown-content li > span {
  color: #f5f5f5;
}

[data-site_mode=dark] .dropdown-content li:hover,
[data-site_mode=dark] .dropdown-content li.active {
  background-color: rgba(33, 33, 33, 0.25);
}

/*----------------------------------------
  Progress Bars
------------------------------------------*/
.progress-md {
  height: 8px;
}

.progress-large {
  height: 12px;
}

.progress {
  background-color: rgba(var(--primary-rgb), 0.4);
}

.progress .determinate {
  background-color: var(--primary-color);
}

.progress .indeterminate {
  background-color: var(--primary-color);
}

/*----------------------------------------
  Back to top button
------------------------------------------*/
.backtotop {
  display: none;
  position: fixed;
  right: auto;
  left: 50%;
  margin-left: -20px;
  bottom: 85px;
  -webkit-animation-name: fadeIn;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 1s;
  /* Safari 4.0 - 8.0 */
  animation-name: fadeIn;
  animation-duration: 1s;
  z-index: 997;
  -webkit-backface-visibility: hidden;
  opacity: 0.8;
}

[data-footer_menu=hide] .backtotop {
  bottom: 20px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*----------------------------------------
 Cards
------------------------------------------*/
.card {
  border-radius: var(--border-radius);
}

.card .card-content .card-title i {
  font-size: 20px;
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating) {
  color: var(--dark-700);
  font-weight: 500;
  text-transform: none;
  font-size: 14px;
}

.card .card-image .card-title,
.card .card-title {
  font-size: 20px;
  font-weight: 500;
  /* text-transform: uppercase; */
}

.card .card-image .card-title {
  color: rgba(255, 255, 255, 0.9);
}

.card-tabs {
  border-bottom: 1px solid #e0e0e0;
}

.card-panel.bg-primary {
  background-color: var(--primary-color);
}

.card-panel {
  border-radius: var(--border-radius);
}

.card .card-image img {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.card.horizontal .card-image img {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.card .card-action,
.card .card-action:last-child {
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.card-tabs ul {
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
}

.media-card {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.btn-floating.halfway-fab {
  z-index: 3;
}

/*----------------------------------------
  Cards Wrap
------------------------------------------*/
.cards-container {
  column-break-inside: avoid;
}

.cards-container .card {
  display: inline-block;
  overflow: visible;
}

@media only screen and (max-width: 600px) {
  .cards-container {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
@media only screen and (min-width: 601px) {
  .cards-container {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media only screen and (min-width: 993px) {
  .cards-container {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}
.text-center {
  text-align: center;
}

/*----------------------------------------
  Site - Dark Mode - Cards
----------------------------------------*/
[data-site_mode=dark] .card,
[data-site_mode=dark] .card-panel {
  background-color: var(--dark-800);
}

[data-site_mode=dark] .card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating) {
  color: #cfd8dc;
}

[data-site_mode=dark] .card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating):hover {
  color: #b0bec5;
}

[data-site_mode=dark] .card-panel.bg-primary {
  background-color: var(--primary-color);
  color: #f5f5f5;
}

[data-site_mode=dark] .card-panel {
  background-color: var(--dark-800);
  color: #f5f5f5;
}

[data-site_mode=dark] .card .card-reveal {
  background-color: var(--dark-800);
}

[data-site_mode=dark] .card.primary-bg,
[data-site_mode=dark] .card-panel.primary-bg {
  background-color: var(--primary-color);
}

.card.weekend img {
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center center;
}
.card.weekend #weekenddates {
  font-weight: 700;
}
.card.weekend .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: 700;
  padding: 5px 15px 25px 15px;
}
.card.weekend .badge i {
  margin-right: 5px;
}

/*----------------------------------------
 Tabs
------------------------------------------*/
.tabs {
  margin-bottom: -5px;
  border-radius: var(--border-radius);
}

.tabs .tab {
  z-index: 1;
}

.tabs .tab a {
  color: var(--dark-700);
  line-height: 48px;
  text-transform: none;
  font-weight: 500;
}

.tabs .tab a.active {
  color: #ffffff;
  z-index: 1;
  position: relative;
}

/* .tabs .tab a:hover{
	color: var(--dark-700);
} */
.tabs .tab a.active {
  /* color: var(--primary-color); */
  background: transparent;
}

.tabs.transparent .tab a.active {
  background: transparent;
}

.tabs .indicator {
  background-color: var(--primary-color);
  height: 48px;
}

.tabs .tab a:focus,
.tabs .tab a:focus.active {
  background-color: transparent;
}

.tab-content {
  display: inline-block;
  padding: 15px;
  background: #fff;
  width: 100%;
}

.tabs-icons .tab i {
  font-size: 24px;
  line-height: 48px;
}

.tabs .tab.disabled a,
.tabs .tab.disabled a:hover {
  color: rgba(var(--primary-rgb), 0.4);
  cursor: default;
}

.tabs-swipable .carousel-item {
  display: inline-block;
  padding: 15px !important;
  width: 100%;
  font-size: inherit;
  line-height: inherit;
}

.tabs.full-transparent {
  border-bottom: 1px solid #cccccc;
}

.tabs.colored .tab a:focus,
.tabs .tab.colored a:focus.active {
  background-color: inherit;
}

.tabs.accent-bg .indicator {
  background-color: var(--accent-color);
}

.tabs-swipable .tabs-content {
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.tabs-swipable-ul {
  z-index: 1;
}

.tabs-swipable .tabs-content {
  min-height: 680px;
}

.col.tabs-swipable {
  padding: 0 21px;
}

.tabs.primary-bg .indicator:after,
.tabs.accent-bg .indicator:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(33, 33, 33, 0.2);
  display: block;
}

/* .tabs{
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
} */
.tabs-swipable .tabs-content,
.tab-content {
  border-radius: var(--border-radius);
  background-color: #ffffff;
}

.tabs-swipable .tabs-content .carousel-item {
  box-shadow: none;
  background: #ffffff;
}

body .primary-bg-light.tab-content,
body .accent-bg-light.tab-content {
  position: relative;
  top: 6px;
}

body .primary-bg-light.tab-content::after,
body .accent-bg-light.tab-content::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  top: 0;
  left: 0;
  z-index: -1;
}

/*----------------------------------------
  Site - Dark Mode - Tabs
----------------------------------------*/
[data-site_mode=dark] .tabs {
  background-color: var(--dark-800);
}

[data-site_mode=dark] .tabs.primary-bg {
  background-color: var(--primary-color);
}

[data-site_mode=dark] .tabs.accent-bg {
  background-color: var(--accent-color);
}

[data-site_mode=dark] .card-tabs {
  border-bottom: 1px solid var(--dark-700);
}

[data-site_mode=dark] .tabs .tab a {
  color: #f5f5f5;
}

[data-site_mode=dark] .tabs .tab a:focus,
[data-site_mode=dark] .tabs .tab a:focus.active {
  background-color: transparent;
}

[data-site_mode=dark] .tab-content {
  background-color: var(--dark-800);
}

[data-site_mode=dark] .tabs.full-transparent {
  border-bottom: 1px solid var(--dark-700);
}

[data-site_mode=dark] .tabs-swipable .tabs-content .carousel-item {
  background-color: var(--dark-800);
}

/* [data-site_mode="dark"] .tab-content.primary-bg-light {
	background-color: rgba(var(--primary-rgb), 0.1);
} */
/* [data-site_mode="dark"] .tab-content.accent-bg-light {
	background-color: rgba(var(--accent-rgb), 0.1);
} */
[data-site_mode=dark] .tabs .tab.disabled a,
[data-site_mode=dark] .tabs .tab.disabled a:hover {
  color: #757575;
}

[data-site_mode=dark] .primary-bg-light.tab-content::after,
[data-site_mode=dark] .accent-bg-light.tab-content::after {
  background-color: var(--dark-800);
}

[data-site_mode=dark] .tabs-swipable .tabs-content, [data-site_mode=dark] .tab-content {
  background-color: var(--dark-800);
}

/*----------------------------------------
  Icon Boxes
------------------------------------------*/
.icon-block {
  padding: 0 0px;
  margin-bottom: 15px;
  display: inline-block;
}

.icon-block i {
  font-size: 48px;
}

.icon-block.circular i {
  /* border-radius: var(--border-radius-50percent); */
  border-radius: 50%;
  height: 70px;
  width: 70px;
  display: inline-block;
  line-height: 70px;
  font-size: 32px;
  background-color: #ffffff;
}

.icon-block.boxed i {
  border-radius: 0%;
  height: 70px;
  width: 70px;
  display: inline-block;
  line-height: 70px;
  font-size: 32px;
  background-color: #ffffff;
}

.icon-block.bordered i {
  border-radius: 0%;
  border: 2px dashed rgba(var(--primary-rgb), 0.4);
  height: 70px;
  width: 70px;
  display: inline-block;
  line-height: 70px;
  font-size: 32px;
}

/*Blocks card style*/
.icon-block.block {
  text-align: center;
  background: #ffffff;
  padding: 15px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  width: 100%;
}

.icon-block.block.left {
  text-align: left;
}

/*Overlay style*/
.icon-block.overlay .icon-area {
  margin-bottom: 25px;
}

.icon-block.overlay {
  text-align: center;
  background: #ffffff;
  padding: 15px;
  border-radius: var(--border-radius);
  margin-bottom: 80px;
  position: relative;
  width: 100%;
}

.icon-block.overlay i {
  position: absolute;
  margin-left: -35px;
  top: -40px;
  border-radius: var(--border-radius-50percent);
  height: 70px;
  width: 70px;
  display: inline-block;
  line-height: 70px;
  font-size: 42px;
  background-color: #ffffff;
}

.icon-block.overlay.primary-icon i {
  background-color: var(--primary-color);
  color: #f5f5f5;
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 36px;
  margin-left: -30px;
}

.icon-block.overlay.primary-icon {
  top: 40px;
  margin-bottom: 70px;
  padding: 5px;
}

.icon-block.overlay.primary-icon .title-area {
  margin-top: 27px;
  font-size: 18px;
  margin-bottom: 5px;
}

.icon-block.overlay.primary-icon .text-area {
  margin-top: 0;
  font-size: 14px;
}

.contain-hc.social-home .container .icon-block.overlay {
  top: 40px;
  margin-bottom: 70px;
}

/*small block*/
.icon-block.block-small {
  text-align: left;
  background: #ffffff;
  padding: 10px;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  position: relative;
  width: 100%;
}

.icon-block.block-small .icon {
  float: left;
  height: 36px;
  width: 36px;
  margin: 5px 12px 0 0;
}

.icon-block.block-small i {
  font-size: 36px;
  line-height: 36px;
  margin: 0;
  height: 36px;
  width: 36px;
  display: inline-block;
}

.icon-block.block-small .tagline {
  font-size: 12px;
  opacity: 0.8;
}

.icon-block.block-small .title,
.icon-block.block-small .tagline {
  white-space: nowrap;
}

.icon-block.block-small.center {
  text-align: center;
}

.icon-block.block-small.center .icon {
  float: none;
  width: 100%;
  margin-bottom: 10px;
}

.icon-block.block-small.circle .icon {
  height: 40px;
  width: 40px;
  margin-top: 3px;
}

.icon-block.block-small.center.circle .icon {
  width: 100%;
}

.icon-block.block-small.circle i {
  line-height: 40px;
  border-radius: var(--border-radius-50percent);
  background: var(--primary-color);
  color: #ffffff;
  font-size: 22px;
  text-align: center;
  height: 40px;
  width: 40px;
}

.col.s12.m12.l3:last-child .icon-block.overlay {
  margin-bottom: 20px;
}

.icon-block.block-small {
  overflow: hidden;
}

.icon-block .title-area {
  white-space: nowrap;
}

.icon-block .text-area {
  max-height: 125px;
  overflow: hidden;
}

/*----------------------------------------
  App Settings
----------------------------------------*/
.settings-row {
  margin: 0 -15px;
}

.setting-box {
  background-color: #ffffff;
  padding: 0 15px 15px 15px;
  margin-bottom: 65px;
  border-radius: var(--border-radius);
}

.setting-box i {
  font-size: 32px;
  margin: -40px 0 10px 0;
  line-height: 60px;
  display: inline-block;
  border-radius: var(--border-radius-50percent);
  background: var(--primary-color);
  color: #ffffff;
  height: 60px;
  width: 60px;
}

.setting-box h6 {
  margin: 0px;
  color: var(--dark-700);
  font-size: 18px;
  white-space: nowrap;
}

.setting-box:hover {
  background-color: #f5f5f5;
}

/*----------------------------------------
  Site - Dark Mode - Iconboxes
----------------------------------------*/
[data-site_mode=dark] .setting-box:hover,
[data-site_mode=dark] .icon-block.block-small,
[data-site_mode=dark] .icon-block.block,
[data-site_mode=dark] .icon-block.overlay {
  background-color: var(--dark-700);
  color: #f5f5f5;
}

[data-site_mode=dark] .icon-block.overlay i,
[data-site_mode=dark] .icon-block.boxed i,
[data-site_mode=dark] .icon-block.circular i {
  background-color: var(--primary-color);
  color: #f5f5f5;
}

[data-site_mode=dark] .icon-block i,
[data-site_mode=dark] .icon-block.block-small i {
  color: #f5f5f5;
}

/* [data-site_mode='dark'] .icon-block.circle i {
  color: var(--dark-700);
} */
[data-site_mode=dark].contain-hc.social-home .container .icon-block.overlay {
  background-color: var(--dark-700);
}

/*----------------------------------------
  Chips
------------------------------------------*/
.ui-chips .chip {
  margin: 5px 8px 8px 0;
  display: inline-block;
}

.chip {
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.chip i {
  line-height: 32px;
  height: 32px;
  font-size: 14px;
  /* position: relative; */
  /* top: 1px; */
  display: inline-block;
  margin: 0 0px 0 4px;
  cursor: pointer;
}

.chip:focus {
  background-color: var(--primary-color);
}

.chip i.close:before {
  content: "\f156";
}

.chip i.close:before {
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  visibility: visible;
}

.chip i.close {
  content: "";
  font-size: 0.1px;
  color: transparent;
  visibility: hidden;
}

.chip,
.chip i.close:before {
  color: var(--dark-700);
}

.chip.white-text,
.chip.white-text i.close:before {
  color: #fafafa;
}

.chip:focus i.close:before {
  color: #fafafa;
}

.chips.focus {
  border-bottom: 1px solid var(--primary-color);
  -webkit-box-shadow: 0 1px 0 0 var(--primary-color);
  box-shadow: 0 1px 0 0 var(--primary-color);
}

.chips.primary .chip,
.chips.primary .chip i:before {
  background-color: var(--primary-color);
  color: #ffffff;
}

.chips.input-field {
  margin-top: 0px;
  margin-bottom: 0px;
  box-shadow: none;
  padding: 20px 10px 5px 15px;
}

.chips .input {
  width: 110px !important;
}

/*----------------------------------------
  Site - Dark Mode - Chips
----------------------------------------*/
[data-site_mode=dark] .chip {
  color: #eeeeee;
  background-color: var(--dark-700);
}

[data-site_mode=dark] .chip i.close:before {
  color: #eeeeee;
}

[data-site_mode=dark] .chip.dark-text,
[data-site_mode=dark] .chip.dark-text i.close:before {
  color: var(--dark-700);
}

[data-site_mode=dark] .chips .input {
  color: #f5f5f5;
}

/*----------------------------------------
  Settings
------------------------------------------*/
/*menu icons off*/
body[data-menu_icons=off] .subpages .collection-item a i:nth-child(1),
body[data-menu_icons=off] .sidenav li a i {
  display: none;
}

body[data-menu_icons=off] .sidenav .active a span {
  text-decoration: underline;
}

/*menu icons colored*/
body[data-menu_icons=colored] .subpages .collection-item a i:nth-child(1),
body[data-menu_icons=colored] .sidenav li a i {
  color: var(--primary-color);
}

body[data-menu_icons=colored][data-menu=colored] .subpages .collection-item a i:nth-child(1),
body[data-menu_icons=colored][data-menu=colored] .sidenav li a i {
  color: #f5f5f5;
}

/*----------------------------------------
  Parallax
------------------------------------------*/
.parallax-container {
  min-height: 380px;
  line-height: 0;
  height: auto;
  color: rgba(255, 255, 255, 0.9);
}

.parallax-container .section {
  width: 100%;
}

.parallax-grid .parallax-container {
  min-height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.parallax-item {
  border-radius: var(--border-radius);
}

.parallax-item h5 {
  padding: 15px 15px 15px 15px;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  margin: 0;
  background-color: #f5f5f5;
}

.row.parallax-grid {
  margin: 0 -0.75rem;
}

[data-site_mode=dark] .parallax-item h5 {
  background-color: var(--dark-800);
}

/*----------------------------------------
  Profile Page
------------------------------------------*/
.ui-profile {
  background: var(--primary-color);
  position: relative;
  vertical-align: top;
  padding-bottom: 115px;
}

.ui-profile .primg {
  background-image: url("../images/profile.jpg");
  background-size: cover;
  height: 100px;
  width: 100px;
  margin: 70px 0 10px -50px;
  display: inline-block;
  position: relative;
  left: 50%;
  border-radius: var(--border-radius-50percent);
}

.profile-card .ui-profile {
  padding-bottom: 30px;
}

.profile-card .ui-profile .primg {
  margin-top: 45px;
}

.profile-card {
  border-radius: var(--border-radius);
  padding-bottom: 0px !important;
}

.ui-profile .primg img {
  width: 100%;
  z-index: 2;
}

.ui-profile .prinfo {
  position: relative;
  width: 100%;
  padding: 5px 15px;
  margin: 0px;
  display: inline-block;
  z-index: 4;
  text-align: center;
  background: transparent;
  box-shadow: none !important;
  color: #ffffff;
}

.ui-profile .pos {
  font-size: 85%;
}

.ui-profile .prinfo .count {
  float: left;
  width: 33%;
  text-align: center;
  display: inline-block;
  position: relative;
}

.ui-profile .profile-btn {
  margin-bottom: 10px;
}

.ui-profile .prinfo .num, .ui-profile .prinfo .tit {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0px 0px 0px 0px;
}

.ui-profile .prinfo .tit {
  font-size: 80%;
}

.ui-profile .prname {
  margin-bottom: 15px;
  position: relative;
  /* margin: -170px 10% 70px 10%; */
  z-index: 3;
}

.ui-profile .prname .name {
  margin-bottom: 5px;
  margin-top: 0;
}

.ui-profile .prname p {
  margin-top: 15px;
}

.ui-profile .carousel-basic {
  height: 200px;
  /* margin-left: -70px; */
  width: 100%;
  overflow: visible;
}

.ui-profile .carousel-basic .carousel-item {
  height: 167px;
}

.ui-profile .carousel-basic .indicators {
  bottom: 20px;
}

.ui-profile .pr-ctit {
  margin-top: -85px;
  z-index: 2;
  padding: 0px 0px 0px 15px;
  position: relative;
}

.ui-profile .pr-ctit h6 {
  margin-bottom: 0px;
}

.primg {
  display: inline-block;
  position: relative;
}

.primg:after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  top: 0px;
  left: 0px;
  z-index: 1;
  border-radius: var(--border-radius-50percent);
}

.ui-profile .prinfo .count:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  right: 0px;
  top: 10px;
}

.ui-profile .prinfo .count:last-child:after {
  display: none;
}

.contain-hc.profile-page .container.full ul.collection.activity {
  margin-top: -100px;
}

.contain-hc .container .overlay {
  background: #ffffff;
  padding: 0 0 0px 0px;
  position: relative;
  top: -100px;
  border-radius: var(--border-radius);
  margin-bottom: -100px;
}

.contain-hc .container .overlay .gallery {
  margin: 0;
}

.contain-hc .container .flickity-slider {
  top: auto;
  min-height: 250px;
}

.contain-hc .container .portfolio .gallery-cell {
  padding: 0 0 0 15px;
}

.contain-hc .container .flickity-page-dots {
  display: none;
}

.contain-hc .container .flickity-viewport {
  background: #ffffff;
  min-height: 220px;
  border-radius: var(--border-radius);
}

.contain-hc .container.friends-carousel {
  min-height: 240px;
}

.contain-hc .container .friends-wrap {
  background: #ffffff;
  width: 100%;
  display: inline-block;
  border-radius: var(--border-radius);
}

.contain-hc .container .friends-wrap .friends {
  box-shadow: none !important;
  border: none !important;
}

.contain-hc .container .friends-wrap .sec-tit {
  padding-left: 24px;
  margin-bottom: 15px;
}

[data-site_mode=dark].contain-hc .container .flickity-viewport {
  background-color: var(--dark-800);
}

/*----------------------------------------
  Welcome page
----------------------------------------*/
.welcome-logo i {
  font-size: 34px;
  margin-right: 8px;
}

.btn.facebook {
  background: var(--brand-facebook-color) !important;
}

.btn.twitter {
  background: var(--brand-twitter-color) !important;
}

.btn.google {
  background: var(--brand-google-plus-color) !important;
}

/*----------------------------------------
  Error Pages 
----------------------------------------*/
.error-code {
  font-size: 140px;
  margin-bottom: 30px;
}

.login-area.error-page {
  padding: 0px 15px 0 15px;
  position: absolute;
  transform: translate(0%, 50%);
  width: 100%;
}

.error-page h3 {
  font-size: 22px;
}

.error-page h6 {
  font-size: 15px;
}

.error-page.offline .error-code {
  font-size: 90px;
}

/*-----------------------------
  Error Code Style
-----------------------------*/
.error-code {
  color: #fcedd8;
  text-shadow: 5px 5px 0px rgba(var(--primary-rgb), 1), 10px 10px 0px rgba(var(--primary-rgb), 0.8), 15px 15px 0px rgba(var(--primary-rgb), 0.5), 20px 20px 0px rgba(var(--primary-rgb), 0.2);
  /* text-shadow: 5px 5px 0px rgba(55,55,55,0.8), 
              10px 10px 0px rgba(55,55,55,0.6), 
              15px 15px 0px rgba(55,55,55,0.3), 
              20px 20px 0px rgba(55,55,55,0.1); */
}

/*----------------------------------------
  Notifications
----------------------------------------*/
.collection.notifications .collection-item.avatar :not(.circle-clipper) > .circle {
  left: 20px;
}

.collection.notifications .collection-item {
  padding: 0px 0px;
}

.collection.notifications .from {
  font-size: 90%;
  display: block;
}

.collection.notifications .title {
  text-transform: none;
}

.collection.notifications .collection-item.avatar img {
  position: absolute;
  top: 20px;
  margin-top: 0px;
}

.collection.notifications .collection-item .notify {
  color: var(--dark-700);
  padding: 15px 20px 8px 75px;
  display: inline-block;
  width: 100%;
}

.collection.notifications .collection-item.avatar .secondary-content {
  position: absolute;
  top: 55%;
  margin-top: 0px;
  right: 15px;
}

.collection.notifications .time {
  position: absolute;
  top: 0%;
  margin-top: 15px;
  right: 20px;
  font-size: 80%;
  opacity: 0.8;
}

.collection.notifications .mail-reply {
  position: relative;
  padding: 20px;
  vertical-align: top;
  margin-bottom: 0px;
}

.collection.notifications .mail-reply label {
  left: 20px;
}

.collection.notifications .collection-item.avatar p {
  padding-right: 47px;
  margin-bottom: 7px;
  opacity: 1;
}

.collection.notifications .badge {
  float: left;
  margin: 5px 5px 5px 0;
}

/*----------------------------------------
  App Settings
------------------------------------------*/
.appsettings[data-value=deep-purple] {
  background: var(--deep-purple-color) !important;
}

.appsettings[data-value=red] {
  background: var(--red-color) !important;
}

.appsettings[data-value=orange] {
  background: var(--orange-color) !important;
}

.appsettings[data-value=blue] {
  background: var(--blue-color) !important;
}

.appsettings[data-value=green] {
  background: var(--green-color) !important;
}

.appsettings[data-value=teal] {
  background: var(--teal-color) !important;
}

.appsettings[data-value=amber] {
  background: var(--amber-color) !important;
}

.appsettings[data-value=pink] {
  background: var(--pink-color) !important;
}

.appsettings[data-value=indigo] {
  background: var(--indigo-color) !important;
}

.appsettings[data-value=blue-grey] {
  background: var(--blue-grey-color) !important;
}

.appsettings[data-value=brown] {
  background: var(--brown-color) !important;
}

.appsettings[data-value=cyan] {
  background: var(--cyan-color) !important;
}

.appsettings[data-value=light-green] {
  background: var(--light-green-color) !important;
}

.appsettings[data-value=purple] {
  background: var(--purple-color) !important;
}

.appsettings[data-value=grey] {
  background: var(--grey-color) !important;
}

.theme .appsettings {
  height: 74px;
  width: 74px;
  border-radius: var(--border-radius);
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
}

.appsettings .mdi:before {
  content: "\f130" !important;
}

.appsettings.active .mdi:before {
  content: "\f5e1" !important;
  /*"\F854"*/
}

.appsettings i {
  opacity: 0.7;
}

.appsettings.active i {
  opacity: 1;
}

.theme .appsettings .mdi:before {
  content: "\f131" !important;
}

.theme .appsettings.active .mdi:before {
  content: "\f12c" !important;
  /*"\F854"*/
}

.appsettings.active:not([data-type=theme]) .mdi:before {
  color: var(--primary-color) !important;
}

[data-menu=colored] .appsettings:not([data-type=theme]) .mdi:before {
  color: #ffffff !important;
}

[data-menu=colored] .appsettings.active:not([data-type=theme]) .mdi:before {
  color: #ffffff !important;
}

[data-menu=colored] .appsettings[data-type=theme] .mdi:before {
  color: #ffffff !important;
}

.sidesettings .lvl1.theme {
  width: 19%;
  float: left;
  margin-bottom: 5px;
  margin-left: 5%;
  margin-top: 10px;
  max-width: 90px;
}

.sidesettings .lvl1.theme + .sep-wrap {
  /* margin-top: 15px; */
  display: inline-block;
  width: 100%;
  /* margin-bottom: 10px; */
}

.sidenav li.lvl1.theme .waves-effect {
  padding-left: 0px;
  border: none;
  border-radius: var(--border-radius);
}

.sidesettings .sh-wrap {
  clear: both;
  display: block;
  width: 100%;
}

.sidesettings .lvl1.theme a {
  text-align: center;
  display: inline-block;
  width: 100%;
}

.sidesettings .lvl1.theme a i {
  /* display: block; */
  /* margin: 9px 0 3px 0px; */
  color: #fff !important;
  font-size: 31px;
  position: absolute;
  top: calc(50% - 37px);
  left: 0;
  width: 100%;
  text-align: center;
  height: 74px;
  line-height: 74px;
}

.sidenav li.theme .appsettings a i {
  display: none;
}

.sidenav li.theme .appsettings.active i {
  display: inline-block;
}

.sidenav li.theme .appsettings.active .title {
  display: none;
}

.sidesettings .lvl1.theme a .title {
  width: 100%;
  position: absolute;
  top: calc(50% - 11px);
  display: inline-block;
  line-height: 20px;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.3);
  color: #f5f5f5;
  padding: 2px 5px;
  white-space: nowrap;
  left: 0%;
}

[data-menu=dark] .appsettings.active:not([data-type=theme]) .mdi:before {
  color: #cccccc !important;
}

/* [data-menu="dark"] .sidesettings .lvl1.theme a .title{
  background-color: var(--dark-900);
  color: #CFD8DC;
} */
/*----------------------------------------
  Fixed Footer Menu
------------------------------------------*/
.footer-menu {
  display: block;
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  z-index: 998;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.footer-menu.nonfixed {
  position: relative;
}

body.isfullscreen .footer-menu {
  background-color: transparent !important;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.footer-menu ul {
  display: inline-block;
  width: 100%;
  padding: 7px 0px 0 0px;
  margin: 0px;
}

.footer-menu li {
  float: left;
  width: 20%;
  display: inline-block;
  height: 100%;
  text-align: center;
}

.footer-menu li a {
  display: inline-block;
  color: var(--dark-600);
}

.isfullscreen .footer-menu li a {
  color: #f5f5f5;
}

.footer-menu li i {
  display: block;
  font-size: 1rem;
  color: #c2c2c2;
  margin: 5px 0px;
}

.footer-menu li span {
  display: block;
  font-size: 12px;
  line-height: 20px;
}

.footer-menu.circular li a.active {
  margin-top: -25px;
}

.footer-menu.circular li a.active span {
  color: #c2c2c2;
  margin-top: 9px;
}

.footer-menu.circular li a.active i {
  color: #ffffff;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-50percent);
  height: 42px;
  width: 42px;
  line-height: 42px;
  margin-top: 0px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  display: inline-block;
}

/* .footer-menu.boxed li a{
  padding-top: 7px;
  height: 60px;
  display: block;
}
.footer-menu.boxed ul{
  padding: 0;
}
.footer-menu.boxed li{
  height: 60px;
}
.footer-menu.boxed li a.active i{
  font-size: 26px;
  line-height: 26px;
} */
/* .footer-menu.bordered li a:hover,
.footer-menu.bordered li a.active{
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
} */
.footer-menu.bg li a:hover,
.footer-menu.bg li a.active {
  background: rgba(0, 0, 0, 0);
  color: var(--primary-color);
}

[data-footer_menu=hide] .footer-menu {
  display: none;
}

/*----------------------------------------
  Fixed Footer Menu - Light Style
------------------------------------------*/
body [data-footer_menu_style=light] .footer-menu {
  background-color: #ffffff;
}

body [data-footer_menu_style=light] .footer-menu li a {
  color: var(--dark-600);
}

/*----------------------------------------
  Fixed Footer Menu - Dark Style
------------------------------------------*/
[data-footer_menu_style=dark] .footer-menu {
  background-color: var(--dark-800);
}

[data-footer_menu_style=dark] .footer-menu li a {
  color: #CFD8DC;
}

/*----------------------------------------
  Fixed Footer Menu - Colored Style
------------------------------------------*/
[data-footer_menu_style=colored] .footer-menu {
  background-color: var(--primary-color);
}

[data-footer_menu_style=colored] .footer-menu.circular li a.active span,
[data-footer_menu_style=colored] .footer-menu li a {
  color: #f5f5f5;
}

[data-footer_menu_style=colored] .footer-menu:not(.boxed) li a.active i {
  background-color: #f5f5f5;
  color: var(--primary-color);
}

/* [data-footer_menu_style="colored"] .footer-menu li a:hover,
[data-footer_menu_style="colored"] .footer-menu li a:hover i{
  color: #eeeeee;
  background: transparent;
} */
/* [data-footer_menu_style="colored"] .footer-menu.boxed li a.active,
[data-footer_menu_style="colored"] .footer-menu.boxed li a.active i{
  color: #eeeeee;
  background: transparent;
}

[data-footer_menu_style="colored"] .footer-menu.bordered li a.active{
  border-color: #ffffff;
} */
[data-footer_menu_style=colored] .footer-menu.bg li a.active {
  background: rgba(0, 0, 0, 0.07);
}

[data-footer_menu=hide] .page-footer {
  padding-bottom: 60px;
}

/*----------------------------------------
  Perfect Scrollbar
----------------------------------------*/
.sidemenu, .sidesettings {
  overflow: hidden;
}

.ps--active-x > .ps__rail-x, .ps--active-y > .ps__rail-y {
  z-index: 2;
}

.ps__thumb-y {
  background-color: rgba(130, 130, 130, 0.5);
}

/*----------------------------------------
  Table
----------------------------------------*/
table {
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  border-radius: var(--border-radius);
}

table td, table th {
  padding: 15px 15px;
}

table thead {
  background: rgba(0, 0, 0, 0.07);
}

table th:first-child {
  border-radius: var(--border-radius) 0 0 0;
}

table th:last-child {
  border-radius: 0px var(--border-radius) 0px 0;
}

table.responsive-table th:first-child {
  border-radius: var(--border-radius) 0 0 0;
}

table.responsive-table th:last-child {
  border-radius: 0px 0px 0px var(--border-radius);
}

table.colored thead tr {
  padding-right: 0;
}

table.colored.responsive-table tr td {
  background: transparent;
}

table.colored.primary thead th {
  background: var(--primary-color);
  color: #ffffff;
}

table.colored.primary td {
  background: rgba(var(--primary-rgb), 0.1);
}

table.colored.primary.responsive-table tbody {
  background: rgba(var(--primary-rgb), 0.1);
}

table.colored.accent thead th {
  background: var(--accent-color);
  color: #ffffff;
}

table.colored.accent td {
  background: rgba(var(--accent-rgb), 0.1);
}

table.colored.accent.responsive-table tbody {
  background: rgba(var(--accent-rgb), 0.1);
}

/*----------------------------------------
  Site - Dark Mode - Table
----------------------------------------*/
[data-site_mode=dark] table {
  background-color: var(--dark-800);
}

[data-site_mode=dark] table:not(.datepicker-table) tr {
  border-bottom: 1px solid var(--dark-700);
}

[data-site_mode=dark] table.striped > tbody > tr:nth-child(odd) {
  background-color: rgba(33, 33, 33, 0.25);
}

/*----------------------------------------
  Fancybox
----------------------------------------*/
body .fancybox-bg {
  background-color: var(--dark-900);
}

body .fancybox-thumbs {
  background-color: transparent;
}

body .fancybox-thumbs__list a:before {
  border: 3px solid var(--primary-color);
}

body .fancybox-progress {
  background-color: var(--primary-color);
}

body .fancybox-share {
  background-color: rgba(50, 50, 50, 0.8);
  color: #f5f5f5;
}

body .fancybox-share h1 {
  color: #eeeeee;
}

body .fancybox-share__input {
  color: #eeeeee;
}

body .fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
}

body .fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background-color: var(--dark-900);
  border-radius: 2px;
}

body .fancybox-toolbar {
  margin: 0 auto;
  right: auto;
  left: auto;
  left: 50%;
  margin-left: -132px;
  top: 20px;
  border-radius: var(--border-radius-button);
}

body .fancybox-button {
  border-radius: var(--border-radius-button);
  margin: 1px;
}

.fancybox-button:focus {
  background: var(--primary-color);
}

body .fancybox-thumbs__list a {
  border-radius: var(--border-radius);
}

body .fancybox-image, body .fancybox-spaceball,
body .fancybox-can-zoomIn .fancybox-content {
  border-radius: var(--border-radius);
}

body .fancybox-navigation .fancybox-button:focus {
  background: transparent;
  /* background-clip: content-box;
  height: 50px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 25px);
  width: 50px; */
}

body .fancybox-navigation .fancybox-button div {
  background: rgba(30, 30, 30, 0.6);
  border-radius: var(--border-radius-button);
}

/*----------------------------------------
  Image Filter Overlay
----------------------------------------*/
.carousel-item:after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  top: 0px;
  left: 0px;
}

.walk_carousel .carousel-item:after {
  background-color: rgba(var(--primary-filter), 0.25);
}

.about_carousel .carousel-item:after {
  background-color: rgba(var(--primary-filter), 0.2);
}

.carousel-item:after {
  background-color: rgba(var(--primary-filter), 0.2);
}

.home_carousel .carousel-item:after {
  background-color: rgba(var(--primary-filter), 0.1);
}

.carousel-products-home .carousel-item:after {
  background-color: rgba(var(--primary-filter), 0.2);
}

.carousel-events-home .carousel-item:after {
  background-color: rgba(var(--primary-filter), 0.2);
}

.carousel-university-home .carousel-item:after {
  background-color: rgba(var(--primary-filter), 0.2);
}

.carousel-dashboard-home .carousel-item:after {
  background-color: rgba(var(--primary-filter), 0.4);
}

.profile-carousel .carousel-item:after {
  background-color: rgba(var(--primary-filter), 0.1);
}

.fullscreencarousel .carousel-item:after {
  background-color: rgba(var(--primary-filter), 0.2);
}

.carousel-content .carousel-item:after,
.carousel-fullwidth .carousel-item:after,
.carousel-small .carousel-item:after {
  background-color: rgba(var(--primary-filter), 0.1);
}

.primg:after {
  background-color: rgba(var(--primary-filter), 0.1);
}

.circle.responsive-img {
  vertical-align: top;
}

.img-wrap {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  /* height: 100%; */
}

.img-wrap:after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  top: 0px;
  left: 0px;
  background-color: rgba(var(--primary-filter), 0.05);
}

.img-wrap.circle:after {
  border-radius: var(--border-radius-50percent);
}

.img-wrap img {
  vertical-align: top;
}

.card-image .img-wrap img {
  z-index: 1;
}

.card-image .img-wrap:after {
  z-index: 2;
}

.card-image .card-title {
  z-index: 3;
}

.card-image:after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  top: 0px;
  left: 0px;
  background-color: rgba(var(--primary-filter), 0.1);
  z-index: 2;
  border-radius: var(--border-radius);
}

.slider1 .slides .img-wrap:after,
.slider2 .slides .img-wrap:after,
.slider3 .slides .img-wrap:after,
.slider4 .slides .img-wrap:after,
.slider39 .slides .img-wrap:after,
.slider29 .slides .img-wrap:after,
.slider19 .slides .img-wrap:after {
  background-color: rgba(var(--primary-filter), 0.3);
}

.parallax.img-wrap:after {
  background-color: rgba(var(--primary-filter), 0.2);
}

.tabs-swipable .carousel-item:after {
  content: none;
}

.login-bg:after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  top: 0px;
  left: 0px;
  background-color: rgba(var(--primary-filter), 0.15);
  z-index: 2;
}

.login-bg.access-welcome:after,
.login-bg.access-contact-call:after,
.login-bg.access-chat-video:after,
.login-bg.access-login:after,
.login-bg.access-register:after,
.login-bg.access-503:after {
  background-color: rgba(var(--primary-filter), 0.35);
}

.img-wrap.round:after,
.img-wrap.round,
.img-wrap.round img {
  border-radius: var(--border-radius);
}

.img-wrap.round-top:after,
.img-wrap.round-top,
.img-wrap.round-top img {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.img-wrap.round-bottom:after,
.img-wrap.round-bottom,
.img-wrap.round-bottom img {
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

/* 2dp elevation modified*/
.z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-small, .btn-floating, .dropdown-content, .collapsible, .sidenav, .addtocart.btn-float,
.events .people a img, .ui-profile .primg, .ui-profile .avatar-list a img, .menu-full.menu-open .menu-close, .blogs.blog-view, .editprof-img img, .events.mini .event-item .info {
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
}

.z-depth-1-half, .btn:hover, .btn-large:hover, .btn-small:hover, .btn-floating:hover {
  -webkit-box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.14), 0 1px 27px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.14), 0 1px 27px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.1);
}

/* 6dp elevation modified*/
.z-depth-2 {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1), 0 1px 20px 0 rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1), 0 1px 20px 0 rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

/* 12dp elevation modified*/
.z-depth-3 {
  -webkit-box-shadow: 0 8px 27px 2px rgba(0, 0, 0, 0.1), 0 3px 24px 2px rgba(0, 0, 0, 0.1), 0 5px 5px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 27px 2px rgba(0, 0, 0, 0.1), 0 3px 24px 2px rgba(0, 0, 0, 0.1), 0 5px 5px -3px rgba(0, 0, 0, 0.1);
}

/* 16dp elevation */
.z-depth-4 {
  -webkit-box-shadow: 0 16px 34px 2px rgba(0, 0, 0, 0.1), 0 6px 40px 5px rgba(0, 0, 0, 0.1), 0 8px 10px -7px rgba(0, 0, 0, 0.1);
  box-shadow: 0 16px 34px 2px rgba(0, 0, 0, 0.1), 0 6px 40px 5px rgba(0, 0, 0, 0.1), 0 8px 10px -7px rgba(0, 0, 0, 0.1);
}

/* 24dp elevation */
.z-depth-5, .modal {
  -webkit-box-shadow: 0 24px 48px 3px rgba(0, 0, 0, 0.1), 0 9px 56px 8px rgba(0, 0, 0, 0.1), 0 11px 15px -7px rgba(0, 0, 0, 0.1);
  box-shadow: 0 24px 48px 3px rgba(0, 0, 0, 0.1), 0 9px 56px 8px rgba(0, 0, 0, 0.1), 0 11px 15px -7px rgba(0, 0, 0, 0.1);
}

.collection.activity {
  background: transparent;
  border: none;
  overflow: visible;
}

.collection.activity .collection-item {
  border-radius: var(--border-radius);
}

.collection.activity .collection-item.avatar .maillink {
  position: relative;
}

.collection.activity .collection-item.avatar .img-wrap img {
  position: relative;
  top: 0px;
}

.collection.activity .collection-item.avatar .status:after {
  top: 22px;
  left: 54px;
}

.collection.activity .collection-item .media {
  display: inline-block;
  padding: 0px 0px 0px 0px;
}

.collection.activity .collection-item .media .user-actions {
  padding: 0px 0px 0px 15px;
}

.collection.activity .collection-item {
  margin-bottom: 30px;
}

.collection.activity .collection-item .media textarea.materialize-textarea {
  min-height: 40px;
}

.collection.activity .collection-item .media .input-field {
  margin: 10px 0 10px 0;
}

.collection.activity .collection-item.avatar p {
  font-size: 100%;
  margin-top: 5px;
  opacity: 1;
}

.contain-hc.social-home .container.full ul.collection.activity {
  margin-top: 30px;
}

.contain-hc.social-home .container .overlay {
  top: 20px;
  margin-bottom: 40px;
}

.contain-hc.social-home .friends-wrap a p {
  display: none;
}

.contain-hc.social-home .container .flickity-viewport,
.contain-hc.social-home .container .flickity-slider {
  min-height: 160px;
}

.contain-hc.social-home .container.social-gallery-carousel .flickity-viewport,
.contain-hc.social-home .container.social-gallery-carousel .flickity-slider {
  min-height: 240px;
}

.contain-hc.social-home .collection.gallery.vertical .collection-item.avatar {
  width: 90px;
}

.contain-hc.social-home .collection.gallery.vertical .collection-item.avatar img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.contain-hc.social-home .collection.gallery.vertical .collection-item.avatar .title {
  font-size: 14px;
}

.contain-hc.social-home .container.friends-carousel {
  min-height: 145px;
  z-index: 1;
  position: relative;
}

.contain-hc.social-home .container.friends-carousel .section {
  padding-bottom: 0;
}

.contain-hc.social-home .collection.gallery.vertical .collection-item.avatar .status:after {
  left: 68px;
}

.contain-hc.social-home .collection.gallery.vertical .collection-item.avatar:not(:last-child):after {
  height: 100px;
}

.activity-list .collection.activity .collection-item {
  margin-bottom: 30px;
}

[data-site_mode=dark] .activity .media .input-field.col, [data-site_mode=dark] .activity .media .input-field {
  background-color: var(--dark-700);
}

.pagehead-bg {
  position: absolute;
  background: transparent;
  width: 100%;
  height: 300px;
  background-position: center bottom;
  background-size: cover;
  background-image: url(/assets/images/app-header-illustration.png);
}

.ui-profile:before,
.pagehead-bg:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  background-attachment: fixed;
  background-size: cover;
  opacity: 0.1;
}

.container.has-pagehead {
  min-height: 150px;
}

.pagehead-bg.rounded {
  min-height: 300px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  margin-left: -20%;
  width: 140%;
}

.pagehead-bg.round-invert {
  min-height: 300px;
}

.pagehead-bg.round-invert:after {
  content: " ";
  position: absolute;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  margin-left: -20%;
  width: 140%;
  background-color: #f5f5f5;
  height: 100%;
  top: 240px;
}

.pagehead-bg + .is-pagetitle .pagetitle {
  color: var(--dark-900);
}

.pagehead-bg + .is-pagetitle .pagetitle::after,
.pagehead-bg + .is-pagetitle .pagetitle::before {
  background-color: var(--dark-900);
}

[data-header=dark] .pagehead-bg + .is-pagetitle .pagetitle {
  color: white !important;
}

[data-header=dark] .pagehead-bg + .is-pagetitle .pagetitle::after,
.pagehead-bg + .is-pagetitle .pagetitle::before {
  background-color: white !important;
}

/*----------------------
User Actions
-----------------------*/
/* .activity .user-actions{
  position: absolute;
  margin-top: -60px;
  left: 30px;
} */
.user-actions a {
  margin: 14px 5px 0px 5px;
  display: inline-block;
}

.user-actions a span {
  position: relative;
  top: -2px;
  margin-right: 4px;
}

.user-actions a i {
  font-size: 18px;
  color: var(--primary-color);
  margin-right: 4px;
}

.user-avatar .title {
  font-weight: 500;
  /* text-transform: uppercase; */
  margin-bottom: 3px;
  display: inline-block;
}

.user-avatar .title,
.user-avatar .time {
  display: block;
}

.user-avatar .time,
.user-avatar p {
  font-size: 12px;
  line-height: 21px;
  opacity: 0.8;
  white-space: nowrap;
}

.user-avatar .maillink {
  position: relative;
  color: var(--dark-700);
  padding: 5px 0px 15px 0px;
  display: inline-block;
  width: 100%;
}

.user-avatar img {
  height: 42px;
  width: 42px;
  float: left;
  margin-top: 4px;
  margin-right: 14px;
}

.user-view .status:after,
.user-avatar .status:after,
.collection-item.avatar .status:after {
  content: " ";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 17px;
  left: 54px;
  border-radius: 50%;
  border: 1px solid #ffffff;
}

.notifications .collection-item.avatar .status:after,
.mailbox .collection-item.avatar .status:after {
  top: 22px;
  left: 54px;
}

.user-avatar .status:after {
  top: 10px;
  left: 34px;
}

.user-view .status:after {
  top: 18px;
  left: 68px;
}

.user-view .available:after,
.user-avatar .available:after,
.collection-item.avatar .available:after {
  background-color: var(--green-color);
}

.user-view .away:after,
.user-avatar .away:after,
.collection-item.avatar .away:after {
  background-color: var(--orange-color);
}

.user-view .idle:after,
.user-avatar .idle:after,
.collection-item.avatar .idle:after {
  background-color: var(--blue-color);
}

.user-view .busy:after,
.user-avatar .busy:after,
.collection-item.avatar .busy:after {
  background-color: var(--red-color);
}

.user-view .offline:after,
.user-avatar .offline:after,
.collection-item.avatar .offline:after {
  background-color: var(--blue-grey-color);
}

.user-avatar.mini img {
  height: 32px;
  width: 32px;
}

.user-avatar.mini .time {
  float: right;
  display: inline;
  top: 7px;
  position: relative;
}

.user-avatar.mini .title {
  display: inline;
  top: 7px;
  position: relative;
}

.user-avatar.mini .status:after {
  top: 10px;
  left: 24px;
}

/*----------------------
  Media grids
-----------------------*/
.blog-img-wrap .row,
.collection.activity .media .row {
  margin: 0px -10px 0 0;
}

.collection.activity .media .row .col,
.blog-img-wrap .row .col {
  padding: 0px 10px 0px 0;
}

.collection.activity .media .row .col.s12,
.blog-img-wrap .row .col.s12,
.blog-img-wrap .row .col .col,
.collection.activity .media .row .col .col {
  padding: 0px 10px 10px 0;
}

.blog-img-wrap .row .col {
  margin: 0;
}

/*----------------------
  Avatar List
-----------------------*/
.avatar-list {
  margin: 15px 0 15px 0;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}

.avatar-list a img {
  width: 36px;
  height: 36px;
  border: 1px solid #f5f5f5;
  vertical-align: top;
}

.avatar-list a {
  margin-top: 10px;
  margin: 0 -5px 0 0;
  float: left;
}

.avatar-list .people-total {
  color: var(--primary-color);
  margin-left: 19px;
  font-size: 13px;
  line-height: 36px;
  display: inline-block;
}

.ui-profile .avatar-list a img {
  border-color: var(--primary-color);
  width: 40px;
  height: 40px;
}

.ui-profile .avatar-list {
  width: auto;
  margin-top: 5px;
}

.ui-profile .avatar-list .people-total {
  color: #ffffff;
  margin-left: 15px;
}

[data-site_mode=dark] .avatar-list a img {
  border-color: rgba(0, 0, 0, 0.3);
}

[data-site_mode=dark] .user-actions a,
[data-site_mode=dark] .user-actions a i,
[data-site_mode=dark] .avatar-list .people-total {
  color: #f5f5f5;
}

[data-site_mode=dark] .events.mini .event-item .info {
  background-color: var(--dark-800);
}

[data-site_mode=dark] .user-avatar .time, [data-site_mode=dark] .user-avatar p {
  color: #aaaaaa;
}

.menu-transform.menu-open {
  background: #ffffff;
}

.menu-transform .content-area {
  transition: 300ms;
}

.menu-transform.menu-open .content-area {
  transform: scale(0.8) translateX(80%);
  overflow: hidden;
  margin-top: 10vh;
  max-height: 80vh;
  height: 80vh;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 9999;
  position: relative;
}

.menu-transform.menu-open nav.topbar,
.menu-transform.menu-open .footer-menu {
  display: none !important;
}

.menu-transform .sidenav-overlay {
  opacity: 0 !important;
}

.menu-transform.menu-open .sidenav {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/*------------------------------------------------*/
.menu-close {
  display: none;
}

.menu-full .sidenav {
  opacity: 0;
  transition: opacity 250ms;
}

.menu-full.menu-open .sidenav {
  opacity: 1;
}

.menu-full.menu-open .sidenav {
  width: 100% !important;
}

.menu-full.menu-open .menu-close {
  display: block;
  position: fixed;
  left: 50%;
  bottom: 50px;
  top: auto;
  cursor: pointer;
  z-index: 999;
  background-color: var(--primary-color);
  margin-left: -20px;
  height: 40px;
  padding: 0px;
  text-align: center;
  width: 40px;
  border-radius: var(--border-radius-button);
  color: #ffffff;
  /* -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 3px 11px -2px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1); */
}

.menu-full.menu-open .menu-close i {
  font-size: 18px;
  line-height: 40px;
}

/*----------------------------------------
  Site - Dark Mode
----------------------------------------*/
body[data-site_mode=dark] {
  color: #eeeeee;
  background-color: var(--dark-900);
}

body[data-site_mode=dark] .preloader-background {
  background-color: var(--dark-900);
}

[data-menu=dark] .ui-mediabox .divider,
[data-site_mode=dark] .container .divider {
  background-color: var(--dark-700);
}

[data-site_mode=dark] .subpages .collection-item a {
  color: #CFD8DC;
}

[data-site_mode=dark] .collection.subpages .collection-item {
  border-bottom: none;
  background-color: transparent;
}

[data-site_mode=dark] .collection.subpages .collection-item:hover {
  background: transparent;
}

[data-site_mode=dark] .collection.subpages {
  border: 0px solid var(--dark-700);
}

[data-site_mode=dark] .container.over,
[data-site_mode=dark] .container.friends-carousel .friends-wrap,
[data-menu=dark] .subpages.collection {
  background: var(--dark-800);
}

@media only screen and (max-width: 600px) {
  .tooltiptext p {
    font-size: 0.5em !important;
    line-height: 0.75em !important;
  }
}
.relative {
  position: relative !important;
}

.absolute {
  position: absolute;
}

.hotspotHolder {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hotspotHolder.is-active {
  z-index: 3;
}

.hotspotTooltip.is-active .tooltiptext {
  visibility: visible;
  z-index: 3;
}
.hotspotTooltip:focus .hotspotTrigger, .hotspotTooltip:focus-visible .hotspotTrigger {
  outline: #fb9236 solid 4px !important;
}
.hotspotTooltip .hotspotTrigger {
  transform: translate(0%, -50%);
  z-index: 2;
  text-shadow: 0px 0px 1px black, 0px 0px 2px black, 0px 0px 3px black, 0px 0px 4px black, 0px 0px 5px black, 0px 0px 8px black;
  font-size: 1rem;
  white-space: nowrap;
  color: white;
}
@media only screen and (max-width: 768px) {
  .hotspotTooltip .hotspotTrigger {
    font-size: 0.3em !important;
    line-height: 0.5em !important;
  }
  .hotspotTooltip .hotspotTrigger i {
    font-size: 0.3rem !important;
  }
}
.hotspotTooltip .hotspotTrigger:after {
  content: "";
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 0 0 0 black;
  margin: 0px;
  height: 1em;
  width: 1em;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: scale(1);
  animation: pulse-black 2s infinite;
}
@media only screen and (max-width: 600px) {
  .hotspotTooltip .hotspotTrigger:after {
    font-size: 0.75em;
    animation: pulse-black-mobile 2s infinite;
  }
}
@keyframes pulse-black {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes pulse-black-mobile {
  0% {
    transform: scale(0.25);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(0.5);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.25);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
.hotspotTooltip .tooltiptext {
  visibility: hidden;
  background-color: black;
  color: white;
  border-radius: 6px;
  padding: 5px 10px;
  margin-top: 15px;
  position: absolute;
  z-index: 1;
}
.hotspotTooltip .tooltiptext.right {
  transform: translate(-75%, 0%);
}
.hotspotTooltip .tooltiptext p {
  color: white;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 600px) {
  .hotspotTooltip .tooltiptext p,
.hotspotTooltip .tooltiptext p strong {
    font-size: 0.3rem !important;
    line-height: 0.5rem !important;
  }
}

.controlbuttons {
  width: 100%;
  height: 75px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.controlbuttons button {
  margin: 0px 5px;
}

.homeHero {
  background-image: url("/assets/images/ytv-front-gate-hero-image.jpg") !important;
  background: transparent;
  background-size: cover !important;
  background-position: center center;
  border-radius: 20px !important;
  padding: 50px 20px !important;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.homeHero .overlay {
  content: "";
  position: absolute !important;
  width: 100%;
  height: 100%;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  background: rgba(0, 0, 0, 0.5) !important;
}
.homeHero .section {
  position: relative;
  z-index: 9000;
}
.homeHero .logo {
  width: 250px;
  height: auto;
  display: block;
  margin: 0px auto 30px auto;
}
.homeHero h1, .homeHero h2, .homeHero h3, .homeHero h4, .homeHero h5, .homeHero h6, .homeHero p, .homeHero ul, .homeHero li {
  color: white !important;
}
.homeHero h2 {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
.homeHero h2 span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.homeHero .countdownHolder {
  margin-top: 50px;
}
.homeHero .countdownHolder span:not(:last-of-type) {
  margin-right: 20px;
}
.homeHero .countdownHolder .bignumber {
  font-size: 2rem;
  color: white !important;
  font-weight: 900;
}
.homeHero .countdownHolder .note {
  font-size: 1rem;
}

/*# sourceMappingURL=style.css.map */
