/*Import Global Compulsory CSS Files*/
@import url(app.css);
@import url(blocks.css);

@font-face {
    font-family: 'Dragon';
    src: url('../fonts/dragon_is_coming.otf') format("opentype");
}

* {
	border-radius: 0;
}

body {
 color: #333;
 line-height: 1.6;
}

.logo_font{
    font-family: Dragon !important;
    font-size: 72px !important;
}

@media (max-width: 650px) {
    body{
        font-size: 14px;
    }
}

@media (min-width: 650px) {
    body{
        font-size: 16px;
    }
}

body.header-fixed-space {
  padding-top: 94px;
}
body.header-fixed-space-v2 {
	padding-top: 95px;
}

@media (max-width: 991px) {
	body.header-fixed-space,
	body.header-fixed-space-v2 {
		padding-top: 0;
	}
}

p,
li,
li a,
label {
 color: #555;
}

a {
 color: #a10f2b;
 text-decoration: none;
}

a,
a:focus,
a:hover,
a:active,
button,
button:hover {
	outline: 0 !important;
}

a:focus {
text-decoration: none;
}
a:hover {
 color: #a10f2b;
 text-decoration: underline;
}

/*Boxed Layout
------------------------------------*/
.wrapper {
	background: #fff;
}

.boxed-layout {
  padding: 0;
  box-shadow: 0 0 5px #ccc;
  margin-left: auto !important;
  margin-right: auto !important;
  background: url(../img/patterns/15.png) repeat;
}

/*Hiding arrows for select field in IE*/
select::-ms-expand {
  display: none;
}

/*
* Proximamente
*/
.proximamente {
    font-family: Great Vibes, cursive;
    font-size: 38px;
    padding: 5px;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
    text-align: center;
}