|
@@ -0,0 +1,1106 @@
|
|
|
+/*
|
|
|
+ Created on : 5/12/2018, 01:34:49 PM
|
|
|
+ Author : Alejandro
|
|
|
+*/
|
|
|
+
|
|
|
+/* General */
|
|
|
+:root {
|
|
|
+ --font-primary: 'indivisa-text', Arial;
|
|
|
+ --color-primary-text: #001D68;
|
|
|
+ --color-background: white;
|
|
|
+ --color-info-background: #F0F0F0;
|
|
|
+ --color-bloque-background: #dee2e6;
|
|
|
+ --color-bloque-border: white;
|
|
|
+ --color-conflict-background: #f6cfd6;
|
|
|
+ --color-conflict-border: var(--danger);
|
|
|
+ --bloque-hover-background: hsl(207, 12%, 85%);
|
|
|
+ --conflict-hover-background: hsl(0, 100%, 85%);
|
|
|
+ --border-width: 0.2rem;
|
|
|
+
|
|
|
+ --max-width-marco: 60rem;
|
|
|
+ --max-width-marco-wide: 85.375rem;
|
|
|
+ --content-min-height: 30rem;
|
|
|
+ --menu-padding: 0.9375rem;
|
|
|
+ --system-link-spacing: 0.625rem;
|
|
|
+
|
|
|
+ --subtitle-indicator-width: 5rem;
|
|
|
+ --main-title-margin-bottom: 3.75rem;
|
|
|
+ --heading-letter-spacing: 0.0625rem;
|
|
|
+ --subtitle-indicator-height: 0.1875rem;
|
|
|
+ --border-mid-color: #ccc;
|
|
|
+ --icon-spacing: 0.1875rem;
|
|
|
+}
|
|
|
+
|
|
|
+*,
|
|
|
+*::before,
|
|
|
+*::after {
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+body {
|
|
|
+ font-family: var(--font-primary);
|
|
|
+ font-size: 1rem;
|
|
|
+ /* 1rem = 16px if the user has not changed their browser default */
|
|
|
+ color: var(--color-primary-text);
|
|
|
+ background-color: var(--color-background);
|
|
|
+ margin: 0;
|
|
|
+ /* Reset default margin */
|
|
|
+}
|
|
|
+
|
|
|
+#logo {
|
|
|
+ max-height: 4rem;
|
|
|
+ /* Adjusted to rem */
|
|
|
+}
|
|
|
+
|
|
|
+.bg-head,
|
|
|
+.bg-info {
|
|
|
+ background-color: var(--color-background);
|
|
|
+}
|
|
|
+
|
|
|
+.bg-info {
|
|
|
+ background-color: var(--color-info-background);
|
|
|
+}
|
|
|
+
|
|
|
+.bloque-clase {
|
|
|
+ background-color: var(--color-bloque-background);
|
|
|
+ padding: 0.625rem;
|
|
|
+ /* 10px equivalent */
|
|
|
+ margin-bottom: 0.625rem;
|
|
|
+ /* 10px equivalent */
|
|
|
+ min-height: 100%;
|
|
|
+ border: var(--border-width) solid var(--color-bloque-border);
|
|
|
+}
|
|
|
+
|
|
|
+.bloque-clase:hover {
|
|
|
+ background-color: var(--bloque-hover-background);
|
|
|
+}
|
|
|
+
|
|
|
+.bloque-clase.conflict {
|
|
|
+ border-color: var(--color-conflict-border);
|
|
|
+ background-color: var(--color-conflict-background);
|
|
|
+}
|
|
|
+
|
|
|
+.bloque-clase.conflict:hover {
|
|
|
+ background-color: var(--conflict-hover-background);
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/* Make cursor move if draggable */
|
|
|
+.bloque-clase[draggable="true"] {
|
|
|
+ cursor: move;
|
|
|
+}
|
|
|
+
|
|
|
+.bloque-clase.dragging {
|
|
|
+ opacity: 0.5;
|
|
|
+ border: var(--border-width) solid var(--primary);
|
|
|
+ /* Removed !important for best practices */
|
|
|
+}
|
|
|
+
|
|
|
+.dragging-over {
|
|
|
+ border: var(--border-width) solid var(--primary);
|
|
|
+ /* Removed !important for best practices */
|
|
|
+ background-color: var(--color-bloque-background);
|
|
|
+}
|
|
|
+
|
|
|
+.menu-flotante {
|
|
|
+ z-index: 500;
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ right: 0;
|
|
|
+ background-color: var(--color-menu-background);
|
|
|
+ border-radius: var(--border-radius-menu) 0 0 0;
|
|
|
+ padding-top: 0.125rem;
|
|
|
+ /* 2px equivalent */
|
|
|
+}
|
|
|
+
|
|
|
+/* SOBREESCRIBE BOOTSTRAP */
|
|
|
+.marco,
|
|
|
+.menu {
|
|
|
+ max-width: var(--max-width-marco);
|
|
|
+ width: 100%;
|
|
|
+ margin-left: auto;
|
|
|
+ margin-right: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.marco-wide {
|
|
|
+ max-width: var(--max-width-marco-wide);
|
|
|
+ width: 100%;
|
|
|
+ margin-left: auto;
|
|
|
+ margin-right: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.content {
|
|
|
+ min-height: var(--content-min-height);
|
|
|
+ padding: 1em;
|
|
|
+ /* 1em remains relative to the font size of the element or its parent */
|
|
|
+}
|
|
|
+
|
|
|
+.menu {
|
|
|
+ display: flex;
|
|
|
+ padding: 0 var(--menu-padding);
|
|
|
+}
|
|
|
+
|
|
|
+.menu-list .sistema:not(:last-child)::after {
|
|
|
+ content: "|";
|
|
|
+ margin: 0 var(--system-link-spacing);
|
|
|
+}
|
|
|
+
|
|
|
+.sistema-active {
|
|
|
+ color: var(--danger-color);
|
|
|
+ font-weight: bold;
|
|
|
+ /* Avoid using !important by ensuring this rule is more specific or declared last */
|
|
|
+}
|
|
|
+
|
|
|
+/*.font-small{font-size:14px;}*/
|
|
|
+
|
|
|
+/* Contenidos */
|
|
|
+h1,
|
|
|
+h2,
|
|
|
+h3 {
|
|
|
+ letter-spacing: var(--heading-letter-spacing);
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+h1 {
|
|
|
+ margin-bottom: 2.5rem;
|
|
|
+ /* Adjusted from 40px to a more scalable unit */
|
|
|
+}
|
|
|
+
|
|
|
+.subtitle::before {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ bottom: -0.5rem;
|
|
|
+ /* Adjusted from -8px to a relative unit */
|
|
|
+ left: 0;
|
|
|
+ width: var(--subtitle-indicator-width);
|
|
|
+ display: block;
|
|
|
+ background: var(--danger-color);
|
|
|
+ height: var(--subtitle-indicator-height);
|
|
|
+}
|
|
|
+
|
|
|
+.main-title {
|
|
|
+ font-size: 3.2rem;
|
|
|
+ /* Remains as is, consider using em if scalability is needed */
|
|
|
+ margin-bottom: var(--main-title-margin-bottom);
|
|
|
+}
|
|
|
+
|
|
|
+/* Otros */
|
|
|
+.alert-heading .ing-caret,
|
|
|
+.card-header .ing-caret,
|
|
|
+.side-menu .ing-caret,
|
|
|
+.alert-heading .fa,
|
|
|
+.card-header .fa {
|
|
|
+ transition: transform 0.3s ease-in-out;
|
|
|
+}
|
|
|
+
|
|
|
+.alert-heading .collapsed .ing-caret,
|
|
|
+.card-header .collapsed .ing-caret,
|
|
|
+#accordionMenu .collapsed .ing-caret,
|
|
|
+.alert-heading .collapsed .fa,
|
|
|
+.card-header .collapsed .fa {
|
|
|
+ transform: rotate(90deg);
|
|
|
+}
|
|
|
+
|
|
|
+#accordionMenu .collapsed .ing-caret,
|
|
|
+#accordionMenu .collapsed .fa {
|
|
|
+ transform: rotate(-90deg);
|
|
|
+}
|
|
|
+
|
|
|
+.border-mid:not(:last-child) {
|
|
|
+ border-bottom: 1px dotted var(--border-mid-color);
|
|
|
+}
|
|
|
+
|
|
|
+.pointer {
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+/* TABLAS */
|
|
|
+.table-white .thead-dark th {
|
|
|
+ text-align: center;
|
|
|
+ border-color: #fff;
|
|
|
+ text-transform: uppercase;
|
|
|
+}
|
|
|
+
|
|
|
+.table-white tr td,
|
|
|
+.table-white tr th {
|
|
|
+ border-left: 1px solid #fff !important;
|
|
|
+ /* Adjusted for clarity */
|
|
|
+}
|
|
|
+
|
|
|
+.table-white tr td:first-child,
|
|
|
+.table-white tr th:first-child {
|
|
|
+ border-left: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.table-nostriped tbody tr:nth-of-type(odd) {
|
|
|
+ background-color: transparent;
|
|
|
+}
|
|
|
+
|
|
|
+.rotate-text {
|
|
|
+ writing-mode: vertical-lr;
|
|
|
+ transform: rotate(180deg);
|
|
|
+ height: max-content;
|
|
|
+}
|
|
|
+
|
|
|
+.icono-acciones span,
|
|
|
+.icono-acciones i {
|
|
|
+ margin: 0 var(--icon-spacing);
|
|
|
+ text-decoration: none !important;
|
|
|
+}
|
|
|
+
|
|
|
+.icono-acciones a:focus,
|
|
|
+.icono-acciones a:hover,
|
|
|
+.icono-acciones a:active {
|
|
|
+ text-decoration: none !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* FORMAS */
|
|
|
+.form-box {
|
|
|
+ margin-bottom: 28px;
|
|
|
+}
|
|
|
+
|
|
|
+.form-box>.form-group {
|
|
|
+ margin-bottom: 10px
|
|
|
+}
|
|
|
+
|
|
|
+.form-box>.form-group>label {
|
|
|
+ font-weight: bold;
|
|
|
+ text-align: right;
|
|
|
+ color: var(--primary-color);
|
|
|
+ padding-left: 0
|
|
|
+}
|
|
|
+
|
|
|
+.form-box>.form-group>label.disabled {
|
|
|
+ color: #969696;
|
|
|
+}
|
|
|
+
|
|
|
+.form-box>.form-group>label:before {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ top: -8px;
|
|
|
+ right: 0px;
|
|
|
+ width: 2px;
|
|
|
+ height: calc(100% + 16px);
|
|
|
+ display: block;
|
|
|
+ background: #d21034;
|
|
|
+}
|
|
|
+
|
|
|
+.form-box>.form-group>label.disabled:before {
|
|
|
+ background: #969696 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.form-box-info>.form-group>div {
|
|
|
+ background-color: #f7f7f7;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ padding-left: 8px;
|
|
|
+}
|
|
|
+
|
|
|
+.form-box-info>.form-group>div:first-child {
|
|
|
+ margin-left: 7px;
|
|
|
+}
|
|
|
+
|
|
|
+.form-box-info>.form-group:first-child>label {
|
|
|
+ padding-top: 27px;
|
|
|
+}
|
|
|
+
|
|
|
+.form-box-info>.form-group:first-child>div {
|
|
|
+ padding-top: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.form-box-info>.form-group:last-child>div {
|
|
|
+ padding-bottom: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.form-box-info>.form-group.row {
|
|
|
+ margin-bottom: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.modal .form-box-info>.form-group>div {
|
|
|
+ margin-left: 0px;
|
|
|
+}
|
|
|
+
|
|
|
+.radio-md {
|
|
|
+ width: 1em;
|
|
|
+ height: 1em;
|
|
|
+}
|
|
|
+
|
|
|
+.radio-lg {
|
|
|
+ width: 1.5em;
|
|
|
+ height: 1.5em;
|
|
|
+}
|
|
|
+
|
|
|
+.radio-xl {
|
|
|
+ width: 2em;
|
|
|
+ height: 2em;
|
|
|
+}
|
|
|
+
|
|
|
+select:disabled {
|
|
|
+ color: #969696 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.input-info {
|
|
|
+ color: #969696;
|
|
|
+}
|
|
|
+
|
|
|
+.barra-right:before {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ top: -8px;
|
|
|
+ right: 0px;
|
|
|
+ width: 2px;
|
|
|
+ height: calc(100% + 16px);
|
|
|
+ display: block;
|
|
|
+ background: #d21034;
|
|
|
+}
|
|
|
+
|
|
|
+/* Uso independiente */
|
|
|
+.barra-right.disabled:before {
|
|
|
+ background: #969696 !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* Uso independiente */
|
|
|
+
|
|
|
+textarea {
|
|
|
+ resize: none;
|
|
|
+ overflow-x: hidden;
|
|
|
+ overflow-wrap: break-word;
|
|
|
+ overflow-y: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.clock[readonly] {
|
|
|
+ background-color: #fff !important;
|
|
|
+}
|
|
|
+
|
|
|
+.hasDatepicker[readonly] {
|
|
|
+ background-color: #fff !important;
|
|
|
+}
|
|
|
+
|
|
|
+.badge {
|
|
|
+ padding: 0.5em 1.4em;
|
|
|
+}
|
|
|
+
|
|
|
+.ui-autocomplete {
|
|
|
+ max-height: 160px;
|
|
|
+ overflow-y: auto;
|
|
|
+ overflow-x: hidden;
|
|
|
+ font-size: 90%
|
|
|
+}
|
|
|
+
|
|
|
+/* Data list*/
|
|
|
+.datalist {
|
|
|
+ position: relative;
|
|
|
+ border: 1px solid #969696;
|
|
|
+ border-radius: .25rem;
|
|
|
+}
|
|
|
+
|
|
|
+.datalist-input {
|
|
|
+ padding: 6px 30px 6px 12px !important;
|
|
|
+ background: #FFFFFF !important;
|
|
|
+ border-radius: .25rem;
|
|
|
+ cursor: pointer;
|
|
|
+ border: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.datalist.disabled .datalist-input {
|
|
|
+ background: #f7f7f7 !important;
|
|
|
+ cursor: default;
|
|
|
+ color: #969696;
|
|
|
+}
|
|
|
+
|
|
|
+.datalist.disabled .icono {
|
|
|
+ opacity: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.datalist .icono {
|
|
|
+ position: absolute;
|
|
|
+ font-size: 20px;
|
|
|
+ right: 10px;
|
|
|
+ top: 9px;
|
|
|
+ color: #969696;
|
|
|
+ transition: transform 0.2s ease;
|
|
|
+}
|
|
|
+
|
|
|
+/*.iconoAzul{color: #001D68 !important;} Usar text-primary*/
|
|
|
+.datalist>ul {
|
|
|
+ position: absolute;
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ width: 100%;
|
|
|
+ max-height: 204px;
|
|
|
+ top: 100%;
|
|
|
+ left: 0;
|
|
|
+ list-style: none;
|
|
|
+ border-radius: 2px;
|
|
|
+ background: #FFFFFF;
|
|
|
+ border: 1px solid #001D68;
|
|
|
+ overflow: hidden;
|
|
|
+ overflow-y: auto;
|
|
|
+ z-index: 100;
|
|
|
+}
|
|
|
+
|
|
|
+.datalist>ul li {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: start;
|
|
|
+ padding: 0.3em 1em
|
|
|
+ /*0.8em 1em 0.8em 1em*/
|
|
|
+ ;
|
|
|
+ color: #969696;
|
|
|
+}
|
|
|
+
|
|
|
+.datalist>ul li:not(.not-selectable):hover {
|
|
|
+ background: #D21034;
|
|
|
+ color: #FFFFFF;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+.datalist .selected {
|
|
|
+ background: #D21034;
|
|
|
+ color: #FFFFFF;
|
|
|
+}
|
|
|
+
|
|
|
+.datalist .not-selectable {
|
|
|
+ text-align: center;
|
|
|
+ font-weight: bold;
|
|
|
+ cursor: default;
|
|
|
+ color: #001d68;
|
|
|
+ padding-left: 10px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.datalist-invalid {
|
|
|
+ border-color: #d21034;
|
|
|
+}
|
|
|
+
|
|
|
+.datalist-invalid .icono {
|
|
|
+ color: #d21034 !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* Icono alerta */
|
|
|
+.alerta {
|
|
|
+ color: #ffb700 !important;
|
|
|
+ text-shadow: -1px -1px 0 #3f2f06, 1px -1px 0 #3f2f06, -1px 1px 0 #3f2f06, 1px 1px 0 #3f2f06;
|
|
|
+}
|
|
|
+
|
|
|
+/* Modal */
|
|
|
+.modal-content {
|
|
|
+ border: 4px solid #001d68;
|
|
|
+}
|
|
|
+
|
|
|
+.modal-header {
|
|
|
+ background-color: #001D68 !important;
|
|
|
+ color: #fff !important;
|
|
|
+ border-top-left-radius: 0;
|
|
|
+ border-top-right-radius: 0;
|
|
|
+ padding: 4px 8px 8px 8px;
|
|
|
+}
|
|
|
+
|
|
|
+.modal-title {
|
|
|
+ font-weight: normal;
|
|
|
+ text-align: center;
|
|
|
+ padding: 0 30px;
|
|
|
+}
|
|
|
+
|
|
|
+.modal-header .close {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ right: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.modal-header .close:focus {
|
|
|
+ border: none;
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+
|
|
|
+/* The side navigation menu */
|
|
|
+#sidebar {
|
|
|
+ width: 400px;
|
|
|
+ position: fixed;
|
|
|
+ top: 0;
|
|
|
+ right: -400px;
|
|
|
+ height: 100vh;
|
|
|
+ z-index: 1023;
|
|
|
+ transition: all 0.3s;
|
|
|
+ overflow-y: auto;
|
|
|
+}
|
|
|
+
|
|
|
+#sidebar.active {
|
|
|
+ right: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.overlay {
|
|
|
+ display: none;
|
|
|
+ position: fixed;
|
|
|
+ width: 100vw;
|
|
|
+ height: 100vh;
|
|
|
+ background: rgba(0, 0, 0, 0.6);
|
|
|
+ z-index: 1022;
|
|
|
+ opacity: 0;
|
|
|
+ transition: all 0.5s ease-in-out;
|
|
|
+}
|
|
|
+
|
|
|
+.overlay.active {
|
|
|
+ display: block;
|
|
|
+ opacity: 1;
|
|
|
+}
|
|
|
+
|
|
|
+#sidebar a:hover {
|
|
|
+ text-decoration: none;
|
|
|
+ color: #d12034;
|
|
|
+}
|
|
|
+
|
|
|
+#sidebar a {
|
|
|
+ transition: color 0.6s ease;
|
|
|
+}
|
|
|
+
|
|
|
+/* ICONOS MENU */
|
|
|
+header {
|
|
|
+ padding: 20px 0;
|
|
|
+ height: 110px;
|
|
|
+}
|
|
|
+
|
|
|
+header .logotipo {
|
|
|
+ float: left;
|
|
|
+ clear: none;
|
|
|
+ text-align: inherit;
|
|
|
+ width: 20%;
|
|
|
+ margin-left: 0;
|
|
|
+ margin-right: 0;
|
|
|
+}
|
|
|
+
|
|
|
+header .logotipo:before {
|
|
|
+ content: '';
|
|
|
+ display: table;
|
|
|
+}
|
|
|
+
|
|
|
+header .logotipo img,
|
|
|
+aside .logotipo img {
|
|
|
+ max-width: 200px;
|
|
|
+}
|
|
|
+
|
|
|
+.mainMenu {
|
|
|
+ min-width: 85px;
|
|
|
+}
|
|
|
+
|
|
|
+.menu .nav-item {
|
|
|
+ border-right: 1px solid #969696;
|
|
|
+}
|
|
|
+
|
|
|
+.menu .nav-item:last-child {
|
|
|
+ border-right: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.menu .nav-item>a,
|
|
|
+.menu .nav-item>span {
|
|
|
+ color: #969696;
|
|
|
+ padding: 1px 10px;
|
|
|
+}
|
|
|
+
|
|
|
+.menu .nav-item>a:hover {
|
|
|
+ color: #D21034;
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+.menu .nav-item>a {
|
|
|
+ transition: color 0.6s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.max-h {
|
|
|
+ height: 45px !important;
|
|
|
+ max-height: 45px;
|
|
|
+}
|
|
|
+
|
|
|
+.max-w {
|
|
|
+ width: 45px !important;
|
|
|
+ max-width: 45px;
|
|
|
+}
|
|
|
+
|
|
|
+.iconSesion {
|
|
|
+ margin-right: -20px;
|
|
|
+}
|
|
|
+
|
|
|
+.iconLogin,
|
|
|
+.iconOff {
|
|
|
+ font-size: 16px;
|
|
|
+ display: block;
|
|
|
+ width: 60px;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ -moz-box-sizing: border-box;
|
|
|
+ box-sizing: border-box;
|
|
|
+ border-radius: 30px 0 0 30px;
|
|
|
+}
|
|
|
+
|
|
|
+.iconOff:hover,
|
|
|
+.iconOff:active {
|
|
|
+ text-decoration: none;
|
|
|
+ background: #D21034;
|
|
|
+ color: #FFFFFF !important;
|
|
|
+ height: 40px;
|
|
|
+}
|
|
|
+
|
|
|
+.iconOff {
|
|
|
+ color: #D21034 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.iconLogin:hover,
|
|
|
+.iconLogin:active,
|
|
|
+.iconOff:hover,
|
|
|
+.iconOff:active {
|
|
|
+ text-decoration: none;
|
|
|
+ color: #FFFFFF !important;
|
|
|
+ height: 40px;
|
|
|
+}
|
|
|
+
|
|
|
+.iconLogin {
|
|
|
+ color: #339933;
|
|
|
+}
|
|
|
+
|
|
|
+.iconLogin:hover,
|
|
|
+.iconLogin:active {
|
|
|
+ background: #339933;
|
|
|
+}
|
|
|
+
|
|
|
+.iconMenu {
|
|
|
+ font-size: 32px;
|
|
|
+}
|
|
|
+
|
|
|
+.menuicon:hover {
|
|
|
+ color: #101097 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.cerraricon {
|
|
|
+ height: 40px !important;
|
|
|
+ max-height: 40px;
|
|
|
+ width: 40px !important;
|
|
|
+ max-width: 40px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+.cerraricon:hover {
|
|
|
+ background: #101097 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.fa-ul {
|
|
|
+ list-style-type: none;
|
|
|
+ margin-left: 2.5em;
|
|
|
+ padding-left: 0;
|
|
|
+}
|
|
|
+
|
|
|
+/* BUTTONS */
|
|
|
+/*.btn .fa-circle{color:rgba(255,255,255,0.15);}
|
|
|
+.btn .icon{font-weight: bold;}
|
|
|
+.btn-round{border-radius:30px; padding-left: 0.5rem!important; padding-right: 0.5rem!important;}*/
|
|
|
+
|
|
|
+.btn-ing {
|
|
|
+ position: relative;
|
|
|
+ padding-right: 35px;
|
|
|
+ padding-left: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.btn.arrow:after {
|
|
|
+ content: "\e905";
|
|
|
+ font-size: 14px;
|
|
|
+ position: absolute;
|
|
|
+ font-family: "ingfont";
|
|
|
+ right: 14px;
|
|
|
+ margin-top: 3px;
|
|
|
+ font-weight: bold;
|
|
|
+ -webkit-transition: 0.6s all ease;
|
|
|
+ -moz-transition: 0.6s all ease;
|
|
|
+ -o-transition: 0.6s all ease;
|
|
|
+ -ms-transition: 0.6s all ease;
|
|
|
+ transition: 0.6s all ease;
|
|
|
+ vertical-align: middle;
|
|
|
+}
|
|
|
+
|
|
|
+/* SOBREESCRIBE BOOTSTRAP */
|
|
|
+.btn-outline-primary.arrow:after {
|
|
|
+ color: #D21034;
|
|
|
+}
|
|
|
+
|
|
|
+.btn-outline-danger.arrow:after {
|
|
|
+ color: #001D68;
|
|
|
+}
|
|
|
+
|
|
|
+.btn-outline-secondary:hover.arrow:after {
|
|
|
+ color: #D21034;
|
|
|
+}
|
|
|
+
|
|
|
+.btn-outline-info:hover.arrow:after {
|
|
|
+ color: #001D68;
|
|
|
+}
|
|
|
+
|
|
|
+/***** SCROLLBAR *****/
|
|
|
+div ::-webkit-scrollbar {
|
|
|
+ width: 8px;
|
|
|
+}
|
|
|
+
|
|
|
+/*Ancho*/
|
|
|
+div ::-webkit-scrollbar-track {
|
|
|
+ background: #f7f7f7;
|
|
|
+}
|
|
|
+
|
|
|
+/*Riel*/
|
|
|
+div ::-webkit-scrollbar-thumb {
|
|
|
+ background: #969696;
|
|
|
+}
|
|
|
+
|
|
|
+/* Handle */
|
|
|
+div ::-webkit-scrollbar-thumb:hover {
|
|
|
+ background: #001d68;
|
|
|
+}
|
|
|
+
|
|
|
+/* Effects */
|
|
|
+/* Vars for primary, secondary, success, info, warning, danger, light, dark */
|
|
|
+
|
|
|
+:root {
|
|
|
+ --primary-color: #001d68;
|
|
|
+ --secondary-color: #001d68;
|
|
|
+ --success-color: #339933;
|
|
|
+ --danger-color: #d21034;
|
|
|
+ --warning-color: #ffc107;
|
|
|
+ --info-color: #969696;
|
|
|
+ --light-color: #f7f7f7;
|
|
|
+ --dark-color: #343a40;
|
|
|
+}
|
|
|
+
|
|
|
+.glow-primary {
|
|
|
+ background: var(--primary-color);
|
|
|
+ color: #fff;
|
|
|
+ border-radius: 5px;
|
|
|
+ padding: 5px;
|
|
|
+ box-shadow: 0 0 5px var(--primary-color);
|
|
|
+ transition: all 0.5s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.glow-secondary {
|
|
|
+ background: var(--secondary-color);
|
|
|
+ color: #fff;
|
|
|
+ border-radius: 5px;
|
|
|
+ padding: 5px;
|
|
|
+ box-shadow: 0 0 5px var(--secondary-color);
|
|
|
+ transition: all 0.5s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.glow-success {
|
|
|
+ background: var(--success-color);
|
|
|
+ color: #fff;
|
|
|
+ border-radius: 5px;
|
|
|
+ padding: 5px;
|
|
|
+ box-shadow: 0 0 5px var(--success-color);
|
|
|
+ transition: all 0.5s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.glow-danger {
|
|
|
+ background: var(--danger-color);
|
|
|
+ color: #fff;
|
|
|
+ border-radius: 5px;
|
|
|
+ padding: 5px;
|
|
|
+ box-shadow: 0 0 5px var(--danger-color);
|
|
|
+ transition: all 0.5s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.glow-warning {
|
|
|
+ background: var(--warning-color);
|
|
|
+ color: #fff;
|
|
|
+ border-radius: 5px;
|
|
|
+ padding: 5px;
|
|
|
+ box-shadow: 0 0 5px var(--warning-color);
|
|
|
+ transition: all 0.5s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.glow-info {
|
|
|
+ background: var(--info-color);
|
|
|
+ color: #fff;
|
|
|
+ border-radius: 5px;
|
|
|
+ padding: 5px;
|
|
|
+ box-shadow: 0 0 5px var(--info-color);
|
|
|
+ transition: all 0.5s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.glow-light {
|
|
|
+ background: var(--light-color);
|
|
|
+ color: #fff;
|
|
|
+ border-radius: 5px;
|
|
|
+ padding: 5px;
|
|
|
+ box-shadow: 0 0 5px var(--light-color);
|
|
|
+ transition: all 0.5s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.glow-dark {
|
|
|
+ background: var(--dark-color);
|
|
|
+ color: #fff;
|
|
|
+ border-radius: 5px;
|
|
|
+ padding: 5px;
|
|
|
+ box-shadow: 0 0 5px var(--dark-color);
|
|
|
+ transition: all 0.5s ease;
|
|
|
+}
|
|
|
+
|
|
|
+/*Hover Handle */
|
|
|
+
|
|
|
+/***** FOOTER *****/
|
|
|
+footer {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerTop {
|
|
|
+ background: #001d68;
|
|
|
+ padding: 15px 0;
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerTop .logotipo {
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerTop .logotipo h3 {
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: top;
|
|
|
+ color: #fff;
|
|
|
+ margin: 0;
|
|
|
+ float: right;
|
|
|
+ text-align: right;
|
|
|
+ font-size: 25px;
|
|
|
+ font-family: 'indivisa-text'
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerTop .logotipo h3 span {
|
|
|
+ display: block;
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerTop .menuFooter h3 {
|
|
|
+ font-size: 12px;
|
|
|
+ font-family: 'indivisa-text';
|
|
|
+ color: #fff !important;
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerTop .menuFooter ul {
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+footer ul {
|
|
|
+ list-style: none;
|
|
|
+ padding: 0;
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerTop .menuFooter ul>li {
|
|
|
+ zoom: 1;
|
|
|
+ float: left;
|
|
|
+ clear: none;
|
|
|
+ text-align: inherit;
|
|
|
+ width: 16%;
|
|
|
+ margin-left: 0;
|
|
|
+ margin-right: 3%;
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerTop .menuFooter ul>li ul li a {
|
|
|
+ font-size: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+footer ul>li {
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: top;
|
|
|
+}
|
|
|
+
|
|
|
+.footerMore {
|
|
|
+ position: relative;
|
|
|
+ display: none;
|
|
|
+ padding: 5px 0;
|
|
|
+}
|
|
|
+
|
|
|
+footer a {
|
|
|
+ color: #fff;
|
|
|
+ -webkit-transition: color 0.5s;
|
|
|
+ transition: color 0.5s;
|
|
|
+}
|
|
|
+
|
|
|
+footer a:hover {
|
|
|
+ color: #ce0e2d !important;
|
|
|
+ text-decoration: none !important;
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerTop .menuFooter ul>li ul li {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ margin-bottom: 0px;
|
|
|
+}
|
|
|
+
|
|
|
+footer .ubicacion {
|
|
|
+ margin-top: 20px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+footer .ubicacion .address {
|
|
|
+ display: inline-block;
|
|
|
+ /*width: 65%;*/
|
|
|
+ vertical-align: bottom;
|
|
|
+}
|
|
|
+
|
|
|
+footer .ubicacion .address h4,
|
|
|
+footer .ubicacion .address h4 a {
|
|
|
+ color: #0fb7f1;
|
|
|
+ font-size: 14px;
|
|
|
+ margin: 0 0 0 -5px;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+footer .ubicacion .address h4 a {
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+
|
|
|
+footer .ubicacion .redes {
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: bottom;
|
|
|
+ /*width:32%;text-align:right*/
|
|
|
+}
|
|
|
+
|
|
|
+footer .ubicacion .redes h4 {
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: middle;
|
|
|
+ margin: 0;
|
|
|
+ font-size: 16px !important;
|
|
|
+ font-weight: bold;
|
|
|
+}
|
|
|
+
|
|
|
+footer .ubicacion .redes ul {
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: middle
|
|
|
+}
|
|
|
+
|
|
|
+footer .ubicacion .redes ul li {
|
|
|
+ margin-left: 2px
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerMiddle {
|
|
|
+ background: #071e58;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerMiddle nav ul {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerMiddle nav ul li {
|
|
|
+ border-right: 1px solid #fff;
|
|
|
+ padding: 1px 10px;
|
|
|
+ display: inline-block;
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+footer ul>li {
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: top;
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerBottom {
|
|
|
+ background: #091941;
|
|
|
+ overflow: hidden;
|
|
|
+ padding: 15px 0;
|
|
|
+}
|
|
|
+
|
|
|
+.footerBottom .logotipos {
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: middle;
|
|
|
+ width: 20%
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerBottom .logotipos a {
|
|
|
+ display: inline-block;
|
|
|
+ width: 80px;
|
|
|
+ margin-right: 6px
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerBottom .logotipos a.internacional {
|
|
|
+ width: 80px
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerBottom .logotipos a.red {
|
|
|
+ width: 75px
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerBottom .legales {
|
|
|
+ text-align: right;
|
|
|
+ float: right;
|
|
|
+ width: 60%;
|
|
|
+ margin-right: 0;
|
|
|
+ margin-left: auto;
|
|
|
+ padding-top: 10px;
|
|
|
+ padding-bottom: 0
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerBottom .legales ul li {
|
|
|
+ border-right: 1px solid #fff;
|
|
|
+ padding: 1px 10px
|
|
|
+}
|
|
|
+
|
|
|
+footer .footerBottom .legales ul li:last-child {
|
|
|
+ border: 0
|
|
|
+}
|
|
|
+
|
|
|
+footer .tab-pane p {
|
|
|
+ font-size: 12px;
|
|
|
+ line-height: 18px;
|
|
|
+}
|
|
|
+
|
|
|
+@media (max-width: 800px) {
|
|
|
+
|
|
|
+ .menu,
|
|
|
+ .subMenu {
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+
|
|
|
+ .iconoMenu {
|
|
|
+ position: absolute;
|
|
|
+ display: block;
|
|
|
+ right: 20px;
|
|
|
+ top: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .menuOculto {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-box-info>.form-group>div {
|
|
|
+ margin-left: 0px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ .responsive{
|
|
|
+ float: none;
|
|
|
+ text-align: center;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ }*/
|
|
|
+}
|
|
|
+
|
|
|
+.movie {
|
|
|
+ transition: all 0.1s;
|
|
|
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
|
+ height: 8rem;
|
|
|
+ /* align all inside content to the middle */
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ background-color: #f7f7f7;
|
|
|
+}
|
|
|
+
|
|
|
+.movie:hover {
|
|
|
+ transform: scale(1.05);
|
|
|
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
|
|
|
+ font-size: 1.1em;
|
|
|
+}
|
|
|
+
|
|
|
+.movie:active {
|
|
|
+ transform: scale(1.1);
|
|
|
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
|
|
|
+ font-size: 1.2em;
|
|
|
+ font-weight: bold;
|
|
|
+}
|
|
|
+
|
|
|
+.icono.ing-buscar {
|
|
|
+ cursor: pointer;
|
|
|
+}
|