all.css 77 KB

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