/**
 * CSS Rencanamu
 * 
 */

@font-face {
	font-family: mosk-reguler;
	src: url(../fonts/Mosk-Normal-400.ttf) format("truetype");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: mosk-bold;
	src: url(../fonts/Mosk-Bold-700.ttf) format("truetype");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: mosk-light;
	src: url(../fonts/Mosk-Light-300.ttf) format("truetype");
	font-weight: 400;
	font-style: normal
}



/** 
 * Font Family class
 */

.mosk-reguler {
	font-family: 'mosk-reguler';
}

.mosk-bold {
	font-family: 'mosk-bold';
}

.mosk-light {
	font-family: 'mosk-light';
}



/** 
 * Font Color class 
 */

.font-white {
	color: white;
}

.font-red {
	color: #C1272D !important;
}

.font-black {
	color: #000;
}


/**
 * Padding
 */
.padding-sm {
	padding: 2px !important;
}

.padding-md {
	padding: 5px !important;
}


/**
 * Box shadow
 */

.box-shadow {
	-webkit-box-shadow: 0px 7px 18px -3px rgba(212, 212, 212, 1);
	-moz-box-shadow: 0px 7px 18px -3px rgba(212, 212, 212, 1);
	box-shadow: 0px 7px 18px -3px rgba(212, 212, 212, 1);
}


/**
 * Colors
 */
.gradient {
	background: rgba(167, 32, 100, 1);
	background: -moz-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(167, 32, 100, 1)), color-stop(100%, rgba(226, 35, 26, 1)));
	background: -webkit-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -o-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -ms-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: linear-gradient(to right, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
}

.transparent {
	background-color: transparent !important;
	color: black !important;
}

.red {
	background-color: #C1272D;
}

.blue {
	background-color: #2BA4B7;
}

.orange {
	background-color: #EA563E;
}

/* Color with box-shadow */
.orange-bs {
	background-color: #EA563E !important;
	box-shadow: 0 0 0 2px #fff, 0 0 0 3px #EA563E;
}

.blue-bs {
	background-color: #2BA4B7 !important;
	box-shadow: 0 0 0 2px #fff, 0 0 0 3px #2BA4B7;
}


/**
 * Button
 */

.button.btn-border,
a.button.btn-border {
	border: 2px solid #dedede !important;
}

.button.btn-round,
a.button.btn-round {
	border-radius: 50px;
}

.button.btn-squre,
a.button.btn-square {
	border-radius: 15px;
}

.button:hover,
.button:active,
.button:focus,
a.button:hover,
a.button:active,
a.button:focus {
	opacity: 0.88;
}


/**
 * Square
 */
.square {
	color: white;
	border-radius: 20px;
	padding: 30px;
}

.square ul {
	padding-left: 20px;
	line-height: 2em;
}


/**
 * Owl Carousel
 */
.owl-carousel.flex .owl-stage {
	display: flex;
}

/**
 * Modal
 */
.modal-illustration-left .modal-dialog { max-width: 845px; }
.modal-illustration-left .modal-popup { padding: 20px 40px }
.modal-illustration-left .popup-cta-left { display: inline-block; width: 40%; vertical-align: middle; margin-right: -5px; }
.modal-illustration-left .popup-cta-right { display: inline-block; width: 60%; vertical-align: middle; padding: 20px; text-align: left; }

.modal .gradient p,
.modal .gradient h2
{
	color: white;
}

.modal-illustration-left .popup-cta-rocket {
	position: absolute;
    width: 307px;
    left: 245px;
}
.modal-illustration-left .popup-cta-right h2 {
	margin-bottom: 15px;
}

@media(max-width: 768px) {
	.modal-illustration-left .modal-popup { 
		padding: 20px;
	}
	.modal-illustration-left .popup-cta-left,
	.modal-illustration-left .popup-cta-right {
		width: 100%;
	}
		.modal-illustration-left .popup-cta-left {
			text-align: center;
		}
		.modal-illustration-left .popup-cta-left img {
			display: inline;
			width: 70%;
		}
	.modal-illustration-left h2 {
		font-size: 25px;
		margin-bottom: 15px;
	}
	.modal-illustration-left .popup-button {
		display: flex;
		align-items: center;
    	justify-content: center;
	}
}


body,
html {
	/*line-height: 1.5em;*/
	font-family: 'mosk-reguler';
	height: unset;
	font-size: 16px !important;
}

.p {
	font-family: 'mosk-reguler';
	/*line-height: 1.5em;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'mosk-bold';
	/*line-height: 1.5em;*/
}


.row.display-flex,
.display-flex {
	display: flex;
	flex-wrap: wrap;
}

.row.display-flex [class*='col-'],
.display-flex [class*='col-'] {
	display: flex;
	flex-direction: column;
}

.row.display-flex [class*='col-'].middle,
.display-flex [class*='col-'].middle {
	justify-content: center;
	align-items: center;
}



header.sticky,
header.sticky#contacts,
.bg_header {
	background: rgba(167, 32, 100, 1);
	background: -moz-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(167, 32, 100, 1)), color-stop(100%, rgba(226, 35, 26, 1)));
	background: -webkit-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -o-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -ms-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: linear-gradient(to right, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
}

#heding_title div {
	font-size: 16px;
}

@media (max-width: 991px) {
	p {
		font-size: 16px;
	}
}

#nav-notif-dropdown li a .content .message {
	color: black
}

#top-nav a {
	font-size: 15px !important
}

#top-nav li a {
	color: #FFF;
	line-height: 20px !important;
}

#top-nav li a.font-red {
	color: #C1272D !important;
}

#top-nav a:hover {
	opacity: 0.7;
	color: #FFF;
}

.nav-icon li a { color: white }

#fitur_head a {
	color: #C1272D !important;
}

#menu-trigger .menu-trigger-text {
	color: #FFF;
	font-family: ars_maquette_proregular, Arial, Helvetica, sans-serif;
	font-size: 15px;
}

#menu-trigger .menu-trigger-text.font-red {
	color: #C1272D !important;
}

#menu-trigger .menu-trigger-icon {
	background-color: #FFF;
	left: 50%;
}

#menu-trigger .menu-trigger-icon.font-red {
	background-color: #C1272D !important;
}

#menu-trigger.is-clicked .menu-trigger-icon {
	background-color: hsla(0, 0%, 100%, 0) !important;
}

footer {
	background: #333333;
}
	footer a.app-download {
		opacity: 1;
		display: block;
	}
		.app-download img {
			width: 50%;
		}

#logo_footer img {
	width: 75%;
}

#copy {
	background: #4D4D4D;
	color: white;
}


.modal-popup {
	border-radius: 20px;
}


.post_related {
	border-radius: 20px;
	overflow: hidden;
}



@media(max-width: 767px) {
	#logo_footer {
		text-align: center;
	}

	#logo_footer img {
		width: 60%;
	}
}






/**
 * Assessment
 */

.button.nxt {
	border: inherit;
}

.heding_title {
	margin-bottom: 20px;
}

.heding_title p {
	padding: 10px 0 15px;
	font-family: 'mosk-reguler';
}

._50 {
	margin: 0 10px;
}

._50 h3,
._50 h4,
._50 p {
	font-family: 'mosk-reguler';
}

label>input+img {
	background: #e5e5e5;
	border: 4px solid transparent;
	border-radius: 100%;
}

label>input:checked+img {
	border: 4px solid #C1272D;
}

#modul .question_wrapper {
	padding: 20px 0;
}

.question_mod2 {
	font-family: 'mosk-reguler';
}

.conditionL label>input+img {
	border: 3px solid #d5d5d5;
	background: #d5d5d5;
}

.conditionL label>input:checked+img {
	border: 3px solid #8CC63F;
	background: #8cc63f;
}

.bar-container:not(.result) {
	margin-bottom: 20px;
}

.bar-container.result {
	height: 10px;
	width: 86%;
}

.bar-container.progress-modul {
	background: white;
	border: 2px solid #dedede;
	border-radius: 22px;
}

.bar-container.progress-modul .bar-text {
	color: black;
	margin-top: 2px;
}

#result1 .bar-percentage {
	background: transparent;
	border-radius: 100%;
	border: unset;
	width: 5%;
	color: black;
}

#result1 .bar-percentage {
	color: black;
}

#result1 .bar-percentage.active.orange {
	background-color: #EA563E;
	color: white;
}

#result1 .bar-percentage.active.blue {
	background-color: #2BA4B7;
	color: white;
}

.asm-bar-white {
	background-image: unset;
	background: rgba(167, 32, 100, 1);
	background: -moz-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(167, 32, 100, 1)), color-stop(100%, rgba(226, 35, 26, 1)));
	background: -webkit-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -o-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -ms-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: linear-gradient(to right, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	border: none;
	border-radius: 25px;
}

.bar-container.bg2 .bar-loading {
	border-radius: 17px !important;
	overflow: hidden;
	background: unset !important;
	border: none !important;
}

.bar-container.bg2 .asm-bar-green {
	border: none !important;
	background: #C1272D;
}

#modul #choose_input label {
	border: none;
	border-radius: 25px;
}

#modul #choose_input label:active {
	border: none;
}

#modul #choose_input input.radio:empty~label:before {
	border-radius: 25px 0 0 25px;
}

.crossRotate:active:after {
	border-radius: 25px;
}

#modul .demo {
	margin-top: 25px;
	border: none;
}

.image_title {
	width: 100%;
	text-align: center;
}

.image_title img {
	width: 35%;
}

.wrapper_result {
	margin-top: 30px;
}

.wrapper-result p {
	font-family: 'mosk-reguler';
}

#asmDesc1 {
	background-color: #C1272D;
	border: none;
	font-size: 16px;
	padding: 20px;
}

.mtbi_title {
	margin-bottom: 10px;
}

.mbti-desc-wrapper {
	margin-top: 15px;
}

.mbti-desc {
	border-radius: 20px;
	padding: 20px 40px;
	color: white;
}

.mbti-desc.desc-orange {
	background: #EA563E;
}

.mbti-desc.desc-blue {
	background: #2BA4B7;
}

.mbti-desc h3,
.mbti-desc h4 {
	color: white;
}

.mbti-desc h4 {
	margin-top: 5px;
}

.mbti-desc h3 {
	margin: 0;
	font-size: 28px;
}

.mbti-desc ul {
	padding-left: 20px;
	line-height: 2em;
	margin-top: 10px;
}

.mbti-desc img {
	width: 75%;
}

.question_mod3 {
	font-family: 'mosk-reguler';
}

#result1 .nav-pills li {
	border-radius: 10px;
	overflow: hidden;
}

#result1 .nav-pills li a:not(.notb) {
	border: unset;
}

#result1 .nav-pills li.active i {
	color: white;
}

#result1 .panel {
	border: none;
}

.personality-box {
	background: #C1272D;
	border-radius: 10px;
	padding: 30px;
	position: relative;
	overflow: hidden;
}

.personality-text p,
.personality-text h2,
.personality-text h3 {
	color: white;
}

.personality-text p {
	margin-bottom: 10px;
}

.personality-text h2,
.personality-text h3 {
	margin: 0 0 10px;
	line-height: unset;
}

.personality-img {
	position: absolute;
	top: -8px;
	right: 9px;
	width: 40%;
}

.passion-card {
	color: white;
	border-radius: 15px;
	padding: 10px 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	transition: transform 0.15s linear;
}

.passion-card:hover,
.passion-card:active,
.passion-card:hover {
	transform: scale(1.03);
}

.passion-card.orange {
	background-color: #EA563E;
}

.passion-card.blue {
	background-color: #2BA4B7;
}

.passion-score {
	color: white;
	text-align: center;
}

.passion-card img {
	padding: 0 15px;
	width: 100%;
}

.passion-text-bottom {
	margin-top: auto;
}

.passion-subtitle {
	font-size: 10px;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.4em;
	margin-bottom: 5px;
	color: #DDDDDD;
}

.passion-title {
	font-size: 16px;
	color: white;
	margin-top: 0;
}

#passion-card-group h4 {
	text-align: left;
}

.passion-card-horizontal {
	border-radius: 15px !important;
	background: #d5d5d5 !important;
	overflow: hidden;
	margin: 20px 0 !important;
}

.passion-img-left.blue {
	background-color: #2BA4B7;
}

.passion-img-left.orange {
	background-color: #EA563E;
}

.passion-img-left img {
	width: 75%;
}

.passion-text-right {
	padding: 20px;
	align-items: flex-start !important;
	text-align: left;
}

.passion-text-right .passion-subtitle {
	color: #828282;
}

.passion-text-right .passion-title,
.passion-text-right .passion-score {
	color: black;
	margin: 0;
}

.passion-accordion-content {
	background-color: white;
	text-align: left;
}

.passion-accordion-content>div {
	padding: 20px;
}

.passion-left-panel {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
}

.passion-left-panel.blue {
	background-color: #2BA4B7;
}

.passion-left-panel.orange {
	background-color: #EA563E;
}

.passion-left-panel img {
	width: 35%;
}

.passion-accordion-head.sm {
	margin: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	transition: all 0.2s linear;
}

.passion-accordion-head.sm.active.blue {
	background-color: #2BA4B7;
}

.passion-accordion-head.sm.active.orange {
	background-color: #EA563E;
}

.passion-accordion-head.sm:not(.active) {
	background-color: transparent;
}

.passion-accordion-head.sm a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}

.passion-accordion-content.sm {
	padding: 30px;
	height: 100%;
	margin-bottom: 0;
}

.passion-accordion-content .panel {
	background-color: transparent !important;
	border-radius: unset;
	margin: unset;
	padding: unset;
	box-shadow: none;
}

.passion-accordion-content.sm h4 {
	color: black;
	margin: 0;
}

.passion-accordion-content.sm .passion-subtitle {
	color: #828282;
}

.passion-accordion-content.sm .passion-score {
	text-align: left;
}

.segmented-control {
	border-radius: 32px;
}

#result3 .wrapper {
	border: none;
	background-color: unset;
}

.learn-card-horizontal {
	border-radius: 15px !important;
	background: #E1E7F0 !important;
	overflow: hidden;
	margin: 20px 0 !important;
}

.learn-img-left.blue {
	background-color: #2BA4B7;
}

.learn-img-left.orange {
	background-color: #EA563E;
}

.learn-img-left img {
	width: 75%;
}

.learn-text-right {
	padding: 20px;
	align-items: flex-start !important;
	text-align: left;
}

.learn-text-right .learn-subtitle {
	color: #828282;
	text-transform: uppercase;
	line-height: 1.4em;
	margin-bottom: 5px;
	font-size: 10px;
}

.learn-text-right .learn-title {
	color: black;
	margin: 0;
}

.learn-accordion-content {
	background-color: white;
	text-align: left;
}

.learn-accordion-content>div {
	padding: 20px;
}

.ability-card {
	color: black;
	border-radius: 15px;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: white;
	overflow: hidden;
	transition: transform 0.15s linear;
	height: 100%;
}

.ability-img {
	height: 150px;
}

.ability-text {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ability-footer {
	margin-top: auto;
	border-top: 2px solid #ededed;
	padding-top: 25px;
}

.ability-footer p.title {
	margin-bottom: 0;
	color: #989898;
}

.ability-footer p:not(.title) {
	margin: 5px 0;
	font-family: 'mosk-bold';
}

.ability-footer a.button {
	margin: 25px 0 10px;
	width: 100%;
}

.ability-footer button.done {
	width: 100%;
	margin: 25px 0 10px;
}

.ability-card.break {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(167, 32, 100, 1);
	background: -moz-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(167, 32, 100, 1)), color-stop(100%, rgba(226, 35, 26, 1)));
	background: -webkit-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -o-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: -ms-linear-gradient(left, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
	background: linear-gradient(to right, rgba(167, 32, 100, 1) 0%, rgba(226, 35, 26, 1) 100%);
}

.ability-card.break h2 {
	color: white;
	display: inline-block;
}

.tab-title {
	text-align: left;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px
}

.tab-title img {}

.tab-title h3 {
	display: inline-block;
	margin-left: 10px;
	margin: 0 !important;
}

.tab-section {
	padding-bottom: 15px;
	border-bottom: 1px solid #cfcfcf;
	margin-bottom: 35px;
}

.tab-section:last-child {
	border-bottom: none;
}

.tab-section ul {
	padding-left: 20px;
	line-height: 2em;
}

.tab-section .square {
	height: 100%
}

.tab-section .square h4 {
	color: white;
}

.tab-section .square img {
	width: 70% !important;
}

.tab-section>h4 {
	margin-bottom: 20px;
}

#values_report .panel {
	border: none;
}

@media(max-width: 767px) {
	footer #logo_footer {
		margin-bottom: 10px;
	}
		footer a.app-download {
			margin-bottom: 40px
		}
			.app-download img {
				width: 30%;
			}

	.image_title img {
		width: 70%;
	}

	.bar-container.result {
		width: 67%;
	}

	#result1 .bar-percentage {
		width: 35px;
		margin-right: 15px;
	}

	.tab-title {
		text-align: left;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}

	.tab-title h3 {
		text-align: left !important;
	}
}


@media(max-width: 375px) {
	.bar-container.result {
		width: 62%;
	}
}

.package-new {
	background: #E0E7F1;
	border-radius: 15px;
	height: 100%;
	transition: all 200ms ease-in;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.package-new:hover {
	transform: scale(1.05);
}

@media(max-width: 767px) {
	.package-new:hover {
		transform: unset;
	}
}

.package-new p {
	margin: 0;
}

.package-head {
	text-align: center;
	padding-bottom: 20px;
}

.package-head img.package-icon {
	width: 40% !important;
	display: inline !important;
}

.package-head h4 {
	letter-spacing: 1px;
	position: relative;
	margin-bottom: 10px;
	margin-top: 0;
}

.package-head h4:after {
	content: '';
	border-bottom: 1px solid black;
	width: 45%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -3px;
}

.package-head span.discount {
	color: #666666;
	position: relative;
}

.package-head span.discount:after {
	content: '';
	border-bottom: 1px solid #666666;
	position: absolute;
	width: 100%;
	left: 50%;
	top: 55%;
	transform: translateX(-50%) rotate(-12deg);
}

.package-head p {
	font-size: 14px !important;
	margin-top: 10px
}

.package-head h2 {
	margin: 0;
	line-height: unset;
}

.package-feature {
	background: white;
	padding: 35px;
	flex-grow: 1;
}

#owl-package-new {
	display: block !important;
}

.package-feature p.feature-title {
	margin-bottom: 10px;
}

.package-feature p.feature-point {
	margin-left: 25px;
	position: relative;
	margin-bottom: 5px;
}

.package-feature p.feature-point:before {
	content: "\e084";
	color: #8BC53F;
	width: 20%;
	position: absolute;
	left: -25px;
	font-family: Glyphicons Halflings;
}

.feature-section {
	margin-bottom: 15px;
}

.package-footer {
	padding: 20px 0;
	text-align: center;
	background-color: white;
}

.package-footer .footer-txt {
	display: block;
	font-size: 14px;
}

.package-footer .footer-txt a {
	text-decoration: underline;
	color: #C1272D;
}

#owl-package-new .owl-dots {
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
}

#owl-package-new .owl-item .package-new {
	transform: scale(0.95);
}

#owl-package-new .owl-item.active-k .package-new {
	transform: scale(1);
}

#owl-package-new .owl-nav {
	opacity: 0.3;
}

#owl-package-new .owl-prev {
	position: absolute;
	top: 50%;
	left: -3%;
	transform: translateY(-50%);
}

#owl-package-new .owl-next {
	position: absolute;
	top: 50%;
	right: -3%;
	transform: translateY(-50%);
}