/*
Theme Name: Toffee Core
Theme URI: http://toffeedev.com
Author: Toffee
Author URI: http://toffeedev.com/
Description: Toffee Core
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: 
Text Domain: tcore

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

html, body {
	height: 100%;
	padding: 0;
	margin: 0;
}

body {
	background: #242424;
}

#body-wrapper {
    min-height: 100%;
    position: relative;
}


.transition {
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}


/*--- BUTTON ---*/
#main .tcore-btn-1 > button,
#body-wrapper .rev_slider_wrapper .tcore-btn-1 {
	overflow: hidden;
	border: 3px solid #003067;
	color: #003067;
	border-radius: 0;
    font-family: inherit;
    font-size: inherit;
    background: transparent;
    cursor: pointer;
    padding: 18px 50px 18px 20px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 0;
}

#main .tcore-btn-1 > button:hover,
#body-wrapper .rev_slider_wrapper .tcore-btn-1:hover {
	color: #fff;
}

#main .tcore-btn-1 > button:after,
#body-wrapper .rev_slider_wrapper .tcore-btn-1:after {
	content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    width: 0;
    height: 1000%;
    top: 50%;
    left: 50%;
    background: #003067;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

#main .tcore-btn-1 > button:hover:after,
#body-wrapper .rev_slider_wrapper .tcore-btn-1:hover:after {
	width: 72%;
    opacity: 1;
}


/*--- HEADER -----*/

.header {
	transition: all 0.4s ease;
	width: 100%;
	padding: 0;
	position: relative;
	min-height: 153px;
}

#top {
	position: absolute;
	top: 0;
	z-index: 1;
	width: 100%;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.sticky .sticky-header #top {
  position: fixed;
  background: rgba(255,255,255,0.9);
  z-index: 99;
  padding: 0;
  width: 100%;
}

.admin-bar.sticky .sticky-header #top {
	top: 32px;
}

.alignleft {
	float: left;
    margin: 0 20px 20px 0;
    display: block;
}

.alignright {
	float: right;
	margin: 0 0 20px 20px;
    display: block;
}

#branding {
	display: block;
	margin: 10px 0;
}

#branding img {
	max-height: 100%;
	width: auto;
}

.sticky #branding {
	height: 50px;
}

.sticky #branding img {
	height: 50px;
	width: auto;
}

#main {
    padding-bottom: 50px;
}

.sticky #main {
	padding-top: 140px;
}

#footer {
	background: #eee;
	padding: 15px 0;
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.copyright {
	font-size: 0.9em;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}

.menu {
	float: left;
	margin: 0;
	padding: 0;
}

.menu li {
	float: left;
	display: block;
	list-style: none;
	position: relative;
}

.menu li a {
	display: block;
	padding: 10px 15px;
}

.menu li a:hover {
	text-decoration: none;
}

.menu li ul {
	margin: 0;
	padding: 0;
	position: absolute;
	background: rgba(0, 37, 88, 0.7);
	border-top: 4px solid #002558;
	display: none;
	opacity: 0;
	z-index: 9;
	min-width: 120px;
	transition: opacity .25s ease-in-out;
	  -moz-transition: opacity .25s ease-in-out;
	  -webkit-transition: opacity .25s ease-in-out;	
}

.menu li ul li {
	display: block;
    float: none;
    text-align: left;
}

.menu li ul li:hover {
	background: rgba(0, 37, 88, 1);
}

.menu li ul li a {
	color: #fff;
	padding: 5px 15px;
}

.menu li:hover ul {
	display: block;
	opacity: 1;
}

.primary-menu .menu > li > a {
	padding: 30px 15px;
}

.sticky .primary-menu .menu > li > a {
	padding: 25px 15px;
}

.primary-menu .menu > li:after {
	display: block;
	content: "";
	width: 30%;
	height: 2px;
	background-color: #08ada7;
	position: absolute;
	bottom: 0;
	left: 35%;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;	
	opacity: 0;
}
.primary-menu .menu > li.current-menu-item:after, .primary-menu .menu > li:hover:after {
	width: calc(100%);
	left: 0;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;	
}
.primary-menu .menu > li.current-menu-item > a {
	text-decoration: none;
}
.primary-menu .menu > li > a.no_border:after {
	display: none;
}

#footer-menu li a {
	padding-top: 0;
	padding-bottom: 0;
}

ul.social-media {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.social-media li {
	display: inline-block;
}

ul.social-media li a {
	margin: 0 5px;
}

.gallery-columns-3 .gallery-item {
	float: left;
    width: 33.33%;
    padding: 2%;
    text-align: center;
}

.slicknav_menu {
	background: none;
	padding-top: 0;
	display: none;
}

/* This only works with JavaScript, 
if it's not present, don't show loader */
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-position: center center;
	background-repeat: no-repeat;
	/*background: url(images/toffeedev.png) center no-repeat #fff;*/
}

.animated-border-bottom:after {
	display: block;
	content: "";
	width: 0%;
	height: 4px;
	background-color: #002558;
	position: absolute;
	bottom: -10px;
	left: 0;
	-webkit-transition: all 2s ease;
	-moz-transition: all 2s ease;
	-o-transition: all 2s ease;
	-ms-transition: all 2s ease;
	transition: all 2s ease;
}

.animated-border-bottom.full-border:after {
	width: 75%;
}

/*-- search -------------------------------*/

.tcore-search {
	float: right;
	height: 82px;
	width: 40px;
	font-size: 18px;
	line-height: 82px;
	position: relative;
	text-align: center;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.tcore-search input.search-field {
	width: 260px;
    color: #262b2e !important;
    background: #fff !important;
    -webkit-text-fill-color: #262b2e !important;
    font: 600 13px / 17px "Open Sans", Helvetica, Arial, Verdana, sans-serif !important;
    text-transform: none;
    line-height: 25.5px;
    position: absolute;
    top: 77px;
    right: 0;
    height: 50px;
    border: 0;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    padding: 7px 10px;
}

.tcore-search button[type="submit"] {
	display: none;
}

/*--- Sidebar Subsidiary ---*/
#sidebar-subsidiary .widget {
	float: left;
	width: 25%;
	padding: 15px;
}

/* -- MOBILE MENU -- */
#body-wrapper {
	background: #fff;
	box-shadow: -2px 0px 10px #222;
	overflow: hidden;
	position: relative;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    left: 0;
}

.mobile-overlay {
	display: none;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.show-mobile-menu .mobile-overlay {
	position: fixed;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0,0,0,0.4);
    z-index: 100;
}

.show-mobile-menu #tcore-mobile {
	display: block;
	left: 0;
	overflow-y: scroll;
}

#tcore-mobile {
	background: #242424;
	position: fixed;
	width: 85%;
	height: 100%;
	top: 0;
	left: -100%;
	z-index: 101;
	display: none;
	box-shadow: 2px 1px 8px #000;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#tcore-mobile > a.menu-logo {
	display: block;
	padding: 10px 15px;
}

#tcore-mobile > a.menu-logo img {
	max-height: 30px;
	width: auto;
}

#tcore-mobile .tcore-mobile-close {
    display: block;
    position: absolute;
    top: 0px;
    right: 0;
    font-size: 24px;
    color: #fff;
    z-index: 5;
    height: 50px;
    line-height: 50px;
    width: 50px;
    text-align: center;
}


/* -- MOBILE VS DESKTOP -- */
.mobile {
	display: none !important;
}
.desktop {
	display: block !important;
}

/* -- SEARCH -- */
.tcore-search {
	float: right;
	height: 82px;
	width: 40px;
	font-size: 18px;
	line-height: 82px;
	position: relative;
	text-align: center;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.tcore-search input.search-field {
	width: 260px;
    color: #262b2e !important;
    background: #fff !important;
    -webkit-text-fill-color: #262b2e !important;
    font: 600 13px / 17px "Open Sans", Helvetica, Arial, Verdana, sans-serif !important;
    text-transform: none;
    line-height: 25.5px;
    position: absolute;
    top: 77px;
    right: 0;
    height: 50px;
    border: 0;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    padding: 7px 10px;
}

.tcore-search button[type="submit"] {
	display: none;
}

.gform_wrapper .hide-label .top_label .gfield_label {
	display: none;
}

/*--- COLOR ---*/
a, h1, h2, h3, h4, h5 {
	color: #003067;
}

.primary-menu .menu > li:after {
	background-color: #003067;
}

/*--- COLORBOX ---*/
#cboxOverlay {
	opacity: 0.6 !important;
	background: #000 !important;
}

#cboxWrapper, #colorbox {
	overflow: visible !important;
}

#cboxLoadedContent {
	padding: 0;
	box-shadow: 0px 0px 20px #000;
}

#cboxClose {
    background-image: none;
    background-color: #6c6c6c;
    border-radius: 20px;
    top: -9px;
    right: -9px;
}

#cboxClose:after {
	font-family: FontAwesome;
    content: "\f00d";
    width: 20px;
    height: 20px;
    display: block;
    margin-top: -20px;
    color: #fff;
    text-indent: 0;
}

@media only screen and (max-width: 1024px) { 
	.mobile { 
		display: block !important;
	}
	.desktop {
		display: none !important;
	}

	/* -- HEADER -- */
	.mobile #branding {
	    margin: 10px 0;
	}
	.mobile #branding img {
		max-height: 40px;
		width: auto;
	}

	/* -- FOOTER -- */
	.footer-left {
		text-align: center;
	}
	.footer-right {
		text-align: center;
	}
	.copyright {
	    line-height: 35px;
	}

	/* -- GFORM -- */
	#main .gform_wrapper .top_label li.gfield.gf_left_half,
	#main .gform_wrapper .top_label li.gfield.gf_right_half {
		float: none;
		display: block;
		width: 100%;
	}

	#main .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half, 
	#main .gform_wrapper .top_label li.gfield.gfield_error.gf_right_half {
		width: 100% !important;
	}

	/* -- SEARCH -- */
	.tcore-search {
		width: 100%;
		text-align: center;
		height: 60px;
		line-height: 60px;
		font-size: 26px;
	}
	.tcore-search input.search-field {
		top: 55px;
	}

	/* -- MOBILE MENU -- */
	#body-wrapper {
		z-index: 2;
	}
	#tcore-mobile {
		display: block;
	}
	#tcore-mobile ul {
		float: none;
		display: block;
		width: 100%;
	}
	#tcore-mobile ul li {
		display: block;
		float: none;
		width: 100%;
		border-bottom: 1px solid #1b1b1b;
		border-top: 1px solid #2f2f2f;
	}
	#tcore-mobile ul li a {
		color: #fff;
		display: block;
	}
	#tcore-mobile li.menu-item-has-children .open-children {
		content: "\f067";
	    font-family: FontAwesome;
	    display: inline-block;
	    color: #fff;
	    position: absolute;
	    right: 0;
	    font-size: 17px;
	    padding: 0;
	    cursor: pointer;
	    width: 40px;
	    text-align: center;
	    -webkit-transition: all .2s ease-in-out;
	    -moz-transition: all .2s ease-in-out;
	    -o-transition: all .2s ease-in-out;
	    -ms-transition: all .2s ease-in-out;
	    transition: all .2s ease-in-out;
	    top: 0;
	    height: 40px;
	    line-height: 40px;
	}
	#tcore-mobile li.menu-item-has-children.show-children > a > a.open-children {
		-ms-transform: rotate(45deg); /* IE 9 */
	    -webkit-transform: rotate(45deg); /* Safari */
	    transform: rotate(45deg); /* Standard syntax */
	}
	#tcore-mobile li ul {
		display: none;
	    position: relative;
	    visibility: visible;
	    opacity: 1;
	    background: transparent;
	    border-top: 0;
	    -webkit-transition: all 0.5s ease-in-out;
	    -moz-transition: all 0.5s ease-in-out;
	    -o-transition: all 0.5s ease-in-out;
	    -ms-transition: all 0.5s ease-in-out;
	    transition: all 0.5s ease-in-out;
	}
	#tcore-mobile li.show-children > ul {
		display: block;
	}
	#tcore-mobile li ul li {
		padding-left: 10px;
	}
	#tcore-mobile li ul li a {
		padding: 10px 15px;
		display: inline-block;
	}
	#tcore-mobile li ul li:last-child a {
		border-bottom: 0;
	}

	#tcore-mobile li ul li:before {
		content: "\f054";
	    font-family: FontAwesome;
	    display: inline-block;
	    padding: 10px 0px 10px 8px;
	    color: #fff;
	}
	.tcore-mobile-menu {
		display: block;
		height: 60px;
		line-height: 60px;
		width: 100%;
		text-align: center;
		font-size: 26px;
		cursor: pointer;
	}
}

@media only screen and (max-width: 992px) {

}

/* Small devices (tablets, 768px and up) */
@media only screen and (max-width: 768px) {

	.xs-text-center {
		text-align: center !important;
	}

}

@media only screen and (max-width: 480px) {

}

/* MMI Tambahan */
.btn-mandiri-yellow {
    color: #f6d011;
    padding: 20px 30px;
    font-size: 25px;
    border: 2px solid;
    font-weight: 800;
}

.btn-mandiri-yellow:active,
.btn-mandiri-yellow:hover,
.btn-mandiri-yellow:visited {
    text-decoration: none;
    color: #f6d011
}

.section_page {
    min-height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section_center {
    display: flex;
    align-items: center;
}

.img-bod div > img {
    width: 350px;
}

.expand-mmi > div {
    padding: 0;
}

.expand-mmi .align-icon > span {
    font-size: 20px !important;
}

.expand-mmi .ult_exp_icon {
    padding: 0 !important;
}

.text-kelola {
    margin: 0 !important;
}

.expand-mmi .ult_expleft_icon {
    border-bottom: 1px solid #cdcdcd;
}

.text-content-kelola {
    margin: 30px 0;
    text-align: left;
}

.expand-mmi .ult_ecpsub_cont {
    max-width: unset;
}

.mandiri-product-page .vc_custom_heading {
    margin: 20px 0;
}
