/**
 * 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 !important;
}
/* Background Colors */
.em-bg-green {
	background: #7ABE5E none;
}
.em-bg-light-blue{
	background: #00A2DA none;
}

.em-bg-trinidad {
	background: #ef5009 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: #075C8F;
	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: #075C8F;
}

.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: #075C8F;
}
/* Custom Alerts */
.fullscreen-message {
	background-color: #075c8f;
	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;
}

/* 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;
	}
}

