.combobox-group .input-group::after {
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: transparent #adb5bd #adb5bd transparent;
  content: '';
  display: block;
  height: 7px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all .15s ease-in-out;
  width: 7px;
}

.combobox-group .input-group:focus-within:after {
  transform: rotate(-135deg);
}

.selectize-control.single .selectize-input::after {
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: transparent #adb5bd #adb5bd transparent;
  content: '';
  display: block;
  height: 7px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all .15s ease-in-out;
  width: 7px;
}
.form-control.selectize-control {
  height: auto !important;
}

.selectize-control.single .selectize-input.dropdown-active::after {
  margin-top: -5px;
  border-width: 0 2px 2px 0;
  border-color: transparent #adb5bd #adb5bd transparent;
  transform: rotate(-135deg);
}

/* input:not([type='checkbox']) {
  min-height: calc(1.5em + 2px + 0.5rem);
} */

div.form-control {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
}

textarea.form-control,
input.form-control {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
}

.form-control .selectize-input {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1) !important;
}

/* STEP HEADER */

.form-wizard .form-wizard-header {
  text-align: center;
}

.form-wizard .form-wizard-steps {
  margin: 0 0 10px 0;
}

.form-wizard .form-wizard-steps li {
  width: 15%;
  float: left;
  position: relative;
}

.form-wizard .form-wizard-steps li::after {
  background-color: #f3f3f3;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
}

.form-wizard .form-wizard-steps li span {
  background-color: #dddddd;
  border-radius: 50%;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  position: relative;
  text-align: center;
  width: 35px;
  z-index: 1;
}

.form-wizard .form-wizard-steps li span:hover {
  transform: scale(1.15);
  cursor: pointer;
}

.form-wizard .form-wizard-steps li:last-child::after {
  width: 50%;
}

.form-wizard .form-wizard-steps li.active span,
.form-wizard .form-wizard-steps li.activated span {
  background-color: #ec762c;
  background-image: linear-gradient(to left top, #ec9277, #ec762c);
  color: #ffffff;
  /* animation: loadingstep 3000ms; */
}

.form-wizard .form-wizard-steps li.active span {
  animation: loadingstep 2000ms;
}

.form-wizard .form-wizard-steps li.active::after,
.form-wizard .form-wizard-steps li.activated::after {
  background-color: #ec762c;
  background-image: linear-gradient(to left top, #ec9277, #ec762c);
  left: 50%;
  width: 50%;
  border-color: #ec762c;
  animation: loadingstep 2500ms;
}

.form-wizard .form-wizard-steps li.activated::after {
  width: 100%;
  border-color: #ec762c;
}

.form-wizard .form-wizard-steps li:last-child::after {
  left: 0;
}

@keyframes loadingstep {
  0% {
    background-color: #f3f3f3;
    background-image: none;
  }

  100% {
    background-color: #ec762c;
    background-image: linear-gradient(to left top, #ec9277, #ec762c);
  }
}

.step-description {
  position: absolute;

  width: 100%;
  margin-top: 0.2rem;
  padding: 0.25rem;
  color: #e64d1f;
  background-color: #ffffff;
  display: none;
  border-radius: 4px;
  border: 0.5px solid #e64d1fc2;
  box-shadow: #88a5bf43 4px 2px 8px 0px, #ffffffa9 -4px -2px 8px 0px;
}

.form-wizard .form-wizard-steps li:first-child .step-description {
  right: -40%;
}

.form-wizard .form-wizard-steps li:last-child .step-description {
  left: -40%;
}

.form-wizard .form-wizard-steps li:hover .step-description {
  display: block;
  z-index: 100;
}

/* .step-arrow-up{
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #ec762c;
} */

.notify-unread {
    background-color: papayawhip;
}

.notify-unread a{
    color: #000 !important;
}

.report-plan button:hover {
    background-color: #ffa220 !important;
    color: #fff !important;
}

.report-plan button.active {
  background-color: #ffa220 !important;
  color: #fff !important;
}
.text-warning {
  color:  #ffa220 !important;
}
/* .report-plan button {
  max-height: 50px !important;
} */


/*
*
* RD Navbar
*/
@-webkit-keyframes rd-navbar-slide-down {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes rd-navbar-slide-down {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes rd-navbar-slide-up {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

@keyframes rd-navbar-slide-up {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

.rd-navbar-wrap, .rd-navbar,
.rd-menu,
.rd-navbar-nav,
.rd-navbar-panel, .rd-navbar-static .rd-menu, .rd-navbar-fixed .rd-navbar-nav-outer, .rd-navbar-fixed .rd-navbar-submenu {
	transition: 0.35s all cubic-bezier(0.325, 0.615, 0.355, 0.705);
}

.rd-navbar--no-transition, .rd-navbar--no-transition * {
	transition: none !important;
}

.rd-navbar,
.rd-navbar.rd-navbar--is-clone {
	display: none;
}

.rd-navbar.rd-navbar-fixed + .rd-navbar.rd-navbar--is-clone,
.rd-navbar.rd-navbar-sidebar + .rd-navbar.rd-navbar--is-clone {
	display: none;
}

.rd-navbar {
	display: none;
	background: #fff;
}

.rd-navbar-toggle {
	display: inline-block;
	position: relative;
	width: 48px;
	height: 48px;
	line-height: 48px;
	cursor: pointer;
	color: #292b3a;
	background-color: transparent;
	border: none;
	display: none;
}

.rd-navbar-toggle span {
	position: relative;
	display: block;
	margin: auto;
	transition: .3s all ease;
}

.rd-navbar-toggle span:after, .rd-navbar-toggle span:before {
	content: "";
	position: absolute;
	left: 0;
	top: -8px;
	transition: .3s all ease;
}

.rd-navbar-toggle span:after {
	top: 8px;
}

.rd-navbar-toggle span:after, .rd-navbar-toggle span:before, .rd-navbar-toggle span {
	width: 24px;
	height: 4px;
	background-color: #292b3a;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 0;
}

.rd-navbar-toggle span {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.rd-navbar-toggle span:before, .rd-navbar-toggle span:after {
	-webkit-transform-origin: 1.71429px center;
	transform-origin: 1.71429px center;
}

.rd-navbar-toggle.active span {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

.rd-navbar-toggle.active span:before, .rd-navbar-toggle.active span:after {
	top: 0;
	width: 15px;
}

.rd-navbar-toggle.active span:before {
	-webkit-transform: rotate3d(0, 0, 1, -40deg);
	transform: rotate3d(0, 0, 1, -40deg);
}

.rd-navbar-toggle.active span:after {
	-webkit-transform: rotate3d(0, 0, 1, 40deg);
	transform: rotate3d(0, 0, 1, 40deg);
}

.rd-navbar-collapse-toggle {
	display: inline-block;
	position: relative;
	width: 48px;
	height: 48px;
	line-height: 48px;
	cursor: pointer;
	color: #151515;
	display: none;
}

.rd-navbar-collapse-toggle span {
	top: 50%;
	margin-top: -3px;
}

.rd-navbar-collapse-toggle span, .rd-navbar-collapse-toggle span:before, .rd-navbar-collapse-toggle span:after {
	position: absolute;
	width: 6px;
	height: 6px;
	line-height: 6px;
	text-align: center;
	background: #151515;
	left: 50%;
	margin-left: -3px;
	border-radius: 50%;
	transition: .3s all ease;
}

.rd-navbar-collapse-toggle span:before, .rd-navbar-collapse-toggle span:after {
	content: '';
}

.rd-navbar-collapse-toggle span:before {
	bottom: 100%;
	margin-bottom: 3px;
}

.rd-navbar-collapse-toggle span:after {
	top: 100%;
	margin-top: 3px;
}

.rd-navbar-collapse-toggle.active span {
	-webkit-transform: scale(0.7);
	transform: scale(0.7);
}

.rd-navbar-collapse-toggle.active span:before {
	-webkit-transform: translateY(18px);
	transform: translateY(18px);
}

.rd-navbar-collapse-toggle.active span:after {
	-webkit-transform: translateY(-18px);
	transform: translateY(-18px);
}

.rd-navbar-brand a {
	display: block;
}

.rd-nav-link {
	font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: .025em;
}

.rd-navbar-search {
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.rd-navbar-search .form-input {
	padding-right: 50px;
}

.rd-navbar-search .rd-search-form-submit {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50px;
	padding: 0;
	margin: 0;
	border: none;
	cursor: pointer;
	background-color: transparent;
	color: #d7d7d7;
	transition: .33s;
}

.rd-navbar-search .rd-search-form-submit:hover {
	color: #FFC26C;
}

.rd-navbar-search-toggle {
	background: none;
	border: none;
	display: inline-block;
	padding: 0;
	outline: none;
	outline-offset: 0;
	cursor: pointer;
	-webkit-appearance: none;
}

.rd-navbar-search-toggle::-moz-focus-inner {
	border: none;
	padding: 0;
}

.rd-navbar-dropdown {
	display: none;
}

.rd-megamenu-title {
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .025em;
	color: #292b3a;
}

.rd-sidebar__button {
	background: none;
	border: none;
	display: inline-block;
	padding: 0;
	outline: none;
	outline-offset: 0;
	cursor: pointer;
	-webkit-appearance: none;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 5px;
	background: #292b3a;
	cursor: pointer;
}

.rd-sidebar__button::-moz-focus-inner {
	border: none;
	padding: 0;
}

.rd-sidebar__shape {
	fill: rgba(255, 255, 255, 0.18);
}

.rd-sidebar__list {
	position: fixed;
	right: 0;
	background: #292b3a;
	z-index: 1031;
}

.rd-sidebar__list-item-icon {
	color: #fff;
}

.rd-sidebar__list-item-link {
	font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	letter-spacing: .025em;
	color: #fff;
}

.rd-sidebar__list-item-link:hover {
	color: #FFC26C;
}

/*
* @subsection  RD Navbar Static
*/
.rd-navbar-static {
	display: block;
}

.rd-navbar-static .rd-nav-item {
	display: inline-block;
}

.rd-navbar-static .rd-nav-item.focus > .rd-navbar-submenu-toggle, .rd-navbar-static .rd-nav-item.opened > .rd-navbar-submenu-toggle {
	color: #FFC26C;
}

.rd-navbar-static .rd-nav-item.active > .rd-navbar-submenu-toggle {
	color: #FFC26C;
}

.rd-navbar-static .rd-nav-item.focus > .rd-navbar-submenu-toggle::before,
.rd-navbar-static .rd-nav-item.opened > .rd-navbar-submenu-toggle::before,
.rd-navbar-static .rd-nav-item .rd-nav-link:hover + .rd-navbar-submenu-toggle::before {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.rd-navbar-static .rd-nav-item > .rd-navbar-submenu-toggle {
	margin-left: 4px;
	font-family: "Material Design Icons";
	font-size: 16px;
	cursor: pointer;
}

.rd-navbar-static .rd-nav-item > .rd-navbar-submenu-toggle::before {
	position: relative;
	display: inline-block;
	transition: .22s;
	content: '\f236';
}

.rd-navbar-static .rd-nav-item > .rd-navbar-submenu-toggle:hover {
	color: #FFC26C;
}

.rd-navbar-static .rd-nav-item > .rd-navbar-submenu {
	margin-top: 20px;
}

.rd-navbar-static .rd-nav-item.rd-navbar-submenu {
	margin-right: -8px;
}

.rd-navbar-static .rd-nav-item + .rd-nav-item {
	margin-left: 38px;
}

.rd-navbar-static .rd-nav-link {
	position: relative;
	display: inline-block;
	color: #151515;
	font-size: 17px;
	transition: .25s;
}

.rd-navbar-static .rd-menu {
	position: absolute;
	z-index: 15;
	display: block;
	margin-top: 22px;
	visibility: hidden;
	opacity: 0;
	text-align: left;
	border: 1px solid #f6f6f6;
	-webkit-transform: translate3d(0, 30px, 0);
	transform: translate3d(0, 30px, 0);
}

.rd-navbar-static .rd-dropdown-item + .rd-dropdown-item,
.rd-navbar-static .rd-megamenu-list-item + .rd-megamenu-list-item {
	margin-top: 10px;
}

.rd-navbar-static .rd-navbar-dropdown {
	position: absolute;
	left: -25px;
	width: 270px;
	padding: 20px;
	background: #fff;
	z-index: 5;
}

.rd-navbar-static .rd-navbar-dropdown .rd-navbar-dropdown {
	top: -1px;
	left: 100%;
	z-index: 2;
	margin-top: -15px;
	margin-left: 15px;
	-webkit-transform: translate3d(30px, 0, 0);
	transform: translate3d(30px, 0, 0);
}

.rd-navbar-static .rd-navbar-dropdown .rd-navbar-dropdown.rd-navbar-open-left {
	left: auto;
	right: 100%;
	margin-left: 0;
	margin-right: 15px;
	-webkit-transform: translate3d(-30px, 0, 0);
	transform: translate3d(-30px, 0, 0);
}

.rd-navbar-static .rd-dropdown-item.focus .rd-dropdown-link, .rd-navbar-static .rd-dropdown-item.opened .rd-dropdown-link {
	color: #ffa220;
}

.rd-navbar-static .rd-dropdown-link {
	color: #9b9b9b;
}

.rd-navbar-static .rd-navbar-submenu .rd-navbar-dropdown li > a {
	color: #000000;

}

.rd-navbar-static .rd-dropdown-link:hover {
	color: #FFC26C;
}

.rd-navbar-static .rd-navbar-dropdown li > a,
.rd-navbar-static .rd-megamenu-list li > a {
	position: relative;
	/* left: -3px; */
	display: -ms-flexbox;
	display: flex;
	padding: 1px 14px 1px 0;
	text-align: left;
}

.rd-navbar-static .rd-navbar-dropdown li > a, .rd-navbar-static .rd-navbar-dropdown li > a:focus, .rd-navbar-static .rd-navbar-dropdown li > a:active,
.rd-navbar-static .rd-megamenu-list li > a,
.rd-navbar-static .rd-megamenu-list li > a:focus,
.rd-navbar-static .rd-megamenu-list li > a:active {
	color: #9b9b9b;
}

.rd-navbar-static .rd-navbar-dropdown li > a:hover,
.rd-navbar-static .rd-megamenu-list li > a:hover {
	color: #FFC26C;
	/* color: #fff; */
	font-weight: 500 !important;
}

.rd-navbar-static .rd-navbar-dropdown li > a, .rd-navbar-static .rd-navbar-dropdown li > a::before,
.rd-navbar-static .rd-megamenu-list li > a,
.rd-navbar-static .rd-megamenu-list li > a::before {
	transition: .15s ease-in-out;
}

.rd-navbar-static .rd-navbar-dropdown li > a::before,
.rd-navbar-static .rd-megamenu-list li > a::before {
	position: relative;
	top: -1px;
	left: -6px;
	display: inline-block;
	content: '\f105';
	font-family: 'FontAwesome';
	font-size: inherit;
	line-height: inherit;
	color: #FFC26C;
	opacity: 0;
	visibility: hidden;
}

.rd-navbar-static .rd-navbar-dropdown li.focus > a,
.rd-navbar-static .rd-navbar-dropdown li.opened > a,
.rd-navbar-static .rd-navbar-dropdown li > a:hover,
.rd-navbar-static .rd-megamenu-list li.focus > a,
.rd-navbar-static .rd-megamenu-list li.opened > a,
.rd-navbar-static .rd-megamenu-list li > a:hover {
	left: 0;
	padding-left: 14px;
	padding-right: 0;
	/* color: #FFFFFF !important; */
	color:  #ffa220 !important;
	font-weight: 500 !important;
}

.rd-navbar-static .rd-navbar-dropdown li.focus > a::before,
.rd-navbar-static .rd-navbar-dropdown li.opened > a::before,
.rd-navbar-static .rd-navbar-dropdown li > a:hover::before,
.rd-navbar-static .rd-megamenu-list li.focus > a::before,
.rd-navbar-static .rd-megamenu-list li.opened > a::before,
.rd-navbar-static .rd-megamenu-list li > a:hover::before {
	left: -7px;
	opacity: 1;
	visibility: visible;
}

[dir='rtl'] .rd-navbar-static .rd-navbar-dropdown li > a::before,
[dir='rtl'] .rd-navbar-static .rd-megamenu-list li > a::before {
	content: '\f104';
}

.rd-navbar-static .rd-navbar-megamenu {
	display: -ms-flexbox;
	display: flex;
	left: 0;
	width: 100%;
	max-width: 1200px;
	padding: 10px;
	background: #fff;
	/* background: #ffa220; */
}
.rd-navbar-static .rd-megamenu-list li > a {
	color: #000;
   }
.rd-navbar-static .rd-megamenu-list li > a:hover {
	/* color: #FFFFFF; */
	color:  #ffa220 !important;
	font-weight: 500 !important;
   }

.rd-navbar-static .rd-megamenu-item {
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.rd-navbar-static .rd-megamenu-item + .rd-megamenu-item {
	padding-left: 20px;
}

.rd-navbar-static .rd-megamenu-title {
	padding-bottom: 10px;
	border-bottom: 1px solid #ebebeb;
}

.rd-navbar-static .rd-megamenu-list-link {
	color: #000;
	background: transparent;
}

.rd-navbar-static .rd-megamenu-list-link:hover {
	color: #FFC26C;
	background: transparent;
}

.rd-navbar-static * + .rd-megamenu-list {
	margin-top: 15px;
}

.rd-navbar-static .rd-navbar-submenu.focus > .rd-menu, .rd-navbar-static .rd-navbar-submenu.opened > .rd-menu {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.rd-navbar-static .rd-navbar-search.active .rd-search {
	visibility: visible;
	opacity: 1;
}

.rd-navbar-static .rd-search {
	position: absolute;
	top: 100%;
	right: 0;
	width: 270px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	margin-top: 20px;
	z-index: 2;
}

.rd-navbar-static * + .rd-navbar-search {
	margin-left: 38px;
}

.rd-navbar-static .rd-navbar-search-toggle {
	display: -ms-inline-flexbox;
	display: inline-flex;
	color: #151515;
}

.rd-navbar-static .rd-navbar-search-toggle span {
	display: inline-block;
	position: relative;
	width: 32px;
	height: 32px;
	font-size: 26px;
	line-height: 32px;
	text-align: center;
	cursor: pointer;
	background: none;
	border: none;
	outline: none;
	padding: 0;
}

.rd-navbar-static .rd-navbar-search-toggle span, .rd-navbar-static .rd-navbar-search-toggle span::before, .rd-navbar-static .rd-navbar-search-toggle span::after {
	transition: .3s all ease-in-out;
}

.rd-navbar-static .rd-navbar-search-toggle span::before, .rd-navbar-static .rd-navbar-search-toggle span::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.rd-navbar-static .rd-navbar-search-toggle span::before {
	content: "";
	-webkit-transform: rotate(0deg) scale(1);
	transform: rotate(0deg) scale(1);
	opacity: 1;
	visibility: visible;
	font-family: "Material Design Icons";
}

.rd-navbar-static .rd-navbar-search-toggle span::after {
	content: "";
	-webkit-transform: rotate(-90deg) scale(0.4);
	transform: rotate(-90deg) scale(0.4);
	opacity: 0;
	visibility: hidden;
	font-family: "Material Design Icons";
}

.rd-navbar-static .rd-navbar-search-toggle.active span::before {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: rotate(90deg) scale(0.4);
	transform: rotate(90deg) scale(0.4);
}

.rd-navbar-static .rd-navbar-search-toggle.active span::after {
	-webkit-transform: rotate(0deg) scale(1);
	transform: rotate(0deg) scale(1);
	opacity: 1;
	visibility: visible;
}

.rd-navbar-static .rd-navbar-search-toggle:hover {
	color: #FFC26C;
}

.rd-navbar-static.rd-navbar--is-clone {
	display: block;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

.rd-navbar-static.rd-navbar--is-clone.rd-navbar--is-stuck {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.rd-navbar-static.rd-navbar--is-stuck, .rd-navbar-static.rd-navbar--is-clone {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1030;
	background: #fff;
}

.rd-navbar-static .rd-navbar--has-dropdown {
	position: relative;
}

/*
*
* RD Navbar Fixed
*/
.rd-navbar-fixed {
	display: block;
}

.rd-navbar-fixed .rd-navbar-toggle {
	display: inline-block;
}

.rd-navbar-fixed .rd-navbar-brand {
	position: relative;
	margin-left: 6px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: left;
	font-size: 22px;
	line-height: 46px;
}

.rd-navbar-fixed .rd-navbar-brand img {
	max-width: 100px;
	max-height: 58px;
}

@media (max-width: 359px) {
	.rd-navbar-fixed .rd-navbar-brand img {
		max-width: 85px;
	}
}

.rd-navbar-fixed .rd-navbar-panel {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1030;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	height: 56px;
	padding: 4px;
}

.rd-navbar-fixed .rd-navbar-nav-outer {
	position: fixed;
	left: 0;
	top: -56px;
	bottom: -56px;
	z-index: 1029;
	width: 270px;
	padding: 112px 0 81px;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	font-size: 14px;
	line-height: 34px;
	-webkit-transform: translateX(-110%);
	transform: translateX(-110%);
}

.rd-navbar-fixed .rd-navbar-nav-outer::-webkit-scrollbar {
	width: 4px;
}

.rd-navbar-fixed .rd-navbar-nav-outer::-webkit-scrollbar-thumb {
	background: #ffecd2;
	border: none;
	border-radius: 0;
	opacity: .2;
}

.rd-navbar-fixed .rd-navbar-nav-outer::-webkit-scrollbar-track {
	background: #FFC26C;
	border: none;
	border-radius: 0;
}

.rd-navbar-fixed .rd-navbar-nav-outer.active {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.rd-navbar-fixed .rd-navbar-nav {
	display: block;
	margin: 15px 0;
	height: auto;
	text-align: left;
}

.rd-navbar-fixed .rd-nav-item {
	text-align: left;
}

.rd-navbar-fixed .rd-nav-item + .rd-nav-item {
	margin-top: 4px;
}

.rd-navbar-fixed .rd-nav-link {
	display: block;
	font-size: 16px;
	line-height: 22px;
	padding: 14px 56px 14px 18px;
}

.rd-navbar-fixed li.opened > .rd-navbar-dropdown {
	padding: 4px 0 0;
}

.rd-navbar-fixed li.opened > .rd-navbar-megamenu {
	padding-top: 20px;
	padding-bottom: 15px;
}

.rd-navbar-fixed li.opened > .rd-menu {
	opacity: 1;
	height: auto;
}

.rd-navbar-fixed li.opened > .rd-navbar-submenu-toggle::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.rd-navbar-fixed .rd-menu {
	display: none;
	transition: opacity 0.3s, height 0.4s ease;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.rd-navbar-fixed .rd-navbar-submenu {
	position: relative;
}

.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown .rd-navbar-submenu-toggle:after {
	height: 34px;
	line-height: 34px;
}

.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown > li > a {
	padding-left: 30px;
}

.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown li li > a,
.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-megamenu ul li li > a {
	padding-left: 46px;
}

.rd-navbar-fixed .rd-navbar-submenu.opened > .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-submenu.opened > .rd-navbar-megamenu {
	display: block;
}

.rd-navbar-fixed .rd-megamenu-list > li > a,
.rd-navbar-fixed .rd-navbar-dropdown > li > a {
	display: block;
	padding: 9px 56px 9px 16px;
	font-size: 12px;
	line-height: 1.45;
}

.rd-navbar-fixed .rd-megamenu-list > li + li,
.rd-navbar-fixed .rd-navbar-dropdown > li + li {
	margin-top: 2px;
}

.rd-navbar-fixed .rd-megamenu-list > li > a {
	padding-left: 30px;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title {
	position: relative;
	display: block;
	font-size: 11px;
	padding: 0 18px 8px;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title::after {
	content: '';
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0;
	border-bottom: 1px solid;
}

.rd-navbar-fixed .rd-navbar-megamenu * + .rd-megamenu-list {
	margin-top: 11px;
}

.rd-navbar-fixed .rd-navbar-megamenu * + .rd-megamenu-title {
	margin-top: 20px;
}

.rd-navbar-fixed .rd-navbar-megamenu > li + li {
	margin-top: 20px;
}

.rd-navbar-fixed .rd-navbar-submenu-toggle {
	cursor: pointer;
}

.rd-navbar-fixed .rd-navbar-submenu-toggle::after {
	content: '\f107';
	position: absolute;
	top: 0;
	right: 0;
	width: 56px;
	height: 50px;
	font: 400 14px "FontAwesome";
	line-height: 50px;
	text-align: center;
	transition: 0.4s all ease;
	z-index: 2;
	cursor: pointer;
}

.rd-navbar-fixed .rd-navbar-collapse-toggle {
	display: block;
	top: 4px;
	z-index: 1031;
}

.rd-navbar-fixed .rd-navbar-collapse {
	position: fixed;
	right: 0;
	top: 56px;
	z-index: 1029;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
	padding: 15px;
	width: auto;
	border-radius: 0;
	text-align: left;
	font-size: 14px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}

.rd-navbar-fixed .rd-navbar-collapse.active {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
	visibility: visible;
}

.rd-navbar-fixed .rd-navbar-collapse .list-inline > li {
	display: block;
}

.rd-navbar-fixed .rd-navbar-collapse .list-inline > li + li {
	margin-top: 10px;
}

.rd-navbar-fixed .rd-navbar-main-element {
	position: absolute;
	float: left;
}

.rd-navbar-fixed .rd-navbar-search .rd-search {
	position: fixed;
	right: 0;
	left: 0;
	top: 56px;
	z-index: 1029;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
}

.rd-navbar-fixed .rd-navbar-search .rd-search-results-live {
	display: none;
}

.rd-navbar-fixed .rd-navbar-search .form-input {
	padding-right: 50px;
}

.rd-navbar-fixed .rd-navbar-search .rd-search-form-submit {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50px;
	padding: 0;
	margin: 0;
	border: none;
	background-color: transparent;
}

.rd-navbar-fixed .rd-navbar-search.active .rd-search {
	opacity: 1;
	visibility: visible;
	-webkit-transform: none;
	transform: none;
}

.rd-navbar-fixed .rd-navbar-search-toggle {
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.rd-navbar-fixed .rd-navbar-search-toggle span {
	display: inline-block;
	position: relative;
	width: 48px;
	height: 48px;
	font-size: 26px;
	line-height: 48px;
	text-align: center;
	cursor: pointer;
	background: none;
	border: none;
	outline: none;
	padding: 0;
}

.rd-navbar-fixed .rd-navbar-search-toggle span, .rd-navbar-fixed .rd-navbar-search-toggle span::before, .rd-navbar-fixed .rd-navbar-search-toggle span::after {
	transition: .3s all ease-in-out;
}

.rd-navbar-fixed .rd-navbar-search-toggle span::before, .rd-navbar-fixed .rd-navbar-search-toggle span::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.rd-navbar-fixed .rd-navbar-search-toggle span::before {
	content: "";
	-webkit-transform: rotate(0deg) scale(1);
	transform: rotate(0deg) scale(1);
	opacity: 1;
	visibility: visible;
	font-family: "Material Design Icons";
}

.rd-navbar-fixed .rd-navbar-search-toggle span::after {
	content: "";
	-webkit-transform: rotate(-90deg) scale(0.4);
	transform: rotate(-90deg) scale(0.4);
	opacity: 0;
	visibility: hidden;
	font-family: "Material Design Icons";
}

.rd-navbar-fixed .rd-navbar-search-toggle.active span::before {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: rotate(90deg) scale(0.4);
	transform: rotate(90deg) scale(0.4);
}

.rd-navbar-fixed .rd-navbar-search-toggle.active span::after {
	-webkit-transform: rotate(0deg) scale(1);
	transform: rotate(0deg) scale(1);
	opacity: 1;
	visibility: visible;
}

.rd-navbar-fixed [class*='rd-navbar-fixed-element'] {
	position: fixed;
	top: 4px;
	z-index: 1032;
}

.rd-navbar-fixed .rd-navbar-fixed-element-1 {
	right: 0;
}

.rd-navbar-fixed .rd-navbar-fixed-element-2 {
	right: 46px;
}

.rd-navbar-fixed.rd-navbar--is-clone {
	display: none;
}

.rd-navbar-fixed .rd-navbar-fixed--visible {
	display: block;
}

.rd-navbar-fixed .rd-navbar-fixed--hidden {
	display: none;
}

.rd-navbar-fixed .rd-navbar-panel {
	color: #9b9b9b;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
}

.rd-navbar-fixed .rd-navbar-nav-outer {
	color: #fff;
	background: #fff;
	border: 1px solid #f6f6f6;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.rd-navbar-fixed .rd-nav-item:hover .rd-nav-link, .rd-navbar-fixed .rd-nav-item.focus .rd-nav-link, .rd-navbar-fixed .rd-nav-item.active .rd-nav-link, .rd-navbar-fixed .rd-nav-item.opened .rd-nav-link {
	color: #fff;
	background: #FFC26C;
}

.rd-navbar-fixed .rd-nav-item:hover > .rd-navbar-submenu-toggle, .rd-navbar-fixed .rd-nav-item.focus > .rd-navbar-submenu-toggle, .rd-navbar-fixed .rd-nav-item.active > .rd-navbar-submenu-toggle, .rd-navbar-fixed .rd-nav-item.opened > .rd-navbar-submenu-toggle {
	color: #fff;
}

.rd-navbar-fixed .rd-nav-link {
	color: #151515;
}

.rd-navbar-fixed .rd-megamenu-list > li > a,
.rd-navbar-fixed .rd-navbar-dropdown > li > a {
	color: #9b9b9b;
}

.rd-navbar-fixed .rd-megamenu-list > li:hover > a,
.rd-navbar-fixed .rd-megamenu-list > li.focus > a,
.rd-navbar-fixed .rd-megamenu-list > li.active > a,
.rd-navbar-fixed .rd-megamenu-list > li.opened > a,
.rd-navbar-fixed .rd-navbar-dropdown > li:hover > a,
.rd-navbar-fixed .rd-navbar-dropdown > li.focus > a,
.rd-navbar-fixed .rd-navbar-dropdown > li.active > a,
.rd-navbar-fixed .rd-navbar-dropdown > li.opened > a {
	color: #fff;
	background: #FFC26C;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title::after {
	border-bottom: 1px solid #f6f6f6;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a, .rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a:focus, .rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a:active {
	color: #fff;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a:hover {
	color: #FFC26C;
}

.rd-navbar-fixed .rd-navbar-submenu-toggle {
	color: #9b9b9b;
}

.rd-navbar-fixed .rd-navbar-search .rd-search-form-submit {
	color: #d7d7d7;
}

.rd-navbar-fixed .rd-navbar-search .rd-search-form-submit:hover {
	color: #FFC26C;
}

.rd-navbar-fixed .rd-navbar-search-toggle {
	color: #151515;
}

.rd-navbar-fixed .rd-navbar-search-toggle:hover {
	color: #FFC26C;
}

.rd-navbar-fixed .rd-navbar-collapse {
	background-color: #fff;
	box-shadow: 0 0 22px -4px rgba(0, 0, 0, 0.17);
}

.rd-navbar-fixed .rd-navbar-collapse,
.rd-navbar-fixed .rd-navbar-collapse a {
	color: #9b9b9b;
}

html.rd-navbar-fixed-linked .page {
	padding-top: 56px;
}

/**
*
* RD Navbar Classic
*/
.rd-navbar-classic .rd-sidebar__button.active {
	background: #1e202b;
}

.rd-navbar-classic .rd-sidebar__button.active .rd-sidebar__shape {
	-webkit-transform: scale(0.8, 0.8);
	transform: scale(0.8, 0.8);
	fill: rgba(255, 255, 255, 0.09);
}

.rd-navbar-classic .rd-sidebar__button,
.rd-navbar-classic .rd-sidebar__shape {
	transition: .15s;
}

.rd-navbar-classic .rd-sidebar__list {
	transition: .33s;
	opacity: 0.9;
	box-shadow: 0 0 12px 1px rgba(21, 21, 21, 0.3);
	-webkit-transform: translate3d(101%, 0, 0);
	transform: translate3d(101%, 0, 0);
}

.rd-navbar-classic .rd-sidebar__list.active {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.rd-navbar-classic.rd-navbar-static::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border-bottom: 1px solid #f1c9b5db;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-panel {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 220px 0 35px;
	margin: 0 auto;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-main > * + * {
	margin-left: 60px;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-brand {
	display: inline-block;
	font-size: 0;
	line-height: 0;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-brand img {
	max-width: 200px;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-main-element {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-nav-outer {
	position: relative;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.rd-navbar-classic.rd-navbar-static .rd-nav-link {
	position: relative;
	display: inline-block;
	padding: 25px 0;
}

.rd-navbar-classic.rd-navbar-static .rd-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: #FFC26C;
	width: 0;
	pointer-events: none;
	transition: .22s;
}

.rd-navbar-classic.rd-navbar-static .rd-nav-item:hover .rd-nav-link::after, .rd-navbar-classic.rd-navbar-static .rd-nav-item.focus .rd-nav-link::after, .rd-navbar-classic.rd-navbar-static .rd-nav-item.active .rd-nav-link::after {
	width: 100%;
}

.rd-navbar-classic.rd-navbar-static .rd-menu {
	margin-top: 0px;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-megamenu {
	margin-left: -30px;
	right: -30px;
	left: auto;
	width: auto;
	min-width: 660px;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__button {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 160px;
	z-index: 2;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list {
	top: 0;
	bottom: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
	width: 200px;
	padding: 20px 20px 5vh;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item:first-child .rd-sidebar__list-item-icon {
	padding-top: 0;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item:nth-child(n + 2) {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item:nth-child(n + 2)::before {
	content: '';
	display: block;
	-ms-flex-positive: 1;
	flex-grow: 1;
	min-height: 30px;
	width: 1px;
	background: rgba(255, 255, 255, 0.2);
	pointer-events: none;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item-inner {
	position: relative;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item-inner:hover .rd-sidebar__list-item-main {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item-icon {
	position: relative;
	padding: 20px 5px;
	font-size: 42px;
	cursor: pointer;
	text-align: center;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item-icon.linearicons-share2 {
	font-size: 38px;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item-icon.linearicons-bubble-dots {
	font-size: 40px;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item-main {
	position: absolute;
	right: 100%;
	bottom: 5px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-width: 200px;
	height: 65px;
	padding: 10px 20px 10px 30px;
	background: #292b3a;
	border-left: 7px solid #FFC26C;
	transition: 0.2s cubic-bezier(0.4, 0.66, 0.63, 1.04);
	-webkit-transform: scale3d(0.8, 1, 1);
	transform: scale3d(0.8, 1, 1);
	opacity: 0;
	visibility: hidden;
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item-main .list-inline {
	white-space: nowrap;
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item-main:hover {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.rd-navbar-classic.rd-navbar-static .rd-sidebar__list-item-link {
	font-size: 17px;
}

@media (min-width: 1200px) {
	.rd-navbar-classic.rd-navbar-static .rd-nav-link {
		padding: 36px 0 38px;
	}
	.rd-navbar-classic.rd-navbar-static .rd-nav-link::after {
		height: 7px;
	}
}

@media (min-width: 1600px) {
	.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
		padding: 0 220px 0 75px;
	}
	.rd-navbar-classic.rd-navbar-static .rd-sidebar__button {
		width: 200px;
	}
}

.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck, .rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone {
	box-shadow: 0 0 12px 0 rgba(21, 21, 21, 0.05);
}

.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-aside-outer, .rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-navbar-aside-outer {
	display: none;
}

.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-nav-link, .rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-nav-link {
	padding: 25px 0 29px;
}

.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-nav-link::after, .rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-nav-link::after {
	height: 6px;
}

.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav-item > .rd-navbar-submenu, .rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav-item > .rd-navbar-submenu {
	margin-top: 17px;
}

.rd-navbar-classic.rd-navbar-fixed .btc-to-usd {
	position: fixed;
	right: 52px;
	top: 4px;
	z-index: 1031;
}

.rd-navbar-classic.rd-navbar-fixed .rd-sidebar__button {
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 56px;
	background: #252734;
}

@media (max-width: 359px) {
	.rd-navbar-classic.rd-navbar-fixed .btc-to-usd {
		right: 42px;
	}
	.rd-navbar-classic.rd-navbar-fixed .rd-sidebar__button {
		width: 50px;
	}
}

.rd-navbar-classic.rd-navbar-fixed .rd-sidebar__shape {
	width: 21px;
	height: 20px;
}

.rd-navbar-classic.rd-navbar-fixed .rd-sidebar__list {
	top: 56px;
	min-width: 240px;
	padding: 20px;
	z-index: -1;
}

.rd-navbar-classic.rd-navbar-fixed .rd-sidebar__list-item + .rd-sidebar__list-item {
	margin-top: 10px;
}

.rd-navbar-classic.rd-navbar-fixed .rd-sidebar__list-item-inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.rd-navbar-classic.rd-navbar-fixed .rd-sidebar__list-item-inner > * + * {
	margin-left: 15px;
}

.rd-navbar-classic.rd-navbar-fixed .rd-sidebar__list-item-inner a {
	display: block;
	padding: 10px 0 7px;
}

.rd-navbar-classic.rd-navbar-fixed .rd-sidebar__list-item-main {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.rd-navbar-classic.rd-navbar-fixed .rd-sidebar__list-item-icon {
	font-size: 20px;
	color: #FFC26C;
}

/*
*
* RD Navbar Fullwidth
*/
.rd-navbar-fullwidth {
	display: block;
}

.rd-navbar-fullwidth .rd-navbar-nav > li + li {
	margin-left: 20px;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-main, .rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-main {
	padding: 10px 0;
}

/**
*
* RD Navbar Classic
*/
.rd-navbar-transparent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
}

.rd-navbar-transparent .rd-navbar-static {
	background-color: transparent;
}

.rd-navbar-transparent .rd-navbar-static::after {
	content: none;
}

.rd-navbar-transparent .rd-navbar-static .brand-logo-dark {
	display: none;
}

.rd-navbar-transparent .rd-navbar-static .brand-logo-light {
	display: block;
}

.rd-navbar-transparent .rd-navbar-static .rd-nav-link {
	color: #fff;
}

.rd-navbar-transparent .rd-navbar-static .rd-nav-link::after {
	content: none;
}

.rd-navbar-transparent .rd-navbar-static .rd-navbar-submenu-toggle {
	color: #fff;
}

.rd-navbar-transparent .rd-navbar-static .rd-nav-item:hover .rd-nav-link, .rd-navbar-transparent .rd-navbar-static .rd-nav-item.focus .rd-nav-link, .rd-navbar-transparent .rd-navbar-static .rd-nav-item.active .rd-nav-link {
	color: #FFC26C;
}

.rd-navbar-transparent .rd-navbar-static .btc-to-usd {
	color: #fff;
}

.rd-navbar-transparent .rd-navbar-static .btc-to-usd .btcwdgt-text-ticker.btcwdgt-light {
	color: #fff !important;
}

.rd-navbar-transparent .rd-navbar-static .rd-sidebar__button {
	background: transparent;
}

.rd-navbar-transparent .rd-navbar-static .rd-sidebar__shape {
	fill: #fff;
}

.rd-navbar-transparent .rd-navbar-static.rd-navbar--is-stuck, .rd-navbar-transparent .rd-navbar-static.rd-navbar--is-clone {
	box-shadow: 0 0 12px 0 rgba(21, 21, 21, 0.05);
	background-color: #0c1523;
}

.rd-navbar-transparent .rd-navbar-static.rd-navbar--is-stuck .rd-navbar-aside-outer, .rd-navbar-transparent .rd-navbar-static.rd-navbar--is-clone .rd-navbar-aside-outer {
	display: none;
}

.rd-navbar-transparent .rd-navbar-static.rd-navbar--is-stuck .rd-nav-link, .rd-navbar-transparent .rd-navbar-static.rd-navbar--is-clone .rd-nav-link {
	padding: 25px 0 29px;
}

.rd-navbar-transparent .rd-navbar-static.rd-navbar--is-stuck .rd-nav-link::after, .rd-navbar-transparent .rd-navbar-static.rd-navbar--is-clone .rd-nav-link::after {
	height: 6px;
}

.rd-navbar-transparent .rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav-item > .rd-navbar-submenu, .rd-navbar-transparent .rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav-item > .rd-navbar-submenu {
	margin-top: 17px;
}

.rd-navbar-transparent.rd-navbar-fixed .btc-to-usd {
	position: fixed;
	right: 52px;
	top: 4px;
	z-index: 1031;
}

.rd-navbar-transparent.rd-navbar-fixed .rd-sidebar__button {
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 56px;
	background: #252734;
}

@media (max-width: 359px) {
	.rd-navbar-transparent.rd-navbar-fixed .btc-to-usd {
		right: 42px;
	}
	.rd-navbar-transparent.rd-navbar-fixed .rd-sidebar__button {
		width: 50px;
	}
}

.rd-navbar-transparent.rd-navbar-fixed .rd-sidebar__shape {
	width: 21px;
	height: 20px;
}

.rd-navbar-transparent.rd-navbar-fixed .rd-sidebar__list {
	top: 56px;
	min-width: 240px;
	padding: 20px;
	z-index: -1;
}

.rd-navbar-transparent.rd-navbar-fixed .rd-sidebar__list-item + .rd-sidebar__list-item {
	margin-top: 10px;
}

.rd-navbar-transparent.rd-navbar-fixed .rd-sidebar__list-item-inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.rd-navbar-transparent.rd-navbar-fixed .rd-sidebar__list-item-inner > * + * {
	margin-left: 15px;
}

.rd-navbar-transparent.rd-navbar-fixed .rd-sidebar__list-item-inner a {
	display: block;
	padding: 10px 0 7px;
}

.rd-navbar-transparent.rd-navbar-fixed .rd-sidebar__list-item-main {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.rd-navbar-transparent.rd-navbar-fixed .rd-sidebar__list-item-icon {
	font-size: 20px;
	color: #FFC26C;
}