Reac front end for psicometric app

all.css 77KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945
  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. height: 57px;
  43. display: block;
  44. }
  45. .navbar-btn {
  46. box-shadow: none;
  47. outline: none !important;
  48. border: none;
  49. }
  50. .line {
  51. width: 100%;
  52. height: 1px;
  53. border-bottom: 1px dashed #ddd;
  54. margin: 40px 0;
  55. }
  56. /* ---------------------------------------------------
  57. SIDEBAR STYLE
  58. ----------------------------------------------------- */
  59. .wrapper {
  60. display: flex;
  61. width: 100%;
  62. }
  63. #sidebar {
  64. width: 210px;
  65. position: fixed;
  66. top: 0;
  67. left: 0;
  68. height: 100vh;
  69. z-index: 999;
  70. background: #ffffff;
  71. color: #ec1c24;
  72. transition: all 0.3s;
  73. }
  74. #dropdownNotificaciones{
  75. color: #fff!important;
  76. background: #bcbcbc2e;
  77. }
  78. #sidebar.active {
  79. margin-left: -250px;
  80. }
  81. #sidebar .sidebar-header {
  82. padding: 0;
  83. background: #ffffff;
  84. height: 57px;
  85. border-bottom: 1px solid #ec5e69;
  86. }
  87. .width_img {
  88. width: 190px;
  89. float: none;
  90. margin: auto;
  91. padding: 11px;
  92. }
  93. #sidebar ul.components {
  94. padding: 20px 0;
  95. border-bottom: 1px solid #ffffff;
  96. }
  97. #sidebar ul p {
  98. color: #fff;
  99. padding: 10px 30px;
  100. }
  101. #sidebar ul li a {
  102. padding: 10px 30px;
  103. font-size: .875rem;
  104. display: block;
  105. color: #25344f;
  106. }
  107. #sidebar ul li a:hover {
  108. color: #ffffff;
  109. background: rgb(253, 75, 75);
  110. }
  111. #sidebar ul li.active>a, a[aria-expanded="true"] {
  112. color: #fff!important;
  113. background: #fd4b4b;
  114. }
  115. #sidebar a[aria-expanded="true"] i {
  116. color: #ffffff!important;
  117. }
  118. #sidebar a[aria-expanded="true"]::after {
  119. color: #ffffff!important;
  120. }
  121. a[data-toggle="collapse"] {
  122. position: relative;
  123. }
  124. .dropdown-toggle::after {
  125. display: block;
  126. position: absolute;
  127. top: 50%;
  128. right: 20px;
  129. transform: translateY(-50%);
  130. color: #7c858f;
  131. }
  132. ul ul a {
  133. font-size: 0.9em !important;
  134. padding-left: 30px !important;
  135. background: #f1f1f1;
  136. }
  137. ul.CTAs {
  138. padding: 20px;
  139. }
  140. ul.CTAs a {
  141. text-align: center;
  142. font-size: 0.9em !important;
  143. display: block;
  144. border-radius: 5px;
  145. margin-bottom: 5px;
  146. }
  147. a.download {
  148. background: #fff;
  149. color: #7386D5;
  150. }
  151. a.article,
  152. a.article:hover {
  153. background: #6d7fcc !important;
  154. color: #fff !important;
  155. }
  156. /* ---------------------------------------------------
  157. CONTENT STYLE
  158. ----------------------------------------------------- */
  159. #content {
  160. width: calc(100% - 210px);
  161. padding: 0;
  162. min-height: 100vh;
  163. transition: all 0.3s;
  164. position: absolute;
  165. top: 0;
  166. right: 0;
  167. }
  168. #content.active {
  169. width: 100%;
  170. }
  171. /* ---------------------------------------------------
  172. MEDIAQUERIES
  173. ----------------------------------------------------- */
  174. @media (max-width: 768px) {
  175. #sidebar {
  176. margin-left: -250px;
  177. }
  178. #sidebar.active {
  179. margin-left: 0;
  180. }
  181. #content {
  182. width: 100%;
  183. }
  184. #content.active {
  185. width: calc(100% - 250px);
  186. }
  187. #sidebarCollapse span {
  188. display: none;
  189. }
  190. }
  191. .btncollapse {
  192. background:transparent;
  193. border: none;
  194. }
  195. .btncollapse i {
  196. color: #212529;
  197. cursor: pointer;
  198. font-size: 14px;
  199. }
  200. .btncollapse i:hover{
  201. color: #c3c3c3;
  202. transition: all 0.3s;
  203. }
  204. .content-section {
  205. padding: 0 30px;
  206. }
  207. .nav-item a i{
  208. color: #212529;
  209. }
  210. .nav-item a i:hover{
  211. color: #c3c3c3;
  212. transition: all 0.3s;
  213. }
  214. .rounded-pic {
  215. width: 35px;
  216. height: 35px;
  217. overflow: hidden;
  218. border-radius: 50%;
  219. background:#fff;
  220. }
  221. .rounded-pic img {
  222. width: 100%;
  223. }
  224. li.nav-item {
  225. margin: 0 10px;
  226. }
  227. .sidebar-header img {
  228. width: 100%;
  229. }
  230. .list-unstyled i{
  231. font-size: 14px;
  232. margin-right: 10px;
  233. }
  234. #mostafaDropdown::after {
  235. display: inline-block;
  236. width: 0;
  237. height: 0;
  238. margin-left: .255em;
  239. vertical-align: 0;
  240. content: "";
  241. border-top: .3em solid transparent;
  242. border-right: 0;
  243. border-bottom: .3em solid transparent;
  244. border-left: .3em solid;
  245. }
  246. .nav-item a {
  247. cursor: pointer;
  248. }
  249. .dropdown-menu {
  250. position: absolute;
  251. top: 100%;
  252. right: 3%;
  253. z-index: 1000;
  254. display: none;
  255. float: left;
  256. min-width: 10rem;
  257. padding: .5rem 0;
  258. margin: 0.125rem 0 0;
  259. font-size: 14px;
  260. color: #1b2235;
  261. text-align: left;
  262. list-style: none;
  263. background-color: #fff;
  264. background-clip: padding-box;
  265. border: 1px solid rgba(0,0,0,.15);
  266. width: 20%;
  267. }
  268. .main .panel {
  269. background: #ffffff;
  270. color: #25344f;
  271. margin-bottom: 30px;
  272. border-radius: 2px;
  273. width: 100%;
  274. float: left;
  275. border: 1px solid #dcdcdc;
  276. }
  277. .footerinfo p {
  278. font-size: 14px;
  279. color: #25344f;
  280. margin-left: 14px;
  281. }
  282. .main .panel h1 {
  283. font-size: 22px!important;
  284. color: #959595!important;
  285. text-transform: uppercase;
  286. font-family: 'gudea';
  287. letter-spacing: 7px;
  288. padding: 0!important;
  289. margin: 0!important;
  290. position: relative;
  291. top: 10px;
  292. }
  293. .breadcrumb-header {
  294. font-size: 20px;
  295. font-weight: 300;
  296. color: rgba(225,235,245,.8);
  297. margin-bottom: 24px;
  298. }
  299. .body-table {
  300. padding: 40px;
  301. background: #24344d;
  302. border-radius: 2px;
  303. box-shadow: 0 1px 2px rgba(0,0,0,.15), 0 -1px 0 rgba(0,0,0,.02);
  304. }
  305. .body-table th {
  306. font-size: 14px;
  307. color: #fff;
  308. font-weight: 300!important;
  309. border-top: none!important;
  310. border-left: none!important;
  311. border-right: none!important;
  312. border-bottom: 1px solid #2e3f5b!important;
  313. color: rgba(225,235,245,.8);
  314. }
  315. .body-table tr {
  316. font-size: 14px;
  317. color: #fff;
  318. font-weight: 300;
  319. border-top: none!important;
  320. border-left: none!important;
  321. border-right: none!important;
  322. border-bottom: 1px solid #2e3f5b!important;
  323. background: #24344d!important;
  324. }
  325. .body-table td {
  326. border-top: none!important;
  327. border-left: none!important;
  328. border-right: none!important;
  329. border-bottom: 1px solid #2e3f5b!important;
  330. }
  331. .table-bordered {
  332. border-top: none!important;
  333. border-left: none!important;
  334. border-right: none!important;
  335. border-bottom: 1px solid #2e3f5b!important;
  336. }
  337. .table-striped tbody tr:nth-of-type(odd) {
  338. background-color: #24344d!important;
  339. }
  340. table.dataTable.display tbody tr.odd>.sorting_1, table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
  341. background-color: #24344d!important;
  342. }
  343. table.dataTable.display tbody tr.even>.sorting_1, table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
  344. background-color: #24344d!important;
  345. }
  346. table.dataTable thead th, table.dataTable thead td {
  347. padding: 10px 0!important;
  348. border-bottom: 1px solid #111;
  349. }
  350. table.dataTable tfoot th, table.dataTable tfoot td {
  351. padding: 10px 0px!important;
  352. border-top: 1px solid #111;
  353. }
  354. table.dataTable tbody th, table.dataTable tbody td {
  355. padding: 10px 0px!important;
  356. }
  357. .body-table label {
  358. font-size: 14px;
  359. color: #b9c3ce;
  360. }
  361. .body-table select {
  362. padding: 5px;
  363. border: 1px solid #ffffff;
  364. background: #ffffff;
  365. color: #24344d;
  366. }
  367. .body-table input[type="search"] {
  368. border-radius: 4px;
  369. border: 1px solid #324462;
  370. box-shadow: none!important;
  371. color: #b9c3ce;
  372. background: #24344d;
  373. padding: 4px 12px;
  374. font-size: 14px;
  375. position: relative;
  376. margin-right: 10px;
  377. }
  378. .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{
  379. cursor: default;
  380. color: #b9c3ce!important;
  381. border: 1px solid transparent;
  382. background: transparent;
  383. box-shadow: none;
  384. }
  385. .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  386. color: #ffffff !important;
  387. border: 1px solid #2f4060;
  388. background-color: #1b2844;
  389. background: #1b2844!important;
  390. border-radius: 0;
  391. padding: 6px 15px;
  392. }
  393. .dataTables_wrapper .dataTables_paginate .paginate_button {
  394. box-sizing: border-box;
  395. display: inline-block;
  396. min-width: 1.5em;
  397. padding: 0.5em 1em;
  398. margin-left: 2px;
  399. text-align: center;
  400. text-decoration: none !important;
  401. cursor: pointer;
  402. *cursor: hand;
  403. color: #b9c3ce!important;
  404. border: 1px solid #2f4060;
  405. border-radius: 0px;
  406. padding: 6px 15px;
  407. }
  408. .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  409. color: #b9c3ce;
  410. }
  411. .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  412. color: #fff !important;
  413. border: 1px solid #2f4060;
  414. background-color: #1b2844;
  415. background: #1b2844!important;
  416. border-radius: 0!important;
  417. padding: 6px 15px;
  418. transition: all 0.3s;
  419. }
  420. .btn_interactivo {
  421. width: 150px;
  422. text-align: center;
  423. margin-bottom: 40px;
  424. }
  425. .success_btn {
  426. border: 1px solid #2ec5d3;
  427. background: #2ec5d3;
  428. border-radius: 20px;
  429. color: #fff;
  430. font-size: 12px;
  431. }
  432. .success_btn a{
  433. display: block;
  434. padding: 10px;
  435. }
  436. .success_btn:hover {
  437. border: 1px solid #2ec5d3;
  438. background: transparent;
  439. color: #fff;
  440. transition: all 0.3s;
  441. }
  442. .panel p{
  443. font-size: 14px;
  444. color: #b9c3ce;
  445. margin:0;
  446. }
  447. .buscar_por {
  448. width: 20%;
  449. float: left;
  450. }
  451. .select_busqueda select {
  452. border-radius: 4px;
  453. border: 1px solid #324462;
  454. box-shadow: none!important;
  455. color: #b9c3ce;
  456. background: #24344d;
  457. padding: 4px 12px;
  458. font-size: 14px;
  459. width: 30%;
  460. position: relative;
  461. top: 5px;
  462. float: left;
  463. margin-right: 10px;
  464. }
  465. .select_busqueda input {
  466. border-radius: 4px;
  467. border: 1px solid #324462;
  468. box-shadow: none!important;
  469. color: #b9c3ce;
  470. background: #24344d;
  471. padding: 4px 12px;
  472. font-size: 14px;
  473. width: 65%;
  474. position: relative;
  475. top: 5px;
  476. float: left;
  477. margin-right: 10px;
  478. }
  479. .select_busqueda {
  480. width: 60%;
  481. float: left;
  482. margin-right: 10px;
  483. }
  484. .tabla_results {
  485. width: 100%;
  486. float: left;
  487. padding: 50px 0;
  488. }
  489. .tabla_results th{
  490. font-size: 14px;
  491. color: #fff;
  492. font-weight: 300!important;
  493. border-top: none!important;
  494. border-left: none!important;
  495. border-right: none!important;
  496. border-bottom: 1px solid #2e3f5b!important;
  497. color: rgba(225,235,245,.8);
  498. }
  499. .tabla_results tr {
  500. font-size: 14px;
  501. color: #fff;
  502. font-weight: 300;
  503. border-top: none!important;
  504. border-left: none!important;
  505. border-right: none!important;
  506. border-bottom: 1px solid #2e3f5b!important;
  507. background: #24344d!important;
  508. }
  509. .tabla_results td{
  510. border-top: none!important;
  511. border-left: none!important;
  512. border-right: none!important;
  513. border-bottom: 1px solid #2e3f5b!important;
  514. }
  515. .select_tienda .btn_interactivo {
  516. width: 150px;
  517. text-align: center;
  518. margin-bottom: 40px;
  519. float: left;
  520. }
  521. .buscar_por p{
  522. position: relative;
  523. top: 5px;
  524. }
  525. .select_tienda p{
  526. width: 100%;
  527. float: left;
  528. }
  529. .select_busqueda input::placeholder {
  530. color: #b9c3ce;
  531. opacity: 1; /* Firefox */
  532. }
  533. .select_busqueda input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  534. color: #b9c3ce;
  535. }
  536. .select_busqueda input::-ms-input-placeholder { /* Microsoft Edge */
  537. color: #b9c3ce;
  538. }
  539. .colnopadd {
  540. padding: 0!important;
  541. }
  542. .icon_text {
  543. text-align: center;
  544. width: 40px;
  545. height: 40px;
  546. padding: 7px;
  547. border-radius: 50%;
  548. float: none;
  549. margin: auto;
  550. }
  551. .icon_text p{
  552. font-size: 17px;
  553. color: #fff;
  554. margin: 0;
  555. }
  556. .activity .red {
  557. background: #ec5e69;
  558. }
  559. .activity .green {
  560. background: #5eec8c;
  561. }
  562. .activity .blue {
  563. background: #5e7aec;
  564. }
  565. .activity .purple {
  566. background: #9f7ce1;
  567. }
  568. .activity {
  569. width: 100%;
  570. float: left;
  571. margin: 20px 0;
  572. }
  573. .activity_title {
  574. padding: 0;
  575. }
  576. .panel canvas{
  577. width:100% !important;
  578. }
  579. .vermasnotificaciones {
  580. width: 100%;
  581. float: left;
  582. }
  583. .vermasnotificaciones .success_btn {
  584. border: 1px solid #2ec5d3;
  585. background: #2ec5d3;
  586. border-radius: 20px;
  587. color: #fff;
  588. font-size: 12px;
  589. width: 190px;
  590. text-align: center;
  591. }
  592. .vermasnotificaciones .success_btn:hover {
  593. border: 1px solid #2ec5d3;
  594. background: transparent;
  595. color: #fff;
  596. transition: all 0.3s;
  597. }
  598. .generar_reporte {
  599. width: 100%;
  600. float: left;
  601. margin: 30px 0;
  602. }
  603. .generar_reporte .success_btn {
  604. border: 1px solid #2ec5d3;
  605. background: #2ec5d3;
  606. border-radius: 20px;
  607. color: #fff;
  608. font-size: 12px;
  609. width: 10%;
  610. text-align: center;
  611. }
  612. .generar_reporte .success_btn:hover {
  613. border: 1px solid #2ec5d3;
  614. background: transparent;
  615. color: #fff;
  616. transition: all 0.3s;
  617. }
  618. .list-unstyled .active i {
  619. color: #ffffff;
  620. }
  621. .img-container {
  622. width: 90px;
  623. height: 90px;
  624. overflow: hidden;
  625. float: none;
  626. margin: auto;
  627. }
  628. .img-container img {
  629. width: 100%;
  630. }
  631. .botones_interactivos {
  632. width: 33.33%;
  633. float: left;
  634. text-align: left;
  635. margin: 20px 0 0;
  636. }
  637. .botones_interactivos i {
  638. color: #b9c3ce;
  639. transition: all 0.3s;
  640. cursor: pointer;
  641. }
  642. .botones_interactivos i:hover {
  643. color: #ec5e69;
  644. transition: all 0.3s;
  645. }
  646. *[tooltip] {
  647. position: relative;
  648. display: inline-block;
  649. cursor: pointer;
  650. }
  651. *[tooltip]:after, *[tooltip]:before {
  652. visibility: hidden;
  653. position: absolute;
  654. margin: 0;
  655. z-index: 98;
  656. }
  657. *[tooltip]:before {
  658. border-style: solid;
  659. border-color: rgba(0, 0, 0, 0.74) transparent;
  660. content: "";
  661. }
  662. *[tooltip]:after {
  663. background: rgba(0, 0, 0, 0.74);
  664. border-radius: 5px;
  665. color: #fff;
  666. content: attr(tooltip);
  667. padding: 5px 15px;
  668. font-size: 80%;
  669. }
  670. *[tooltip]:before, *[tooltip][tooltip-location="bottom"]:before {
  671. border-width: 0 6px 6px 6px;
  672. bottom: auto;
  673. top: 20px;
  674. left: 50%;
  675. }
  676. *[tooltip]:after, *[tooltip][tooltip-location="bottom"]:after {
  677. left: 0px;
  678. top: 26px;
  679. }
  680. *[tooltip][tooltip-location="top"]:before {
  681. border-width: 6px 6px 0px 6px;
  682. top: auto;
  683. bottom: 20px;
  684. }
  685. *[tooltip][tooltip-location="top"]:after {
  686. top: auto;
  687. bottom: 26px;
  688. }
  689. *[tooltip][tooltip-location="right"]:before {
  690. border-width: 6px 6px 0px 6px;
  691. top: 50%;
  692. left: 100%;
  693. transform: rotate(90deg);
  694. }
  695. *[tooltip][tooltip-location="right"]:after {
  696. top: -10%;
  697. left: calc(100% + 9px);
  698. }
  699. *[tooltip][tooltip-location="left"]:before {
  700. border-width: 6px 6px 0px 6px;
  701. top: 50%;
  702. right: 100%;
  703. left: auto;
  704. transform: rotate(-90deg);
  705. }
  706. *[tooltip][tooltip-location="left"]:after {
  707. top: -10%;
  708. left: auto;
  709. right: calc(100% + 9px);
  710. }
  711. *[tooltip]:hover:after, *[tooltip]:hover:before {
  712. visibility: visible;
  713. }
  714. *[tooltip][tooltip-animate]:before, *[tooltip][tooltip-animate]:after, *[tooltip][tooltip-animate][tooltip-location="bottom"]:before, *[tooltip][tooltip-animate][tooltip-location="bottom"]:after {
  715. margin: 10px 0px 0px 0px;
  716. }
  717. *[tooltip][tooltip-animate][tooltip-location="top"]:before, *[tooltip][tooltip-animate][tooltip-location="top"]:after {
  718. margin: 0px 0px 10px 0px;
  719. }
  720. *[tooltip][tooltip-animate][tooltip-location="right"]:before, *[tooltip][tooltip-animate][tooltip-location="right"]:after {
  721. margin: 0px 0px 0px 10px;
  722. }
  723. *[tooltip][tooltip-animate][tooltip-location="left"]:before, *[tooltip][tooltip-animate][tooltip-location="left"]:after {
  724. margin: 0px 10px 0px 0px;
  725. }
  726. *[tooltip][tooltip-animate]:after, *[tooltip][tooltip-animate]:before {
  727. transition: all 0.3s ease;
  728. opacity: 0;
  729. }
  730. *[tooltip][tooltip-animate]:hover:after, *[tooltip][tooltip-animate]:hover:before {
  731. margin: 0;
  732. opacity: 1;
  733. }
  734. *[tooltip][tooltip-size="small"]:after {
  735. width: 50px;
  736. }
  737. *[tooltip]:after, *[tooltip][tooltip-size="medium"]:after {
  738. width: 150px;
  739. }
  740. *[tooltip][tooltip-size="large"]:after {
  741. width: 250px;
  742. }
  743. .main_list_products{
  744. display: block;
  745. }
  746. .main_productos{
  747. display: none;
  748. }
  749. .colgrilla i{
  750. color: #b9c3ce;
  751. transition: all 0.3s;
  752. }
  753. .colgrilla {
  754. width: 18px;
  755. float: left;
  756. margin-right: 10px;
  757. }
  758. .colgrilla a{
  759. cursor: pointer;
  760. }
  761. .colgrilla .activar_vista i{
  762. color: #2ec5d3;
  763. transition: all 0.3s;
  764. }
  765. .colgrilla i:hover{
  766. color: #2ec5d3;
  767. transition: all 0.3s;
  768. }
  769. .add_producto {
  770. width: 150px;
  771. text-align: center;
  772. margin-bottom: 40px;
  773. float: right;
  774. }
  775. .btn_add_producto {
  776. border: 1px solid #2ec5d3;
  777. background: #2ec5d3;
  778. border-radius: 20px;
  779. color: #fff;
  780. font-size: 12px;
  781. }
  782. .btn_add_producto:hover {
  783. border: 1px solid #2ec5d3;
  784. background: transparent;
  785. color: #fff;
  786. transition: all 0.3s;
  787. }
  788. .btn_add_producto a {
  789. display: block;
  790. padding: 10px;
  791. }
  792. .modal-header {
  793. display: -ms-flexbox;
  794. display: block;
  795. -ms-flex-align: initial;
  796. align-items: flex-start;
  797. -ms-flex-pack: justify;
  798. justify-content: space-between;
  799. padding: 1rem;
  800. border-bottom: 1px solid #e9ecef;
  801. border-top-left-radius: .3rem;
  802. border-top-right-radius: .3rem;
  803. }
  804. .modal-title {
  805. font-size: 16px;
  806. font-weight: normal;
  807. color: rgb(97, 97, 97);
  808. }
  809. .modal-content {
  810. position: relative;
  811. display: -ms-flexbox;
  812. display: flex;
  813. -ms-flex-direction: column;
  814. flex-direction: column;
  815. width: 100%;
  816. pointer-events: auto;
  817. background-color: #fff;
  818. background-clip: padding-box;
  819. border: 1px solid rgba(0,0,0,.2);
  820. border-radius: 2px;
  821. outline: 0;
  822. }
  823. .custom-file-upload-hidden {
  824. display: none;
  825. visibility: hidden;
  826. position: absolute;
  827. left: -9999px;
  828. }
  829. .custom-file-upload {
  830. display: block;
  831. width: auto;
  832. font-size: 16px;
  833. margin-top: 30px;
  834. }
  835. .custom-file-upload label {
  836. display: block;
  837. margin-bottom: 5px;
  838. }
  839. .file-upload-wrapper {
  840. position: relative;
  841. margin-bottom: 5px;
  842. }
  843. .file-upload-input {
  844. width: 50%;
  845. font-size: 12px;
  846. padding: 8px;
  847. color: #b5b5b5;
  848. border: none;
  849. background-color: #c0392b00;
  850. -moz-transition: all 0.2s ease-in;
  851. -o-transition: all 0.2s ease-in;
  852. -webkit-transition: all 0.2s ease-in;
  853. transition: all 0.2s ease-in;
  854. float: left;
  855. border-bottom: 1px solid #c8c8c875;
  856. }
  857. .file-upload-input:hover, .file-upload-input:focus {
  858. background-color: transparent;
  859. outline: none;
  860. border-bottom: 1px solid #2ec5d37d;
  861. }
  862. .file-upload-button {
  863. cursor: pointer;
  864. display: inline-block;
  865. color: #fff;
  866. font-size: 10px;
  867. text-transform: uppercase;
  868. padding: 11px;
  869. border: 1px solid transparent;
  870. border-radius: 30px;
  871. margin-left: 0px;
  872. background-color: #2ec5d3;
  873. float: left;
  874. -moz-transition: all 0.2s ease-in;
  875. -o-transition: all 0.2s ease-in;
  876. -webkit-transition: all 0.2s ease-in;
  877. transition: all 0.2s ease-in;
  878. width: 50%;
  879. }
  880. .file-upload-button:hover {
  881. border: 1px solid #2ec5d3;
  882. background: transparent;
  883. color: #2ec5d3;
  884. transition: all 0.3s;
  885. }
  886. .close {
  887. float: right;
  888. font-size: 1.5rem;
  889. font-weight: normal;
  890. line-height: 1;
  891. color: #ec5e69;
  892. text-shadow: 0 1px 0 #fff;
  893. opacity: 1;
  894. }
  895. .data_product input {
  896. width: 100%;
  897. float: left;
  898. border-radius: 4px;
  899. box-shadow: none;
  900. border: 1px solid #2ec5d3;
  901. padding: 8px 20px;
  902. font-size: 12px;
  903. color: #bebebe;
  904. margin-bottom: 10px;
  905. background: transparent;
  906. }
  907. .add_producto_confirm {
  908. width: 150px;
  909. text-align: center;
  910. margin-bottom: 40px;
  911. float: right;
  912. }
  913. .btn_add_producto_confirm {
  914. border: 1px solid #2ec5d3;
  915. background: #2ec5d3;
  916. border-radius: 20px;
  917. color: #fff;
  918. font-size: 12px;
  919. }
  920. .btn_add_producto_confirm:hover {
  921. border: 1px solid #2ec5d3;
  922. background: transparent;
  923. color: #2ec5d3!important;
  924. transition: all 0.3s;
  925. }
  926. .btn_add_producto_confirm a {
  927. display: block;
  928. padding: 10px;
  929. }
  930. [type=reset], [type=submit], button, html [type=button] {
  931. -webkit-appearance: initial;
  932. }
  933. .cancel_producto_confirm {
  934. width: 150px;
  935. text-align: center;
  936. margin-bottom: 40px;
  937. }
  938. .btn_cancelar {
  939. border: 1px solid #2ec5d3;
  940. background: #2ec5d3;
  941. border-radius: 20px;
  942. color: #fff;
  943. font-size: 12px;
  944. }
  945. .btn_cancelar:hover {
  946. border: 1px solid #2ec5d3;
  947. background: transparent;
  948. color: #2ec5d3!important;
  949. transition: all 0.3s;
  950. }
  951. .btn_cancelar a {
  952. display: block;
  953. padding: 10px;
  954. }
  955. .delet_producto_confirm {
  956. width: 150px;
  957. text-align: center;
  958. margin-bottom: 40px;
  959. float: right;
  960. }
  961. .btn_delete_producto_confirm {
  962. border: 1px solid #ec5e69;
  963. background: #ec5e69;
  964. border-radius: 20px;
  965. color: #fff;
  966. font-size: 12px;
  967. }
  968. .btn_delete_producto_confirm:hover {
  969. border: 1px solid #ec5e69;
  970. background: transparent;
  971. color: #ec5e69!important;
  972. transition: all 0.3s;
  973. }
  974. .btn_delete_producto_confirm a {
  975. display: block;
  976. padding: 10px;
  977. }
  978. .modal-body .alert {
  979. font-size: 15px;
  980. text-transform: uppercase;
  981. text-align: center;
  982. color: #f1c205;
  983. margin-bottom: 0;
  984. }
  985. .modal-body .text-alert {
  986. font-size: 14px;
  987. text-align: center;
  988. color: #9f9f9f;
  989. }
  990. .rounded-pic-lock {
  991. width: 90px;
  992. height: 90px;
  993. overflow: hidden;
  994. border-radius: 50%;
  995. background: #fff;
  996. float: none;
  997. margin: auto;
  998. }
  999. .rounded-pic-lock img {
  1000. width: 100%;
  1001. }
  1002. section.lockscreen {
  1003. background: #f1f1f1;
  1004. width: 100%;
  1005. height: 100%;
  1006. }
  1007. .lockscreen h1 {
  1008. font-size: 21px;
  1009. color: #25344f;
  1010. text-align: center;
  1011. margin: 20px 0 6px;
  1012. }
  1013. .lockscreen p {
  1014. font-size: 14px;
  1015. color: #25344f;
  1016. text-align: center;
  1017. margin: 0;
  1018. }
  1019. .password-again {
  1020. width: 340px;
  1021. float: none;
  1022. margin: auto;
  1023. padding-top: 40px;
  1024. }
  1025. .add_password {
  1026. width: 110px;
  1027. text-align: center;
  1028. margin-bottom: 40px;
  1029. float: right;
  1030. }
  1031. .btn_add_password {
  1032. border: 1px solid #fd4b4b;
  1033. background: #fd4b4b;
  1034. border-radius: 0 4px 4px 0;
  1035. color: #fff;
  1036. font-size: 13px;
  1037. }
  1038. .btn_add_password a {
  1039. display: block;
  1040. padding: 10px;
  1041. cursor: pointer;
  1042. }
  1043. .btn_add_password:hover {
  1044. border: 1px solid #d91212;
  1045. background: #d91212;
  1046. color: #fff;
  1047. transition: all 0.3s;
  1048. }
  1049. .password-again input {
  1050. border: 1px solid #fd4b4b;
  1051. background: transparent;
  1052. padding: 9px 11px;
  1053. font-size: 14px;
  1054. width: 230px;
  1055. color: #fff;
  1056. }
  1057. .lockscreen{
  1058. display: table;
  1059. height:200px;
  1060. }
  1061. .pantallabloqueada {
  1062. display: table-cell;
  1063. vertical-align: middle;
  1064. }
  1065. #elementos i {
  1066. color: #25344f;
  1067. }
  1068. .error_page{
  1069. display: table;
  1070. height:200px;
  1071. }
  1072. .page_notfound {
  1073. display: table-cell;
  1074. vertical-align: middle;
  1075. }
  1076. section.error_page {
  1077. background: #f1f1f1;
  1078. width: 100%;
  1079. height: 100%;
  1080. }
  1081. .error_page h1 {
  1082. font-size: 150px;
  1083. font-weight: 400;
  1084. color: #fd4b4b;
  1085. text-align: center;
  1086. margin: 20px 0 6px;
  1087. }
  1088. .error_page p {
  1089. font-size: 14px;
  1090. color: #25344f;
  1091. text-align: center;
  1092. margin: 0;
  1093. }
  1094. .error_page h3 {
  1095. font-size: 30px;
  1096. color: #25344f;
  1097. text-align: center;
  1098. margin: 0;
  1099. }
  1100. .inicio_sesion {
  1101. background-image: url(../images/login.png);
  1102. background-size: cover;
  1103. background-repeat: no-repeat;
  1104. width: 100%;
  1105. height: 100%;
  1106. }
  1107. .page_login {
  1108. padding: 0 50px;
  1109. height: 100%;
  1110. width: 100%;
  1111. }
  1112. .form_login {
  1113. height: 100%;
  1114. width: 400px;
  1115. padding: 30px 60px;
  1116. float: right;
  1117. background: #24344d;
  1118. }
  1119. .logo {
  1120. position: relative;
  1121. margin-top: 55px;
  1122. width: 190px;
  1123. float: none;
  1124. }
  1125. .logo img {
  1126. width: 100%;
  1127. }
  1128. .form_login p {
  1129. color: #fff;
  1130. font-size: 14px;
  1131. position: relative;
  1132. margin-top: 40px;
  1133. }
  1134. .form_login input {
  1135. border-radius: 4px;
  1136. border: 1px solid #324462;
  1137. box-shadow: none!important;
  1138. color: #b9c3ce!important;
  1139. background: #24344d;
  1140. padding: 4px 12px;
  1141. font-size: 14px;
  1142. width: 100%;
  1143. position: relative;
  1144. top: 5px;
  1145. float: left;
  1146. margin-top: 10px;
  1147. }
  1148. button.login_btn {
  1149. margin-top: 40px;
  1150. width: 100%;
  1151. background: #2ec5d3;
  1152. border: 1px solid transparent;
  1153. padding: 5px;
  1154. border-radius: 2px;
  1155. cursor: pointer;
  1156. color: #fff;
  1157. transition: all 0.3s;
  1158. }
  1159. button.login_btn:hover {
  1160. border: 1px solid #2ec5d3;
  1161. background: transparent;
  1162. color: #2ec5d3;
  1163. transition: all 0.3s;
  1164. }
  1165. .forgot_password a{
  1166. color: #fff;
  1167. text-decoration: underline!important;
  1168. transition: all 0.3s;
  1169. }
  1170. .forgot_password a:hover{
  1171. color: #2ec5d3;
  1172. transition: all 0.3s;
  1173. }
  1174. .form_login .footerinfo p {
  1175. font-size: 14px;
  1176. color: #fff;
  1177. position: absolute;
  1178. bottom: 0;
  1179. margin: 30px 0;
  1180. }
  1181. .contenedor_restore {
  1182. width: 400px;
  1183. float: none;
  1184. margin: auto;
  1185. }
  1186. .contenedor_restore .logo {
  1187. position: relative;
  1188. width: 190px;
  1189. float: none;
  1190. margin: auto;
  1191. }
  1192. .form_restore h1 {
  1193. font-size: 16px;
  1194. font-weight: 400;
  1195. color: #25344f;
  1196. text-align: center;
  1197. margin: 20px 0 6px;
  1198. }
  1199. .form_restore {
  1200. padding: 40px;
  1201. }
  1202. button.restore_btn {
  1203. margin-top: 20px;
  1204. width: 100%;
  1205. border: 1px solid #fd4b4b;
  1206. background: #fd4b4b;
  1207. padding: 5px;
  1208. border-radius: 2px;
  1209. cursor: pointer;
  1210. color: #fff;
  1211. transition: all 0.3s;
  1212. }
  1213. button.restore_btn:hover {
  1214. border: 1px solid #d91212;
  1215. background: #d91212;
  1216. color: #fff;
  1217. transition: all 0.3s;
  1218. }
  1219. .form_restore input {
  1220. width: 100%;
  1221. position: relative;
  1222. margin-top: 10px;
  1223. color: #25344f;
  1224. margin-bottom: 0;
  1225. background: transparent;
  1226. padding: 5px 15px;
  1227. border-top: 0;
  1228. border-left: 0;
  1229. border-right: 0;
  1230. border-bottom: 1px solid #ec1c245c;
  1231. }
  1232. .data_product select {
  1233. width: 100%;
  1234. float: left;
  1235. border-radius: 4px;
  1236. box-shadow: none;
  1237. border: 1px solid #2ec5d3;
  1238. padding: 8px 20px;
  1239. font-size: 12px;
  1240. color: #bebebe;
  1241. margin-bottom: 10px;
  1242. }
  1243. .body-table td a {
  1244. background: #2ec5d3;
  1245. border:1px solid transparent;
  1246. color: #fff;
  1247. padding: 8px 20px;
  1248. border-radius: 20px;
  1249. transition: all 0.3s;
  1250. }
  1251. .body-table td a:hover {
  1252. background: transparent;
  1253. border: 1px solid #2ec5d3;
  1254. color: #fff;
  1255. transition: all 0.3s;
  1256. }
  1257. .ver_producto {
  1258. background: #2ec5d3;
  1259. border: 1px solid transparent;
  1260. color: #fff;
  1261. padding: 8px 20px;
  1262. border-radius: 20px;
  1263. transition: all 0.3s;
  1264. }
  1265. .ver_producto:hover {
  1266. background: transparent;
  1267. border: 1px solid #2ec5d3;
  1268. color: #fff;
  1269. transition: all 0.3s;
  1270. }
  1271. .editar_producto {
  1272. background: #5893df!important;
  1273. border: 1px solid transparent;
  1274. color: #fff;
  1275. padding: 8px 20px;
  1276. border-radius: 20px;
  1277. transition: all 0.3s;
  1278. }
  1279. .editar_producto:hover {
  1280. background: transparent!important;
  1281. border: 1px solid #5893df!important;
  1282. color: #fff;
  1283. transition: all 0.3s;
  1284. }
  1285. .eliminar_producto {
  1286. background: #ec5e69!important;
  1287. border: 1px solid transparent;
  1288. color: #fff;
  1289. padding: 8px 20px;
  1290. border-radius: 20px;
  1291. transition: all 0.3s;
  1292. }
  1293. .eliminar_producto:hover {
  1294. background: transparent!important;
  1295. border: 1px solid #ec5e69!important;
  1296. color: #fff;
  1297. transition: all 0.3s;
  1298. }
  1299. .col-left {
  1300. width: 50%;
  1301. float: left;
  1302. }
  1303. .col-right {
  1304. width: 50%;
  1305. float: left;
  1306. }
  1307. .col-left p {
  1308. font-size: 14px;
  1309. }
  1310. .col-right p {
  1311. font-size: 14px;
  1312. }
  1313. .col-left select{
  1314. width: 99%;
  1315. }
  1316. .data_product textarea {
  1317. overflow: auto;
  1318. resize: none;
  1319. width: 100%;
  1320. font-size: 13px;
  1321. padding: 10px 20px;
  1322. border: 1px solid #2ec5d3;
  1323. border-radius: 4px;
  1324. margin-bottom: 20px;
  1325. }
  1326. .ver_lista_productos{
  1327. width: 100%;
  1328. float: left;
  1329. border-radius: 4px;
  1330. box-shadow: none;
  1331. border: 1px solid #2ec5d3;
  1332. padding: 8px 20px;
  1333. font-size: 12px;
  1334. color: #bebebe;
  1335. margin-bottom: 10px;
  1336. background: transparent;
  1337. }
  1338. .notification_body {
  1339. padding: 10px 0;
  1340. border-bottom: 1px solid #2e3f5b;
  1341. }
  1342. .notification_body span {
  1343. background: #ec5e69;
  1344. padding: 4px 10px;
  1345. border-radius: 30px;
  1346. color: #fff;
  1347. }
  1348. .panel_time_notification{
  1349. text-align: right;
  1350. }
  1351. .panel_time_notification a p:hover{
  1352. color: #ec5e69;
  1353. transition: all 0.3s;
  1354. }
  1355. .data_notification h1{
  1356. font-size: 16px;
  1357. font-weight: normal;
  1358. color: rgb(97, 97, 97);
  1359. }
  1360. .data_notification p{
  1361. font-size: 14px;
  1362. font-weight: normal;
  1363. color: rgb(97, 97, 97);
  1364. }
  1365. .body_drop_notification h1{
  1366. font-size: 16px;
  1367. font-weight: normal;
  1368. color: rgb(97, 97, 97);
  1369. }
  1370. .body_drop_notification p{
  1371. font-size: 14px;
  1372. font-weight: normal;
  1373. color: rgb(97, 97, 97);
  1374. }
  1375. .body_drop_notification span {
  1376. background: #ec5e69;
  1377. padding: 4px 10px;
  1378. border-radius: 30px;
  1379. color: #fff;
  1380. }
  1381. .body_drop_notification {
  1382. border-bottom: 1px solid #2e3f5b24;
  1383. height: 90px;
  1384. overflow: hidden;
  1385. }
  1386. .dropdown_noti {
  1387. height: 280px;
  1388. padding: 20px 4px;
  1389. overflow: hidden;
  1390. overflow-y: scroll;
  1391. }
  1392. .body_drop_message h1{
  1393. font-size: 16px;
  1394. font-weight: normal;
  1395. color: rgb(97, 97, 97);
  1396. }
  1397. .body_drop_message p{
  1398. font-size: 14px;
  1399. font-weight: normal;
  1400. color: rgb(97, 97, 97);
  1401. }
  1402. .body_drop_message {
  1403. height: 90px;
  1404. overflow: hidden;
  1405. border-bottom: 1px solid #2e3f5b24;
  1406. }
  1407. .dropdown_noti {
  1408. height: 280px;
  1409. padding: 20px 4px;
  1410. overflow: hidden;
  1411. overflow-y: scroll;
  1412. }
  1413. .nav-item.active a i {
  1414. color: #ec5e69;
  1415. }
  1416. .body_drop_message:after{
  1417. width: 100%;
  1418. }
  1419. .body_drop_message:before{
  1420. display: none;
  1421. }
  1422. .panel_mensajes a {
  1423. display: block;
  1424. height: 85px;
  1425. overflow: hidden;
  1426. transition: all 0.3s;
  1427. padding: 6px;
  1428. }
  1429. .panel_mensajes a:hover {
  1430. background: #1a223326;
  1431. transition: all 0.3s;
  1432. }
  1433. .contact_body {
  1434. height: 100%;
  1435. border-bottom: 1px solid #2e3f5b;
  1436. }
  1437. .panel_mensajes {
  1438. height: 710px;
  1439. overflow: hidden;
  1440. overflow-y: scroll;
  1441. }
  1442. .panel_mensajes::-webkit-scrollbar {
  1443. background: transparent;
  1444. }
  1445. .panel_mensajes::-webkit-scrollbar:vertical {
  1446. width: 1em;
  1447. }
  1448. .panel_mensajes::-webkit-scrollbar:horizontal {
  1449. height: 0;
  1450. }
  1451. .panel_mensajes::-webkit-scrollbar-thumb {
  1452. background-color: rgba(0, 0, 0, 0.3);
  1453. border-radius: 99999px;
  1454. border: .3125em solid transparent;
  1455. background-clip: content-box;
  1456. }
  1457. .panel_mensajes::-webkit-scrollbar {
  1458. background: transparent;
  1459. }
  1460. .panel_mensajes::-webkit-scrollbar:vertical {
  1461. width: 1em;
  1462. }
  1463. .panel_mensajes::-webkit-scrollbar:horizontal {
  1464. height: 0;
  1465. }
  1466. .panel_mensajes::-webkit-scrollbar-thumb {
  1467. background-color: rgba(0, 0, 0, 0.3);
  1468. border-radius: 99999px;
  1469. border: .3125em solid transparent;
  1470. background-clip: content-box;
  1471. }
  1472. .dropdown_noti::-webkit-scrollbar {
  1473. background: transparent;
  1474. }
  1475. .dropdown_noti::-webkit-scrollbar:vertical {
  1476. width: 1em;
  1477. }
  1478. .dropdown_noti::-webkit-scrollbar:horizontal {
  1479. height: 0;
  1480. }
  1481. .dropdown_noti::-webkit-scrollbar-thumb {
  1482. background-color: rgba(0, 0, 0, 0.3);
  1483. border-radius: 99999px;
  1484. border: .3125em solid transparent;
  1485. background-clip: content-box;
  1486. }
  1487. .dropdown_noti::-webkit-scrollbar {
  1488. background: transparent;
  1489. }
  1490. .dropdown_noti::-webkit-scrollbar:vertical {
  1491. width: 1em;
  1492. }
  1493. .dropdown_noti::-webkit-scrollbar:horizontal {
  1494. height: 0;
  1495. }
  1496. .dropdown_noti::-webkit-scrollbar-thumb {
  1497. background-color: rgba(0, 0, 0, 0.3);
  1498. border-radius: 99999px;
  1499. border: .3125em solid transparent;
  1500. background-clip: content-box;
  1501. }
  1502. .chatleft{
  1503. width: 100%;
  1504. float: left;
  1505. }
  1506. .chatright{
  1507. width: 100%;
  1508. float: left;
  1509. }
  1510. .panel_conversation {
  1511. height: 710px;
  1512. }
  1513. .conversation_body {
  1514. height: 480px;
  1515. overflow: hidden;
  1516. overflow-y: scroll;
  1517. }
  1518. .conversation_body::-webkit-scrollbar {
  1519. background: transparent;
  1520. }
  1521. .conversation_body::-webkit-scrollbar:vertical {
  1522. width: 1em;
  1523. }
  1524. .conversation_body::-webkit-scrollbar:horizontal {
  1525. height: 0;
  1526. }
  1527. .conversation_body::-webkit-scrollbar-thumb {
  1528. background-color: rgba(0, 0, 0, 0.3);
  1529. border-radius: 99999px;
  1530. border: .3125em solid transparent;
  1531. background-clip: content-box;
  1532. }
  1533. .conversation_body::-webkit-scrollbar {
  1534. background: transparent;
  1535. }
  1536. .conversation_body::-webkit-scrollbar:vertical {
  1537. width: 1em;
  1538. }
  1539. .conversation_body::-webkit-scrollbar:horizontal {
  1540. height: 0;
  1541. }
  1542. .conversation_body::-webkit-scrollbar-thumb {
  1543. background-color: rgba(0, 0, 0, 0.3);
  1544. border-radius: 99999px;
  1545. border: .3125em solid transparent;
  1546. background-clip: content-box;
  1547. }
  1548. .burbuja.left {
  1549. width: 50%;
  1550. background: #00000026;
  1551. padding: 20px;
  1552. border-radius: 50px;
  1553. float: left;
  1554. }
  1555. .burbuja p{
  1556. font-size: 11px;
  1557. color: #b9c3ce8c;
  1558. margin: 0;
  1559. }
  1560. .burbuja h1 {
  1561. font-size: 14px;
  1562. color: #b9c3ce;
  1563. }
  1564. .burbuja.right {
  1565. width: 50%;
  1566. background: #00000026;
  1567. padding: 20px;
  1568. border-radius: 50px;
  1569. float: right;
  1570. }
  1571. .box_message {
  1572. width: 100%;
  1573. padding: 10px 0;
  1574. }
  1575. .box_message textarea {
  1576. overflow: auto;
  1577. resize: none;
  1578. width: 100%;
  1579. border: 1px solid #2e3f5b;
  1580. background: transparent;
  1581. color: #fff;
  1582. font-size: 14px;
  1583. padding: 10px;
  1584. height: 130px;
  1585. }
  1586. .enviar_mensaje {
  1587. width: 100%;
  1588. float: left;
  1589. margin: 45px 0;
  1590. }
  1591. .enviar_mensaje .send_btn {
  1592. border: 1px solid #2ec5d3;
  1593. background: #2ec5d3;
  1594. border-radius: 20px;
  1595. color: #fff;
  1596. font-size: 12px;
  1597. width: 100%;
  1598. text-align: center;
  1599. }
  1600. .send_btn a {
  1601. display: block;
  1602. padding: 10px;
  1603. }
  1604. .enviar_mensaje .send_btn:hover {
  1605. border: 1px solid #2ec5d3;
  1606. background: transparent;
  1607. color: #fff;
  1608. transition: all 0.3s;
  1609. }
  1610. .panel_mensajes .active {
  1611. background: #1a223352;
  1612. transition: all 0.3s;
  1613. }
  1614. .panel .col-md-6 input {
  1615. width: 100%;
  1616. float: left;
  1617. border-radius: 4px;
  1618. box-shadow: none;
  1619. border: 1px solid #2ec5d3;
  1620. padding: 8px 20px;
  1621. font-size: 12px;
  1622. color: #bebebe;
  1623. margin-bottom: 10px;
  1624. background: transparent;
  1625. }
  1626. .inputs_config {
  1627. width: 100%;
  1628. float: left;
  1629. margin: 40px 0;
  1630. }
  1631. .inputs_config label {
  1632. width: 100%;
  1633. float: left;
  1634. color: #b4bcca;
  1635. }
  1636. .boton_guardar_info {
  1637. width: 150px;
  1638. float: right;
  1639. text-align: center;
  1640. }
  1641. #elementos:hover i {
  1642. color: #fff;
  1643. transition: all 0.3s;
  1644. }
  1645. .dropdown-toggle:hover::after {
  1646. transition: all 0.3s;
  1647. color: #ffffff;
  1648. }
  1649. li.cabecera_li {
  1650. color: #cbcbcb;
  1651. padding: 12px 30px 10px;
  1652. font-size: 12px;
  1653. font-weight: bold;
  1654. }
  1655. .content-section .main .panel .col-md-6 i {
  1656. font-size: 35px;
  1657. color: #fd4b4b;
  1658. width: 50%;
  1659. float: left;
  1660. text-align: center;
  1661. position: relative;
  1662. top: 8px;
  1663. }
  1664. .panel .content_info p {
  1665. font-size: 34px;
  1666. color: #25344f;
  1667. margin: 0;
  1668. text-align: right;
  1669. width: 50%;
  1670. float: left;
  1671. position: relative;
  1672. top: 0px;
  1673. }
  1674. .content-section .main h1 {
  1675. font-size: 27px;
  1676. padding: 0 15px;
  1677. color: #949494;
  1678. }
  1679. .main .panel a {
  1680. width: 100%;
  1681. height: 100%;
  1682. display: block;
  1683. transition: all 0.3s;
  1684. }
  1685. .main .panel a:hover {
  1686. transition: all 0.3s;
  1687. -webkit-box-shadow: 0px 0px 28px -5px rgba(10,10,10,0.24);
  1688. -moz-box-shadow: 0px 0px 28px -5px rgba(10,10,10,0.24);
  1689. box-shadow: 0px 0px 28px -5px rgba(10,10,10,0.24);
  1690. }
  1691. .body_tabs {
  1692. padding: 45px 20px;
  1693. }
  1694. .header_historial {
  1695. background: #d7d7d7;
  1696. padding: 10px;
  1697. border: 1px solid #dcdcdc;
  1698. }
  1699. .header_historial i{
  1700. color: #fff;
  1701. float: left;
  1702. margin-right: 20px;
  1703. }
  1704. .header_historial p{
  1705. margin: 0!important;
  1706. padding: 0;
  1707. line-height: 1;
  1708. color: #fff;
  1709. letter-spacing: 5px;
  1710. }
  1711. .content_historial {
  1712. background: #fff;
  1713. border: 1px solid #dcdcdc;
  1714. padding: 20px;
  1715. }
  1716. .content_historial p {
  1717. padding: 0;
  1718. margin: 0 0 20px 0;
  1719. line-height: 1;
  1720. font-size: 14px;
  1721. color: #25344f;
  1722. }
  1723. .cabeceras {
  1724. background: #f1f1f1;
  1725. padding: 10px;
  1726. }
  1727. .col20 {
  1728. width: 20%;
  1729. float: left;
  1730. -ms-flex: 0 0 20%;
  1731. flex: 0 0 20%;
  1732. max-width: 20%;
  1733. }
  1734. .col25{
  1735. width: 25%;
  1736. float: left;
  1737. -ms-flex: 0 0 25%;
  1738. flex: 0 0 25%;
  1739. max-width: 25%;
  1740. }
  1741. .cabeceras .col20 p{
  1742. padding: 0;
  1743. margin: 0;
  1744. line-height: 1;
  1745. font-size: 14px;
  1746. color: #25344f;
  1747. }
  1748. .data_candidato p{
  1749. padding: 0;
  1750. margin: 0;
  1751. line-height: 1;
  1752. font-size: 14px;
  1753. color: #25344f;
  1754. }
  1755. .data_candidato {
  1756. padding: 10px;
  1757. border-bottom: 1px solid #f1f1f1;
  1758. }
  1759. .data_candidato a:hover {
  1760. color: #fd4b4b;
  1761. transition: all 0.3s;
  1762. }
  1763. .cabecera_recently {
  1764. background: #eceff1;
  1765. padding: 10px;
  1766. border: 1px solid #dcdcdc;
  1767. }
  1768. .cabecera_recently i {
  1769. color: #607d8b;
  1770. float: left;
  1771. margin-right: 20px;
  1772. }
  1773. .cabecera_recently p{
  1774. margin: 0!important;
  1775. padding: 0;
  1776. line-height: 1;
  1777. color: #607d8b;
  1778. letter-spacing: 5px;
  1779. }
  1780. .cabeceras_actividad{
  1781. background: #f1f1f1;
  1782. padding: 10px;
  1783. }
  1784. .cabeceras_actividad p{
  1785. padding: 0;
  1786. margin: 0;
  1787. line-height: 1;
  1788. font-size: 14px;
  1789. color: #25344f;
  1790. }
  1791. .body_history {
  1792. padding: 10px;
  1793. border-bottom: 1px solid #f1f1f1;
  1794. }
  1795. .footer_history {
  1796. text-align: right;
  1797. }
  1798. .footer_history a{
  1799. font-size: 14px;
  1800. color: #fd4b4b;
  1801. transition: all 0.3s;
  1802. }
  1803. .footer_history a:hover{
  1804. color: #981111;
  1805. transition: all 0.3s;
  1806. }
  1807. .filtros_history .col-md-4 {
  1808. padding-left: 0!important;
  1809. }
  1810. .filtros_history .col-md-4 input {
  1811. width: 100%;
  1812. border: 1px solid #eceff1;
  1813. font-size: 14px;
  1814. padding: 1px 10px;
  1815. }
  1816. .filtros_history .col-md-4 label {
  1817. font-size: 14px;
  1818. color: #25344f;
  1819. }
  1820. .filtros_history .col-md-4 select{
  1821. font-size: 14px;
  1822. color: #798082;
  1823. border: 1px solid #eceff1;
  1824. padding: 1px 10px;
  1825. width: 100%;
  1826. }
  1827. .filtros_history {
  1828. margin-bottom: 30px;
  1829. }
  1830. input#custom-input-date {
  1831. color: #212529;
  1832. font-size: 14px;
  1833. font-weight: 500;
  1834. }
  1835. .label-error {
  1836. height: 13px;
  1837. margin-top: 4px;
  1838. font-size: 10px;
  1839. color: #DC3545;
  1840. }
  1841. input#custom-input-date:focus {
  1842. border: 1px solid #007BFF;
  1843. }
  1844. input#custom-input-date,
  1845. label {
  1846. display: block;
  1847. outline: none;
  1848. }
  1849. .buscar_filtros_history {
  1850. border: 1px solid #fd4b4b;
  1851. color: #fff;
  1852. background: #fd4b4b;
  1853. padding: 2px;
  1854. width: 100%;
  1855. font-size: 14px;
  1856. position: relative;
  1857. top: 27px;
  1858. cursor: pointer;
  1859. transition: all 0.3s;
  1860. }
  1861. .buscar_filtros_history:hover {
  1862. border: 1px solid #fd4b4b;
  1863. color: #fd4b4b;
  1864. background: #fff;
  1865. transition: all 0.3s;
  1866. }
  1867. .footerinfo a {
  1868. font-size: 14px;
  1869. color: #ababab;
  1870. margin-right: 10px;
  1871. float: left;
  1872. transition: all 0.3s;
  1873. }
  1874. .footerinfo a:hover {
  1875. color: #fd4b4b;
  1876. transition: all 0.3s;
  1877. }
  1878. .active .dropdown-toggle::after {
  1879. display: block;
  1880. position: absolute;
  1881. top: 50%;
  1882. right: 20px;
  1883. transform: translateY(-50%);
  1884. color: #ffffff;
  1885. }
  1886. .footerinfo {
  1887. padding: 0;
  1888. width: 90%;
  1889. bottom: 0;
  1890. margin: 0;
  1891. }
  1892. .tabs_pruebas .test_tab.active {
  1893. background: #fd4b4b;
  1894. padding: 10px;
  1895. text-align: center;
  1896. cursor: pointer;
  1897. transition: all 0.3s;
  1898. }
  1899. .tabs_pruebas .test_tab.active p{
  1900. margin: 0;
  1901. letter-spacing: 9px;
  1902. color: #fff;
  1903. }
  1904. .tabs_pruebas .test_tab.active:hover {
  1905. background: #f81919;
  1906. transition: all 0.3s;
  1907. }
  1908. .tabs_pruebas .test_tab {
  1909. background: #d0d0d0;
  1910. padding: 10px;
  1911. text-align: center;
  1912. cursor: pointer;
  1913. transition: all 0.3s;
  1914. }
  1915. .tabs_pruebas .test_tab p{
  1916. margin: 0!important;
  1917. letter-spacing: 9px;
  1918. color: #fff!important;
  1919. }
  1920. .tabs_pruebas .test_tab:hover {
  1921. background: #f81919;
  1922. transition: all 0.3s;
  1923. }
  1924. .tabs_pruebas {
  1925. margin-bottom: 40px;
  1926. }
  1927. .todas_las_pruebas_body{
  1928. display: block;
  1929. margin-bottom: 80px;
  1930. }
  1931. .comportamiento_body {
  1932. display: none;
  1933. margin-bottom: 80px;
  1934. }
  1935. .personalidad_body {
  1936. display: none;
  1937. margin-bottom: 80px;
  1938. }
  1939. .inteligencia_body {
  1940. display: none;
  1941. margin-bottom: 80px;
  1942. }
  1943. .modern-Checkbox [type="checkbox"] {
  1944. display: none;
  1945. }
  1946. .modern-Checkbox [type="checkbox"]:not(:checked) + label, .modern-Checkbox [type="checkbox"] :not(:checked) + label:hover {
  1947. background-color: white;
  1948. color: #363636;
  1949. border: 1px solid #d8d8d8;
  1950. width: 100%;
  1951. border-radius: 0;
  1952. font-size: 14px;
  1953. font-family: 'gudea';
  1954. padding: 35px;
  1955. letter-spacing: 6px;
  1956. }
  1957. .modern-Checkbox [type="checkbox"]:checked + label:before {
  1958. transform: rotate(45deg);
  1959. color: #fff;
  1960. }
  1961. .modern-Checkbox label {
  1962. color: #fff;
  1963. background-color: #fd4b4b78;
  1964. border-color: #fd4b4b;
  1965. cursor: pointer;
  1966. display: inline-block;
  1967. font-weight: 500;
  1968. text-align: center;
  1969. white-space: nowrap;
  1970. vertical-align: middle;
  1971. user-select: none;
  1972. border: 1px solid transparent;
  1973. padding: 35px;
  1974. font-size: 14px;
  1975. border-radius: 0;
  1976. transition: all 144ms ease-in-out;
  1977. width: 100%;
  1978. letter-spacing: 6px;
  1979. }
  1980. .modern-Checkbox label:hover {
  1981. transform: scale(0.985);
  1982. }
  1983. .modern-Checkbox label:before {
  1984. float: left;
  1985. margin-top: -0.75rem;
  1986. margin-bottom: -1rem;
  1987. margin-right: 0.4rem;
  1988. margin-left: -0.2rem;
  1989. font-weight: 100;
  1990. font-size: 2rem;
  1991. transition: transform 200ms ease-in-out;
  1992. content: "+";
  1993. position: relative;
  1994. top: -2px;
  1995. color: #fd4b4b;
  1996. }
  1997. .content-section .main p {
  1998. color: #878787;
  1999. padding: 0 15px;
  2000. margin-bottom: 40px;
  2001. }
  2002. .datos_candidato {
  2003. margin-bottom: 40px;
  2004. }
  2005. .botones_preguntas label {
  2006. font-size: 14px;
  2007. color: #878787;
  2008. padding-left: 15px;
  2009. }
  2010. .datos_candidato select {
  2011. border: 1px solid #d0d0d0;
  2012. width: 100%;
  2013. padding: 10px;
  2014. color: #878787;
  2015. cursor: pointer;
  2016. }
  2017. .datos_candidato input {
  2018. border: 1px solid #d0d0d0;
  2019. width: 100%;
  2020. padding: 9px;
  2021. color: #878787;
  2022. }
  2023. .botones_interactivos_asignar {
  2024. text-align: right;
  2025. margin-bottom: 50px;
  2026. }
  2027. .botones_interactivos_asignar a{
  2028. font-size: 14px;
  2029. color: #fd4b4b;
  2030. transition: all 0.3s;
  2031. }
  2032. .botones_interactivos_asignar a:hover {
  2033. color: #981111;
  2034. transition: all 0.3s;
  2035. }
  2036. .botones_interactivos_asignar button {
  2037. border: 1px solid #fd4b4b;
  2038. color: #fff;
  2039. background: #fd4b4b;
  2040. padding: 10px 55px;
  2041. font-size: 14px;
  2042. position: relative;
  2043. cursor: pointer;
  2044. transition: all 0.3s;
  2045. }
  2046. .botones_interactivos_asignar button:hover {
  2047. border: 1px solid #fd4b4b;
  2048. color: #fd4b4b;
  2049. background: transparent;
  2050. transition: all 0.3s;
  2051. }
  2052. .body_prueba_list .modern-Checkbox label {
  2053. color: #363636;
  2054. background-color: #ffffff;
  2055. border-color: #fd4b4b;
  2056. cursor: pointer;
  2057. display: inline-block;
  2058. font-weight: 500;
  2059. text-align: center;
  2060. white-space: nowrap;
  2061. vertical-align: middle;
  2062. user-select: none;
  2063. border: 1px solid transparent;
  2064. padding: 35px;
  2065. font-size: 14px;
  2066. border-radius: 0;
  2067. transition: all 144ms ease-in-out;
  2068. width: 100%;
  2069. letter-spacing: 6px;
  2070. }
  2071. .body_prueba_list .modern-Checkbox label:before{
  2072. display: none;
  2073. }
  2074. .content-section .main_pruebas_list h1 {
  2075. font-size: 27px;
  2076. padding: 0px 15px 25px;
  2077. color: #949494;
  2078. }
  2079. .crear_nueva_prueba {
  2080. padding: 0px 0px 25px;
  2081. text-align: right;
  2082. }
  2083. .btn_crear_prueba {
  2084. border: 1px solid #fd4b4b;
  2085. color: #fff;
  2086. background: #fd4b4b;
  2087. padding: 10px 55px;
  2088. font-size: 14px;
  2089. position: relative;
  2090. cursor: pointer;
  2091. transition: all 0.3s;
  2092. }
  2093. .btn_crear_prueba:focus {
  2094. color: #fff;
  2095. transition: all 0.3s;
  2096. }
  2097. .btn_crear_prueba:hover {
  2098. border: 1px solid #fd4b4b;
  2099. color: #fd4b4b;
  2100. background: transparent;
  2101. transition: all 0.3s;
  2102. }
  2103. .btn_agregar_pregunta {
  2104. border: 1px solid #fd4b4b;
  2105. color: #fff;
  2106. background: #fd4b4b;
  2107. padding: 10px 55px;
  2108. font-size: 14px;
  2109. position: relative;
  2110. cursor: pointer;
  2111. transition: all 0.3s;
  2112. }
  2113. .btn_agregar_pregunta:focus {
  2114. color: #fff;
  2115. transition: all 0.3s;
  2116. }
  2117. .btn_agregar_pregunta:hover {
  2118. border: 1px solid #fd4b4b;
  2119. color: #fd4b4b;
  2120. background: transparent;
  2121. transition: all 0.3s;
  2122. }
  2123. .body_prueba_nueva {
  2124. padding: 40px 50px;
  2125. background: #fff;
  2126. margin-bottom: 40px;
  2127. margin: 0 15px 40px 15px;
  2128. }
  2129. .body_prueba_nueva .contenedor_pruebas h1 {
  2130. font-size: 18px;
  2131. padding: 0;
  2132. color: #949494;
  2133. margin: 0;
  2134. }
  2135. .titulo_pregunta {
  2136. padding: 10px 0;
  2137. }
  2138. .body_prueba_nueva .contenedor_pruebas .numero_pregunta p {
  2139. color: #fd4b4b;
  2140. padding: 0 15px;
  2141. margin-bottom: 0;
  2142. font-weight: bold;
  2143. }
  2144. .body_prueba_nueva .contenedor_pruebas .titulo_pregunta span {
  2145. color: #878787;
  2146. padding: 0 15px 0 0;
  2147. margin-bottom: 0;
  2148. }
  2149. .respuesta_pregunta {
  2150. padding: 10px 0px;
  2151. }
  2152. .respuesta_pregunta input {
  2153. width: 100%;
  2154. padding: 5px;
  2155. border: 1px solid #d0d0d0;
  2156. transition: all 0.3s;
  2157. }
  2158. .respuesta_pregunta input:focus {
  2159. border: 1px solid #fd4b4b;
  2160. transition: all 0.3s;
  2161. }
  2162. .body_preg_indi {
  2163. margin-bottom: 20px;
  2164. }
  2165. .respuesta_pregunta .radio input[type=radio] {
  2166. display: none;
  2167. }
  2168. .radio label {
  2169. display: inline-block;
  2170. cursor: pointer;
  2171. position: relative;
  2172. padding-left: 25px;
  2173. margin-right: 15px;
  2174. font-size: 14px;
  2175. }
  2176. .radio label:before {
  2177. content: "";
  2178. display: inline-block;
  2179. width: 19px;
  2180. height: 19px;
  2181. background-color: #fff;
  2182. margin-right: 10px;
  2183. position: absolute;
  2184. left: 0;
  2185. bottom: 1px;
  2186. border: 1px solid #d0d0d0;
  2187. }
  2188. .radio label:before {
  2189. border-radius: 9px;
  2190. }
  2191. .radio input[type=radio]:checked + label:before {
  2192. content: "\2022";
  2193. position: absolute;
  2194. color: #fd4b4b;
  2195. font-size: 29px;
  2196. border: 3px solid #fd4b4b;
  2197. border-radius: 50%;
  2198. padding: 0px;
  2199. line-height: 8px;
  2200. width: 19px;
  2201. height: 19px;
  2202. box-sizing: border-box;
  2203. box-shadow: none;
  2204. }
  2205. input.input_pregunta {
  2206. border-bottom: 1px solid #d0d0d0;
  2207. box-shadow: none;
  2208. border-top: 0;
  2209. border-left: 0;
  2210. border-right: 0;
  2211. width: 100%;
  2212. transition: all 0.3s;
  2213. }
  2214. input.input_pregunta:focus {
  2215. border-bottom: 1px solid #fd4b4b;
  2216. transition: all 0.3s;
  2217. }
  2218. .historial_candidatos {
  2219. margin-bottom: 30px;
  2220. }
  2221. .radio form {
  2222. margin: 0;
  2223. }
  2224. .button_subir_foto_pregunta input[type="file"] {
  2225. display: none;
  2226. }
  2227. .button_subir_foto_pregunta label{
  2228. background: #fd4b4b;
  2229. border: none;
  2230. border-radius: 0;
  2231. font-size: 14px;
  2232. transition: all 0.3s;
  2233. }
  2234. .button_subir_foto_pregunta label:hover{
  2235. background: #ff1a1a;
  2236. transition: all 0.3s;
  2237. }
  2238. .img_relaciones {
  2239. margin: 30px 0;
  2240. width: 11%;
  2241. margin-right: 40px;
  2242. transition: all 0.3s;
  2243. }
  2244. .img_relaciones img {
  2245. width: 100%;
  2246. }
  2247. .button_subir_foto_pregunta {
  2248. margin: 20px 0;
  2249. }
  2250. .input_hidden {
  2251. position: absolute;
  2252. left: -9999px;
  2253. }
  2254. .selected {
  2255. background-color: #fd4b4b;
  2256. }
  2257. #sites label {
  2258. display: inline-block;
  2259. cursor: pointer;
  2260. width: 90px;
  2261. height: 90px;
  2262. }
  2263. #sites label:hover {
  2264. border: 1px solid #fd4b4b;
  2265. }
  2266. #sites label img {
  2267. padding: 3px;
  2268. width: 100%;
  2269. }
  2270. .form-group-guardar-prueba input {
  2271. background: #fd4b4b;
  2272. font-size: 14px;
  2273. border-radius: 0;
  2274. border: none;
  2275. transition: all 0.3s;
  2276. }
  2277. .form-group-guardar-prueba input:hover {
  2278. background: #ff1a1a;
  2279. transition: all 0.3s;
  2280. }
  2281. .form-group-guardar-prueba {
  2282. text-align: right;
  2283. }
  2284. .header_mobile {
  2285. display: none;
  2286. }
  2287. .dl-menuwrapper {
  2288. width: 100%;
  2289. max-width: 100%;
  2290. float: left;
  2291. position: relative;
  2292. -webkit-perspective: 1000px;
  2293. -moz-perspective: 1000px;
  2294. perspective: 1000px;
  2295. z-index: 9;
  2296. -webkit-perspective-origin: 50% 200%;
  2297. -moz-perspective-origin: 50% 200%;
  2298. perspective-origin: 50% 200%;
  2299. }
  2300. .dl-menuwrapper:first-child {
  2301. margin-right: 0px;
  2302. }
  2303. .dl-menuwrapper button {
  2304. background: #fd4b4b;
  2305. border: none;
  2306. width: 50px;
  2307. height: 45px;
  2308. color: #fff;
  2309. text-indent: 0;
  2310. padding: 11px;
  2311. position: relative;
  2312. cursor: pointer;
  2313. outline: none;
  2314. }
  2315. .dl-menuwrapper button:hover, .dl-menuwrapper button.dl-active, .dl-menuwrapper ul {
  2316. background: #fff;
  2317. transition: all 0.3s;
  2318. }
  2319. /*.dl-menuwrapper button:after {
  2320. content: '';
  2321. position: absolute;
  2322. width: 68%;
  2323. height: 5px;
  2324. background: #fff;
  2325. top: 10px;
  2326. left: 16%;
  2327. box-shadow:
  2328. 0 10px 0 #fff,
  2329. 0 20px 0 #fff;
  2330. }
  2331. */
  2332. .dl-menuwrapper ul {
  2333. padding: 0;
  2334. list-style: none;
  2335. -webkit-transform-style: preserve-3d;
  2336. -moz-transform-style: preserve-3d;
  2337. transform-style: preserve-3d;
  2338. }
  2339. .dl-menuwrapper li {
  2340. position: relative;
  2341. }
  2342. .dl-menuwrapper li a {
  2343. display: block;
  2344. position: relative;
  2345. padding: 15px 20px;
  2346. font-size: 14px;
  2347. line-height: 20px;
  2348. font-weight: 300;
  2349. color: #fff;
  2350. outline: none;
  2351. font-family: 'montserrat';
  2352. }
  2353. .no-touch .dl-menuwrapper li a:hover {
  2354. background: rgba(253, 75, 75, 0.1);
  2355. }
  2356. .dl-menuwrapper li.dl-back > a {
  2357. padding-left: 30px;
  2358. background: rgba(0,0,0,0.1);
  2359. }
  2360. .dl-menuwrapper li.dl-back:after,
  2361. .dl-menuwrapper li > a:not(:only-child):after {
  2362. position: absolute;
  2363. top: 0;
  2364. line-height: 50px;
  2365. font-family: 'gotham';
  2366. speak: none;
  2367. -webkit-font-smoothing: antialiased;
  2368. }
  2369. .dl-menuwrapper li.dl-back:after {
  2370. left: 10px;
  2371. color: rgba(212,204,198,0.3);
  2372. -webkit-transform: rotate(180deg);
  2373. -moz-transform: rotate(180deg);
  2374. transform: rotate(180deg);
  2375. }
  2376. .dl-menuwrapper li > a:after {
  2377. right: 10px;
  2378. color: rgba(0,0,0,0.15);
  2379. }
  2380. .dl-menuwrapper .dl-menu {
  2381. margin: 5px 0 0 0;
  2382. position: absolute;
  2383. width: 100%;
  2384. opacity: 0;
  2385. pointer-events: none;
  2386. -webkit-transform: translateY(10px);
  2387. -moz-transform: translateY(10px);
  2388. transform: translateY(10px);
  2389. -webkit-backface-visibility: hidden;
  2390. -moz-backface-visibility: hidden;
  2391. backface-visibility: hidden;
  2392. }
  2393. .dl-menuwrapper .dl-menu.dl-menu-toggle {
  2394. -webkit-transition: all 0.3s ease;
  2395. -moz-transition: all 0.3s ease;
  2396. transition: all 0.3s ease;
  2397. }
  2398. .dl-menuwrapper .dl-menu.dl-menuopen {
  2399. opacity: 1;
  2400. pointer-events: auto;
  2401. -webkit-transform: translateY(0px);
  2402. -moz-transform: translateY(0px);
  2403. transform: translateY(0px);
  2404. }
  2405. /* Hide the inner submenus */
  2406. .dl-menuwrapper li .dl-submenu {
  2407. display: none;
  2408. }
  2409. i.fa.fa-angle-right {
  2410. position: relative;
  2411. left: 30px;
  2412. }
  2413. i.fa.fa-angle-left {
  2414. position: relative;
  2415. padding-right: 20px;
  2416. }
  2417. /*
  2418. When a submenu is openend, we will hide all li siblings.
  2419. For that we give a class to the parent menu called "dl-subview".
  2420. We also hide the submenu link.
  2421. The opened submenu will get the class "dl-subviewopen".
  2422. All this is done for any sub-level being entered.
  2423. */
  2424. .dl-menu.dl-subview li,
  2425. .dl-menu.dl-subview li.dl-subviewopen > a,
  2426. .dl-menu.dl-subview li.dl-subview > a {
  2427. display: none;
  2428. }
  2429. .dl-menu.dl-subview li.dl-subview,
  2430. .dl-menu.dl-subview li.dl-subview .dl-submenu,
  2431. .dl-menu.dl-subview li.dl-subviewopen,
  2432. .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
  2433. .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
  2434. display: block;
  2435. }
  2436. /* Dynamically added submenu outside of the menu context */
  2437. .dl-menuwrapper > .dl-submenu {
  2438. position: absolute;
  2439. width: 100%;
  2440. top: 50px;
  2441. left: 0;
  2442. margin: 0;
  2443. }
  2444. /* Animation classes for moving out and in */
  2445. .dl-menu.dl-animate-out-1 {
  2446. -webkit-animation: MenuAnimOut1 0.4s;
  2447. -moz-animation: MenuAnimOut1 0.4s;
  2448. animation: MenuAnimOut1 0.4s;
  2449. }
  2450. .dl-menu.dl-animate-out-2 {
  2451. -webkit-animation: MenuAnimOut2 0.3s ease-in-out;
  2452. -moz-animation: MenuAnimOut2 0.3s ease-in-out;
  2453. animation: MenuAnimOut2 0.3s ease-in-out;
  2454. }
  2455. .dl-menu.dl-animate-out-3 {
  2456. -webkit-animation: MenuAnimOut3 0.4s ease;
  2457. -moz-animation: MenuAnimOut3 0.4s ease;
  2458. animation: MenuAnimOut3 0.4s ease;
  2459. }
  2460. .dl-menu.dl-animate-out-4 {
  2461. -webkit-animation: MenuAnimOut4 0.4s ease;
  2462. -moz-animation: MenuAnimOut4 0.4s ease;
  2463. animation: MenuAnimOut4 0.4s ease;
  2464. }
  2465. .dl-menu.dl-animate-out-5 {
  2466. -webkit-animation: MenuAnimOut5 0.4s ease;
  2467. -moz-animation: MenuAnimOut5 0.4s ease;
  2468. animation: MenuAnimOut5 0.4s ease;
  2469. }
  2470. @-webkit-keyframes MenuAnimOut1 {
  2471. 50% {
  2472. -webkit-transform: translateZ(-250px) rotateY(30deg);
  2473. }
  2474. 75% {
  2475. -webkit-transform: translateZ(-372.5px) rotateY(15deg);
  2476. opacity: .5;
  2477. }
  2478. 100% {
  2479. -webkit-transform: translateZ(-500px) rotateY(0deg);
  2480. opacity: 0;
  2481. }
  2482. }
  2483. @-webkit-keyframes MenuAnimOut2 {
  2484. 100% {
  2485. -webkit-transform: translateX(-100%);
  2486. opacity: 0;
  2487. }
  2488. }
  2489. @-webkit-keyframes MenuAnimOut3 {
  2490. 100% {
  2491. -webkit-transform: translateZ(300px);
  2492. opacity: 0;
  2493. }
  2494. }
  2495. @-webkit-keyframes MenuAnimOut4 {
  2496. 100% {
  2497. -webkit-transform: translateZ(-300px);
  2498. opacity: 0;
  2499. }
  2500. }
  2501. @-webkit-keyframes MenuAnimOut5 {
  2502. 100% {
  2503. -webkit-transform: translateY(40%);
  2504. opacity: 0;
  2505. }
  2506. }
  2507. @-moz-keyframes MenuAnimOut1 {
  2508. 50% {
  2509. -moz-transform: translateZ(-250px) rotateY(30deg);
  2510. }
  2511. 75% {
  2512. -moz-transform: translateZ(-372.5px) rotateY(15deg);
  2513. opacity: .5;
  2514. }
  2515. 100% {
  2516. -moz-transform: translateZ(-500px) rotateY(0deg);
  2517. opacity: 0;
  2518. }
  2519. }
  2520. @-moz-keyframes MenuAnimOut2 {
  2521. 100% {
  2522. -moz-transform: translateX(-100%);
  2523. opacity: 0;
  2524. }
  2525. }
  2526. @-moz-keyframes MenuAnimOut3 {
  2527. 100% {
  2528. -moz-transform: translateZ(300px);
  2529. opacity: 0;
  2530. }
  2531. }
  2532. @-moz-keyframes MenuAnimOut4 {
  2533. 100% {
  2534. -moz-transform: translateZ(-300px);
  2535. opacity: 0;
  2536. }
  2537. }
  2538. @-moz-keyframes MenuAnimOut5 {
  2539. 100% {
  2540. -moz-transform: translateY(40%);
  2541. opacity: 0;
  2542. }
  2543. }
  2544. @keyframes MenuAnimOut1 {
  2545. 50% {
  2546. transform: translateZ(-250px) rotateY(30deg);
  2547. }
  2548. 75% {
  2549. transform: translateZ(-372.5px) rotateY(15deg);
  2550. opacity: .5;
  2551. }
  2552. 100% {
  2553. transform: translateZ(-500px) rotateY(0deg);
  2554. opacity: 0;
  2555. }
  2556. }
  2557. @keyframes MenuAnimOut2 {
  2558. 100% {
  2559. transform: translateX(-100%);
  2560. opacity: 0;
  2561. }
  2562. }
  2563. @keyframes MenuAnimOut3 {
  2564. 100% {
  2565. transform: translateZ(300px);
  2566. opacity: 0;
  2567. }
  2568. }
  2569. @keyframes MenuAnimOut4 {
  2570. 100% {
  2571. transform: translateZ(-300px);
  2572. opacity: 0;
  2573. }
  2574. }
  2575. @keyframes MenuAnimOut5 {
  2576. 100% {
  2577. transform: translateY(40%);
  2578. opacity: 0;
  2579. }
  2580. }
  2581. .dl-menu.dl-animate-in-1 {
  2582. -webkit-animation: MenuAnimIn1 0.3s;
  2583. -moz-animation: MenuAnimIn1 0.3s;
  2584. animation: MenuAnimIn1 0.3s;
  2585. }
  2586. .dl-menu.dl-animate-in-2 {
  2587. -webkit-animation: MenuAnimIn2 0.3s ease-in-out;
  2588. -moz-animation: MenuAnimIn2 0.3s ease-in-out;
  2589. animation: MenuAnimIn2 0.3s ease-in-out;
  2590. }
  2591. .dl-menu.dl-animate-in-3 {
  2592. -webkit-animation: MenuAnimIn3 0.4s ease;
  2593. -moz-animation: MenuAnimIn3 0.4s ease;
  2594. animation: MenuAnimIn3 0.4s ease;
  2595. }
  2596. .dl-menu.dl-animate-in-4 {
  2597. -webkit-animation: MenuAnimIn4 0.4s ease;
  2598. -moz-animation: MenuAnimIn4 0.4s ease;
  2599. animation: MenuAnimIn4 0.4s ease;
  2600. }
  2601. .dl-menu.dl-animate-in-5 {
  2602. -webkit-animation: MenuAnimIn5 0.4s ease;
  2603. -moz-animation: MenuAnimIn5 0.4s ease;
  2604. animation: MenuAnimIn5 0.4s ease;
  2605. }
  2606. @-webkit-keyframes MenuAnimIn1 {
  2607. 0% {
  2608. -webkit-transform: translateZ(-500px) rotateY(0deg);
  2609. opacity: 0;
  2610. }
  2611. 20% {
  2612. -webkit-transform: translateZ(-250px) rotateY(30deg);
  2613. opacity: 0.5;
  2614. }
  2615. 100% {
  2616. -webkit-transform: translateZ(0px) rotateY(0deg);
  2617. opacity: 1;
  2618. }
  2619. }
  2620. @-webkit-keyframes MenuAnimIn2 {
  2621. 0% {
  2622. -webkit-transform: translateX(-100%);
  2623. opacity: 0;
  2624. }
  2625. 100% {
  2626. -webkit-transform: translateX(0px);
  2627. opacity: 1;
  2628. }
  2629. }
  2630. @-webkit-keyframes MenuAnimIn3 {
  2631. 0% {
  2632. -webkit-transform: translateZ(300px);
  2633. opacity: 0;
  2634. }
  2635. 100% {
  2636. -webkit-transform: translateZ(0px);
  2637. opacity: 1;
  2638. }
  2639. }
  2640. @-webkit-keyframes MenuAnimIn4 {
  2641. 0% {
  2642. -webkit-transform: translateZ(-300px);
  2643. opacity: 0;
  2644. }
  2645. 100% {
  2646. -webkit-transform: translateZ(0px);
  2647. opacity: 1;
  2648. }
  2649. }
  2650. @-webkit-keyframes MenuAnimIn5 {
  2651. 0% {
  2652. -webkit-transform: translateY(40%);
  2653. opacity: 0;
  2654. }
  2655. 100% {
  2656. -webkit-transform: translateY(0);
  2657. opacity: 1;
  2658. }
  2659. }
  2660. @-moz-keyframes MenuAnimIn1 {
  2661. 0% {
  2662. -moz-transform: translateZ(-500px) rotateY(0deg);
  2663. opacity: 0;
  2664. }
  2665. 20% {
  2666. -moz-transform: translateZ(-250px) rotateY(30deg);
  2667. opacity: 0.5;
  2668. }
  2669. 100% {
  2670. -moz-transform: translateZ(0px) rotateY(0deg);
  2671. opacity: 1;
  2672. }
  2673. }
  2674. @-moz-keyframes MenuAnimIn2 {
  2675. 0% {
  2676. -moz-transform: translateX(-100%);
  2677. opacity: 0;
  2678. }
  2679. 100% {
  2680. -moz-transform: translateX(0px);
  2681. opacity: 1;
  2682. }
  2683. }
  2684. @-moz-keyframes MenuAnimIn3 {
  2685. 0% {
  2686. -moz-transform: translateZ(300px);
  2687. opacity: 0;
  2688. }
  2689. 100% {
  2690. -moz-transform: translateZ(0px);
  2691. opacity: 1;
  2692. }
  2693. }
  2694. @-moz-keyframes MenuAnimIn4 {
  2695. 0% {
  2696. -moz-transform: translateZ(-300px);
  2697. opacity: 0;
  2698. }
  2699. 100% {
  2700. -moz-transform: translateZ(0px);
  2701. opacity: 1;
  2702. }
  2703. }
  2704. @-moz-keyframes MenuAnimIn5 {
  2705. 0% {
  2706. -moz-transform: translateY(40%);
  2707. opacity: 0;
  2708. }
  2709. 100% {
  2710. -moz-transform: translateY(0);
  2711. opacity: 1;
  2712. }
  2713. }
  2714. @keyframes MenuAnimIn1 {
  2715. 0% {
  2716. transform: translateZ(-500px) rotateY(0deg);
  2717. opacity: 0;
  2718. }
  2719. 20% {
  2720. transform: translateZ(-250px) rotateY(30deg);
  2721. opacity: 0.5;
  2722. }
  2723. 100% {
  2724. transform: translateZ(0px) rotateY(0deg);
  2725. opacity: 1;
  2726. }
  2727. }
  2728. @keyframes MenuAnimIn2 {
  2729. 0% {
  2730. transform: translateX(-100%);
  2731. opacity: 0;
  2732. }
  2733. 100% {
  2734. transform: translateX(0px);
  2735. opacity: 1;
  2736. }
  2737. }
  2738. @keyframes MenuAnimIn3 {
  2739. 0% {
  2740. transform: translateZ(300px);
  2741. opacity: 0;
  2742. }
  2743. 100% {
  2744. transform: translateZ(0px);
  2745. opacity: 1;
  2746. }
  2747. }
  2748. @keyframes MenuAnimIn4 {
  2749. 0% {
  2750. transform: translateZ(-300px);
  2751. opacity: 0;
  2752. }
  2753. 100% {
  2754. transform: translateZ(0px);
  2755. opacity: 1;
  2756. }
  2757. }
  2758. @keyframes MenuAnimIn5 {
  2759. 0% {
  2760. transform: translateY(40%);
  2761. opacity: 0;
  2762. }
  2763. 100% {
  2764. transform: translateY(0);
  2765. opacity: 1;
  2766. }
  2767. }
  2768. .dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
  2769. -webkit-animation: SubMenuAnimIn1 0.4s ease;
  2770. -moz-animation: SubMenuAnimIn1 0.4s ease;
  2771. animation: SubMenuAnimIn1 0.4s ease;
  2772. }
  2773. .dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
  2774. -webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
  2775. -moz-animation: SubMenuAnimIn2 0.3s ease-in-out;
  2776. animation: SubMenuAnimIn2 0.3s ease-in-out;
  2777. }
  2778. .dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
  2779. -webkit-animation: SubMenuAnimIn3 0.4s ease;
  2780. -moz-animation: SubMenuAnimIn3 0.4s ease;
  2781. animation: SubMenuAnimIn3 0.4s ease;
  2782. }
  2783. .dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
  2784. -webkit-animation: SubMenuAnimIn4 0.4s ease;
  2785. -moz-animation: SubMenuAnimIn4 0.4s ease;
  2786. animation: SubMenuAnimIn4 0.4s ease;
  2787. }
  2788. .dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
  2789. -webkit-animation: SubMenuAnimIn5 0.4s ease;
  2790. -moz-animation: SubMenuAnimIn5 0.4s ease;
  2791. animation: SubMenuAnimIn5 0.4s ease;
  2792. }
  2793. @-webkit-keyframes SubMenuAnimIn1 {
  2794. 0% {
  2795. -webkit-transform: translateX(50%);
  2796. opacity: 0;
  2797. }
  2798. 100% {
  2799. -webkit-transform: translateX(0px);
  2800. opacity: 1;
  2801. }
  2802. }
  2803. @-webkit-keyframes SubMenuAnimIn2 {
  2804. 0% {
  2805. -webkit-transform: translateX(100%);
  2806. opacity: 0;
  2807. }
  2808. 100% {
  2809. -webkit-transform: translateX(0px);
  2810. opacity: 1;
  2811. }
  2812. }
  2813. @-webkit-keyframes SubMenuAnimIn3 {
  2814. 0% {
  2815. -webkit-transform: translateZ(-300px);
  2816. opacity: 0;
  2817. }
  2818. 100% {
  2819. -webkit-transform: translateZ(0px);
  2820. opacity: 1;
  2821. }
  2822. }
  2823. @-webkit-keyframes SubMenuAnimIn4 {
  2824. 0% {
  2825. -webkit-transform: translateZ(300px);
  2826. opacity: 0;
  2827. }
  2828. 100% {
  2829. -webkit-transform: translateZ(0px);
  2830. opacity: 1;
  2831. }
  2832. }
  2833. @-webkit-keyframes SubMenuAnimIn5 {
  2834. 0% {
  2835. -webkit-transform: translateZ(-200px);
  2836. opacity: 0;
  2837. }
  2838. 100% {
  2839. -webkit-transform: translateZ(0);
  2840. opacity: 1;
  2841. }
  2842. }
  2843. @-moz-keyframes SubMenuAnimIn1 {
  2844. 0% {
  2845. -moz-transform: translateX(50%);
  2846. opacity: 0;
  2847. }
  2848. 100% {
  2849. -moz-transform: translateX(0px);
  2850. opacity: 1;
  2851. }
  2852. }
  2853. @-moz-keyframes SubMenuAnimIn2 {
  2854. 0% {
  2855. -moz-transform: translateX(100%);
  2856. opacity: 0;
  2857. }
  2858. 100% {
  2859. -moz-transform: translateX(0px);
  2860. opacity: 1;
  2861. }
  2862. }
  2863. @-moz-keyframes SubMenuAnimIn3 {
  2864. 0% {
  2865. -moz-transform: translateZ(-300px);
  2866. opacity: 0;
  2867. }
  2868. 100% {
  2869. -moz-transform: translateZ(0px);
  2870. opacity: 1;
  2871. }
  2872. }
  2873. @-moz-keyframes SubMenuAnimIn4 {
  2874. 0% {
  2875. -moz-transform: translateZ(300px);
  2876. opacity: 0;
  2877. }
  2878. 100% {
  2879. -moz-transform: translateZ(0px);
  2880. opacity: 1;
  2881. }
  2882. }
  2883. @-moz-keyframes SubMenuAnimIn5 {
  2884. 0% {
  2885. -moz-transform: translateZ(-200px);
  2886. opacity: 0;
  2887. }
  2888. 100% {
  2889. -moz-transform: translateZ(0);
  2890. opacity: 1;
  2891. }
  2892. }
  2893. @keyframes SubMenuAnimIn1 {
  2894. 0% {
  2895. transform: translateX(50%);
  2896. opacity: 0;
  2897. }
  2898. 100% {
  2899. transform: translateX(0px);
  2900. opacity: 1;
  2901. }
  2902. }
  2903. @keyframes SubMenuAnimIn2 {
  2904. 0% {
  2905. transform: translateX(100%);
  2906. opacity: 0;
  2907. }
  2908. 100% {
  2909. transform: translateX(0px);
  2910. opacity: 1;
  2911. }
  2912. }
  2913. @keyframes SubMenuAnimIn3 {
  2914. 0% {
  2915. transform: translateZ(-300px);
  2916. opacity: 0;
  2917. }
  2918. 100% {
  2919. transform: translateZ(0px);
  2920. opacity: 1;
  2921. }
  2922. }
  2923. @keyframes SubMenuAnimIn4 {
  2924. 0% {
  2925. transform: translateZ(300px);
  2926. opacity: 0;
  2927. }
  2928. 100% {
  2929. transform: translateZ(0px);
  2930. opacity: 1;
  2931. }
  2932. }
  2933. @keyframes SubMenuAnimIn5 {
  2934. 0% {
  2935. transform: translateZ(-200px);
  2936. opacity: 0;
  2937. }
  2938. 100% {
  2939. transform: translateZ(0);
  2940. opacity: 1;
  2941. }
  2942. }
  2943. .dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
  2944. -webkit-animation: SubMenuAnimOut1 0.4s ease;
  2945. -moz-animation: SubMenuAnimOut1 0.4s ease;
  2946. animation: SubMenuAnimOut1 0.4s ease;
  2947. }
  2948. .dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
  2949. -webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
  2950. -moz-animation: SubMenuAnimOut2 0.3s ease-in-out;
  2951. animation: SubMenuAnimOut2 0.3s ease-in-out;
  2952. }
  2953. .dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
  2954. -webkit-animation: SubMenuAnimOut3 0.4s ease;
  2955. -moz-animation: SubMenuAnimOut3 0.4s ease;
  2956. animation: SubMenuAnimOut3 0.4s ease;
  2957. }
  2958. .dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
  2959. -webkit-animation: SubMenuAnimOut4 0.4s ease;
  2960. -moz-animation: SubMenuAnimOut4 0.4s ease;
  2961. animation: SubMenuAnimOut4 0.4s ease;
  2962. }
  2963. .dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
  2964. -webkit-animation: SubMenuAnimOut5 0.4s ease;
  2965. -moz-animation: SubMenuAnimOut5 0.4s ease;
  2966. animation: SubMenuAnimOut5 0.4s ease;
  2967. }
  2968. @-webkit-keyframes SubMenuAnimOut1 {
  2969. 0% {
  2970. -webkit-transform: translateX(0%);
  2971. opacity: 1;
  2972. }
  2973. 100% {
  2974. -webkit-transform: translateX(50%);
  2975. opacity: 0;
  2976. }
  2977. }
  2978. @-webkit-keyframes SubMenuAnimOut2 {
  2979. 0% {
  2980. -webkit-transform: translateX(0%);
  2981. opacity: 1;
  2982. }
  2983. 100% {
  2984. -webkit-transform: translateX(100%);
  2985. opacity: 0;
  2986. }
  2987. }
  2988. @-webkit-keyframes SubMenuAnimOut3 {
  2989. 0% {
  2990. -webkit-transform: translateZ(0px);
  2991. opacity: 1;
  2992. }
  2993. 100% {
  2994. -webkit-transform: translateZ(-300px);
  2995. opacity: 0;
  2996. }
  2997. }
  2998. @-webkit-keyframes SubMenuAnimOut4 {
  2999. 0% {
  3000. -webkit-transform: translateZ(0px);
  3001. opacity: 1;
  3002. }
  3003. 100% {
  3004. -webkit-transform: translateZ(300px);
  3005. opacity: 0;
  3006. }
  3007. }
  3008. @-webkit-keyframes SubMenuAnimOut5 {
  3009. 0% {
  3010. -webkit-transform: translateZ(0);
  3011. opacity: 1;
  3012. }
  3013. 100% {
  3014. -webkit-transform: translateZ(-200px);
  3015. opacity: 0;
  3016. }
  3017. }
  3018. @-moz-keyframes SubMenuAnimOut1 {
  3019. 0% {
  3020. -moz-transform: translateX(0%);
  3021. opacity: 1;
  3022. }
  3023. 100% {
  3024. -moz-transform: translateX(50%);
  3025. opacity: 0;
  3026. }
  3027. }
  3028. @-moz-keyframes SubMenuAnimOut2 {
  3029. 0% {
  3030. -moz-transform: translateX(0%);
  3031. opacity: 1;
  3032. }
  3033. 100% {
  3034. -moz-transform: translateX(100%);
  3035. opacity: 0;
  3036. }
  3037. }
  3038. @-moz-keyframes SubMenuAnimOut3 {
  3039. 0% {
  3040. -moz-transform: translateZ(0px);
  3041. opacity: 1;
  3042. }
  3043. 100% {
  3044. -moz-transform: translateZ(-300px);
  3045. opacity: 0;
  3046. }
  3047. }
  3048. @-moz-keyframes SubMenuAnimOut4 {
  3049. 0% {
  3050. -moz-transform: translateZ(0px);
  3051. opacity: 1;
  3052. }
  3053. 100% {
  3054. -moz-transform: translateZ(300px);
  3055. opacity: 0;
  3056. }
  3057. }
  3058. @-moz-keyframes SubMenuAnimOut5 {
  3059. 0% {
  3060. -moz-transform: translateZ(0);
  3061. opacity: 1;
  3062. }
  3063. 100% {
  3064. -moz-transform: translateZ(-200px);
  3065. opacity: 0;
  3066. }
  3067. }
  3068. @keyframes SubMenuAnimOut1 {
  3069. 0% {
  3070. transform: translateX(0%);
  3071. opacity: 1;
  3072. }
  3073. 100% {
  3074. transform: translateX(50%);
  3075. opacity: 0;
  3076. }
  3077. }
  3078. @keyframes SubMenuAnimOut2 {
  3079. 0% {
  3080. transform: translateX(0%);
  3081. opacity: 1;
  3082. }
  3083. 100% {
  3084. transform: translateX(100%);
  3085. opacity: 0;
  3086. }
  3087. }
  3088. @keyframes SubMenuAnimOut3 {
  3089. 0% {
  3090. transform: translateZ(0px);
  3091. opacity: 1;
  3092. }
  3093. 100% {
  3094. transform: translateZ(-300px);
  3095. opacity: 0;
  3096. }
  3097. }
  3098. @keyframes SubMenuAnimOut4 {
  3099. 0% {
  3100. transform: translateZ(0px);
  3101. opacity: 1;
  3102. }
  3103. 100% {
  3104. transform: translateZ(300px);
  3105. opacity: 0;
  3106. }
  3107. }
  3108. @keyframes SubMenuAnimOut5 {
  3109. 0% {
  3110. transform: translateZ(0);
  3111. opacity: 1;
  3112. }
  3113. 100% {
  3114. transform: translateZ(-200px);
  3115. opacity: 0;
  3116. }
  3117. }
  3118. /* No JS Fallback */
  3119. .no-js .dl-menuwrapper .dl-menu {
  3120. position: relative;
  3121. opacity: 1;
  3122. -webkit-transform: none;
  3123. -moz-transform: none;
  3124. transform: none;
  3125. }
  3126. .no-js .dl-menuwrapper li .dl-submenu {
  3127. display: block;
  3128. }
  3129. .no-js .dl-menuwrapper li.dl-back {
  3130. display: none;
  3131. }
  3132. .no-js .dl-menuwrapper li > a:not(:only-child) {
  3133. background: rgba(0,0,0,0.1);
  3134. }
  3135. .no-js .dl-menuwrapper li > a:not(:only-child):after {
  3136. content: '';
  3137. }
  3138. /* Colors for demos */
  3139. /* Demo 1 */
  3140. .demo-1 .dl-menuwrapper button {
  3141. background: #26ae62;
  3142. }
  3143. .demo-1 .dl-menuwrapper button:hover,
  3144. .demo-1 .dl-menuwrapper button.dl-active,
  3145. .demo-1 .dl-menuwrapper ul {
  3146. background: #108242;
  3147. }
  3148. /* Demo 2 */
  3149. .demo-2 .dl-menuwrapper button {
  3150. background: #e86814;
  3151. }
  3152. .demo-2 .dl-menuwrapper button:hover,
  3153. .demo-2 .dl-menuwrapper button.dl-active,
  3154. .demo-2 .dl-menuwrapper ul {
  3155. background: #D35400;
  3156. }
  3157. /* Demo 3 */
  3158. .demo-3 .dl-menuwrapper button {
  3159. background: #08cbc4;
  3160. }
  3161. .demo-3 .dl-menuwrapper button:hover,
  3162. .demo-3 .dl-menuwrapper button.dl-active,
  3163. .demo-3 .dl-menuwrapper ul {
  3164. background: #00b4ae;
  3165. }
  3166. /* Demo 4 */
  3167. .demo-4 .dl-menuwrapper button {
  3168. background: #90b912;
  3169. }
  3170. .demo-4 .dl-menuwrapper button:hover,
  3171. .demo-4 .dl-menuwrapper button.dl-active,
  3172. .demo-4 .dl-menuwrapper ul {
  3173. background: #79a002;
  3174. }
  3175. /* Demo 5 */
  3176. .demo-5 .dl-menuwrapper button {
  3177. background: #744783;
  3178. }
  3179. .demo-5 .dl-menuwrapper button:hover,
  3180. .demo-5 .dl-menuwrapper button.dl-active,
  3181. .demo-5 .dl-menuwrapper ul {
  3182. background: #643771;
  3183. }
  3184. .filtros_resp{
  3185. display: none;
  3186. }
  3187. .dl-menuwrapper button:after {
  3188. content: '';
  3189. position: absolute;
  3190. width: 68%;
  3191. height: 5px;
  3192. background: #fff;
  3193. top: 10px;
  3194. left: 16%;
  3195. box-shadow: 0 10px 0 #fff, 0 20px 0 #fff;
  3196. }
  3197. .dl-menuwrapper button:hover:after {
  3198. content: '';
  3199. position: absolute;
  3200. width: 68%;
  3201. height: 5px;
  3202. background: #fd4b4b;
  3203. top: 10px;
  3204. left: 16%;
  3205. box-shadow: 0 10px 0 #fd4b4b, 0 20px 0 #fd4b4b;
  3206. transition: all 0.3s;
  3207. }
  3208. .demo-1 .dl-menuwrapper button {
  3209. background: #26ae62;
  3210. }
  3211. .logo-responsive {
  3212. display: none;
  3213. }
  3214. @media (min-width: 320px) and (max-width: 484px){
  3215. .navbar {
  3216. display: none;
  3217. }
  3218. .logo-responsive {
  3219. width: 60%;
  3220. float: right;
  3221. position: relative;
  3222. top: -55px;
  3223. display: block;
  3224. }
  3225. .logo-responsive img {
  3226. width: 100%;
  3227. }
  3228. .header_mobile {
  3229. display: block;
  3230. height: 55px;
  3231. background: #fff;
  3232. }
  3233. .logo-section img {
  3234. width: 100%;
  3235. }
  3236. .content-section {
  3237. padding: 40px 0px;
  3238. }
  3239. .cabeceras {
  3240. background: #f1f1f1;
  3241. padding: 10px;
  3242. display: none;
  3243. }
  3244. .cabeceras_actividad {
  3245. background: #f1f1f1;
  3246. padding: 10px;
  3247. display: none;
  3248. }
  3249. .col20 {
  3250. width: 100%;
  3251. float: left;
  3252. -ms-flex: 0 0 20%;
  3253. flex: 0 0 100%;
  3254. max-width: 100%;
  3255. }
  3256. .col25 {
  3257. width: 100%;
  3258. float: left;
  3259. -ms-flex: 0 0 100%;
  3260. flex: 0 0 100%;
  3261. max-width: 100%;
  3262. }
  3263. .footerinfo {
  3264. padding: 40px;
  3265. width: 100%;
  3266. bottom: 0;
  3267. margin: 0;
  3268. text-align: center;
  3269. }
  3270. .header_mobile .logo-section {
  3271. width: 148px;
  3272. float: left;
  3273. display: none;
  3274. }
  3275. .dl-menuwrapper .dl-active:after {
  3276. content: '';
  3277. position: absolute;
  3278. width: 68%;
  3279. height: 5px;
  3280. background: #fd4b4b;
  3281. top: 10px;
  3282. left: 16%;
  3283. box-shadow: 0 10px 0 #fd4b4b, 0 20px 0 #fd4b4b;
  3284. transition: all 0.3s;
  3285. }
  3286. .dl-menuwrapper .dl-menuopen li a {
  3287. display: block;
  3288. position: relative;
  3289. padding: 15px 20px;
  3290. font-size: 14px;
  3291. line-height: 20px;
  3292. font-weight: 300;
  3293. color: #fd4b4b;
  3294. outline: none;
  3295. font-family: 'montserrat';
  3296. background: #fff;
  3297. }
  3298. .btn_agregar_pregunta {
  3299. border: 1px solid #fd4b4b;
  3300. color: #fff;
  3301. background: #fd4b4b;
  3302. padding: 10px 55px;
  3303. font-size: 14px;
  3304. position: relative;
  3305. cursor: pointer;
  3306. transition: all 0.3s;
  3307. margin-bottom: 20px;
  3308. }
  3309. .body_prueba_nueva {
  3310. padding: 40px 20px;
  3311. background: #fff;
  3312. margin-bottom: 40px;
  3313. margin: 0 15px 40px 15px;
  3314. }
  3315. .img_relaciones {
  3316. margin: 30px 0;
  3317. width: 55%;
  3318. margin-right: 40px;
  3319. transition: all 0.3s;
  3320. }
  3321. .contenedor_restore {
  3322. width: 100%;
  3323. float: none;
  3324. margin: auto;
  3325. }
  3326. }
  3327. @media (min-width: 568px) and (max-width: 736px){
  3328. .navbar {
  3329. display: none;
  3330. }
  3331. .logo-responsive {
  3332. width: 33%;
  3333. float: right;
  3334. position: relative;
  3335. top: -55px;
  3336. display: block;
  3337. }
  3338. .logo-responsive img {
  3339. width: 100%;
  3340. }
  3341. .header_mobile {
  3342. display: block;
  3343. height: 55px;
  3344. background: #fff;
  3345. }
  3346. .logo-section img {
  3347. width: 100%;
  3348. }
  3349. .content-section {
  3350. padding: 40px 0px;
  3351. }
  3352. .cabeceras {
  3353. background: #f1f1f1;
  3354. padding: 10px;
  3355. display: none;
  3356. }
  3357. .cabeceras_actividad {
  3358. background: #f1f1f1;
  3359. padding: 10px;
  3360. display: none;
  3361. }
  3362. .col20 {
  3363. width: 100%;
  3364. float: left;
  3365. -ms-flex: 0 0 20%;
  3366. flex: 0 0 100%;
  3367. max-width: 100%;
  3368. }
  3369. .col25 {
  3370. width: 100%;
  3371. float: left;
  3372. -ms-flex: 0 0 100%;
  3373. flex: 0 0 100%;
  3374. max-width: 100%;
  3375. }
  3376. .footerinfo {
  3377. padding: 40px;
  3378. width: 100%;
  3379. bottom: 0;
  3380. margin: 0;
  3381. text-align: center;
  3382. }
  3383. .header_mobile .logo-section {
  3384. width: 148px;
  3385. float: left;
  3386. display: none;
  3387. }
  3388. .dl-menuwrapper .dl-active:after {
  3389. content: '';
  3390. position: absolute;
  3391. width: 68%;
  3392. height: 5px;
  3393. background: #fd4b4b;
  3394. top: 10px;
  3395. left: 16%;
  3396. box-shadow: 0 10px 0 #fd4b4b, 0 20px 0 #fd4b4b;
  3397. transition: all 0.3s;
  3398. }
  3399. .dl-menuwrapper .dl-menuopen li a {
  3400. display: block;
  3401. position: relative;
  3402. padding: 15px 20px;
  3403. font-size: 14px;
  3404. line-height: 20px;
  3405. font-weight: 300;
  3406. color: #fd4b4b;
  3407. outline: none;
  3408. font-family: 'montserrat';
  3409. background: #fff;
  3410. }
  3411. .btn_agregar_pregunta {
  3412. border: 1px solid #fd4b4b;
  3413. color: #fff;
  3414. background: #fd4b4b;
  3415. padding: 10px 55px;
  3416. font-size: 14px;
  3417. position: relative;
  3418. cursor: pointer;
  3419. transition: all 0.3s;
  3420. margin-bottom: 40px;
  3421. }
  3422. .img_relaciones {
  3423. margin: 30px 0;
  3424. width: 40%;
  3425. margin-right: 40px;
  3426. transition: all 0.3s;
  3427. }
  3428. .body_prueba_nueva {
  3429. padding: 40px 20px;
  3430. background: #fff;
  3431. margin-bottom: 40px;
  3432. margin: 0 15px 40px 15px;
  3433. }
  3434. .contenedor_restore {
  3435. width: 100%;
  3436. float: none;
  3437. margin: auto;
  3438. }
  3439. }
  3440. @media (min-width: 768px) and (max-width: 800px){
  3441. .navbar {
  3442. display: none;
  3443. }
  3444. .logo-responsive {
  3445. width: 33%;
  3446. float: right;
  3447. position: relative;
  3448. top: -55px;
  3449. display: block;
  3450. }
  3451. .logo-responsive img {
  3452. width: 100%;
  3453. }
  3454. .header_mobile {
  3455. display: block;
  3456. height: 55px;
  3457. background: #fff;
  3458. }
  3459. .logo-section img {
  3460. width: 100%;
  3461. }
  3462. .content-section {
  3463. padding: 40px 0px;
  3464. }
  3465. .cabeceras {
  3466. background: #f1f1f1;
  3467. padding: 10px;
  3468. display: none;
  3469. }
  3470. .cabeceras_actividad {
  3471. background: #f1f1f1;
  3472. padding: 10px;
  3473. display: none;
  3474. }
  3475. .col20 {
  3476. width: 100%;
  3477. float: left;
  3478. -ms-flex: 0 0 20%;
  3479. flex: 0 0 100%;
  3480. max-width: 100%;
  3481. }
  3482. .col25 {
  3483. width: 100%;
  3484. float: left;
  3485. -ms-flex: 0 0 100%;
  3486. flex: 0 0 100%;
  3487. max-width: 100%;
  3488. }
  3489. .footerinfo {
  3490. padding: 40px;
  3491. width: 100%;
  3492. bottom: 0;
  3493. margin: 0;
  3494. text-align: center;
  3495. }
  3496. .header_mobile .logo-section {
  3497. width: 148px;
  3498. float: left;
  3499. display: none;
  3500. }
  3501. .dl-menuwrapper .dl-active:after {
  3502. content: '';
  3503. position: absolute;
  3504. width: 68%;
  3505. height: 5px;
  3506. background: #fd4b4b;
  3507. top: 10px;
  3508. left: 16%;
  3509. box-shadow: 0 10px 0 #fd4b4b, 0 20px 0 #fd4b4b;
  3510. transition: all 0.3s;
  3511. }
  3512. .dl-menuwrapper .dl-menuopen li a {
  3513. display: block;
  3514. position: relative;
  3515. padding: 15px 20px;
  3516. font-size: 14px;
  3517. line-height: 20px;
  3518. font-weight: 300;
  3519. color: #fd4b4b;
  3520. outline: none;
  3521. font-family: 'montserrat';
  3522. background: #fff;
  3523. }
  3524. .panel_options .col-md-4 {
  3525. width: 100%;
  3526. flex: 100%;
  3527. max-width: 100%;
  3528. }
  3529. .historial_candidatos .col-md-8 {
  3530. width: 100%;
  3531. flex: 100%;
  3532. max-width: 100%;
  3533. }
  3534. .historial_candidatos .col-md-4 {
  3535. width: 100%;
  3536. flex: 100%;
  3537. max-width: 100%;
  3538. }
  3539. .img_relaciones {
  3540. margin: 30px 0;
  3541. width: 40%;
  3542. margin-right: 40px;
  3543. transition: all 0.3s;
  3544. }
  3545. .body_prueba_nueva {
  3546. padding: 40px 30px;
  3547. background: #fff;
  3548. margin-bottom: 40px;
  3549. margin: 0 15px 40px 15px;
  3550. }
  3551. .tabs_pruebas .test_tab.active p {
  3552. margin: 0;
  3553. letter-spacing: 0px;
  3554. color: #fff;
  3555. }
  3556. .tabs_pruebas .test_tab p {
  3557. margin: 0!important;
  3558. letter-spacing: 0px;
  3559. color: #fff!important;
  3560. }
  3561. .body_prueba_list .modern-Checkbox label {
  3562. color: #363636;
  3563. background-color: #ffffff;
  3564. border-color: #fd4b4b;
  3565. cursor: pointer;
  3566. display: inline-block;
  3567. font-weight: 500;
  3568. text-align: center;
  3569. white-space: nowrap;
  3570. vertical-align: middle;
  3571. user-select: none;
  3572. border: 1px solid transparent;
  3573. padding: 35px;
  3574. font-size: 14px;
  3575. border-radius: 0;
  3576. transition: all 144ms ease-in-out;
  3577. width: 100%;
  3578. letter-spacing: 0;
  3579. }
  3580. .contenedor_restore {
  3581. width: 100%;
  3582. float: none;
  3583. margin: auto;
  3584. }
  3585. }
  3586. @media (min-width:800px) and (max-width: 1050px){
  3587. .dropdown-menu {
  3588. position: absolute;
  3589. top: 100%;
  3590. right: 3%;
  3591. z-index: 1000;
  3592. display: none;
  3593. float: left;
  3594. min-width: 30rem;
  3595. padding: .5rem 0;
  3596. margin: 0.125rem 0 0;
  3597. font-size: 14px;
  3598. color: #1b2235;
  3599. text-align: left;
  3600. list-style: none;
  3601. background-color: #fff;
  3602. background-clip: padding-box;
  3603. border: 1px solid rgba(0,0,0,.15);
  3604. width: 60%;
  3605. }
  3606. #sidebarCollapse {
  3607. display: none;
  3608. }
  3609. #dashboardfull{
  3610. display: none;
  3611. }
  3612. .body_tabs .col-md-6 {
  3613. -ms-flex: 0 0 100%;
  3614. flex: 0 0 100%;
  3615. max-width: 100%;
  3616. }
  3617. .main .panel h1 {
  3618. font-size: 17px!important;
  3619. color: #959595!important;
  3620. text-transform: uppercase;
  3621. font-family: 'gudea';
  3622. letter-spacing: 2px;
  3623. padding: 0!important;
  3624. margin: 0!important;
  3625. position: relative;
  3626. top: 10px;
  3627. }
  3628. .panel .content_info p {
  3629. font-size: 28px;
  3630. color: #25344f;
  3631. margin: 0;
  3632. text-align: right;
  3633. width: 50%;
  3634. float: left;
  3635. position: relative;
  3636. top: 0px;
  3637. }
  3638. .historial_candidatos .col-md-8 {
  3639. width: 100%;
  3640. flex: 100%;
  3641. max-width: 100%;
  3642. }
  3643. .historial_candidatos .col-md-4 {
  3644. width: 100%;
  3645. flex: 100%;
  3646. max-width: 100%;
  3647. }
  3648. .filtros_history .col-md-4 {
  3649. padding: 0!important;
  3650. }
  3651. .img_relaciones {
  3652. margin: 30px 0;
  3653. width: 40%;
  3654. margin-right: 40px;
  3655. transition: all 0.3s;
  3656. }
  3657. .body_prueba_nueva {
  3658. padding: 40px 30px;
  3659. background: #fff;
  3660. margin-bottom: 40px;
  3661. margin: 0 15px 40px 15px;
  3662. }
  3663. .tabs_pruebas .test_tab.active p {
  3664. margin: 0;
  3665. letter-spacing: 0px;
  3666. color: #fff;
  3667. }
  3668. .tabs_pruebas .test_tab p {
  3669. margin: 0!important;
  3670. letter-spacing: 0px;
  3671. color: #fff!important;
  3672. }
  3673. .body_prueba_list .modern-Checkbox label {
  3674. color: #363636;
  3675. background-color: #ffffff;
  3676. border-color: #fd4b4b;
  3677. cursor: pointer;
  3678. display: inline-block;
  3679. font-weight: 500;
  3680. text-align: center;
  3681. white-space: nowrap;
  3682. vertical-align: middle;
  3683. user-select: none;
  3684. border: 1px solid transparent;
  3685. padding: 35px;
  3686. font-size: 14px;
  3687. border-radius: 0;
  3688. transition: all 144ms ease-in-out;
  3689. width: 100%;
  3690. letter-spacing: 0;
  3691. }
  3692. .contenedor_restore {
  3693. width: 100%;
  3694. float: none;
  3695. margin: auto;
  3696. }
  3697. }
  3698. .busqueda_prueba .col-md-6 {
  3699. padding: 0!important;
  3700. }
  3701. .busqueda_prueba .col-md-6 input{
  3702. padding: 10px;
  3703. width: 100%;
  3704. font-size: 14px;
  3705. background: transparent;
  3706. border: 1px solid #cbcbcb;
  3707. transition: all 0.3s;
  3708. }
  3709. .busqueda_prueba .col-md-6 input:hover{
  3710. border: 1px solid #fd4b4b8c;
  3711. transition: all 0.3s;
  3712. }
  3713. .busqueda_prueba .col-md-6 input:focus{
  3714. border: 1px solid #fd4b4b8c;
  3715. transition: all 0.3s;
  3716. }
  3717. .busqueda_prueba {
  3718. margin-bottom: 40px;
  3719. }
  3720. .buscar_prueba {
  3721. padding: 0px 0px 25px;
  3722. text-align: left;
  3723. }
  3724. .btn_buscar_prueba {
  3725. border: 1px solid #fd4b4b;
  3726. color: #fff;
  3727. background: #fd4b4b;
  3728. padding: 10px 55px;
  3729. font-size: 14px;
  3730. position: relative;
  3731. cursor: pointer;
  3732. transition: all 0.3s;
  3733. margin-left: 15px;
  3734. }
  3735. .btn_buscar_prueba:hover {
  3736. border: 1px solid #fd4b4b;
  3737. color: #fd4b4b;
  3738. background: transparent;
  3739. transition: all 0.3s;
  3740. }
  3741. .pagination_pruebas .botones_pagination a {
  3742. color: #c4c4c4;
  3743. border: 1px solid #c4c4c4;
  3744. padding: 6px 11px;
  3745. font-size: 12px;
  3746. transition: all 0.3s;
  3747. }
  3748. .pagination_pruebas .botones_pagination a:hover{
  3749. color: #fff;
  3750. border: 1px solid #fd4b4b;
  3751. background: #fd4b4b;
  3752. padding: 6px 11px;
  3753. font-size: 12px;
  3754. transition: all 0.3s;
  3755. }
  3756. .pagination_pruebas .botones_pagination .active {
  3757. color: #fff;
  3758. border: 1px solid #fd4b4b;
  3759. background: #fd4b4b;
  3760. padding: 6px 11px;
  3761. font-size: 12px;
  3762. transition: all 0.3s;
  3763. }
  3764. .pagination_pruebas{
  3765. padding: 15px;
  3766. }
  3767. .botones_edicion {
  3768. width: 100%;
  3769. text-align: center;
  3770. position: relative;
  3771. }
  3772. .contenedor_botones {
  3773. width: 27%;
  3774. position: absolute;
  3775. float: right;
  3776. right: 0;
  3777. z-index: 999999;
  3778. padding: 10px;
  3779. opacity: 0;
  3780. transition: all 0.3s;
  3781. }
  3782. .body_prueba_list:hover .contenedor_botones {
  3783. opacity: 1;
  3784. transition: all 0.3s;
  3785. }
  3786. .botones_edicion i{
  3787. color: #bdbdbd;
  3788. transition: all 0.3s;
  3789. }
  3790. .botones_edicion i:hover{
  3791. color: #fd4b4b;
  3792. transition: all 0.3s;
  3793. }
  3794. .header_prueba {
  3795. width: 180px;
  3796. opacity: 0.7;
  3797. float: none;
  3798. margin: auto;
  3799. }
  3800. .header_prueba img{
  3801. width: 100%;
  3802. }
  3803. .allrights_footer_prueba p {
  3804. margin: 0!important;
  3805. text-align: center;
  3806. }