/*=============================
  Base Styles
=============================*/

html, body {
  margin: 0;
  padding: 0;
  
  margin-left: 0px;
  margin-top: 0px;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  line-height: 1.6;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Avenir, "Avenir Next", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;


}




/*=============================
  Extras
=============================*/

#Separador {
  width:90%;
  height:30px;
  background:url(../ima/layout/sombra.png);
  clear:both;
}


/*=============================
  Typography
=============================*/

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Avenir, "Avenir Next", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

h1 {
  font-size: 5rem;
  line-height: 1.2;
}

h2 {
  font-size: 4.2rem;
  line-height: 1.25;
}

h3 {
  font-size: 3.6rem;
  line-height: 1.3;
}

h4 {
  font-size: 3rem;
  line-height: 1.35;
}

h5 {
  font-size: 2.4rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.8rem;
  line-height: 1.6;
}

p {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

@media (max-width: 400px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  h3 {
    font-size: 3rem;
  }

  h4 {
    font-size: 2.6rem;
  }

  h5 {
    font-size: 2.2rem;
  }

  h6 {
    font-size: 1.8rem;
  }
}

/*=============================
  Images
=============================*/

img {
  margin-top: 0;
  margin-bottom: 2rem;
}

/*=============================
  Links
=============================*/

a {
  color: #222222;
  transition: color .1s ease;
}

a:hover {
  cursor: pointer;
  color: #104cfb;
  
}


a.nounderline:link   
{   
 text-decoration:none;   
}   

/*=============================
  Tables
=============================*/

.table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

.table th, .table td {
  vertical-align: middle;
  padding: 12px 4px;
}

.table thead {
  border-bottom: 2px solid #333030;
}

/* responsive tables */
@media screen and (max-width: 768px) {
  .table.responsive {
    position: relative;
    display: block;
  }
  .table.responsive th, .table.responsive td {
    margin: 0;
  }
  .table.responsive thead {
    display: block;
    float: left;
    border: 0;
  }
  .table.responsive thead tr {
    display: block;
    padding: 0 10px 0 0;
    border-right: 2px solid #333030;
  }
  .table.responsive th {
    display: block;
    text-align: right;
  }
  .table.responsive tbody {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .table.responsive tbody tr {
    display: inline-block;
  }
  .table.responsive td {
    display: block;
    min-height: 16px;
    text-align: left;
  }
  .table.responsive tr {
    padding: 0 10px;
  }
}

/*=============================
  Lists
=============================*/

/*ul, ol {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 2rem;
  list-style-position: inside;
}

ul ul, ul ol, ol ol, ol ul {
  margin: 1rem 0 1rem 2rem;
  font-size: 95%;
}

li {
  margin-bottom: 1rem;
}*/


/*=============================
  Forms
=============================*/

input[type=text], input[type=password], input[type=email], input[type=search], input[type=number], input[type=file], input[type=tel], input[type=url], select, textarea, textarea[type=text] {
  width: 100%;
  height: 45px;
  padding: 10px 10px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  background: #F1F1F1;
  border: 1px solid #a4a4a4;
  border-radius: 2px;
  box-sizing: border-box;
  transition: all .2s ease;
}

input[type=text]:hover, input[type=password]:hover, input[type=email]:hover, input[type=search]:hover, input[type=number]:hover, input[type=file]:hover, input[type=tel]:hover, input[type=url]:hover, select:hover, textarea:hover, textarea[type=text]:hover {
  border: 1px solid #111111;
}

input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=search]:focus, input[type=number]:focus, input[type=file]:focus, input[type=tel]:focus, input[type=url]:focus, select:focus, textarea:focus, textarea[type=text]:focus {
  outline: none;
  border: 1px solid #104cfb;
}

textarea, textarea[type=text] {
  min-height: 7rem;
}


/*=============================
  Buttons
=============================*/

button, .button, [type=submit] {
  padding: 1.1rem 3.5rem;
  margin-top: 0;
  margin-bottom: 2rem;
  color: #f5f5f5;
  font-size: 1.5rem;
  background: #111111;
  border: 1.5px solid #111111;
  border-radius: 2px;
  transition: all .2s ease;
}

button.outline, .button.outline, [type=submit].outline {
  color: #111111;
  background: none;
  border: 1.5px solid #111111;
}

button:hover, .button:hover, [type=submit]:hover {
  color: #f5f5f5;
  background: #222222;
}

button.outline:hover, .button.outline:hover, [type=submit].outline:hover {
  background: none;
  border: 1.5px solid #222222;
  color: #222222;
}

button:focus, .button:focus, [type=submit]:focus {
  outline: none;
}

button:active, .button:active, [type=submit]:active {
  transform: scale(.99);
}

button:disabled, .button:disabled, .button.disabled, [type=submit]:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}


/*=============================
  Cards
=============================*/

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 2rem;
}

.card {
  flex-direction: column;
  flex: 0 1 calc(50% - 0.5rem);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.card-image {
  display: block;
  position: relative;
}

.card-image img {
  display: block;
  height: auto;
  width: 100%;
}

.card-header {
  font-weight: 600;
  margin: 0;
  padding: 2rem 3rem 1rem;
}

.card-body {
  padding: 0 3rem 2rem 3rem;
  min-height: 100px;
}

.card-footer {
  display: flex;
  align-items: stretch;
  border-top: 1px solid #dbdbdb;
  flex: 1;
}

.card-footer .card-footer-item {
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem;
}

.card-footer-item:not(:first-child) {
  border-left: 1px solid #dbdbdb;
}

@media (max-width: 768px) {
  .cards > .card {
    flex: auto;
  }
}


/*=============================
  Grid
=============================*/
.menutop {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
  /*margin: 1rem 0;*/
}


.container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
  margin: 1rem 0;
}

.row > :first-child {
  margin-left: 0;
}

.col {
  flex: 1 1 0px;
}


.col1 {
  flex: 1 1 800px;
}

.col2 {
  flex: 1 1 170px;
}

.colm1 {
  flex: 1 1 172px;
}

.colm2 {
  flex: 1 1 170px;
  align-items: left; 
}


.col, [class^='col-'], [class*=" col-"] {
  margin-left: 4%;
}

.col-1 {
  width: 4.333333333333332%;
}

.col-2 {
  width: 12.666666666666664%;
}

.col-3 {
  width: 21%;
}

.col-4 {
  width: 29.33333333333333%;
}

.col-5 {
  width: 37.66666666666667%;
}

.col-6 {
  width: 46%;
}

.col-7 {
  width: 54.333333333333336%;
}

.col-8 {
  width: 62.66666666666666%;
}

.col-9 {
  width: 71%;
}

.col-10 {
  width: 79.33333333333334%;
}

.col-11 {
  width: 87.66666666666666%;
}

.col-12 {
  width: 96%;
}

@media screen and (max-width: 768px) {
  .col, [class^='col-'], [class*=" col-"] {
    margin: 1rem 0;
    flex: 0 0 100%;
  }
}


/*=============================
  Navigation
=============================*/

.nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-item {
  padding: 1rem 2rem;
}


/*=============================
  Misc
=============================*/

pre {
  margin-top: 0;
  margin-bottom: 2rem;
}

code {
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem;
  font-size: 1.3rem;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-family: "Consolas", "Monaco", "Menlo", monospace;
}

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*=============================
  Utilities
=============================*/

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.full-screen {
  width: 100%;
  min-height: 100vh;
}

.full-width {
  width: 100%;
}

.vertical-align {
  display: flex;
  align-items: center;
}

.horizontal-align {
  display: flex;
  justify-content: center;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fixed {
  position: fixed;
  width: 100%;
}

@media screen and (max-width: 400px) {
  .hide-phone {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hide-tablet {
    display: none;
  }
}


/*-----------------------------------*/


/* search form 
-------------------------------------- */
#Buscador input.Busqueda {
  width:115px;
  height:24px;
  border:1px solid #000;
  margin:0;
  padding:0 4px;
  vertical-align:top;

  font-size:12px;
  line-height:12px;
  color:#666;
}

#Buscador input.BotonBuscar {
  width:27px;
  height:26px;
  border:none;
  background:url(../ima/busqueda/boton-buscar-sobre.jpg);
  vertical-align:top;
}

#Buscador input.BotonBuscar:hover { background:url(../ima/busqueda/boton-buscar-sobre.jpg); cursor:pointer; }