Reac front end for psicometric app

all.css 33KB

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