Reac front end for psicometric app

all.css 79KB

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