@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css');

:root {
	--box-shadow: #4D3257;
	--table-odd: #CDF4F7; /* lighter */
	--table-evn: #87ECF5; /* darker */
	--table-hov: #F5F5F5;
	--text-prim: #0D4B84; /* #blue; */
	--text-dang: #red;
	--text-warn: #red;
	--top-bar: #4880B3; /* 0d4b84; */
}

* {
	outline: none;
}

html {
	height: 100%;
	overflow-x: hidden;
}

body {
	font-family: 'filson-pro', sans-serif;
	color: #0D4B84;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.header-rds-logo {
	background: url('../../img/rds-blue.png');
	background-repeat: no-repeat;
	width: 78px;
	height: 26px;
	margin-top: 7px;
	margin-left: auto;
	margin-right: auto;
}

.ham-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}

.ham-menu .checkbox-toggle {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	cursor: pointer;
	width: 60px;
	height: 60px;
	display: block;
	opacity: 0;
}

.ham-menu .hamburger {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 60px;
	height: 60px;
	padding: .5em 1em;
	background: transparent;
	border-radius: 0 .12em .12em 0;
	cursor: pointer;
	-webkit-transition: -webkit-box-shadow .4s ease;
	transition: -webkit-box-shadow .4s ease;
	transition: box-shadow .4s ease;
	transition: box-shadow .4s ease, -webkit-box-shadow .4s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.ham-menu .hamburger > div {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	width: 100%;
	height: 3px;
	background: #27224E;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.ham-menu .hamburger > div:before, .ham-menu .hamburger > div:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: -10px;
	left: 0;
	width: 100%;
	height: 3px;
	background: inherit;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.ham-menu .hamburger > div:after {
	top: 10px;
}

.ham-menu .checkbox-toggle:checked + .hamburger > div {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.ham-menu .checkbox-toggle:checked + .hamburger > div:before, .ham-menu .checkbox-toggle:checked + .hamburger > div:after {
	top: 0;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.ham-menu .checkbox-toggle:checked + .hamburger > div:after {
	opacity: 0;
}

.ham-menu .menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	visibility: hidden;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	outline: 1px solid transparent;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.ham-menu .menu > div {
	width: 250vw;
	height: 250vw;
	color: #FEFEFE;
	background: rgba(255, 255, 255, 0.97);
	border-radius: 50%;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.ham-menu .menu > div > div {
	text-align: center;
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
	overflow-y: auto;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.ham-menu .menu > div > div > div > ul {
	list-style: none;
	padding: 0 1em;
	margin: 0;
	display: block;
	max-height: 100vh;
}

.ham-menu .menu > div > div > div > ul > li {
	padding: 0;
	margin: 1em;
	font-size: 24px;
	display: block;
}

.ham-menu .dropdown {
	margin-top: 0;
	margin-right: 0;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 400;
}

.ham-menu .menu > div > div > div > ul > li > a {
	position: relative;
	display: inline;
	cursor: pointer;
	-webkit-transition: color .4s ease;
	transition: color .4s ease;
}

.ham-menu .checkbox-toggle:checked ~ .menu {
	pointer-events: auto;
	visibility: visible;
}

.ham-menu .checkbox-toggle:checked ~ .menu > div {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition-duration: .25s;
	transition-duration: .25s;
}

.ham-menu .checkbox-toggle:checked ~ .menu > div > div {
	opacity: 1;
	-webkit-transition: opacity .4s ease .4s;
	transition: opacity .4s ease .4s;
}

.mobile-menu a {
	color: #27224E;
	font-weight: 700;
	text-transform: uppercase;
}

.fa-input {
	font-family: FontAwesome, 'filson-pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.fa-login i {
	font-size: 52px;
	position: absolute;
	right: 10px;
}

.navbar-inverse {
	background-color: #FFFFFF;
	height: 71px;
}

.navbar-brand {
	background: url('../../img/logo-menu.png');
	background-repeat: no-repeat;
	width: 313px;
	height: 25px;
	margin-top: 0;
}

.navbar-collapse.collapse {
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}

.navbar-collapse.collapse.show {
	background: #FFFFFF;
	padding: 9px;
	border-radius: 10px;
	width: 100%;
}

.menu-button {
	margin-top: 2px;
	text-transform: uppercase;
	margin-right: 20px;
	font-size: 12px;
	font-weight: 400;
}

.menu-button a {
	color: #FFFFFF !important;
	line-height: 42px;
	background: #3AB4B4;
	height: 46px;
	border-radius: 23px;
	padding: 14px 40px;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}

.menu-button a:hover {
	background: #216767 !important;
	border-radius: 30px;
	height: 46px;
	text-decoration: none;
}

.menu-button2 {
	margin-top: 2px;
	text-transform: uppercase;
	margin-right: 20px;
	font-size: 12px;
	font-weight: 400;
}

.menu-button2 a {
	color: #27224E !important;
	line-height: 42px;
	border: 2px solid #000;
	background: #FFFFFF;
	height: 39px;
	border-radius: 23px;
	padding: 12px 40px;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
	font-weight: 700;
}

.menu-button2 a:hover {
	background: #FFFFFF !important;
	border-radius: 23px;
	border: 2px solid #B01082;
	color: #B01082 !important;
	height: 46px;
	text-decoration: none;
}

.btn-menu {
	margin-top: 0;
	text-transform: uppercase;
	margin-right: 20px;
	font-size: 12px;
	font-weight: 400;
	color: #FFFFFF !important;
	line-height: 20px;
	background: #3AB4B4;
	height: 46px;
	border-radius: 30px;
	padding: 13px 25px;
	border: none;
	outline: 0;
}

.btn-menu:active {
	outline: none;
}

.btn-menu:hover {
	background-color: #216767;
}

.dropdown {
	margin-top: 17px;
	margin-right: 40px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 400;
}

.dropdown a {
	color: #27245F !important;
	cursor: pointer;
}

.dropdown.open a {
	background: transparent !important;
}

.dropdown a:hover {
	text-decoration: none;
	color: #B01082 !important;
}

.dropdown-menu > li > a {
	text-transform: capitalize;
}

.dropdown-menu > li > a:hover {
	color: #B01082 !important;
	font-weight: bold;
}

.ui-widget {
	font-family: 'filson-pro', sans-serif;
	color: #0D4B84;
	font-size: 1.1em
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: 'filson-pro', sans-serif;
	color: #0D4B84;
	font-size: 1em
}

body, label {
	font-family: 'filson-pro', sans-serif;
	color: #0D4B84;
	line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: 'filson-pro', sans-serif;
	color: #0D4B84;
	font-weight: 700;
	line-height: 1.1
}

.rds_logo {
	width: 280px;
	height: 270px;
	margin: 1px;
	float: left;
	background-image: url("../../img/scienceblast.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.logo-login {
	width: 281px;
	height: 271px;
	margin: 100px auto 0 auto;
	background-image: url('../../img/logo-login.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.header-blue-green {
	background: #00B8E2;
	background: -moz-linear-gradient(left, #00B8E2 0%, #00A599 100%);
	background: -webkit-linear-gradient(left, #00B8E2 0%, #00A599 100%);
	background: linear-gradient(to right, #00B8E2 0%, #00A599 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B8E2', endColorstr='#00A599', GradientType=1);
	height: 243px;
	width: 100%;
	margin-top: 70px;
}

.header-blue-green .splash {
	background: url('../../img/Fill_41.png');
	position: absolute;
	width: 100%;
	height: 243px;
	background-repeat: no-repeat;
	background-position: 120% 20px;
	opacity: 0.5;
	overflow: hidden;
}

.header-blue-green .text1 {
	color: #FFFFFF;
	font-size: 30px;
	font-weight: 700;
	margin-top: 75px;
	display: block;
}

.header-blue-green .text2 {
	color: #FFFFFF;
	font-size: 48px;
	font-weight: 700;
	display: block;
}

.header-blue-green .text3 {
	margin-top: 150px;
	color: #FFFFFF !important;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: underline;
}

.content_title {
	color: #27245F;
	font-size: 40px;
	font-weight: 700;
	line-height: 27px;
	padding-top: 40px;
	padding-bottom: 30px;
}

.content_subtitle {
	color: #27245F;
	font-size: 16px;
	font-weight: 500;
	line-height: 27px;
	padding-top: 10px;
	padding-bottom: 15px;
	text-transform: uppercase;
	text-decoration: underline;
}

.content_item {
	color: #000000;
	font-size: 14px;
	font-weight: 500;
	line-height: 14px;
	padding-top: 6px;
	padding-bottom: 8px;
	padding-left: 7px;
}

.edit-btn {
	padding: 3px 7px 2px 12px;
	font-size: 20px;
	text-align: center;
	position: absolute;
	right: 15px;
	border-radius: 23px;
	background-color: #B01082;
	color: #FFFFFF;
	text-transform: uppercase;
	border: none;
	z-index: 999;
	font-weight: initial;
}

.delete-btn {
	padding: 3px 10px 2px 12px;
	font-size: 20px;
	text-align: center;
	position: absolute;
	right: 60px;
	border-radius: 23px;
	background-color: #B01082;
	color: #FFFFFF;
	font-weight: 100;
	text-transform: uppercase;
	border: none;
	z-index: 999;
}

.form-group-mb {
	margin-bottom: -10px;
}

.btn-input {
	float: right;
	margin-top: -45px;
	border-radius: 25px;
	background-color: #46BABA;
	outline: 0;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 500;
	border: none;
	padding: 5px 26px;
	z-index: 9999999;
	position: absolute;
	right: 10px;
}

.question-input {
	padding-right: 85px !important;
}

.astro {
	background: url('../../img/astro.png');
	position: absolute;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 150px 250px;
	left: 0;
	overflow: hidden;
}

.saturn {
	background: url('../../img/saturn.png');
	position: absolute;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center top;
	left: 0;
	overflow: hidden;
}

.star {
	background: url('../../img/star.png');
	position: absolute;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	right: 150px;
	background-position-x: right;
	background-position-y: 400px;
	overflow: hidden;
}

.reg1_bg {
	background: url('../../img/r1.png');
	background-repeat: no-repeat;
	background-position-x: left;
	background-position-y: top;
}

.reg2_bg {
	background: url('../../img/r2.png');
	background-repeat: no-repeat;
	background-position-x: right;
	background-position-y: bottom;
}

.reg3_bg {
	background: url('../../img/r3.png');
	background-repeat: no-repeat;
	background-position-x: left;
	background-position-y: bottom;
}

.reg4_bg {
	background: url('../../img/r4.png');
	background-repeat: no-repeat;
	background-position-x: right;
	background-position-y: top;
}

.proj1_bg {
	background: url('../../img/p1.png');
	background-repeat: no-repeat;
	background-position-x: center;
	background-size: auto;
	background-position-y: bottom;
}

.proj2_bg {
	background: url('../../img/p2.png');
	background-repeat: no-repeat;
	background-position-x: center;
	background-size: auto;
	background-position-y: bottom;
}

.proj3_bg {
	background: url('../../img/p3.png');
	background-repeat: no-repeat;
	background-position-x: center;
	background-size: auto;
	background-position-y: bottom;
}

.proj4_bg {
	background: url('../../img/p4.png');
	background-repeat: no-repeat;
	background-position-x: center;
	background-size: auto;
	background-position-y: bottom;
}

/* GET STARTED PAGE */
.bg_FillOutDetails {
	background: url('../../img/bg_get_started.png');
	background-repeat: no-repeat;
	height: 300px;
	background-position: center center;
	background-size: auto;
}

.gs_title {
	text-align: center;
	color: #27245F;
	font-size: 40px;
	font-weight: 700;
	line-height: 27px;
	padding-top: 70px;
}

.gs_text {
	text-align: center;
	color: #515151;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding-top: 24px;
}

.gs_button {
	margin-left: auto;
	margin-right: auto;
	margin-top: 25px;
}

/* END STARTED PAGE*/
.cards {
	max-height: 70vh;
	overflow-y: auto;
}

.card {
	box-shadow: 0 0 13px rgba(0, 0, 0, 0.11);
	border-radius: 11px;
	background: #FAFAFA;
	outline: 0 !important;
	margin-left: 2px;
}

.card .card-body {
	padding: 0px;
}

.card .index_indicator {
	float: left;
	width: 14%;
	background: #FAFAFA;
	border-radius: 11px 0 0 11px;
}

.card .index_indicator.max-width {
	width: 40%;
}

.card .content_box.max-width {
	width: 60%;
}


.card .index_indicator .indicator {
	color: #515151;
	font-size: 16px;
	font-weight: 400;
	line-height: 80px;
	height: 80px;
	text-align: center;
	border-bottom: 2px solid #ECECEC;
	margin: 0 8px;
}

.card .index_indicator .indicator.active {
	color: #27245F;
	font-size: 16px;
	font-weight: 700;
	line-height: 80px;
	height: 80px;
	text-align: center;
	margin: 0;
	background: #FFFFFF;
	border-radius: 11px 0 0 11px;
	box-shadow: -3px 1px 7px 0 rgba(0, 0, 0, 0.11);
	padding: 0 10px;
}

.card .index_indicator .indicator .number {
	display: inline-block;
	width: 50px;
	float: left;
}

.card .index_indicator .indicator.active .number {
	display: inline-block;
	width: 50px;
	float: left;
}

.card .index_indicator .indicator.done .number {
	visibility: hidden;
	position: relative;
}

.card .index_indicator .indicator.done .number:after {
	visibility: visible;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	background: url('../../img/done.png');
	background-position: center center;
	border-bottom: 2px solid #ECECEC;
	height: 80px;
	width: 100%;
	background-repeat: no-repeat;
}


.card .index_indicator .indicator:last-child {
	border-bottom: 0px solid #ECECEC;
}

.card .index_indicator .indicator .question-card {
	display: none;
	width: 90%;
	margin-left: 5%;
	height: 80px;
	opacity: 0.5;
	color: #515151;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	padding-top: 20px;
}

.card .index_indicator .indicator.active .question-card {
	color: #27245F;
	opacity: 1;
}

.card .content_box {
	background: #FFFFFF;
	float: right;
	width: 86%;
	height: 100%;
	border-radius: 11px;
	position: absolute;
	right: 0px;
	padding: 25px;
}

.card .content_box .date-card {
	color: #A2A2A2;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}

.card .content_box .question-card {
	color: #27245F;
	font-size: 30px;
	font-weight: 700;
	line-height: 33px;
	margin-top: 15px;
	margin-bottom: 15px;
}

.card .content_box .button-card {
	position: absolute;
	bottom: 30px;
}

.btn-purple {
	padding: 15px 30px;
	border-radius: 23px;
	background-color: #B01082;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
}

.btn-saveexit {
	width: 130px;
	padding: 10px;
	border: 1px solid #B01082;
	border-radius: 4px;
	background: transparent;
	position: absolute;
	left: 50%;
	margin-left: -65px;
	top: 50%;
	height: 41px;
	margin-top: -20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.content-blue-green {
	background: #00B8E2;
	background: -moz-linear-gradient(left, #00B8E2 0%, #00A599 100%);
	background: -webkit-linear-gradient(left, #00B8E2 0%, #00A599 100%);
	background: linear-gradient(to right, #00B8E2 0%, #00A599 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B8E2', endColorstr='#00A599', GradientType=1);
	min-height: 300px;
	width: 100%;
	padding: 80px 0px;
}

.content-blue-green .splash {
	background: url('../../img/Fill_41.png');
	position: absolute;
	width: 100%;
	height: 529px;
	background-repeat: no-repeat;
	background-position: -319px 95px;
	opacity: 0.3;
	overflow: hidden;
	margin-top: 112px;
	margin-bottom: -61px;
}

.content-blue-green .rocket {
	background: url('../../img/rocket.png');
	position: absolute;
	width: 100%;
	height: 520px;
	background-repeat: no-repeat;
	background-position: 200px 250px;
	overflow: hidden;
}

.involved_title {
	color: #27245F;
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 50px;
}

.involved_number {
	width: 60px;
	height: 60px;
	border-radius: 82px;
	background-color: #FFFFFF;
	color: #27245F;
	font-size: 26px;
	font-weight: 700;
	text-align: center;
	line-height: 60px;
}

.involved_line1 {
	color: #27224E;
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 20px 0px 20px 0px;
}

.involved_line2 {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding: 0px 70px 0px 0px;
}

.title_panel {
	color: #27245F;
	font-size: 40px;
	font-weight: 700;
	line-height: 40px;
	margin-top: 40px;
	margin-bottom: 50px;
}

.title_panel2 {
	color: #27245F;
	font-size: 40px;
	font-weight: 700;
	line-height: 40px;
	margin-top: 75px;
	margin-bottom: 10px;
}

.subtitle_panel2 {
	color: #949494;
	font-size: 21px;
	font-weight: 400;
	line-height: 27px;
	margin-top: 0;
	margin-bottom: 30px;
}

.labelForce {
	opacity: .7;
	color: #C6C6C6;
	font-size: 21px;
	font-weight: 700;
	line-height: 45px;
}

.answers .answer {
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
	border-radius: 47px;
	background-color: #FFFFFF;
	display: inline-block;
	margin: 20px 10px;
	padding: 10px 0px 10px 20px;
	opacity: 0.9;
	color: #2A245A;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.answers .answer .text {
	word-break: break-word;
}

.answers .answer .icon-close {
	display: inline-block;
	text-align: right;
	margin-right: 0px;
	padding-left: 5px;
	color: #BCBCBC;
	font-size: 20px;
	line-height: 20px;
	padding-right: 10px;
}

.form-control {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0px 1px;
	color: #3AB4B4;
	font-size: 26px;
	font-weight: 700;
	line-height: 50px;
	background-clip: padding-box;
	border: none;
	border-bottom: 3px solid #C6C6C6;
	border-radius: 0px !important;
	margin-top: 30px;
}

.form-control::-webkit-input-placeholder {
	color: #FFFFFF;
}

.form-control::placeholder {
	color: #FFFFFF;
}

.form-control:focus {
	background-color: #FFF;
	border-color: #27245F;
	outline: 0;
	color: #3AB4B4;
	box-shadow: none;
}

.nav-tabs {
	border: none;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
	color: #495057;
	background-color: transparent;
	border: none;
}

.nav-tabs .nav-link:hover {
	border: none;
	color: #B01082 !important;
}

.nav-tabs .nav-link:focus {
	border: none;
}

.nav-link {
	opacity: 0.35;
	color: #161616;
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	padding: 0px !important;
	margin-right: 25px;
}

.nav-link .number {
	opacity: 0.3;
	color: #424242;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding-right: 10px;
}

.nav-link.active {
	color: #28255F !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	opacity: 1;
}

.nav-link.active .number {
	color: #3AB4B4;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	opacity: 1;
}

.nav-link.project {
	opacity: 0.35;
	color: #161616;
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	padding: 0px !important;
	margin-right: 18px;
	width: 210px;
	height: 85px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.21);
	border-radius: 4px;
	background-color: #FFFFFF;
}

.nav-link.project .number {
	opacity: 0.7;
	color: #424242;
	font-size: 16px;
	font-weight: 500;
	line-height: 85px;
	padding-right: 10px;
	vertical-align: middle;
	display: inline-block;
	padding-left: 15px;
}

.nav-link.project .question {
	opacity: 0.7;
	width: 155px;
	color: #161616;
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	display: inline-block;
	padding-right: 5px;
	vertical-align: middle;
}

.nav-link.project.active {
	color: #28255F !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	opacity: 1;
}

.nav-link.project.active .number {
	color: #3AB4B4;
	font-size: 16px;
	font-weight: 700;
	line-height: 85px;
	opacity: 1;
	vertical-align: middle;
	padding-left: 15px;
}

.nav-link.project.active .question {
	width: 146px;
	color: #2A245A;
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	display: inline-block;
	opacity: 1;
}

.question_title {
	color: #46BABA;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}

.question_content {
	color: #2A245A;
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	margin-bottom: 70px;
}

.review-content {
	margin-top: 50px;
	box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	background-color: #FFFFFF;
	margin-bottom: 0px;
}

.review-content .review-header {
	background-image: linear-gradient(270deg, #00A599 0%, #03B8E2 100%);
	height: 120px;
	border-radius: 10px;
	width: 100%;
}

.review-content .review-header .translate {
	color: #FFFFFF;
	font-size: 30px;
	font-weight: 700;
	line-height: 18px;
	text-transform: uppercase;
	line-height: 128px;
	text-align: center;
}

.review-box {
	padding: 30px 0px;
	border-bottom: 2px solid #F4F4F4;
	margin: 0px 40px;
}

.review-box .check {
	background: url('../../img/check-green.png');
	width: 45px;
	height: 45px;
	background-repeat: no-repeat;
	background-position: center center;
	margin: 0px auto;
}

.review-box .button-edit {
	position: absolute;
	bottom: 0px;
}

.review-box .question {
	color: #27245F;
	font-size: 30px;
	font-weight: 700;
	line-height: 33px;
}

.review-box .response {
	color: #A2A2A2;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin-top: 20px;
	margin-bottom: 0px;
}

.review-box .answers .answer {
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
	border-radius: 47px;
	background-color: #FFFFFF;
	display: inline-block;
	margin: 10px 10px;
	padding: 10px 20px 10px 20px;
	opacity: 0.9;
	color: #2A245A;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	cursor: default;
}

.review-box .saveexit {
	color: #3AB4B4;
	font-size: 18px;
	font-weight: 700;
	text-decoration: underline;
	margin-top: 20px;
	margin-bottom: 20px;
	background: transparent;
	border: none;
	outline: 0;
}

.review-box .infotext {
	color: #5C5C5C;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
}

.review-box .buttonSubmit {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 33px;
	background-color: #3AB4B4;
	outline: 0;
	border: none;
	padding: 10px 25px;
}

.count_question {
	opacity: 0.6;
	color: #838383;
	font-size: 14px;
	font-weight: 500;
	text-align: right;
	margin-top: 10px;
}

.mobileshow {
	display: none;
}

.mobilehide {
	display: initial;
}

.font-pink {
	color: #3AB4B4;
	cursor: pointer;
}

/*Success page*/
.successbackground {
	background-image: linear-gradient(236deg, #00A599 0%, #03B8E2 100%);
}

.successbackground .imagesbg {
	background: url('../../img/submitbg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 900px;
}

.success-submit {
	color: #27224E;
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	padding-top: 350px;
}

.text-submit {
	width: 706px;
	height: 56px;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 300;
	line-height: 26px;
	text-align: center;
	margin: auto;
	margin-top: 20px;
}

.btn-submit {
	border-radius: 23px;
	background-color: #B01082;
	padding: 15px 30px;
	border: none;
	outline: 0;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin-top: 20px;
}

/* end success page*/
/* SLIDE*/
.slide-projects {
	width: 100%;
}

@media (min-width: 1200px) {
	.slide-projects .slick-track {
		display: flex !important;
	}
}

.card-project {
	width: 350px !important;
}

@media (min-width: 1024px) {
	.card-project {
		width: 520px !important;
		margin-right: 1vw;
		margin-left: 15px;
	}
}

/* END SLIDE*/
.footer {
	background-color: #27224E;
	min-height: 300px;
}

.footer-rds-logo {
	background: url('../../img/rds-white2.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 56px;
	height: 80px;
	margin-top: 7px;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	left: 52%;
	top: 50px;
}

.footer .title {
	color: #FFFFFF;
	font-size: 22px;
	font-weight: 500;
	text-transform: uppercase;
}

.footer .icon-container {
	margin-top: 25px;
}

.footer .icon-container .twitter {
	background: url('../../img/twitter.png');
	width: 66px;
	height: 64px;
	display: inline-block;
	margin-right: 20px;
}

.footer .icon-container .instagram {
	background: url('../../img/instagram.png');
	width: 66px;
	height: 64px;
	display: inline-block;
	margin-right: 20px;
}

.footer .icon-container .facebook {
	background: url('../../img/facebook.png');
	width: 66px;
	height: 64px;
	display: inline-block;
}

.footer .link {
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	padding-bottom: 10px;
}

.footer .link a:hover {
	color: #B01082 !important;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	padding-bottom: 10px;
}

.footer p {
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 500;
	line-height: 3px;
}

.footer .bordercopy {
	border-bottom: 1px solid #FFFFFF;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.footer .copyright {
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 400;
	text-align: center;
	padding-bottom: 40px;
}

.ui-widget-shadow {
	background: #FFF;
	filter: none;
	width: 520px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
	border-radius: 47px;
	background-color: #FFFFFF;
	display: inline-block;
	margin: 20px 10px;
	padding: 20px 20px 20px 20px;
	opacity: 0.9;
	color: #2A245A;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	border: none;
}

.btn-tip,
.btn-close {
	display: inline-block;
	float: right;
	border: none;
	border-radius: 5px;
	width: 30px;
	height: 30px;
	color: white;
	background: #3AB4B4;
	font-size: 22px;
	position: absolute;
	right: 10px;
	top: 40px;
}

.popup {
	width: auto !important;
	max-width: 680px !important;
}

.popup__title {
	max-width: 90%;
}

.popup__close {
	position: absolute;
	top: 16px;
	right: 20px;
}

.input-group-addon {
	position: absolute;
	right: 10px;
	top: 13px;
}

.input-group-addon a {
	color: #3AB4B4;
}

.login-container label {
	display: block;
}

input[type="text"],
input[type="email"],
input[type="password"] {
	width: 100%;
	padding: 5px;
	margin-bottom: 25px;
}

.login-container .button-primary,
#wppb-recover-password-button{
	width: 100%;
	height: 62px;
	border-radius: 31px;
	background-color: #B01082;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
	border: none;
	opacity: 1;
	text-align: center;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}

.login-container .button-primary:hover {
	background: #53083D;
}

.login-container .button-primary:disabled {
	opacity: 0.5;
}

.login-container .button-primary i {
	font-size: 30px;
	padding-right: 10px;
	line-height: 27px;
}

.register-container ul {
	list-style: none;
}

.register-container .form-submit .submit.button {
	background-color: #B01082;
	border-radius: 4px;
	border: none;
	color: #FFFFFF;
	text-align: center;
	padding: 15px;
}

.register-container .wppb-success {
	background-color: #3AB4B4;
	border: none;
	color: white;
	padding: 25px;
}

.register-container input.wppb-msf-tabs {
	margin-bottom: 16px !important;
}

.register-container #wppb-msf-tabs {
	margin-bottom: 26px !important;
}

input[type="button"].wppb-msf-next,
input[type="button"].wppb-msf-prev {
	background-color: #B01082;
	border-radius: 4px;
	border: none;
	color: #FFFFFF;
	text-align: center;
	font-weight: 200;
	float: right;
	padding-left: 14px;
	margin: 0 0 40px;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}

.wppb-msf-prev:disabled,
.wppb-msf-next:disabled {
	opacity: 0.3;
}

.register-container {
	padding-top: 90px;
}

.form-submit {
	display: flex;
}

/*input[type="submit"] {*/
/*	background-color: #B01082;*/
/*	border-radius: 4px;*/
/*	border: none;*/
/*	color: #FFFFFF;*/
/*	text-align: center;*/
/*	font-weight: 200;*/
/*	padding: 14px 10px;*/
/*	!*width: 120px !important;*!*/
/*	margin: 0 auto 20px auto;*/
/*	-o-transition: .5s;*/
/*	-ms-transition: .5s;*/
/*	-moz-transition: .5s;*/
/*	-webkit-transition: .5s;*/
/*	transition: .5s;*/
/*}*/

.wppb-msf-tabs {
	background-color: #696969 !important;
	transition: .5s;
}

.wppb-msf-tabs:hover {
	background-color: #3AB4B4 !important;
}

.wppb-msf-active {
	background-color: #3AB4B4 !important;
}

.wppb-form-field label, .wppb-msf-step label {
	color: #9F9F9F !important;
	float: none !important;
	width: 100% !important;
}

.wppb-form-field > span, .wppb-input {
	margin-left: initial !important;
}

.wppb-form-field span.wppb-required {
	border: none !important;
	width: 100% !important;
	color: #3AB4B4 !important;
	font-size: 26px !important;
}

.wppb-form-field span:not(.wppb-required):first-child,
.wppb-msf-field select, .wppb-msf-step select,
.wppb-form-field input, .wppb-form-field input,
.wppb-msf-field input, .wppb-msf-step input {
	border: none !important;
	border-bottom: 1px solid #CED4DA !important;
	width: 100% !important;
	color: #3AB4B4 !important;
	font-size: 26px !important;
}

.wppb-field-error {
	background-color: transparent !important;
	color: red;
	border: none !important;
}

.wppb-form-field > span.wppb-form-error,
.wppb-form-field > span.wppb-description-delimiter {
	font-size: 14px !important;
	line-height: 24px;
	font-style: normal;
}

.wppb-user-forms ul li, .wppb-msf-tabs, .wppb-form-field {
	margin-bottom: 35px !important;
}

.wppb-user-forms ul li:last-of-type {
	margin-bottom: 0 !important;
}

.ui-tooltip {
	left: 100%;
}

/* fix for the register user form */
/*form.wppb-register-user ul > li.wppb-msf-step + .wppb-msf-step-commands .wppb-msf-next {*/
/*	display: none;*/
/*}*/
form.wppb-register-user .wppb-msf-step select {
	font-size: 20px !important;
	background-color: transparent;
}

/* jQuery UI overrides */
.ui-state-default, .ui-widget-content, .ui-widget-content .ui-state-default, .ui-widget-header, .ui-widget-header .ui-state-default {
	border: none;
	background: transparent !important;
}

.ui-tabs .ui-tabs-nav li {
	margin: 0;
	white-space: inherit;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
	color: white;
}

.ui-widget input[type=text] {
	color: #3AB4B4;
}

.btn--purple {
	background-color: #B01082;
	border: none;
}

.btn--inline {
	display: inline-flex;
}

@media (min-width: 1024px) {
	.btn--inline {
		margin: 0 10px;
	}
}

.btn-purple:hover, .btn--purple:hover, .btn-primary.disabled, .btn-primary:disabled {
	background-color: #B01082;
	filter: brightness(85%);
}

@media (min-width: 1024px) {
	button.slick-prev.slick-arrow {
		left: -100px;
	}

	button.slick-next.slick-arrow {
		right: -100px;
	}
}

.button-card .btn-menu {
	text-decoration: none;
}

a.btn:hover {
	color: white !important;
}


a.btn-saveexit:hover {
	background-color: #B01082;
	color: white;
}

/** Notification Modal */
.login-notification {
	display: flex;
	align-items: center;
	justify-content: space-between;

	border: 1px solid #E6E6E6;
	border-left: 5px solid #B01082;
	border-radius: 5px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
	background-color: rgba(176, 16, 130, 0.04);
	transition: background-color .4s ease;
	padding: 20px 11px 20px 15px;
	margin-bottom: 30px;

	text-decoration: none !important;
}

.login-notification:hover {
	background-color: rgba(176, 16, 130, 0.08);
}

.login-notification .login-notification__content {
	padding: 0 20px;
}

.login-notification .login-notification__title {
	font-weight: bold;
	font-size: 16px;
	color: #26224E;
	line-height: 24px;
	margin-bottom: 0;
}

.login-notification .login-notification__text {
	font-size: 14px;
	line-height: 24px;
	color: #26224E;
	margin-bottom: 0;
}

.login-notification .login-notification__icon:last-child {
	margin-left: auto;
}

@media (max-width: 420px) {
	.login-notification {
		flex-direction: column;
		padding: 10px 15px;
	}

	.login-notification .login-notification__content {
		padding: 0;
	}

	.login-notification .login-notification__title {
		text-align: center;
		margin-bottom: 5px;
	}

	.login-notification .login-notification__text {
		text-align: center;
	}

	.login-notification .login-notification__icon:first-child {
		margin-bottom: 10px;
	}

	.login-notification .login-notification__icon:last-child {
		display: none;
		margin-left: 0;
	}
}

/* Adjustments for create/edit class form */
.js-create-class .form-group.share-email-consent p,
.js-edit-class .form-group.share-email-consent p {
	color: #9F9F9F;
	font-size: 14px;
	font-weight: 400;
	line-height: 27px;
}

.js-create-class .form-group.share-email-consent .custom-control-input:not(:disabled):active ~ .custom-control-label::before,
.js-edit-class .form-group.share-email-consent .custom-control-input:checked ~ .custom-control-label::before,
.js-edit-class .form-group.share-email-consent .custom-control-input:not(:disabled):active ~ .custom-control-label::before,
.js-edit-class .form-group.share-email-consent .custom-control-input:checked ~ .custom-control-label::before {
	color: #FFF;
	background-color: #3AB4B4;
	border-color: #3AB4B4;
}

.disable-link {
	pointer-events: none;
}

.wppb-default-password .wppb-toggle-pw {
	height: 85%;
}

.wppb-default-repeat-password .wppb-toggle-pw {
	height: 150%;
}

.container.register-container {
	min-height: calc(100vh - 433px);
}

.container.login-container {
	padding-bottom: 70px;
}

#MainContent_FormContent .form-group .form-control {
	margin-top: 60px;
	margin-bottom: 40px;
}

#MainContent_FormContent label {
	top: -1.9em
}

#MainContent_FormContent select {
	background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 100% 50%;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

#MainContent_FormContent .share-email-consent p {
	margin-bottom: 45px;
}

#MainContent_FormContent input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.profile-page .card-body {
	padding-top: 10px !important;
}

.profile-page .form-group-mb.row {
	padding-top: 10px;
	padding-bottom: 10px;
}

.profile-page .p-10 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.profile-page .edit-btn {
	right: 20px;
	top: 20px;
}

.profile-page .delete-btn {
	right: 70px;
	top: 20px;
}

.profile-page .edit-btn:hover,
.profile-page .delete-btn:hover {
	text-decoration: none;
	color: white;
	background-color: #970069;
}

input[name=edit_profile].button {
	color: white;
	background-color: #B01082;
	padding: 15px 20px;
	border: 0;
	border-radius: 4px;
}

.btn-new-class {
	background-color: transparent;
	color: black;
	border: 1px solid black;
	padding: 20px 50px;
	border-radius: 40px;
}

.btn-new-class:hover {
	background-color: #B01082;
	border-color: #B01082;
	color: white;
}

@media (max-width: 1023px) {
	.content_title {
		margin-left: -20px;
	}
	.slide-projects {
		margin-left: 20px !important;
		padding-left: 0 !important;
	}
	.slick-initialized .slick-slide {
		margin-right: 15px;
	}
	.slick-arrow {
		display: none !important;
	}

	/* View submission */
	.review-box {
		margin: 0 20px;
	}

	.review-box .question {
		font-size: 16px !important;
		width: 90%;
	}

	.edit-btn2 {
		width: inherit;
	}

	.translate.response {
		margin-top: 10px !important;
	}

	.answers .answer {
		box-shadow: none !important;
		border-radius: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.review-box .check {
		display: none;
	}
}

#wppb-recover-password p:first-child{
	margin-bottom: 40px;
}

.login-register-lost-password{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: #4A7EB7;
}

.login-register-lost-password a{
	color: #4A7EB7;
}

.login-username,
.login-password {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.login-username,
.login-password,
.login-remember {
	margin-bottom: 20px !important;
}

#wppb-loginform input[type="password"],
#wppb-loginform input[type="text"],
#wppb-loginform input[type="email"]{
	width: 100% !important;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #CED4DA !important;
	width: 100% !important;
	color: #3AB4B4 !important;
	font-size: 26px !important;
}

#wppb-loginform label{
	width: auto;
	color: #9F9F9F !important;
	float: none !important;
	width: 100% !important;
	display: inline-flex;
	position: relative;
	gap: 10px;
	width: auto !important;
	margin-bottom: 0 ;
}

.login-username label::after,
.login-password label::after{
	content: "*";
	display: inline-block;
	font-size: 24px;
	color: #3AB4B4;
	position: absolute;
	right: -18px;
	transform: translateY(-20%);
}

.wppb-recaptcha{
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.wppb-recaptcha label{
	display: none !important;
}

.login-password .wppb-toggle-pw{
	bottom: 0;
	position: absolute;
}
