/**
 * After the change on framework to bootstrap 4 this file will be used as generic core styling of the project
 * When you add a style on this file that may overwrite or change the style of a class that used on style.css please
 * remove the class from there in order to delete the style.css on the future.
 * @important This file is for generic use any class that uses #id or .class as main identifier that it is specific
 * for one widget or a place must be added on different file
 */

/**
 * Structure of the CSS is mobile first and then per bootstrap 4 breakpoint
 */
/* Labels */
.field-block-label {
	font-size: 15px;
	display: block;
	text-align: center;
	font-weight: bold;
}
.height-24 {
	height: 24px;
}
/* Inputs */
input:focus {
	outline: none;
	box-shadow: none;
}

input.error,
input.error:focus,
input.error:active,
input.error.active {
	border: solid 1px red;
}
/* Background Colors */
.em-bg-green {
	background: #7ABE5E none;
}
.em-bg-light-blue{
	background: #00A2DA none;
}
/* Text Colors */
.txt-green {
	color: #7ABE5E;
}
.txt-light-blue{
	color: #00A2DA;
}
/* Easy Markets Tabs Styles */
.nav-tabs.em-tabs {
	overflow: hidden;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid #dee2e6;
	border-bottom: none;
}
.nav-tabs.em-tabs li {
	background-color: #373737;
	color: #fff;
	font-family: 'Roboto';
}
.nav-tabs.em-tabs li:not(:first-child):not(:active){
	border-left: 1px solid #FFFFFF;
}
.nav-tabs.em-tabs li.active {
	background-color: white;
	color: #373737;
}

.nav-tabs.em-tabs li a {
	margin-right: 1px;
	cursor: pointer;
	border-radius: 0;
	border-bottom: none;
	color: #fff;
	transition: color .2s ease-in;
}
.nav-tabs.em-tabs li.active a{
	color: #373737;
}
/* Custom Alerts */
.fullscreen-message {
	background-color: #373737;
	opacity: 0.6;
	color: #fff;
	font-size: 16px;
}

.risk-profile-warning {
	color: #ff0000;
}

/* Custom icons */
.star {
	display: inline-block;
	width: 17px;
	height: 16px;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAQBAMAAAACH4lsAAAAMFBMVEUAAACZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmy/KNBAAAAD3RSTlMAzxC/YN/vj3CAQK8wUCCKQ5lLAAAAZklEQVQI12NAAdy/YaxlzxZAWZacBhCGShJTigKQZrf/2sDQ+t+cgYHfByTOc5+BgVEIxGISBGGQGkUhECEAJMBcrgQgkQVSwgEyzALEYp/AYsIwHcRibgmdGtIMFvvqwOD6HdlFAGF1EcXWUhviAAAAAElFTkSuQmCC) no-repeat scroll;
}

.star.active {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANBAMAAABr8kJMAAAAKlBMVEUAAAD/zAD/zAD/zAD/zAD/zAD/zAD/zAD/zAD/zAD/zAD/zAD/zAD/zACZRaG8AAAADXRSTlMA76+fgEAQv49gUDAgxuJuPAAAAFVJREFUCNdjYGBgE0xgAAGWuw5gOvGuGIhi7b17I4CBQfcuCFxiuAsBDIFgSpSBWxZIXdzAwLAWSN8Cqp8LpG8CaV8gfQVI1941vnsdSOvaMBy+xAAAxHIq+Kux/V8AAAAASUVORK5CYII=) no-repeat scroll center center rgba(0, 0, 0, 0)
}
.d-list-item {
	display: list-item !important;
}

.vhidden {
	visibility: hidden;
}

/* Custom Footer Animation */
/* ===== ANIMASI KHUSUS FOOTER ===== */
/* Prefix 'footer-' untuk semua animasi */
@keyframes footer-fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
  }
  
  @keyframes footer-slideUp {
	from { 
	  opacity: 0;
	  transform: translateY(50px);
	}
	to { 
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  @keyframes footer-slideLeft {
	from { 
	  opacity: 0;
	  transform: translateX(-50px);
	}
	to { 
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  
  @keyframes footer-slideRight {
	from { 
	  opacity: 0;
	  transform: translateX(50px);
	}
	to { 
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  
  /* Class animasi dengan suffix '-footer' */
  .animate-fade-footer {
	animation: footer-fadeIn 1s ease-out forwards;
  }
  
  .animate-slide-up-footer {
	animation: footer-slideUp 0.8s ease-out forwards;
  }
  
  .animate-slide-left-footer {
	animation: footer-slideLeft 0.8s ease-out forwards;
  }
  
  .animate-slide-right-footer {
	animation: footer-slideRight 0.8s ease-out forwards;
  }
  
  /* Delay khusus footer */
  .delay-1-footer { animation-delay: 0.2s; }
  .delay-2-footer { animation-delay: 0.4s; }
  .delay-3-footer { animation-delay: 0.6s; }
  .delay-4-footer { animation-delay: 0.8s; }
  .delay-5-footer { animation-delay: 1s; }
  
  /* Class untuk observasi scroll */
  .footer-section-animate {
	opacity: 0;
	transition: all 0.6s ease-out;
  }
  
  .footer-section-animate.animate-footer {
	opacity: 1;
  }
  
  /* Animasi form khusus footer */
  .footer-form-input:focus {
	transform: scale(1.02);
	transition: transform 0.3s ease;
  }
  
  /* Animasi ikon sosial media footer */
  .footer-social-icon {
	opacity: 0;
  }
  
  .footer-social-icon.animate-footer {
	opacity: 1;
  }
  /* ANIMASI KHUSUS LOGO SOSIAL MEDIA FOOTER */
	.footer-social-icon {
		opacity: 0;
		transform: scale(0.8);
		transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

	.footer-social-icon.animate-footer {
		opacity: 1;
		transform: scale(1);
	}

	/* Animasi berurutan untuk masing-masing ikon */
	.footer-social-icon.fb-footer { transition-delay: 0.2s; }
	.footer-social-icon.google-footer { transition-delay: 0.3s; }
	.footer-social-icon.twitter-footer { transition-delay: 0.4s; }
	.footer-social-icon.youtube-footer { transition-delay: 0.5s; }
	
/* /Custom Footer Animation */

/* Bootstrap sm */
@media(min-width: 576px){
	.d-sm-list-item {
		display: list-item !important;
	}
}
/* Bootstrap md */
@media(min-width: 768px){
	.d-md-list-item {
		display: list-item !important;
	}
}
/* Bootstrap lg */
@media(min-width: 992px){
	.d-lg-list-item {
		display: list-item !important;
	}
	.field-block-label:lang(ja) {
		font-size: 14px;
	}
}
/* Bootstrap xl */
@media(min-width: 1200px){
	.d-xl-list-item {
		display: list-item !important;
	}
	.field-block-label:lang(ja) {
		font-size: 15px;
	}
}

