
/* Global */

html, body {
	margin: 0;
	padding: 0;

	-webkit-text-size-adjust: 100%;
}

a {
	color: inherit;
	text-decoration: inherit;
}

/* GC */

.gc {
	color: #ffffff;
	display: inline-block;
	font-family: "Helvetica", "Arial", "Lucida Grande", "Segoe UI";
	font-size: 14px;
	text-decoration: none;
	text-align: center;
	user-select: none;
	outline-color: transparent;
	outline-style: none;

	max-height: 5000em;
		
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.red {
	background-color: #d42024;
}

.green {
	background-color: #27af44;
}

.blue {
	background-color: #218ad8;
}

.red:disabled {
	background-color: rgba(212, 32, 36, 0.33);
}

.green:disabled {
	background-color: rgba(39, 175, 68, 0.33);
}

.blue:disabled {
	background-color: rgba(41, 135, 205, 0.33);
}


/* Bar */

.bar {
	padding: 0;
	margin: 0 auto;

    list-style: none;
            
    flex-direction: column;
            
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	justify-content: center;
	
	max-width: 100%
}


/* Button */

.button {
	padding: 10px 10px;
	
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	
	cursor: pointer;
	border: none;
}

.button.circle {
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.button.rounded {
	-moz-border-radius: 999px;
	-webkit-border-radius: 999px;
	border-radius: 999px;
}

.button .image {
	width: 100%;
	height: 100%;

	border: 0px;
}

.button.red:hover {
	background-color: #a1090d;
}

.button.green:hover {
	background-color: #1a9835;
}

.button.blue:hover {
	background-color: #156aa9;
}

.button.red:disabled:hover {
	background-color: rgba(212, 32, 36, 0.33);
}

.button.green:disabled:hover {
	background-color: rgba(39, 175, 68, 0.33);
}

.button.blue:disabled:hover {
	background-color: rgba(41, 135, 205, 0.33);
}

.button.simple.transparent {
	background-color: transparent;
	
	color: #09384f;
	
	box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.0) inset;
}

.button.simple.red {
	background-color: transparent;
	
	color: #d42024;
	
	box-shadow: 0px 0px 0px 1px #d42024 inset;
}

.button.simple.green {
	background-color: transparent;
	
	color: #27af44;
	
	box-shadow: 0px 0px 0px 1px #27af44 inset;
}

.button.simple.blue {
	background-color: transparent;
	
	color: #218ad8;
	
	box-shadow: 0px 0px 0px 1px #218ad8 inset;
}

.button.simple.transparent:hover {
	background-color: transparent;
	
	color: #09384f;
	
	box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.0) inset;
}

.button.simple.red:hover {
	background-color: #a1090d;
	color: #ffffff;
}

.button.simple.green:hover {
	background-color: #1a9835;
	color: #ffffff;
}

.button.simple.blue:hover {
	background-color: #156aa9;
	color: #ffffff;
}

.button.simple.red:disabled {
	background-color: transparent;
	
	color: rgba(212, 32, 36, 0.33);
	
	box-shadow: 0px 0px 0px 1px rgba(212, 32, 36, 0.33) inset;
}

.button.simple.red:disabled:hover {
	background-color: transparent;
	
	color: rgba(212, 32, 36, 0.33);
	
	box-shadow: 0px 0px 0px 1px rgba(212, 32, 36, 0.33) inset;
}

.button.simple.green:disabled {
	background-color: transparent;
	
	color: rgba(39, 175, 68, 0.33);
	
	box-shadow: 0px 0px 0px 1px rgba(39, 175, 68, 0.33) inset;
}

.button.simple.green:disabled:hover {
	background-color: transparent;
	
	color: rgba(39, 175, 68, 0.33);
	
	box-shadow: 0px 0px 0px 1px rgba(39, 175, 68, 0.33) inset;
}

.button.simple.blue:disabled {
	background-color: transparent;
	
	color: rgba(41, 135, 205, 0.33);
	
	box-shadow: 0px 0px 0px 1px rgba(41, 135, 205, 0.33) inset;
}

.button.simple.blue:disabled:hover {
	background-color: transparent;
	
	color: rgba(41, 135, 205, 0.33);
	
	box-shadow: 0px 0px 0px 1px rgba(41, 135, 205, 0.33) inset;
}


/* Label */

.label {
	vertical-align: middle;
	background-color: rgba(0, 0, 0, 0);
	color: #09384f;
	text-align: left;
	
	padding: 10px;
}

.label.simple.green {
	background-color: transparent;
	
	color: #27af44;
}

.label.simple.blue {
	background-color: transparent;
	
	color: #218ad8;
	
	box-shadow: 0px 0px 0px 1px #218ad8 inset;
}


/* Droplist */

.droplist {
	vertical-align: top;

	width: 300px;
	height: 38px;
	
	margin: 0px;
	border: 0px;
    border-radius: 0px;

	background-color: transparent;

	cursor: pointer;
}

.droplist .title {
	width: 260px;
	height: 20px;
	color: #1E357B;

	vertical-align: middle;
	background-color: transparent;
	text-align: left;
	
	margin-left: 8px;
	margin-top: 11px;
	
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.droplist .arrow_down {
	width: 2px;
	height: 2px;

	margin-left: 126px;
	margin-top: -17px;

	border: solid #218ad8;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 2px;

	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	
	position: absolute;
}

.droplist .arrow_up {
	width: 2px;
	height: 2px;

	margin-left: 126px;
	margin-top: -14px;

	border: solid #218ad8;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 2px;

	transform: rotate(225deg);
	-webkit-transform: rotate(225deg);

	display: none;
	
	position: absolute;
}

.droplist .arrow_right {
	width: 2px;
	height: 2px;

	margin-left: 126px;
	margin-top: -15px;

	border: solid #218ad8;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 2px;

	transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
	
	position: absolute;
}


/* Input */

.input {
	vertical-align: top;

	-webkit-appearance: none;
    -moz-appearance: none;
	appearance: none;
	
	width: 100%;
	padding: 8px;
	padding-top: 9px;
	outline: none;
	margin: 0px;
    
    font-size: 14px;
    text-align: left;
	color: #1E357B;
    background-color: #ffffff;
	
	border: 0px;
    border-radius: 0px;
    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}


/* Checkbox */

.checkbox {
	display: block;
	position: relative;
	
	cursor: pointer;
	
	font-size: 14px;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;

	user-select: none;
}

.checkbox input {
	height: 0;
	width: 0;

	position: absolute;

	opacity: 0;

	cursor: pointer;
}

.checkbox .checkmark {
	top: 0;
	left: 0;
	
	height: 20px;
	width: 20px;

	position: absolute;
	
	background-color: #dddddd;

	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.checkbox input:checked ~ .checkmark {
	background-color: #218ad8;
}


/* Textarea */

.textarea {
	vertical-align: top;

	-webkit-appearance: none;
    -moz-appearance: none;
	appearance: none;
	
	width: 100%;
	padding: 8px;
	outline: none;
	margin: 0px;
    
    font-size: 14px;
    text-align: left;
	color: #1E357B;
    background-color: #ffffff;
    
    border: 0px;
	border-radius: 0px;

	resize: none;
    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}


/* Image */

.image {
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	
	cursor: pointer;
	
	border: 1px solid #d1d1d1;
}


/* Modal */

.modal {
	z-index: 99;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	position: fixed;
	display: none;
}

.modal .loader {
	z-index: 99;
	
	top: 50%;
	width: 16px;
	height: 16px;

	margin-left: -11px;
	
	position: fixed;
	
	border: 3px solid #d1d1d1;
	border-radius: 50%;
	border-top: 3px solid #218ad8;
	border-bottom: 3px solid #218ad8;
	
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.modal .title {
	z-index: 99;
	
	left: 0px;
	top: 53%;
	width: 100%;
	height: 16px;
	
	position: fixed;
	
	vertical-align: middle;
	background-color: rgba(0, 0, 0, 0);
	color: #1E357B;
	text-align: center;
}


/* Sizes */

.medium {
	font-size: 14px;
}
		
.big {
	font-size: 18px;
}
