sgi.css 19 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106
  1. /*
  2. Created on : 5/12/2018, 01:34:49 PM
  3. Author : Alejandro
  4. */
  5. /* General */
  6. :root {
  7. --font-primary: 'indivisa-text', Arial;
  8. --color-primary-text: #001D68;
  9. --color-background: white;
  10. --color-info-background: #F0F0F0;
  11. --color-bloque-background: #dee2e6;
  12. --color-bloque-border: white;
  13. --color-conflict-background: #f6cfd6;
  14. --color-conflict-border: var(--danger);
  15. --bloque-hover-background: hsl(207, 12%, 85%);
  16. --conflict-hover-background: hsl(0, 100%, 85%);
  17. --border-width: 0.2rem;
  18. --max-width-marco: 60rem;
  19. --max-width-marco-wide: 85.375rem;
  20. --content-min-height: 30rem;
  21. --menu-padding: 0.9375rem;
  22. --system-link-spacing: 0.625rem;
  23. --subtitle-indicator-width: 5rem;
  24. --main-title-margin-bottom: 3.75rem;
  25. --heading-letter-spacing: 0.0625rem;
  26. --subtitle-indicator-height: 0.1875rem;
  27. --border-mid-color: #ccc;
  28. --icon-spacing: 0.1875rem;
  29. }
  30. *,
  31. *::before,
  32. *::after {
  33. box-sizing: border-box;
  34. }
  35. body {
  36. font-family: var(--font-primary);
  37. font-size: 1rem;
  38. /* 1rem = 16px if the user has not changed their browser default */
  39. color: var(--color-primary-text);
  40. background-color: var(--color-background);
  41. margin: 0;
  42. /* Reset default margin */
  43. }
  44. #logo {
  45. max-height: 4rem;
  46. /* Adjusted to rem */
  47. }
  48. .bg-head,
  49. .bg-info {
  50. background-color: var(--color-background);
  51. }
  52. .bg-info {
  53. background-color: var(--color-info-background);
  54. }
  55. .bloque-clase {
  56. background-color: var(--color-bloque-background);
  57. padding: 0.625rem;
  58. /* 10px equivalent */
  59. margin-bottom: 0.625rem;
  60. /* 10px equivalent */
  61. min-height: 100%;
  62. border: var(--border-width) solid var(--color-bloque-border);
  63. }
  64. .bloque-clase:hover {
  65. background-color: var(--bloque-hover-background);
  66. }
  67. .bloque-clase.conflict {
  68. border-color: var(--color-conflict-border);
  69. background-color: var(--color-conflict-background);
  70. }
  71. .bloque-clase.conflict:hover {
  72. background-color: var(--conflict-hover-background);
  73. }
  74. /* Make cursor move if draggable */
  75. .bloque-clase[draggable="true"] {
  76. cursor: move;
  77. }
  78. .bloque-clase.dragging {
  79. opacity: 0.5;
  80. border: var(--border-width) solid var(--primary);
  81. /* Removed !important for best practices */
  82. }
  83. .dragging-over {
  84. border: var(--border-width) solid var(--primary);
  85. /* Removed !important for best practices */
  86. background-color: var(--color-bloque-background);
  87. }
  88. .menu-flotante {
  89. z-index: 500;
  90. position: absolute;
  91. bottom: 0;
  92. right: 0;
  93. background-color: var(--color-menu-background);
  94. border-radius: var(--border-radius-menu) 0 0 0;
  95. padding-top: 0.125rem;
  96. /* 2px equivalent */
  97. }
  98. /* SOBREESCRIBE BOOTSTRAP */
  99. .marco,
  100. .menu {
  101. max-width: var(--max-width-marco);
  102. width: 100%;
  103. margin-left: auto;
  104. margin-right: auto;
  105. }
  106. .marco-wide {
  107. max-width: var(--max-width-marco-wide);
  108. width: 100%;
  109. margin-left: auto;
  110. margin-right: auto;
  111. }
  112. .content {
  113. min-height: var(--content-min-height);
  114. padding: 1em;
  115. /* 1em remains relative to the font size of the element or its parent */
  116. }
  117. .menu {
  118. display: flex;
  119. padding: 0 var(--menu-padding);
  120. }
  121. .menu-list .sistema:not(:last-child)::after {
  122. content: "|";
  123. margin: 0 var(--system-link-spacing);
  124. }
  125. .sistema-active {
  126. color: var(--danger-color);
  127. font-weight: bold;
  128. /* Avoid using !important by ensuring this rule is more specific or declared last */
  129. }
  130. /*.font-small{font-size:14px;}*/
  131. /* Contenidos */
  132. h1,
  133. h2,
  134. h3 {
  135. letter-spacing: var(--heading-letter-spacing);
  136. position: relative;
  137. }
  138. h1 {
  139. margin-bottom: 2.5rem;
  140. /* Adjusted from 40px to a more scalable unit */
  141. }
  142. .subtitle::before {
  143. content: '';
  144. position: absolute;
  145. bottom: -0.5rem;
  146. /* Adjusted from -8px to a relative unit */
  147. left: 0;
  148. width: var(--subtitle-indicator-width);
  149. display: block;
  150. background: var(--danger-color);
  151. height: var(--subtitle-indicator-height);
  152. }
  153. .main-title {
  154. font-size: 3.2rem;
  155. /* Remains as is, consider using em if scalability is needed */
  156. margin-bottom: var(--main-title-margin-bottom);
  157. }
  158. /* Otros */
  159. .alert-heading .ing-caret,
  160. .card-header .ing-caret,
  161. .side-menu .ing-caret,
  162. .alert-heading .fa,
  163. .card-header .fa {
  164. transition: transform 0.3s ease-in-out;
  165. }
  166. .alert-heading .collapsed .ing-caret,
  167. .card-header .collapsed .ing-caret,
  168. #accordionMenu .collapsed .ing-caret,
  169. .alert-heading .collapsed .fa,
  170. .card-header .collapsed .fa {
  171. transform: rotate(90deg);
  172. }
  173. #accordionMenu .collapsed .ing-caret,
  174. #accordionMenu .collapsed .fa {
  175. transform: rotate(-90deg);
  176. }
  177. .border-mid:not(:last-child) {
  178. border-bottom: 1px dotted var(--border-mid-color);
  179. }
  180. .pointer {
  181. cursor: pointer;
  182. }
  183. /* TABLAS */
  184. .table-white .thead-dark th {
  185. text-align: center;
  186. border-color: #fff;
  187. text-transform: uppercase;
  188. }
  189. .table-white tr td,
  190. .table-white tr th {
  191. border-left: 1px solid #fff !important;
  192. /* Adjusted for clarity */
  193. }
  194. .table-white tr td:first-child,
  195. .table-white tr th:first-child {
  196. border-left: 0;
  197. }
  198. .table-nostriped tbody tr:nth-of-type(odd) {
  199. background-color: transparent;
  200. }
  201. .rotate-text {
  202. writing-mode: vertical-lr;
  203. transform: rotate(180deg);
  204. height: max-content;
  205. }
  206. .icono-acciones span,
  207. .icono-acciones i {
  208. margin: 0 var(--icon-spacing);
  209. text-decoration: none !important;
  210. }
  211. .icono-acciones a:focus,
  212. .icono-acciones a:hover,
  213. .icono-acciones a:active {
  214. text-decoration: none !important;
  215. }
  216. /* FORMAS */
  217. .form-box {
  218. margin-bottom: 28px;
  219. }
  220. .form-box>.form-group {
  221. margin-bottom: 10px
  222. }
  223. .form-box>.form-group>label {
  224. font-weight: bold;
  225. text-align: right;
  226. color: var(--primary-color);
  227. padding-left: 0
  228. }
  229. .form-box>.form-group>label.disabled {
  230. color: #969696;
  231. }
  232. .form-box>.form-group>label:before {
  233. content: '';
  234. position: absolute;
  235. top: -8px;
  236. right: 0px;
  237. width: 2px;
  238. height: calc(100% + 16px);
  239. display: block;
  240. background: #d21034;
  241. }
  242. .form-box>.form-group>label.disabled:before {
  243. background: #969696 !important;
  244. }
  245. .form-box-info>.form-group>div {
  246. background-color: #f7f7f7;
  247. padding-bottom: 10px;
  248. padding-left: 8px;
  249. }
  250. .form-box-info>.form-group>div:first-child {
  251. margin-left: 7px;
  252. }
  253. .form-box-info>.form-group:first-child>label {
  254. padding-top: 27px;
  255. }
  256. .form-box-info>.form-group:first-child>div {
  257. padding-top: 20px;
  258. }
  259. .form-box-info>.form-group:last-child>div {
  260. padding-bottom: 20px;
  261. }
  262. .form-box-info>.form-group.row {
  263. margin-bottom: 0 !important;
  264. }
  265. .modal .form-box-info>.form-group>div {
  266. margin-left: 0px;
  267. }
  268. .radio-md {
  269. width: 1em;
  270. height: 1em;
  271. }
  272. .radio-lg {
  273. width: 1.5em;
  274. height: 1.5em;
  275. }
  276. .radio-xl {
  277. width: 2em;
  278. height: 2em;
  279. }
  280. select:disabled {
  281. color: #969696 !important;
  282. }
  283. .input-info {
  284. color: #969696;
  285. }
  286. .barra-right:before {
  287. content: '';
  288. position: absolute;
  289. top: -8px;
  290. right: 0px;
  291. width: 2px;
  292. height: calc(100% + 16px);
  293. display: block;
  294. background: #d21034;
  295. }
  296. /* Uso independiente */
  297. .barra-right.disabled:before {
  298. background: #969696 !important;
  299. }
  300. /* Uso independiente */
  301. textarea {
  302. resize: none;
  303. overflow-x: hidden;
  304. overflow-wrap: break-word;
  305. overflow-y: auto;
  306. }
  307. .clock[readonly] {
  308. background-color: #fff !important;
  309. }
  310. .hasDatepicker[readonly] {
  311. background-color: #fff !important;
  312. }
  313. .badge {
  314. padding: 0.5em 1.4em;
  315. }
  316. .ui-autocomplete {
  317. max-height: 160px;
  318. overflow-y: auto;
  319. overflow-x: hidden;
  320. font-size: 90%
  321. }
  322. /* Data list*/
  323. .datalist {
  324. position: relative;
  325. border: 1px solid #969696;
  326. border-radius: .25rem;
  327. }
  328. .datalist-input {
  329. padding: 6px 30px 6px 12px !important;
  330. background: #FFFFFF !important;
  331. border-radius: .25rem;
  332. cursor: pointer;
  333. border: 0;
  334. }
  335. .datalist.disabled .datalist-input {
  336. background: #f7f7f7 !important;
  337. cursor: default;
  338. color: #969696;
  339. }
  340. .datalist.disabled .icono {
  341. opacity: 0;
  342. }
  343. .datalist .icono {
  344. position: absolute;
  345. font-size: 20px;
  346. right: 10px;
  347. top: 9px;
  348. color: #969696;
  349. transition: transform 0.2s ease;
  350. }
  351. /*.iconoAzul{color: #001D68 !important;} Usar text-primary*/
  352. .datalist>ul {
  353. position: absolute;
  354. margin: 0;
  355. padding: 0;
  356. width: 100%;
  357. max-height: 204px;
  358. top: 100%;
  359. left: 0;
  360. list-style: none;
  361. border-radius: 2px;
  362. background: #FFFFFF;
  363. border: 1px solid #001D68;
  364. overflow: hidden;
  365. overflow-y: auto;
  366. z-index: 100;
  367. }
  368. .datalist>ul li {
  369. display: flex;
  370. align-items: center;
  371. justify-content: start;
  372. padding: 0.3em 1em
  373. /*0.8em 1em 0.8em 1em*/
  374. ;
  375. color: #969696;
  376. }
  377. .datalist>ul li:not(.not-selectable):hover {
  378. background: #D21034;
  379. color: #FFFFFF;
  380. cursor: pointer;
  381. }
  382. .datalist .selected {
  383. background: #D21034;
  384. color: #FFFFFF;
  385. }
  386. .datalist .not-selectable {
  387. text-align: center;
  388. font-weight: bold;
  389. cursor: default;
  390. color: #001d68;
  391. padding-left: 10px !important;
  392. }
  393. .datalist-invalid {
  394. border-color: #d21034;
  395. }
  396. .datalist-invalid .icono {
  397. color: #d21034 !important;
  398. }
  399. /* Icono alerta */
  400. .alerta {
  401. color: #ffb700 !important;
  402. text-shadow: -1px -1px 0 #3f2f06, 1px -1px 0 #3f2f06, -1px 1px 0 #3f2f06, 1px 1px 0 #3f2f06;
  403. }
  404. /* Modal */
  405. .modal-content {
  406. border: 4px solid #001d68;
  407. }
  408. .modal-header {
  409. background-color: #001D68 !important;
  410. color: #fff !important;
  411. border-top-left-radius: 0;
  412. border-top-right-radius: 0;
  413. padding: 4px 8px 8px 8px;
  414. }
  415. .modal-title {
  416. font-weight: normal;
  417. text-align: center;
  418. padding: 0 30px;
  419. }
  420. .modal-header .close {
  421. position: absolute;
  422. top: 0;
  423. right: 0;
  424. }
  425. .modal-header .close:focus {
  426. border: none;
  427. outline: none;
  428. }
  429. /* The side navigation menu */
  430. #sidebar {
  431. width: 400px;
  432. position: fixed;
  433. top: 0;
  434. right: -400px;
  435. height: 100vh;
  436. z-index: 1023;
  437. transition: all 0.3s;
  438. overflow-y: auto;
  439. }
  440. #sidebar.active {
  441. right: 0;
  442. }
  443. .overlay {
  444. display: none;
  445. position: fixed;
  446. width: 100vw;
  447. height: 100vh;
  448. background: rgba(0, 0, 0, 0.6);
  449. z-index: 1022;
  450. opacity: 0;
  451. transition: all 0.5s ease-in-out;
  452. }
  453. .overlay.active {
  454. display: block;
  455. opacity: 1;
  456. }
  457. #sidebar a:hover {
  458. text-decoration: none;
  459. color: #d12034;
  460. }
  461. #sidebar a {
  462. transition: color 0.6s ease;
  463. }
  464. /* ICONOS MENU */
  465. header {
  466. padding: 20px 0;
  467. height: 110px;
  468. }
  469. header .logotipo {
  470. float: left;
  471. clear: none;
  472. text-align: inherit;
  473. width: 20%;
  474. margin-left: 0;
  475. margin-right: 0;
  476. }
  477. header .logotipo:before {
  478. content: '';
  479. display: table;
  480. }
  481. header .logotipo img,
  482. aside .logotipo img {
  483. max-width: 200px;
  484. }
  485. .mainMenu {
  486. min-width: 85px;
  487. }
  488. .menu .nav-item {
  489. border-right: 1px solid #969696;
  490. }
  491. .menu .nav-item:last-child {
  492. border-right: 0;
  493. }
  494. .menu .nav-item>a,
  495. .menu .nav-item>span {
  496. color: #969696;
  497. padding: 1px 10px;
  498. }
  499. .menu .nav-item>a:hover {
  500. color: #D21034;
  501. text-decoration: none;
  502. }
  503. .menu .nav-item>a {
  504. transition: color 0.6s ease;
  505. }
  506. .max-h {
  507. height: 45px !important;
  508. max-height: 45px;
  509. }
  510. .max-w {
  511. width: 45px !important;
  512. max-width: 45px;
  513. }
  514. .iconSesion {
  515. margin-right: -20px;
  516. }
  517. .iconLogin,
  518. .iconOff {
  519. font-size: 16px;
  520. display: block;
  521. width: 60px;
  522. -webkit-box-sizing: border-box;
  523. -moz-box-sizing: border-box;
  524. box-sizing: border-box;
  525. border-radius: 30px 0 0 30px;
  526. }
  527. .iconOff:hover,
  528. .iconOff:active {
  529. text-decoration: none;
  530. background: #D21034;
  531. color: #FFFFFF !important;
  532. height: 40px;
  533. }
  534. .iconOff {
  535. color: #D21034 !important;
  536. }
  537. .iconLogin:hover,
  538. .iconLogin:active,
  539. .iconOff:hover,
  540. .iconOff:active {
  541. text-decoration: none;
  542. color: #FFFFFF !important;
  543. height: 40px;
  544. }
  545. .iconLogin {
  546. color: #339933;
  547. }
  548. .iconLogin:hover,
  549. .iconLogin:active {
  550. background: #339933;
  551. }
  552. .iconMenu {
  553. font-size: 32px;
  554. }
  555. .menuicon:hover {
  556. color: #101097 !important;
  557. }
  558. .cerraricon {
  559. height: 40px !important;
  560. max-height: 40px;
  561. width: 40px !important;
  562. max-width: 40px;
  563. cursor: pointer;
  564. }
  565. .cerraricon:hover {
  566. background: #101097 !important;
  567. }
  568. .fa-ul {
  569. list-style-type: none;
  570. margin-left: 2.5em;
  571. padding-left: 0;
  572. }
  573. /* BUTTONS */
  574. /*.btn .fa-circle{color:rgba(255,255,255,0.15);}
  575. .btn .icon{font-weight: bold;}
  576. .btn-round{border-radius:30px; padding-left: 0.5rem!important; padding-right: 0.5rem!important;}*/
  577. .btn-ing {
  578. position: relative;
  579. padding-right: 35px;
  580. padding-left: 20px;
  581. }
  582. .btn.arrow:after {
  583. content: "\e905";
  584. font-size: 14px;
  585. position: absolute;
  586. font-family: "ingfont";
  587. right: 14px;
  588. margin-top: 3px;
  589. font-weight: bold;
  590. -webkit-transition: 0.6s all ease;
  591. -moz-transition: 0.6s all ease;
  592. -o-transition: 0.6s all ease;
  593. -ms-transition: 0.6s all ease;
  594. transition: 0.6s all ease;
  595. vertical-align: middle;
  596. }
  597. /* SOBREESCRIBE BOOTSTRAP */
  598. .btn-outline-primary.arrow:after {
  599. color: #D21034;
  600. }
  601. .btn-outline-danger.arrow:after {
  602. color: #001D68;
  603. }
  604. .btn-outline-secondary:hover.arrow:after {
  605. color: #D21034;
  606. }
  607. .btn-outline-info:hover.arrow:after {
  608. color: #001D68;
  609. }
  610. /***** SCROLLBAR *****/
  611. div ::-webkit-scrollbar {
  612. width: 8px;
  613. }
  614. /*Ancho*/
  615. div ::-webkit-scrollbar-track {
  616. background: #f7f7f7;
  617. }
  618. /*Riel*/
  619. div ::-webkit-scrollbar-thumb {
  620. background: #969696;
  621. }
  622. /* Handle */
  623. div ::-webkit-scrollbar-thumb:hover {
  624. background: #001d68;
  625. }
  626. /* Effects */
  627. /* Vars for primary, secondary, success, info, warning, danger, light, dark */
  628. :root {
  629. --primary-color: #001d68;
  630. --secondary-color: #001d68;
  631. --success-color: #339933;
  632. --danger-color: #d21034;
  633. --warning-color: #ffc107;
  634. --info-color: #969696;
  635. --light-color: #f7f7f7;
  636. --dark-color: #343a40;
  637. }
  638. .glow-primary {
  639. background: var(--primary-color);
  640. color: #fff;
  641. border-radius: 5px;
  642. padding: 5px;
  643. box-shadow: 0 0 5px var(--primary-color);
  644. transition: all 0.5s ease;
  645. }
  646. .glow-secondary {
  647. background: var(--secondary-color);
  648. color: #fff;
  649. border-radius: 5px;
  650. padding: 5px;
  651. box-shadow: 0 0 5px var(--secondary-color);
  652. transition: all 0.5s ease;
  653. }
  654. .glow-success {
  655. background: var(--success-color);
  656. color: #fff;
  657. border-radius: 5px;
  658. padding: 5px;
  659. box-shadow: 0 0 5px var(--success-color);
  660. transition: all 0.5s ease;
  661. }
  662. .glow-danger {
  663. background: var(--danger-color);
  664. color: #fff;
  665. border-radius: 5px;
  666. padding: 5px;
  667. box-shadow: 0 0 5px var(--danger-color);
  668. transition: all 0.5s ease;
  669. }
  670. .glow-warning {
  671. background: var(--warning-color);
  672. color: #fff;
  673. border-radius: 5px;
  674. padding: 5px;
  675. box-shadow: 0 0 5px var(--warning-color);
  676. transition: all 0.5s ease;
  677. }
  678. .glow-info {
  679. background: var(--info-color);
  680. color: #fff;
  681. border-radius: 5px;
  682. padding: 5px;
  683. box-shadow: 0 0 5px var(--info-color);
  684. transition: all 0.5s ease;
  685. }
  686. .glow-light {
  687. background: var(--light-color);
  688. color: #fff;
  689. border-radius: 5px;
  690. padding: 5px;
  691. box-shadow: 0 0 5px var(--light-color);
  692. transition: all 0.5s ease;
  693. }
  694. .glow-dark {
  695. background: var(--dark-color);
  696. color: #fff;
  697. border-radius: 5px;
  698. padding: 5px;
  699. box-shadow: 0 0 5px var(--dark-color);
  700. transition: all 0.5s ease;
  701. }
  702. /*Hover Handle */
  703. /***** FOOTER *****/
  704. footer {
  705. font-size: 14px;
  706. color: #fff;
  707. }
  708. footer .footerTop {
  709. background: #001d68;
  710. padding: 15px 0;
  711. }
  712. footer .footerTop .logotipo {
  713. overflow: hidden;
  714. }
  715. footer .footerTop .logotipo h3 {
  716. display: inline-block;
  717. vertical-align: top;
  718. color: #fff;
  719. margin: 0;
  720. float: right;
  721. text-align: right;
  722. font-size: 25px;
  723. font-family: 'indivisa-text'
  724. }
  725. footer .footerTop .logotipo h3 span {
  726. display: block;
  727. }
  728. footer .footerTop .menuFooter h3 {
  729. font-size: 12px;
  730. font-family: 'indivisa-text';
  731. color: #fff !important;
  732. }
  733. footer .footerTop .menuFooter ul {
  734. overflow: hidden;
  735. }
  736. footer ul {
  737. list-style: none;
  738. padding: 0;
  739. margin: 0;
  740. }
  741. footer .footerTop .menuFooter ul>li {
  742. zoom: 1;
  743. float: left;
  744. clear: none;
  745. text-align: inherit;
  746. width: 16%;
  747. margin-left: 0;
  748. margin-right: 3%;
  749. }
  750. footer .footerTop .menuFooter ul>li ul li a {
  751. font-size: 10px;
  752. }
  753. footer ul>li {
  754. display: inline-block;
  755. vertical-align: top;
  756. }
  757. .footerMore {
  758. position: relative;
  759. display: none;
  760. padding: 5px 0;
  761. }
  762. footer a {
  763. color: #fff;
  764. -webkit-transition: color 0.5s;
  765. transition: color 0.5s;
  766. }
  767. footer a:hover {
  768. color: #ce0e2d !important;
  769. text-decoration: none !important;
  770. }
  771. footer .footerTop .menuFooter ul>li ul li {
  772. display: block;
  773. width: 100%;
  774. margin-bottom: 0px;
  775. }
  776. footer .ubicacion {
  777. margin-top: 20px;
  778. overflow: hidden;
  779. }
  780. footer .ubicacion .address {
  781. display: inline-block;
  782. /*width: 65%;*/
  783. vertical-align: bottom;
  784. }
  785. footer .ubicacion .address h4,
  786. footer .ubicacion .address h4 a {
  787. color: #0fb7f1;
  788. font-size: 14px;
  789. margin: 0 0 0 -5px;
  790. position: relative;
  791. }
  792. footer .ubicacion .address h4 a {
  793. display: inline-block;
  794. }
  795. footer .ubicacion .redes {
  796. display: inline-block;
  797. vertical-align: bottom;
  798. /*width:32%;text-align:right*/
  799. }
  800. footer .ubicacion .redes h4 {
  801. display: inline-block;
  802. vertical-align: middle;
  803. margin: 0;
  804. font-size: 16px !important;
  805. font-weight: bold;
  806. }
  807. footer .ubicacion .redes ul {
  808. display: inline-block;
  809. vertical-align: middle
  810. }
  811. footer .ubicacion .redes ul li {
  812. margin-left: 2px
  813. }
  814. footer .footerMiddle {
  815. background: #071e58;
  816. overflow: hidden;
  817. }
  818. footer .footerMiddle nav ul {
  819. text-align: center;
  820. }
  821. footer .footerMiddle nav ul li {
  822. border-right: 1px solid #fff;
  823. padding: 1px 10px;
  824. display: inline-block;
  825. margin-bottom: 10px;
  826. }
  827. footer ul>li {
  828. display: inline-block;
  829. vertical-align: top;
  830. }
  831. footer .footerBottom {
  832. background: #091941;
  833. overflow: hidden;
  834. padding: 15px 0;
  835. }
  836. .footerBottom .logotipos {
  837. display: inline-block;
  838. vertical-align: middle;
  839. width: 20%
  840. }
  841. footer .footerBottom .logotipos a {
  842. display: inline-block;
  843. width: 80px;
  844. margin-right: 6px
  845. }
  846. footer .footerBottom .logotipos a.internacional {
  847. width: 80px
  848. }
  849. footer .footerBottom .logotipos a.red {
  850. width: 75px
  851. }
  852. footer .footerBottom .legales {
  853. text-align: right;
  854. float: right;
  855. width: 60%;
  856. margin-right: 0;
  857. margin-left: auto;
  858. padding-top: 10px;
  859. padding-bottom: 0
  860. }
  861. footer .footerBottom .legales ul li {
  862. border-right: 1px solid #fff;
  863. padding: 1px 10px
  864. }
  865. footer .footerBottom .legales ul li:last-child {
  866. border: 0
  867. }
  868. footer .tab-pane p {
  869. font-size: 12px;
  870. line-height: 18px;
  871. }
  872. @media (max-width: 800px) {
  873. .menu,
  874. .subMenu {
  875. position: relative;
  876. }
  877. .iconoMenu {
  878. position: absolute;
  879. display: block;
  880. right: 20px;
  881. top: 10px;
  882. }
  883. .menuOculto {
  884. display: none;
  885. }
  886. .form-box-info>.form-group>div {
  887. margin-left: 0px;
  888. }
  889. /*
  890. .responsive{
  891. float: none;
  892. text-align: center;
  893. display: flex;
  894. flex-direction: column;
  895. flex-wrap: wrap;
  896. justify-content: center;
  897. align-items: center;
  898. }*/
  899. }
  900. .movie {
  901. transition: all 0.1s;
  902. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  903. height: 8rem;
  904. /* align all inside content to the middle */
  905. display: flex;
  906. flex-direction: column;
  907. justify-content: center;
  908. align-items: center;
  909. background-color: #f7f7f7;
  910. }
  911. .movie:hover {
  912. transform: scale(1.05);
  913. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  914. font-size: 1.1em;
  915. }
  916. .movie:active {
  917. transform: scale(1.1);
  918. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  919. font-size: 1.2em;
  920. font-weight: bold;
  921. }
  922. .icono.ing-buscar {
  923. cursor: pointer;
  924. }