body p{
    color:#585858;
}

#butter {
  min-height: 100%;
}

#butter .container{
  margin-bottom: 100px;
}

.parallax {

    /* Set a specific height */
    min-height: 200px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Extra small devices (phones, 600px and down) */
@media screen and (max-width: 600px) {
    .parallax{
        min-height: 200px !important;
    }

    input{
        font-size: small;
    }
}

.glass-effect {
    width: 30rem;
    height: 20rem;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 5px;
    position: relative;
    z-index: 1;
    background: inherit;
    overflow: hidden;
  }
  
  .glass-effect:before {
    content: "";
    position: absolute;
    background: inherit;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    filter: blur(10px);
    margin: -20px;
  }


  /* Popover */
  /* popover */
details[data-popover] {
    display: inline;
    position: relative;
  }
  details[data-popover] > summary:focus {
    outline: none;
  }
  details[data-popover] > summary::-webkit-details-marker {
    display: none;
  }
  details[data-popover] > summary {
    list-style: none;
    text-decoration: underline dotted teal;
  }
  details[data-popover] > summary + * {
    position: absolute;
    display: block;
    z-index: 1;
    width: 350%;
    border: solid 1px teal;
    border-radius: 5%;
    padding: 10px;
    background: white;
  }
  details[data-popover] > * + * {
    /* hide detail elements that would ruin the popover */
    display: none;
  }
  details[data-popover="up"] > summary + * {
    bottom: calc(0.5rem + 100%);
    right: 50%;
    transform: translateX(50%);
  }
  details[data-popover="down"] > summary + * {
    top: calc(0.5rem + 100%);
    right: 50%;
    transform: translateX(50%);
  }
  details[data-popover="left"] > summary + * {
    right: calc(1rem + 100%);
    bottom: 50%;
    transform: translateY(50%);
  }
  details[data-popover="right"] > summary + * {
    left: calc(1rem + 100%);
    bottom: 50%;
    transform: translateY(50%);
  }
  
  /* wrapper setup */
  .wrapper {
    width: 100%;
    padding: 250px;
  }

  /* Floating */
  @import url("https://fonts.googleapis.com/css?family=Roboto");
@-webkit-keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
    transform: translatey(100px);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
    transform: translateX(-50px) scale(0.4);
  }
  70% {
    -webkit-transform: translateX(0px) scale(1.2);
    transform: translateX(0px) scale(1.2);
  }
  100% {
    -webkit-transform: translatey(0px) scale(1);
    transform: translatey(0px) scale(1);
    opacity: 1;
  }
}
@keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
    transform: translatey(100px);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
    transform: translateX(-50px) scale(0.4);
  }
  70% {
    -webkit-transform: translateX(0px) scale(1.2);
    transform: translateX(0px) scale(1.2);
  }
  100% {
    -webkit-transform: translatey(0px) scale(1);
    transform: translatey(0px) scale(1);
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
}

.floating-container {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  margin: 35px 25px;
}
.floating-container:hover {
  height: 300px;
}
.floating-container:hover .floating-button {
  box-shadow: 0 10px 25px rgba(44, 179, 240, 0.6);
  -webkit-transform: translatey(5px);
  transform: translatey(5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.floating-container:hover .element-container .float-element:nth-child(1) {
  -webkit-animation: come-in 0.4s forwards 0.2s;
  animation: come-in 0.4s forwards 0.2s;
}
.floating-container:hover .element-container .float-element:nth-child(2) {
  -webkit-animation: come-in 0.4s forwards 0.4s;
  animation: come-in 0.4s forwards 0.4s;
}
.floating-container:hover .element-container .float-element:nth-child(3) {
  -webkit-animation: come-in 0.4s forwards 0.6s;
  animation: come-in 0.4s forwards 0.6s;
}
.floating-container .floating-button {
  position: absolute;
  width: 65px;
  height: 65px;
  background: #2cb3f0;
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  line-height: 65px;
  text-align: center;
  font-size: 23px;
  z-index: 100;
  box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.floating-container .float-element {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 15px auto;
  color: white;
  font-weight: 500;
  text-align: center;
  line-height: 50px;
  z-index: 0;
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}
.floating-container .float-element .fa{
  vertical-align: middle;
  font-size: 16px;
}
/* .floating-container .float-element:nth-child(1) {
  background: #42a5f5;
  box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
}
.floating-container .float-element:nth-child(2) {
  background: #4caf50;
  box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}
.floating-container .float-element:nth-child(3) {
  background: #ff9800;
  box-shadow: 0 20px 20px -10px rgba(255, 152, 0, 0.5);
} */

hr.style-two {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

hr.style5 {
	background-color: #fff;
	border-top: 2px dashed #8c8b8b;
}

.colour-block {
  background:#0093dc;
  width:60%;
  padding:80px 30px 30px 30px;
  color:#fff !important;
}
.white-block {
  background:#fff;
  width:60%;
  padding:30px 30px 30px 30px;
  color:rgb(0, 0, 0) !important;
}

/*------------------*/
/*  SKEW CLOCKWISE  */
/*------------------*/
.skew-cc{
  width:100%;
  height:100px;
  position:absolute;
  left:0px;
  background: linear-gradient(to right bottom, #0093dc 49%, #fff 50%),    linear-gradient(-50deg, #ffffff 16px, #000 0);
}


/*-------------------------*/
/* SKEW COUNTER CLOCKWISE  */
/*-------------------------*/
.skew-c{
  width:100%;
  height:100px;
  position:absolute;
  left:0px;
  background: linear-gradient(to left bottom, #fff 49%, #0093dc 50%), linear-gradient(-50deg, #ffffff 16px, #000 0);
}

/* ------------------------------------------------------------------ */
/* Sidebar visual polish (template 2020)                              */
/* ------------------------------------------------------------------ */
.left_col {
	background: linear-gradient(180deg, #1e4d6b 0%, #2a3f54 100%) !important;
}

.left_col .nav_title {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.left_col .site_title {
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 52px;
	height: 52px;
	padding-left: 14px;
	letter-spacing: 0.02em;
}

.left_col .site_title i {
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 6px 7px;
	border-radius: 8px;
	font-size: 0.95rem;
	margin-right: 4px;
	vertical-align: middle;
}

/* Profile card */
.left_col .desk-sidebar-profile {
	float: none;
	margin: 12px 12px 8px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.left_col .desk-sidebar-profile .profile_pic {
	width: auto;
	float: none;
	flex-shrink: 0;
}

.left_col .desk-sidebar-profile .sidebar-avatar-wrap {
	position: relative;
	width: 48px;
	height: 48px;
}

.left_col .desk-sidebar-profile .profile_img {
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.left_col .desk-sidebar-profile .sidebar-avatar-initials {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(38, 166, 154, 0.35);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	border-radius: 50%;
	z-index: 2;
	letter-spacing: 0.05em;
}

.left_col .desk-sidebar-profile .sidebar-avatar--default .profile_img {
	opacity: 0;
}

.left_col .desk-sidebar-profile .profile_info {
	padding: 0;
	width: auto;
	float: none;
	min-width: 0;
	flex: 1;
}

.left_col .desk-sidebar-profile .sidebar-welcome {
	font-size: 0.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.55);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	display: block;
}

.left_col .desk-sidebar-profile .sidebar-user-name {
	font-size: 0.9rem;
	font-weight: 600;
	color: #fff;
	margin: 2px 0 0;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Scrollable menu area */
.left_col .scroll-view {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.left_col #sidebar-menu {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	padding-bottom: 16px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.left_col #sidebar-menu::-webkit-scrollbar {
	width: 5px;
}

.left_col #sidebar-menu::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
}

/* Section headers */
.left_col .menu_section {
	margin-bottom: 8px;
}

.left_col .menu_section h3 {
	padding: 10px 16px 4px;
	color: rgba(255, 255, 255, 0.45);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
	font-size: 0.65rem;
	margin: 0;
	text-shadow: none;
}

.left_col .menu_section > ul {
	margin-top: 4px;
}

/* Menu items */
.left_col .nav.side-menu > li > a,
.left_col .nav.child_menu > li > a {
	padding: 10px 16px 10px 14px;
	font-size: 0.85rem;
	line-height: 1.35;
	transition: background 0.15s ease, color 0.15s ease;
}

.left_col .nav.side-menu > li > a {
	margin-bottom: 2px;
}

.left_col .nav.side-menu > li > a > i.fa:first-child,
.left_col .nav.child_menu > li > a > i.fa:first-child {
	display: inline-block;
	width: 20px;
	text-align: center;
	margin-right: 8px;
	font-size: 0.9rem;
	opacity: 0.85;
}

.left_col .main_menu span.fa {
	margin-top: 3px;
	font-size: 0.65rem;
	opacity: 0.6;
}

.left_col .nav.side-menu > li > a:hover,
.left_col .nav.child_menu > li > a:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	color: #fff !important;
	text-decoration: none;
}

/* Active / current page */
.left_col .nav.side-menu > li.current-page,
.left_col .nav.side-menu > li.active,
.left_col .nav-sm .nav.side-menu > li.active-sm {
	border-right: 3px solid #26a69a !important;
}

.left_col .nav li.current-page {
	background: rgba(38, 166, 154, 0.12) !important;
}

.left_col .nav.side-menu > li.active > a,
.left_col .nav.side-menu > li.current-page > a {
	background: rgba(255, 255, 255, 0.08) !important;
	box-shadow: none !important;
	text-shadow: none !important;
	color: #fff !important;
}

.left_col .nav.child_menu > li.current-page {
	background: rgba(38, 166, 154, 0.15) !important;
}

.left_col .nav.child_menu > li.current-page > a {
	color: #fff !important;
	font-weight: 600;
}

/* Child menu tree */
.left_col .nav.child_menu li {
	padding-left: 28px;
}

.left_col .nav-md ul.nav.child_menu li:before {
	background: rgba(255, 255, 255, 0.2);
	width: 6px;
	height: 6px;
	left: 18px;
	margin-top: 16px;
}

.left_col .nav-md ul.nav.child_menu li:after {
	border-left-color: rgba(255, 255, 255, 0.12);
	left: 20px;
}

.left_col .nav.child_menu li:hover,
.left_col .nav.child_menu li.active {
	background-color: rgba(255, 255, 255, 0.05);
}

/* Collapsed sidebar (nav-sm) */
.nav-sm .left_col .desk-sidebar-profile {
	margin: 8px 4px;
	padding: 8px 4px;
	flex-direction: column;
	text-align: center;
}

.nav-sm .left_col .desk-sidebar-profile .profile_info {
	display: none;
}

.nav-sm .left_col .desk-sidebar-profile .sidebar-avatar-wrap {
	margin: 0 auto;
}

.nav-sm .left_col .nav.side-menu > li > a {
	padding: 12px 5px;
}

.nav-sm .left_col .menu_section h3 {
	display: none;
}

/* ------------------------------------------------------------------ */
/* Top navbar visual polish (template 2020)                           */
/* ------------------------------------------------------------------ */
.desk-topnav .nav_menu,
.desk-topnav-bar {
	margin: 0 !important;
	background: #fff !important;
	border-bottom: 1px solid #e2e8f0 !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	min-height: 56px;
	display: flex;
	align-items: center;
	padding: 0 12px 0 0;
}

.desk-topnav .desk-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 8px 4px 8px 12px;
	padding: 0;
	border-radius: 8px;
	color: #2a3f54 !important;
	background: #f4f6f9;
	border: 1px solid #e2e8f0;
	transition: background 0.15s ease, color 0.15s ease;
	cursor: pointer;
	font: inherit;
	line-height: 1;
	-webkit-appearance: none;
	appearance: none;
}

.desk-topnav .desk-menu-toggle:hover {
	background: #e8eef3;
	color: #1e4d6b !important;
	text-decoration: none;
}

.desk-topnav .desk-topnav-actions {
	margin-left: auto;
	float: none !important;
}

.desk-topnav .navbar-right {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	float: none !important;
}

.desk-topnav .desk-topnav-item {
	float: none;
	position: relative;
	padding: 0 !important;
}

.desk-topnav .desk-user-toggle {
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	padding: 6px 12px 6px 8px !important;
	border-radius: 10px;
	border: 1px solid transparent;
	color: #2a3f54 !important;
	text-decoration: none !important;
	transition: background 0.15s ease, border-color 0.15s ease;
	max-width: 280px;
}

.desk-topnav .desk-user-toggle:hover {
	background: #f4f6f9;
	border-color: #e2e8f0;
}

.desk-topnav .desk-navbar-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, #26a69a 0%, #2a3f54 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.desk-topnav .desk-navbar-initials {
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
}

.desk-topnav .desk-user-meta {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.25;
	text-align: left;
}

.desk-topnav .desk-user-name {
	font-size: 0.85rem;
	font-weight: 600;
	color: #2a3f54;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.desk-topnav .desk-user-nip {
	font-size: 0.72rem;
	color: #6c757d;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.desk-topnav .desk-user-chevron {
	font-size: 0.65rem;
	color: #adb5bd;
	margin-left: 2px;
}

.desk-topnav .desk-notif-toggle {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 40px;
	height: 40px;
	margin: 8px 8px 8px 4px;
	border-radius: 10px;
	color: #2a3f54 !important;
	background: #f4f6f9;
	border: 1px solid #e2e8f0;
	transition: background 0.15s ease;
}

.desk-topnav .desk-notif-toggle:hover {
	background: #e8eef3;
	text-decoration: none;
}

.desk-topnav .desk-notif-icon {
	font-size: 1.1rem;
	line-height: 1;
}

.desk-topnav .desk-topnav-dropdown {
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	padding: 8px 0;
	min-width: 260px;
	margin-top: 6px;
}

.desk-topnav .desk-notif-dropdown {
	min-width: 280px;
}

.desk-topnav .desk-topnav-dropdown .dropdown-header {
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #6c757d;
	padding: 4px 16px 8px;
	margin: 0;
	text-align: left;
	border-bottom: 1px solid #f1f3f5;
}

.desk-topnav .desk-topnav-dropdown .dropdown-item {
	display: flex;
	align-items: center;
	gap: 0;
	padding: 0;
	font-size: 0.85rem;
	color: #495057;
	white-space: nowrap;
}

.desk-topnav .desk-topnav-dropdown .dropdown-item:hover {
	background: #f4f6f9;
	color: #2a3f54;
	text-decoration: none;
}

.desk-topnav .desk-notif-item,
.desk-topnav .desk-menu-item {
	padding: 10px 14px;
	gap: 10px;
}

.desk-topnav .desk-notif-item__icon,
.desk-topnav .desk-menu-item__icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #f1f3f5;
	color: #2a3f54;
	font-size: 0.9rem;
}

.desk-topnav .desk-notif-item__label,
.desk-topnav .desk-menu-item__label {
	flex: 1;
	min-width: 0;
	font-weight: 500;
}

.desk-topnav .desk-notif-count {
	flex-shrink: 0;
	min-width: 32px;
	height: 22px;
	padding: 0 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 11px;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
	box-sizing: border-box;
}

.desk-topnav .desk-notif-count--zero {
	background: #e9ecef;
	color: #6c757d;
}

.desk-topnav .desk-notif-count--active {
	background: #dc3545;
	color: #fff;
}

.desk-topnav .desk-menu-item--danger .desk-menu-item__icon {
	background: #fde8e8;
	color: #c0392b;
}

.desk-topnav .desk-menu-item--danger .desk-menu-item__label {
	color: #c0392b;
}

.desk-topnav .desk-notif-badge {
	position: absolute;
	top: 2px;
	right: 2px;
	font-size: 0.6rem;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 9px;
	display: none;
	align-items: center;
	justify-content: center;
	background: #dc3545;
	color: #fff;
	font-weight: 700;
	line-height: 1;
}

.desk-topnav .desk-notif-badge.desk-notif-badge--active {
	display: inline-flex;
}

.desk-topnav .desk-topnav-dropdown .dropdown-divider {
	margin: 6px 0;
	border-color: #f1f3f5;
}

.nav-sm .main_container .desk-topnav {
	margin-left: 70px;
}

@media (max-width: 767px) {
	.desk-topnav .desk-user-meta {
		display: none;
	}

	.desk-topnav .desk-user-chevron {
		display: none;
	}

	.desk-topnav .desk-user-toggle {
		padding: 6px !important;
	}
}

/* ------------------------------------------------------------------ */
/* Mobile sidebar drawer (max-width: 991px)                           */
/* ------------------------------------------------------------------ */
.desk-sidebar-backdrop {
	display: none;
}

@media (max-width: 991px) {
	.nav-sm .main_container .desk-topnav,
	.nav-md .main_container .desk-topnav,
	.desk-topnav {
		margin-left: 0 !important;
		width: 100% !important;
	}

	.nav-sm .container.body .right_col,
	.nav-md .container.body .right_col {
		margin-left: 0 !important;
		width: 100% !important;
	}

	body .container.body .col-md-3.left_col {
		display: block !important;
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		height: 100% !important;
		width: min(280px, 85vw) !important;
		max-width: 85vw !important;
		z-index: 10000 !important;
		transform: translateX(-100%) !important;
		transition: transform 0.25s ease !important;
		margin-left: 0 !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
	}

	body:not(.desk-sidebar-open) .container.body .col-md-3.left_col {
		pointer-events: none !important;
	}

	body.desk-sidebar-open .container.body .col-md-3.left_col {
		transform: translateX(0) !important;
		display: block !important;
		visibility: visible !important;
		width: min(280px, 85vw) !important;
		pointer-events: auto !important;
	}

	body.desk-sidebar-open .container.body .col-md-3.left_col > .left_col.scroll-view {
		min-height: 100%;
		width: 100%;
		background: #2A3F54;
	}

	body.desk-sidebar-open {
		overflow: hidden;
	}

	.desk-sidebar-backdrop {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(15, 23, 42, 0.45);
		z-index: 9999;
	}

	body.desk-sidebar-open .desk-sidebar-backdrop {
		display: block;
	}

	.nav-sm .left_col .nav.side-menu > li > a,
	.nav-md .left_col .nav.side-menu > li > a {
		text-align: left !important;
		font-size: 0.85rem !important;
		padding: 12px 15px !important;
		min-height: 44px;
	}

	.nav-sm .left_col .nav.side-menu li a i,
	.nav-md .left_col .nav.side-menu li a i {
		font-size: 14px !important;
		width: auto !important;
		margin-bottom: 0 !important;
		margin-right: 10px !important;
		text-align: left !important;
	}

	.nav-sm .left_col .menu_section h3,
	.nav-md .left_col .menu_section h3 {
		display: block !important;
	}

	.nav-sm .left_col .desk-sidebar-profile,
	.nav-md .left_col .desk-sidebar-profile {
		display: flex !important;
	}

	.nav-sm .left_col .desk-sidebar-profile .profile_info,
	.nav-md .left_col .desk-sidebar-profile .profile_info {
		display: block !important;
	}

	.nav-sm ul.nav.child_menu,
	.nav-md ul.nav.child_menu {
		position: static !important;
		left: auto !important;
		top: auto !important;
		width: 100% !important;
		background: transparent !important;
		box-shadow: none !important;
	}

	.nav-sm ul.nav.child_menu li a,
	.nav-md ul.nav.child_menu li a {
		text-align: left !important;
		padding-left: 20px !important;
		min-height: 40px;
	}

	.desk-topnav .desk-menu-toggle,
	.desk-topnav .desk-notif-toggle {
		min-width: 44px;
		min-height: 44px;
		width: 44px;
		height: 44px;
	}

	.desk-topnav .desk-user-toggle {
		min-height: 44px;
	}
}

@media (min-width: 992px) {
	.desk-sidebar-backdrop {
		display: none !important;
	}
}
