@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");

/*----------------------------------------------------------------------------------
	CSS :: MICROPOLY :: EDITOR :: FONT DEF
----------------------------------------------------------------------------------*/

* {
    font-family: "Open Sans", "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif;
}

html, body {
	color: #333;
	font-family: "Open Sans", "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif;
	font-size: 14px;
	line-height: 24px;
	margin: 0;
	padding: 0;
}


.header-nav ul.menu {
    font-weight: 600;
}

#content-contain {
    padding: 24px 0px;
}


/*----------------------------------------------------------------------------------
    CSS :: MICROPOLY :: EDITOR :: IMG
----------------------------------------------------------------------------------*/

.color-me {
  cursor: pointer;
}
 
.color-me img {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  /* IE 6-9 */
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
 
.rollme .color-me img,
.color-me img:hover {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: none;
  filter: none;
}

img.img-rounded {
	border-radius: 6px;
}

.pull-left {
	float: left;
}

img.pull-left {
	margin-right: 10px;
}

.pull-right {
	float: right;
}

img.pull-right {
	margin-left: 10px;
}

.img-responsive {
	max-height: 100%;
	max-width: 100%;
}

/*----------------------------------------------------------------------------------
    CSS :: MICROPOLY :: EDITOR :: SOLUTIONS MAIN
----------------------------------------------------------------------------------*/

.solutions-contain {
    margin-top: 10px;
    margin-bottom: 10px;
}

.solutions-contain div {
    padding-top: 20px;
    padding-bottom: 20px;
}

.solutions-contain div {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;    
}

.solutions-contain a {
    -webkit-transition: color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out;
    -o-transition: color 0.25s ease-in-out;
    transition: color 0.25s ease-in-out;        
}

.solutions-contain a:hover,
 .solutions-contain a:hover strong,
 .solutions-contain a:hover span {
    text-decoration: none;
    color: #000;
}

.solutions-contain div:hover {
    transform: translateY(-5px);
}

.solutions img {
    border: 3px solid #F6263F;
    border-radius: 72px;
    -webkit-border-radius: 72px; 
    -moz-border-radius: 72px;
    float: left;
    margin-right: 20px;
    vertical-align: middle;
}
.solutions a {
    display: block;
    height: 72px;
}
.solutions strong {
    display: inline-block;
    font-weight: 600;
    font-style: italic;
    font-size: 20px;
    padding-top: 8px;
    color: #666;
}

.solutions span {
    display: block;
    color: #666;
    font-size: 16px;
    font-weight: 400;
}


/*----------------------------------------------------------------------------------
    CSS :: MICROPOLY :: EDITOR :: PRODUCTS MAIN
----------------------------------------------------------------------------------*/

.product-row .custom {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.product-row .custom:hover {
    transform: translateY(-10px);
}


.product-row h2 {
	color: #000;
    margin-top: 0px;
    text-transform: uppercase;
    margin-bottom: 34px;
    font-size: 24px;
    font-weight: 700;
}

.product-row img {
    border: 1px solid #666;
    margin: auto;
}

.product-row h3 {
    font-size: 22px;
    line-height: 24px;
}

.product-row p {
	color: #000;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 0px;
}

.product-row h3 a {
    color: #000;
    -webkit-transition: color .15s linear 0s;
    transition: color .15s linear 0s;    
}

.rollme h3 a {
    text-decoration: none;
    color: #fff;
}

.product-row a.ghost {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.25);
    -webkit-transition: background-color .5s linear 0s;
    transition: background-color .5s linear 0s;
}

.rollme a.ghost {
    background: #fff;
    color: #666;
    border: 1px solid #666;
}

/*----------------------------------------------------------------------------------
    CSS :: MICROPOLY :: EDITOR :: SOCIAL
----------------------------------------------------------------------------------*/

.social a.social {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 80px;
    text-align: center;
    color: #939393;
    border: 4px solid #939393;
    border-radius: 70px;
    -webkit-border-radius: 70px; 
    -moz-border-radius: 70px;
    -webkit-transition: color .15s linear 0s,border .15s linear 0s;
    transition: color .15s linear 0s,border .15s linear 0s;    
}

.social a.social:hover {
    color: #333E4E;
    border: 4px solid #F6263F;
}

/*----------------------------------------------------------------------------------
    CSS :: MICROPOLY :: EDITOR :: MISCELLANEOUS
----------------------------------------------------------------------------------*/

div.muted,
p.chrono_credits {
	display: none;
}

h1 {
	color: #666666;
	font-size: 30px;
	font-weight: 300;
	margin: 0 0 24px 0;
}

h2 {
	color: #F6263F;
	font-size: 24px;
	font-weight: 600;
	margin: 18px 0;
}

span.pre-title {
	color: #F6263F;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

table.centered,
table.centered thead tr th {
	text-align: center;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

a.btn.btn-downloads {
	background-color: #C0C0C0;
	border-color: #ACACAC;
	color: #fff;
	display: block;
	text-align: left;

	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

a.btn.btn-downloads:hover {
	background-color: #939393;
}

a.btn.btn-downloads em {
	font-size: 30px;
	margin-right: 10px;
	vertical-align: middle;
}

div#xmap a {
	color: #333;
}

.btn-primary {
    background-color: #f6263f !important;
    border-color: #e80c26 !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, 
.btn-primary:active, .btn-primary.active, 
.open>.dropdown-toggle.btn-primary {
    background-color: #e80c26 !important;
    border-color: #f6263f !important;
}

div.component_files p {
	margin: 0;
}

div.component_files a {
	display: inline-block;
	margin-bottom: 0;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	background-image: none;
	border: 1px solid transparent;
	white-space: nowrap;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.428571429;
	border-radius: 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	
	background-color: #C0C0C0;
	border-color: #ACACAC;
	color: #fff;
	display: block;
	text-align: left;
	
	margin-bottom: 10px;
	
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

div.component_files a:hover {
	background-color: #939393;
}

div.component_files a em {
	font-size: 30px;
	margin-right: 10px;
	vertical-align: middle;

/*----------------------------------------------------------------------------------
    CSS :: MICROPOLY :: EDITOR :: MISCELLANEOUS :: UP TO 767PX
----------------------------------------------------------------------------------*/

@media only screen and (max-width: 767px) {
	
	h1 {
		font-size: 26px;
		margin: 0 0 20px 0;
	}
	
	h2 {
		font-size: 20px;
		margin: 16px 0;
	}
	
}