Reac front end for psicometric app

all.css 75KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831
  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. .comportamiento_body {
  1928. display: block;
  1929. margin-bottom: 80px;
  1930. }
  1931. .personalidad_body {
  1932. display: none;
  1933. margin-bottom: 80px;
  1934. }
  1935. .inteligencia_body {
  1936. display: none;
  1937. margin-bottom: 80px;
  1938. }
  1939. .modern-Checkbox [type="checkbox"] {
  1940. display: none;
  1941. }
  1942. .modern-Checkbox [type="checkbox"]:not(:checked) + label, .modern-Checkbox [type="checkbox"] :not(:checked) + label:hover {
  1943. background-color: white;
  1944. color: #363636;
  1945. border: 1px solid #d8d8d8;
  1946. width: 100%;
  1947. border-radius: 0;
  1948. font-size: 14px;
  1949. font-family: 'gudea';
  1950. padding: 35px;
  1951. letter-spacing: 6px;
  1952. }
  1953. .modern-Checkbox [type="checkbox"]:checked + label:before {
  1954. transform: rotate(45deg);
  1955. color: #fff;
  1956. }
  1957. .modern-Checkbox label {
  1958. color: #fff;
  1959. background-color: #fd4b4b78;
  1960. border-color: #fd4b4b;
  1961. cursor: pointer;
  1962. display: inline-block;
  1963. font-weight: 500;
  1964. text-align: center;
  1965. white-space: nowrap;
  1966. vertical-align: middle;
  1967. user-select: none;
  1968. border: 1px solid transparent;
  1969. padding: 35px;
  1970. font-size: 14px;
  1971. border-radius: 0;
  1972. transition: all 144ms ease-in-out;
  1973. width: 100%;
  1974. letter-spacing: 6px;
  1975. }
  1976. .modern-Checkbox label:hover {
  1977. transform: scale(0.985);
  1978. }
  1979. .modern-Checkbox label:before {
  1980. float: left;
  1981. margin-top: -0.75rem;
  1982. margin-bottom: -1rem;
  1983. margin-right: 0.4rem;
  1984. margin-left: -0.2rem;
  1985. font-weight: 100;
  1986. font-size: 2rem;
  1987. transition: transform 200ms ease-in-out;
  1988. content: "+";
  1989. position: relative;
  1990. top: -2px;
  1991. color: #fd4b4b;
  1992. }
  1993. .content-section .main p {
  1994. color: #878787;
  1995. padding: 0 15px;
  1996. margin-bottom: 40px;
  1997. }
  1998. .datos_candidato {
  1999. margin-bottom: 40px;
  2000. }
  2001. .botones_preguntas label {
  2002. font-size: 14px;
  2003. color: #878787;
  2004. padding-left: 15px;
  2005. }
  2006. .datos_candidato select {
  2007. border: 1px solid #d0d0d0;
  2008. width: 100%;
  2009. padding: 10px;
  2010. color: #878787;
  2011. cursor: pointer;
  2012. }
  2013. .datos_candidato input {
  2014. border: 1px solid #d0d0d0;
  2015. width: 100%;
  2016. padding: 9px;
  2017. color: #878787;
  2018. }
  2019. .botones_interactivos_asignar {
  2020. text-align: right;
  2021. margin-bottom: 50px;
  2022. }
  2023. .botones_interactivos_asignar a{
  2024. font-size: 14px;
  2025. color: #fd4b4b;
  2026. transition: all 0.3s;
  2027. }
  2028. .botones_interactivos_asignar a:hover {
  2029. color: #981111;
  2030. transition: all 0.3s;
  2031. }
  2032. .botones_interactivos_asignar button {
  2033. border: 1px solid #fd4b4b;
  2034. color: #fff;
  2035. background: #fd4b4b;
  2036. padding: 10px 55px;
  2037. font-size: 14px;
  2038. position: relative;
  2039. cursor: pointer;
  2040. transition: all 0.3s;
  2041. }
  2042. .botones_interactivos_asignar button:hover {
  2043. border: 1px solid #fd4b4b;
  2044. color: #fd4b4b;
  2045. background: transparent;
  2046. transition: all 0.3s;
  2047. }
  2048. .body_prueba_list .modern-Checkbox label {
  2049. color: #363636;
  2050. background-color: #ffffff;
  2051. border-color: #fd4b4b;
  2052. cursor: pointer;
  2053. display: inline-block;
  2054. font-weight: 500;
  2055. text-align: center;
  2056. white-space: nowrap;
  2057. vertical-align: middle;
  2058. user-select: none;
  2059. border: 1px solid transparent;
  2060. padding: 35px;
  2061. font-size: 14px;
  2062. border-radius: 0;
  2063. transition: all 144ms ease-in-out;
  2064. width: 100%;
  2065. letter-spacing: 6px;
  2066. }
  2067. .body_prueba_list .modern-Checkbox label:before{
  2068. display: none;
  2069. }
  2070. .content-section .main_pruebas_list h1 {
  2071. font-size: 27px;
  2072. padding: 0px 15px 25px;
  2073. color: #949494;
  2074. }
  2075. .crear_nueva_prueba {
  2076. padding: 0px 0px 25px;
  2077. text-align: right;
  2078. }
  2079. .btn_crear_prueba {
  2080. border: 1px solid #fd4b4b;
  2081. color: #fff;
  2082. background: #fd4b4b;
  2083. padding: 10px 55px;
  2084. font-size: 14px;
  2085. position: relative;
  2086. cursor: pointer;
  2087. transition: all 0.3s;
  2088. }
  2089. .btn_crear_prueba:focus {
  2090. color: #fff;
  2091. transition: all 0.3s;
  2092. }
  2093. .btn_crear_prueba:hover {
  2094. border: 1px solid #fd4b4b;
  2095. color: #fd4b4b;
  2096. background: transparent;
  2097. transition: all 0.3s;
  2098. }
  2099. .btn_agregar_pregunta {
  2100. border: 1px solid #fd4b4b;
  2101. color: #fff;
  2102. background: #fd4b4b;
  2103. padding: 10px 55px;
  2104. font-size: 14px;
  2105. position: relative;
  2106. cursor: pointer;
  2107. transition: all 0.3s;
  2108. }
  2109. .btn_agregar_pregunta:focus {
  2110. color: #fff;
  2111. transition: all 0.3s;
  2112. }
  2113. .btn_agregar_pregunta:hover {
  2114. border: 1px solid #fd4b4b;
  2115. color: #fd4b4b;
  2116. background: transparent;
  2117. transition: all 0.3s;
  2118. }
  2119. .body_prueba_nueva {
  2120. padding: 40px 50px;
  2121. background: #fff;
  2122. margin-bottom: 40px;
  2123. margin: 0 15px 40px 15px;
  2124. }
  2125. .body_prueba_nueva .contenedor_pruebas h1 {
  2126. font-size: 18px;
  2127. padding: 0;
  2128. color: #949494;
  2129. margin: 0;
  2130. }
  2131. .titulo_pregunta {
  2132. padding: 10px 0;
  2133. }
  2134. .body_prueba_nueva .contenedor_pruebas .numero_pregunta p {
  2135. color: #fd4b4b;
  2136. padding: 0 15px;
  2137. margin-bottom: 0;
  2138. font-weight: bold;
  2139. }
  2140. .body_prueba_nueva .contenedor_pruebas .titulo_pregunta span {
  2141. color: #878787;
  2142. padding: 0 15px 0 0;
  2143. margin-bottom: 0;
  2144. }
  2145. .respuesta_pregunta {
  2146. padding: 10px 0px;
  2147. }
  2148. .respuesta_pregunta input {
  2149. width: 100%;
  2150. padding: 5px;
  2151. border: 1px solid #d0d0d0;
  2152. transition: all 0.3s;
  2153. }
  2154. .respuesta_pregunta input:focus {
  2155. border: 1px solid #fd4b4b;
  2156. transition: all 0.3s;
  2157. }
  2158. .body_preg_indi {
  2159. margin-bottom: 20px;
  2160. }
  2161. .respuesta_pregunta .radio input[type=radio] {
  2162. display: none;
  2163. }
  2164. .radio label {
  2165. display: inline-block;
  2166. cursor: pointer;
  2167. position: relative;
  2168. padding-left: 25px;
  2169. margin-right: 15px;
  2170. font-size: 14px;
  2171. }
  2172. .radio label:before {
  2173. content: "";
  2174. display: inline-block;
  2175. width: 19px;
  2176. height: 19px;
  2177. background-color: #fff;
  2178. margin-right: 10px;
  2179. position: absolute;
  2180. left: 0;
  2181. bottom: 1px;
  2182. border: 1px solid #d0d0d0;
  2183. }
  2184. .radio label:before {
  2185. border-radius: 9px;
  2186. }
  2187. .radio input[type=radio]:checked + label:before {
  2188. content: "\2022";
  2189. position: absolute;
  2190. color: #fd4b4b;
  2191. font-size: 29px;
  2192. border: 3px solid #fd4b4b;
  2193. border-radius: 50%;
  2194. padding: 0px;
  2195. line-height: 8px;
  2196. width: 19px;
  2197. height: 19px;
  2198. box-sizing: border-box;
  2199. box-shadow: none;
  2200. }
  2201. input.input_pregunta {
  2202. border-bottom: 1px solid #d0d0d0;
  2203. box-shadow: none;
  2204. border-top: 0;
  2205. border-left: 0;
  2206. border-right: 0;
  2207. width: 100%;
  2208. transition: all 0.3s;
  2209. }
  2210. input.input_pregunta:focus {
  2211. border-bottom: 1px solid #fd4b4b;
  2212. transition: all 0.3s;
  2213. }
  2214. .historial_candidatos {
  2215. margin-bottom: 30px;
  2216. }
  2217. .radio form {
  2218. margin: 0;
  2219. }
  2220. .button_subir_foto_pregunta input[type="file"] {
  2221. display: none;
  2222. }
  2223. .button_subir_foto_pregunta label{
  2224. background: #fd4b4b;
  2225. border: none;
  2226. border-radius: 0;
  2227. font-size: 14px;
  2228. transition: all 0.3s;
  2229. }
  2230. .button_subir_foto_pregunta label:hover{
  2231. background: #ff1a1a;
  2232. transition: all 0.3s;
  2233. }
  2234. .img_relaciones {
  2235. margin: 30px 0;
  2236. width: 11%;
  2237. margin-right: 40px;
  2238. transition: all 0.3s;
  2239. }
  2240. .img_relaciones img {
  2241. width: 100%;
  2242. }
  2243. .button_subir_foto_pregunta {
  2244. margin: 20px 0;
  2245. }
  2246. .input_hidden {
  2247. position: absolute;
  2248. left: -9999px;
  2249. }
  2250. .selected {
  2251. background-color: #fd4b4b;
  2252. }
  2253. #sites label {
  2254. display: inline-block;
  2255. cursor: pointer;
  2256. width: 90px;
  2257. height: 90px;
  2258. }
  2259. #sites label:hover {
  2260. border: 1px solid #fd4b4b;
  2261. }
  2262. #sites label img {
  2263. padding: 3px;
  2264. width: 100%;
  2265. }
  2266. .form-group-guardar-prueba input {
  2267. background: #fd4b4b;
  2268. font-size: 14px;
  2269. border-radius: 0;
  2270. border: none;
  2271. transition: all 0.3s;
  2272. }
  2273. .form-group-guardar-prueba input:hover {
  2274. background: #ff1a1a;
  2275. transition: all 0.3s;
  2276. }
  2277. .form-group-guardar-prueba {
  2278. text-align: right;
  2279. }
  2280. .header_mobile {
  2281. display: none;
  2282. }
  2283. .dl-menuwrapper {
  2284. width: 100%;
  2285. max-width: 100%;
  2286. float: left;
  2287. position: relative;
  2288. -webkit-perspective: 1000px;
  2289. -moz-perspective: 1000px;
  2290. perspective: 1000px;
  2291. z-index: 9;
  2292. -webkit-perspective-origin: 50% 200%;
  2293. -moz-perspective-origin: 50% 200%;
  2294. perspective-origin: 50% 200%;
  2295. }
  2296. .dl-menuwrapper:first-child {
  2297. margin-right: 0px;
  2298. }
  2299. .dl-menuwrapper button {
  2300. background: #fd4b4b;
  2301. border: none;
  2302. width: 50px;
  2303. height: 45px;
  2304. color: #fff;
  2305. text-indent: 0;
  2306. padding: 11px;
  2307. position: relative;
  2308. cursor: pointer;
  2309. outline: none;
  2310. }
  2311. .dl-menuwrapper button:hover, .dl-menuwrapper button.dl-active, .dl-menuwrapper ul {
  2312. background: #fff;
  2313. transition: all 0.3s;
  2314. }
  2315. /*.dl-menuwrapper button:after {
  2316. content: '';
  2317. position: absolute;
  2318. width: 68%;
  2319. height: 5px;
  2320. background: #fff;
  2321. top: 10px;
  2322. left: 16%;
  2323. box-shadow:
  2324. 0 10px 0 #fff,
  2325. 0 20px 0 #fff;
  2326. }
  2327. */
  2328. .dl-menuwrapper ul {
  2329. padding: 0;
  2330. list-style: none;
  2331. -webkit-transform-style: preserve-3d;
  2332. -moz-transform-style: preserve-3d;
  2333. transform-style: preserve-3d;
  2334. }
  2335. .dl-menuwrapper li {
  2336. position: relative;
  2337. }
  2338. .dl-menuwrapper li a {
  2339. display: block;
  2340. position: relative;
  2341. padding: 15px 20px;
  2342. font-size: 14px;
  2343. line-height: 20px;
  2344. font-weight: 300;
  2345. color: #fff;
  2346. outline: none;
  2347. font-family: 'montserrat';
  2348. }
  2349. .no-touch .dl-menuwrapper li a:hover {
  2350. background: rgba(253, 75, 75, 0.1);
  2351. }
  2352. .dl-menuwrapper li.dl-back > a {
  2353. padding-left: 30px;
  2354. background: rgba(0,0,0,0.1);
  2355. }
  2356. .dl-menuwrapper li.dl-back:after,
  2357. .dl-menuwrapper li > a:not(:only-child):after {
  2358. position: absolute;
  2359. top: 0;
  2360. line-height: 50px;
  2361. font-family: 'gotham';
  2362. speak: none;
  2363. -webkit-font-smoothing: antialiased;
  2364. }
  2365. .dl-menuwrapper li.dl-back:after {
  2366. left: 10px;
  2367. color: rgba(212,204,198,0.3);
  2368. -webkit-transform: rotate(180deg);
  2369. -moz-transform: rotate(180deg);
  2370. transform: rotate(180deg);
  2371. }
  2372. .dl-menuwrapper li > a:after {
  2373. right: 10px;
  2374. color: rgba(0,0,0,0.15);
  2375. }
  2376. .dl-menuwrapper .dl-menu {
  2377. margin: 5px 0 0 0;
  2378. position: absolute;
  2379. width: 100%;
  2380. opacity: 0;
  2381. pointer-events: none;
  2382. -webkit-transform: translateY(10px);
  2383. -moz-transform: translateY(10px);
  2384. transform: translateY(10px);
  2385. -webkit-backface-visibility: hidden;
  2386. -moz-backface-visibility: hidden;
  2387. backface-visibility: hidden;
  2388. }
  2389. .dl-menuwrapper .dl-menu.dl-menu-toggle {
  2390. -webkit-transition: all 0.3s ease;
  2391. -moz-transition: all 0.3s ease;
  2392. transition: all 0.3s ease;
  2393. }
  2394. .dl-menuwrapper .dl-menu.dl-menuopen {
  2395. opacity: 1;
  2396. pointer-events: auto;
  2397. -webkit-transform: translateY(0px);
  2398. -moz-transform: translateY(0px);
  2399. transform: translateY(0px);
  2400. }
  2401. /* Hide the inner submenus */
  2402. .dl-menuwrapper li .dl-submenu {
  2403. display: none;
  2404. }
  2405. i.fa.fa-angle-right {
  2406. position: relative;
  2407. left: 30px;
  2408. }
  2409. i.fa.fa-angle-left {
  2410. position: relative;
  2411. padding-right: 20px;
  2412. }
  2413. /*
  2414. When a submenu is openend, we will hide all li siblings.
  2415. For that we give a class to the parent menu called "dl-subview".
  2416. We also hide the submenu link.
  2417. The opened submenu will get the class "dl-subviewopen".
  2418. All this is done for any sub-level being entered.
  2419. */
  2420. .dl-menu.dl-subview li,
  2421. .dl-menu.dl-subview li.dl-subviewopen > a,
  2422. .dl-menu.dl-subview li.dl-subview > a {
  2423. display: none;
  2424. }
  2425. .dl-menu.dl-subview li.dl-subview,
  2426. .dl-menu.dl-subview li.dl-subview .dl-submenu,
  2427. .dl-menu.dl-subview li.dl-subviewopen,
  2428. .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
  2429. .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
  2430. display: block;
  2431. }
  2432. /* Dynamically added submenu outside of the menu context */
  2433. .dl-menuwrapper > .dl-submenu {
  2434. position: absolute;
  2435. width: 100%;
  2436. top: 50px;
  2437. left: 0;
  2438. margin: 0;
  2439. }
  2440. /* Animation classes for moving out and in */
  2441. .dl-menu.dl-animate-out-1 {
  2442. -webkit-animation: MenuAnimOut1 0.4s;
  2443. -moz-animation: MenuAnimOut1 0.4s;
  2444. animation: MenuAnimOut1 0.4s;
  2445. }
  2446. .dl-menu.dl-animate-out-2 {
  2447. -webkit-animation: MenuAnimOut2 0.3s ease-in-out;
  2448. -moz-animation: MenuAnimOut2 0.3s ease-in-out;
  2449. animation: MenuAnimOut2 0.3s ease-in-out;
  2450. }
  2451. .dl-menu.dl-animate-out-3 {
  2452. -webkit-animation: MenuAnimOut3 0.4s ease;
  2453. -moz-animation: MenuAnimOut3 0.4s ease;
  2454. animation: MenuAnimOut3 0.4s ease;
  2455. }
  2456. .dl-menu.dl-animate-out-4 {
  2457. -webkit-animation: MenuAnimOut4 0.4s ease;
  2458. -moz-animation: MenuAnimOut4 0.4s ease;
  2459. animation: MenuAnimOut4 0.4s ease;
  2460. }
  2461. .dl-menu.dl-animate-out-5 {
  2462. -webkit-animation: MenuAnimOut5 0.4s ease;
  2463. -moz-animation: MenuAnimOut5 0.4s ease;
  2464. animation: MenuAnimOut5 0.4s ease;
  2465. }
  2466. @-webkit-keyframes MenuAnimOut1 {
  2467. 50% {
  2468. -webkit-transform: translateZ(-250px) rotateY(30deg);
  2469. }
  2470. 75% {
  2471. -webkit-transform: translateZ(-372.5px) rotateY(15deg);
  2472. opacity: .5;
  2473. }
  2474. 100% {
  2475. -webkit-transform: translateZ(-500px) rotateY(0deg);
  2476. opacity: 0;
  2477. }
  2478. }
  2479. @-webkit-keyframes MenuAnimOut2 {
  2480. 100% {
  2481. -webkit-transform: translateX(-100%);
  2482. opacity: 0;
  2483. }
  2484. }
  2485. @-webkit-keyframes MenuAnimOut3 {
  2486. 100% {
  2487. -webkit-transform: translateZ(300px);
  2488. opacity: 0;
  2489. }
  2490. }
  2491. @-webkit-keyframes MenuAnimOut4 {
  2492. 100% {
  2493. -webkit-transform: translateZ(-300px);
  2494. opacity: 0;
  2495. }
  2496. }
  2497. @-webkit-keyframes MenuAnimOut5 {
  2498. 100% {
  2499. -webkit-transform: translateY(40%);
  2500. opacity: 0;
  2501. }
  2502. }
  2503. @-moz-keyframes MenuAnimOut1 {
  2504. 50% {
  2505. -moz-transform: translateZ(-250px) rotateY(30deg);
  2506. }
  2507. 75% {
  2508. -moz-transform: translateZ(-372.5px) rotateY(15deg);
  2509. opacity: .5;
  2510. }
  2511. 100% {
  2512. -moz-transform: translateZ(-500px) rotateY(0deg);
  2513. opacity: 0;
  2514. }
  2515. }
  2516. @-moz-keyframes MenuAnimOut2 {
  2517. 100% {
  2518. -moz-transform: translateX(-100%);
  2519. opacity: 0;
  2520. }
  2521. }
  2522. @-moz-keyframes MenuAnimOut3 {
  2523. 100% {
  2524. -moz-transform: translateZ(300px);
  2525. opacity: 0;
  2526. }
  2527. }
  2528. @-moz-keyframes MenuAnimOut4 {
  2529. 100% {
  2530. -moz-transform: translateZ(-300px);
  2531. opacity: 0;
  2532. }
  2533. }
  2534. @-moz-keyframes MenuAnimOut5 {
  2535. 100% {
  2536. -moz-transform: translateY(40%);
  2537. opacity: 0;
  2538. }
  2539. }
  2540. @keyframes MenuAnimOut1 {
  2541. 50% {
  2542. transform: translateZ(-250px) rotateY(30deg);
  2543. }
  2544. 75% {
  2545. transform: translateZ(-372.5px) rotateY(15deg);
  2546. opacity: .5;
  2547. }
  2548. 100% {
  2549. transform: translateZ(-500px) rotateY(0deg);
  2550. opacity: 0;
  2551. }
  2552. }
  2553. @keyframes MenuAnimOut2 {
  2554. 100% {
  2555. transform: translateX(-100%);
  2556. opacity: 0;
  2557. }
  2558. }
  2559. @keyframes MenuAnimOut3 {
  2560. 100% {
  2561. transform: translateZ(300px);
  2562. opacity: 0;
  2563. }
  2564. }
  2565. @keyframes MenuAnimOut4 {
  2566. 100% {
  2567. transform: translateZ(-300px);
  2568. opacity: 0;
  2569. }
  2570. }
  2571. @keyframes MenuAnimOut5 {
  2572. 100% {
  2573. transform: translateY(40%);
  2574. opacity: 0;
  2575. }
  2576. }
  2577. .dl-menu.dl-animate-in-1 {
  2578. -webkit-animation: MenuAnimIn1 0.3s;
  2579. -moz-animation: MenuAnimIn1 0.3s;
  2580. animation: MenuAnimIn1 0.3s;
  2581. }
  2582. .dl-menu.dl-animate-in-2 {
  2583. -webkit-animation: MenuAnimIn2 0.3s ease-in-out;
  2584. -moz-animation: MenuAnimIn2 0.3s ease-in-out;
  2585. animation: MenuAnimIn2 0.3s ease-in-out;
  2586. }
  2587. .dl-menu.dl-animate-in-3 {
  2588. -webkit-animation: MenuAnimIn3 0.4s ease;
  2589. -moz-animation: MenuAnimIn3 0.4s ease;
  2590. animation: MenuAnimIn3 0.4s ease;
  2591. }
  2592. .dl-menu.dl-animate-in-4 {
  2593. -webkit-animation: MenuAnimIn4 0.4s ease;
  2594. -moz-animation: MenuAnimIn4 0.4s ease;
  2595. animation: MenuAnimIn4 0.4s ease;
  2596. }
  2597. .dl-menu.dl-animate-in-5 {
  2598. -webkit-animation: MenuAnimIn5 0.4s ease;
  2599. -moz-animation: MenuAnimIn5 0.4s ease;
  2600. animation: MenuAnimIn5 0.4s ease;
  2601. }
  2602. @-webkit-keyframes MenuAnimIn1 {
  2603. 0% {
  2604. -webkit-transform: translateZ(-500px) rotateY(0deg);
  2605. opacity: 0;
  2606. }
  2607. 20% {
  2608. -webkit-transform: translateZ(-250px) rotateY(30deg);
  2609. opacity: 0.5;
  2610. }
  2611. 100% {
  2612. -webkit-transform: translateZ(0px) rotateY(0deg);
  2613. opacity: 1;
  2614. }
  2615. }
  2616. @-webkit-keyframes MenuAnimIn2 {
  2617. 0% {
  2618. -webkit-transform: translateX(-100%);
  2619. opacity: 0;
  2620. }
  2621. 100% {
  2622. -webkit-transform: translateX(0px);
  2623. opacity: 1;
  2624. }
  2625. }
  2626. @-webkit-keyframes MenuAnimIn3 {
  2627. 0% {
  2628. -webkit-transform: translateZ(300px);
  2629. opacity: 0;
  2630. }
  2631. 100% {
  2632. -webkit-transform: translateZ(0px);
  2633. opacity: 1;
  2634. }
  2635. }
  2636. @-webkit-keyframes MenuAnimIn4 {
  2637. 0% {
  2638. -webkit-transform: translateZ(-300px);
  2639. opacity: 0;
  2640. }
  2641. 100% {
  2642. -webkit-transform: translateZ(0px);
  2643. opacity: 1;
  2644. }
  2645. }
  2646. @-webkit-keyframes MenuAnimIn5 {
  2647. 0% {
  2648. -webkit-transform: translateY(40%);
  2649. opacity: 0;
  2650. }
  2651. 100% {
  2652. -webkit-transform: translateY(0);
  2653. opacity: 1;
  2654. }
  2655. }
  2656. @-moz-keyframes MenuAnimIn1 {
  2657. 0% {
  2658. -moz-transform: translateZ(-500px) rotateY(0deg);
  2659. opacity: 0;
  2660. }
  2661. 20% {
  2662. -moz-transform: translateZ(-250px) rotateY(30deg);
  2663. opacity: 0.5;
  2664. }
  2665. 100% {
  2666. -moz-transform: translateZ(0px) rotateY(0deg);
  2667. opacity: 1;
  2668. }
  2669. }
  2670. @-moz-keyframes MenuAnimIn2 {
  2671. 0% {
  2672. -moz-transform: translateX(-100%);
  2673. opacity: 0;
  2674. }
  2675. 100% {
  2676. -moz-transform: translateX(0px);
  2677. opacity: 1;
  2678. }
  2679. }
  2680. @-moz-keyframes MenuAnimIn3 {
  2681. 0% {
  2682. -moz-transform: translateZ(300px);
  2683. opacity: 0;
  2684. }
  2685. 100% {
  2686. -moz-transform: translateZ(0px);
  2687. opacity: 1;
  2688. }
  2689. }
  2690. @-moz-keyframes MenuAnimIn4 {
  2691. 0% {
  2692. -moz-transform: translateZ(-300px);
  2693. opacity: 0;
  2694. }
  2695. 100% {
  2696. -moz-transform: translateZ(0px);
  2697. opacity: 1;
  2698. }
  2699. }
  2700. @-moz-keyframes MenuAnimIn5 {
  2701. 0% {
  2702. -moz-transform: translateY(40%);
  2703. opacity: 0;
  2704. }
  2705. 100% {
  2706. -moz-transform: translateY(0);
  2707. opacity: 1;
  2708. }
  2709. }
  2710. @keyframes MenuAnimIn1 {
  2711. 0% {
  2712. transform: translateZ(-500px) rotateY(0deg);
  2713. opacity: 0;
  2714. }
  2715. 20% {
  2716. transform: translateZ(-250px) rotateY(30deg);
  2717. opacity: 0.5;
  2718. }
  2719. 100% {
  2720. transform: translateZ(0px) rotateY(0deg);
  2721. opacity: 1;
  2722. }
  2723. }
  2724. @keyframes MenuAnimIn2 {
  2725. 0% {
  2726. transform: translateX(-100%);
  2727. opacity: 0;
  2728. }
  2729. 100% {
  2730. transform: translateX(0px);
  2731. opacity: 1;
  2732. }
  2733. }
  2734. @keyframes MenuAnimIn3 {
  2735. 0% {
  2736. transform: translateZ(300px);
  2737. opacity: 0;
  2738. }
  2739. 100% {
  2740. transform: translateZ(0px);
  2741. opacity: 1;
  2742. }
  2743. }
  2744. @keyframes MenuAnimIn4 {
  2745. 0% {
  2746. transform: translateZ(-300px);
  2747. opacity: 0;
  2748. }
  2749. 100% {
  2750. transform: translateZ(0px);
  2751. opacity: 1;
  2752. }
  2753. }
  2754. @keyframes MenuAnimIn5 {
  2755. 0% {
  2756. transform: translateY(40%);
  2757. opacity: 0;
  2758. }
  2759. 100% {
  2760. transform: translateY(0);
  2761. opacity: 1;
  2762. }
  2763. }
  2764. .dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
  2765. -webkit-animation: SubMenuAnimIn1 0.4s ease;
  2766. -moz-animation: SubMenuAnimIn1 0.4s ease;
  2767. animation: SubMenuAnimIn1 0.4s ease;
  2768. }
  2769. .dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
  2770. -webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
  2771. -moz-animation: SubMenuAnimIn2 0.3s ease-in-out;
  2772. animation: SubMenuAnimIn2 0.3s ease-in-out;
  2773. }
  2774. .dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
  2775. -webkit-animation: SubMenuAnimIn3 0.4s ease;
  2776. -moz-animation: SubMenuAnimIn3 0.4s ease;
  2777. animation: SubMenuAnimIn3 0.4s ease;
  2778. }
  2779. .dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
  2780. -webkit-animation: SubMenuAnimIn4 0.4s ease;
  2781. -moz-animation: SubMenuAnimIn4 0.4s ease;
  2782. animation: SubMenuAnimIn4 0.4s ease;
  2783. }
  2784. .dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
  2785. -webkit-animation: SubMenuAnimIn5 0.4s ease;
  2786. -moz-animation: SubMenuAnimIn5 0.4s ease;
  2787. animation: SubMenuAnimIn5 0.4s ease;
  2788. }
  2789. @-webkit-keyframes SubMenuAnimIn1 {
  2790. 0% {
  2791. -webkit-transform: translateX(50%);
  2792. opacity: 0;
  2793. }
  2794. 100% {
  2795. -webkit-transform: translateX(0px);
  2796. opacity: 1;
  2797. }
  2798. }
  2799. @-webkit-keyframes SubMenuAnimIn2 {
  2800. 0% {
  2801. -webkit-transform: translateX(100%);
  2802. opacity: 0;
  2803. }
  2804. 100% {
  2805. -webkit-transform: translateX(0px);
  2806. opacity: 1;
  2807. }
  2808. }
  2809. @-webkit-keyframes SubMenuAnimIn3 {
  2810. 0% {
  2811. -webkit-transform: translateZ(-300px);
  2812. opacity: 0;
  2813. }
  2814. 100% {
  2815. -webkit-transform: translateZ(0px);
  2816. opacity: 1;
  2817. }
  2818. }
  2819. @-webkit-keyframes SubMenuAnimIn4 {
  2820. 0% {
  2821. -webkit-transform: translateZ(300px);
  2822. opacity: 0;
  2823. }
  2824. 100% {
  2825. -webkit-transform: translateZ(0px);
  2826. opacity: 1;
  2827. }
  2828. }
  2829. @-webkit-keyframes SubMenuAnimIn5 {
  2830. 0% {
  2831. -webkit-transform: translateZ(-200px);
  2832. opacity: 0;
  2833. }
  2834. 100% {
  2835. -webkit-transform: translateZ(0);
  2836. opacity: 1;
  2837. }
  2838. }
  2839. @-moz-keyframes SubMenuAnimIn1 {
  2840. 0% {
  2841. -moz-transform: translateX(50%);
  2842. opacity: 0;
  2843. }
  2844. 100% {
  2845. -moz-transform: translateX(0px);
  2846. opacity: 1;
  2847. }
  2848. }
  2849. @-moz-keyframes SubMenuAnimIn2 {
  2850. 0% {
  2851. -moz-transform: translateX(100%);
  2852. opacity: 0;
  2853. }
  2854. 100% {
  2855. -moz-transform: translateX(0px);
  2856. opacity: 1;
  2857. }
  2858. }
  2859. @-moz-keyframes SubMenuAnimIn3 {
  2860. 0% {
  2861. -moz-transform: translateZ(-300px);
  2862. opacity: 0;
  2863. }
  2864. 100% {
  2865. -moz-transform: translateZ(0px);
  2866. opacity: 1;
  2867. }
  2868. }
  2869. @-moz-keyframes SubMenuAnimIn4 {
  2870. 0% {
  2871. -moz-transform: translateZ(300px);
  2872. opacity: 0;
  2873. }
  2874. 100% {
  2875. -moz-transform: translateZ(0px);
  2876. opacity: 1;
  2877. }
  2878. }
  2879. @-moz-keyframes SubMenuAnimIn5 {
  2880. 0% {
  2881. -moz-transform: translateZ(-200px);
  2882. opacity: 0;
  2883. }
  2884. 100% {
  2885. -moz-transform: translateZ(0);
  2886. opacity: 1;
  2887. }
  2888. }
  2889. @keyframes SubMenuAnimIn1 {
  2890. 0% {
  2891. transform: translateX(50%);
  2892. opacity: 0;
  2893. }
  2894. 100% {
  2895. transform: translateX(0px);
  2896. opacity: 1;
  2897. }
  2898. }
  2899. @keyframes SubMenuAnimIn2 {
  2900. 0% {
  2901. transform: translateX(100%);
  2902. opacity: 0;
  2903. }
  2904. 100% {
  2905. transform: translateX(0px);
  2906. opacity: 1;
  2907. }
  2908. }
  2909. @keyframes SubMenuAnimIn3 {
  2910. 0% {
  2911. transform: translateZ(-300px);
  2912. opacity: 0;
  2913. }
  2914. 100% {
  2915. transform: translateZ(0px);
  2916. opacity: 1;
  2917. }
  2918. }
  2919. @keyframes SubMenuAnimIn4 {
  2920. 0% {
  2921. transform: translateZ(300px);
  2922. opacity: 0;
  2923. }
  2924. 100% {
  2925. transform: translateZ(0px);
  2926. opacity: 1;
  2927. }
  2928. }
  2929. @keyframes SubMenuAnimIn5 {
  2930. 0% {
  2931. transform: translateZ(-200px);
  2932. opacity: 0;
  2933. }
  2934. 100% {
  2935. transform: translateZ(0);
  2936. opacity: 1;
  2937. }
  2938. }
  2939. .dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
  2940. -webkit-animation: SubMenuAnimOut1 0.4s ease;
  2941. -moz-animation: SubMenuAnimOut1 0.4s ease;
  2942. animation: SubMenuAnimOut1 0.4s ease;
  2943. }
  2944. .dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
  2945. -webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
  2946. -moz-animation: SubMenuAnimOut2 0.3s ease-in-out;
  2947. animation: SubMenuAnimOut2 0.3s ease-in-out;
  2948. }
  2949. .dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
  2950. -webkit-animation: SubMenuAnimOut3 0.4s ease;
  2951. -moz-animation: SubMenuAnimOut3 0.4s ease;
  2952. animation: SubMenuAnimOut3 0.4s ease;
  2953. }
  2954. .dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
  2955. -webkit-animation: SubMenuAnimOut4 0.4s ease;
  2956. -moz-animation: SubMenuAnimOut4 0.4s ease;
  2957. animation: SubMenuAnimOut4 0.4s ease;
  2958. }
  2959. .dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
  2960. -webkit-animation: SubMenuAnimOut5 0.4s ease;
  2961. -moz-animation: SubMenuAnimOut5 0.4s ease;
  2962. animation: SubMenuAnimOut5 0.4s ease;
  2963. }
  2964. @-webkit-keyframes SubMenuAnimOut1 {
  2965. 0% {
  2966. -webkit-transform: translateX(0%);
  2967. opacity: 1;
  2968. }
  2969. 100% {
  2970. -webkit-transform: translateX(50%);
  2971. opacity: 0;
  2972. }
  2973. }
  2974. @-webkit-keyframes SubMenuAnimOut2 {
  2975. 0% {
  2976. -webkit-transform: translateX(0%);
  2977. opacity: 1;
  2978. }
  2979. 100% {
  2980. -webkit-transform: translateX(100%);
  2981. opacity: 0;
  2982. }
  2983. }
  2984. @-webkit-keyframes SubMenuAnimOut3 {
  2985. 0% {
  2986. -webkit-transform: translateZ(0px);
  2987. opacity: 1;
  2988. }
  2989. 100% {
  2990. -webkit-transform: translateZ(-300px);
  2991. opacity: 0;
  2992. }
  2993. }
  2994. @-webkit-keyframes SubMenuAnimOut4 {
  2995. 0% {
  2996. -webkit-transform: translateZ(0px);
  2997. opacity: 1;
  2998. }
  2999. 100% {
  3000. -webkit-transform: translateZ(300px);
  3001. opacity: 0;
  3002. }
  3003. }
  3004. @-webkit-keyframes SubMenuAnimOut5 {
  3005. 0% {
  3006. -webkit-transform: translateZ(0);
  3007. opacity: 1;
  3008. }
  3009. 100% {
  3010. -webkit-transform: translateZ(-200px);
  3011. opacity: 0;
  3012. }
  3013. }
  3014. @-moz-keyframes SubMenuAnimOut1 {
  3015. 0% {
  3016. -moz-transform: translateX(0%);
  3017. opacity: 1;
  3018. }
  3019. 100% {
  3020. -moz-transform: translateX(50%);
  3021. opacity: 0;
  3022. }
  3023. }
  3024. @-moz-keyframes SubMenuAnimOut2 {
  3025. 0% {
  3026. -moz-transform: translateX(0%);
  3027. opacity: 1;
  3028. }
  3029. 100% {
  3030. -moz-transform: translateX(100%);
  3031. opacity: 0;
  3032. }
  3033. }
  3034. @-moz-keyframes SubMenuAnimOut3 {
  3035. 0% {
  3036. -moz-transform: translateZ(0px);
  3037. opacity: 1;
  3038. }
  3039. 100% {
  3040. -moz-transform: translateZ(-300px);
  3041. opacity: 0;
  3042. }
  3043. }
  3044. @-moz-keyframes SubMenuAnimOut4 {
  3045. 0% {
  3046. -moz-transform: translateZ(0px);
  3047. opacity: 1;
  3048. }
  3049. 100% {
  3050. -moz-transform: translateZ(300px);
  3051. opacity: 0;
  3052. }
  3053. }
  3054. @-moz-keyframes SubMenuAnimOut5 {
  3055. 0% {
  3056. -moz-transform: translateZ(0);
  3057. opacity: 1;
  3058. }
  3059. 100% {
  3060. -moz-transform: translateZ(-200px);
  3061. opacity: 0;
  3062. }
  3063. }
  3064. @keyframes SubMenuAnimOut1 {
  3065. 0% {
  3066. transform: translateX(0%);
  3067. opacity: 1;
  3068. }
  3069. 100% {
  3070. transform: translateX(50%);
  3071. opacity: 0;
  3072. }
  3073. }
  3074. @keyframes SubMenuAnimOut2 {
  3075. 0% {
  3076. transform: translateX(0%);
  3077. opacity: 1;
  3078. }
  3079. 100% {
  3080. transform: translateX(100%);
  3081. opacity: 0;
  3082. }
  3083. }
  3084. @keyframes SubMenuAnimOut3 {
  3085. 0% {
  3086. transform: translateZ(0px);
  3087. opacity: 1;
  3088. }
  3089. 100% {
  3090. transform: translateZ(-300px);
  3091. opacity: 0;
  3092. }
  3093. }
  3094. @keyframes SubMenuAnimOut4 {
  3095. 0% {
  3096. transform: translateZ(0px);
  3097. opacity: 1;
  3098. }
  3099. 100% {
  3100. transform: translateZ(300px);
  3101. opacity: 0;
  3102. }
  3103. }
  3104. @keyframes SubMenuAnimOut5 {
  3105. 0% {
  3106. transform: translateZ(0);
  3107. opacity: 1;
  3108. }
  3109. 100% {
  3110. transform: translateZ(-200px);
  3111. opacity: 0;
  3112. }
  3113. }
  3114. /* No JS Fallback */
  3115. .no-js .dl-menuwrapper .dl-menu {
  3116. position: relative;
  3117. opacity: 1;
  3118. -webkit-transform: none;
  3119. -moz-transform: none;
  3120. transform: none;
  3121. }
  3122. .no-js .dl-menuwrapper li .dl-submenu {
  3123. display: block;
  3124. }
  3125. .no-js .dl-menuwrapper li.dl-back {
  3126. display: none;
  3127. }
  3128. .no-js .dl-menuwrapper li > a:not(:only-child) {
  3129. background: rgba(0,0,0,0.1);
  3130. }
  3131. .no-js .dl-menuwrapper li > a:not(:only-child):after {
  3132. content: '';
  3133. }
  3134. /* Colors for demos */
  3135. /* Demo 1 */
  3136. .demo-1 .dl-menuwrapper button {
  3137. background: #26ae62;
  3138. }
  3139. .demo-1 .dl-menuwrapper button:hover,
  3140. .demo-1 .dl-menuwrapper button.dl-active,
  3141. .demo-1 .dl-menuwrapper ul {
  3142. background: #108242;
  3143. }
  3144. /* Demo 2 */
  3145. .demo-2 .dl-menuwrapper button {
  3146. background: #e86814;
  3147. }
  3148. .demo-2 .dl-menuwrapper button:hover,
  3149. .demo-2 .dl-menuwrapper button.dl-active,
  3150. .demo-2 .dl-menuwrapper ul {
  3151. background: #D35400;
  3152. }
  3153. /* Demo 3 */
  3154. .demo-3 .dl-menuwrapper button {
  3155. background: #08cbc4;
  3156. }
  3157. .demo-3 .dl-menuwrapper button:hover,
  3158. .demo-3 .dl-menuwrapper button.dl-active,
  3159. .demo-3 .dl-menuwrapper ul {
  3160. background: #00b4ae;
  3161. }
  3162. /* Demo 4 */
  3163. .demo-4 .dl-menuwrapper button {
  3164. background: #90b912;
  3165. }
  3166. .demo-4 .dl-menuwrapper button:hover,
  3167. .demo-4 .dl-menuwrapper button.dl-active,
  3168. .demo-4 .dl-menuwrapper ul {
  3169. background: #79a002;
  3170. }
  3171. /* Demo 5 */
  3172. .demo-5 .dl-menuwrapper button {
  3173. background: #744783;
  3174. }
  3175. .demo-5 .dl-menuwrapper button:hover,
  3176. .demo-5 .dl-menuwrapper button.dl-active,
  3177. .demo-5 .dl-menuwrapper ul {
  3178. background: #643771;
  3179. }
  3180. .filtros_resp{
  3181. display: none;
  3182. }
  3183. .dl-menuwrapper button:after {
  3184. content: '';
  3185. position: absolute;
  3186. width: 68%;
  3187. height: 5px;
  3188. background: #fff;
  3189. top: 10px;
  3190. left: 16%;
  3191. box-shadow: 0 10px 0 #fff, 0 20px 0 #fff;
  3192. }
  3193. .dl-menuwrapper button:hover:after {
  3194. content: '';
  3195. position: absolute;
  3196. width: 68%;
  3197. height: 5px;
  3198. background: #fd4b4b;
  3199. top: 10px;
  3200. left: 16%;
  3201. box-shadow: 0 10px 0 #fd4b4b, 0 20px 0 #fd4b4b;
  3202. transition: all 0.3s;
  3203. }
  3204. .demo-1 .dl-menuwrapper button {
  3205. background: #26ae62;
  3206. }
  3207. .logo-responsive {
  3208. display: none;
  3209. }
  3210. @media (min-width: 320px) and (max-width: 484px){
  3211. .navbar {
  3212. display: none;
  3213. }
  3214. .logo-responsive {
  3215. width: 60%;
  3216. float: right;
  3217. position: relative;
  3218. top: -55px;
  3219. display: block;
  3220. }
  3221. .logo-responsive img {
  3222. width: 100%;
  3223. }
  3224. .header_mobile {
  3225. display: block;
  3226. height: 55px;
  3227. background: #fff;
  3228. }
  3229. .logo-section img {
  3230. width: 100%;
  3231. }
  3232. .content-section {
  3233. padding: 40px 0px;
  3234. }
  3235. .cabeceras {
  3236. background: #f1f1f1;
  3237. padding: 10px;
  3238. display: none;
  3239. }
  3240. .cabeceras_actividad {
  3241. background: #f1f1f1;
  3242. padding: 10px;
  3243. display: none;
  3244. }
  3245. .col20 {
  3246. width: 100%;
  3247. float: left;
  3248. -ms-flex: 0 0 20%;
  3249. flex: 0 0 100%;
  3250. max-width: 100%;
  3251. }
  3252. .col25 {
  3253. width: 100%;
  3254. float: left;
  3255. -ms-flex: 0 0 100%;
  3256. flex: 0 0 100%;
  3257. max-width: 100%;
  3258. }
  3259. .footerinfo {
  3260. padding: 40px;
  3261. width: 100%;
  3262. bottom: 0;
  3263. margin: 0;
  3264. text-align: center;
  3265. }
  3266. .header_mobile .logo-section {
  3267. width: 148px;
  3268. float: left;
  3269. display: none;
  3270. }
  3271. .dl-menuwrapper .dl-active:after {
  3272. content: '';
  3273. position: absolute;
  3274. width: 68%;
  3275. height: 5px;
  3276. background: #fd4b4b;
  3277. top: 10px;
  3278. left: 16%;
  3279. box-shadow: 0 10px 0 #fd4b4b, 0 20px 0 #fd4b4b;
  3280. transition: all 0.3s;
  3281. }
  3282. .dl-menuwrapper .dl-menuopen li a {
  3283. display: block;
  3284. position: relative;
  3285. padding: 15px 20px;
  3286. font-size: 14px;
  3287. line-height: 20px;
  3288. font-weight: 300;
  3289. color: #fd4b4b;
  3290. outline: none;
  3291. font-family: 'montserrat';
  3292. background: #fff;
  3293. }
  3294. .btn_agregar_pregunta {
  3295. border: 1px solid #fd4b4b;
  3296. color: #fff;
  3297. background: #fd4b4b;
  3298. padding: 10px 55px;
  3299. font-size: 14px;
  3300. position: relative;
  3301. cursor: pointer;
  3302. transition: all 0.3s;
  3303. margin-bottom: 20px;
  3304. }
  3305. .body_prueba_nueva {
  3306. padding: 40px 20px;
  3307. background: #fff;
  3308. margin-bottom: 40px;
  3309. margin: 0 15px 40px 15px;
  3310. }
  3311. .img_relaciones {
  3312. margin: 30px 0;
  3313. width: 55%;
  3314. margin-right: 40px;
  3315. transition: all 0.3s;
  3316. }
  3317. .contenedor_restore {
  3318. width: 100%;
  3319. float: none;
  3320. margin: auto;
  3321. }
  3322. }
  3323. @media (min-width: 568px) and (max-width: 736px){
  3324. .navbar {
  3325. display: none;
  3326. }
  3327. .logo-responsive {
  3328. width: 33%;
  3329. float: right;
  3330. position: relative;
  3331. top: -55px;
  3332. display: block;
  3333. }
  3334. .logo-responsive img {
  3335. width: 100%;
  3336. }
  3337. .header_mobile {
  3338. display: block;
  3339. height: 55px;
  3340. background: #fff;
  3341. }
  3342. .logo-section img {
  3343. width: 100%;
  3344. }
  3345. .content-section {
  3346. padding: 40px 0px;
  3347. }
  3348. .cabeceras {
  3349. background: #f1f1f1;
  3350. padding: 10px;
  3351. display: none;
  3352. }
  3353. .cabeceras_actividad {
  3354. background: #f1f1f1;
  3355. padding: 10px;
  3356. display: none;
  3357. }
  3358. .col20 {
  3359. width: 100%;
  3360. float: left;
  3361. -ms-flex: 0 0 20%;
  3362. flex: 0 0 100%;
  3363. max-width: 100%;
  3364. }
  3365. .col25 {
  3366. width: 100%;
  3367. float: left;
  3368. -ms-flex: 0 0 100%;
  3369. flex: 0 0 100%;
  3370. max-width: 100%;
  3371. }
  3372. .footerinfo {
  3373. padding: 40px;
  3374. width: 100%;
  3375. bottom: 0;
  3376. margin: 0;
  3377. text-align: center;
  3378. }
  3379. .header_mobile .logo-section {
  3380. width: 148px;
  3381. float: left;
  3382. display: none;
  3383. }
  3384. .dl-menuwrapper .dl-active:after {
  3385. content: '';
  3386. position: absolute;
  3387. width: 68%;
  3388. height: 5px;
  3389. background: #fd4b4b;
  3390. top: 10px;
  3391. left: 16%;
  3392. box-shadow: 0 10px 0 #fd4b4b, 0 20px 0 #fd4b4b;
  3393. transition: all 0.3s;
  3394. }
  3395. .dl-menuwrapper .dl-menuopen li a {
  3396. display: block;
  3397. position: relative;
  3398. padding: 15px 20px;
  3399. font-size: 14px;
  3400. line-height: 20px;
  3401. font-weight: 300;
  3402. color: #fd4b4b;
  3403. outline: none;
  3404. font-family: 'montserrat';
  3405. background: #fff;
  3406. }
  3407. .btn_agregar_pregunta {
  3408. border: 1px solid #fd4b4b;
  3409. color: #fff;
  3410. background: #fd4b4b;
  3411. padding: 10px 55px;
  3412. font-size: 14px;
  3413. position: relative;
  3414. cursor: pointer;
  3415. transition: all 0.3s;
  3416. margin-bottom: 40px;
  3417. }
  3418. .img_relaciones {
  3419. margin: 30px 0;
  3420. width: 40%;
  3421. margin-right: 40px;
  3422. transition: all 0.3s;
  3423. }
  3424. .body_prueba_nueva {
  3425. padding: 40px 20px;
  3426. background: #fff;
  3427. margin-bottom: 40px;
  3428. margin: 0 15px 40px 15px;
  3429. }
  3430. .contenedor_restore {
  3431. width: 100%;
  3432. float: none;
  3433. margin: auto;
  3434. }
  3435. }
  3436. @media (min-width: 768px) and (max-width: 800px){
  3437. .navbar {
  3438. display: none;
  3439. }
  3440. .logo-responsive {
  3441. width: 33%;
  3442. float: right;
  3443. position: relative;
  3444. top: -55px;
  3445. display: block;
  3446. }
  3447. .logo-responsive img {
  3448. width: 100%;
  3449. }
  3450. .header_mobile {
  3451. display: block;
  3452. height: 55px;
  3453. background: #fff;
  3454. }
  3455. .logo-section img {
  3456. width: 100%;
  3457. }
  3458. .content-section {
  3459. padding: 40px 0px;
  3460. }
  3461. .cabeceras {
  3462. background: #f1f1f1;
  3463. padding: 10px;
  3464. display: none;
  3465. }
  3466. .cabeceras_actividad {
  3467. background: #f1f1f1;
  3468. padding: 10px;
  3469. display: none;
  3470. }
  3471. .col20 {
  3472. width: 100%;
  3473. float: left;
  3474. -ms-flex: 0 0 20%;
  3475. flex: 0 0 100%;
  3476. max-width: 100%;
  3477. }
  3478. .col25 {
  3479. width: 100%;
  3480. float: left;
  3481. -ms-flex: 0 0 100%;
  3482. flex: 0 0 100%;
  3483. max-width: 100%;
  3484. }
  3485. .footerinfo {
  3486. padding: 40px;
  3487. width: 100%;
  3488. bottom: 0;
  3489. margin: 0;
  3490. text-align: center;
  3491. }
  3492. .header_mobile .logo-section {
  3493. width: 148px;
  3494. float: left;
  3495. display: none;
  3496. }
  3497. .dl-menuwrapper .dl-active:after {
  3498. content: '';
  3499. position: absolute;
  3500. width: 68%;
  3501. height: 5px;
  3502. background: #fd4b4b;
  3503. top: 10px;
  3504. left: 16%;
  3505. box-shadow: 0 10px 0 #fd4b4b, 0 20px 0 #fd4b4b;
  3506. transition: all 0.3s;
  3507. }
  3508. .dl-menuwrapper .dl-menuopen li a {
  3509. display: block;
  3510. position: relative;
  3511. padding: 15px 20px;
  3512. font-size: 14px;
  3513. line-height: 20px;
  3514. font-weight: 300;
  3515. color: #fd4b4b;
  3516. outline: none;
  3517. font-family: 'montserrat';
  3518. background: #fff;
  3519. }
  3520. .panel_options .col-md-4 {
  3521. width: 100%;
  3522. flex: 100%;
  3523. max-width: 100%;
  3524. }
  3525. .historial_candidatos .col-md-8 {
  3526. width: 100%;
  3527. flex: 100%;
  3528. max-width: 100%;
  3529. }
  3530. .historial_candidatos .col-md-4 {
  3531. width: 100%;
  3532. flex: 100%;
  3533. max-width: 100%;
  3534. }
  3535. .img_relaciones {
  3536. margin: 30px 0;
  3537. width: 40%;
  3538. margin-right: 40px;
  3539. transition: all 0.3s;
  3540. }
  3541. .body_prueba_nueva {
  3542. padding: 40px 30px;
  3543. background: #fff;
  3544. margin-bottom: 40px;
  3545. margin: 0 15px 40px 15px;
  3546. }
  3547. .tabs_pruebas .test_tab.active p {
  3548. margin: 0;
  3549. letter-spacing: 0px;
  3550. color: #fff;
  3551. }
  3552. .tabs_pruebas .test_tab p {
  3553. margin: 0!important;
  3554. letter-spacing: 0px;
  3555. color: #fff!important;
  3556. }
  3557. .body_prueba_list .modern-Checkbox label {
  3558. color: #363636;
  3559. background-color: #ffffff;
  3560. border-color: #fd4b4b;
  3561. cursor: pointer;
  3562. display: inline-block;
  3563. font-weight: 500;
  3564. text-align: center;
  3565. white-space: nowrap;
  3566. vertical-align: middle;
  3567. user-select: none;
  3568. border: 1px solid transparent;
  3569. padding: 35px;
  3570. font-size: 14px;
  3571. border-radius: 0;
  3572. transition: all 144ms ease-in-out;
  3573. width: 100%;
  3574. letter-spacing: 0;
  3575. }
  3576. .contenedor_restore {
  3577. width: 100%;
  3578. float: none;
  3579. margin: auto;
  3580. }
  3581. }
  3582. @media (min-width:800px) and (max-width: 1050px){
  3583. .dropdown-menu {
  3584. position: absolute;
  3585. top: 100%;
  3586. right: 3%;
  3587. z-index: 1000;
  3588. display: none;
  3589. float: left;
  3590. min-width: 30rem;
  3591. padding: .5rem 0;
  3592. margin: 0.125rem 0 0;
  3593. font-size: 14px;
  3594. color: #1b2235;
  3595. text-align: left;
  3596. list-style: none;
  3597. background-color: #fff;
  3598. background-clip: padding-box;
  3599. border: 1px solid rgba(0,0,0,.15);
  3600. width: 60%;
  3601. }
  3602. #sidebarCollapse {
  3603. display: none;
  3604. }
  3605. #dashboardfull{
  3606. display: none;
  3607. }
  3608. .body_tabs .col-md-6 {
  3609. -ms-flex: 0 0 100%;
  3610. flex: 0 0 100%;
  3611. max-width: 100%;
  3612. }
  3613. .main .panel h1 {
  3614. font-size: 17px!important;
  3615. color: #959595!important;
  3616. text-transform: uppercase;
  3617. font-family: 'gudea';
  3618. letter-spacing: 2px;
  3619. padding: 0!important;
  3620. margin: 0!important;
  3621. position: relative;
  3622. top: 10px;
  3623. }
  3624. .panel .content_info p {
  3625. font-size: 28px;
  3626. color: #25344f;
  3627. margin: 0;
  3628. text-align: right;
  3629. width: 50%;
  3630. float: left;
  3631. position: relative;
  3632. top: 0px;
  3633. }
  3634. .historial_candidatos .col-md-8 {
  3635. width: 100%;
  3636. flex: 100%;
  3637. max-width: 100%;
  3638. }
  3639. .historial_candidatos .col-md-4 {
  3640. width: 100%;
  3641. flex: 100%;
  3642. max-width: 100%;
  3643. }
  3644. .filtros_history .col-md-4 {
  3645. padding: 0!important;
  3646. }
  3647. .img_relaciones {
  3648. margin: 30px 0;
  3649. width: 40%;
  3650. margin-right: 40px;
  3651. transition: all 0.3s;
  3652. }
  3653. .body_prueba_nueva {
  3654. padding: 40px 30px;
  3655. background: #fff;
  3656. margin-bottom: 40px;
  3657. margin: 0 15px 40px 15px;
  3658. }
  3659. .tabs_pruebas .test_tab.active p {
  3660. margin: 0;
  3661. letter-spacing: 0px;
  3662. color: #fff;
  3663. }
  3664. .tabs_pruebas .test_tab p {
  3665. margin: 0!important;
  3666. letter-spacing: 0px;
  3667. color: #fff!important;
  3668. }
  3669. .body_prueba_list .modern-Checkbox label {
  3670. color: #363636;
  3671. background-color: #ffffff;
  3672. border-color: #fd4b4b;
  3673. cursor: pointer;
  3674. display: inline-block;
  3675. font-weight: 500;
  3676. text-align: center;
  3677. white-space: nowrap;
  3678. vertical-align: middle;
  3679. user-select: none;
  3680. border: 1px solid transparent;
  3681. padding: 35px;
  3682. font-size: 14px;
  3683. border-radius: 0;
  3684. transition: all 144ms ease-in-out;
  3685. width: 100%;
  3686. letter-spacing: 0;
  3687. }
  3688. .contenedor_restore {
  3689. width: 100%;
  3690. float: none;
  3691. margin: auto;
  3692. }
  3693. }