all.css 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660
  1. *{
  2. text-decoration: none !important;
  3. outline: 0 !important;
  4. }
  5. .row {
  6. margin: 0 !important;
  7. padding: 0;
  8. }
  9. @font-face {
  10. font-family: gudea;
  11. src: url("../fonts/Gudea-Regular.ttf"); /* TTF file for CSS3 browsers */
  12. }
  13. body {
  14. -webkit-font-smoothing: antialiased;
  15. max-width: 100%;
  16. position: relative;
  17. margin: 0 auto;
  18. font-family: 'gudea';
  19. background: #f1f1f1;
  20. }
  21. .container-in {
  22. max-width: 1100px;
  23. margin: 0 auto;
  24. }
  25. /*
  26. DEMO STYLE
  27. */
  28. a,
  29. a:hover,
  30. a:focus {
  31. color: inherit;
  32. text-decoration: none;
  33. transition: all 0.3s;
  34. }
  35. .navbar {
  36. padding: 8px 10px;
  37. background: #ffff;
  38. border-bottom: 1px solid #ec5e69;
  39. border-radius: 0;
  40. margin-bottom: 40px;
  41. box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  42. }
  43. .navbar-btn {
  44. box-shadow: none;
  45. outline: none !important;
  46. border: none;
  47. }
  48. .line {
  49. width: 100%;
  50. height: 1px;
  51. border-bottom: 1px dashed #ddd;
  52. margin: 40px 0;
  53. }
  54. /* ---------------------------------------------------
  55. SIDEBAR STYLE
  56. ----------------------------------------------------- */
  57. .wrapper {
  58. display: flex;
  59. width: 100%;
  60. }
  61. #sidebar {
  62. width: 180px;
  63. position: fixed;
  64. top: 0;
  65. left: 0;
  66. height: 100vh;
  67. z-index: 999;
  68. background: #ffffff;
  69. color: #ec1c24;
  70. transition: all 0.3s;
  71. }
  72. #sidebar.active {
  73. margin-left: -250px;
  74. }
  75. #sidebar .sidebar-header {
  76. padding: 0;
  77. background: #ffffff;
  78. height: 57px;
  79. border-bottom: 1px solid #ec5e69;
  80. }
  81. .width_img {
  82. width: 120px;
  83. float: none;
  84. margin: auto;
  85. padding: 14px;
  86. }
  87. #sidebar ul.components {
  88. padding: 20px 0;
  89. border-bottom: 1px solid #ffffff;
  90. }
  91. #sidebar ul p {
  92. color: #fff;
  93. padding: 10px 30px;
  94. }
  95. #sidebar ul li a {
  96. padding: 10px 30px;
  97. font-size: .875rem;
  98. display: block;
  99. color: #25344f;
  100. }
  101. #sidebar ul li a:hover {
  102. color: #ffffff;
  103. background: rgb(253, 75, 75);
  104. }
  105. #sidebar ul li.active>a, a[aria-expanded="true"] {
  106. color: #fff!important;
  107. background: #fd4b4b;
  108. }
  109. #sidebar a[aria-expanded="true"] i {
  110. color: #ffffff!important;
  111. }
  112. #sidebar a[aria-expanded="true"]::after {
  113. color: #ffffff!important;
  114. }
  115. a[data-toggle="collapse"] {
  116. position: relative;
  117. }
  118. .dropdown-toggle::after {
  119. display: block;
  120. position: absolute;
  121. top: 50%;
  122. right: 20px;
  123. transform: translateY(-50%);
  124. color: #7c858f;
  125. }
  126. ul ul a {
  127. font-size: 0.9em !important;
  128. padding-left: 30px !important;
  129. background: #f1f1f1;
  130. }
  131. ul.CTAs {
  132. padding: 20px;
  133. }
  134. ul.CTAs a {
  135. text-align: center;
  136. font-size: 0.9em !important;
  137. display: block;
  138. border-radius: 5px;
  139. margin-bottom: 5px;
  140. }
  141. a.download {
  142. background: #fff;
  143. color: #7386D5;
  144. }
  145. a.article,
  146. a.article:hover {
  147. background: #6d7fcc !important;
  148. color: #fff !important;
  149. }
  150. /* ---------------------------------------------------
  151. CONTENT STYLE
  152. ----------------------------------------------------- */
  153. #content {
  154. width: calc(100% - 180px);
  155. padding: 0;
  156. min-height: 100vh;
  157. transition: all 0.3s;
  158. position: absolute;
  159. top: 0;
  160. right: 0;
  161. }
  162. #content.active {
  163. width: 100%;
  164. }
  165. /* ---------------------------------------------------
  166. MEDIAQUERIES
  167. ----------------------------------------------------- */
  168. @media (max-width: 768px) {
  169. #sidebar {
  170. margin-left: -250px;
  171. }
  172. #sidebar.active {
  173. margin-left: 0;
  174. }
  175. #content {
  176. width: 100%;
  177. }
  178. #content.active {
  179. width: calc(100% - 250px);
  180. }
  181. #sidebarCollapse span {
  182. display: none;
  183. }
  184. }
  185. .btncollapse {
  186. background:transparent;
  187. border: none;
  188. }
  189. .btncollapse i {
  190. color: #212529;
  191. cursor: pointer;
  192. font-size: 14px;
  193. }
  194. .btncollapse i:hover{
  195. color: #c3c3c3;
  196. transition: all 0.3s;
  197. }
  198. .content-section {
  199. padding: 0 30px;
  200. }
  201. .nav-item a i{
  202. color: #212529;
  203. }
  204. .nav-item a i:hover{
  205. color: #c3c3c3;
  206. transition: all 0.3s;
  207. }
  208. .rounded-pic {
  209. width: 35px;
  210. height: 35px;
  211. overflow: hidden;
  212. border-radius: 50%;
  213. background:#fff;
  214. }
  215. .rounded-pic img {
  216. width: 100%;
  217. }
  218. li.nav-item {
  219. margin: 0 10px;
  220. }
  221. .sidebar-header img {
  222. width: 100%;
  223. }
  224. .list-unstyled i{
  225. font-size: 14px;
  226. margin-right: 10px;
  227. }
  228. #mostafaDropdown::after {
  229. display: inline-block;
  230. width: 0;
  231. height: 0;
  232. margin-left: .255em;
  233. vertical-align: 0;
  234. content: "";
  235. border-top: .3em solid transparent;
  236. border-right: 0;
  237. border-bottom: .3em solid transparent;
  238. border-left: .3em solid;
  239. }
  240. .nav-item a {
  241. cursor: pointer;
  242. }
  243. .dropdown-menu {
  244. position: absolute;
  245. top: 100%;
  246. right: 3%;
  247. z-index: 1000;
  248. display: none;
  249. float: left;
  250. min-width: 10rem;
  251. padding: .5rem 0;
  252. margin: 0.125rem 0 0;
  253. font-size: 14px;
  254. color: #1b2235;
  255. text-align: left;
  256. list-style: none;
  257. background-color: #fff;
  258. background-clip: padding-box;
  259. border: 1px solid rgba(0,0,0,.15);
  260. width: 20%;
  261. }
  262. .main .panel {
  263. background: #25344f;
  264. color: #fff;
  265. padding: 45px 20px;
  266. margin-bottom: 30px;
  267. border-radius: 2px;
  268. width: 100%;
  269. float: left;
  270. }
  271. .footerinfo p {
  272. font-size: 12px;
  273. color: #fff;
  274. margin-left: 14px;
  275. }
  276. .main .panel h1 {
  277. font-size: 14px;
  278. color: #b9c3ce;
  279. }
  280. .breadcrumb-header {
  281. font-size: 20px;
  282. font-weight: 300;
  283. color: rgba(225,235,245,.8);
  284. margin-bottom: 24px;
  285. }
  286. .body-table {
  287. padding: 40px;
  288. background: #24344d;
  289. border-radius: 2px;
  290. box-shadow: 0 1px 2px rgba(0,0,0,.15), 0 -1px 0 rgba(0,0,0,.02);
  291. }
  292. .body-table th {
  293. font-size: 14px;
  294. color: #fff;
  295. font-weight: 300!important;
  296. border-top: none!important;
  297. border-left: none!important;
  298. border-right: none!important;
  299. border-bottom: 1px solid #2e3f5b!important;
  300. color: rgba(225,235,245,.8);
  301. }
  302. .body-table tr {
  303. font-size: 14px;
  304. color: #fff;
  305. font-weight: 300;
  306. border-top: none!important;
  307. border-left: none!important;
  308. border-right: none!important;
  309. border-bottom: 1px solid #2e3f5b!important;
  310. background: #24344d!important;
  311. }
  312. .body-table td {
  313. border-top: none!important;
  314. border-left: none!important;
  315. border-right: none!important;
  316. border-bottom: 1px solid #2e3f5b!important;
  317. }
  318. .table-bordered {
  319. border-top: none!important;
  320. border-left: none!important;
  321. border-right: none!important;
  322. border-bottom: 1px solid #2e3f5b!important;
  323. }
  324. .table-striped tbody tr:nth-of-type(odd) {
  325. background-color: #24344d!important;
  326. }
  327. table.dataTable.display tbody tr.odd>.sorting_1, table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
  328. background-color: #24344d!important;
  329. }
  330. table.dataTable.display tbody tr.even>.sorting_1, table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
  331. background-color: #24344d!important;
  332. }
  333. table.dataTable thead th, table.dataTable thead td {
  334. padding: 10px 0!important;
  335. border-bottom: 1px solid #111;
  336. }
  337. table.dataTable tfoot th, table.dataTable tfoot td {
  338. padding: 10px 0px!important;
  339. border-top: 1px solid #111;
  340. }
  341. table.dataTable tbody th, table.dataTable tbody td {
  342. padding: 10px 0px!important;
  343. }
  344. .body-table label {
  345. font-size: 14px;
  346. color: #b9c3ce;
  347. }
  348. .body-table select {
  349. padding: 5px;
  350. border: 1px solid #ffffff;
  351. background: #ffffff;
  352. color: #24344d;
  353. }
  354. .body-table input[type="search"] {
  355. border-radius: 4px;
  356. border: 1px solid #324462;
  357. box-shadow: none!important;
  358. color: #b9c3ce;
  359. background: #24344d;
  360. padding: 4px 12px;
  361. font-size: 14px;
  362. position: relative;
  363. margin-right: 10px;
  364. }
  365. .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{
  366. cursor: default;
  367. color: #b9c3ce!important;
  368. border: 1px solid transparent;
  369. background: transparent;
  370. box-shadow: none;
  371. }
  372. .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  373. color: #ffffff !important;
  374. border: 1px solid #2f4060;
  375. background-color: #1b2844;
  376. background: #1b2844!important;
  377. border-radius: 0;
  378. padding: 6px 15px;
  379. }
  380. .dataTables_wrapper .dataTables_paginate .paginate_button {
  381. box-sizing: border-box;
  382. display: inline-block;
  383. min-width: 1.5em;
  384. padding: 0.5em 1em;
  385. margin-left: 2px;
  386. text-align: center;
  387. text-decoration: none !important;
  388. cursor: pointer;
  389. *cursor: hand;
  390. color: #b9c3ce!important;
  391. border: 1px solid #2f4060;
  392. border-radius: 0px;
  393. padding: 6px 15px;
  394. }
  395. .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  396. color: #b9c3ce;
  397. }
  398. .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  399. color: #fff !important;
  400. border: 1px solid #2f4060;
  401. background-color: #1b2844;
  402. background: #1b2844!important;
  403. border-radius: 0!important;
  404. padding: 6px 15px;
  405. transition: all 0.3s;
  406. }
  407. .btn_interactivo {
  408. width: 150px;
  409. text-align: center;
  410. margin-bottom: 40px;
  411. }
  412. .success_btn {
  413. border: 1px solid #2ec5d3;
  414. background: #2ec5d3;
  415. border-radius: 20px;
  416. color: #fff;
  417. font-size: 12px;
  418. }
  419. .success_btn a{
  420. display: block;
  421. padding: 10px;
  422. }
  423. .success_btn:hover {
  424. border: 1px solid #2ec5d3;
  425. background: transparent;
  426. color: #fff;
  427. transition: all 0.3s;
  428. }
  429. .panel p{
  430. font-size: 14px;
  431. color: #b9c3ce;
  432. margin:0;
  433. }
  434. .buscar_por {
  435. width: 20%;
  436. float: left;
  437. }
  438. .select_busqueda select {
  439. border-radius: 4px;
  440. border: 1px solid #324462;
  441. box-shadow: none!important;
  442. color: #b9c3ce;
  443. background: #24344d;
  444. padding: 4px 12px;
  445. font-size: 14px;
  446. width: 30%;
  447. position: relative;
  448. top: 5px;
  449. float: left;
  450. margin-right: 10px;
  451. }
  452. .select_busqueda input {
  453. border-radius: 4px;
  454. border: 1px solid #324462;
  455. box-shadow: none!important;
  456. color: #b9c3ce;
  457. background: #24344d;
  458. padding: 4px 12px;
  459. font-size: 14px;
  460. width: 65%;
  461. position: relative;
  462. top: 5px;
  463. float: left;
  464. margin-right: 10px;
  465. }
  466. .select_busqueda {
  467. width: 60%;
  468. float: left;
  469. margin-right: 10px;
  470. }
  471. .tabla_results {
  472. width: 100%;
  473. float: left;
  474. padding: 50px 0;
  475. }
  476. .tabla_results th{
  477. font-size: 14px;
  478. color: #fff;
  479. font-weight: 300!important;
  480. border-top: none!important;
  481. border-left: none!important;
  482. border-right: none!important;
  483. border-bottom: 1px solid #2e3f5b!important;
  484. color: rgba(225,235,245,.8);
  485. }
  486. .tabla_results tr {
  487. font-size: 14px;
  488. color: #fff;
  489. font-weight: 300;
  490. border-top: none!important;
  491. border-left: none!important;
  492. border-right: none!important;
  493. border-bottom: 1px solid #2e3f5b!important;
  494. background: #24344d!important;
  495. }
  496. .tabla_results td{
  497. border-top: none!important;
  498. border-left: none!important;
  499. border-right: none!important;
  500. border-bottom: 1px solid #2e3f5b!important;
  501. }
  502. .select_tienda .btn_interactivo {
  503. width: 150px;
  504. text-align: center;
  505. margin-bottom: 40px;
  506. float: left;
  507. }
  508. .buscar_por p{
  509. position: relative;
  510. top: 5px;
  511. }
  512. .select_tienda p{
  513. width: 100%;
  514. float: left;
  515. }
  516. .select_busqueda input::placeholder {
  517. color: #b9c3ce;
  518. opacity: 1; /* Firefox */
  519. }
  520. .select_busqueda input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  521. color: #b9c3ce;
  522. }
  523. .select_busqueda input::-ms-input-placeholder { /* Microsoft Edge */
  524. color: #b9c3ce;
  525. }
  526. .colnopadd {
  527. padding: 0!important;
  528. }
  529. .icon_text {
  530. text-align: center;
  531. width: 40px;
  532. height: 40px;
  533. padding: 7px;
  534. border-radius: 50%;
  535. float: none;
  536. margin: auto;
  537. }
  538. .icon_text p{
  539. font-size: 17px;
  540. color: #fff;
  541. margin: 0;
  542. }
  543. .activity .red {
  544. background: #ec5e69;
  545. }
  546. .activity .green {
  547. background: #5eec8c;
  548. }
  549. .activity .blue {
  550. background: #5e7aec;
  551. }
  552. .activity .purple {
  553. background: #9f7ce1;
  554. }
  555. .activity {
  556. width: 100%;
  557. float: left;
  558. margin: 20px 0;
  559. }
  560. .activity_title {
  561. padding: 0;
  562. }
  563. .panel canvas{
  564. width:100% !important;
  565. }
  566. .vermasnotificaciones {
  567. width: 100%;
  568. float: left;
  569. }
  570. .vermasnotificaciones .success_btn {
  571. border: 1px solid #2ec5d3;
  572. background: #2ec5d3;
  573. border-radius: 20px;
  574. color: #fff;
  575. font-size: 12px;
  576. width: 190px;
  577. text-align: center;
  578. }
  579. .vermasnotificaciones .success_btn:hover {
  580. border: 1px solid #2ec5d3;
  581. background: transparent;
  582. color: #fff;
  583. transition: all 0.3s;
  584. }
  585. .generar_reporte {
  586. width: 100%;
  587. float: left;
  588. margin: 30px 0;
  589. }
  590. .generar_reporte .success_btn {
  591. border: 1px solid #2ec5d3;
  592. background: #2ec5d3;
  593. border-radius: 20px;
  594. color: #fff;
  595. font-size: 12px;
  596. width: 10%;
  597. text-align: center;
  598. }
  599. .generar_reporte .success_btn:hover {
  600. border: 1px solid #2ec5d3;
  601. background: transparent;
  602. color: #fff;
  603. transition: all 0.3s;
  604. }
  605. .list-unstyled .active i {
  606. color: #ffffff;
  607. }
  608. .img-container {
  609. width: 90px;
  610. height: 90px;
  611. overflow: hidden;
  612. float: none;
  613. margin: auto;
  614. }
  615. .img-container img {
  616. width: 100%;
  617. }
  618. .botones_interactivos {
  619. width: 33.33%;
  620. float: left;
  621. text-align: left;
  622. margin: 20px 0 0;
  623. }
  624. .botones_interactivos i {
  625. color: #b9c3ce;
  626. transition: all 0.3s;
  627. cursor: pointer;
  628. }
  629. .botones_interactivos i:hover {
  630. color: #ec5e69;
  631. transition: all 0.3s;
  632. }
  633. *[tooltip] {
  634. position: relative;
  635. display: inline-block;
  636. cursor: pointer;
  637. }
  638. *[tooltip]:after, *[tooltip]:before {
  639. visibility: hidden;
  640. position: absolute;
  641. margin: 0;
  642. z-index: 98;
  643. }
  644. *[tooltip]:before {
  645. border-style: solid;
  646. border-color: rgba(0, 0, 0, 0.74) transparent;
  647. content: "";
  648. }
  649. *[tooltip]:after {
  650. background: rgba(0, 0, 0, 0.74);
  651. border-radius: 5px;
  652. color: #fff;
  653. content: attr(tooltip);
  654. padding: 5px 15px;
  655. font-size: 80%;
  656. }
  657. *[tooltip]:before, *[tooltip][tooltip-location="bottom"]:before {
  658. border-width: 0 6px 6px 6px;
  659. bottom: auto;
  660. top: 20px;
  661. left: 50%;
  662. }
  663. *[tooltip]:after, *[tooltip][tooltip-location="bottom"]:after {
  664. left: 0px;
  665. top: 26px;
  666. }
  667. *[tooltip][tooltip-location="top"]:before {
  668. border-width: 6px 6px 0px 6px;
  669. top: auto;
  670. bottom: 20px;
  671. }
  672. *[tooltip][tooltip-location="top"]:after {
  673. top: auto;
  674. bottom: 26px;
  675. }
  676. *[tooltip][tooltip-location="right"]:before {
  677. border-width: 6px 6px 0px 6px;
  678. top: 50%;
  679. left: 100%;
  680. transform: rotate(90deg);
  681. }
  682. *[tooltip][tooltip-location="right"]:after {
  683. top: -10%;
  684. left: calc(100% + 9px);
  685. }
  686. *[tooltip][tooltip-location="left"]:before {
  687. border-width: 6px 6px 0px 6px;
  688. top: 50%;
  689. right: 100%;
  690. left: auto;
  691. transform: rotate(-90deg);
  692. }
  693. *[tooltip][tooltip-location="left"]:after {
  694. top: -10%;
  695. left: auto;
  696. right: calc(100% + 9px);
  697. }
  698. *[tooltip]:hover:after, *[tooltip]:hover:before {
  699. visibility: visible;
  700. }
  701. *[tooltip][tooltip-animate]:before, *[tooltip][tooltip-animate]:after, *[tooltip][tooltip-animate][tooltip-location="bottom"]:before, *[tooltip][tooltip-animate][tooltip-location="bottom"]:after {
  702. margin: 10px 0px 0px 0px;
  703. }
  704. *[tooltip][tooltip-animate][tooltip-location="top"]:before, *[tooltip][tooltip-animate][tooltip-location="top"]:after {
  705. margin: 0px 0px 10px 0px;
  706. }
  707. *[tooltip][tooltip-animate][tooltip-location="right"]:before, *[tooltip][tooltip-animate][tooltip-location="right"]:after {
  708. margin: 0px 0px 0px 10px;
  709. }
  710. *[tooltip][tooltip-animate][tooltip-location="left"]:before, *[tooltip][tooltip-animate][tooltip-location="left"]:after {
  711. margin: 0px 10px 0px 0px;
  712. }
  713. *[tooltip][tooltip-animate]:after, *[tooltip][tooltip-animate]:before {
  714. transition: all 0.3s ease;
  715. opacity: 0;
  716. }
  717. *[tooltip][tooltip-animate]:hover:after, *[tooltip][tooltip-animate]:hover:before {
  718. margin: 0;
  719. opacity: 1;
  720. }
  721. *[tooltip][tooltip-size="small"]:after {
  722. width: 50px;
  723. }
  724. *[tooltip]:after, *[tooltip][tooltip-size="medium"]:after {
  725. width: 150px;
  726. }
  727. *[tooltip][tooltip-size="large"]:after {
  728. width: 250px;
  729. }
  730. .main_list_products{
  731. display: block;
  732. }
  733. .main_productos{
  734. display: none;
  735. }
  736. .colgrilla i{
  737. color: #b9c3ce;
  738. transition: all 0.3s;
  739. }
  740. .colgrilla {
  741. width: 18px;
  742. float: left;
  743. margin-right: 10px;
  744. }
  745. .colgrilla a{
  746. cursor: pointer;
  747. }
  748. .colgrilla .activar_vista i{
  749. color: #2ec5d3;
  750. transition: all 0.3s;
  751. }
  752. .colgrilla i:hover{
  753. color: #2ec5d3;
  754. transition: all 0.3s;
  755. }
  756. .add_producto {
  757. width: 150px;
  758. text-align: center;
  759. margin-bottom: 40px;
  760. float: right;
  761. }
  762. .btn_add_producto {
  763. border: 1px solid #2ec5d3;
  764. background: #2ec5d3;
  765. border-radius: 20px;
  766. color: #fff;
  767. font-size: 12px;
  768. }
  769. .btn_add_producto:hover {
  770. border: 1px solid #2ec5d3;
  771. background: transparent;
  772. color: #fff;
  773. transition: all 0.3s;
  774. }
  775. .btn_add_producto a {
  776. display: block;
  777. padding: 10px;
  778. }
  779. .modal-header {
  780. display: -ms-flexbox;
  781. display: block;
  782. -ms-flex-align: initial;
  783. align-items: flex-start;
  784. -ms-flex-pack: justify;
  785. justify-content: space-between;
  786. padding: 1rem;
  787. border-bottom: 1px solid #e9ecef;
  788. border-top-left-radius: .3rem;
  789. border-top-right-radius: .3rem;
  790. }
  791. .modal-title {
  792. font-size: 16px;
  793. font-weight: normal;
  794. color: rgb(97, 97, 97);
  795. }
  796. .modal-content {
  797. position: relative;
  798. display: -ms-flexbox;
  799. display: flex;
  800. -ms-flex-direction: column;
  801. flex-direction: column;
  802. width: 100%;
  803. pointer-events: auto;
  804. background-color: #fff;
  805. background-clip: padding-box;
  806. border: 1px solid rgba(0,0,0,.2);
  807. border-radius: 2px;
  808. outline: 0;
  809. }
  810. .custom-file-upload-hidden {
  811. display: none;
  812. visibility: hidden;
  813. position: absolute;
  814. left: -9999px;
  815. }
  816. .custom-file-upload {
  817. display: block;
  818. width: auto;
  819. font-size: 16px;
  820. margin-top: 30px;
  821. }
  822. .custom-file-upload label {
  823. display: block;
  824. margin-bottom: 5px;
  825. }
  826. .file-upload-wrapper {
  827. position: relative;
  828. margin-bottom: 5px;
  829. }
  830. .file-upload-input {
  831. width: 50%;
  832. font-size: 12px;
  833. padding: 8px;
  834. color: #b5b5b5;
  835. border: none;
  836. background-color: #c0392b00;
  837. -moz-transition: all 0.2s ease-in;
  838. -o-transition: all 0.2s ease-in;
  839. -webkit-transition: all 0.2s ease-in;
  840. transition: all 0.2s ease-in;
  841. float: left;
  842. border-bottom: 1px solid #c8c8c875;
  843. }
  844. .file-upload-input:hover, .file-upload-input:focus {
  845. background-color: transparent;
  846. outline: none;
  847. border-bottom: 1px solid #2ec5d37d;
  848. }
  849. .file-upload-button {
  850. cursor: pointer;
  851. display: inline-block;
  852. color: #fff;
  853. font-size: 10px;
  854. text-transform: uppercase;
  855. padding: 11px;
  856. border: 1px solid transparent;
  857. border-radius: 30px;
  858. margin-left: 0px;
  859. background-color: #2ec5d3;
  860. float: left;
  861. -moz-transition: all 0.2s ease-in;
  862. -o-transition: all 0.2s ease-in;
  863. -webkit-transition: all 0.2s ease-in;
  864. transition: all 0.2s ease-in;
  865. width: 50%;
  866. }
  867. .file-upload-button:hover {
  868. border: 1px solid #2ec5d3;
  869. background: transparent;
  870. color: #2ec5d3;
  871. transition: all 0.3s;
  872. }
  873. .close {
  874. float: right;
  875. font-size: 1.5rem;
  876. font-weight: normal;
  877. line-height: 1;
  878. color: #ec5e69;
  879. text-shadow: 0 1px 0 #fff;
  880. opacity: 1;
  881. }
  882. .data_product input {
  883. width: 100%;
  884. float: left;
  885. border-radius: 4px;
  886. box-shadow: none;
  887. border: 1px solid #2ec5d3;
  888. padding: 8px 20px;
  889. font-size: 12px;
  890. color: #bebebe;
  891. margin-bottom: 10px;
  892. background: transparent;
  893. }
  894. .add_producto_confirm {
  895. width: 150px;
  896. text-align: center;
  897. margin-bottom: 40px;
  898. float: right;
  899. }
  900. .btn_add_producto_confirm {
  901. border: 1px solid #2ec5d3;
  902. background: #2ec5d3;
  903. border-radius: 20px;
  904. color: #fff;
  905. font-size: 12px;
  906. }
  907. .btn_add_producto_confirm:hover {
  908. border: 1px solid #2ec5d3;
  909. background: transparent;
  910. color: #2ec5d3!important;
  911. transition: all 0.3s;
  912. }
  913. .btn_add_producto_confirm a {
  914. display: block;
  915. padding: 10px;
  916. }
  917. [type=reset], [type=submit], button, html [type=button] {
  918. -webkit-appearance: initial;
  919. }
  920. .cancel_producto_confirm {
  921. width: 150px;
  922. text-align: center;
  923. margin-bottom: 40px;
  924. }
  925. .btn_cancelar {
  926. border: 1px solid #2ec5d3;
  927. background: #2ec5d3;
  928. border-radius: 20px;
  929. color: #fff;
  930. font-size: 12px;
  931. }
  932. .btn_cancelar:hover {
  933. border: 1px solid #2ec5d3;
  934. background: transparent;
  935. color: #2ec5d3!important;
  936. transition: all 0.3s;
  937. }
  938. .btn_cancelar a {
  939. display: block;
  940. padding: 10px;
  941. }
  942. .delet_producto_confirm {
  943. width: 150px;
  944. text-align: center;
  945. margin-bottom: 40px;
  946. float: right;
  947. }
  948. .btn_delete_producto_confirm {
  949. border: 1px solid #ec5e69;
  950. background: #ec5e69;
  951. border-radius: 20px;
  952. color: #fff;
  953. font-size: 12px;
  954. }
  955. .btn_delete_producto_confirm:hover {
  956. border: 1px solid #ec5e69;
  957. background: transparent;
  958. color: #ec5e69!important;
  959. transition: all 0.3s;
  960. }
  961. .btn_delete_producto_confirm a {
  962. display: block;
  963. padding: 10px;
  964. }
  965. .modal-body .alert {
  966. font-size: 15px;
  967. text-transform: uppercase;
  968. text-align: center;
  969. color: #f1c205;
  970. margin-bottom: 0;
  971. }
  972. .modal-body .text-alert {
  973. font-size: 14px;
  974. text-align: center;
  975. color: #9f9f9f;
  976. }
  977. .rounded-pic-lock {
  978. width: 90px;
  979. height: 90px;
  980. overflow: hidden;
  981. border-radius: 50%;
  982. background: #fff;
  983. float: none;
  984. margin: auto;
  985. }
  986. .rounded-pic-lock img {
  987. width: 100%;
  988. }
  989. section.lockscreen {
  990. background: #192231;
  991. width: 100%;
  992. height: 100%;
  993. }
  994. .lockscreen h1 {
  995. font-size: 21px;
  996. color: #e1ebf5e6;
  997. text-align: center;
  998. margin: 20px 0 6px;
  999. }
  1000. .lockscreen p {
  1001. font-size: 14px;
  1002. color: #e1ebf5e6;
  1003. text-align: center;
  1004. margin: 0;
  1005. }
  1006. .password-again {
  1007. width: 340px;
  1008. float: none;
  1009. margin: auto;
  1010. padding-top: 40px;
  1011. }
  1012. .add_password {
  1013. width: 110px;
  1014. text-align: center;
  1015. margin-bottom: 40px;
  1016. float: right;
  1017. }
  1018. .btn_add_password {
  1019. border: 1px solid #2ec5d3;
  1020. background: #2ec5d3;
  1021. border-radius: 0 4px 4px 0;
  1022. color: #fff;
  1023. font-size: 12px;
  1024. }
  1025. .btn_add_password a {
  1026. display: block;
  1027. padding: 10px;
  1028. cursor: pointer;
  1029. }
  1030. .btn_add_password:hover {
  1031. border: 1px solid #2ec5d3;
  1032. background: transparent;
  1033. color: #fff;
  1034. transition: all 0.3s;
  1035. }
  1036. .password-again input {
  1037. border: 1px solid #324462;
  1038. background: transparent;
  1039. padding: 9px 11px;
  1040. font-size: 14px;
  1041. width: 230px;
  1042. color: #fff;
  1043. }
  1044. .lockscreen{
  1045. display: table;
  1046. height:200px;
  1047. }
  1048. .pantallabloqueada {
  1049. display: table-cell;
  1050. vertical-align: middle;
  1051. }
  1052. #elementos i {
  1053. color: #25344f;
  1054. }
  1055. .error_page{
  1056. display: table;
  1057. height:200px;
  1058. }
  1059. .page_notfound {
  1060. display: table-cell;
  1061. vertical-align: middle;
  1062. }
  1063. section.error_page {
  1064. background: #192231;
  1065. width: 100%;
  1066. height: 100%;
  1067. }
  1068. .error_page h1 {
  1069. font-size: 150px;
  1070. font-weight: 400;
  1071. color: #2ec5d3;
  1072. text-align: center;
  1073. margin: 20px 0 6px;
  1074. }
  1075. .error_page p {
  1076. font-size: 14px;
  1077. color: #e1ebf5e6;
  1078. text-align: center;
  1079. margin: 0;
  1080. }
  1081. .error_page h3 {
  1082. font-size: 30px;
  1083. color: #e1ebf5e6;
  1084. text-align: center;
  1085. margin: 0;
  1086. }
  1087. .inicio_sesion {
  1088. background-image: url(../images/login.png);
  1089. background-size: cover;
  1090. background-repeat: no-repeat;
  1091. width: 100%;
  1092. height: 100%;
  1093. }
  1094. .page_login {
  1095. padding: 0 50px;
  1096. height: 100%;
  1097. width: 100%;
  1098. }
  1099. .form_login {
  1100. height: 100%;
  1101. width: 400px;
  1102. padding: 30px 60px;
  1103. float: right;
  1104. background: #24344d;
  1105. }
  1106. .logo {
  1107. position: relative;
  1108. margin-top: 55px;
  1109. width: 190px;
  1110. float: none;
  1111. }
  1112. .logo img {
  1113. width: 100%;
  1114. }
  1115. .form_login p {
  1116. color: #fff;
  1117. font-size: 14px;
  1118. position: relative;
  1119. margin-top: 40px;
  1120. }
  1121. .form_login input {
  1122. border-radius: 4px;
  1123. border: 1px solid #324462;
  1124. box-shadow: none!important;
  1125. color: #b9c3ce!important;
  1126. background: #24344d;
  1127. padding: 4px 12px;
  1128. font-size: 14px;
  1129. width: 100%;
  1130. position: relative;
  1131. top: 5px;
  1132. float: left;
  1133. margin-top: 10px;
  1134. }
  1135. button.login_btn {
  1136. margin-top: 40px;
  1137. width: 100%;
  1138. background: #2ec5d3;
  1139. border: 1px solid transparent;
  1140. padding: 5px;
  1141. border-radius: 2px;
  1142. cursor: pointer;
  1143. color: #fff;
  1144. transition: all 0.3s;
  1145. }
  1146. button.login_btn:hover {
  1147. border: 1px solid #2ec5d3;
  1148. background: transparent;
  1149. color: #2ec5d3;
  1150. transition: all 0.3s;
  1151. }
  1152. .forgot_password a{
  1153. color: #fff;
  1154. text-decoration: underline!important;
  1155. transition: all 0.3s;
  1156. }
  1157. .forgot_password a:hover{
  1158. color: #2ec5d3;
  1159. transition: all 0.3s;
  1160. }
  1161. .form_login .footerinfo p {
  1162. font-size: 14px;
  1163. color: #fff;
  1164. position: absolute;
  1165. bottom: 0;
  1166. margin: 30px 0;
  1167. }
  1168. .contenedor_restore {
  1169. width: 400px;
  1170. float: none;
  1171. margin: auto;
  1172. }
  1173. .contenedor_restore .logo {
  1174. position: relative;
  1175. width: 190px;
  1176. float: none;
  1177. margin: auto;
  1178. }
  1179. .form_restore h1 {
  1180. font-size: 16px;
  1181. font-weight: 400;
  1182. color: #e1ebf5e6;
  1183. text-align: center;
  1184. margin: 20px 0 6px;
  1185. }
  1186. .form_restore {
  1187. padding: 40px;
  1188. }
  1189. button.restore_btn {
  1190. margin-top: 20px;
  1191. width: 100%;
  1192. background: #2ec5d3;
  1193. border: 1px solid transparent;
  1194. padding: 5px;
  1195. border-radius: 2px;
  1196. cursor: pointer;
  1197. color: #fff;
  1198. transition: all 0.3s;
  1199. }
  1200. button.restore_btn:hover {
  1201. border: 1px solid #2ec5d3;
  1202. background: transparent;
  1203. color: #2ec5d3;
  1204. transition: all 0.3s;
  1205. }
  1206. .form_restore input {
  1207. width: 100%;
  1208. position: relative;
  1209. margin-top: 10px;
  1210. color: #e1ebf5e6;
  1211. margin-bottom: 0;
  1212. background: transparent;
  1213. padding: 5px 15px;
  1214. border-top: 0;
  1215. border-left: 0;
  1216. border-right: 0;
  1217. border-bottom: 1px solid #e1ebf5e6;
  1218. }
  1219. .data_product select {
  1220. width: 100%;
  1221. float: left;
  1222. border-radius: 4px;
  1223. box-shadow: none;
  1224. border: 1px solid #2ec5d3;
  1225. padding: 8px 20px;
  1226. font-size: 12px;
  1227. color: #bebebe;
  1228. margin-bottom: 10px;
  1229. }
  1230. .body-table td a {
  1231. background: #2ec5d3;
  1232. border:1px solid transparent;
  1233. color: #fff;
  1234. padding: 8px 20px;
  1235. border-radius: 20px;
  1236. transition: all 0.3s;
  1237. }
  1238. .body-table td a:hover {
  1239. background: transparent;
  1240. border: 1px solid #2ec5d3;
  1241. color: #fff;
  1242. transition: all 0.3s;
  1243. }
  1244. .ver_producto {
  1245. background: #2ec5d3;
  1246. border: 1px solid transparent;
  1247. color: #fff;
  1248. padding: 8px 20px;
  1249. border-radius: 20px;
  1250. transition: all 0.3s;
  1251. }
  1252. .ver_producto:hover {
  1253. background: transparent;
  1254. border: 1px solid #2ec5d3;
  1255. color: #fff;
  1256. transition: all 0.3s;
  1257. }
  1258. .editar_producto {
  1259. background: #5893df!important;
  1260. border: 1px solid transparent;
  1261. color: #fff;
  1262. padding: 8px 20px;
  1263. border-radius: 20px;
  1264. transition: all 0.3s;
  1265. }
  1266. .editar_producto:hover {
  1267. background: transparent!important;
  1268. border: 1px solid #5893df!important;
  1269. color: #fff;
  1270. transition: all 0.3s;
  1271. }
  1272. .eliminar_producto {
  1273. background: #ec5e69!important;
  1274. border: 1px solid transparent;
  1275. color: #fff;
  1276. padding: 8px 20px;
  1277. border-radius: 20px;
  1278. transition: all 0.3s;
  1279. }
  1280. .eliminar_producto:hover {
  1281. background: transparent!important;
  1282. border: 1px solid #ec5e69!important;
  1283. color: #fff;
  1284. transition: all 0.3s;
  1285. }
  1286. .col-left {
  1287. width: 50%;
  1288. float: left;
  1289. }
  1290. .col-right {
  1291. width: 50%;
  1292. float: left;
  1293. }
  1294. .col-left p {
  1295. font-size: 14px;
  1296. }
  1297. .col-right p {
  1298. font-size: 14px;
  1299. }
  1300. .col-left select{
  1301. width: 99%;
  1302. }
  1303. .data_product textarea {
  1304. overflow: auto;
  1305. resize: none;
  1306. width: 100%;
  1307. font-size: 13px;
  1308. padding: 10px 20px;
  1309. border: 1px solid #2ec5d3;
  1310. border-radius: 4px;
  1311. margin-bottom: 20px;
  1312. }
  1313. .ver_lista_productos{
  1314. width: 100%;
  1315. float: left;
  1316. border-radius: 4px;
  1317. box-shadow: none;
  1318. border: 1px solid #2ec5d3;
  1319. padding: 8px 20px;
  1320. font-size: 12px;
  1321. color: #bebebe;
  1322. margin-bottom: 10px;
  1323. background: transparent;
  1324. }
  1325. .notification_body {
  1326. padding: 10px 0;
  1327. border-bottom: 1px solid #2e3f5b;
  1328. }
  1329. .notification_body span {
  1330. background: #ec5e69;
  1331. padding: 4px 10px;
  1332. border-radius: 30px;
  1333. color: #fff;
  1334. }
  1335. .panel_time_notification{
  1336. text-align: right;
  1337. }
  1338. .panel_time_notification a p:hover{
  1339. color: #ec5e69;
  1340. transition: all 0.3s;
  1341. }
  1342. .data_notification h1{
  1343. font-size: 16px;
  1344. font-weight: normal;
  1345. color: rgb(97, 97, 97);
  1346. }
  1347. .data_notification p{
  1348. font-size: 14px;
  1349. font-weight: normal;
  1350. color: rgb(97, 97, 97);
  1351. }
  1352. .body_drop_notification h1{
  1353. font-size: 16px;
  1354. font-weight: normal;
  1355. color: rgb(97, 97, 97);
  1356. }
  1357. .body_drop_notification p{
  1358. font-size: 14px;
  1359. font-weight: normal;
  1360. color: rgb(97, 97, 97);
  1361. }
  1362. .body_drop_notification span {
  1363. background: #ec5e69;
  1364. padding: 4px 10px;
  1365. border-radius: 30px;
  1366. color: #fff;
  1367. }
  1368. .body_drop_notification {
  1369. border-bottom: 1px solid #2e3f5b24;
  1370. height: 90px;
  1371. overflow: hidden;
  1372. }
  1373. .dropdown_noti {
  1374. height: 280px;
  1375. padding: 20px 4px;
  1376. overflow: hidden;
  1377. overflow-y: scroll;
  1378. }
  1379. .body_drop_message h1{
  1380. font-size: 16px;
  1381. font-weight: normal;
  1382. color: rgb(97, 97, 97);
  1383. }
  1384. .body_drop_message p{
  1385. font-size: 14px;
  1386. font-weight: normal;
  1387. color: rgb(97, 97, 97);
  1388. }
  1389. .body_drop_message {
  1390. height: 90px;
  1391. overflow: hidden;
  1392. border-bottom: 1px solid #2e3f5b24;
  1393. }
  1394. .dropdown_noti {
  1395. height: 280px;
  1396. padding: 20px 4px;
  1397. overflow: hidden;
  1398. overflow-y: scroll;
  1399. }
  1400. .nav-item.active a i {
  1401. color: #ec5e69;
  1402. }
  1403. .body_drop_message:after{
  1404. width: 100%;
  1405. }
  1406. .body_drop_message:before{
  1407. display: none;
  1408. }
  1409. .panel_mensajes a {
  1410. display: block;
  1411. height: 85px;
  1412. overflow: hidden;
  1413. transition: all 0.3s;
  1414. padding: 6px;
  1415. }
  1416. .panel_mensajes a:hover {
  1417. background: #1a223326;
  1418. transition: all 0.3s;
  1419. }
  1420. .contact_body {
  1421. height: 100%;
  1422. border-bottom: 1px solid #2e3f5b;
  1423. }
  1424. .panel_mensajes {
  1425. height: 710px;
  1426. overflow: hidden;
  1427. overflow-y: scroll;
  1428. }
  1429. .panel_mensajes::-webkit-scrollbar {
  1430. background: transparent;
  1431. }
  1432. .panel_mensajes::-webkit-scrollbar:vertical {
  1433. width: 1em;
  1434. }
  1435. .panel_mensajes::-webkit-scrollbar:horizontal {
  1436. height: 0;
  1437. }
  1438. .panel_mensajes::-webkit-scrollbar-thumb {
  1439. background-color: rgba(0, 0, 0, 0.3);
  1440. border-radius: 99999px;
  1441. border: .3125em solid transparent;
  1442. background-clip: content-box;
  1443. }
  1444. .panel_mensajes::-webkit-scrollbar {
  1445. background: transparent;
  1446. }
  1447. .panel_mensajes::-webkit-scrollbar:vertical {
  1448. width: 1em;
  1449. }
  1450. .panel_mensajes::-webkit-scrollbar:horizontal {
  1451. height: 0;
  1452. }
  1453. .panel_mensajes::-webkit-scrollbar-thumb {
  1454. background-color: rgba(0, 0, 0, 0.3);
  1455. border-radius: 99999px;
  1456. border: .3125em solid transparent;
  1457. background-clip: content-box;
  1458. }
  1459. .dropdown_noti::-webkit-scrollbar {
  1460. background: transparent;
  1461. }
  1462. .dropdown_noti::-webkit-scrollbar:vertical {
  1463. width: 1em;
  1464. }
  1465. .dropdown_noti::-webkit-scrollbar:horizontal {
  1466. height: 0;
  1467. }
  1468. .dropdown_noti::-webkit-scrollbar-thumb {
  1469. background-color: rgba(0, 0, 0, 0.3);
  1470. border-radius: 99999px;
  1471. border: .3125em solid transparent;
  1472. background-clip: content-box;
  1473. }
  1474. .dropdown_noti::-webkit-scrollbar {
  1475. background: transparent;
  1476. }
  1477. .dropdown_noti::-webkit-scrollbar:vertical {
  1478. width: 1em;
  1479. }
  1480. .dropdown_noti::-webkit-scrollbar:horizontal {
  1481. height: 0;
  1482. }
  1483. .dropdown_noti::-webkit-scrollbar-thumb {
  1484. background-color: rgba(0, 0, 0, 0.3);
  1485. border-radius: 99999px;
  1486. border: .3125em solid transparent;
  1487. background-clip: content-box;
  1488. }
  1489. .chatleft{
  1490. width: 100%;
  1491. float: left;
  1492. }
  1493. .chatright{
  1494. width: 100%;
  1495. float: left;
  1496. }
  1497. .panel_conversation {
  1498. height: 710px;
  1499. }
  1500. .conversation_body {
  1501. height: 480px;
  1502. overflow: hidden;
  1503. overflow-y: scroll;
  1504. }
  1505. .conversation_body::-webkit-scrollbar {
  1506. background: transparent;
  1507. }
  1508. .conversation_body::-webkit-scrollbar:vertical {
  1509. width: 1em;
  1510. }
  1511. .conversation_body::-webkit-scrollbar:horizontal {
  1512. height: 0;
  1513. }
  1514. .conversation_body::-webkit-scrollbar-thumb {
  1515. background-color: rgba(0, 0, 0, 0.3);
  1516. border-radius: 99999px;
  1517. border: .3125em solid transparent;
  1518. background-clip: content-box;
  1519. }
  1520. .conversation_body::-webkit-scrollbar {
  1521. background: transparent;
  1522. }
  1523. .conversation_body::-webkit-scrollbar:vertical {
  1524. width: 1em;
  1525. }
  1526. .conversation_body::-webkit-scrollbar:horizontal {
  1527. height: 0;
  1528. }
  1529. .conversation_body::-webkit-scrollbar-thumb {
  1530. background-color: rgba(0, 0, 0, 0.3);
  1531. border-radius: 99999px;
  1532. border: .3125em solid transparent;
  1533. background-clip: content-box;
  1534. }
  1535. .burbuja.left {
  1536. width: 50%;
  1537. background: #00000026;
  1538. padding: 20px;
  1539. border-radius: 50px;
  1540. float: left;
  1541. }
  1542. .burbuja p{
  1543. font-size: 11px;
  1544. color: #b9c3ce8c;
  1545. margin: 0;
  1546. }
  1547. .burbuja h1 {
  1548. font-size: 14px;
  1549. color: #b9c3ce;
  1550. }
  1551. .burbuja.right {
  1552. width: 50%;
  1553. background: #00000026;
  1554. padding: 20px;
  1555. border-radius: 50px;
  1556. float: right;
  1557. }
  1558. .box_message {
  1559. width: 100%;
  1560. padding: 10px 0;
  1561. }
  1562. .box_message textarea {
  1563. overflow: auto;
  1564. resize: none;
  1565. width: 100%;
  1566. border: 1px solid #2e3f5b;
  1567. background: transparent;
  1568. color: #fff;
  1569. font-size: 14px;
  1570. padding: 10px;
  1571. height: 130px;
  1572. }
  1573. .enviar_mensaje {
  1574. width: 100%;
  1575. float: left;
  1576. margin: 45px 0;
  1577. }
  1578. .enviar_mensaje .send_btn {
  1579. border: 1px solid #2ec5d3;
  1580. background: #2ec5d3;
  1581. border-radius: 20px;
  1582. color: #fff;
  1583. font-size: 12px;
  1584. width: 100%;
  1585. text-align: center;
  1586. }
  1587. .send_btn a {
  1588. display: block;
  1589. padding: 10px;
  1590. }
  1591. .enviar_mensaje .send_btn:hover {
  1592. border: 1px solid #2ec5d3;
  1593. background: transparent;
  1594. color: #fff;
  1595. transition: all 0.3s;
  1596. }
  1597. .panel_mensajes .active {
  1598. background: #1a223352;
  1599. transition: all 0.3s;
  1600. }
  1601. .panel .col-md-6 input {
  1602. width: 100%;
  1603. float: left;
  1604. border-radius: 4px;
  1605. box-shadow: none;
  1606. border: 1px solid #2ec5d3;
  1607. padding: 8px 20px;
  1608. font-size: 12px;
  1609. color: #bebebe;
  1610. margin-bottom: 10px;
  1611. background: transparent;
  1612. }
  1613. .inputs_config {
  1614. width: 100%;
  1615. float: left;
  1616. margin: 40px 0;
  1617. }
  1618. .inputs_config label {
  1619. width: 100%;
  1620. float: left;
  1621. color: #b4bcca;
  1622. }
  1623. .boton_guardar_info {
  1624. width: 150px;
  1625. float: right;
  1626. text-align: center;
  1627. }
  1628. #elementos:hover i {
  1629. color: #fff;
  1630. transition: all 0.3s;
  1631. }
  1632. .dropdown-toggle:hover::after {
  1633. transition: all 0.3s;
  1634. color: #ffffff;
  1635. }