@charset "UTF-8";

/* CSS Document */

* {
    margin: 0px;
    padding: 0px;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    cursor: none;
}


/*----------------------------------- Menu ----------------------------------------*/
*:focus {
    outline: none;
}

input[type=text],
input[type=url],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: center;
    border: 1px solid #0380be;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    background: #f8f8f8;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-align: left;
    box-sizing: border-box;
    padding-left: 10px;
}


/*-----------------------------------  Select  -----------------------------------*/

select {
    padding: 3px;
    padding-left: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    background: #f8f8f8;
    color: #333;
    border: none;
    outline: none;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    width: 100%;
    height: 30px;
    font-size: 1em;
    line-height: 26px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: left;
}


/*-----------------------------------  Boton Submit  -----------------------------------*/

[type=submit], [type=button] {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    font-size: 1.5em;
    line-height: 2em;
    color: #FFFFFF;
    font-weight: bold;
    height: 2em;
    width: 100%;
    background-color: #333333;
    border: 0px solid #bbb;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

[type=submit]:hover, [type=button]:hover {
    color: #ffffff;
    background-color: #111111;
}

.menuPrincipal {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    font-size: 1.5em;
    line-height: 2.5em;
    color: #ffffff;
    font-weight: bold;
    height: 2.5em;
    width: 100%;
    background-color: #0380be;
    border: 1px solid #bbb;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

.menuPrincipal:hover {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    font-size: 1.5em;
    line-height: 2.5em;
    color: #ffffff;
    font-weight: bold;
    height: 2.5em;
    width: 100%;
    background-color: #333;
    border: 1px solid #bbb;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: center;
}

.menuPrincipalHover {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    font-size: 1.5em;
    line-height: 2.5em;
    color: #ffffff;
    font-weight: bold;
    height: 2.5em;
    width: 100%;
    background-color: #333;
    border: 1px solid #bbb;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: center;
}

.boton {
    width: 100%;
    height: 43px;
    background-color: #FFF;
    line-height: 43px;
    margin-top: 10px;
    border-top: 1px solid #006ba2;
    border-bottom: 1px solid #006ba2;
    vertical-align: middle;
    color: #006ba2;
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.boton h4 {
    color: #006ba2;
}

.boton:hover,
.boton:hover h4 {
    background-color: #006ba2;
    color: #ffffff !important;
}

.botonHover {
    width: 100%;
    height: 43px;
    background-color: #006ba2;
    line-height: 43px;
    margin-top: 10px;
    border-top: 1px solid #006ba2;
    border-bottom: 1px solid #006ba2;
    vertical-align: middle;
    color: #006ba2;
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.botonHover h4 {
    color: #ffffff;
}


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

.botonInvert {
    width: 100%;
    height: 43px;
    background-color: #a0cf67;
    line-height: 43px;
    margin-top: 10px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    vertical-align: middle;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.botonInvert h4 {
    color: #fff;
}

.botonInvert:hover {
    border-top: 1px solid #a0cf67;
    border-bottom: 1px solid #a0cf67;
    background-color: #fff;
    color: #a0cf67 !important;
}

.botonInvert:hover h4 {
    background-color: #fff;
    color: #a0cf67 !important;
}

.botonInvertHover {
    width: 100%;
    height: 43px;
    background-color: #fff;
    line-height: 43px;
    border-top: 1px solid #a0cf67;
    border-bottom: 1px solid #a0cf67;
    margin-top: 10px;
    vertical-align: middle;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.botonInvertHover h4 {
    color: #a0cf67;
}


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

.botonInvert2 {
    width: 100%;
    height: 43px;
    background-color: #006ba2;
    line-height: 43px;
    margin-top: 10px;
    border-top: 1px solid #006ba2;
    border-bottom: 1px solid #006ba2;
    vertical-align: middle;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.botonInvert2 h4 {
    color: #ffffff;
}

.botonInvert2:hover,
.botonInvert2:hover h4 {
    background-color: #ffffff;
    color: #006ba2 !important;
}

.botonHoverInvert2 {
    width: 100%;
    height: 43px;
    background-color: #006ba2;
    line-height: 43px;
    margin-top: 10px;
    border-top: 1px solid #006ba2;
    border-bottom: 1px solid #006ba2;
    vertical-align: middle;
    color: #006ba2;
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.botonHoverInvert2 h4 {
    color: #ffffff;
}

.boton2 {
    width: 100%;
    margin: auto;
    height: 43px;
    line-height: 40px;
    background-color: #009ced;
    vertical-align: middle;
    color: #FFF;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.boton2 img {
    height: 20px;
    width: 20px;
    padding: 5px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #006ba2;
}


/*-----------------------------------  Estilos Tabla  -----------------------------------*/

.TablaGeneral {
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, .8);
}

.TablaIndex {
    background-color: #292929;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.tdSelect {
    padding: 5px 10px 10px 10px;
    vertical-align: top;
}



.cursor {
    position: fixed;
    background-color: #fa6400;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    z-index: 1;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    user-select: none;
    pointer-events: none;
    z-index: 999999999999;
    transform: scale(1);
  }
  .cursor.active {
    opacity: 1;
    transform: scale(0);
  }
  .cursor.menu-active {
    opacity: 1;
    transform: scale(0);
  }
  .cursor.hovered {
    opacity: 1;
  }
  
  .cursor-follower {
    position: fixed;
    border: 1px solid #fa6400;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    z-index: 1;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
    user-select: none;
    pointer-events: none;
    z-index: 999999999999;
    transform: translate(2px, 2px);
  }
  .cursor-follower.active {
    opacity: 1;
    transform: scale(3);
  }
  .cursor-follower.menu-active {
    opacity: 1;
    transform: scale(3);
  }
  .cursor-follower.hovered {
    opacity: 1;
  }
  

/*-----------------------------------  Fuentes  -----------------------------------*/

@font-face {
    font-family: 'SemplicitaProRegular';
    font-style: normal;
    font-weight: 400;
    src: local('SemplicitaPro Regular'), local('SemplicitaPro-Regular'), url('Fonts/SemplicitaPro-Regular.ttf') format('truetype');
}

